summaryrefslogtreecommitdiff
path: root/lib/libjail
diff options
context:
space:
mode:
authorJamie Gritton <jamie@FreeBSD.org>2018-03-21 23:50:46 +0000
committerJamie Gritton <jamie@FreeBSD.org>2018-03-21 23:50:46 +0000
commitf047b92153d00cb700660486f2d9b777fe551026 (patch)
treec2d4fc61feb8b3df6ff8d0e4ffe32f294f9f68a8 /lib/libjail
parent70be5ca73466d64cc932141f35c74fbc75ae1a55 (diff)
downloadsrc-test2-f047b92153d00cb700660486f2d9b777fe551026.tar.gz
src-test2-f047b92153d00cb700660486f2d9b777fe551026.zip
If a jail parameter isn't found, try loading a related kernel module.
Notes
Notes: svn path=/head/; revision=331332
Diffstat (limited to 'lib/libjail')
-rw-r--r--lib/libjail/jail.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/libjail/jail.c b/lib/libjail/jail.c
index 99722a1dcb29..5218568001fb 100644
--- a/lib/libjail/jail.c
+++ b/lib/libjail/jail.c
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/jail.h>
+#include <sys/linker.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
@@ -59,6 +60,7 @@ __FBSDID("$FreeBSD$");
static int jailparam_import_enum(const char **values, int nvalues,
const char *valstr, size_t valsize, int *value);
static int jailparam_type(struct jailparam *jp);
+static int kldload_param(const char *name);
static char *noname(const char *name);
static char *nononame(const char *name);
@@ -892,6 +894,9 @@ jailparam_type(struct jailparam *jp)
"sysctl(0.3.%s): %s", name, strerror(errno));
return (-1);
}
+ if (kldload_param(name) >= 0 && sysctl(mib, 2, mib + 2, &miblen,
+ desc.s, strlen(desc.s)) >= 0)
+ goto mib_desc;
/*
* The parameter probably doesn't exist. But it might be
* the "no" counterpart to a boolean.
@@ -1031,6 +1036,33 @@ jailparam_type(struct jailparam *jp)
}
/*
+ * Attempt to load a kernel module matching an otherwise nonexistent parameter.
+ */
+static int
+kldload_param(const char *name)
+{
+ int kl;
+
+ if (strcmp(name, "linux") == 0 || strncmp(name, "linux.", 6) == 0)
+ kl = kldload("linux");
+ else if (strcmp(name, "sysvmsg") == 0 || strcmp(name, "sysvsem") == 0 ||
+ strcmp(name, "sysvshm") == 0)
+ kl = kldload(name);
+ else {
+ errno = ENOENT;
+ return (-1);
+ }
+ if (kl < 0 && errno == EEXIST) {
+ /*
+ * In the module is already loaded, then it must not contain
+ * the parameter.
+ */
+ errno = ENOENT;
+ }
+ return kl;
+}
+
+/*
* Change a boolean parameter name into its "no" counterpart or vice versa.
*/
static char *