From 1b150eae18fba81f3f15b3ed23431cb06ac69bff Mon Sep 17 00:00:00 2001 From: deraadt Date: Sun, 18 Oct 2015 01:53:31 +0000 Subject: [PATCH] TIOCSTI and TIOCSCTTY; oops got the condition backwards. --- sys/kern/kern_pledge.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/kern_pledge.c b/sys/kern/kern_pledge.c index 5ae8213d589..3d1fa59be00 100644 --- a/sys/kern/kern_pledge.c +++ b/sys/kern/kern_pledge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_pledge.c,v 1.50 2015/10/18 01:07:19 doug Exp $ */ +/* $OpenBSD: kern_pledge.c,v 1.51 2015/10/18 01:53:31 deraadt Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -1069,12 +1069,12 @@ pledge_ioctl_check(struct proc *p, long com, void *v) return (0); #endif /* NPTY > 0 */ case TIOCSTI: /* ksh? csh? */ - if ((p->p_p->ps_pledge & PLEDGE_PROC) == 0 && + if ((p->p_p->ps_pledge & PLEDGE_PROC) && fp->f_type == DTYPE_VNODE && (vp->v_flag & VISTTY)) return (0); break; case TIOCSCTTY: /* tmux etc */ - if ((p->p_p->ps_pledge & PLEDGE_ID) == 0 && + if ((p->p_p->ps_pledge & PLEDGE_ID) && fp->f_type == DTYPE_VNODE && (vp->v_flag & VISTTY)) return (0); break; -- 2.20.1