#!/bin/sh # # Copyright (c) 2008 Peter Holm # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # $FreeBSD$ # # Test EVFILT_VNODE. Found page fault in knlist_add+0x39 # # Test scenario by kib@ . ../default.cfg odir=`pwd` cd /tmp sed '1,/^EOF/d' < $odir/$0 > kevent.c cc -o kevent -Wall kevent.c rm -f kevent.c cd $RUNDIR/.. /tmp/kevent xxx yyy rm -f /tmp/kevent exit EOF #include #include #include #include #include #include #include #include #include #include #include #include static char *file1, *file2; #define N 1000 void test(test) { int kq = -1; int n; struct kevent ev[2]; int fd; if ((fd = open(file1, O_RDONLY, 0)) == -1) err(1, "open(%s)(2)", file1); if ((kq = kqueue()) < 0) err(1, "kqueue()"); n = 0; EV_SET(&ev[n], fd, EVFILT_VNODE, EV_ADD | EV_ENABLE | EV_CLEAR, NOTE_DELETE, 0, 0); n++; if (kevent(kq, ev, n, NULL, 0, NULL) < 0) err(1, "kevent()"); memset(&ev, 0, sizeof(ev)); n = kevent(kq, NULL, 0, ev, 1, NULL); // printf("Event 1\n"); close(fd); close(kq); /* Once the rendezvous file is gone create a new kevent */ if ((fd = open(file2, O_RDONLY, 0)) == -1) err(1, "open(%s)(2)", file2); if ((kq = kqueue()) < 0) err(1, "kqueue()"); n = 0; EV_SET(&ev[n], fd, EVFILT_VNODE, EV_ADD | EV_ENABLE | EV_CLEAR, NOTE_DELETE, 0, 0); n++; if (kevent(kq, ev, n, NULL, 0, NULL) < 0) err(1, "kevent()"); memset(&ev, 0, sizeof(ev)); n = kevent(kq, NULL, 0, ev, 1, NULL); // printf("Event 2\n"); close(fd); close(kq); } int main(int argc, char **argv) { int i, j; int fd; int status; if (argc != 3) { fprintf(stderr, "Usage: %s \n", argv[0]); return (1); } file1 = argv[1]; file2 = argv[2]; for (j = 0; j < 100; j++) { if ((fd = open(file1, O_CREAT | O_TRUNC | O_RDWR, 0660)) == -1) err(1, "open(%s)", file1); close(fd); if ((fd = open(file2, O_CREAT | O_TRUNC | O_RDWR, 0660)) == -1) err(1, "open(%s)", file2); close(fd); for (i = 0; i < N; i++) { if (fork() == 0) { test(); return (0); } } sleep(1); if (unlink(file1) == -1) err(1, "unlink(%s). %s:%d\n", file1, __FILE__, __LINE__); sleep(1); if (unlink(file2) == -1) err(1, "unlink(%s). %s:%d\n", file2, __FILE__, __LINE__); for (i = 0; i < N; i++) { if (wait(&status) == -1) err(1, "wait(), %s:%d", __FILE__, __LINE__); } } return (0); }