/* $NetBSD: h_client.c,v 1.3 2011/02/20 23:45:46 pooka Exp $ */ /* * Copyright (c) 2011 The NetBSD Foundation, Inc. * 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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. */ #include #include #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { if (argc != 2) { errx(1, "need testname as param"); } if (strcmp(argv[1], "select_timeout") == 0) { fd_set rfds; struct timeval tv; int rv; tv.tv_sec = 0; tv.tv_usec = 1; FD_ZERO(&rfds); FD_SET(STDIN_FILENO, &rfds); rv = select(STDIN_FILENO+1, &rfds, NULL, NULL, &tv); if (rv == -1) err(1, "select"); if (rv != 0) errx(1, "select succesful"); if (FD_ISSET(STDIN_FILENO, &rfds)) errx(1, "stdin fileno is still set"); exit(0); } else if (strcmp(argv[1], "select_allunset") == 0) { fd_set fds; struct timeval tv; int rv; tv.tv_sec = 0; tv.tv_usec = 1; FD_ZERO(&fds); rv = select(100, &fds, &fds, &fds, &tv); if (rv == -1) err(1, "select"); if (rv != 0) errx(1, "select succesful"); rv = select(0, NULL, NULL, NULL, &tv); if (rv == -1) err(1, "select2"); if (rv != 0) errx(1, "select2 succesful"); exit(0); } else if (strcmp(argv[1], "invafd") == 0) { struct pollfd pfd[2]; int fd; fd = open("/rump/dev/null", O_RDWR); if (fd == -1) err(1, "open"); close(fd); pfd[0].fd = STDIN_FILENO; pfd[0].events = POLLIN; pfd[1].fd = fd; pfd[1].events = POLLIN; if (poll(pfd, 2, INFTIM) != 1) errx(1, "poll unexpected rv"); if (pfd[1].revents != POLLNVAL || pfd[0].revents != 0) errx(1, "poll unexpected revents"); exit(0); } else { return ENOTSUP; } }