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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mdioctl.h>
|
|
|
|
|
|
|
|
struct md_ioctl mdio;
|
|
|
|
|
|
|
|
enum {UNSET, ATTACH, DETACH} action = UNSET;
|
|
|
|
|
2000-12-31 11:20:49 +00:00
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
2000-12-31 13:03:42 +00:00
|
|
|
fprintf(stderr, "Usage:\n");
|
|
|
|
fprintf(stderr, "\tmdconfig -a -t type [-o [no]option]... [ -f file] [-s size] [-u unit]\n");
|
|
|
|
fprintf(stderr, "\tmdconfig -d -u unit\n");
|
2000-12-31 11:20:49 +00:00
|
|
|
fprintf(stderr, "\t\ttype = {malloc, preload, vnode, swap}\n");
|
|
|
|
fprintf(stderr, "\t\toption = {cluster, compress, reserve, autounit}\n");
|
|
|
|
fprintf(stderr, "\t\tsize = %%d (512 byte blocks), %%dk (kB), %%dm (MB) or %%dg (GB)\n");
|
|
|
|
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;
|
2000-12-28 20:57:57 +00:00
|
|
|
|
|
|
|
for (;;) {
|
2001-01-01 23:08:26 +00:00
|
|
|
ch = getopt(argc, argv, "ab:df:o:s:t:u:");
|
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;
|
|
|
|
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':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
2001-01-28 20:17:46 +00:00
|
|
|
mdio.md_file = optarg;
|
2000-12-28 20:57:57 +00:00
|
|
|
break;
|
|
|
|
case 'o':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
if (!strcmp(optarg, "cluster"))
|
|
|
|
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;
|
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 if (!strcmp(optarg, "autounit"))
|
|
|
|
mdio.md_options |= MD_AUTOUNIT;
|
|
|
|
else if (!strcmp(optarg, "noautounit"))
|
|
|
|
mdio.md_options &= ~MD_AUTOUNIT;
|
|
|
|
else
|
|
|
|
errx(1, "Unknown option.");
|
|
|
|
break;
|
|
|
|
case 's':
|
2000-12-31 11:20:49 +00:00
|
|
|
if (cmdline != 2)
|
|
|
|
usage();
|
|
|
|
mdio.md_size = strtoul(optarg, &p, 0);
|
|
|
|
if (p == NULL || *p == '\0')
|
|
|
|
;
|
|
|
|
else if (*p == 'k' || *p == 'K')
|
|
|
|
mdio.md_size *= (1024 / DEV_BSIZE);
|
|
|
|
else if (*p == 'm' || *p == 'M')
|
|
|
|
mdio.md_size *= (1024 * 1024 / DEV_BSIZE);
|
|
|
|
else if (*p == 'g' || *p == 'G')
|
|
|
|
mdio.md_size *= (1024 * 1024 * 1024 / DEV_BSIZE);
|
2000-12-28 20:57:57 +00:00
|
|
|
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();
|
2000-12-28 20:57:57 +00:00
|
|
|
mdio.md_unit = strtoul(optarg, NULL, 0);
|
|
|
|
mdio.md_options &= ~MD_AUTOUNIT;
|
|
|
|
break;
|
|
|
|
default:
|
2000-12-31 11:20:49 +00:00
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open("/dev/mdctl", O_RDWR, 0);
|
|
|
|
if (fd < 0)
|
2000-12-31 11:20:49 +00:00
|
|
|
err(1, "open(/dev/mdctl)");
|
2000-12-31 13:03:42 +00:00
|
|
|
if (action == ATTACH) {
|
2000-12-28 20:57:57 +00:00
|
|
|
i = ioctl(fd, MDIOCATTACH, &mdio);
|
2000-12-31 13:03:42 +00:00
|
|
|
} else {
|
|
|
|
if (mdio.md_options & MD_AUTOUNIT)
|
|
|
|
usage();
|
2000-12-28 20:57:57 +00:00
|
|
|
i = ioctl(fd, MDIOCDETACH, &mdio);
|
2000-12-31 13:03:42 +00:00
|
|
|
}
|
2000-12-28 20:57:57 +00:00
|
|
|
if (i < 0)
|
|
|
|
err(1, "ioctl(/dev/mdctl)");
|
2000-12-31 13:03:42 +00:00
|
|
|
if (mdio.md_options & MD_AUTOUNIT)
|
|
|
|
printf("md%d\n", mdio.md_unit);
|
2000-12-28 20:57:57 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|