1 /* 2 * Copyright (c) 1995 - 2001 Kungliga Tekniska H�gskolan 3 * (Royal Institute of Technology, Stockholm, Sweden). 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * 3. Neither the name of the Institute nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #ifdef HAVE_CONFIG_H 35 #include <config.h> 36 RCSID("$Id: mini_inetd.c,v 1.29 2001/08/01 14:48:54 assar Exp $"); 37 #endif 38 39 #include <err.h> 40 #include "roken.h" 41 42 /* 43 * accept a connection on `s' and pretend it's served by inetd. 44 */ 45 46 static void 47 accept_it (int s) 48 { 49 int s2; 50 51 s2 = accept(s, NULL, NULL); 52 if(s2 < 0) 53 err (1, "accept"); 54 close(s); 55 dup2(s2, STDIN_FILENO); 56 dup2(s2, STDOUT_FILENO); 57 /* dup2(s2, STDERR_FILENO); */ 58 close(s2); 59 } 60 61 /* 62 * Listen on `port' emulating inetd. 63 */ 64 65 void 66 mini_inetd (int port) 67 { 68 int error, ret; 69 struct addrinfo *ai, *a, hints; 70 char portstr[NI_MAXSERV]; 71 int n, nalloc, i; 72 int *fds; 73 fd_set orig_read_set, read_set; 74 int max_fd = -1; 75 76 memset (&hints, 0, sizeof(hints)); 77 hints.ai_flags = AI_PASSIVE; 78 hints.ai_socktype = SOCK_STREAM; 79 hints.ai_family = PF_UNSPEC; 80 81 snprintf (portstr, sizeof(portstr), "%d", ntohs(port)); 82 83 error = getaddrinfo (NULL, portstr, &hints, &ai); 84 if (error) 85 errx (1, "getaddrinfo: %s", gai_strerror (error)); 86 87 for (nalloc = 0, a = ai; a != NULL; a = a->ai_next) 88 ++nalloc; 89 90 fds = malloc (nalloc * sizeof(*fds)); 91 if (fds == NULL) 92 errx (1, "mini_inetd: out of memory"); 93 94 FD_ZERO(&orig_read_set); 95 96 for (i = 0, a = ai; a != NULL; a = a->ai_next) { 97 fds[i] = socket (a->ai_family, a->ai_socktype, a->ai_protocol); 98 if (fds[i] < 0) { 99 warn ("socket af = %d", a->ai_family); 100 continue; 101 } 102 socket_set_reuseaddr (fds[i], 1); 103 if (bind (fds[i], a->ai_addr, a->ai_addrlen) < 0) { 104 warn ("bind af = %d", a->ai_family); 105 close(fds[i]); 106 continue; 107 } 108 if (listen (fds[i], SOMAXCONN) < 0) { 109 warn ("listen af = %d", a->ai_family); 110 close(fds[i]); 111 continue; 112 } 113 if (fds[i] >= FD_SETSIZE) 114 errx (1, "fd too large"); 115 FD_SET(fds[i], &orig_read_set); 116 max_fd = max(max_fd, fds[i]); 117 ++i; 118 } 119 freeaddrinfo (ai); 120 if (i == 0) 121 errx (1, "no sockets"); 122 n = i; 123 124 do { 125 read_set = orig_read_set; 126 127 ret = select (max_fd + 1, &read_set, NULL, NULL, NULL); 128 if (ret < 0 && errno != EINTR) 129 err (1, "select"); 130 } while (ret <= 0); 131 132 for (i = 0; i < n; ++i) 133 if (FD_ISSET (fds[i], &read_set)) { 134 accept_it (fds[i]); 135 return; 136 } 137 abort (); 138 } 139