summaryrefslogtreecommitdiffstats
path: root/sys/geom/mirror/g_mirror_ctl.c
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2004-07-30 23:13:45 +0000
committerpjd <pjd@FreeBSD.org>2004-07-30 23:13:45 +0000
commitadaa0482b446a8db32a6bb1f2986d1a743c769dd (patch)
treee04bc051596e48d58d986a0c7491de41c9fd0a31 /sys/geom/mirror/g_mirror_ctl.c
parente2709c0cfc5e69512e4b685e5cbad68aed790fa2 (diff)
downloadFreeBSD-src-adaa0482b446a8db32a6bb1f2986d1a743c769dd.zip
FreeBSD-src-adaa0482b446a8db32a6bb1f2986d1a743c769dd.tar.gz
Add GEOM_MIRROR class which provide RAID1 functionality and has many useful
features. The gmirror(8) utility should be used for control of this class. There is no manual page yet, but I'm working on it with keramida@. Many useful tests provided by: simon (thank you!) Some ideas from: scottl, simon, phk
Diffstat (limited to 'sys/geom/mirror/g_mirror_ctl.c')
-rw-r--r--sys/geom/mirror/g_mirror_ctl.c617
1 files changed, 617 insertions, 0 deletions
diff --git a/sys/geom/mirror/g_mirror_ctl.c b/sys/geom/mirror/g_mirror_ctl.c
new file mode 100644
index 0000000..62d6b44
--- /dev/null
+++ b/sys/geom/mirror/g_mirror_ctl.c
@@ -0,0 +1,617 @@
+/*-
+ * Copyright (c) 2004 Pawel Jakub Dawidek <pjd@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 <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/module.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
+#include <sys/bio.h>
+#include <sys/sysctl.h>
+#include <sys/malloc.h>
+#include <sys/bitstring.h>
+#include <vm/uma.h>
+#include <machine/atomic.h>
+#include <geom/geom.h>
+#include <sys/proc.h>
+#include <sys/kthread.h>
+#include <geom/mirror/g_mirror.h>
+
+
+static struct g_mirror_softc *
+g_mirror_find_device(struct g_class *mp, const char *name)
+{
+ struct g_mirror_softc *sc;
+ struct g_geom *gp;
+
+ g_topology_assert();
+ LIST_FOREACH(gp, &mp->geom, geom) {
+ sc = gp->softc;
+ if (sc == NULL)
+ continue;
+ if ((sc->sc_flags & G_MIRROR_DEVICE_FLAG_DESTROY) != 0)
+ continue;
+ if (strcmp(gp->name, name) == 0 ||
+ strcmp(sc->sc_name, name) == 0) {
+ return (sc);
+ }
+ }
+ return (NULL);
+}
+
+static struct g_mirror_disk *
+g_mirror_find_disk(struct g_mirror_softc *sc, const char *name)
+{
+ struct g_mirror_disk *disk;
+
+ g_topology_assert();
+ LIST_FOREACH(disk, &sc->sc_disks, d_next) {
+ if (disk->d_consumer == NULL)
+ continue;
+ if (disk->d_consumer->provider == NULL)
+ continue;
+ if (strcmp(disk->d_consumer->provider->name, name) == 0)
+ return (disk);
+ }
+ return (NULL);
+}
+
+static void
+g_mirror_ctl_configure(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ const char *name, *balancep;
+ intmax_t *slicep;
+ uint32_t slice;
+ uint8_t balance;
+ int *nargs, *autosync, *noautosync, do_sync = 0;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (*nargs != 1) {
+ gctl_error(req, "Invalid number of arguments.");
+ return;
+ }
+ name = gctl_get_asciiparam(req, "arg0");
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+ if (g_mirror_ndisks(sc, -1) < sc->sc_ndisks) {
+ gctl_error(req, "Not all disks connected.");
+ return;
+ }
+ balancep = gctl_get_asciiparam(req, "balance");
+ if (strcmp(balancep, "none") == 0)
+ balance = sc->sc_balance;
+ else {
+ if (balance_id(balancep) == -1) {
+ gctl_error(req, "Invalid balance algorithm.");
+ return;
+ }
+ balance = balance_id(balancep);
+ }
+ slicep = gctl_get_paraml(req, "slice", sizeof(*slicep));
+ if (*slicep == -1)
+ slice = sc->sc_slice;
+ else
+ slice = *slicep;
+ autosync = gctl_get_paraml(req, "autosync", sizeof(*autosync));
+ if (autosync == NULL) {
+ gctl_error(req, "No '%s' argument.", "autosync");
+ return;
+ }
+ noautosync = gctl_get_paraml(req, "noautosync", sizeof(*noautosync));
+ if (noautosync == NULL) {
+ gctl_error(req, "No '%s' argument.", "noautosync");
+ return;
+ }
+ if (sc->sc_balance == balance && sc->sc_slice == slice && !*autosync &&
+ !*noautosync) {
+ gctl_error(req, "Nothing has changed.");
+ return;
+ }
+ if (*autosync && *noautosync) {
+ gctl_error(req, "'%s' and '%s' specified.", "autosync",
+ "noautosync");
+ return;
+ }
+ sc->sc_balance = balance;
+ sc->sc_slice = slice;
+ if ((sc->sc_flags & G_MIRROR_DEVICE_FLAG_NOAUTOSYNC) != 0) {
+ if (*autosync) {
+ sc->sc_flags &= ~G_MIRROR_DEVICE_FLAG_NOAUTOSYNC;
+ do_sync = 1;
+ }
+ } else {
+ if (*noautosync)
+ sc->sc_flags |= G_MIRROR_DEVICE_FLAG_NOAUTOSYNC;
+ }
+ LIST_FOREACH(disk, &sc->sc_disks, d_next) {
+ if (do_sync) {
+ if (disk->d_state == G_MIRROR_DISK_STATE_SYNCHRONIZING)
+ disk->d_flags &= ~G_MIRROR_DISK_FLAG_FORCE_SYNC;
+ }
+ g_mirror_update_metadata(disk);
+ if (do_sync) {
+ if (disk->d_state == G_MIRROR_DISK_STATE_STALE) {
+ g_mirror_event_send(disk,
+ G_MIRROR_DISK_STATE_DISCONNECTED,
+ G_MIRROR_EVENT_DONTWAIT);
+ }
+ }
+ }
+}
+
+static void
+g_mirror_ctl_rebuild(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ const char *name;
+ char param[16];
+ int *nargs;
+ u_int i;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 2) {
+ gctl_error(req, "Too few arguments.");
+ return;
+ }
+ name = gctl_get_asciiparam(req, "arg0");
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", 0);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+
+ for (i = 1; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ return;
+ }
+ disk = g_mirror_find_disk(sc, name);
+ if (disk == NULL) {
+ gctl_error(req, "No such provider: %s.", name);
+ return;
+ }
+ if (g_mirror_ndisks(sc, G_MIRROR_DISK_STATE_ACTIVE) == 1 &&
+ disk->d_state == G_MIRROR_DISK_STATE_ACTIVE) {
+ /*
+ * This is the last active disk. There will be nothing
+ * to rebuild it from, so deny this request.
+ */
+ gctl_error(req,
+ "Provider %s is the last active provider in %s.",
+ name, sc->sc_geom->name);
+ return;
+ }
+ /*
+ * Do rebuild by resetting syncid and disconnecting disk.
+ * It'll be retasted, connected to the mirror and
+ * synchronized.
+ */
+ disk->d_sync.ds_syncid = 0;
+ if ((sc->sc_flags & G_MIRROR_DEVICE_FLAG_NOAUTOSYNC) != 0)
+ disk->d_flags |= G_MIRROR_DISK_FLAG_FORCE_SYNC;
+ g_mirror_update_metadata(disk);
+ g_mirror_event_send(disk, G_MIRROR_DISK_STATE_DISCONNECTED,
+ G_MIRROR_EVENT_WAIT);
+ }
+}
+
+static void
+g_mirror_ctl_insert(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ struct g_mirror_metadata md;
+ struct g_provider *pp;
+ struct g_consumer *cp;
+ const char *name;
+ char param[16];
+ u_char *sector;
+ u_int i, n;
+ int error, *nargs, *inactive;
+ struct {
+ struct g_provider *provider;
+ struct g_consumer *consumer;
+ } *disks;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 2) {
+ gctl_error(req, "Too few arguments.");
+ return;
+ }
+ inactive = gctl_get_paraml(req, "inactive", sizeof(*inactive));
+ if (inactive == NULL) {
+ gctl_error(req, "No '%s' argument.", "inactive");
+ return;
+ }
+ name = gctl_get_asciiparam(req, "arg0");
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", 0);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+ if (g_mirror_ndisks(sc, -1) < sc->sc_ndisks) {
+ gctl_error(req, "Not all disks connected.");
+ return;
+ }
+
+ disks = g_malloc(sizeof(*disks) * (*nargs), M_WAITOK | M_ZERO);
+ for (i = 1, n = 0; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ continue;
+ }
+ if (strncmp(name, "/dev/", strlen("/dev/")) == 0)
+ name += strlen("/dev/");
+ pp = g_provider_by_name(name);
+ if (pp == NULL) {
+ gctl_error(req, "Unknown provider %s.", name);
+ continue;
+ }
+ if (sc->sc_provider->mediasize > pp->mediasize) {
+ gctl_error(req, "Provider %s too small.", name);
+ continue;
+ }
+ if ((sc->sc_provider->sectorsize % pp->sectorsize) != 0) {
+ gctl_error(req, "Invalid sectorsize of provider %s.",
+ name);
+ continue;
+ }
+ cp = g_new_consumer(sc->sc_geom);
+ if (g_attach(cp, pp) != 0) {
+ g_destroy_consumer(cp);
+ gctl_error(req, "Cannot attach to provider %s.", name);
+ continue;
+ }
+ if (g_access(cp, 0, 1, 1) != 0) {
+ g_detach(cp);
+ g_destroy_consumer(cp);
+ gctl_error(req, "Cannot access provider %s.", name);
+ continue;
+ }
+ disks[n].provider = pp;
+ disks[n].consumer = cp;
+ n++;
+ }
+ if (n == 0) {
+ g_free(disks);
+ return;
+ }
+ sc->sc_ndisks += n;
+again:
+ for (i = 0; i < n; i++) {
+ if (disks[i].consumer == NULL)
+ continue;
+ g_mirror_fill_metadata(sc, NULL, &md);
+ if (*inactive)
+ md.md_dflags |= G_MIRROR_DISK_FLAG_INACTIVE;
+ pp = disks[i].provider;
+ sector = g_malloc(pp->sectorsize, M_WAITOK);
+ mirror_metadata_encode(&md, sector);
+ error = g_write_data(disks[i].consumer,
+ pp->mediasize - pp->sectorsize, sector, pp->sectorsize);
+ g_free(sector);
+ if (error != 0) {
+ gctl_error(req, "Cannot store metadata on %s.",
+ pp->name);
+ g_access(disks[i].consumer, 0, -1, -1);
+ g_detach(disks[i].consumer);
+ g_destroy_consumer(disks[i].consumer);
+ disks[i].consumer = NULL;
+ disks[i].provider = NULL;
+ sc->sc_ndisks--;
+ goto again;
+ }
+ }
+ if (i == 0) {
+ /* All writes failed. */
+ g_free(disks);
+ return;
+ }
+ LIST_FOREACH(disk, &sc->sc_disks, d_next) {
+ g_mirror_update_metadata(disk);
+ }
+ /*
+ * Release provider and wait for retaste.
+ */
+ for (i = 0; i < n; i++) {
+ if (disks[i].consumer == NULL)
+ continue;
+ g_access(disks[i].consumer, 0, -1, -1);
+ g_detach(disks[i].consumer);
+ g_destroy_consumer(disks[i].consumer);
+ }
+ g_free(disks);
+}
+
+static void
+g_mirror_ctl_remove(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ const char *name;
+ char param[16];
+ int *nargs;
+ u_int i;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 2) {
+ gctl_error(req, "Too few arguments.");
+ return;
+ }
+ name = gctl_get_asciiparam(req, "arg0");
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", 0);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+ if (g_mirror_ndisks(sc, -1) < sc->sc_ndisks) {
+ gctl_error(req, "Not all disks connected.");
+ return;
+ }
+
+ for (i = 1; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ return;
+ }
+ disk = g_mirror_find_disk(sc, name);
+ if (disk == NULL) {
+ gctl_error(req, "No such provider: %s.", name);
+ return;
+ }
+ g_mirror_event_send(disk, G_MIRROR_DISK_STATE_DESTROY,
+ G_MIRROR_EVENT_WAIT);
+ }
+}
+
+static void
+g_mirror_ctl_deactivate(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ const char *name;
+ char param[16];
+ int *nargs;
+ u_int i;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 2) {
+ gctl_error(req, "Too few arguments.");
+ return;
+ }
+ name = gctl_get_asciiparam(req, "arg0");
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", 0);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+
+ for (i = 1; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ return;
+ }
+ disk = g_mirror_find_disk(sc, name);
+ if (disk == NULL) {
+ gctl_error(req, "No such provider: %s.", name);
+ return;
+ }
+ /*
+ * Do rebuild by resetting syncid and disconnecting disk.
+ * It'll be retasted, connected to the mirror and
+ * synchronized.
+ */
+ disk->d_flags |= G_MIRROR_DISK_FLAG_INACTIVE;
+ disk->d_flags &= ~G_MIRROR_DISK_FLAG_FORCE_SYNC;
+ g_mirror_update_metadata(disk);
+ sc->sc_bump_syncid = G_MIRROR_BUMP_ON_FIRST_WRITE;
+ g_mirror_event_send(disk, G_MIRROR_DISK_STATE_DISCONNECTED,
+ G_MIRROR_EVENT_WAIT);
+ }
+}
+
+static void
+g_mirror_ctl_forget(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ struct g_mirror_disk *disk;
+ const char *name;
+ char param[16];
+ int *nargs;
+ u_int i;
+
+ g_topology_assert();
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 1) {
+ gctl_error(req, "Missing device(s).");
+ return;
+ }
+
+ for (i = 0; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+ if (g_mirror_ndisks(sc, -1) == sc->sc_ndisks) {
+ G_MIRROR_DEBUG(1,
+ "All disks connected in %s, skipping.",
+ sc->sc_name);
+ continue;
+ }
+ sc->sc_ndisks = g_mirror_ndisks(sc, -1);
+ LIST_FOREACH(disk, &sc->sc_disks, d_next) {
+ g_mirror_update_metadata(disk);
+ }
+ }
+}
+
+static void
+g_mirror_ctl_stop(struct gctl_req *req, struct g_class *mp)
+{
+ struct g_mirror_softc *sc;
+ int *force, *nargs, error;
+ const char *name;
+ char param[16];
+ u_int i;
+
+ g_topology_assert();
+
+ nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs));
+ if (nargs == NULL) {
+ gctl_error(req, "No '%s' argument.", "nargs");
+ return;
+ }
+ if (*nargs < 1) {
+ gctl_error(req, "Missing device(s).");
+ return;
+ }
+ force = gctl_get_paraml(req, "force", sizeof(*force));
+ if (force == NULL) {
+ gctl_error(req, "No '%s' argument.", "force");
+ return;
+ }
+
+ for (i = 0; i < (u_int)*nargs; i++) {
+ snprintf(param, sizeof(param), "arg%u", i);
+ name = gctl_get_asciiparam(req, param);
+ if (name == NULL) {
+ gctl_error(req, "No 'arg%u' argument.", i);
+ return;
+ }
+ sc = g_mirror_find_device(mp, name);
+ if (sc == NULL) {
+ gctl_error(req, "No such device: %s.", name);
+ return;
+ }
+ error = g_mirror_destroy(sc, *force);
+ if (error != 0) {
+ gctl_error(req, "Cannot destroy device %s (error=%d).",
+ sc->sc_geom->name, error);
+ return;
+ }
+ }
+}
+
+void
+g_mirror_config(struct gctl_req *req, struct g_class *mp, const char *verb)
+{
+ uint32_t *version;
+
+ g_topology_assert();
+
+ version = gctl_get_paraml(req, "version", sizeof(*version));
+ if (version == NULL) {
+ gctl_error(req, "No '%s' argument.", "version");
+ return;
+ }
+ if (*version != G_MIRROR_VERSION) {
+ gctl_error(req, "Userland and kernel parts are out of sync.");
+ return;
+ }
+
+ if (strcmp(verb, "configure") == 0)
+ g_mirror_ctl_configure(req, mp);
+ else if (strcmp(verb, "rebuild") == 0)
+ g_mirror_ctl_rebuild(req, mp);
+ else if (strcmp(verb, "insert") == 0)
+ g_mirror_ctl_insert(req, mp);
+ else if (strcmp(verb, "remove") == 0)
+ g_mirror_ctl_remove(req, mp);
+ else if (strcmp(verb, "deactivate") == 0)
+ g_mirror_ctl_deactivate(req, mp);
+ else if (strcmp(verb, "forget") == 0)
+ g_mirror_ctl_forget(req, mp);
+ else if (strcmp(verb, "stop") == 0)
+ g_mirror_ctl_stop(req, mp);
+ else
+ gctl_error(req, "Unknown verb.");
+}
OpenPOWER on IntegriCloud