summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_jail.c
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2010-12-31 22:49:13 +0000
committerbz <bz@FreeBSD.org>2010-12-31 22:49:13 +0000
commit246fcf4d6f1dd0a0a1d77983e8e464f1e55a9ca2 (patch)
treebf62874c46b2b760c92067e38f58515fcf1f24bd /sys/kern/kern_jail.c
parent475bb93831fc7c1d9036f41bb1dc214de2725f4e (diff)
downloadFreeBSD-src-246fcf4d6f1dd0a0a1d77983e8e464f1e55a9ca2.zip
FreeBSD-src-246fcf4d6f1dd0a0a1d77983e8e464f1e55a9ca2.tar.gz
Mfp4 CH177924:
Add and export constants of array sizes of jail parameters as compiled into the kernel. This is the least intrusive way to allow kvm to read the (sparse) arrays independent of the options the kernel was compiled with. Reviewed by: jhb (originally) MFC after: 1 week Sponsored by: The FreeBSD Foundation Sponsored by: CK Software GmbH
Diffstat (limited to 'sys/kern/kern_jail.c')
-rw-r--r--sys/kern/kern_jail.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c
index 4882e8e..093165b 100644
--- a/sys/kern/kern_jail.c
+++ b/sys/kern/kern_jail.c
@@ -140,7 +140,9 @@ static int prison_restrict_ip6(struct prison *pr, struct in6_addr *newip6);
#define PD_LIST_XLOCKED 0x10
/*
- * Parameter names corresponding to PR_* flag values
+ * Parameter names corresponding to PR_* flag values. Size values are for kvm
+ * as we cannot figure out the size of a sparse array, or an array without a
+ * terminating entry.
*/
static char *pr_flag_names[] = {
[0] = "persist",
@@ -151,6 +153,7 @@ static char *pr_flag_names[] = {
[8] = "ip6.saddrsel",
#endif
};
+const size_t pr_flag_names_size = sizeof(pr_flag_names);
static char *pr_flag_nonames[] = {
[0] = "nopersist",
@@ -161,6 +164,7 @@ static char *pr_flag_nonames[] = {
[8] = "ip6.nosaddrsel",
#endif
};
+const size_t pr_flag_nonames_size = sizeof(pr_flag_nonames);
struct jailsys_flags {
const char *name;
@@ -178,6 +182,7 @@ struct jailsys_flags {
{ "ip6", PR_IP6_USER | PR_IP6_DISABLE, PR_IP6_USER },
#endif
};
+const size_t pr_flag_jailsys_size = sizeof(pr_flag_jailsys);
static char *pr_allow_names[] = {
"allow.set_hostname",
@@ -188,6 +193,7 @@ static char *pr_allow_names[] = {
"allow.quotas",
"allow.socket_af",
};
+const size_t pr_allow_names_size = sizeof(pr_allow_names);
static char *pr_allow_nonames[] = {
"allow.noset_hostname",
@@ -198,6 +204,7 @@ static char *pr_allow_nonames[] = {
"allow.noquotas",
"allow.nosocket_af",
};
+const size_t pr_allow_nonames_size = sizeof(pr_allow_nonames);
#define JAIL_DEFAULT_ALLOW PR_ALLOW_SET_HOSTNAME
#define JAIL_DEFAULT_ENFORCE_STATFS 2
OpenPOWER on IntegriCloud