From: deraadt Date: Mon, 30 Jul 2018 00:11:04 +0000 (+0000) Subject: activate unveil for testing X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=93768d176ed575687fc8543048b12cc31ffa86ea;p=openbsd activate unveil for testing ok kibbles and bits --- diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 768a5676736..b01a0c87468 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_syscalls.c,v 1.296 2018/07/27 01:44:19 beck Exp $ */ +/* $OpenBSD: vfs_syscalls.c,v 1.297 2018/07/30 00:11:04 deraadt Exp $ */ /* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */ /* @@ -913,9 +913,6 @@ sys_unveil(struct proc *p, void *v, register_t *retval) if (pathlen < 2) return EINVAL; - /* XXX unveil is disabled but returns sucess for now */ - return 0; - if (pathlen == 2 && pathname[0] == '/') NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | SAVENAME, UIO_SYSSPACE, pathname, p);