Simon Kelley | 6174435 | 2013-01-31 14:34:40 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2013 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 | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 17 | #include "dnsmasq.h" |
| 18 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 19 | #ifdef HAVE_DHCP |
| 20 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 21 | struct iface_param { |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 22 | struct dhcp_context *current; |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 23 | struct dhcp_relay *relay; |
| 24 | struct in_addr relay_local; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 25 | int ind; |
| 26 | }; |
| 27 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 28 | struct match_param { |
| 29 | int ind, matched; |
| 30 | struct in_addr netmask, broadcast, addr; |
| 31 | }; |
| 32 | |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 33 | static int complete_context(struct in_addr local, int if_index, char *label, |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 34 | struct in_addr netmask, struct in_addr broadcast, void *vparam); |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 35 | static int check_listen_addrs(struct in_addr local, int if_index, char *label, |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 36 | struct in_addr netmask, struct in_addr broadcast, void *vparam); |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 37 | static int relay_upstream4(struct dhcp_relay *relay, struct dhcp_packet *mess, size_t sz, int iface_index); |
| 38 | static struct dhcp_relay *relay_reply4(struct dhcp_packet *mess, char *arrival_interface); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 39 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 40 | static int make_fd(int port) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 41 | { |
| 42 | int fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP); |
| 43 | struct sockaddr_in saddr; |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 44 | int oneopt = 1; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 45 | #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT) |
| 46 | int mtu = IP_PMTUDISC_DONT; |
| 47 | #endif |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 48 | #if defined(IP_TOS) && defined(IPTOS_CLASS_CS6) |
| 49 | int tos = IPTOS_CLASS_CS6; |
| 50 | #endif |
Simon Kelley | dfa666f | 2004-08-02 18:27:27 +0100 | [diff] [blame] | 51 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 52 | if (fd == -1) |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 53 | die (_("cannot create DHCP socket: %s"), NULL, EC_BADNET); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 54 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 55 | if (!fix_fd(fd) || |
| 56 | #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 57 | setsockopt(fd, IPPROTO_IP, IP_MTU_DISCOVER, &mtu, sizeof(mtu)) == -1 || |
| 58 | #endif |
| 59 | #if defined(IP_TOS) && defined(IPTOS_CLASS_CS6) |
| 60 | setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) == -1 || |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 61 | #endif |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 62 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 63 | setsockopt(fd, IPPROTO_IP, IP_PKTINFO, &oneopt, sizeof(oneopt)) == -1 || |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 64 | #else |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 65 | setsockopt(fd, IPPROTO_IP, IP_RECVIF, &oneopt, sizeof(oneopt)) == -1 || |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 66 | #endif |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 67 | setsockopt(fd, SOL_SOCKET, SO_BROADCAST, &oneopt, sizeof(oneopt)) == -1) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 68 | die(_("failed to set options on DHCP socket: %s"), NULL, EC_BADNET); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 69 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 70 | /* When bind-interfaces is set, there might be more than one dnmsasq |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 71 | instance binding port 67. That's OK if they serve different networks. |
Simon Kelley | 56a1142 | 2013-04-02 17:02:58 +0100 | [diff] [blame] | 72 | Need to set REUSEADDR|REUSEPORT to make this posible. |
| 73 | Handle the case that REUSEPORT is defined, but the kernel doesn't |
| 74 | support it. This handles the introduction of REUSEPORT on Linux. */ |
Simon Kelley | 54dd393 | 2012-06-20 11:23:38 +0100 | [diff] [blame] | 75 | if (option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND)) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 76 | { |
Simon Kelley | ffbad34 | 2013-08-14 15:53:57 +0100 | [diff] [blame] | 77 | int rc = 0; |
Simon Kelley | 56a1142 | 2013-04-02 17:02:58 +0100 | [diff] [blame] | 78 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 79 | #ifdef SO_REUSEPORT |
Simon Kelley | 56a1142 | 2013-04-02 17:02:58 +0100 | [diff] [blame] | 80 | if ((rc = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &oneopt, sizeof(oneopt))) == -1 && |
Simon Kelley | ffbad34 | 2013-08-14 15:53:57 +0100 | [diff] [blame] | 81 | errno == ENOPROTOOPT) |
| 82 | rc = 0; |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 83 | #endif |
Simon Kelley | 56a1142 | 2013-04-02 17:02:58 +0100 | [diff] [blame] | 84 | |
Simon Kelley | ffbad34 | 2013-08-14 15:53:57 +0100 | [diff] [blame] | 85 | if (rc != -1) |
Simon Kelley | 56a1142 | 2013-04-02 17:02:58 +0100 | [diff] [blame] | 86 | rc = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &oneopt, sizeof(oneopt)); |
| 87 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 88 | if (rc == -1) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 89 | die(_("failed to set SO_REUSE{ADDR|PORT} on DHCP socket: %s"), NULL, EC_BADNET); |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 90 | } |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 91 | |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 92 | memset(&saddr, 0, sizeof(saddr)); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 93 | saddr.sin_family = AF_INET; |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 94 | saddr.sin_port = htons(port); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 95 | saddr.sin_addr.s_addr = INADDR_ANY; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 96 | #ifdef HAVE_SOCKADDR_SA_LEN |
| 97 | saddr.sin_len = sizeof(struct sockaddr_in); |
| 98 | #endif |
| 99 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 100 | if (bind(fd, (struct sockaddr *)&saddr, sizeof(struct sockaddr_in))) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 101 | die(_("failed to bind DHCP server socket: %s"), NULL, EC_BADNET); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 102 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 103 | return fd; |
| 104 | } |
| 105 | |
| 106 | void dhcp_init(void) |
| 107 | { |
| 108 | #if defined(HAVE_BSD_NETWORK) |
| 109 | int oneopt = 1; |
| 110 | #endif |
| 111 | |
| 112 | daemon->dhcpfd = make_fd(daemon->dhcp_server_port); |
| 113 | if (daemon->enable_pxe) |
| 114 | daemon->pxefd = make_fd(PXE_PORT); |
| 115 | else |
| 116 | daemon->pxefd = -1; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 117 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 118 | #if defined(HAVE_BSD_NETWORK) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 119 | /* When we're not using capabilities, we need to do this here before |
| 120 | we drop root. Also, set buffer size small, to avoid wasting |
| 121 | kernel buffers */ |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 122 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 123 | if (option_bool(OPT_NO_PING)) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 124 | daemon->dhcp_icmp_fd = -1; |
| 125 | else if ((daemon->dhcp_icmp_fd = make_icmp_sock()) == -1 || |
| 126 | setsockopt(daemon->dhcp_icmp_fd, SOL_SOCKET, SO_RCVBUF, &oneopt, sizeof(oneopt)) == -1 ) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 127 | die(_("cannot create ICMP raw socket: %s."), NULL, EC_BADNET); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 128 | |
| 129 | /* Make BPF raw send socket */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 130 | init_bpf(); |
Simon Kelley | c4a7f90 | 2012-07-12 20:52:12 +0100 | [diff] [blame] | 131 | #endif |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 134 | void dhcp_packet(time_t now, int pxe_fd) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 135 | { |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 136 | int fd = pxe_fd ? daemon->pxefd : daemon->dhcpfd; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 137 | struct dhcp_packet *mess; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 138 | struct dhcp_context *context; |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 139 | struct dhcp_relay *relay; |
| 140 | int is_relay_reply = 0; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 141 | struct iname *tmp; |
| 142 | struct ifreq ifr; |
| 143 | struct msghdr msg; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 144 | struct sockaddr_in dest; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 145 | struct cmsghdr *cmptr; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 146 | struct iovec iov; |
| 147 | ssize_t sz; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 148 | int iface_index = 0, unicast_dest = 0, is_inform = 0; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 149 | struct in_addr iface_addr; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 150 | struct iface_param parm; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 151 | #ifdef HAVE_LINUX_NETWORK |
| 152 | struct arpreq arp_req; |
| 153 | #endif |
| 154 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 155 | union { |
| 156 | struct cmsghdr align; /* this ensures alignment */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 157 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 158 | char control[CMSG_SPACE(sizeof(struct in_pktinfo))]; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 159 | #elif defined(HAVE_SOLARIS_NETWORK) |
| 160 | char control[CMSG_SPACE(sizeof(unsigned int))]; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 161 | #elif defined(HAVE_BSD_NETWORK) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 162 | char control[CMSG_SPACE(sizeof(struct sockaddr_dl))]; |
| 163 | #endif |
| 164 | } control_u; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 165 | struct dhcp_bridge *bridge, *alias; |
| 166 | |
| 167 | msg.msg_controllen = sizeof(control_u); |
| 168 | msg.msg_control = control_u.control; |
| 169 | msg.msg_name = &dest; |
| 170 | msg.msg_namelen = sizeof(dest); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 171 | msg.msg_iov = &daemon->dhcp_packet; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 172 | msg.msg_iovlen = 1; |
| 173 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 174 | if ((sz = recv_dhcp_packet(fd, &msg)) == -1 || |
| 175 | (sz < (ssize_t)(sizeof(*mess) - sizeof(mess->options)))) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 176 | return; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 177 | |
| 178 | #if defined (HAVE_LINUX_NETWORK) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 179 | if (msg.msg_controllen >= sizeof(struct cmsghdr)) |
| 180 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 181 | if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 182 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 183 | union { |
| 184 | unsigned char *c; |
| 185 | struct in_pktinfo *p; |
| 186 | } p; |
| 187 | p.c = CMSG_DATA(cmptr); |
| 188 | iface_index = p.p->ipi_ifindex; |
| 189 | if (p.p->ipi_addr.s_addr != INADDR_BROADCAST) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 190 | unicast_dest = 1; |
| 191 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 192 | |
| 193 | #elif defined(HAVE_BSD_NETWORK) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 194 | if (msg.msg_controllen >= sizeof(struct cmsghdr)) |
| 195 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
| 196 | if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 197 | { |
| 198 | union { |
| 199 | unsigned char *c; |
| 200 | struct sockaddr_dl *s; |
| 201 | } p; |
| 202 | p.c = CMSG_DATA(cmptr); |
| 203 | iface_index = p.s->sdl_index; |
| 204 | } |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 205 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 206 | #elif defined(HAVE_SOLARIS_NETWORK) |
| 207 | if (msg.msg_controllen >= sizeof(struct cmsghdr)) |
| 208 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
| 209 | if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 210 | { |
| 211 | union { |
| 212 | unsigned char *c; |
| 213 | unsigned int *i; |
| 214 | } p; |
| 215 | p.c = CMSG_DATA(cmptr); |
| 216 | iface_index = *(p.i); |
| 217 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 218 | #endif |
| 219 | |
| 220 | if (!indextoname(daemon->dhcpfd, iface_index, ifr.ifr_name)) |
| 221 | return; |
| 222 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 223 | #ifdef HAVE_LINUX_NETWORK |
| 224 | /* ARP fiddling uses original interface even if we pretend to use a different one. */ |
| 225 | strncpy(arp_req.arp_dev, ifr.ifr_name, 16); |
| 226 | #endif |
| 227 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 228 | /* One form of bridging on BSD has the property that packets |
| 229 | can be recieved on bridge interfaces which do not have an IP address. |
| 230 | We allow these to be treated as aliases of another interface which does have |
| 231 | an IP address with --dhcp-bridge=interface,alias,alias */ |
| 232 | for (bridge = daemon->bridges; bridge; bridge = bridge->next) |
| 233 | { |
| 234 | for (alias = bridge->alias; alias; alias = alias->next) |
| 235 | if (strncmp(ifr.ifr_name, alias->iface, IF_NAMESIZE) == 0) |
| 236 | { |
| 237 | if (!(iface_index = if_nametoindex(bridge->iface))) |
| 238 | { |
| 239 | my_syslog(LOG_WARNING, _("unknown interface %s in bridge-interface"), ifr.ifr_name); |
| 240 | return; |
| 241 | } |
| 242 | else |
| 243 | { |
| 244 | strncpy(ifr.ifr_name, bridge->iface, IF_NAMESIZE); |
| 245 | break; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | if (alias) |
| 250 | break; |
| 251 | } |
| 252 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 253 | #ifdef MSG_BCAST |
| 254 | /* OpenBSD tells us when a packet was broadcast */ |
| 255 | if (!(msg.msg_flags & MSG_BCAST)) |
| 256 | unicast_dest = 1; |
| 257 | #endif |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 258 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 259 | if ((relay = relay_reply4((struct dhcp_packet *)daemon->dhcp_packet.iov_base, ifr.ifr_name))) |
| 260 | { |
| 261 | /* Reply from server, using us as relay. */ |
| 262 | iface_index = relay->iface_index; |
| 263 | if (!indextoname(daemon->dhcpfd, iface_index, ifr.ifr_name)) |
| 264 | return; |
| 265 | is_relay_reply = 1; |
| 266 | iov.iov_len = sz; |
| 267 | #ifdef HAVE_LINUX_NETWORK |
| 268 | strncpy(arp_req.arp_dev, ifr.ifr_name, 16); |
| 269 | #endif |
| 270 | } |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 271 | else |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 272 | { |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 273 | ifr.ifr_addr.sa_family = AF_INET; |
| 274 | if (ioctl(daemon->dhcpfd, SIOCGIFADDR, &ifr) != -1 ) |
| 275 | iface_addr = ((struct sockaddr_in *) &ifr.ifr_addr)->sin_addr; |
| 276 | else |
| 277 | { |
| 278 | my_syslog(MS_DHCP | LOG_WARNING, _("DHCP packet received on %s which has no address"), ifr.ifr_name); |
| 279 | return; |
| 280 | } |
Simon Kelley | 8bc4cec | 2012-07-03 21:04:11 +0100 | [diff] [blame] | 281 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 282 | for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next) |
| 283 | if (tmp->name && wildcard_match(tmp->name, ifr.ifr_name)) |
| 284 | return; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 285 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 286 | /* unlinked contexts/relays are marked by context->current == context */ |
| 287 | for (context = daemon->dhcp; context; context = context->next) |
| 288 | context->current = context; |
| 289 | |
| 290 | for (relay = daemon->relay4; relay; relay = relay->next) |
| 291 | relay->current = relay; |
| 292 | |
| 293 | parm.current = NULL; |
| 294 | parm.relay = NULL; |
| 295 | parm.relay_local.s_addr = 0; |
| 296 | parm.ind = iface_index; |
| 297 | |
| 298 | if (!iface_check(AF_INET, (struct all_addr *)&iface_addr, ifr.ifr_name, NULL)) |
| 299 | { |
| 300 | /* If we failed to match the primary address of the interface, see if we've got a --listen-address |
| 301 | for a secondary */ |
| 302 | struct match_param match; |
| 303 | |
| 304 | match.matched = 0; |
| 305 | match.ind = iface_index; |
| 306 | |
| 307 | if (!daemon->if_addrs || |
| 308 | !iface_enumerate(AF_INET, &match, check_listen_addrs) || |
| 309 | !match.matched) |
| 310 | return; |
| 311 | |
| 312 | iface_addr = match.addr; |
| 313 | /* make sure secondary address gets priority in case |
| 314 | there is more than one address on the interface in the same subnet */ |
| 315 | complete_context(match.addr, iface_index, NULL, match.netmask, match.broadcast, &parm); |
| 316 | } |
| 317 | |
| 318 | if (!iface_enumerate(AF_INET, &parm, complete_context)) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 319 | return; |
| 320 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 321 | /* We're relaying this request */ |
| 322 | if (parm.relay_local.s_addr != 0 && |
| 323 | relay_upstream4(parm.relay, (struct dhcp_packet *)daemon->dhcp_packet.iov_base, (size_t)sz, iface_index)) |
| 324 | return; |
| 325 | |
| 326 | /* May have configured relay, but not DHCP server */ |
| 327 | if (!daemon->dhcp) |
| 328 | return; |
| 329 | |
| 330 | lease_prune(NULL, now); /* lose any expired leases */ |
| 331 | iov.iov_len = dhcp_reply(parm.current, ifr.ifr_name, iface_index, (size_t)sz, |
| 332 | now, unicast_dest, &is_inform, pxe_fd, iface_addr); |
| 333 | lease_update_file(now); |
| 334 | lease_update_dns(0); |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 335 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 336 | if (iov.iov_len == 0) |
| 337 | return; |
| 338 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 339 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 340 | msg.msg_name = &dest; |
| 341 | msg.msg_namelen = sizeof(dest); |
| 342 | msg.msg_control = NULL; |
| 343 | msg.msg_controllen = 0; |
| 344 | msg.msg_iov = &iov; |
| 345 | iov.iov_base = daemon->dhcp_packet.iov_base; |
| 346 | |
| 347 | /* packet buffer may have moved */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 348 | mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 349 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 350 | #ifdef HAVE_SOCKADDR_SA_LEN |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 351 | dest.sin_len = sizeof(struct sockaddr_in); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 352 | #endif |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 353 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 354 | if (pxe_fd) |
| 355 | { |
| 356 | if (mess->ciaddr.s_addr != 0) |
| 357 | dest.sin_addr = mess->ciaddr; |
| 358 | } |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 359 | else if (mess->giaddr.s_addr && !is_relay_reply) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 360 | { |
| 361 | /* Send to BOOTP relay */ |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 362 | dest.sin_port = htons(daemon->dhcp_server_port); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 363 | dest.sin_addr = mess->giaddr; |
| 364 | } |
| 365 | else if (mess->ciaddr.s_addr) |
| 366 | { |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 367 | /* If the client's idea of its own address tallys with |
| 368 | the source address in the request packet, we believe the |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 369 | source port too, and send back to that. If we're replying |
| 370 | to a DHCPINFORM, trust the source address always. */ |
| 371 | if ((!is_inform && dest.sin_addr.s_addr != mess->ciaddr.s_addr) || |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 372 | dest.sin_port == 0 || dest.sin_addr.s_addr == 0 || is_relay_reply) |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 373 | { |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 374 | dest.sin_port = htons(daemon->dhcp_client_port); |
Simon Kelley | 208b65c | 2006-08-05 21:41:37 +0100 | [diff] [blame] | 375 | dest.sin_addr = mess->ciaddr; |
| 376 | } |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 377 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 378 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 379 | else if ((ntohs(mess->flags) & 0x8000) || mess->hlen == 0 || |
| 380 | mess->hlen > sizeof(ifr.ifr_addr.sa_data) || mess->htype == 0) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 381 | { |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 382 | /* broadcast to 255.255.255.255 (or mac address invalid) */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 383 | struct in_pktinfo *pkt; |
Simon Kelley | 26d0dba | 2006-04-23 20:00:42 +0100 | [diff] [blame] | 384 | msg.msg_control = control_u.control; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 385 | msg.msg_controllen = sizeof(control_u); |
| 386 | cmptr = CMSG_FIRSTHDR(&msg); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 387 | pkt = (struct in_pktinfo *)CMSG_DATA(cmptr); |
| 388 | pkt->ipi_ifindex = iface_index; |
| 389 | pkt->ipi_spec_dst.s_addr = 0; |
| 390 | msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo)); |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 391 | cmptr->cmsg_level = IPPROTO_IP; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 392 | cmptr->cmsg_type = IP_PKTINFO; |
| 393 | dest.sin_addr.s_addr = INADDR_BROADCAST; |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 394 | dest.sin_port = htons(daemon->dhcp_client_port); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 395 | } |
| 396 | else |
| 397 | { |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 398 | /* unicast to unconfigured client. Inject mac address direct into ARP cache. |
| 399 | struct sockaddr limits size to 14 bytes. */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 400 | dest.sin_addr = mess->yiaddr; |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 401 | dest.sin_port = htons(daemon->dhcp_client_port); |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 402 | memcpy(&arp_req.arp_pa, &dest, sizeof(struct sockaddr_in)); |
| 403 | arp_req.arp_ha.sa_family = mess->htype; |
| 404 | memcpy(arp_req.arp_ha.sa_data, mess->chaddr, mess->hlen); |
| 405 | /* interface name already copied in */ |
| 406 | arp_req.arp_flags = ATF_COM; |
| 407 | ioctl(daemon->dhcpfd, SIOCSARP, &arp_req); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 408 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 409 | #elif defined(HAVE_SOLARIS_NETWORK) |
| 410 | else if ((ntohs(mess->flags) & 0x8000) || mess->hlen != ETHER_ADDR_LEN || mess->htype != ARPHRD_ETHER) |
| 411 | { |
| 412 | /* broadcast to 255.255.255.255 (or mac address invalid) */ |
| 413 | dest.sin_addr.s_addr = INADDR_BROADCAST; |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 414 | dest.sin_port = htons(daemon->dhcp_client_port); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 415 | /* note that we don't specify the interface here: that's done by the |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 416 | IP_BOUND_IF sockopt lower down. */ |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 417 | } |
| 418 | else |
| 419 | { |
| 420 | /* unicast to unconfigured client. Inject mac address direct into ARP cache. |
| 421 | Note that this only works for ethernet on solaris, because we use SIOCSARP |
| 422 | and not SIOCSXARP, which would be perfect, except that it returns ENXIO |
| 423 | mysteriously. Bah. Fall back to broadcast for other net types. */ |
| 424 | struct arpreq req; |
| 425 | dest.sin_addr = mess->yiaddr; |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 426 | dest.sin_port = htons(daemon->dhcp_client_port); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 427 | *((struct sockaddr_in *)&req.arp_pa) = dest; |
| 428 | req.arp_ha.sa_family = AF_UNSPEC; |
| 429 | memcpy(req.arp_ha.sa_data, mess->chaddr, mess->hlen); |
| 430 | req.arp_flags = ATF_COM; |
| 431 | ioctl(daemon->dhcpfd, SIOCSARP, &req); |
| 432 | } |
| 433 | #elif defined(HAVE_BSD_NETWORK) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 434 | else |
| 435 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 436 | send_via_bpf(mess, iov.iov_len, iface_addr, &ifr); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 437 | return; |
| 438 | } |
| 439 | #endif |
| 440 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 441 | #ifdef HAVE_SOLARIS_NETWORK |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 442 | setsockopt(fd, IPPROTO_IP, IP_BOUND_IF, &iface_index, sizeof(iface_index)); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 443 | #endif |
| 444 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 445 | while(sendmsg(fd, &msg, 0) == -1 && retry_send()); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 446 | } |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 447 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 448 | /* check against secondary interface addresses */ |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 449 | static int check_listen_addrs(struct in_addr local, int if_index, char *label, |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 450 | struct in_addr netmask, struct in_addr broadcast, void *vparam) |
| 451 | { |
| 452 | struct match_param *param = vparam; |
| 453 | struct iname *tmp; |
| 454 | |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 455 | (void) label; |
| 456 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 457 | if (if_index == param->ind) |
| 458 | { |
| 459 | for (tmp = daemon->if_addrs; tmp; tmp = tmp->next) |
| 460 | if ( tmp->addr.sa.sa_family == AF_INET && |
| 461 | tmp->addr.in.sin_addr.s_addr == local.s_addr) |
| 462 | { |
| 463 | param->matched = 1; |
| 464 | param->addr = local; |
| 465 | param->netmask = netmask; |
| 466 | param->broadcast = broadcast; |
| 467 | break; |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | return 1; |
| 472 | } |
| 473 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 474 | /* This is a complex routine: it gets called with each (address,netmask,broadcast) triple |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 475 | of each interface (and any relay address) and does the following things: |
| 476 | |
| 477 | 1) Discards stuff for interfaces other than the one on which a DHCP packet just arrived. |
| 478 | 2) Fills in any netmask and broadcast addresses which have not been explicitly configured. |
| 479 | 3) Fills in local (this host) and router (this host or relay) addresses. |
| 480 | 4) Links contexts which are valid for hosts directly connected to the arrival interface on ->current. |
| 481 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 482 | Note that the current chain may be superceded later for configured hosts or those coming via gateways. */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 483 | |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 484 | static int complete_context(struct in_addr local, int if_index, char *label, |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 485 | struct in_addr netmask, struct in_addr broadcast, void *vparam) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 486 | { |
| 487 | struct dhcp_context *context; |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 488 | struct dhcp_relay *relay; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 489 | struct iface_param *param = vparam; |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 490 | |
| 491 | (void)label; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 492 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 493 | for (context = daemon->dhcp; context; context = context->next) |
| 494 | { |
| 495 | if (!(context->flags & CONTEXT_NETMASK) && |
| 496 | (is_same_net(local, context->start, netmask) || |
| 497 | is_same_net(local, context->end, netmask))) |
| 498 | { |
| 499 | if (context->netmask.s_addr != netmask.s_addr && |
| 500 | !(is_same_net(local, context->start, netmask) && |
| 501 | is_same_net(local, context->end, netmask))) |
| 502 | { |
| 503 | strcpy(daemon->dhcp_buff, inet_ntoa(context->start)); |
| 504 | strcpy(daemon->dhcp_buff2, inet_ntoa(context->end)); |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 505 | my_syslog(MS_DHCP | LOG_WARNING, _("DHCP range %s -- %s is not consistent with netmask %s"), |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 506 | daemon->dhcp_buff, daemon->dhcp_buff2, inet_ntoa(netmask)); |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 507 | } |
| 508 | context->netmask = netmask; |
| 509 | } |
| 510 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 511 | if (context->netmask.s_addr != 0 && |
| 512 | is_same_net(local, context->start, context->netmask) && |
| 513 | is_same_net(local, context->end, context->netmask)) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 514 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 515 | /* link it onto the current chain if we've not seen it before */ |
| 516 | if (if_index == param->ind && context->current == context) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 517 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 518 | context->router = local; |
| 519 | context->local = local; |
| 520 | context->current = param->current; |
| 521 | param->current = context; |
| 522 | } |
| 523 | |
| 524 | if (!(context->flags & CONTEXT_BRDCAST)) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 525 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 526 | if (is_same_net(broadcast, context->start, context->netmask)) |
| 527 | context->broadcast = broadcast; |
| 528 | else |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 529 | context->broadcast.s_addr = context->start.s_addr | ~context->netmask.s_addr; |
| 530 | } |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 531 | } |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 532 | } |
| 533 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 534 | for (relay = daemon->relay4; relay; relay = relay->next) |
| 535 | if (if_index == param->ind && relay->local.addr.addr4.s_addr == local.s_addr && relay->current == relay && |
| 536 | (param->relay_local.s_addr == 0 || param->relay_local.s_addr == local.s_addr)) |
| 537 | { |
| 538 | relay->current = param->relay; |
| 539 | param->relay = relay; |
| 540 | param->relay_local = local; |
| 541 | } |
| 542 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 543 | return 1; |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 546 | struct dhcp_context *address_available(struct dhcp_context *context, |
| 547 | struct in_addr taddr, |
| 548 | struct dhcp_netid *netids) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 549 | { |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 550 | /* Check is an address is OK for this network, check all |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 551 | possible ranges. Make sure that the address isn't in use |
| 552 | by the server itself. */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 553 | |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 554 | unsigned int start, end, addr = ntohl(taddr.s_addr); |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 555 | struct dhcp_context *tmp; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 556 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 557 | for (tmp = context; tmp; tmp = tmp->current) |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 558 | if (taddr.s_addr == context->router.s_addr) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 559 | return NULL; |
| 560 | |
| 561 | for (tmp = context; tmp; tmp = tmp->current) |
| 562 | { |
| 563 | start = ntohl(tmp->start.s_addr); |
| 564 | end = ntohl(tmp->end.s_addr); |
| 565 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 566 | if (!(tmp->flags & (CONTEXT_STATIC | CONTEXT_PROXY)) && |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 567 | addr >= start && |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 568 | addr <= end && |
| 569 | match_netid(tmp->filter, netids, 1)) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 570 | return tmp; |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 571 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 572 | |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 573 | return NULL; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 574 | } |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 575 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 576 | struct dhcp_context *narrow_context(struct dhcp_context *context, |
| 577 | struct in_addr taddr, |
| 578 | struct dhcp_netid *netids) |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 579 | { |
Simon Kelley | e17fb62 | 2006-01-14 20:33:46 +0000 | [diff] [blame] | 580 | /* We start of with a set of possible contexts, all on the current physical interface. |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 581 | These are chained on ->current. |
| 582 | Here we have an address, and return the actual context correponding to that |
| 583 | address. Note that none may fit, if the address came a dhcp-host and is outside |
Simon Kelley | e17fb62 | 2006-01-14 20:33:46 +0000 | [diff] [blame] | 584 | any dhcp-range. In that case we return a static range if possible, or failing that, |
| 585 | any context on the correct subnet. (If there's more than one, this is a dodgy |
| 586 | configuration: maybe there should be a warning.) */ |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 587 | |
Simon Kelley | e17fb62 | 2006-01-14 20:33:46 +0000 | [diff] [blame] | 588 | struct dhcp_context *tmp; |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 589 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 590 | if (!(tmp = address_available(context, taddr, netids))) |
| 591 | { |
| 592 | for (tmp = context; tmp; tmp = tmp->current) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 593 | if (match_netid(tmp->filter, netids, 1) && |
| 594 | is_same_net(taddr, tmp->start, tmp->netmask) && |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 595 | (tmp->flags & CONTEXT_STATIC)) |
| 596 | break; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 597 | |
| 598 | if (!tmp) |
| 599 | for (tmp = context; tmp; tmp = tmp->current) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 600 | if (match_netid(tmp->filter, netids, 1) && |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 601 | is_same_net(taddr, tmp->start, tmp->netmask) && |
| 602 | !(tmp->flags & CONTEXT_PROXY)) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 603 | break; |
| 604 | } |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 605 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 606 | /* Only one context allowed now */ |
| 607 | if (tmp) |
| 608 | tmp->current = NULL; |
| 609 | |
| 610 | return tmp; |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Simon Kelley | dfa666f | 2004-08-02 18:27:27 +0100 | [diff] [blame] | 613 | struct dhcp_config *config_find_by_address(struct dhcp_config *configs, struct in_addr addr) |
| 614 | { |
| 615 | struct dhcp_config *config; |
| 616 | |
| 617 | for (config = configs; config; config = config->next) |
| 618 | if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr) |
| 619 | return config; |
| 620 | |
| 621 | return NULL; |
| 622 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 623 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 624 | int address_allocate(struct dhcp_context *context, |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 625 | struct in_addr *addrp, unsigned char *hwaddr, int hw_len, |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 626 | struct dhcp_netid *netids, time_t now) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 627 | { |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 628 | /* Find a free address: exclude anything in use and anything allocated to |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 629 | a particular hwaddr/clientid/hostname in our configuration. |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 630 | Try to return from contexts which match netids first. */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 631 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 632 | struct in_addr start, addr; |
| 633 | struct dhcp_context *c, *d; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 634 | int i, pass; |
| 635 | unsigned int j; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 636 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 637 | /* hash hwaddr: use the SDBM hashing algorithm. Seems to give good |
| 638 | dispersal even with similarly-valued "strings". */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 639 | for (j = 0, i = 0; i < hw_len; i++) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 640 | j += hwaddr[i] + (j << 6) + (j << 16) - j; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 641 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 642 | for (pass = 0; pass <= 1; pass++) |
| 643 | for (c = context; c; c = c->current) |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 644 | if (c->flags & (CONTEXT_STATIC | CONTEXT_PROXY)) |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 645 | continue; |
| 646 | else if (!match_netid(c->filter, netids, pass)) |
| 647 | continue; |
| 648 | else |
| 649 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 650 | if (option_bool(OPT_CONSEC_ADDR)) |
| 651 | /* seed is largest extant lease addr in this context */ |
| 652 | start = lease_find_max_addr(c); |
| 653 | else |
| 654 | /* pick a seed based on hwaddr */ |
| 655 | start.s_addr = htonl(ntohl(c->start.s_addr) + |
| 656 | ((j + c->addr_epoch) % (1 + ntohl(c->end.s_addr) - ntohl(c->start.s_addr)))); |
| 657 | |
| 658 | /* iterate until we find a free address. */ |
| 659 | addr = start; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 660 | |
| 661 | do { |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 662 | /* eliminate addresses in use by the server. */ |
| 663 | for (d = context; d; d = d->current) |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 664 | if (addr.s_addr == d->router.s_addr) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 665 | break; |
| 666 | |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 667 | /* Addresses which end in .255 and .0 are broken in Windows even when using |
| 668 | supernetting. ie dhcp-range=192.168.0.1,192.168.1.254,255,255,254.0 |
| 669 | then 192.168.0.255 is a valid IP address, but not for Windows as it's |
| 670 | in the class C range. See KB281579. We therefore don't allocate these |
| 671 | addresses to avoid hard-to-diagnose problems. Thanks Bill. */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 672 | if (!d && |
| 673 | !lease_find_by_addr(addr) && |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 674 | !config_find_by_address(daemon->dhcp_conf, addr) && |
| 675 | (!IN_CLASSC(ntohl(addr.s_addr)) || |
| 676 | ((ntohl(addr.s_addr) & 0xff) != 0xff && ((ntohl(addr.s_addr) & 0xff) != 0x0)))) |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 677 | { |
| 678 | struct ping_result *r, *victim = NULL; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 679 | int count, max = (int)(0.6 * (((float)PING_CACHE_TIME)/ |
| 680 | ((float)PING_WAIT))); |
| 681 | |
| 682 | *addrp = addr; |
| 683 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 684 | /* check if we failed to ping addr sometime in the last |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 685 | PING_CACHE_TIME seconds. If so, assume the same situation still exists. |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 686 | This avoids problems when a stupid client bangs |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 687 | on us repeatedly. As a final check, if we did more |
| 688 | than 60% of the possible ping checks in the last |
| 689 | PING_CACHE_TIME, we are in high-load mode, so don't do any more. */ |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 690 | for (count = 0, r = daemon->ping_results; r; r = r->next) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 691 | if (difftime(now, r->time) > (float)PING_CACHE_TIME) |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 692 | victim = r; /* old record */ |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 693 | else |
| 694 | { |
| 695 | count++; |
| 696 | if (r->addr.s_addr == addr.s_addr) |
| 697 | { |
| 698 | /* consec-ip mode: we offered this address for another client |
| 699 | (different hash) recently, don't offer it to this one. */ |
| 700 | if (option_bool(OPT_CONSEC_ADDR) && r->hash != j) |
| 701 | break; |
| 702 | |
| 703 | return 1; |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | if (!r) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 708 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 709 | if ((count < max) && !option_bool(OPT_NO_PING) && icmp_ping(addr)) |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 710 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 711 | /* address in use: perturb address selection so that we are |
| 712 | less likely to try this address again. */ |
| 713 | if (!option_bool(OPT_CONSEC_ADDR)) |
| 714 | c->addr_epoch++; |
| 715 | } |
| 716 | else |
| 717 | { |
| 718 | /* at this point victim may hold an expired record */ |
| 719 | if (!victim) |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 720 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 721 | if ((victim = whine_malloc(sizeof(struct ping_result)))) |
| 722 | { |
| 723 | victim->next = daemon->ping_results; |
| 724 | daemon->ping_results = victim; |
| 725 | } |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 726 | } |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 727 | |
| 728 | /* record that this address is OK for 30s |
| 729 | without more ping checks */ |
| 730 | if (victim) |
| 731 | { |
| 732 | victim->addr = addr; |
| 733 | victim->time = now; |
| 734 | victim->hash = j; |
| 735 | } |
| 736 | return 1; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 737 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 738 | } |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 739 | } |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 740 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 741 | addr.s_addr = htonl(ntohl(addr.s_addr) + 1); |
| 742 | |
| 743 | if (addr.s_addr == htonl(ntohl(c->end.s_addr) + 1)) |
| 744 | addr = c->start; |
| 745 | |
| 746 | } while (addr.s_addr != start.s_addr); |
| 747 | } |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 748 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 749 | return 0; |
| 750 | } |
| 751 | |
| 752 | static int is_addr_in_context(struct dhcp_context *context, struct dhcp_config *config) |
| 753 | { |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 754 | if (!context) /* called via find_config() from lease_update_from_configs() */ |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 755 | return 1; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 756 | if (!(config->flags & CONFIG_ADDR)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 757 | return 1; |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 758 | for (; context; context = context->current) |
| 759 | if (is_same_net(config->addr, context->start, context->netmask)) |
| 760 | return 1; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 765 | int config_has_mac(struct dhcp_config *config, unsigned char *hwaddr, int len, int type) |
| 766 | { |
| 767 | struct hwaddr_config *conf_addr; |
| 768 | |
| 769 | for (conf_addr = config->hwaddr; conf_addr; conf_addr = conf_addr->next) |
| 770 | if (conf_addr->wildcard_mask == 0 && |
| 771 | conf_addr->hwaddr_len == len && |
| 772 | (conf_addr->hwaddr_type == type || conf_addr->hwaddr_type == 0) && |
| 773 | memcmp(conf_addr->hwaddr, hwaddr, len) == 0) |
| 774 | return 1; |
| 775 | |
| 776 | return 0; |
| 777 | } |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 778 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 779 | struct dhcp_config *find_config(struct dhcp_config *configs, |
| 780 | struct dhcp_context *context, |
| 781 | unsigned char *clid, int clid_len, |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 782 | unsigned char *hwaddr, int hw_len, |
| 783 | int hw_type, char *hostname) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 784 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 785 | int count, new; |
| 786 | struct dhcp_config *config, *candidate; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 787 | struct hwaddr_config *conf_addr; |
| 788 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 789 | if (clid) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 790 | for (config = configs; config; config = config->next) |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 791 | if (config->flags & CONFIG_CLID) |
| 792 | { |
| 793 | if (config->clid_len == clid_len && |
| 794 | memcmp(config->clid, clid, clid_len) == 0 && |
| 795 | is_addr_in_context(context, config)) |
| 796 | return config; |
| 797 | |
| 798 | /* dhcpcd prefixes ASCII client IDs by zero which is wrong, but we try and |
| 799 | cope with that here */ |
| 800 | if (*clid == 0 && config->clid_len == clid_len-1 && |
| 801 | memcmp(config->clid, clid+1, clid_len-1) == 0 && |
| 802 | is_addr_in_context(context, config)) |
| 803 | return config; |
| 804 | } |
| 805 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 806 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 807 | for (config = configs; config; config = config->next) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 808 | if (config_has_mac(config, hwaddr, hw_len, hw_type) && |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 809 | is_addr_in_context(context, config)) |
| 810 | return config; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 811 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 812 | if (hostname && context) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 813 | for (config = configs; config; config = config->next) |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 814 | if ((config->flags & CONFIG_NAME) && |
| 815 | hostname_isequal(config->hostname, hostname) && |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 816 | is_addr_in_context(context, config)) |
| 817 | return config; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 818 | |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 819 | /* use match with fewest wildcard octets */ |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 820 | for (candidate = NULL, count = 0, config = configs; config; config = config->next) |
| 821 | if (is_addr_in_context(context, config)) |
| 822 | for (conf_addr = config->hwaddr; conf_addr; conf_addr = conf_addr->next) |
| 823 | if (conf_addr->wildcard_mask != 0 && |
| 824 | conf_addr->hwaddr_len == hw_len && |
| 825 | (conf_addr->hwaddr_type == hw_type || conf_addr->hwaddr_type == 0) && |
| 826 | (new = memcmp_masked(conf_addr->hwaddr, hwaddr, hw_len, conf_addr->wildcard_mask)) > count) |
| 827 | { |
| 828 | count = new; |
| 829 | candidate = config; |
| 830 | } |
| 831 | |
| 832 | return candidate; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 835 | void dhcp_read_ethers(void) |
Simon Kelley | 1ab84e2 | 2004-01-29 16:48:35 +0000 | [diff] [blame] | 836 | { |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 837 | FILE *f = fopen(ETHERSFILE, "r"); |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 838 | unsigned int flags; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 839 | char *buff = daemon->namebuff; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 840 | char *ip, *cp; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 841 | struct in_addr addr; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 842 | unsigned char hwaddr[ETHER_ADDR_LEN]; |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 843 | struct dhcp_config **up, *tmp; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 844 | struct dhcp_config *config; |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 845 | int count = 0, lineno = 0; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 846 | |
| 847 | addr.s_addr = 0; /* eliminate warning */ |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 848 | |
| 849 | if (!f) |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 850 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 851 | my_syslog(MS_DHCP | LOG_ERR, _("failed to read %s: %s"), ETHERSFILE, strerror(errno)); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 852 | return; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 853 | } |
| 854 | |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 855 | /* This can be called again on SIGHUP, so remove entries created last time round. */ |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 856 | for (up = &daemon->dhcp_conf, config = daemon->dhcp_conf; config; config = tmp) |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 857 | { |
| 858 | tmp = config->next; |
| 859 | if (config->flags & CONFIG_FROM_ETHERS) |
| 860 | { |
| 861 | *up = tmp; |
| 862 | /* cannot have a clid */ |
| 863 | if (config->flags & CONFIG_NAME) |
| 864 | free(config->hostname); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 865 | free(config->hwaddr); |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 866 | free(config); |
| 867 | } |
| 868 | else |
| 869 | up = &config->next; |
| 870 | } |
| 871 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 872 | while (fgets(buff, MAXDNAME, f)) |
| 873 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 874 | char *host = NULL; |
| 875 | |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 876 | lineno++; |
| 877 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 878 | while (strlen(buff) > 0 && isspace((int)buff[strlen(buff)-1])) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 879 | buff[strlen(buff)-1] = 0; |
| 880 | |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 881 | if ((*buff == '#') || (*buff == '+') || (*buff == 0)) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 882 | continue; |
| 883 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 884 | for (ip = buff; *ip && !isspace((int)*ip); ip++); |
| 885 | for(; *ip && isspace((int)*ip); ip++) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 886 | *ip = 0; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 887 | if (!*ip || parse_hex(buff, hwaddr, ETHER_ADDR_LEN, NULL, NULL) != ETHER_ADDR_LEN) |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 888 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 889 | my_syslog(MS_DHCP | LOG_ERR, _("bad line at %s line %d"), ETHERSFILE, lineno); |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 890 | continue; |
| 891 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 892 | |
| 893 | /* check for name or dotted-quad */ |
| 894 | for (cp = ip; *cp; cp++) |
| 895 | if (!(*cp == '.' || (*cp >='0' && *cp <= '9'))) |
| 896 | break; |
| 897 | |
| 898 | if (!*cp) |
| 899 | { |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 900 | if ((addr.s_addr = inet_addr(ip)) == (in_addr_t)-1) |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 901 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 902 | my_syslog(MS_DHCP | LOG_ERR, _("bad address at %s line %d"), ETHERSFILE, lineno); |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 903 | continue; |
| 904 | } |
| 905 | |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 906 | flags = CONFIG_ADDR; |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 907 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 908 | for (config = daemon->dhcp_conf; config; config = config->next) |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 909 | if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr) |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 910 | break; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 911 | } |
| 912 | else |
| 913 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 914 | int nomem; |
| 915 | if (!(host = canonicalise(ip, &nomem)) || !legal_hostname(host)) |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 916 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 917 | if (!nomem) |
| 918 | my_syslog(MS_DHCP | LOG_ERR, _("bad name at %s line %d"), ETHERSFILE, lineno); |
| 919 | free(host); |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 920 | continue; |
| 921 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 922 | |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 923 | flags = CONFIG_NAME; |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 924 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 925 | for (config = daemon->dhcp_conf; config; config = config->next) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 926 | if ((config->flags & CONFIG_NAME) && hostname_isequal(config->hostname, host)) |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 927 | break; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 928 | } |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 929 | |
| 930 | if (config && (config->flags & CONFIG_FROM_ETHERS)) |
| 931 | { |
| 932 | my_syslog(MS_DHCP | LOG_ERR, _("ignoring %s line %d, duplicate name or IP address"), ETHERSFILE, lineno); |
| 933 | continue; |
| 934 | } |
| 935 | |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 936 | if (!config) |
| 937 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 938 | for (config = daemon->dhcp_conf; config; config = config->next) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 939 | { |
| 940 | struct hwaddr_config *conf_addr = config->hwaddr; |
| 941 | if (conf_addr && |
| 942 | conf_addr->next == NULL && |
| 943 | conf_addr->wildcard_mask == 0 && |
| 944 | conf_addr->hwaddr_len == ETHER_ADDR_LEN && |
| 945 | (conf_addr->hwaddr_type == ARPHRD_ETHER || conf_addr->hwaddr_type == 0) && |
| 946 | memcmp(conf_addr->hwaddr, hwaddr, ETHER_ADDR_LEN) == 0) |
| 947 | break; |
| 948 | } |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 949 | |
| 950 | if (!config) |
| 951 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 952 | if (!(config = whine_malloc(sizeof(struct dhcp_config)))) |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 953 | continue; |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 954 | config->flags = CONFIG_FROM_ETHERS; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 955 | config->hwaddr = NULL; |
| 956 | config->domain = NULL; |
Simon Kelley | c52e189 | 2010-06-07 22:01:39 +0100 | [diff] [blame] | 957 | config->netid = NULL; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 958 | config->next = daemon->dhcp_conf; |
| 959 | daemon->dhcp_conf = config; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | config->flags |= flags; |
| 963 | |
| 964 | if (flags & CONFIG_NAME) |
| 965 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 966 | config->hostname = host; |
| 967 | host = NULL; |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | if (flags & CONFIG_ADDR) |
| 971 | config->addr = addr; |
Simon Kelley | 1cff166 | 2004-03-12 08:12:58 +0000 | [diff] [blame] | 972 | } |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 973 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 974 | config->flags |= CONFIG_NOCLID; |
| 975 | if (!config->hwaddr) |
| 976 | config->hwaddr = whine_malloc(sizeof(struct hwaddr_config)); |
| 977 | if (config->hwaddr) |
| 978 | { |
| 979 | memcpy(config->hwaddr->hwaddr, hwaddr, ETHER_ADDR_LEN); |
| 980 | config->hwaddr->hwaddr_len = ETHER_ADDR_LEN; |
| 981 | config->hwaddr->hwaddr_type = ARPHRD_ETHER; |
| 982 | config->hwaddr->wildcard_mask = 0; |
| 983 | config->hwaddr->next = NULL; |
| 984 | } |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 985 | count++; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 986 | |
| 987 | free(host); |
| 988 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | fclose(f); |
Simon Kelley | 33820b7 | 2004-04-03 21:10:00 +0100 | [diff] [blame] | 992 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 993 | my_syslog(MS_DHCP | LOG_INFO, _("read %s - %d addresses"), ETHERSFILE, count); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 994 | } |
| 995 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 996 | |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 997 | /* If we've not found a hostname any other way, try and see if there's one in /etc/hosts |
| 998 | for this address. If it has a domain part, that must match the set domain and |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 999 | it gets stripped. The set of legal domain names is bigger than the set of legal hostnames |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1000 | so check here that the domain name is legal as a hostname. |
| 1001 | NOTE: we're only allowed to overwrite daemon->dhcp_buff if we succeed. */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1002 | char *host_from_dns(struct in_addr addr) |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 1003 | { |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1004 | struct crec *lookup; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1005 | |
| 1006 | if (daemon->port == 0) |
| 1007 | return NULL; /* DNS disabled. */ |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 1008 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1009 | lookup = cache_find_by_addr(NULL, (struct all_addr *)&addr, 0, F_IPV4); |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1010 | |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 1011 | if (lookup && (lookup->flags & F_HOSTS)) |
| 1012 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1013 | char *dot, *hostname = cache_get_name(lookup); |
| 1014 | dot = strchr(hostname, '.'); |
| 1015 | |
| 1016 | if (dot && strlen(dot+1) != 0) |
| 1017 | { |
| 1018 | char *d2 = get_domain(addr); |
| 1019 | if (!d2 || !hostname_isequal(dot+1, d2)) |
| 1020 | return NULL; /* wrong domain */ |
| 1021 | } |
| 1022 | |
| 1023 | if (!legal_hostname(hostname)) |
| 1024 | return NULL; |
| 1025 | |
| 1026 | strncpy(daemon->dhcp_buff, hostname, 256); |
| 1027 | daemon->dhcp_buff[255] = 0; |
| 1028 | strip_hostname(daemon->dhcp_buff); |
| 1029 | |
| 1030 | return daemon->dhcp_buff; |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 1031 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1032 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1033 | return NULL; |
Simon Kelley | bb01cb9 | 2004-12-13 20:56:23 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 1036 | static int relay_upstream4(struct dhcp_relay *relay, struct dhcp_packet *mess, size_t sz, int iface_index) |
| 1037 | { |
| 1038 | /* ->local is same value for all relays on ->current chain */ |
| 1039 | struct all_addr from; |
| 1040 | |
| 1041 | if (mess->op != BOOTREQUEST) |
| 1042 | return 0; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1043 | |
Simon Kelley | ff7eea2 | 2013-09-04 18:01:38 +0100 | [diff] [blame^] | 1044 | /* source address == relay address */ |
| 1045 | from.addr.addr4 = relay->local.addr.addr4; |
| 1046 | |
| 1047 | /* already gatewayed ? */ |
| 1048 | if (mess->giaddr.s_addr) |
| 1049 | { |
| 1050 | /* if so check if by us, to stomp on loops. */ |
| 1051 | if (mess->giaddr.s_addr == relay->local.addr.addr4.s_addr) |
| 1052 | return 1; |
| 1053 | } |
| 1054 | else |
| 1055 | { |
| 1056 | /* plug in our address */ |
| 1057 | mess->giaddr.s_addr = relay->local.addr.addr4.s_addr; |
| 1058 | } |
| 1059 | |
| 1060 | if ((mess->hops++) > 20) |
| 1061 | return 1; |
| 1062 | |
| 1063 | for (; relay; relay = relay->current) |
| 1064 | { |
| 1065 | union mysockaddr to; |
| 1066 | |
| 1067 | to.sa.sa_family = AF_INET; |
| 1068 | to.in.sin_addr = relay->server.addr.addr4; |
| 1069 | to.in.sin_port = htons(daemon->dhcp_server_port); |
| 1070 | |
| 1071 | send_from(daemon->dhcpfd, 0, (char *)mess, sz, &to, &from, 0); |
| 1072 | |
| 1073 | if (option_bool(OPT_LOG_OPTS)) |
| 1074 | { |
| 1075 | inet_ntop(AF_INET, &relay->local, daemon->addrbuff, ADDRSTRLEN); |
| 1076 | my_syslog(MS_DHCP | LOG_INFO, _("DHCP relay %s -> %s"), daemon->addrbuff, inet_ntoa(relay->server.addr.addr4)); |
| 1077 | } |
| 1078 | |
| 1079 | /* Save this for replies */ |
| 1080 | relay->iface_index = iface_index; |
| 1081 | } |
| 1082 | |
| 1083 | return 1; |
| 1084 | } |
| 1085 | |
| 1086 | |
| 1087 | static struct dhcp_relay *relay_reply4(struct dhcp_packet *mess, char *arrival_interface) |
| 1088 | { |
| 1089 | struct dhcp_relay *relay; |
| 1090 | |
| 1091 | if (mess->giaddr.s_addr == 0 || mess->op != BOOTREPLY) |
| 1092 | return NULL; |
| 1093 | |
| 1094 | for (relay = daemon->relay4; relay; relay = relay->next) |
| 1095 | { |
| 1096 | if (mess->giaddr.s_addr == relay->local.addr.addr4.s_addr) |
| 1097 | { |
| 1098 | if (!relay->interface || wildcard_match(relay->interface, arrival_interface)) |
| 1099 | return relay->iface_index != 0 ? relay : NULL; |
| 1100 | } |
| 1101 | } |
| 1102 | |
| 1103 | return NULL; |
| 1104 | } |
| 1105 | |
| 1106 | #endif |