diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-07-08 12:31:04 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-07-08 12:31:04 +0000 |
commit | 78d04e54e4b4d3157fca1697775b7abf1fb24bfb (patch) | |
tree | 1fb0796a4d31bf73b0e640f0ddfdde47ed9fd9c5 /regress/sys/kern/kqueue/kqueue-flock.c | |
parent | 25bdd431bb109306c3be375df54b1a641b2bdd01 (diff) |
Add a test for kevent(EV_DELETE) screwing with POSIX file locks
Diffstat (limited to 'regress/sys/kern/kqueue/kqueue-flock.c')
-rw-r--r-- | regress/sys/kern/kqueue/kqueue-flock.c | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/regress/sys/kern/kqueue/kqueue-flock.c b/regress/sys/kern/kqueue/kqueue-flock.c new file mode 100644 index 00000000000..68a14f5f56f --- /dev/null +++ b/regress/sys/kern/kqueue/kqueue-flock.c @@ -0,0 +1,91 @@ +/* $OpenBSD: kqueue-flock.c,v 1.1 2012/07/08 12:31:03 guenther Exp $ */ +/* + * Written by Philip Guenther <guenther@openbsd.org> 2012 Public Domain + */ + +#include <sys/types.h> +#include <sys/event.h> +#include <sys/time.h> +#include <sys/wait.h> +#include <err.h> +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <unistd.h> + +#define FILE "lock.test" + +int do_flock(void); + +static void +check_lock(int fd, const char *msg) +{ + pid_t pid = fork(); + int status; + + if (pid == -1) + err(1, "fork"); + if (pid == 0) { + struct flock fl; + + memset(&fl, 0, sizeof fl); + fl.l_type = F_WRLCK; + if (fcntl(fd, F_SETLK, &fl) == 0) { + printf("lock succeeded %s\n", msg); + _exit(1); + } + if (errno != EAGAIN) + err(1, "fcntl(SETLK)"); + if (fcntl(fd, F_GETLK, &fl)) + err(1, "fcntl(GETLK)"); + if (fl.l_type != F_WRLCK) { + printf("lock not found %s\n"); + _exit(1); + } + _exit(0); + } + + waitpid(pid, &status, 0); + if (! WIFEXITED(status) || WEXITSTATUS(status) != 0) + exit(1); +} + +int +do_flock(void) +{ + int fd, kq; + struct kevent kev; + struct flock fl; + + fd = open(FILE, O_CREAT|O_RDWR, 0666); + if (fd < 0) + err(1, "open"); + memset(&fl, 0, sizeof fl); + fl.l_type = F_WRLCK; + if (fcntl(fd, F_SETLK, &fl)) + err(1, "fcntl(SETLK)"); + + check_lock(fd, "before"); + + kq = kqueue(); + EV_SET(&kev, fd, EVFILT_VNODE, EV_ADD, NOTE_LINK, 0, NULL); + if (kevent(kq, &kev, 1, NULL, 0, NULL)) + err(1, "kevent"); + + check_lock(fd, "after add"); + + EV_SET(&kev, fd, EVFILT_VNODE, EV_DELETE, NOTE_LINK, 0, NULL); + if (kevent(kq, &kev, 1, NULL, 0, NULL)) + err(1, "kevent"); + + check_lock(fd, "after delete"); + + close(kq); + + check_lock(fd, "after kq close"); + + close(fd); + unlink(FILE); + return (0); +} |