Simon Kelley | 5954608 | 2012-01-06 20:02:04 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2012 Simon Kelley |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2 | |
| 3 | This program is free software; you can redistribute it and/or modify |
| 4 | it under the terms of the GNU General Public License as published by |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 5 | the Free Software Foundation; version 2 dated June, 1991, or |
| 6 | (at your option) version 3 dated 29 June, 2007. |
| 7 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 8 | This program is distributed in the hope that it will be useful, |
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | GNU General Public License for more details. |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 12 | |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 13 | You should have received a copy of the GNU General Public License |
| 14 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 17 | /* Declare static char *compiler_opts in config.h */ |
| 18 | #define DNSMASQ_COMPILE_OPTS |
| 19 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 20 | #include "dnsmasq.h" |
| 21 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 22 | struct daemon *daemon; |
| 23 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 24 | static volatile pid_t pid = 0; |
| 25 | static volatile int pipewrite; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 26 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 27 | static int set_dns_listeners(time_t now, fd_set *set, int *maxfdp); |
| 28 | static void check_dns_listeners(fd_set *set, time_t now); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 29 | static void sig_handler(int sig); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 30 | static void async_event(int pipe, time_t now); |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 31 | static void fatal_event(struct event_desc *ev, char *msg); |
| 32 | static int read_event(int fd, struct event_desc *evp, char **msg); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 33 | |
| 34 | int main (int argc, char **argv) |
| 35 | { |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 36 | int bind_fallback = 0; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 37 | time_t now; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 38 | struct sigaction sigact; |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 39 | struct iname *if_tmp; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 40 | int piperead, pipefd[2], err_pipe[2]; |
| 41 | struct passwd *ent_pw = NULL; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 42 | #if defined(HAVE_SCRIPT) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 43 | uid_t script_uid = 0; |
| 44 | gid_t script_gid = 0; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 45 | #endif |
| 46 | struct group *gp = NULL; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 47 | long i, max_fd = sysconf(_SC_OPEN_MAX); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 48 | char *baduser = NULL; |
| 49 | int log_err; |
| 50 | #if defined(HAVE_LINUX_NETWORK) |
| 51 | cap_user_header_t hdr = NULL; |
| 52 | cap_user_data_t data = NULL; |
| 53 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 54 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 55 | #ifdef LOCALEDIR |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 56 | setlocale(LC_ALL, ""); |
| 57 | bindtextdomain("dnsmasq", LOCALEDIR); |
| 58 | textdomain("dnsmasq"); |
| 59 | #endif |
| 60 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 61 | sigact.sa_handler = sig_handler; |
| 62 | sigact.sa_flags = 0; |
| 63 | sigemptyset(&sigact.sa_mask); |
| 64 | sigaction(SIGUSR1, &sigact, NULL); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 65 | sigaction(SIGUSR2, &sigact, NULL); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 66 | sigaction(SIGHUP, &sigact, NULL); |
| 67 | sigaction(SIGTERM, &sigact, NULL); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 68 | sigaction(SIGALRM, &sigact, NULL); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 69 | sigaction(SIGCHLD, &sigact, NULL); |
| 70 | |
| 71 | /* ignore SIGPIPE */ |
| 72 | sigact.sa_handler = SIG_IGN; |
| 73 | sigaction(SIGPIPE, &sigact, NULL); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 74 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 75 | umask(022); /* known umask, create leases and pid files as 0644 */ |
| 76 | |
| 77 | read_opts(argc, argv, compile_opts); |
| 78 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 79 | if (daemon->edns_pktsz < PACKETSZ) |
| 80 | daemon->edns_pktsz = PACKETSZ; |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 81 | daemon->packet_buff_sz = daemon->edns_pktsz > DNSMASQ_PACKETSZ ? |
| 82 | daemon->edns_pktsz : DNSMASQ_PACKETSZ; |
| 83 | daemon->packet = safe_malloc(daemon->packet_buff_sz); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 84 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 85 | daemon->addrbuff = safe_malloc(ADDRSTRLEN); |
| 86 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 87 | #ifdef HAVE_DHCP |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 88 | if (!daemon->lease_file) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 89 | { |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 90 | if (daemon->dhcp || daemon->dhcp6) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 91 | daemon->lease_file = LEASEFILE; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 92 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 93 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 94 | |
Simon Kelley | a276175 | 2012-01-18 16:07:21 +0000 | [diff] [blame] | 95 | /* Close any file descriptors we inherited apart from std{in|out|err} |
| 96 | |
| 97 | Ensure that at least stdin, stdout and stderr (fd 0, 1, 2) exist, |
| 98 | otherwise file descriptors we create can end up being 0, 1, or 2 |
| 99 | and then get accidentally closed later when we make 0, 1, and 2 |
| 100 | open to /dev/null. Normally we'll be started with 0, 1 and 2 open, |
| 101 | but it's not guaranteed. By opening /dev/null three times, we |
| 102 | ensure that we're not using those fds for real stuff. */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 103 | for (i = 0; i < max_fd; i++) |
| 104 | if (i != STDOUT_FILENO && i != STDERR_FILENO && i != STDIN_FILENO) |
| 105 | close(i); |
Simon Kelley | a276175 | 2012-01-18 16:07:21 +0000 | [diff] [blame] | 106 | else |
| 107 | open("/dev/null", O_RDWR); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 108 | |
Simon Kelley | 801ca9a | 2012-03-06 19:30:17 +0000 | [diff] [blame] | 109 | #ifndef HAVE_LINUX_NETWORK |
| 110 | # if !(defined(IP_RECVDSTADDR) && defined(IP_RECVIF) && defined(IP_SENDSRCADDR)) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 111 | if (!option_bool(OPT_NOWILD)) |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 112 | { |
| 113 | bind_fallback = 1; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 114 | set_option_bool(OPT_NOWILD); |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 115 | } |
Simon Kelley | 801ca9a | 2012-03-06 19:30:17 +0000 | [diff] [blame] | 116 | # endif |
Simon Kelley | 309331f | 2006-04-22 15:05:01 +0100 | [diff] [blame] | 117 | #endif |
| 118 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 119 | #ifndef HAVE_TFTP |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 120 | if (daemon->tftp_unlimited || daemon->tftp_interfaces) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 121 | die(_("TFTP server not available: set HAVE_TFTP in src/config.h"), NULL, EC_BADCONF); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 122 | #endif |
| 123 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 124 | #ifdef HAVE_CONNTRACK |
| 125 | if (option_bool(OPT_CONNTRACK) && (daemon->query_port != 0 || daemon->osport)) |
| 126 | die (_("Cannot use --conntrack AND --query-port"), NULL, EC_BADCONF); |
| 127 | #else |
| 128 | if (option_bool(OPT_CONNTRACK)) |
| 129 | die(_("Conntrack support not available: set HAVE_CONNTRACK in src/config.h"), NULL, EC_BADCONF); |
| 130 | #endif |
| 131 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 132 | #ifdef HAVE_SOLARIS_NETWORK |
| 133 | if (daemon->max_logs != 0) |
| 134 | die(_("asychronous logging is not available under Solaris"), NULL, EC_BADCONF); |
| 135 | #endif |
| 136 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 137 | #ifdef __ANDROID__ |
| 138 | if (daemon->max_logs != 0) |
| 139 | die(_("asychronous logging is not available under Android"), NULL, EC_BADCONF); |
| 140 | #endif |
| 141 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 142 | rand_init(); |
| 143 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 144 | now = dnsmasq_time(); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 145 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 146 | #ifdef HAVE_DHCP |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 147 | if (daemon->dhcp || daemon->dhcp6) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 148 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 149 | /* Note that order matters here, we must call lease_init before |
| 150 | creating any file descriptors which shouldn't be leaked |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 151 | to the lease-script init process. We need to call common_init |
| 152 | before lease_init to allocate buffers it uses.*/ |
| 153 | dhcp_common_init(); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 154 | lease_init(now); |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 155 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 156 | if (daemon->dhcp) |
| 157 | dhcp_init(); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 158 | } |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 159 | |
| 160 | # ifdef HAVE_DHCP6 |
| 161 | /* Start RA subsystem if --enable-ra OR dhcp-range=<subnet>, ra-only */ |
| 162 | if (daemon->ra_contexts || option_bool(OPT_RA)) |
| 163 | { |
| 164 | /* link the DHCP6 contexts to the ra-only ones so we can traverse them all |
| 165 | from ->ra_contexts, but only the non-ra-onlies from ->dhcp6 */ |
| 166 | struct dhcp_context *context; |
| 167 | |
| 168 | if (!daemon->ra_contexts) |
| 169 | daemon->ra_contexts = daemon->dhcp6; |
| 170 | else |
| 171 | { |
| 172 | for (context = daemon->ra_contexts; context->next; context = context->next); |
| 173 | context->next = daemon->dhcp6; |
| 174 | } |
| 175 | ra_init(now); |
| 176 | } |
| 177 | |
| 178 | if (daemon->dhcp6) |
| 179 | dhcp6_init(); |
| 180 | |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 181 | # endif |
| 182 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 183 | #endif |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 184 | |
Simon Kelley | 801ca9a | 2012-03-06 19:30:17 +0000 | [diff] [blame] | 185 | #ifdef HAVE_LINUX_NETWORK |
| 186 | /* After lease_init */ |
| 187 | netlink_init(); |
| 188 | #endif |
| 189 | |
| 190 | #ifdef HAVE_DHCP6 |
| 191 | /* after netlink_init */ |
| 192 | if (daemon->ra_contexts || daemon->dhcp6) |
| 193 | join_multicast(); |
| 194 | #endif |
| 195 | |
| 196 | #ifdef HAVE_DHCP |
| 197 | /* after netlink_init */ |
| 198 | if (daemon->dhcp || daemon->dhcp6) |
Simon Kelley | 8b37270 | 2012-03-09 17:45:10 +0000 | [diff] [blame] | 199 | lease_find_interfaces(now); |
Simon Kelley | 801ca9a | 2012-03-06 19:30:17 +0000 | [diff] [blame] | 200 | #endif |
| 201 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 202 | if (!enumerate_interfaces()) |
| 203 | die(_("failed to find list of interfaces: %s"), NULL, EC_MISC); |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 204 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 205 | if (option_bool(OPT_NOWILD)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 206 | { |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 207 | create_bound_listeners(1); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 208 | |
| 209 | for (if_tmp = daemon->if_names; if_tmp; if_tmp = if_tmp->next) |
| 210 | if (if_tmp->name && !if_tmp->used) |
| 211 | die(_("unknown interface %s"), if_tmp->name, EC_BADNET); |
Simon Kelley | 9380ba7 | 2012-04-16 14:41:56 +0100 | [diff] [blame] | 212 | |
| 213 | #if defined(HAVE_LINUX_NETWORK) && defined(HAVE_DHCP) |
| 214 | /* after enumerate_interfaces() */ |
| 215 | if (daemon->dhcp) |
| 216 | { |
| 217 | bindtodevice(daemon->dhcpfd); |
| 218 | if (daemon->enable_pxe) |
| 219 | bindtodevice(daemon->pxefd); |
| 220 | } |
| 221 | #endif |
| 222 | |
| 223 | #if defined(HAVE_LINUX_NETWORK) && defined(HAVE_DHCP6) |
| 224 | if (daemon->dhcp6) |
| 225 | bindtodevice(daemon->dhcp6fd); |
| 226 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 227 | } |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 228 | else |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 229 | create_wildcard_listeners(); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 230 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 231 | if (daemon->port != 0) |
| 232 | cache_init(); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 233 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 234 | if (option_bool(OPT_DBUS)) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 235 | #ifdef HAVE_DBUS |
| 236 | { |
| 237 | char *err; |
| 238 | daemon->dbus = NULL; |
| 239 | daemon->watches = NULL; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 240 | if ((err = dbus_init())) |
| 241 | die(_("DBus error: %s"), err, EC_MISC); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 242 | } |
| 243 | #else |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 244 | die(_("DBus not available: set HAVE_DBUS in src/config.h"), NULL, EC_BADCONF); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 245 | #endif |
| 246 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 247 | if (daemon->port != 0) |
| 248 | pre_allocate_sfds(); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 249 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 250 | #if defined(HAVE_SCRIPT) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 251 | /* Note getpwnam returns static storage */ |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 252 | if ((daemon->dhcp || daemon->dhcp6) && |
| 253 | daemon->scriptuser && |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 254 | (daemon->lease_change_command || daemon->luascript)) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 255 | { |
| 256 | if ((ent_pw = getpwnam(daemon->scriptuser))) |
| 257 | { |
| 258 | script_uid = ent_pw->pw_uid; |
| 259 | script_gid = ent_pw->pw_gid; |
| 260 | } |
| 261 | else |
| 262 | baduser = daemon->scriptuser; |
| 263 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 264 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 265 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 266 | if (daemon->username && !(ent_pw = getpwnam(daemon->username))) |
| 267 | baduser = daemon->username; |
| 268 | else if (daemon->groupname && !(gp = getgrnam(daemon->groupname))) |
| 269 | baduser = daemon->groupname; |
| 270 | |
| 271 | if (baduser) |
| 272 | die(_("unknown user or group: %s"), baduser, EC_BADCONF); |
| 273 | |
| 274 | /* implement group defaults, "dip" if available, or group associated with uid */ |
| 275 | if (!daemon->group_set && !gp) |
| 276 | { |
| 277 | if (!(gp = getgrnam(CHGRP)) && ent_pw) |
| 278 | gp = getgrgid(ent_pw->pw_gid); |
| 279 | |
| 280 | /* for error message */ |
| 281 | if (gp) |
| 282 | daemon->groupname = gp->gr_name; |
| 283 | } |
| 284 | |
| 285 | #if defined(HAVE_LINUX_NETWORK) |
| 286 | /* determine capability API version here, while we can still |
| 287 | call safe_malloc */ |
| 288 | if (ent_pw && ent_pw->pw_uid != 0) |
| 289 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 290 | int capsize = 1; /* for header version 1 */ |
Simon Kelley | 3927da4 | 2008-07-20 15:10:39 +0100 | [diff] [blame] | 291 | hdr = safe_malloc(sizeof(*hdr)); |
| 292 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 293 | /* find version supported by kernel */ |
| 294 | memset(hdr, 0, sizeof(*hdr)); |
| 295 | capget(hdr, NULL); |
| 296 | |
| 297 | if (hdr->version != LINUX_CAPABILITY_VERSION_1) |
| 298 | { |
| 299 | /* if unknown version, use largest supported version (3) */ |
| 300 | if (hdr->version != LINUX_CAPABILITY_VERSION_2) |
| 301 | hdr->version = LINUX_CAPABILITY_VERSION_3; |
| 302 | capsize = 2; |
| 303 | } |
| 304 | |
| 305 | data = safe_malloc(sizeof(*data) * capsize); |
| 306 | memset(data, 0, sizeof(*data) * capsize); |
| 307 | } |
| 308 | #endif |
| 309 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 310 | /* Use a pipe to carry signals and other events back to the event loop |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 311 | in a race-free manner and another to carry errors to daemon-invoking process */ |
| 312 | safe_pipe(pipefd, 1); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 313 | |
| 314 | piperead = pipefd[0]; |
| 315 | pipewrite = pipefd[1]; |
| 316 | /* prime the pipe to load stuff first time. */ |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 317 | send_event(pipewrite, EVENT_RELOAD, 0, NULL); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 318 | |
| 319 | err_pipe[1] = -1; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 320 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 321 | if (!option_bool(OPT_DEBUG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 322 | { |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 323 | /* The following code "daemonizes" the process. |
| 324 | See Stevens section 12.4 */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 325 | |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 326 | if (chdir("/") != 0) |
| 327 | die(_("cannot chdir to filesystem root: %s"), NULL, EC_MISC); |
| 328 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 329 | #ifndef NO_FORK |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 330 | if (!option_bool(OPT_NO_FORK)) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 331 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 332 | pid_t pid; |
| 333 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 334 | /* pipe to carry errors back to original process. |
| 335 | When startup is complete we close this and the process terminates. */ |
| 336 | safe_pipe(err_pipe, 0); |
| 337 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 338 | if ((pid = fork()) == -1) |
| 339 | /* fd == -1 since we've not forked, never returns. */ |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 340 | send_event(-1, EVENT_FORK_ERR, errno, NULL); |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 341 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 342 | if (pid != 0) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 343 | { |
| 344 | struct event_desc ev; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 345 | char *msg; |
| 346 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 347 | /* close our copy of write-end */ |
| 348 | close(err_pipe[1]); |
| 349 | |
| 350 | /* check for errors after the fork */ |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 351 | if (read_event(err_pipe[0], &ev, &msg)) |
| 352 | fatal_event(&ev, msg); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 353 | |
| 354 | _exit(EC_GOOD); |
| 355 | } |
| 356 | |
| 357 | close(err_pipe[0]); |
| 358 | |
| 359 | /* NO calls to die() from here on. */ |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 360 | |
| 361 | setsid(); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 362 | |
| 363 | if ((pid = fork()) == -1) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 364 | send_event(err_pipe[1], EVENT_FORK_ERR, errno, NULL); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 365 | |
| 366 | if (pid != 0) |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 367 | _exit(0); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 368 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 369 | #endif |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 370 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 371 | /* write pidfile _after_ forking ! */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 372 | if (daemon->runfile) |
| 373 | { |
| 374 | FILE *pidfile; |
| 375 | |
| 376 | /* only complain if started as root */ |
| 377 | if ((pidfile = fopen(daemon->runfile, "w"))) |
| 378 | { |
| 379 | fprintf(pidfile, "%d\n", (int) getpid()); |
| 380 | fclose(pidfile); |
| 381 | } |
| 382 | else if (getuid() == 0) |
| 383 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 384 | send_event(err_pipe[1], EVENT_PIDFILE, errno, daemon->runfile); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 385 | _exit(0); |
| 386 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 387 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 388 | } |
| 389 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 390 | log_err = log_start(ent_pw, err_pipe[1]); |
| 391 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 392 | if (!option_bool(OPT_DEBUG)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 393 | { |
| 394 | /* open stdout etc to /dev/null */ |
| 395 | int nullfd = open("/dev/null", O_RDWR); |
| 396 | dup2(nullfd, STDOUT_FILENO); |
| 397 | dup2(nullfd, STDERR_FILENO); |
| 398 | dup2(nullfd, STDIN_FILENO); |
| 399 | close(nullfd); |
| 400 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 401 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 402 | /* if we are to run scripts, we need to fork a helper before dropping root. */ |
| 403 | daemon->helperfd = -1; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 404 | #ifdef HAVE_SCRIPT |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 405 | if ((daemon->dhcp || daemon->dhcp6) && (daemon->lease_change_command || daemon->luascript)) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 406 | daemon->helperfd = create_helper(pipewrite, err_pipe[1], script_uid, script_gid, max_fd); |
| 407 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 408 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 409 | if (!option_bool(OPT_DEBUG) && getuid() == 0) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 410 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 411 | int bad_capabilities = 0; |
| 412 | gid_t dummy; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 413 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 414 | /* remove all supplimentary groups */ |
| 415 | if (gp && |
| 416 | (setgroups(0, &dummy) == -1 || |
| 417 | setgid(gp->gr_gid) == -1)) |
| 418 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 419 | send_event(err_pipe[1], EVENT_GROUP_ERR, errno, daemon->groupname); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 420 | _exit(0); |
| 421 | } |
| 422 | |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 423 | if (ent_pw && ent_pw->pw_uid != 0) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 424 | { |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 425 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 426 | /* On linux, we keep CAP_NETADMIN (for ARP-injection) and |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 427 | CAP_NET_RAW (for icmp) if we're doing dhcp. If we have yet to bind |
| 428 | ports because of DAD, we need CAP_NET_BIND_SERVICE too. */ |
| 429 | if (is_dad_listeners()) |
| 430 | data->effective = data->permitted = data->inheritable = |
| 431 | (1 << CAP_NET_ADMIN) | (1 << CAP_NET_RAW) | |
| 432 | (1 << CAP_SETUID) | (1 << CAP_NET_BIND_SERVICE); |
| 433 | else |
| 434 | data->effective = data->permitted = data->inheritable = |
| 435 | (1 << CAP_NET_ADMIN) | (1 << CAP_NET_RAW) | (1 << CAP_SETUID); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 436 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 437 | /* Tell kernel to not clear capabilities when dropping root */ |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 438 | if (capset(hdr, data) == -1 || prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0) == -1) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 439 | bad_capabilities = errno; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 440 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 441 | #elif defined(HAVE_SOLARIS_NETWORK) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 442 | /* http://developers.sun.com/solaris/articles/program_privileges.html */ |
| 443 | priv_set_t *priv_set; |
| 444 | |
| 445 | if (!(priv_set = priv_str_to_set("basic", ",", NULL)) || |
| 446 | priv_addset(priv_set, PRIV_NET_ICMPACCESS) == -1 || |
| 447 | priv_addset(priv_set, PRIV_SYS_NET_CONFIG) == -1) |
| 448 | bad_capabilities = errno; |
| 449 | |
| 450 | if (priv_set && bad_capabilities == 0) |
| 451 | { |
| 452 | priv_inverse(priv_set); |
| 453 | |
| 454 | if (setppriv(PRIV_OFF, PRIV_LIMIT, priv_set) == -1) |
| 455 | bad_capabilities = errno; |
| 456 | } |
| 457 | |
| 458 | if (priv_set) |
| 459 | priv_freeset(priv_set); |
| 460 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 461 | #endif |
| 462 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 463 | if (bad_capabilities != 0) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 464 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 465 | send_event(err_pipe[1], EVENT_CAP_ERR, bad_capabilities, NULL); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 466 | _exit(0); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 467 | } |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 468 | |
| 469 | /* finally drop root */ |
| 470 | if (setuid(ent_pw->pw_uid) == -1) |
| 471 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 472 | send_event(err_pipe[1], EVENT_USER_ERR, errno, daemon->username); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 473 | _exit(0); |
| 474 | } |
| 475 | |
| 476 | #ifdef HAVE_LINUX_NETWORK |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 477 | if (is_dad_listeners()) |
| 478 | data->effective = data->permitted = |
| 479 | (1 << CAP_NET_ADMIN) | (1 << CAP_NET_RAW) | (1 << CAP_NET_BIND_SERVICE); |
| 480 | else |
| 481 | data->effective = data->permitted = |
| 482 | (1 << CAP_NET_ADMIN) | (1 << CAP_NET_RAW); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 483 | data->inheritable = 0; |
| 484 | |
| 485 | /* lose the setuid and setgid capbilities */ |
| 486 | if (capset(hdr, data) == -1) |
| 487 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 488 | send_event(err_pipe[1], EVENT_CAP_ERR, errno, NULL); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 489 | _exit(0); |
| 490 | } |
| 491 | #endif |
| 492 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 493 | } |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 494 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 495 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 496 | #ifdef HAVE_LINUX_NETWORK |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 497 | if (option_bool(OPT_DEBUG)) |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 498 | prctl(PR_SET_DUMPABLE, 1, 0, 0, 0); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 499 | #endif |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 500 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 501 | if (daemon->port == 0) |
| 502 | my_syslog(LOG_INFO, _("started, version %s DNS disabled"), VERSION); |
| 503 | else if (daemon->cachesize != 0) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 504 | my_syslog(LOG_INFO, _("started, version %s cachesize %d"), VERSION, daemon->cachesize); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 505 | else |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 506 | my_syslog(LOG_INFO, _("started, version %s cache disabled"), VERSION); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 507 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 508 | my_syslog(LOG_INFO, _("compile time options: %s"), compile_opts); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 509 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 510 | #ifdef HAVE_DBUS |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 511 | if (option_bool(OPT_DBUS)) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 512 | { |
| 513 | if (daemon->dbus) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 514 | my_syslog(LOG_INFO, _("DBus support enabled: connected to system bus")); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 515 | else |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 516 | my_syslog(LOG_INFO, _("DBus support enabled: bus connection pending")); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 517 | } |
| 518 | #endif |
| 519 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 520 | if (log_err != 0) |
| 521 | my_syslog(LOG_WARNING, _("warning: failed to change owner of %s: %s"), |
| 522 | daemon->log_file, strerror(log_err)); |
| 523 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 524 | if (bind_fallback) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 525 | my_syslog(LOG_WARNING, _("setting --bind-interfaces option because of OS limitations")); |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 526 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 527 | if (!option_bool(OPT_NOWILD)) |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 528 | for (if_tmp = daemon->if_names; if_tmp; if_tmp = if_tmp->next) |
| 529 | if (if_tmp->name && !if_tmp->used) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 530 | my_syslog(LOG_WARNING, _("warning: interface %s does not currently exist"), if_tmp->name); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 531 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 532 | if (daemon->port != 0 && option_bool(OPT_NO_RESOLV)) |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 533 | { |
| 534 | if (daemon->resolv_files && !daemon->resolv_files->is_default) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 535 | my_syslog(LOG_WARNING, _("warning: ignoring resolv-file flag because no-resolv is set")); |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 536 | daemon->resolv_files = NULL; |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 537 | if (!daemon->servers) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 538 | my_syslog(LOG_WARNING, _("warning: no upstream servers configured")); |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 539 | } |
| 540 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 541 | if (daemon->max_logs != 0) |
| 542 | my_syslog(LOG_INFO, _("asynchronous logging enabled, queue limit is %d messages"), daemon->max_logs); |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 543 | |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 544 | if (daemon->ra_contexts) |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 545 | my_syslog(MS_DHCP | LOG_INFO, _("IPv6 router advertisement enabled")); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 546 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 547 | #ifdef HAVE_DHCP |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 548 | if (daemon->dhcp || daemon->dhcp6 || daemon->ra_contexts) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 549 | { |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 550 | struct dhcp_context *dhcp_tmp; |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 551 | int family = AF_INET; |
| 552 | dhcp_tmp = daemon->dhcp; |
| 553 | |
Simon Kelley | 3268e90 | 2012-01-22 16:15:02 +0000 | [diff] [blame] | 554 | #ifdef HAVE_DHCP6 |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 555 | again: |
Simon Kelley | 3268e90 | 2012-01-22 16:15:02 +0000 | [diff] [blame] | 556 | #endif |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 557 | for (; dhcp_tmp; dhcp_tmp = dhcp_tmp->next) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 558 | { |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 559 | void *start = &dhcp_tmp->start; |
| 560 | void *end = &dhcp_tmp->end; |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 561 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 562 | #ifdef HAVE_DHCP6 |
| 563 | if (family == AF_INET6) |
| 564 | { |
| 565 | start = &dhcp_tmp->start6; |
| 566 | end = &dhcp_tmp->end6; |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 567 | struct in6_addr subnet = dhcp_tmp->start6; |
| 568 | setaddr6part(&subnet, 0); |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 569 | inet_ntop(AF_INET6, &subnet, daemon->addrbuff, 256); |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 570 | } |
| 571 | #endif |
| 572 | |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 573 | if (family != AF_INET && (dhcp_tmp->flags & CONTEXT_DEPRECATE)) |
| 574 | strcpy(daemon->namebuff, _("prefix deprecated")); |
| 575 | else |
| 576 | { |
| 577 | char *p = daemon->namebuff; |
| 578 | p += sprintf(p, _("lease time ")); |
| 579 | prettyprint_time(p, dhcp_tmp->lease_time); |
| 580 | } |
| 581 | |
| 582 | if (daemon->dhcp_buff) |
| 583 | inet_ntop(family, start, daemon->dhcp_buff, 256); |
| 584 | if (daemon->dhcp_buff3) |
| 585 | inet_ntop(family, end, daemon->dhcp_buff3, 256); |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 586 | if ((dhcp_tmp->flags & CONTEXT_DHCP) || family == AF_INET) |
| 587 | my_syslog(MS_DHCP | LOG_INFO, |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 588 | (dhcp_tmp->flags & CONTEXT_RA_STATELESS) ? |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 589 | _("stateless DHCPv6 on %s%.0s%.0s") : |
Simon Kelley | 2240704 | 2012-03-27 14:42:48 +0100 | [diff] [blame] | 590 | (dhcp_tmp->flags & CONTEXT_STATIC) ? |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 591 | _("DHCP, static leases only on %.0s%s, %s") : |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 592 | (dhcp_tmp->flags & CONTEXT_PROXY) ? |
| 593 | _("DHCP, proxy on subnet %.0s%s%.0s") : |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 594 | _("DHCP, IP range %s -- %s, %s"), |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 595 | daemon->dhcp_buff, daemon->dhcp_buff3, daemon->namebuff); |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 596 | |
Simon Kelley | 30cd966 | 2012-03-25 20:44:38 +0100 | [diff] [blame] | 597 | if (dhcp_tmp->flags & CONTEXT_RA_NAME) |
Simon Kelley | c825754 | 2012-03-28 21:15:41 +0100 | [diff] [blame] | 598 | my_syslog(MS_DHCP | LOG_INFO, _("DHCPv4-derived IPv6 names on %s"), |
| 599 | daemon->addrbuff); |
| 600 | if (dhcp_tmp->flags & (CONTEXT_RA_ONLY | CONTEXT_RA_NAME | CONTEXT_RA_STATELESS)) |
| 601 | { |
| 602 | if (!(dhcp_tmp->flags & CONTEXT_DEPRECATE)) |
| 603 | { |
| 604 | char *p = daemon->namebuff; |
| 605 | p += sprintf(p, _("prefix valid ")); |
| 606 | prettyprint_time(p, dhcp_tmp->lease_time > 7200 ? dhcp_tmp->lease_time : 7200); |
| 607 | } |
| 608 | my_syslog(MS_DHCP | LOG_INFO, _("SLAAC on %s %s"), |
| 609 | daemon->addrbuff, daemon->namebuff); |
| 610 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 611 | } |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 612 | |
| 613 | #ifdef HAVE_DHCP6 |
| 614 | if (family == AF_INET) |
| 615 | { |
| 616 | family = AF_INET6; |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 617 | if (daemon->ra_contexts) |
| 618 | dhcp_tmp = daemon->ra_contexts; |
| 619 | else |
| 620 | dhcp_tmp = daemon->dhcp6; |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 621 | goto again; |
| 622 | } |
| 623 | #endif |
| 624 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 625 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 626 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 627 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 628 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 629 | #ifdef HAVE_TFTP |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 630 | if (daemon->tftp_unlimited || daemon->tftp_interfaces) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 631 | { |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 632 | #ifdef FD_SETSIZE |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 633 | if (FD_SETSIZE < (unsigned)max_fd) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 634 | max_fd = FD_SETSIZE; |
| 635 | #endif |
| 636 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 637 | my_syslog(MS_TFTP | LOG_INFO, "TFTP %s%s %s", |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 638 | daemon->tftp_prefix ? _("root is ") : _("enabled"), |
| 639 | daemon->tftp_prefix ? daemon->tftp_prefix: "", |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 640 | option_bool(OPT_TFTP_SECURE) ? _("secure mode") : ""); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 641 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 642 | /* This is a guess, it assumes that for small limits, |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 643 | disjoint files might be served, but for large limits, |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 644 | a single file will be sent to may clients (the file only needs |
| 645 | one fd). */ |
| 646 | |
| 647 | max_fd -= 30; /* use other than TFTP */ |
| 648 | |
| 649 | if (max_fd < 0) |
| 650 | max_fd = 5; |
| 651 | else if (max_fd < 100) |
| 652 | max_fd = max_fd/2; |
| 653 | else |
| 654 | max_fd = max_fd - 20; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 655 | |
| 656 | /* if we have to use a limited range of ports, |
| 657 | that will limit the number of transfers */ |
| 658 | if (daemon->start_tftp_port != 0 && |
| 659 | daemon->end_tftp_port - daemon->start_tftp_port + 1 < max_fd) |
| 660 | max_fd = daemon->end_tftp_port - daemon->start_tftp_port + 1; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 661 | |
| 662 | if (daemon->tftp_max > max_fd) |
| 663 | { |
| 664 | daemon->tftp_max = max_fd; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 665 | my_syslog(MS_TFTP | LOG_WARNING, |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 666 | _("restricting maximum simultaneous TFTP transfers to %d"), |
| 667 | daemon->tftp_max); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 668 | } |
| 669 | } |
| 670 | #endif |
| 671 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 672 | /* finished start-up - release original process */ |
| 673 | if (err_pipe[1] != -1) |
| 674 | close(err_pipe[1]); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 675 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 676 | if (daemon->port != 0) |
| 677 | check_servers(); |
| 678 | |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 679 | pid = getpid(); |
| 680 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 681 | while (1) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 682 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 683 | int maxfd = -1; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 684 | struct timeval t, *tp = NULL; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 685 | fd_set rset, wset, eset; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 686 | |
| 687 | FD_ZERO(&rset); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 688 | FD_ZERO(&wset); |
| 689 | FD_ZERO(&eset); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 690 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 691 | /* if we are out of resources, find how long we have to wait |
| 692 | for some to come free, we'll loop around then and restart |
| 693 | listening for queries */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 694 | if ((t.tv_sec = set_dns_listeners(now, &rset, &maxfd)) != 0) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 695 | { |
| 696 | t.tv_usec = 0; |
| 697 | tp = &t; |
| 698 | } |
| 699 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 700 | /* Whilst polling for the dbus, or doing a tftp transfer, wake every quarter second */ |
| 701 | if (daemon->tftp_trans || |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 702 | (option_bool(OPT_DBUS) && !daemon->dbus)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 703 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 704 | t.tv_sec = 0; |
| 705 | t.tv_usec = 250000; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 706 | tp = &t; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 707 | } |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 708 | /* Wake every second whilst waiting for DAD to complete */ |
| 709 | else if (is_dad_listeners()) |
| 710 | { |
| 711 | t.tv_sec = 1; |
| 712 | t.tv_usec = 0; |
| 713 | tp = &t; |
| 714 | } |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 715 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 716 | #ifdef HAVE_DBUS |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 717 | set_dbus_listeners(&maxfd, &rset, &wset, &eset); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 718 | #endif |
| 719 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 720 | #ifdef HAVE_DHCP |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 721 | if (daemon->dhcp) |
| 722 | { |
| 723 | FD_SET(daemon->dhcpfd, &rset); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 724 | bump_maxfd(daemon->dhcpfd, &maxfd); |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 725 | if (daemon->pxefd != -1) |
| 726 | { |
| 727 | FD_SET(daemon->pxefd, &rset); |
| 728 | bump_maxfd(daemon->pxefd, &maxfd); |
| 729 | } |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 730 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 731 | #endif |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 732 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 733 | #ifdef HAVE_DHCP6 |
| 734 | if (daemon->dhcp6) |
| 735 | { |
| 736 | FD_SET(daemon->dhcp6fd, &rset); |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 737 | bump_maxfd(daemon->dhcp6fd, &maxfd); |
Simon Kelley | 5d71d83 | 2012-03-24 14:40:42 +0000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | if (daemon->ra_contexts) |
| 741 | { |
| 742 | FD_SET(daemon->icmp6fd, &rset); |
| 743 | bump_maxfd(daemon->icmp6fd, &maxfd); |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 744 | } |
| 745 | #endif |
| 746 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 747 | #ifdef HAVE_LINUX_NETWORK |
| 748 | FD_SET(daemon->netlinkfd, &rset); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 749 | bump_maxfd(daemon->netlinkfd, &maxfd); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 750 | #endif |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 751 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 752 | FD_SET(piperead, &rset); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 753 | bump_maxfd(piperead, &maxfd); |
| 754 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 755 | #ifdef HAVE_DHCP |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 756 | # ifdef HAVE_SCRIPT |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 757 | while (helper_buf_empty() && do_script_run(now)); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 758 | |
Simon Kelley | a953096 | 2012-03-20 22:07:35 +0000 | [diff] [blame] | 759 | # ifdef HAVE_TFTP |
| 760 | while (helper_buf_empty() && do_tftp_script_run()); |
| 761 | # endif |
| 762 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 763 | if (!helper_buf_empty()) |
| 764 | { |
| 765 | FD_SET(daemon->helperfd, &wset); |
| 766 | bump_maxfd(daemon->helperfd, &maxfd); |
| 767 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 768 | # else |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 769 | /* need this for other side-effects */ |
| 770 | while (do_script_run(now)); |
Simon Kelley | a953096 | 2012-03-20 22:07:35 +0000 | [diff] [blame] | 771 | |
| 772 | # ifdef HAVE_TFTP |
| 773 | while (do_tftp_script_run()); |
| 774 | # endif |
| 775 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 776 | # endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 777 | #endif |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 778 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 779 | /* must do this just before select(), when we know no |
| 780 | more calls to my_syslog() can occur */ |
| 781 | set_log_writer(&wset, &maxfd); |
| 782 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 783 | if (select(maxfd+1, &rset, &wset, &eset, tp) < 0) |
| 784 | { |
| 785 | /* otherwise undefined after error */ |
| 786 | FD_ZERO(&rset); FD_ZERO(&wset); FD_ZERO(&eset); |
| 787 | } |
| 788 | |
| 789 | now = dnsmasq_time(); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 790 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 791 | check_log_writer(&wset); |
Simon Kelley | 74c95c2 | 2011-10-19 09:33:39 +0100 | [diff] [blame] | 792 | |
| 793 | /* Check the interfaces to see if any have exited DAD state |
| 794 | and if so, bind the address. */ |
| 795 | if (is_dad_listeners()) |
| 796 | { |
| 797 | enumerate_interfaces(); |
| 798 | /* NB, is_dad_listeners() == 1 --> we're binding interfaces */ |
| 799 | create_bound_listeners(0); |
| 800 | } |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 801 | |
Simon Kelley | c52e189 | 2010-06-07 22:01:39 +0100 | [diff] [blame] | 802 | #ifdef HAVE_LINUX_NETWORK |
| 803 | if (FD_ISSET(daemon->netlinkfd, &rset)) |
| 804 | netlink_multicast(); |
| 805 | #endif |
| 806 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 807 | /* Check for changes to resolv files once per second max. */ |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 808 | /* Don't go silent for long periods if the clock goes backwards. */ |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 809 | if (daemon->last_resolv == 0 || |
| 810 | difftime(now, daemon->last_resolv) > 1.0 || |
| 811 | difftime(now, daemon->last_resolv) < -1.0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 812 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 813 | /* poll_resolv doesn't need to reload first time through, since |
| 814 | that's queued anyway. */ |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 815 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 816 | poll_resolv(0, daemon->last_resolv != 0, now); |
| 817 | daemon->last_resolv = now; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 818 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 819 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 820 | if (FD_ISSET(piperead, &rset)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 821 | async_event(piperead, now); |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 822 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 823 | #ifdef HAVE_DBUS |
| 824 | /* if we didn't create a DBus connection, retry now. */ |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 825 | if (option_bool(OPT_DBUS) && !daemon->dbus) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 826 | { |
| 827 | char *err; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 828 | if ((err = dbus_init())) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 829 | my_syslog(LOG_WARNING, _("DBus error: %s"), err); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 830 | if (daemon->dbus) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 831 | my_syslog(LOG_INFO, _("connected to system DBus")); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 832 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 833 | check_dbus_listeners(&rset, &wset, &eset); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 834 | #endif |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 835 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 836 | check_dns_listeners(&rset, now); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 837 | |
| 838 | #ifdef HAVE_TFTP |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 839 | check_tftp_listeners(&rset, now); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 840 | #endif |
| 841 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 842 | #ifdef HAVE_DHCP |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 843 | if (daemon->dhcp) |
| 844 | { |
| 845 | if (FD_ISSET(daemon->dhcpfd, &rset)) |
| 846 | dhcp_packet(now, 0); |
| 847 | if (daemon->pxefd != -1 && FD_ISSET(daemon->pxefd, &rset)) |
| 848 | dhcp_packet(now, 1); |
| 849 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 850 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 851 | #ifdef HAVE_DHCP6 |
| 852 | if (daemon->dhcp6) |
| 853 | { |
| 854 | if (FD_ISSET(daemon->dhcp6fd, &rset)) |
| 855 | dhcp6_packet(now); |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 856 | |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 857 | if (daemon->ra_contexts && FD_ISSET(daemon->icmp6fd, &rset)) |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 858 | icmp6_packet(); |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 859 | } |
| 860 | #endif |
| 861 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 862 | # ifdef HAVE_SCRIPT |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 863 | if (daemon->helperfd != -1 && FD_ISSET(daemon->helperfd, &wset)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 864 | helper_write(); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 865 | # endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 866 | #endif |
| 867 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 868 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 869 | } |
| 870 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 871 | static void sig_handler(int sig) |
| 872 | { |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 873 | if (pid == 0) |
| 874 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 875 | /* ignore anything other than TERM during startup |
| 876 | and in helper proc. (helper ignore TERM too) */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 877 | if (sig == SIGTERM) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 878 | exit(EC_MISC); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 879 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 880 | else if (pid != getpid()) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 881 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 882 | /* alarm is used to kill TCP children after a fixed time. */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 883 | if (sig == SIGALRM) |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 884 | _exit(0); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 885 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 886 | else |
| 887 | { |
| 888 | /* master process */ |
| 889 | int event, errsave = errno; |
| 890 | |
| 891 | if (sig == SIGHUP) |
| 892 | event = EVENT_RELOAD; |
| 893 | else if (sig == SIGCHLD) |
| 894 | event = EVENT_CHILD; |
| 895 | else if (sig == SIGALRM) |
| 896 | event = EVENT_ALARM; |
| 897 | else if (sig == SIGTERM) |
| 898 | event = EVENT_TERM; |
| 899 | else if (sig == SIGUSR1) |
| 900 | event = EVENT_DUMP; |
| 901 | else if (sig == SIGUSR2) |
| 902 | event = EVENT_REOPEN; |
| 903 | else |
| 904 | return; |
| 905 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 906 | send_event(pipewrite, event, 0, NULL); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 907 | errno = errsave; |
| 908 | } |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 909 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 910 | |
Simon Kelley | 353ae4d | 2012-03-19 20:07:51 +0000 | [diff] [blame] | 911 | /* now == 0 -> queue immediate callback */ |
| 912 | void send_alarm(time_t event, time_t now) |
Simon Kelley | 741c295 | 2012-02-25 13:09:18 +0000 | [diff] [blame] | 913 | { |
Simon Kelley | 884a6df | 2012-03-20 16:20:22 +0000 | [diff] [blame] | 914 | if (now == 0 || event != 0) |
Simon Kelley | 353ae4d | 2012-03-19 20:07:51 +0000 | [diff] [blame] | 915 | { |
Simon Kelley | 884a6df | 2012-03-20 16:20:22 +0000 | [diff] [blame] | 916 | /* alarm(0) or alarm(-ve) doesn't do what we want.... */ |
| 917 | if ((now == 0 || difftime(event, now) <= 0.0)) |
| 918 | send_event(pipewrite, EVENT_ALARM, 0, NULL); |
| 919 | else |
| 920 | alarm((unsigned)difftime(event, now)); |
Simon Kelley | 353ae4d | 2012-03-19 20:07:51 +0000 | [diff] [blame] | 921 | } |
Simon Kelley | 741c295 | 2012-02-25 13:09:18 +0000 | [diff] [blame] | 922 | } |
| 923 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 924 | void send_event(int fd, int event, int data, char *msg) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 925 | { |
| 926 | struct event_desc ev; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 927 | struct iovec iov[2]; |
| 928 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 929 | ev.event = event; |
| 930 | ev.data = data; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 931 | ev.msg_sz = msg ? strlen(msg) : 0; |
| 932 | |
| 933 | iov[0].iov_base = &ev; |
| 934 | iov[0].iov_len = sizeof(ev); |
| 935 | iov[1].iov_base = msg; |
| 936 | iov[1].iov_len = ev.msg_sz; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 937 | |
| 938 | /* error pipe, debug mode. */ |
| 939 | if (fd == -1) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 940 | fatal_event(&ev, msg); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 941 | else |
| 942 | /* pipe is non-blocking and struct event_desc is smaller than |
| 943 | PIPE_BUF, so this either fails or writes everything */ |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 944 | while (writev(fd, iov, msg ? 2 : 1) == -1 && errno == EINTR); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 945 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 946 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 947 | /* NOTE: the memory used to return msg is leaked: use msgs in events only |
| 948 | to describe fatal errors. */ |
| 949 | static int read_event(int fd, struct event_desc *evp, char **msg) |
| 950 | { |
| 951 | char *buf; |
| 952 | |
| 953 | if (!read_write(fd, (unsigned char *)evp, sizeof(struct event_desc), 1)) |
| 954 | return 0; |
| 955 | |
| 956 | *msg = NULL; |
| 957 | |
| 958 | if (evp->msg_sz != 0 && |
| 959 | (buf = malloc(evp->msg_sz + 1)) && |
| 960 | read_write(fd, (unsigned char *)buf, evp->msg_sz, 1)) |
| 961 | { |
| 962 | buf[evp->msg_sz] = 0; |
| 963 | *msg = buf; |
| 964 | } |
| 965 | |
| 966 | return 1; |
| 967 | } |
| 968 | |
| 969 | static void fatal_event(struct event_desc *ev, char *msg) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 970 | { |
| 971 | errno = ev->data; |
| 972 | |
| 973 | switch (ev->event) |
| 974 | { |
| 975 | case EVENT_DIE: |
| 976 | exit(0); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 977 | |
| 978 | case EVENT_FORK_ERR: |
| 979 | die(_("cannot fork into background: %s"), NULL, EC_MISC); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 980 | |
| 981 | case EVENT_PIPE_ERR: |
| 982 | die(_("failed to create helper: %s"), NULL, EC_MISC); |
| 983 | |
| 984 | case EVENT_CAP_ERR: |
| 985 | die(_("setting capabilities failed: %s"), NULL, EC_MISC); |
| 986 | |
| 987 | case EVENT_USER_ERR: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 988 | die(_("failed to change user-id to %s: %s"), msg, EC_MISC); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 989 | |
| 990 | case EVENT_GROUP_ERR: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 991 | die(_("failed to change group-id to %s: %s"), msg, EC_MISC); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 992 | |
| 993 | case EVENT_PIDFILE: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 994 | die(_("failed to open pidfile %s: %s"), msg, EC_FILE); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 995 | |
| 996 | case EVENT_LOG_ERR: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 997 | die(_("cannot open log %s: %s"), msg, EC_FILE); |
| 998 | |
| 999 | case EVENT_LUA_ERR: |
| 1000 | die(_("failed to load Lua script: %s"), msg, EC_MISC); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1001 | } |
| 1002 | } |
| 1003 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1004 | static void async_event(int pipe, time_t now) |
| 1005 | { |
| 1006 | pid_t p; |
| 1007 | struct event_desc ev; |
| 1008 | int i; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1009 | char *msg; |
| 1010 | |
| 1011 | /* NOTE: the memory used to return msg is leaked: use msgs in events only |
| 1012 | to describe fatal errors. */ |
| 1013 | |
| 1014 | if (read_event(pipe, &ev, &msg)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1015 | switch (ev.event) |
| 1016 | { |
| 1017 | case EVENT_RELOAD: |
| 1018 | clear_cache_and_reload(now); |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1019 | if (daemon->port != 0 && daemon->resolv_files && option_bool(OPT_NO_POLL)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1020 | { |
| 1021 | reload_servers(daemon->resolv_files->name); |
| 1022 | check_servers(); |
| 1023 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1024 | #ifdef HAVE_DHCP |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1025 | rerun_scripts(); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1026 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1027 | break; |
| 1028 | |
| 1029 | case EVENT_DUMP: |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1030 | if (daemon->port != 0) |
| 1031 | dump_cache(now); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1032 | break; |
| 1033 | |
| 1034 | case EVENT_ALARM: |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1035 | #ifdef HAVE_DHCP |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 1036 | if (daemon->dhcp || daemon->dhcp6) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1037 | { |
| 1038 | lease_prune(NULL, now); |
| 1039 | lease_update_file(now); |
| 1040 | } |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 1041 | #ifdef HAVE_DHCP6 |
| 1042 | else if (daemon->ra_contexts) |
Simon Kelley | 353ae4d | 2012-03-19 20:07:51 +0000 | [diff] [blame] | 1043 | /* Not doing DHCP, so no lease system, manage alarms for ra only */ |
| 1044 | send_alarm(periodic_ra(now), now); |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 1045 | #endif |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1046 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1047 | break; |
| 1048 | |
| 1049 | case EVENT_CHILD: |
| 1050 | /* See Stevens 5.10 */ |
| 1051 | while ((p = waitpid(-1, NULL, WNOHANG)) != 0) |
| 1052 | if (p == -1) |
| 1053 | { |
| 1054 | if (errno != EINTR) |
| 1055 | break; |
| 1056 | } |
| 1057 | else |
| 1058 | for (i = 0 ; i < MAX_PROCS; i++) |
| 1059 | if (daemon->tcp_pids[i] == p) |
| 1060 | daemon->tcp_pids[i] = 0; |
| 1061 | break; |
| 1062 | |
| 1063 | case EVENT_KILLED: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1064 | my_syslog(LOG_WARNING, _("script process killed by signal %d"), ev.data); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1065 | break; |
| 1066 | |
| 1067 | case EVENT_EXITED: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1068 | my_syslog(LOG_WARNING, _("script process exited with status %d"), ev.data); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1069 | break; |
| 1070 | |
| 1071 | case EVENT_EXEC_ERR: |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 1072 | my_syslog(LOG_ERR, _("failed to execute %s: %s"), |
| 1073 | daemon->lease_change_command, strerror(ev.data)); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1074 | break; |
| 1075 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1076 | /* necessary for fatal errors in helper */ |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1077 | case EVENT_USER_ERR: |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1078 | case EVENT_DIE: |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1079 | case EVENT_LUA_ERR: |
| 1080 | fatal_event(&ev, msg); |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 1081 | break; |
| 1082 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1083 | case EVENT_REOPEN: |
| 1084 | /* Note: this may leave TCP-handling processes with the old file still open. |
| 1085 | Since any such process will die in CHILD_LIFETIME or probably much sooner, |
| 1086 | we leave them logging to the old file. */ |
| 1087 | if (daemon->log_file != NULL) |
| 1088 | log_reopen(daemon->log_file); |
| 1089 | break; |
| 1090 | |
| 1091 | case EVENT_TERM: |
| 1092 | /* Knock all our children on the head. */ |
| 1093 | for (i = 0; i < MAX_PROCS; i++) |
| 1094 | if (daemon->tcp_pids[i] != 0) |
| 1095 | kill(daemon->tcp_pids[i], SIGALRM); |
| 1096 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1097 | #if defined(HAVE_SCRIPT) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1098 | /* handle pending lease transitions */ |
| 1099 | if (daemon->helperfd != -1) |
| 1100 | { |
| 1101 | /* block in writes until all done */ |
| 1102 | if ((i = fcntl(daemon->helperfd, F_GETFL)) != -1) |
| 1103 | fcntl(daemon->helperfd, F_SETFL, i & ~O_NONBLOCK); |
| 1104 | do { |
| 1105 | helper_write(); |
| 1106 | } while (!helper_buf_empty() || do_script_run(now)); |
| 1107 | close(daemon->helperfd); |
| 1108 | } |
| 1109 | #endif |
| 1110 | |
| 1111 | if (daemon->lease_stream) |
| 1112 | fclose(daemon->lease_stream); |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 1113 | |
| 1114 | if (daemon->runfile) |
| 1115 | unlink(daemon->runfile); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1116 | |
| 1117 | my_syslog(LOG_INFO, _("exiting on receipt of SIGTERM")); |
| 1118 | flush_log(); |
| 1119 | exit(EC_GOOD); |
| 1120 | } |
| 1121 | } |
| 1122 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1123 | void poll_resolv(int force, int do_reload, time_t now) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1124 | { |
| 1125 | struct resolvc *res, *latest; |
| 1126 | struct stat statbuf; |
| 1127 | time_t last_change = 0; |
| 1128 | /* There may be more than one possible file. |
| 1129 | Go through and find the one which changed _last_. |
| 1130 | Warn of any which can't be read. */ |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1131 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1132 | if (daemon->port == 0 || option_bool(OPT_NO_POLL)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1133 | return; |
| 1134 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1135 | for (latest = NULL, res = daemon->resolv_files; res; res = res->next) |
| 1136 | if (stat(res->name, &statbuf) == -1) |
| 1137 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1138 | if (force) |
| 1139 | { |
| 1140 | res->mtime = 0; |
| 1141 | continue; |
| 1142 | } |
| 1143 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1144 | if (!res->logged) |
| 1145 | my_syslog(LOG_WARNING, _("failed to access %s: %s"), res->name, strerror(errno)); |
| 1146 | res->logged = 1; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1147 | |
| 1148 | if (res->mtime != 0) |
| 1149 | { |
| 1150 | /* existing file evaporated, force selection of the latest |
| 1151 | file even if its mtime hasn't changed since we last looked */ |
| 1152 | poll_resolv(1, do_reload, now); |
| 1153 | return; |
| 1154 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1155 | } |
| 1156 | else |
| 1157 | { |
| 1158 | res->logged = 0; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1159 | if (force || (statbuf.st_mtime != res->mtime)) |
| 1160 | { |
| 1161 | res->mtime = statbuf.st_mtime; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1162 | if (difftime(statbuf.st_mtime, last_change) > 0.0) |
| 1163 | { |
| 1164 | last_change = statbuf.st_mtime; |
| 1165 | latest = res; |
| 1166 | } |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | if (latest) |
| 1171 | { |
| 1172 | static int warned = 0; |
| 1173 | if (reload_servers(latest->name)) |
| 1174 | { |
| 1175 | my_syslog(LOG_INFO, _("reading %s"), latest->name); |
| 1176 | warned = 0; |
| 1177 | check_servers(); |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1178 | if (option_bool(OPT_RELOAD) && do_reload) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1179 | clear_cache_and_reload(now); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1180 | } |
| 1181 | else |
| 1182 | { |
| 1183 | latest->mtime = 0; |
| 1184 | if (!warned) |
| 1185 | { |
| 1186 | my_syslog(LOG_WARNING, _("no servers found in %s, will retry"), latest->name); |
| 1187 | warned = 1; |
| 1188 | } |
| 1189 | } |
| 1190 | } |
| 1191 | } |
| 1192 | |
| 1193 | void clear_cache_and_reload(time_t now) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1194 | { |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1195 | if (daemon->port != 0) |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1196 | cache_reload(); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1197 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1198 | #ifdef HAVE_DHCP |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 1199 | if (daemon->dhcp || daemon->dhcp6) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1200 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1201 | if (option_bool(OPT_ETHERS)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1202 | dhcp_read_ethers(); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1203 | reread_dhcp(); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1204 | dhcp_update_configs(daemon->dhcp_conf); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1205 | check_dhcp_hosts(0); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1206 | lease_update_from_configs(); |
| 1207 | lease_update_file(now); |
Simon Kelley | 353ae4d | 2012-03-19 20:07:51 +0000 | [diff] [blame] | 1208 | lease_update_dns(1); |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1209 | } |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 1210 | #ifdef HAVE_DHCP6 |
| 1211 | else if (daemon->ra_contexts) |
| 1212 | { |
| 1213 | /* Not doing DHCP, so no lease system, manage |
| 1214 | alarms for ra only */ |
| 1215 | time_t next_event = periodic_ra(now); |
| 1216 | if (next_event != 0) |
| 1217 | alarm((unsigned)difftime(next_event, now)); |
| 1218 | } |
| 1219 | #endif |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1220 | #endif |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1221 | } |
| 1222 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1223 | static int set_dns_listeners(time_t now, fd_set *set, int *maxfdp) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1224 | { |
| 1225 | struct serverfd *serverfdp; |
| 1226 | struct listener *listener; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1227 | int wait = 0, i; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1228 | |
| 1229 | #ifdef HAVE_TFTP |
| 1230 | int tftp = 0; |
| 1231 | struct tftp_transfer *transfer; |
| 1232 | for (transfer = daemon->tftp_trans; transfer; transfer = transfer->next) |
| 1233 | { |
| 1234 | tftp++; |
| 1235 | FD_SET(transfer->sockfd, set); |
| 1236 | bump_maxfd(transfer->sockfd, maxfdp); |
| 1237 | } |
| 1238 | #endif |
| 1239 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1240 | /* will we be able to get memory? */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1241 | if (daemon->port != 0) |
| 1242 | get_new_frec(now, &wait); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1243 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1244 | for (serverfdp = daemon->sfds; serverfdp; serverfdp = serverfdp->next) |
| 1245 | { |
| 1246 | FD_SET(serverfdp->fd, set); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1247 | bump_maxfd(serverfdp->fd, maxfdp); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1248 | } |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1249 | |
| 1250 | if (daemon->port != 0 && !daemon->osport) |
| 1251 | for (i = 0; i < RANDOM_SOCKS; i++) |
| 1252 | if (daemon->randomsocks[i].refcount != 0) |
| 1253 | { |
| 1254 | FD_SET(daemon->randomsocks[i].fd, set); |
| 1255 | bump_maxfd(daemon->randomsocks[i].fd, maxfdp); |
| 1256 | } |
| 1257 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1258 | for (listener = daemon->listeners; listener; listener = listener->next) |
| 1259 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1260 | /* only listen for queries if we have resources */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1261 | if (listener->fd != -1 && wait == 0) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1262 | { |
| 1263 | FD_SET(listener->fd, set); |
| 1264 | bump_maxfd(listener->fd, maxfdp); |
| 1265 | } |
| 1266 | |
| 1267 | /* death of a child goes through the select loop, so |
| 1268 | we don't need to explicitly arrange to wake up here */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1269 | if (listener->tcpfd != -1) |
| 1270 | for (i = 0; i < MAX_PROCS; i++) |
| 1271 | if (daemon->tcp_pids[i] == 0) |
| 1272 | { |
| 1273 | FD_SET(listener->tcpfd, set); |
| 1274 | bump_maxfd(listener->tcpfd, maxfdp); |
| 1275 | break; |
| 1276 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1277 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1278 | #ifdef HAVE_TFTP |
| 1279 | if (tftp <= daemon->tftp_max && listener->tftpfd != -1) |
| 1280 | { |
| 1281 | FD_SET(listener->tftpfd, set); |
| 1282 | bump_maxfd(listener->tftpfd, maxfdp); |
| 1283 | } |
| 1284 | #endif |
| 1285 | |
| 1286 | } |
| 1287 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1288 | return wait; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1289 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1290 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1291 | static void check_dns_listeners(fd_set *set, time_t now) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1292 | { |
| 1293 | struct serverfd *serverfdp; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1294 | struct listener *listener; |
| 1295 | int i; |
| 1296 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1297 | for (serverfdp = daemon->sfds; serverfdp; serverfdp = serverfdp->next) |
| 1298 | if (FD_ISSET(serverfdp->fd, set)) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1299 | reply_query(serverfdp->fd, serverfdp->source_addr.sa.sa_family, now); |
| 1300 | |
| 1301 | if (daemon->port != 0 && !daemon->osport) |
| 1302 | for (i = 0; i < RANDOM_SOCKS; i++) |
| 1303 | if (daemon->randomsocks[i].refcount != 0 && |
| 1304 | FD_ISSET(daemon->randomsocks[i].fd, set)) |
| 1305 | reply_query(daemon->randomsocks[i].fd, daemon->randomsocks[i].family, now); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1306 | |
| 1307 | for (listener = daemon->listeners; listener; listener = listener->next) |
| 1308 | { |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1309 | if (listener->fd != -1 && FD_ISSET(listener->fd, set)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1310 | receive_query(listener, now); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1311 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1312 | #ifdef HAVE_TFTP |
| 1313 | if (listener->tftpfd != -1 && FD_ISSET(listener->tftpfd, set)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1314 | tftp_request(listener, now); |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 1315 | #endif |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1316 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1317 | if (listener->tcpfd != -1 && FD_ISSET(listener->tcpfd, set)) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1318 | { |
| 1319 | int confd; |
| 1320 | struct irec *iface = NULL; |
| 1321 | pid_t p; |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1322 | union mysockaddr tcp_addr; |
| 1323 | socklen_t tcp_len = sizeof(union mysockaddr); |
| 1324 | |
| 1325 | while ((confd = accept(listener->tcpfd, NULL, NULL)) == -1 && errno == EINTR); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1326 | |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1327 | if (confd == -1 || |
| 1328 | getsockname(confd, (struct sockaddr *)&tcp_addr, &tcp_len) == -1) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1329 | continue; |
| 1330 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1331 | if (option_bool(OPT_NOWILD)) |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1332 | iface = listener->iface; /* May be NULL */ |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1333 | else |
| 1334 | { |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1335 | /* Check for allowed interfaces when binding the wildcard address: |
| 1336 | we do this by looking for an interface with the same address as |
| 1337 | the local address of the TCP connection, then looking to see if that's |
| 1338 | an allowed interface. As a side effect, we get the netmask of the |
| 1339 | interface too, for localisation. */ |
| 1340 | |
| 1341 | /* interface may be new since startup */ |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1342 | if (enumerate_interfaces()) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1343 | for (iface = daemon->interfaces; iface; iface = iface->next) |
| 1344 | if (sockaddr_isequal(&iface->addr, &tcp_addr)) |
| 1345 | break; |
| 1346 | } |
| 1347 | |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1348 | if (!iface && !option_bool(OPT_NOWILD)) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1349 | { |
| 1350 | shutdown(confd, SHUT_RDWR); |
| 1351 | close(confd); |
| 1352 | } |
| 1353 | #ifndef NO_FORK |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1354 | else if (!option_bool(OPT_DEBUG) && (p = fork()) != 0) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1355 | { |
| 1356 | if (p != -1) |
| 1357 | { |
| 1358 | int i; |
| 1359 | for (i = 0; i < MAX_PROCS; i++) |
| 1360 | if (daemon->tcp_pids[i] == 0) |
| 1361 | { |
| 1362 | daemon->tcp_pids[i] = p; |
| 1363 | break; |
| 1364 | } |
| 1365 | } |
| 1366 | close(confd); |
| 1367 | } |
| 1368 | #endif |
| 1369 | else |
| 1370 | { |
| 1371 | unsigned char *buff; |
| 1372 | struct server *s; |
| 1373 | int flags; |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1374 | struct in_addr netmask; |
| 1375 | |
| 1376 | if (iface) |
| 1377 | netmask = iface->netmask; |
| 1378 | else |
| 1379 | netmask.s_addr = 0; |
| 1380 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1381 | #ifndef NO_FORK |
| 1382 | /* Arrange for SIGALARM after CHILD_LIFETIME seconds to |
| 1383 | terminate the process. */ |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1384 | if (!option_bool(OPT_DEBUG)) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1385 | alarm(CHILD_LIFETIME); |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1386 | #endif |
| 1387 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1388 | /* start with no upstream connections. */ |
| 1389 | for (s = daemon->servers; s; s = s->next) |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1390 | s->tcpfd = -1; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1391 | |
| 1392 | /* The connected socket inherits non-blocking |
| 1393 | attribute from the listening socket. |
| 1394 | Reset that here. */ |
| 1395 | if ((flags = fcntl(confd, F_GETFL, 0)) != -1) |
| 1396 | fcntl(confd, F_SETFL, flags & ~O_NONBLOCK); |
| 1397 | |
Simon Kelley | 52d4abf | 2012-03-21 21:39:48 +0000 | [diff] [blame] | 1398 | buff = tcp_request(confd, now, &tcp_addr, netmask); |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1399 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1400 | shutdown(confd, SHUT_RDWR); |
| 1401 | close(confd); |
| 1402 | |
| 1403 | if (buff) |
| 1404 | free(buff); |
| 1405 | |
| 1406 | for (s = daemon->servers; s; s = s->next) |
| 1407 | if (s->tcpfd != -1) |
| 1408 | { |
| 1409 | shutdown(s->tcpfd, SHUT_RDWR); |
| 1410 | close(s->tcpfd); |
| 1411 | } |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1412 | #ifndef NO_FORK |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1413 | if (!option_bool(OPT_DEBUG)) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1414 | { |
| 1415 | flush_log(); |
| 1416 | _exit(0); |
| 1417 | } |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1418 | #endif |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1419 | } |
| 1420 | } |
| 1421 | } |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1422 | } |
| 1423 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1424 | #ifdef HAVE_DHCP |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1425 | int make_icmp_sock(void) |
| 1426 | { |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1427 | int fd; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1428 | int zeroopt = 0; |
| 1429 | |
| 1430 | if ((fd = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP)) != -1) |
| 1431 | { |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 1432 | if (!fix_fd(fd) || |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1433 | setsockopt(fd, SOL_SOCKET, SO_DONTROUTE, &zeroopt, sizeof(zeroopt)) == -1) |
| 1434 | { |
| 1435 | close(fd); |
| 1436 | fd = -1; |
| 1437 | } |
| 1438 | } |
| 1439 | |
| 1440 | return fd; |
| 1441 | } |
| 1442 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1443 | int icmp_ping(struct in_addr addr) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1444 | { |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1445 | /* Try and get an ICMP echo from a machine. */ |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1446 | |
| 1447 | /* Note that whilst in the three second wait, we check for |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1448 | (and service) events on the DNS and TFTP sockets, (so doing that |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1449 | better not use any resources our caller has in use...) |
| 1450 | but we remain deaf to signals or further DHCP packets. */ |
| 1451 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1452 | int fd; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1453 | struct sockaddr_in saddr; |
| 1454 | struct { |
| 1455 | struct ip ip; |
| 1456 | struct icmp icmp; |
| 1457 | } packet; |
| 1458 | unsigned short id = rand16(); |
| 1459 | unsigned int i, j; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1460 | int gotreply = 0; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1461 | time_t start, now; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1462 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1463 | #if defined(HAVE_LINUX_NETWORK) || defined (HAVE_SOLARIS_NETWORK) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1464 | if ((fd = make_icmp_sock()) == -1) |
| 1465 | return 0; |
| 1466 | #else |
| 1467 | int opt = 2000; |
| 1468 | fd = daemon->dhcp_icmp_fd; |
| 1469 | setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &opt, sizeof(opt)); |
| 1470 | #endif |
| 1471 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1472 | saddr.sin_family = AF_INET; |
| 1473 | saddr.sin_port = 0; |
| 1474 | saddr.sin_addr = addr; |
| 1475 | #ifdef HAVE_SOCKADDR_SA_LEN |
| 1476 | saddr.sin_len = sizeof(struct sockaddr_in); |
| 1477 | #endif |
| 1478 | |
| 1479 | memset(&packet.icmp, 0, sizeof(packet.icmp)); |
| 1480 | packet.icmp.icmp_type = ICMP_ECHO; |
| 1481 | packet.icmp.icmp_id = id; |
| 1482 | for (j = 0, i = 0; i < sizeof(struct icmp) / 2; i++) |
| 1483 | j += ((u16 *)&packet.icmp)[i]; |
| 1484 | while (j>>16) |
| 1485 | j = (j & 0xffff) + (j >> 16); |
| 1486 | packet.icmp.icmp_cksum = (j == 0xffff) ? j : ~j; |
| 1487 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1488 | while (sendto(fd, (char *)&packet.icmp, sizeof(struct icmp), 0, |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1489 | (struct sockaddr *)&saddr, sizeof(saddr)) == -1 && |
| 1490 | retry_send()); |
| 1491 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1492 | for (now = start = dnsmasq_time(); |
| 1493 | difftime(now, start) < (float)PING_WAIT;) |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1494 | { |
| 1495 | struct timeval tv; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1496 | fd_set rset, wset; |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1497 | struct sockaddr_in faddr; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1498 | int maxfd = fd; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1499 | socklen_t len = sizeof(faddr); |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1500 | |
| 1501 | tv.tv_usec = 250000; |
| 1502 | tv.tv_sec = 0; |
| 1503 | |
| 1504 | FD_ZERO(&rset); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1505 | FD_ZERO(&wset); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1506 | FD_SET(fd, &rset); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1507 | set_dns_listeners(now, &rset, &maxfd); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1508 | set_log_writer(&wset, &maxfd); |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 1509 | |
| 1510 | #ifdef HAVE_DHCP6 |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 1511 | if (daemon->ra_contexts) |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 1512 | { |
| 1513 | FD_SET(daemon->icmp6fd, &rset); |
| 1514 | bump_maxfd(daemon->icmp6fd, &maxfd); |
| 1515 | } |
| 1516 | #endif |
| 1517 | |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1518 | if (select(maxfd+1, &rset, &wset, NULL, &tv) < 0) |
| 1519 | { |
| 1520 | FD_ZERO(&rset); |
| 1521 | FD_ZERO(&wset); |
| 1522 | } |
| 1523 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1524 | now = dnsmasq_time(); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1525 | |
| 1526 | check_log_writer(&wset); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1527 | check_dns_listeners(&rset, now); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1528 | |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 1529 | #ifdef HAVE_DHCP6 |
Simon Kelley | 843c96b | 2012-02-27 17:42:38 +0000 | [diff] [blame] | 1530 | if (daemon->ra_contexts && FD_ISSET(daemon->icmp6fd, &rset)) |
Simon Kelley | c5ad4e7 | 2012-02-24 16:06:20 +0000 | [diff] [blame] | 1531 | icmp6_packet(); |
| 1532 | #endif |
| 1533 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1534 | #ifdef HAVE_TFTP |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1535 | check_tftp_listeners(&rset, now); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1536 | #endif |
| 1537 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1538 | if (FD_ISSET(fd, &rset) && |
| 1539 | recvfrom(fd, &packet, sizeof(packet), 0, |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1540 | (struct sockaddr *)&faddr, &len) == sizeof(packet) && |
| 1541 | saddr.sin_addr.s_addr == faddr.sin_addr.s_addr && |
| 1542 | packet.icmp.icmp_type == ICMP_ECHOREPLY && |
| 1543 | packet.icmp.icmp_seq == 0 && |
| 1544 | packet.icmp.icmp_id == id) |
| 1545 | { |
| 1546 | gotreply = 1; |
| 1547 | break; |
| 1548 | } |
| 1549 | } |
| 1550 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1551 | #if defined(HAVE_LINUX_NETWORK) || defined(HAVE_SOLARIS_NETWORK) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1552 | close(fd); |
| 1553 | #else |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1554 | opt = 1; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1555 | setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &opt, sizeof(opt)); |
| 1556 | #endif |
| 1557 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1558 | return gotreply; |
| 1559 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1560 | #endif |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 1561 | |
| 1562 | |