Add regress covering the recently fixed NULL pointer deref in open().
authoranton <anton@openbsd.org>
Mon, 30 Jul 2018 17:27:37 +0000 (17:27 +0000)
committeranton <anton@openbsd.org>
Mon, 30 Jul 2018 17:27:37 +0000 (17:27 +0000)
regress/sys/kern/Makefile
regress/sys/kern/open/Makefile [new file with mode: 0644]
regress/sys/kern/open/open.c [new file with mode: 0644]

index 7e4106d..a36c739 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile,v 1.74 2018/07/22 06:39:46 anton Exp $
+#      $OpenBSD: Makefile,v 1.75 2018/07/30 17:27:37 anton Exp $
 
 SUBDIR+= __syscall access accept dup2 dup2_accept dup2_self
 SUBDIR+= exec_self execve exit extent
@@ -14,6 +14,7 @@ SUBDIR+= main-thread-exited
 SUBDIR+= mmap mmap2 mmap3 mmap-fail
 SUBDIR+= mount
 SUBDIR+= nanosleep noexec
+SUBDIR+= open
 SUBDIR+= pledge
 SUBDIR+= pread preadv ptmget pty pwrite pwritev rcvtimeo
 SUBDIR+= rlimit-file signal signal-stress sigprof sigsuspend
diff --git a/regress/sys/kern/open/Makefile b/regress/sys/kern/open/Makefile
new file mode 100644 (file)
index 0000000..f57dcb7
--- /dev/null
@@ -0,0 +1,11 @@
+#      $OpenBSD: Makefile,v 1.1 2018/07/30 17:27:37 anton Exp $
+
+PROG=          open
+WARNINGS=      yes
+
+REGRESS_TARGETS+=      clone-device
+
+clone-device: ${PROG}
+       ${SUDO} ./${PROG}
+
+.include <bsd.regress.mk>
diff --git a/regress/sys/kern/open/open.c b/regress/sys/kern/open/open.c
new file mode 100644 (file)
index 0000000..1088211
--- /dev/null
@@ -0,0 +1,37 @@
+/*     $OpenBSD: open.c,v 1.1 2018/07/30 17:27:37 anton Exp $  */
+/*
+ * Copyright (c) 2018 Anton Lindqvist <anton@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/*
+ * Regression test for NULL-deref inside doopenat().
+ */
+
+#include <err.h>
+#include <fcntl.h>
+#include <unistd.h>
+
+int
+main(void)
+{
+       const char *path = "/dev/bpf";
+
+       int fd = open(path, O_WRONLY | O_TRUNC | O_SHLOCK);
+       if (fd == -1)
+               err(1, "open: %s", path);
+       close(fd);
+
+       return 0;
+}