mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
jaildesc: remove desc from the sysctl parameter list
Like lastjid, desc should count as a pseudo-parameter. The difference lies entirely in the security.jail.param sysctls, which list all of the jail parameters. Since desc opens and returns a file descriptor, it has no place in such uses as "jls all." Like lastjid, it's still recognized by the kernel if passed in/out, and hard-coded into libjail so it can be recognized there. MFC after: 3 days
This commit is contained in:
parent
91ea7e2ce2
commit
e75dda31c1
2 changed files with 9 additions and 2 deletions
|
|
@ -920,13 +920,21 @@ jailparam_type(struct jailparam *jp)
|
|||
} desc;
|
||||
int mib[CTL_MAXNAME];
|
||||
|
||||
/* The "lastjid" parameter isn't real. */
|
||||
/*
|
||||
* Some pseudo-parameters don't show up in the sysctl
|
||||
* parameter list.
|
||||
*/
|
||||
name = jp->jp_name;
|
||||
if (!strcmp(name, "lastjid")) {
|
||||
jp->jp_valuelen = sizeof(int);
|
||||
jp->jp_ctltype = CTLTYPE_INT | CTLFLAG_WR;
|
||||
return (0);
|
||||
}
|
||||
if (!strcmp(name, "desc")) {
|
||||
jp->jp_valuelen = sizeof(int);
|
||||
jp->jp_ctltype = CTLTYPE_INT | CTLFLAG_RW;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* Find the sysctl that describes the parameter. */
|
||||
mib[0] = 0;
|
||||
|
|
|
|||
|
|
@ -4935,7 +4935,6 @@ sysctl_jail_param(SYSCTL_HANDLER_ARGS)
|
|||
* jail creation time but cannot be changed in an existing jail.
|
||||
*/
|
||||
SYSCTL_JAIL_PARAM(, jid, CTLTYPE_INT | CTLFLAG_RDTUN, "I", "Jail ID");
|
||||
SYSCTL_JAIL_PARAM(, desc, CTLTYPE_INT | CTLFLAG_RW, "I", "Jail descriptor");
|
||||
SYSCTL_JAIL_PARAM(, parent, CTLTYPE_INT | CTLFLAG_RD, "I", "Jail parent ID");
|
||||
SYSCTL_JAIL_PARAM_STRING(, name, CTLFLAG_RW, MAXHOSTNAMELEN, "Jail name");
|
||||
SYSCTL_JAIL_PARAM_STRING(, path, CTLFLAG_RDTUN, MAXPATHLEN, "Jail root path");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue