1 1.3 christos /* $NetBSD: t_proc3.c,v 1.3 2017/01/13 21:30:41 christos Exp $ */ 2 1.1 joerg 3 1.1 joerg /*- 4 1.1 joerg * Copyright (c) 2012 The NetBSD Foundation, Inc. 5 1.1 joerg * All rights reserved. 6 1.1 joerg * 7 1.1 joerg * This code is derived from software contributed to The NetBSD Foundation 8 1.1 joerg * by Joerg Sonnenberger. 9 1.1 joerg * 10 1.1 joerg * Redistribution and use in source and binary forms, with or without 11 1.1 joerg * modification, are permitted provided that the following conditions 12 1.1 joerg * are met: 13 1.1 joerg * 1. Redistributions of source code must retain the above copyright 14 1.1 joerg * notice, this list of conditions and the following disclaimer. 15 1.1 joerg * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 joerg * notice, this list of conditions and the following disclaimer in the 17 1.1 joerg * documentation and/or other materials provided with the distribution. 18 1.1 joerg * 19 1.1 joerg * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 joerg * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 joerg * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 joerg * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 joerg * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 joerg * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 joerg * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 joerg * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 joerg * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 joerg * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 joerg * POSSIBILITY OF SUCH DAMAGE. 30 1.1 joerg */ 31 1.1 joerg 32 1.1 joerg #include <sys/cdefs.h> 33 1.3 christos __RCSID("$NetBSD: t_proc3.c,v 1.3 2017/01/13 21:30:41 christos Exp $"); 34 1.1 joerg 35 1.1 joerg #include <sys/event.h> 36 1.1 joerg #include <sys/time.h> 37 1.1 joerg #include <sys/types.h> 38 1.1 joerg #include <sys/wait.h> 39 1.1 joerg 40 1.1 joerg #include <err.h> 41 1.1 joerg #include <pwd.h> 42 1.1 joerg #include <stdio.h> 43 1.1 joerg #include <stdlib.h> 44 1.1 joerg #include <unistd.h> 45 1.1 joerg 46 1.1 joerg #include <atf-c.h> 47 1.1 joerg 48 1.3 christos #include "h_macros.h" 49 1.1 joerg 50 1.1 joerg ATF_TC(proc3); 51 1.1 joerg ATF_TC_HEAD(proc3, tc) 52 1.1 joerg { 53 1.1 joerg atf_tc_set_md_var(tc, "descr", 54 1.1 joerg "Checks EVFILT_PROC for NOTE_TRACK on self bug "); 55 1.1 joerg } 56 1.1 joerg 57 1.1 joerg ATF_TC_BODY(proc3, tc) 58 1.1 joerg { 59 1.1 joerg pid_t pid = 0; 60 1.1 joerg int kq, status; 61 1.1 joerg struct kevent ke; 62 1.1 joerg struct timespec timeout; 63 1.1 joerg 64 1.1 joerg RL(kq = kqueue()); 65 1.1 joerg 66 1.2 christos EV_SET(&ke, (uintptr_t)getpid(), EVFILT_PROC, EV_ADD, NOTE_TRACK, 0, 0); 67 1.1 joerg 68 1.1 joerg RL(kevent(kq, &ke, 1, NULL, 0, NULL)); 69 1.1 joerg 70 1.1 joerg RL(pid = fork()); 71 1.1 joerg if (pid == 0) { 72 1.1 joerg _exit(EXIT_SUCCESS); 73 1.1 joerg /* NOTREACHED */ 74 1.1 joerg } 75 1.1 joerg 76 1.1 joerg RL(waitpid(pid, &status, 0)); 77 1.1 joerg ATF_REQUIRE(WIFEXITED(status)); 78 1.1 joerg ATF_REQUIRE_EQ(WEXITSTATUS(status), EXIT_SUCCESS); 79 1.1 joerg 80 1.1 joerg timeout.tv_sec = 0; 81 1.1 joerg timeout.tv_nsec = 0; 82 1.1 joerg ke.ident = 0; 83 1.1 joerg ke.fflags = 0; 84 1.1 joerg ke.flags = EV_ENABLE; 85 1.1 joerg 86 1.1 joerg RL(kevent(kq, NULL, 0, &ke, 1, &timeout)); 87 1.1 joerg RL(close(kq)); 88 1.1 joerg 89 1.1 joerg ATF_REQUIRE(ke.fflags & NOTE_CHILD); 90 1.1 joerg ATF_REQUIRE((ke.fflags & NOTE_TRACKERR) == 0); 91 1.1 joerg ATF_REQUIRE_EQ((pid_t)ke.ident, pid); 92 1.1 joerg } 93 1.1 joerg 94 1.1 joerg ATF_TP_ADD_TCS(tp) 95 1.1 joerg { 96 1.1 joerg ATF_TP_ADD_TC(tp, proc3); 97 1.1 joerg 98 1.1 joerg return atf_no_error(); 99 1.1 joerg } 100