2007-02-27 04:01:58 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2006 Mathew Jacob <mjacob@FreeBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <libgeom.h>
|
2011-11-12 09:52:27 +00:00
|
|
|
#include <unistd.h>
|
2007-02-27 04:01:58 +00:00
|
|
|
#include <uuid.h>
|
|
|
|
#include <geom/multipath/g_multipath.h>
|
|
|
|
|
|
|
|
#include "core/geom.h"
|
|
|
|
#include "misc/subr.h"
|
|
|
|
|
|
|
|
uint32_t lib_version = G_LIB_VERSION;
|
|
|
|
uint32_t version = G_MULTIPATH_VERSION;
|
|
|
|
|
|
|
|
static void mp_main(struct gctl_req *, unsigned int);
|
|
|
|
static void mp_label(struct gctl_req *);
|
|
|
|
static void mp_clear(struct gctl_req *);
|
|
|
|
|
|
|
|
struct g_command class_commands[] = {
|
|
|
|
{
|
2011-11-12 09:52:27 +00:00
|
|
|
"create", G_FLAG_VERBOSE | G_FLAG_LOADKLD, NULL,
|
|
|
|
{
|
|
|
|
{ 'A', "active_active", NULL, G_TYPE_BOOL },
|
|
|
|
G_OPT_SENTINEL
|
|
|
|
},
|
|
|
|
"[-vA] name prov ..."
|
2007-02-27 04:01:58 +00:00
|
|
|
},
|
2010-03-29 18:04:06 +00:00
|
|
|
{
|
2011-11-12 09:52:27 +00:00
|
|
|
"label", G_FLAG_VERBOSE | G_FLAG_LOADKLD, mp_main,
|
|
|
|
{
|
|
|
|
{ 'A', "active_active", NULL, G_TYPE_BOOL },
|
|
|
|
G_OPT_SENTINEL
|
|
|
|
},
|
|
|
|
"[-vA] name prov ..."
|
2010-03-29 18:04:06 +00:00
|
|
|
},
|
2010-02-04 21:51:33 +00:00
|
|
|
{
|
2011-11-12 09:52:27 +00:00
|
|
|
"add", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name prov"
|
2010-02-04 21:51:33 +00:00
|
|
|
},
|
2007-02-27 04:01:58 +00:00
|
|
|
{
|
2011-11-12 09:52:27 +00:00
|
|
|
"remove", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name prov"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name prov"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"restore", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name prov"
|
2007-02-27 04:01:58 +00:00
|
|
|
},
|
2010-03-21 15:02:47 +00:00
|
|
|
{
|
|
|
|
"rotate", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
2011-11-12 09:52:27 +00:00
|
|
|
"[-v] name"
|
2010-03-21 15:02:47 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"getactive", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
2011-11-12 09:52:27 +00:00
|
|
|
"[-v] name"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"destroy", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"stop", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
|
|
|
|
"[-v] name"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"clear", G_FLAG_VERBOSE, mp_main, G_NULL_OPTS,
|
2010-09-13 13:48:18 +00:00
|
|
|
"[-v] prov ..."
|
2010-03-21 15:02:47 +00:00
|
|
|
},
|
2007-02-27 04:01:58 +00:00
|
|
|
G_CMD_SENTINEL
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
mp_main(struct gctl_req *req, unsigned int flags __unused)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
name = gctl_get_ascii(req, "verb");
|
|
|
|
if (name == NULL) {
|
|
|
|
gctl_error(req, "No '%s' argument.", "verb");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (strcmp(name, "label") == 0) {
|
|
|
|
mp_label(req);
|
|
|
|
} else if (strcmp(name, "clear") == 0) {
|
|
|
|
mp_clear(req);
|
|
|
|
} else {
|
|
|
|
gctl_error(req, "Unknown command: %s.", name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mp_label(struct gctl_req *req)
|
|
|
|
{
|
|
|
|
struct g_multipath_metadata md;
|
2011-11-12 09:52:27 +00:00
|
|
|
off_t disksize = 0, msize;
|
|
|
|
uint8_t *sector, *rsector;
|
2007-02-27 04:01:58 +00:00
|
|
|
char *ptr;
|
|
|
|
uuid_t uuid;
|
|
|
|
uint32_t secsize = 0, ssize, status;
|
2011-11-12 09:52:27 +00:00
|
|
|
const char *name, *name2, *mpname;
|
|
|
|
int error, i, nargs, fd;
|
2007-02-27 04:01:58 +00:00
|
|
|
|
|
|
|
nargs = gctl_get_int(req, "nargs");
|
|
|
|
if (nargs < 2) {
|
|
|
|
gctl_error(req, "wrong number of arguments.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, check each provider to make sure it's the same size.
|
|
|
|
* This also gets us our size and sectorsize for the metadata.
|
|
|
|
*/
|
|
|
|
for (i = 1; i < nargs; i++) {
|
|
|
|
name = gctl_get_ascii(req, "arg%d", i);
|
|
|
|
msize = g_get_mediasize(name);
|
|
|
|
ssize = g_get_sectorsize(name);
|
|
|
|
if (msize == 0 || ssize == 0) {
|
|
|
|
gctl_error(req, "cannot get information about %s: %s.",
|
|
|
|
name, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (i == 1) {
|
|
|
|
secsize = ssize;
|
2011-11-12 09:52:27 +00:00
|
|
|
disksize = msize;
|
2007-02-27 04:01:58 +00:00
|
|
|
} else {
|
|
|
|
if (secsize != ssize) {
|
|
|
|
gctl_error(req, "%s sector size %u different.",
|
|
|
|
name, ssize);
|
|
|
|
return;
|
|
|
|
}
|
2011-11-12 09:52:27 +00:00
|
|
|
if (disksize != msize) {
|
2007-02-27 04:01:58 +00:00
|
|
|
gctl_error(req, "%s media size %ju different.",
|
|
|
|
name, (intmax_t)msize);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate metadata.
|
|
|
|
*/
|
|
|
|
strlcpy(md.md_magic, G_MULTIPATH_MAGIC, sizeof(md.md_magic));
|
|
|
|
md.md_version = G_MULTIPATH_VERSION;
|
2010-03-29 18:04:06 +00:00
|
|
|
mpname = gctl_get_ascii(req, "arg0");
|
|
|
|
strlcpy(md.md_name, mpname, sizeof(md.md_name));
|
2011-11-12 09:52:27 +00:00
|
|
|
md.md_size = disksize;
|
2007-02-27 04:01:58 +00:00
|
|
|
md.md_sectorsize = secsize;
|
|
|
|
uuid_create(&uuid, &status);
|
|
|
|
if (status != uuid_s_ok) {
|
|
|
|
gctl_error(req, "cannot create a UUID.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uuid_to_string(&uuid, &ptr, &status);
|
|
|
|
if (status != uuid_s_ok) {
|
|
|
|
gctl_error(req, "cannot stringify a UUID.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
strlcpy(md.md_uuid, ptr, sizeof (md.md_uuid));
|
2011-11-12 09:52:27 +00:00
|
|
|
md.md_active_active = gctl_get_int(req, "active_active");
|
2007-02-27 04:01:58 +00:00
|
|
|
free(ptr);
|
|
|
|
|
2010-08-13 15:17:19 +00:00
|
|
|
/*
|
|
|
|
* Allocate a sector to write as metadata.
|
|
|
|
*/
|
|
|
|
sector = malloc(secsize);
|
|
|
|
if (sector == NULL) {
|
|
|
|
gctl_error(req, "unable to allocate metadata buffer");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memset(sector, 0, secsize);
|
2011-11-12 09:52:27 +00:00
|
|
|
rsector = malloc(secsize);
|
|
|
|
if (rsector == NULL) {
|
|
|
|
free(sector);
|
|
|
|
gctl_error(req, "unable to allocate metadata buffer");
|
|
|
|
return;
|
|
|
|
}
|
2010-08-13 15:17:19 +00:00
|
|
|
|
2010-03-29 18:04:06 +00:00
|
|
|
/*
|
|
|
|
* encode the metadata
|
|
|
|
*/
|
2007-02-27 04:01:58 +00:00
|
|
|
multipath_metadata_encode(&md, sector);
|
|
|
|
|
|
|
|
/*
|
2010-03-29 18:04:06 +00:00
|
|
|
* Store metadata on the initial provider.
|
2007-02-27 04:01:58 +00:00
|
|
|
*/
|
2011-11-12 09:52:27 +00:00
|
|
|
name = gctl_get_ascii(req, "arg1");
|
2010-03-29 18:04:06 +00:00
|
|
|
error = g_metadata_store(name, sector, secsize);
|
|
|
|
if (error != 0) {
|
|
|
|
gctl_error(req, "cannot store metadata on %s: %s.", name, strerror(error));
|
|
|
|
return;
|
2007-02-27 04:01:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-11-12 09:52:27 +00:00
|
|
|
* Now touch the rest of the providers to hint retaste.
|
2007-02-27 04:01:58 +00:00
|
|
|
*/
|
2010-03-29 18:04:06 +00:00
|
|
|
for (i = 2; i < nargs; i++) {
|
2011-11-12 09:52:27 +00:00
|
|
|
name2 = gctl_get_ascii(req, "arg%d", i);
|
|
|
|
fd = g_open(name2, 1);
|
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "Unable to open %s: %s.\n",
|
|
|
|
name2, strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pread(fd, rsector, secsize, disksize - secsize) !=
|
|
|
|
secsize) {
|
|
|
|
fprintf(stderr, "Unable to read metadata from %s: %s.\n",
|
|
|
|
name2, strerror(errno));
|
|
|
|
g_close(fd);
|
2007-02-27 04:01:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
2011-11-12 09:52:27 +00:00
|
|
|
g_close(fd);
|
|
|
|
if (memcmp(sector, rsector, secsize)) {
|
|
|
|
fprintf(stderr, "No metadata found on %s."
|
|
|
|
" It is not a path of %s.\n",
|
|
|
|
name2, name);
|
|
|
|
}
|
2007-02-27 04:01:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-04 22:17:56 +00:00
|
|
|
|
2007-02-27 04:01:58 +00:00
|
|
|
static void
|
|
|
|
mp_clear(struct gctl_req *req)
|
|
|
|
{
|
|
|
|
const char *name;
|
2010-07-04 22:17:56 +00:00
|
|
|
int error, i, nargs;
|
2007-02-27 04:01:58 +00:00
|
|
|
|
2010-07-04 22:17:56 +00:00
|
|
|
nargs = gctl_get_int(req, "nargs");
|
|
|
|
if (nargs < 1) {
|
|
|
|
gctl_error(req, "Too few arguments.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nargs; i++) {
|
|
|
|
name = gctl_get_ascii(req, "arg%d", i);
|
|
|
|
error = g_metadata_clear(name, G_MULTIPATH_MAGIC);
|
|
|
|
if (error != 0) {
|
|
|
|
fprintf(stderr, "Can't clear metadata on %s: %s.\n",
|
|
|
|
name, strerror(error));
|
|
|
|
gctl_error(req, "Not fully done.");
|
|
|
|
continue;
|
|
|
|
}
|
2007-02-27 04:01:58 +00:00
|
|
|
}
|
2010-03-29 18:04:06 +00:00
|
|
|
}
|
2007-02-27 04:01:58 +00:00
|
|
|
|