#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: devlist.c,v 1.6 2023/03/05 23:24:06 simonb Exp $");
#if 0
__FBSDID("$FreeBSD: head/sbin/nvmecontrol/devlist.c 329824 2018-02-22 13:32:31Z wma $");
#endif
#endif
#include <sys/param.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <paths.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "nvmectl.h"
__dead static void
devlist_usage(void)
{
fprintf(stderr, "usage:\n");
fprintf(stderr, "\t%s " DEVLIST_USAGE, getprogname());
exit(1);
}
static inline uint32_t
ns_get_sector_size(struct nvm_identify_namespace *nsdata)
{
return 1 << nsdata->lbaf[NVME_ID_NS_FLBAS(nsdata->flbas)].lbads;
}
void
devlist(int argc, char *argv[])
{
struct nvm_identify_controller cdata;
struct nvm_identify_namespace nsdata;
char name[64];
uint8_t mn[64];
uint32_t i;
int ch, ctrlr, fd, found, ret;
while ((ch = getopt(argc, argv, "")) != -1) {
switch (ch) {
default:
devlist_usage();
}
}
ctrlr = -1;
found = 0;
while (1) {
ctrlr++;
sprintf(name, "%s%d", NVME_CTRLR_PREFIX, ctrlr);
ret = open_dev(name, &fd, 0, 0);
if (ret != 0) {
if (ret == EACCES) {
warnx("could not open "_PATH_DEV"%s\n", name);
continue;
} else
break;
}
found++;
read_controller_data(fd, &cdata);
nvme_strvis(mn, sizeof(mn), cdata.mn, sizeof(cdata.mn));
printf("%6s: %s\n", name, mn);
for (i = 0; i < cdata.nn; i++) {
sprintf(name, "%s%d%s%d", NVME_CTRLR_PREFIX, ctrlr,
NVME_NS_PREFIX, i+1);
read_namespace_data(fd, i+1, &nsdata);
printf(" %10s (%lldMB)\n",
name,
nsdata.nsze *
(long long)ns_get_sector_size(&nsdata) /
1024 / 1024);
}
close(fd);
}
if (found == 0) {
printf("No NVMe controllers found.\n");
exit(1);
}
exit(0);
}