2000-12-28 20:57:57 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*
|
|
|
|
*/
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <sys/param.h>
|
2006-03-26 23:21:11 +00:00
|
|
|
#include <sys/devicestat.h>
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/linker.h>
|
|
|
|
#include <sys/mdioctl.h>
|
|
|
|
#include <sys/module.h>
|
2006-03-26 23:21:11 +00:00
|
|
|
#include <sys/resource.h>
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <sys/stat.h>
|
2000-12-28 20:57:57 +00:00
|
|
|
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <assert.h>
|
2006-03-26 23:21:11 +00:00
|
|
|
#include <devstat.h>
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <err.h>
|
2005-08-30 16:45:32 +00:00
|
|
|
#include <errno.h>
|
2000-12-28 20:57:57 +00:00
|
|
|
#include <fcntl.h>
|
2004-09-16 21:32:13 +00:00
|
|
|
#include <inttypes.h>
|
2006-03-26 23:21:11 +00:00
|
|
|
#include <libgeom.h>
|
2004-09-16 21:32:13 +00:00
|
|
|
#include <libutil.h>
|
2006-03-26 23:21:11 +00:00
|
|
|
#include <stdarg.h>
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2000-12-28 20:57:57 +00:00
|
|
|
#include <string.h>
|
2006-03-26 22:52:36 +00:00
|
|
|
#include <unistd.h>
|
2000-12-28 20:57:57 +00:00
|
|
|
|
|
|
|
|
2006-03-26 22:52:36 +00:00
|
|
|
static struct md_ioctl mdio;
|
|
|
|
static enum {UNSET, ATTACH, DETACH, LIST} action = UNSET;
|
|
|
|
static int nflag;
|
2003-06-11 06:38:24 +00:00
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
static void usage(void);
|
|
|
|
static int md_find(char *, const char *);
|
|
|
|
static int md_query(char *name);
|
|
|
|
static int md_list(char *units, int opt);
|
|
|
|
static char *geom_config_get(struct gconf *g, char *name);
|
|
|
|
static void md_prthumanval(char *length);
|
|
|
|
|
|
|
|
#define OPT_VERBOSE 0x01
|
|
|
|
#define OPT_UNIT 0x02
|
|
|
|
#define OPT_DONE 0x04
|
|
|
|
#define OPT_LIST 0x10
|
|
|
|
|
|
|
|
#define CLASS_NAME_MD "MD"
|
|
|
|
|
2006-03-26 22:52:36 +00:00
|
|
|
static void
|
2000-12-31 11:20:49 +00:00
|
|
|
usage()
|
|
|
|
{
|
2004-11-13 17:08:52 +00:00
|
|
|
fprintf(stderr,
|
2005-02-10 09:19:34 +00:00
|
|
|
"usage: mdconfig -a -t type [-n] [-o [no]option] ... [-f file]\n"
|
2004-11-13 17:08:52 +00:00
|
|
|
" [-s size] [-S sectorsize] [-u unit]\n"
|
|
|
|
" [-x sectors/track] [-y heads/cyl]\n"
|
|
|
|
" mdconfig -d -u unit\n"
|
|
|
|
" mdconfig -l [-n] [-u unit]\n");
|
2000-12-31 11:20:49 +00:00
|
|
|
fprintf(stderr, "\t\ttype = {malloc, preload, vnode, swap}\n");
|
2001-02-26 15:31:47 +00:00
|
|
|
fprintf(stderr, "\t\toption = {cluster, compress, reserve}\n");
|
2005-03-01 14:56:49 +00:00
|
|
|
fprintf(stderr, "\t\tsize = %%d (512 byte blocks), %%db (B),\n");
|
|
|
|
fprintf(stderr, "\t\t %%dk (kB), %%dm (MB), %%dg (GB) or\n");
|
|
|
|
fprintf(stderr, "\t\t %%dt (TB)\n");
|
2000-12-31 11:20:49 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2000-12-28 20:57:57 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ch, fd, i;
|
2000-12-31 11:20:49 +00:00
|
|
|
char *p;
|
|
|
|
int cmdline = 0;
|
2006-03-26 23:21:11 +00:00
|
|
|
char *mdunit;
|
2000-12-28 20:57:57 +00:00
|
|
|
|
2004-09-16 21:32:13 +00:00
|
|
|
bzero(&mdio, sizeof(mdio));
|
2004-12-27 17:20:06 +00:00
|
|
|
mdio.md_file = malloc(PATH_MAX);
|
|
|
|
if (mdio.md_file == NULL)
|
|
|
|
err(1, "could not allocate memory");
|
|
|
|
bzero(mdio.md_file, PATH_MAX);
|
2000-12-28 20:57:57 +00:00
|
|
|
for (;;) {
|
2003-06-11 06:38:24 +00:00
|
|
|
ch = getopt(argc, argv, "ab:df:lno:s:S:t:u:x:y:");
|
2000-12-28 20:57:57 +00:00
|
|
|
if (ch == -1)
|
|
|
|
break;
|
|
|
|
switch (ch) {
|
|
|
|
case 'a':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 0)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
action = ATTACH;
|
2000-12-31 11:20:49 +00:00
|
|
|
cmdline = 1;
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 0)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
action = DETACH;
|
2000-12-31 13:03:42 +00:00
|
|
|
mdio.md_options = MD_AUTOUNIT;
|
|
|
|
cmdline = 3;
|
2000-12-31 11:20:49 +00:00
|
|
|
break;
|
2001-02-25 13:12:57 +00:00
|
|
|
case 'l':
|
|
|
|
if (cmdline != 0)
|
|
|
|
usage();
|
|
|
|
action = LIST;
|
|
|
|
mdio.md_options = MD_AUTOUNIT;
|
|
|
|
cmdline = 3;
|
|
|
|
break;
|
2003-06-11 06:38:24 +00:00
|
|
|
case 'n':
|
|
|
|
nflag = 1;
|
|
|
|
break;
|
2000-12-31 11:20:49 +00:00
|
|
|
case 't':
|
|
|
|
if (cmdline != 1)
|
|
|
|
usage();
|
|
|
|
if (!strcmp(optarg, "malloc")) {
|
|
|
|
mdio.md_type = MD_MALLOC;
|
|
|
|
mdio.md_options = MD_AUTOUNIT | MD_COMPRESS;
|
|
|
|
} else if (!strcmp(optarg, "preload")) {
|
|
|
|
mdio.md_type = MD_PRELOAD;
|
|
|
|
mdio.md_options = 0;
|
|
|
|
} else if (!strcmp(optarg, "vnode")) {
|
|
|
|
mdio.md_type = MD_VNODE;
|
|
|
|
mdio.md_options = MD_CLUSTER | MD_AUTOUNIT | MD_COMPRESS;
|
|
|
|
} else if (!strcmp(optarg, "swap")) {
|
|
|
|
mdio.md_type = MD_SWAP;
|
|
|
|
mdio.md_options = MD_CLUSTER | MD_AUTOUNIT | MD_COMPRESS;
|
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
cmdline=2;
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
2001-03-09 21:15:08 +00:00
|
|
|
if (cmdline != 1 && cmdline != 2)
|
2000-12-31 11:20:49 +00:00
|
|
|
usage();
|
2001-03-09 21:15:08 +00:00
|
|
|
if (cmdline == 1) {
|
|
|
|
/* Imply ``-t vnode'' */
|
|
|
|
mdio.md_type = MD_VNODE;
|
|
|
|
mdio.md_options = MD_CLUSTER | MD_AUTOUNIT | MD_COMPRESS;
|
2003-04-01 15:23:55 +00:00
|
|
|
cmdline = 2;
|
2001-03-09 21:15:08 +00:00
|
|
|
}
|
2004-11-06 13:07:02 +00:00
|
|
|
if (realpath(optarg, mdio.md_file) == NULL) {
|
|
|
|
err(1, "could not find full path for %s",
|
|
|
|
optarg);
|
|
|
|
}
|
|
|
|
fd = open(mdio.md_file, O_RDONLY);
|
2004-07-25 08:17:23 +00:00
|
|
|
if (fd < 0)
|
|
|
|
err(1, "could not open %s", optarg);
|
2004-09-16 21:32:13 +00:00
|
|
|
else if (mdio.md_mediasize == 0) {
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (fstat(fd, &sb) == -1)
|
|
|
|
err(1, "could not stat %s", optarg);
|
|
|
|
mdio.md_mediasize = sb.st_size;
|
|
|
|
}
|
2004-07-25 08:17:23 +00:00
|
|
|
close(fd);
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
|
|
|
case 'o':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
2004-03-10 20:41:09 +00:00
|
|
|
if (!strcmp(optarg, "async"))
|
|
|
|
mdio.md_options |= MD_ASYNC;
|
|
|
|
else if (!strcmp(optarg, "noasync"))
|
|
|
|
mdio.md_options &= ~MD_ASYNC;
|
|
|
|
else if (!strcmp(optarg, "cluster"))
|
2000-12-28 20:57:57 +00:00
|
|
|
mdio.md_options |= MD_CLUSTER;
|
|
|
|
else if (!strcmp(optarg, "nocluster"))
|
|
|
|
mdio.md_options &= ~MD_CLUSTER;
|
2000-12-31 11:20:49 +00:00
|
|
|
else if (!strcmp(optarg, "compress"))
|
|
|
|
mdio.md_options |= MD_COMPRESS;
|
|
|
|
else if (!strcmp(optarg, "nocompress"))
|
|
|
|
mdio.md_options &= ~MD_COMPRESS;
|
2001-08-07 19:23:16 +00:00
|
|
|
else if (!strcmp(optarg, "force"))
|
|
|
|
mdio.md_options |= MD_FORCE;
|
|
|
|
else if (!strcmp(optarg, "noforce"))
|
|
|
|
mdio.md_options &= ~MD_FORCE;
|
2004-09-08 20:28:29 +00:00
|
|
|
else if (!strcmp(optarg, "readonly"))
|
|
|
|
mdio.md_options |= MD_READONLY;
|
|
|
|
else if (!strcmp(optarg, "noreadonly"))
|
|
|
|
mdio.md_options &= ~MD_READONLY;
|
2000-12-28 20:57:57 +00:00
|
|
|
else if (!strcmp(optarg, "reserve"))
|
|
|
|
mdio.md_options |= MD_RESERVE;
|
|
|
|
else if (!strcmp(optarg, "noreserve"))
|
|
|
|
mdio.md_options &= ~MD_RESERVE;
|
|
|
|
else
|
2004-09-08 20:28:29 +00:00
|
|
|
errx(1, "Unknown option: %s.", optarg);
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
2003-03-03 13:05:00 +00:00
|
|
|
case 'S':
|
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_sectorsize = strtoul(optarg, &p, 0);
|
2003-03-03 13:05:00 +00:00
|
|
|
break;
|
2000-12-28 20:57:57 +00:00
|
|
|
case 's':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_mediasize = (off_t)strtoumax(optarg, &p, 0);
|
2000-12-31 11:20:49 +00:00
|
|
|
if (p == NULL || *p == '\0')
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_mediasize *= DEV_BSIZE;
|
2005-01-22 20:02:01 +00:00
|
|
|
else if (*p == 'b' || *p == 'B')
|
|
|
|
; /* do nothing */
|
2000-12-31 11:20:49 +00:00
|
|
|
else if (*p == 'k' || *p == 'K')
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_mediasize <<= 10;
|
2000-12-31 11:20:49 +00:00
|
|
|
else if (*p == 'm' || *p == 'M')
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_mediasize <<= 20;
|
2000-12-31 11:20:49 +00:00
|
|
|
else if (*p == 'g' || *p == 'G')
|
2004-09-16 21:32:13 +00:00
|
|
|
mdio.md_mediasize <<= 30;
|
|
|
|
else if (*p == 't' || *p == 'T') {
|
|
|
|
mdio.md_mediasize <<= 30;
|
|
|
|
mdio.md_mediasize <<= 10;
|
|
|
|
} else
|
2000-12-31 11:20:49 +00:00
|
|
|
errx(1, "Unknown suffix on -s argument");
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
|
|
|
case 'u':
|
2000-12-31 13:03:42 +00:00
|
|
|
if (cmdline != 2 && cmdline != 3)
|
2000-12-31 11:20:49 +00:00
|
|
|
usage();
|
2006-03-27 00:46:22 +00:00
|
|
|
if (!strncmp(optarg, "/dev/", 5))
|
|
|
|
optarg += 5;
|
|
|
|
if (!strncmp(optarg, MD_NAME, sizeof(MD_NAME) - 1))
|
|
|
|
optarg += sizeof(MD_NAME) - 1;
|
|
|
|
mdio.md_unit = strtoul(optarg, &p, 0);
|
|
|
|
if (mdio.md_unit == (unsigned)ULONG_MAX || *p != '\0')
|
|
|
|
errx(1, "bad unit: %s", optarg);
|
2006-03-26 23:21:11 +00:00
|
|
|
mdunit = optarg;
|
2000-12-28 20:57:57 +00:00
|
|
|
mdio.md_options &= ~MD_AUTOUNIT;
|
|
|
|
break;
|
2003-04-09 11:59:29 +00:00
|
|
|
case 'x':
|
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
|
|
|
mdio.md_fwsectors = strtoul(optarg, &p, 0);
|
|
|
|
break;
|
|
|
|
case 'y':
|
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
|
|
|
mdio.md_fwheads = strtoul(optarg, &p, 0);
|
|
|
|
break;
|
2000-12-28 20:57:57 +00:00
|
|
|
default:
|
2000-12-31 11:20:49 +00:00
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-20 06:38:21 +00:00
|
|
|
mdio.md_version = MDIOVERSION;
|
2000-12-28 20:57:57 +00:00
|
|
|
|
2006-02-18 11:40:24 +00:00
|
|
|
if (!kld_isloaded("g_md") && kld_load("geom_md") == -1)
|
|
|
|
err(1, "failed to load geom_md module");
|
|
|
|
|
2001-02-25 13:12:57 +00:00
|
|
|
fd = open("/dev/" MDCTL_NAME, O_RDWR, 0);
|
2000-12-28 20:57:57 +00:00
|
|
|
if (fd < 0)
|
2001-02-25 13:12:57 +00:00
|
|
|
err(1, "open(/dev/%s)", MDCTL_NAME);
|
2001-06-21 01:36:09 +00:00
|
|
|
if (cmdline == 2
|
|
|
|
&& (mdio.md_type == MD_MALLOC || mdio.md_type == MD_SWAP))
|
2004-09-16 21:32:13 +00:00
|
|
|
if (mdio.md_mediasize == 0)
|
2001-06-21 01:36:09 +00:00
|
|
|
errx(1, "must specify -s for -t malloc or -t swap");
|
2003-04-01 15:23:55 +00:00
|
|
|
if (cmdline == 2 && mdio.md_type == MD_VNODE)
|
2004-12-27 17:20:06 +00:00
|
|
|
if (mdio.md_file[0] == '\0')
|
2003-04-01 15:23:55 +00:00
|
|
|
errx(1, "must specify -f for -t vnode");
|
2005-08-30 16:45:32 +00:00
|
|
|
if (mdio.md_type == MD_VNODE &&
|
|
|
|
(mdio.md_options & MD_READONLY) == 0) {
|
|
|
|
if (access(mdio.md_file, W_OK) < 0 &&
|
|
|
|
(errno == EACCES || errno == EPERM || errno == EROFS)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"WARNING: opening backing store: %s readonly\n",
|
|
|
|
mdio.md_file);
|
|
|
|
mdio.md_options |= MD_READONLY;
|
|
|
|
}
|
|
|
|
}
|
2001-02-25 13:12:57 +00:00
|
|
|
if (action == LIST) {
|
2006-03-26 23:21:11 +00:00
|
|
|
if (mdio.md_options & MD_AUTOUNIT) {
|
|
|
|
/*
|
|
|
|
* Listing all devices. This is why we pass NULL
|
|
|
|
* together with OPT_LIST.
|
|
|
|
*/
|
|
|
|
md_list(NULL, OPT_LIST);
|
|
|
|
} else {
|
|
|
|
md_query(mdunit);
|
|
|
|
}
|
2001-02-25 13:12:57 +00:00
|
|
|
} else if (action == ATTACH) {
|
2003-04-01 15:23:55 +00:00
|
|
|
if (cmdline < 2)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
i = ioctl(fd, MDIOCATTACH, &mdio);
|
2001-02-25 13:12:57 +00:00
|
|
|
if (i < 0)
|
|
|
|
err(1, "ioctl(/dev/%s)", MDCTL_NAME);
|
2001-03-09 20:05:06 +00:00
|
|
|
if (mdio.md_options & MD_AUTOUNIT)
|
2003-06-11 06:38:24 +00:00
|
|
|
printf("%s%d\n", nflag ? "" : MD_NAME, mdio.md_unit);
|
2001-03-09 20:05:06 +00:00
|
|
|
} else if (action == DETACH) {
|
2000-12-31 13:03:42 +00:00
|
|
|
if (mdio.md_options & MD_AUTOUNIT)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
i = ioctl(fd, MDIOCDETACH, &mdio);
|
2001-02-25 13:12:57 +00:00
|
|
|
if (i < 0)
|
|
|
|
err(1, "ioctl(/dev/%s)", MDCTL_NAME);
|
2001-03-09 20:05:06 +00:00
|
|
|
} else
|
|
|
|
usage();
|
2001-02-25 13:12:57 +00:00
|
|
|
close (fd);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
/*
|
|
|
|
* Lists md(4) disks. Is used also as a query routine, since it handles XML
|
|
|
|
* interface. 'units' can be NULL for listing memory disks. It might be
|
|
|
|
* coma-separated string containing md(4) disk names. 'opt' distinguished
|
|
|
|
* between list and query mode.
|
|
|
|
*/
|
2005-12-22 10:32:11 +00:00
|
|
|
static int
|
2006-03-26 23:21:11 +00:00
|
|
|
md_list(char *units, int opt)
|
|
|
|
{
|
|
|
|
struct gmesh gm;
|
|
|
|
struct gprovider *pp;
|
|
|
|
struct gconf *gc;
|
|
|
|
struct gident *gid;
|
2006-03-27 05:33:35 +00:00
|
|
|
struct devstat *gsp;
|
2006-03-26 23:21:11 +00:00
|
|
|
struct ggeom *gg;
|
|
|
|
struct gclass *gcl;
|
|
|
|
void *sq;
|
|
|
|
int retcode;
|
|
|
|
char *type, *file, *length;
|
|
|
|
|
|
|
|
type = file = length = NULL;
|
|
|
|
|
|
|
|
retcode = geom_gettree(&gm);
|
|
|
|
if (retcode != 0)
|
|
|
|
return (-1);
|
|
|
|
retcode = geom_stats_open();
|
|
|
|
if (retcode != 0)
|
|
|
|
return (-1);
|
|
|
|
sq = geom_stats_snapshot_get();
|
|
|
|
if (sq == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
while ((gsp = geom_stats_snapshot_next(sq)) != NULL) {
|
|
|
|
gid = geom_lookupid(&gm, gsp->id);
|
|
|
|
if (gid == NULL)
|
|
|
|
continue;
|
|
|
|
if (gid->lg_what == ISPROVIDER) {
|
|
|
|
pp = gid->lg_ptr;
|
|
|
|
gg = pp->lg_geom;
|
|
|
|
gcl = gg->lg_class;
|
|
|
|
if (strcmp(gcl->lg_name, CLASS_NAME_MD) != 0)
|
|
|
|
continue;
|
|
|
|
if ((opt & OPT_UNIT) && (units != NULL)) {
|
|
|
|
retcode = md_find(units, pp->lg_name);
|
|
|
|
if (retcode != 1)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gc = &pp->lg_config;
|
|
|
|
printf("%s", pp->lg_name);
|
|
|
|
if (opt & OPT_VERBOSE || opt & OPT_UNIT) {
|
|
|
|
type = geom_config_get(gc, "type");
|
|
|
|
if (strcmp(type, "vnode") == 0)
|
|
|
|
file = geom_config_get(gc, "file");
|
|
|
|
length = geom_config_get(gc, "length");
|
|
|
|
if (length == NULL)
|
|
|
|
length = "<a>";
|
|
|
|
printf("\t%s\t", type);
|
|
|
|
md_prthumanval(length);
|
|
|
|
if (file != NULL) {
|
|
|
|
printf("\t%s", file);
|
|
|
|
file = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opt |= OPT_DONE;
|
|
|
|
if (opt & OPT_LIST)
|
|
|
|
printf(" ");
|
|
|
|
else
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((opt & OPT_LIST) && (opt & OPT_DONE))
|
|
|
|
printf("\n");
|
|
|
|
/* XXX: Check if it's enough to clean everything. */
|
|
|
|
geom_stats_snapshot_free(sq);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns value of 'name' from gconfig structure.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
geom_config_get(struct gconf *g, char *name)
|
2005-12-22 10:32:11 +00:00
|
|
|
{
|
2006-03-26 23:21:11 +00:00
|
|
|
struct gconfig *gce;
|
|
|
|
|
|
|
|
LIST_FOREACH(gce, g, lg_config) {
|
|
|
|
if (strcmp(gce->lg_name, name) == 0)
|
|
|
|
return (gce->lg_val);
|
|
|
|
}
|
|
|
|
return (NULL);
|
2005-12-22 10:32:11 +00:00
|
|
|
}
|
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
/*
|
|
|
|
* List is comma separated list of MD disks. name is a
|
|
|
|
* device name we look for. Returns 1 if found and 0
|
|
|
|
* otherwise.
|
|
|
|
*/
|
2006-03-26 22:52:36 +00:00
|
|
|
static int
|
2006-03-26 23:21:11 +00:00
|
|
|
md_find(char *list, const char *name)
|
2001-02-25 13:12:57 +00:00
|
|
|
{
|
2006-03-26 23:21:11 +00:00
|
|
|
int ret;
|
|
|
|
char num[16];
|
|
|
|
char *ptr, *p, *u;
|
2001-02-25 13:12:57 +00:00
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
ret = 0;
|
|
|
|
ptr = strdup(list);
|
|
|
|
if (ptr == NULL)
|
|
|
|
return (-1);
|
|
|
|
for (p = ptr; (u = strsep(&p, ",")) != NULL;) {
|
|
|
|
if (strncmp(u, "/dev/", 5) == 0)
|
|
|
|
u += 5;
|
|
|
|
/* Just in case user specified number instead of full name */
|
|
|
|
snprintf(num, sizeof(num), "md%s", u);
|
|
|
|
if (strcmp(u, name) == 0 || strcmp(num, name) == 0) {
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
2001-02-25 13:12:57 +00:00
|
|
|
}
|
2006-03-26 23:21:11 +00:00
|
|
|
free(ptr);
|
|
|
|
return (ret);
|
2001-02-25 13:12:57 +00:00
|
|
|
}
|
|
|
|
|
2004-09-16 21:32:13 +00:00
|
|
|
static void
|
2006-03-26 23:21:11 +00:00
|
|
|
md_prthumanval(char *length)
|
2004-09-16 21:32:13 +00:00
|
|
|
{
|
|
|
|
char buf[6];
|
2006-03-26 23:21:11 +00:00
|
|
|
uint64_t bytes;
|
|
|
|
char *endptr;
|
2004-09-16 21:32:13 +00:00
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
bytes = strtoul(length, &endptr, 10);
|
|
|
|
if (bytes == (unsigned)ULONG_MAX || *endptr != '\0')
|
|
|
|
return;
|
2004-09-16 21:32:13 +00:00
|
|
|
humanize_number(buf, sizeof(buf) - (bytes < 0 ? 0 : 1),
|
|
|
|
bytes, "", HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
|
|
|
|
(void)printf("%6s", buf);
|
|
|
|
}
|
|
|
|
|
2006-03-26 23:21:11 +00:00
|
|
|
int
|
|
|
|
md_query(char *name)
|
2001-02-25 13:12:57 +00:00
|
|
|
{
|
2006-03-26 23:21:11 +00:00
|
|
|
return (md_list(name, OPT_UNIT));
|
2000-12-28 20:57:57 +00:00
|
|
|
}
|