2020-10-14 21:36:17 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
2021-01-21 16:56:27 +00:00
|
|
|
Date: Wed, 21 Oct 2020 16:39:23 -0500
|
2020-10-14 21:36:17 +00:00
|
|
|
Subject: [PATCH] multipath: add libmpathvalid library
|
|
|
|
|
|
|
|
This library allows other programs to check if a path should be claimed
|
2021-01-21 16:56:27 +00:00
|
|
|
by multipath. It exports an init function, that needs to be called
|
|
|
|
before and after all other library calls, an exit function, that needs
|
|
|
|
to be called after all library calls, a function to reread the multipath
|
|
|
|
configuration files, and two more functions.
|
2020-10-14 21:36:17 +00:00
|
|
|
|
|
|
|
mpath_get_mode() get the configured find_multipaths mode.
|
|
|
|
mpath_is_path() returns whether the device is claimed by multipath, and
|
|
|
|
optionally returns the wwid. This code works slightly different than
|
|
|
|
the multipath -c/u code for SMART mode. Instead of checking all the
|
|
|
|
existing paths to see if another has the same wwid, it expects the
|
|
|
|
caller to pass in an array of the already known path wwids, and checks
|
|
|
|
if the current path matches any of those.
|
|
|
|
|
2021-01-21 16:56:27 +00:00
|
|
|
The library also doesn't set up the device-mapper library. It leaves
|
|
|
|
this up to the caller.
|
2020-10-14 21:36:17 +00:00
|
|
|
|
|
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
2021-01-21 16:56:27 +00:00
|
|
|
Reviewed-by: Martin Wilck <mwilck@suse.com>
|
2020-10-14 21:36:17 +00:00
|
|
|
---
|
|
|
|
Makefile | 3 +-
|
2021-01-21 16:56:27 +00:00
|
|
|
libmpathvalid/Makefile | 39 ++++++
|
2020-10-14 21:36:17 +00:00
|
|
|
libmpathvalid/libmpathvalid.version | 10 ++
|
2021-01-21 16:56:27 +00:00
|
|
|
libmpathvalid/mpath_valid.c | 202 ++++++++++++++++++++++++++++
|
|
|
|
libmpathvalid/mpath_valid.h | 155 +++++++++++++++++++++
|
|
|
|
libmultipath/libmultipath.version | 6 +
|
|
|
|
6 files changed, 414 insertions(+), 1 deletion(-)
|
2020-10-14 21:36:17 +00:00
|
|
|
create mode 100644 libmpathvalid/Makefile
|
|
|
|
create mode 100644 libmpathvalid/libmpathvalid.version
|
|
|
|
create mode 100644 libmpathvalid/mpath_valid.c
|
|
|
|
create mode 100644 libmpathvalid/mpath_valid.h
|
|
|
|
|
|
|
|
diff --git a/Makefile b/Makefile
|
2021-01-21 16:56:27 +00:00
|
|
|
index 4a3491da..f127ff91 100644
|
2020-10-14 21:36:17 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
|
|
|
@@ -9,6 +9,7 @@ BUILDDIRS := \
|
|
|
|
libmultipath/checkers \
|
|
|
|
libmultipath/foreign \
|
|
|
|
libmpathpersist \
|
|
|
|
+ libmpathvalid \
|
|
|
|
multipath \
|
|
|
|
multipathd \
|
|
|
|
mpathpersist \
|
|
|
|
@@ -29,7 +30,7 @@ $(BUILDDIRS):
|
|
|
|
$(MAKE) -C $@
|
|
|
|
|
|
|
|
libmultipath libdmmp: libmpathcmd
|
|
|
|
-libmpathpersist multipath multipathd: libmultipath
|
|
|
|
+libmpathpersist libmpathvalid multipath multipathd: libmultipath
|
|
|
|
mpathpersist multipathd: libmpathpersist
|
|
|
|
|
|
|
|
libmultipath/checkers.install \
|
|
|
|
diff --git a/libmpathvalid/Makefile b/libmpathvalid/Makefile
|
|
|
|
new file mode 100644
|
2021-01-21 16:56:27 +00:00
|
|
|
index 00000000..6bea4bcd
|
2020-10-14 21:36:17 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/libmpathvalid/Makefile
|
2021-01-21 16:56:27 +00:00
|
|
|
@@ -0,0 +1,39 @@
|
2020-10-14 21:36:17 +00:00
|
|
|
+include ../Makefile.inc
|
|
|
|
+
|
|
|
|
+SONAME = 0
|
|
|
|
+DEVLIB = libmpathvalid.so
|
|
|
|
+LIBS = $(DEVLIB).$(SONAME)
|
2021-01-21 16:56:27 +00:00
|
|
|
+VERSION_SCRIPT := libmpathvalid.version
|
2020-10-14 21:36:17 +00:00
|
|
|
+
|
|
|
|
+CFLAGS += $(LIB_CFLAGS) -I$(multipathdir) -I$(mpathcmddir)
|
|
|
|
+
|
|
|
|
+LIBDEPS += -lpthread -ldevmapper -ldl -L$(multipathdir) \
|
|
|
|
+ -lmultipath -L$(mpathcmddir) -lmpathcmd -ludev
|
|
|
|
+
|
|
|
|
+OBJS = mpath_valid.o
|
|
|
|
+
|
|
|
|
+all: $(LIBS)
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+$(LIBS): $(OBJS) $(VERSION_SCRIPT)
|
2020-10-14 21:36:17 +00:00
|
|
|
+ $(CC) $(LDFLAGS) $(SHARED_FLAGS) -Wl,-soname=$@ -o $@ $(OBJS) $(LIBDEPS) -Wl,--version-script=libmpathvalid.version
|
|
|
|
+ $(LN) $(LIBS) $(DEVLIB)
|
|
|
|
+
|
|
|
|
+install: $(LIBS)
|
|
|
|
+ $(INSTALL_PROGRAM) -m 755 -d $(DESTDIR)$(syslibdir)
|
|
|
|
+ $(INSTALL_PROGRAM) -m 755 $(LIBS) $(DESTDIR)$(syslibdir)/$(LIBS)
|
|
|
|
+ $(LN) $(LIBS) $(DESTDIR)$(syslibdir)/$(DEVLIB)
|
|
|
|
+ $(INSTALL_PROGRAM) -m 755 -d $(DESTDIR)$(includedir)
|
|
|
|
+ $(INSTALL_PROGRAM) -m 644 mpath_valid.h $(DESTDIR)$(includedir)
|
|
|
|
+
|
|
|
|
+uninstall:
|
|
|
|
+ $(RM) $(DESTDIR)$(syslibdir)/$(LIBS)
|
|
|
|
+ $(RM) $(DESTDIR)$(syslibdir)/$(DEVLIB)
|
|
|
|
+ $(RM) $(DESTDIR)$(includedir)/mpath_valid.h
|
|
|
|
+
|
|
|
|
+clean: dep_clean
|
|
|
|
+ $(RM) core *.a *.o *.so *.so.* *.gz
|
|
|
|
+
|
|
|
|
+include $(wildcard $(OBJS:.o=.d))
|
|
|
|
+
|
|
|
|
+dep_clean:
|
|
|
|
+ $(RM) $(OBJS:.o=.d)
|
|
|
|
diff --git a/libmpathvalid/libmpathvalid.version b/libmpathvalid/libmpathvalid.version
|
|
|
|
new file mode 100644
|
2021-01-21 16:56:27 +00:00
|
|
|
index 00000000..3bd0d3c5
|
2020-10-14 21:36:17 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/libmpathvalid/libmpathvalid.version
|
|
|
|
@@ -0,0 +1,10 @@
|
|
|
|
+MPATH_1.0 {
|
|
|
|
+ global:
|
|
|
|
+ mpathvalid_init;
|
2021-01-21 16:56:27 +00:00
|
|
|
+ mpathvalid_reload_config;
|
2020-10-14 21:36:17 +00:00
|
|
|
+ mpathvalid_exit;
|
|
|
|
+ mpathvalid_is_path;
|
|
|
|
+ mpathvalid_get_mode;
|
|
|
|
+ local:
|
|
|
|
+ *;
|
|
|
|
+};
|
|
|
|
diff --git a/libmpathvalid/mpath_valid.c b/libmpathvalid/mpath_valid.c
|
|
|
|
new file mode 100644
|
2021-01-21 16:56:27 +00:00
|
|
|
index 00000000..7073d17d
|
2020-10-14 21:36:17 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/libmpathvalid/mpath_valid.c
|
2021-01-21 16:56:27 +00:00
|
|
|
@@ -0,0 +1,202 @@
|
2020-10-14 21:36:17 +00:00
|
|
|
+#include <stdlib.h>
|
|
|
|
+#include <stdio.h>
|
|
|
|
+#include <stdint.h>
|
|
|
|
+#include <libdevmapper.h>
|
|
|
|
+#include <libudev.h>
|
|
|
|
+#include <errno.h>
|
|
|
|
+
|
|
|
|
+#include "devmapper.h"
|
|
|
|
+#include "structs.h"
|
|
|
|
+#include "util.h"
|
|
|
|
+#include "config.h"
|
|
|
|
+#include "discovery.h"
|
|
|
|
+#include "wwids.h"
|
|
|
|
+#include "sysfs.h"
|
|
|
|
+#include "mpath_cmd.h"
|
|
|
|
+#include "valid.h"
|
|
|
|
+#include "mpath_valid.h"
|
2021-01-21 16:56:27 +00:00
|
|
|
+#include "debug.h"
|
2020-10-14 21:36:17 +00:00
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+static unsigned int
|
|
|
|
+get_conf_mode(struct config *conf)
|
2020-10-14 21:36:17 +00:00
|
|
|
+{
|
|
|
|
+ if (conf->find_multipaths == FIND_MULTIPATHS_SMART)
|
|
|
|
+ return MPATH_SMART;
|
|
|
|
+ if (conf->find_multipaths == FIND_MULTIPATHS_GREEDY)
|
|
|
|
+ return MPATH_GREEDY;
|
|
|
|
+ return MPATH_STRICT;
|
|
|
|
+}
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+static void
|
|
|
|
+set_conf_mode(struct config *conf, unsigned int mode)
|
2020-10-14 21:36:17 +00:00
|
|
|
+{
|
|
|
|
+ if (mode == MPATH_SMART)
|
|
|
|
+ conf->find_multipaths = FIND_MULTIPATHS_SMART;
|
|
|
|
+ else if (mode == MPATH_GREEDY)
|
|
|
|
+ conf->find_multipaths = FIND_MULTIPATHS_GREEDY;
|
|
|
|
+ else
|
|
|
|
+ conf->find_multipaths = FIND_MULTIPATHS_STRICT;
|
|
|
|
+}
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+unsigned int
|
|
|
|
+mpathvalid_get_mode(void)
|
2020-10-14 21:36:17 +00:00
|
|
|
+{
|
|
|
|
+ int mode;
|
|
|
|
+ struct config *conf;
|
|
|
|
+
|
|
|
|
+ conf = get_multipath_config();
|
|
|
|
+ if (!conf)
|
2021-01-21 16:56:27 +00:00
|
|
|
+ mode = MPATH_MODE_ERROR;
|
|
|
|
+ else
|
|
|
|
+ mode = get_conf_mode(conf);
|
2020-10-14 21:36:17 +00:00
|
|
|
+ put_multipath_config(conf);
|
|
|
|
+ return mode;
|
|
|
|
+}
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+static int
|
|
|
|
+convert_result(int result) {
|
2020-10-14 21:36:17 +00:00
|
|
|
+ switch (result) {
|
|
|
|
+ case PATH_IS_ERROR:
|
|
|
|
+ return MPATH_IS_ERROR;
|
|
|
|
+ case PATH_IS_NOT_VALID:
|
|
|
|
+ return MPATH_IS_NOT_VALID;
|
|
|
|
+ case PATH_IS_VALID:
|
|
|
|
+ return MPATH_IS_VALID;
|
|
|
|
+ case PATH_IS_VALID_NO_CHECK:
|
|
|
|
+ return MPATH_IS_VALID_NO_CHECK;
|
|
|
|
+ case PATH_IS_MAYBE_VALID:
|
|
|
|
+ return MPATH_IS_MAYBE_VALID;
|
|
|
|
+ }
|
|
|
|
+ return MPATH_IS_ERROR;
|
|
|
|
+}
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+static void
|
|
|
|
+set_log_style(int log_style)
|
|
|
|
+{
|
|
|
|
+ /*
|
|
|
|
+ * convert MPATH_LOG_* to LOGSINK_*
|
|
|
|
+ * currently there is no work to do here.
|
|
|
|
+ */
|
|
|
|
+ logsink = log_style;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+load_default_config(int verbosity)
|
|
|
|
+{
|
|
|
|
+ /* need to set verbosity here to control logging during init_config() */
|
|
|
|
+ libmp_verbosity = verbosity;
|
|
|
|
+ if (init_config(DEFAULT_CONFIGFILE))
|
|
|
|
+ return -1;
|
|
|
|
+ /* Need to override verbosity from init_config() */
|
|
|
|
+ libmp_verbosity = verbosity;
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
2020-10-14 21:36:17 +00:00
|
|
|
+int
|
2021-01-21 16:56:27 +00:00
|
|
|
+mpathvalid_init(int verbosity, int log_style)
|
2020-10-14 21:36:17 +00:00
|
|
|
+{
|
|
|
|
+ unsigned int version[3];
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+ set_log_style(log_style);
|
|
|
|
+ if (libmultipath_init())
|
2020-10-14 21:36:17 +00:00
|
|
|
+ return -1;
|
2021-01-21 16:56:27 +00:00
|
|
|
+
|
|
|
|
+ skip_libmp_dm_init();
|
|
|
|
+ if (load_default_config(verbosity))
|
2020-10-14 21:36:17 +00:00
|
|
|
+ goto fail;
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+ if (dm_prereq(version))
|
|
|
|
+ goto fail_config;
|
|
|
|
+
|
2020-10-14 21:36:17 +00:00
|
|
|
+ return 0;
|
2021-01-21 16:56:27 +00:00
|
|
|
+
|
|
|
|
+fail_config:
|
|
|
|
+ uninit_config();
|
2020-10-14 21:36:17 +00:00
|
|
|
+fail:
|
2021-01-21 16:56:27 +00:00
|
|
|
+ libmultipath_exit();
|
2020-10-14 21:36:17 +00:00
|
|
|
+ return -1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
2021-01-21 16:56:27 +00:00
|
|
|
+mpathvalid_reload_config(void)
|
2020-10-14 21:36:17 +00:00
|
|
|
+{
|
2021-01-21 16:56:27 +00:00
|
|
|
+ uninit_config();
|
|
|
|
+ return load_default_config(libmp_verbosity);
|
|
|
|
+}
|
2020-10-14 21:36:17 +00:00
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+int
|
|
|
|
+mpathvalid_exit(void)
|
|
|
|
+{
|
|
|
|
+ uninit_config();
|
|
|
|
+ libmultipath_exit();
|
2020-10-14 21:36:17 +00:00
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * name: name of path to check
|
|
|
|
+ * mode: mode to use for determination. MPATH_DEFAULT uses configured mode
|
|
|
|
+ * info: on success, contains the path wwid
|
|
|
|
+ * paths: array of the returned mpath_info from other claimed paths
|
|
|
|
+ * nr_paths: the size of the paths array
|
|
|
|
+ */
|
|
|
|
+int
|
|
|
|
+mpathvalid_is_path(const char *name, unsigned int mode, char **wwid,
|
|
|
|
+ const char **path_wwids, unsigned int nr_paths)
|
|
|
|
+{
|
|
|
|
+ struct config *conf;
|
2021-01-21 16:56:27 +00:00
|
|
|
+ int find_multipaths_saved, r = MPATH_IS_ERROR;
|
2020-10-14 21:36:17 +00:00
|
|
|
+ unsigned int i;
|
|
|
|
+ struct path *pp;
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+ if (!name || mode >= MPATH_MODE_ERROR)
|
2020-10-14 21:36:17 +00:00
|
|
|
+ return r;
|
|
|
|
+ if (nr_paths > 0 && !path_wwids)
|
|
|
|
+ return r;
|
2021-01-21 16:56:27 +00:00
|
|
|
+ if (!udev)
|
|
|
|
+ return r;
|
2020-10-14 21:36:17 +00:00
|
|
|
+
|
|
|
|
+ pp = alloc_path();
|
|
|
|
+ if (!pp)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ if (wwid) {
|
|
|
|
+ *wwid = (char *)malloc(WWID_SIZE);
|
|
|
|
+ if (!*wwid)
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ conf = get_multipath_config();
|
2021-01-21 16:56:27 +00:00
|
|
|
+ if (!conf)
|
2020-10-14 21:36:17 +00:00
|
|
|
+ goto out_wwid;
|
2021-01-21 16:56:27 +00:00
|
|
|
+ find_multipaths_saved = conf->find_multipaths;
|
2020-10-14 21:36:17 +00:00
|
|
|
+ if (mode != MPATH_DEFAULT)
|
|
|
|
+ set_conf_mode(conf, mode);
|
|
|
|
+ r = convert_result(is_path_valid(name, conf, pp, true));
|
2021-01-21 16:56:27 +00:00
|
|
|
+ conf->find_multipaths = find_multipaths_saved;
|
2020-10-14 21:36:17 +00:00
|
|
|
+ put_multipath_config(conf);
|
|
|
|
+
|
|
|
|
+ if (r == MPATH_IS_MAYBE_VALID) {
|
|
|
|
+ for (i = 0; i < nr_paths; i++) {
|
2021-01-21 16:56:27 +00:00
|
|
|
+ if (path_wwids[i] &&
|
|
|
|
+ strncmp(path_wwids[i], pp->wwid, WWID_SIZE) == 0) {
|
2020-10-14 21:36:17 +00:00
|
|
|
+ r = MPATH_IS_VALID;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+out_wwid:
|
|
|
|
+ if (wwid) {
|
|
|
|
+ if (r == MPATH_IS_VALID || r == MPATH_IS_VALID_NO_CHECK ||
|
|
|
|
+ r == MPATH_IS_MAYBE_VALID)
|
|
|
|
+ strlcpy(*wwid, pp->wwid, WWID_SIZE);
|
|
|
|
+ else {
|
|
|
|
+ free(*wwid);
|
|
|
|
+ *wwid = NULL;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+out:
|
|
|
|
+ free_path(pp);
|
|
|
|
+ return r;
|
|
|
|
+}
|
|
|
|
diff --git a/libmpathvalid/mpath_valid.h b/libmpathvalid/mpath_valid.h
|
|
|
|
new file mode 100644
|
2021-01-21 16:56:27 +00:00
|
|
|
index 00000000..63de4e1c
|
2020-10-14 21:36:17 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/libmpathvalid/mpath_valid.h
|
2021-01-21 16:56:27 +00:00
|
|
|
@@ -0,0 +1,155 @@
|
2020-10-14 21:36:17 +00:00
|
|
|
+/*
|
|
|
|
+ * Copyright (C) 2015 Red Hat, Inc.
|
|
|
|
+ *
|
|
|
|
+ * This file is part of the device-mapper multipath userspace tools.
|
|
|
|
+ *
|
|
|
|
+ * This program is free software; you can redistribute it and/or
|
|
|
|
+ * modify it under the terms of the GNU Lesser General Public License
|
|
|
|
+ * as published by the Free Software Foundation; either version 2
|
|
|
|
+ * of the License, or (at your option) any later version.
|
|
|
|
+ *
|
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+ * GNU Lesser General Public License for more details.
|
|
|
|
+ *
|
|
|
|
+ * You should have received a copy of the GNU Lesser General Public License
|
|
|
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+#ifndef LIB_MPATH_VALID_H
|
|
|
|
+#define LIB_MPATH_VALID_H
|
|
|
|
+
|
|
|
|
+#ifdef __cpluscplus
|
|
|
|
+extern "C" {
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+enum mpath_valid_mode {
|
|
|
|
+ MPATH_DEFAULT,
|
|
|
|
+ MPATH_STRICT,
|
|
|
|
+ MPATH_SMART,
|
|
|
|
+ MPATH_GREEDY,
|
2021-01-21 16:56:27 +00:00
|
|
|
+ MPATH_MODE_ERROR,
|
2020-10-14 21:36:17 +00:00
|
|
|
+};
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+/*
|
|
|
|
+ * MPATH_IS_VALID_NO_CHECK is used to indicate that it is safe to skip
|
|
|
|
+ * checks to see if the device has already been released to the system
|
|
|
|
+ * for use by things other that multipath.
|
|
|
|
+ * MPATH_IS_MAYBE_VALID is used to indicate that this device would
|
|
|
|
+ * be a valid multipath path device if another device with the same
|
|
|
|
+ * wwid existed */
|
2020-10-14 21:36:17 +00:00
|
|
|
+enum mpath_valid_result {
|
|
|
|
+ MPATH_IS_ERROR = -1,
|
|
|
|
+ MPATH_IS_NOT_VALID,
|
|
|
|
+ MPATH_IS_VALID,
|
|
|
|
+ MPATH_IS_VALID_NO_CHECK,
|
|
|
|
+ MPATH_IS_MAYBE_VALID,
|
|
|
|
+};
|
|
|
|
+
|
2021-01-21 16:56:27 +00:00
|
|
|
+enum mpath_valid_log_style {
|
|
|
|
+ MPATH_LOG_STDERR = -1, /* log to STDERR */
|
|
|
|
+ MPATH_LOG_STDERR_TIMESTAMP, /* log to STDERR, with timestamps */
|
|
|
|
+ MPATH_LOG_SYSLOG, /* log to system log */
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+enum mpath_valid_verbosity {
|
|
|
|
+ MPATH_LOG_PRIO_NOLOG = -1, /* log nothing */
|
|
|
|
+ MPATH_LOG_PRIO_ERR,
|
|
|
|
+ MPATH_LOG_PRIO_WARN,
|
|
|
|
+ MPATH_LOG_PRIO_NOTICE,
|
|
|
|
+ MPATH_LOG_PRIO_INFO,
|
|
|
|
+ MPATH_LOG_PRIO_DEBUG,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+/* Function declarations */
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * DESCRIPTION:
|
|
|
|
+ * Initialize the device mapper multipath configuration. This
|
|
|
|
+ * function must be invoked before calling any other
|
|
|
|
+ * libmpathvalid functions. Call mpathvalid_exit() to cleanup.
|
|
|
|
+ * @verbosity: the logging level (mpath_valid_verbosity)
|
|
|
|
+ * @log_style: the logging style (mpath_valid_log_style)
|
|
|
|
+ *
|
|
|
|
+ * RESTRICTIONS:
|
|
|
|
+ * Calling mpathvalid_init() after calling mpathvalid_exit() has no
|
|
|
|
+ * effect.
|
|
|
|
+ *
|
|
|
|
+ * RETURNS: 0 = Success, -1 = Failure
|
|
|
|
+ */
|
|
|
|
+int mpathvalid_init(int verbosity, int log_style);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * DESCRIPTION:
|
|
|
|
+ * Reread the multipath configuration files and reinitalize
|
|
|
|
+ * the device mapper multipath configuration. This function can
|
|
|
|
+ * be called as many times as necessary.
|
|
|
|
+ *
|
|
|
|
+ * RETURNS: 0 = Success, -1 = Failure
|
|
|
|
+ */
|
|
|
|
+int mpathvalid_reload_config(void);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * DESCRIPTION:
|
|
|
|
+ * Release the device mapper multipath configuration. This
|
|
|
|
+ * function must be called to cleanup resoures allocated by
|
|
|
|
+ * mpathvalid_init(). After calling this function, no futher
|
|
|
|
+ * libmpathvalid functions may be called.
|
|
|
|
+ *
|
|
|
|
+ * RETURNS: 0 = Success, -1 = Failure
|
|
|
|
+ */
|
2020-10-14 21:36:17 +00:00
|
|
|
+int mpathvalid_exit(void);
|
2021-01-21 16:56:27 +00:00
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * DESCRIPTION:
|
|
|
|
+ * Return the configured find_multipaths claim mode, using the
|
|
|
|
+ * configuration from either mpathvalid_init() or
|
|
|
|
+ * mpathvalid_reload_config()
|
|
|
|
+ *
|
|
|
|
+ * RETURNS:
|
|
|
|
+ * MPATH_STRICT, MPATH_SMART, MPATH_GREEDY, or MPATH_MODE_ERROR
|
|
|
|
+ *
|
|
|
|
+ * MPATH_STRICT = find_multiapths (yes|on|no|off)
|
|
|
|
+ * MPATH_SMART = find_multipaths smart
|
|
|
|
+ * MPATH_GREEDY = find_multipaths greedy
|
|
|
|
+ * MPATH_MODE_ERROR = multipath configuration not initialized
|
|
|
|
+ */
|
2020-10-14 21:36:17 +00:00
|
|
|
+unsigned int mpathvalid_get_mode(void);
|
2021-01-21 16:56:27 +00:00
|
|
|
+/*
|
|
|
|
+ * DESCRIPTION:
|
|
|
|
+ * Return whether device-mapper multipath claims a path device,
|
|
|
|
+ * using the configuration read from either mpathvalid_init() or
|
|
|
|
+ * mpathvalid_reload_config(). If the device is either claimed or
|
|
|
|
+ * potentially claimed (MPATH_IS_VALID, MPATH_IS_VALID_NO_CHECK,
|
|
|
|
+ * or MPATH_IS_MAYBE_VALID) and wwid is not NULL, then *wiid will
|
|
|
|
+ * be set to point to the wwid of device. If set, *wwid must be
|
|
|
|
+ * freed by the caller. path_wwids is an obptional parameter that
|
|
|
|
+ * points to an array of wwids, that were returned from previous
|
|
|
|
+ * calls to mpathvalid_is_path(). These are wwids of existing
|
|
|
|
+ * devices that are or potentially are claimed by device-mapper
|
|
|
|
+ * multipath. path_wwids is used with the MPATH_SMART claim mode,
|
|
|
|
+ * to claim devices when another device with the same wwid exists.
|
|
|
|
+ * nr_paths must either be set to the number of elements of
|
|
|
|
+ * path_wwids, or 0, if path_wwids is NULL.
|
|
|
|
+ * @name: The kernel name of the device. input argument
|
|
|
|
+ * @mode: the find_multipaths claim mode (mpath_valid_mode). input argument
|
|
|
|
+ * @wwid: address of a pointer to the path wwid, or NULL. Output argument.
|
|
|
|
+ * Set if path is/may be claimed. If set, must be freed by caller
|
|
|
|
+ * @path_wwids: Array of pointers to path wwids, or NULL. input argument
|
|
|
|
+ * @nr_paths: number of elements in path_wwids array. input argument.
|
|
|
|
+ *
|
|
|
|
+ * RETURNS: device claim result (mpath_valid_result)
|
|
|
|
+ * Also sets *wwid if wwid is not NULL, and the claim result is
|
|
|
|
+ * MPATH_IS_VALID, MPATH_IS_VALID_NO_CHECK, or
|
|
|
|
+ * MPATH_IS_MAYBE_VALID
|
|
|
|
+ */
|
2020-10-14 21:36:17 +00:00
|
|
|
+int mpathvalid_is_path(const char *name, unsigned int mode, char **wwid,
|
|
|
|
+ const char **path_wwids, unsigned int nr_paths);
|
|
|
|
+
|
|
|
|
+#ifdef __cplusplus
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+#endif /* LIB_PATH_VALID_H */
|
2021-01-21 16:56:27 +00:00
|
|
|
diff --git a/libmultipath/libmultipath.version b/libmultipath/libmultipath.version
|
|
|
|
index 67a7379f..2e3583f5 100644
|
|
|
|
--- a/libmultipath/libmultipath.version
|
|
|
|
+++ b/libmultipath/libmultipath.version
|
|
|
|
@@ -264,3 +264,9 @@ LIBMULTIPATH_4.1.0 {
|
|
|
|
global:
|
|
|
|
libmp_verbosity;
|
|
|
|
} LIBMULTIPATH_4.0.0;
|
|
|
|
+
|
|
|
|
+LIBMULTIPATH_4.2.0 {
|
|
|
|
+global:
|
|
|
|
+ dm_prereq;
|
|
|
|
+ skip_libmp_dm_init;
|
|
|
|
+} LIBMULTIPATH_4.1.0;
|
2020-10-14 21:36:17 +00:00
|
|
|
--
|
|
|
|
2.17.2
|
|
|
|
|