diff options
author | 2015-10-16 06:42:02 +0000 | |
---|---|---|
committer | 2015-10-16 06:42:02 +0000 | |
commit | 3efa320ee43e7b95d01418b9d62f3545635b3c9b (patch) | |
tree | 5c798dffeef77a9727fc19f03edcd554b14ee64c | |
parent | Add TIOCCBRK and TIOCSDTR to the whitelist for pledge ioctl. (diff) | |
download | wireguard-openbsd-3efa320ee43e7b95d01418b9d62f3545635b3c9b.tar.xz wireguard-openbsd-3efa320ee43e7b95d01418b9d62f3545635b3c9b.zip |
FIOSETOWN/FIOGETOWN were added to "ioctl", but study finds no programs
currently needing them. delete 'em for now.
ok doug
-rw-r--r-- | sys/kern/kern_pledge.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/kern/kern_pledge.c b/sys/kern/kern_pledge.c index d20cc7c271c..7b26efd9468 100644 --- a/sys/kern/kern_pledge.c +++ b/sys/kern/kern_pledge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_pledge.c,v 1.31 2015/10/16 06:40:53 doug Exp $ */ +/* $OpenBSD: kern_pledge.c,v 1.32 2015/10/16 06:42:02 deraadt Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott <nicm@openbsd.org> @@ -1044,9 +1044,6 @@ pledge_ioctl_check(struct proc *p, long com, void *v) */ if ((p->p_p->ps_pledge & PLEDGE_IOCTL)) { switch (com) { - case FIOSETOWN: - case FIOGETOWN: - return (0); case TIOCGETA: if (fp->f_type == DTYPE_VNODE && (vp->v_flag & VISTTY)) return (0); |