blob: 5d1eefc0d1177080260432e7c4a752ffb28935c6 [file] [log] [blame]
Simon Kelleyc47e3ba2014-01-08 17:07:54 +00001/* dnsmasq is Copyright (c) 2000-2014 Simon Kelley
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002
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 Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008 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 Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 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 Kelley9e4abcb2004-01-22 19:47:41 +000015*/
16
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017#include "dnsmasq.h"
18
Simon Kelley7622fc02009-06-04 20:32:05 +010019#ifdef HAVE_DHCP
20
Simon Kelley5aabfc72007-08-29 11:24:47 +010021static struct dhcp_lease *leases = NULL, *old_leases = NULL;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010022static int dns_dirty, file_dirty, leases_left;
Simon Kelley9e4abcb2004-01-22 19:47:41 +000023
Simon Kelley5aabfc72007-08-29 11:24:47 +010024void lease_init(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000025{
Simon Kelley9e4abcb2004-01-22 19:47:41 +000026 unsigned long ei;
Simon Kelleyc72daea2012-01-05 21:33:27 +000027 struct all_addr addr;
Simon Kelley9e4abcb2004-01-22 19:47:41 +000028 struct dhcp_lease *lease;
Simon Kelley5aabfc72007-08-29 11:24:47 +010029 int clid_len, hw_len, hw_type;
Simon Kelley208b65c2006-08-05 21:41:37 +010030 FILE *leasestream;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010031
Simon Kelley3be34542004-09-11 19:12:13 +010032 leases_left = daemon->dhcp_max;
Simon Kelleyceae00d2012-02-09 21:28:14 +000033
Simon Kelley28866e92011-02-14 20:19:14 +000034 if (option_bool(OPT_LEASE_RO))
Simon Kelley208b65c2006-08-05 21:41:37 +010035 {
36 /* run "<lease_change_script> init" once to get the
37 initial state of the database. If leasefile-ro is
38 set without a script, we just do without any
39 lease database. */
Simon Kelley1f15b812009-10-13 17:49:32 +010040#ifdef HAVE_SCRIPT
41 if (daemon->lease_change_command)
Simon Kelley208b65c2006-08-05 21:41:37 +010042 {
Simon Kelley1f15b812009-10-13 17:49:32 +010043 strcpy(daemon->dhcp_buff, daemon->lease_change_command);
44 strcat(daemon->dhcp_buff, " init");
45 leasestream = popen(daemon->dhcp_buff, "r");
Simon Kelley208b65c2006-08-05 21:41:37 +010046 }
Simon Kelley1f15b812009-10-13 17:49:32 +010047 else
48#endif
49 {
50 file_dirty = dns_dirty = 0;
51 return;
52 }
53
Simon Kelley208b65c2006-08-05 21:41:37 +010054 }
55 else
56 {
57 /* NOTE: need a+ mode to create file if it doesn't exist */
58 leasestream = daemon->lease_stream = fopen(daemon->lease_file, "a+");
59
60 if (!leasestream)
Simon Kelley5aabfc72007-08-29 11:24:47 +010061 die(_("cannot open or create lease file %s: %s"), daemon->lease_file, EC_FILE);
Simon Kelley208b65c2006-08-05 21:41:37 +010062
Simon Kelley7622fc02009-06-04 20:32:05 +010063 /* a+ mode leaves pointer at end. */
Simon Kelley208b65c2006-08-05 21:41:37 +010064 rewind(leasestream);
65 }
Simon Kelley7cebd202006-05-06 14:13:33 +010066
Simon Kelley0a852542005-03-23 20:28:59 +000067 /* client-id max length is 255 which is 255*2 digits + 254 colons
68 borrow DNS packet buffer which is always larger than 1000 bytes */
Simon Kelley208b65c2006-08-05 21:41:37 +010069 if (leasestream)
Simon Kelleyceae00d2012-02-09 21:28:14 +000070 while (fscanf(leasestream, "%255s %255s", daemon->dhcp_buff3, daemon->dhcp_buff2) == 2)
Simon Kelley208b65c2006-08-05 21:41:37 +010071 {
Simon Kelley3d7b5502012-02-10 17:35:37 +000072#ifdef HAVE_DHCP6
Simon Kelleyceae00d2012-02-09 21:28:14 +000073 if (strcmp(daemon->dhcp_buff3, "duid") == 0)
74 {
75 daemon->duid_len = parse_hex(daemon->dhcp_buff2, (unsigned char *)daemon->dhcp_buff2, 130, NULL, NULL);
76 daemon->duid = safe_malloc(daemon->duid_len);
77 memcpy(daemon->duid, daemon->dhcp_buff2, daemon->duid_len);
78 continue;
79 }
Simon Kelley3d7b5502012-02-10 17:35:37 +000080#endif
81
Simon Kelleyceae00d2012-02-09 21:28:14 +000082 ei = atol(daemon->dhcp_buff3);
83
84 if (fscanf(leasestream, " %64s %255s %764s",
85 daemon->namebuff, daemon->dhcp_buff, daemon->packet) != 3)
86 break;
87
88 clid_len = 0;
89 if (strcmp(daemon->packet, "*") != 0)
90 clid_len = parse_hex(daemon->packet, (unsigned char *)daemon->packet, 255, NULL, NULL);
91
92 if (inet_pton(AF_INET, daemon->namebuff, &addr.addr.addr4) &&
93 (lease = lease4_allocate(addr.addr.addr4)))
94 {
95 hw_len = parse_hex(daemon->dhcp_buff2, (unsigned char *)daemon->dhcp_buff2, DHCP_CHADDR_MAX, NULL, &hw_type);
96 /* For backwards compatibility, no explict MAC address type means ether. */
97 if (hw_type == 0 && hw_len != 0)
98 hw_type = ARPHRD_ETHER;
99
Simon Kelley353ae4d2012-03-19 20:07:51 +0000100 lease_set_hwaddr(lease, (unsigned char *)daemon->dhcp_buff2, (unsigned char *)daemon->packet,
Simon Kelleya9ab7322012-04-28 11:29:37 +0100101 hw_len, hw_type, clid_len, now, 0);
Simon Kelleyceae00d2012-02-09 21:28:14 +0000102
103 if (strcmp(daemon->dhcp_buff, "*") != 0)
104 lease_set_hostname(lease, daemon->dhcp_buff, 0, get_domain(lease->addr), NULL);
105 }
Simon Kelleyc72daea2012-01-05 21:33:27 +0000106#ifdef HAVE_DHCP6
Simon Kelleyceae00d2012-02-09 21:28:14 +0000107 else if (inet_pton(AF_INET6, daemon->namebuff, &addr.addr.addr6))
Simon Kelley4cb1b322012-02-06 14:30:41 +0000108 {
109 char *s = daemon->dhcp_buff2;
Simon Kelleyceae00d2012-02-09 21:28:14 +0000110 int lease_type = LEASE_NA;
Simon Kelley89500e32013-09-20 16:29:20 +0100111 int iaid;
Simon Kelleyceae00d2012-02-09 21:28:14 +0000112
Simon Kelley4cb1b322012-02-06 14:30:41 +0000113 if (s[0] == 'T')
114 {
115 lease_type = LEASE_TA;
116 s++;
117 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000118
Simon Kelley89500e32013-09-20 16:29:20 +0100119 iaid = strtoul(s, NULL, 10);
Simon Kelleyceae00d2012-02-09 21:28:14 +0000120
121 if ((lease = lease6_allocate(&addr.addr.addr6, lease_type)))
122 {
Simon Kelley89500e32013-09-20 16:29:20 +0100123 lease_set_hwaddr(lease, NULL, (unsigned char *)daemon->packet, 0, 0, clid_len, now, 0);
124 lease_set_iaid(lease, iaid);
Simon Kelleyceae00d2012-02-09 21:28:14 +0000125 if (strcmp(daemon->dhcp_buff, "*") != 0)
126 lease_set_hostname(lease, daemon->dhcp_buff, 0, get_domain6((struct in6_addr *)lease->hwaddr), NULL);
127 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000128 }
Simon Kelleyc72daea2012-01-05 21:33:27 +0000129#endif
Simon Kelleyc72daea2012-01-05 21:33:27 +0000130 else
Simon Kelleyceae00d2012-02-09 21:28:14 +0000131 break;
Simon Kelleyc72daea2012-01-05 21:33:27 +0000132
Simon Kelleyc72daea2012-01-05 21:33:27 +0000133 if (!lease)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100134 die (_("too many stored leases"), NULL, EC_MISC);
135
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100136#ifdef HAVE_BROKEN_RTC
Simon Kelley208b65c2006-08-05 21:41:37 +0100137 if (ei != 0)
138 lease->expires = (time_t)ei + now;
139 else
140 lease->expires = (time_t)0;
141 lease->length = ei;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100142#else
Simon Kelley208b65c2006-08-05 21:41:37 +0100143 /* strictly time_t is opaque, but this hack should work on all sane systems,
144 even when sizeof(time_t) == 8 */
145 lease->expires = (time_t)ei;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100146#endif
Simon Kelley208b65c2006-08-05 21:41:37 +0100147
Simon Kelley5aabfc72007-08-29 11:24:47 +0100148 /* set these correctly: the "old" events are generated later from
149 the startup synthesised SIGHUP. */
Simon Kelleyceae00d2012-02-09 21:28:14 +0000150 lease->flags &= ~(LEASE_NEW | LEASE_CHANGED);
Simon Kelley208b65c2006-08-05 21:41:37 +0100151 }
152
Simon Kelley1f15b812009-10-13 17:49:32 +0100153#ifdef HAVE_SCRIPT
Simon Kelley208b65c2006-08-05 21:41:37 +0100154 if (!daemon->lease_stream)
155 {
156 int rc = 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000157
Simon Kelley208b65c2006-08-05 21:41:37 +0100158 /* shell returns 127 for "command not found", 126 for bad permissions. */
159 if (!leasestream || (rc = pclose(leasestream)) == -1 || WEXITSTATUS(rc) == 127 || WEXITSTATUS(rc) == 126)
160 {
161 if (WEXITSTATUS(rc) == 127)
162 errno = ENOENT;
163 else if (WEXITSTATUS(rc) == 126)
164 errno = EACCES;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100165 die(_("cannot run lease-init script %s: %s"), daemon->lease_change_command, EC_FILE);
Simon Kelley208b65c2006-08-05 21:41:37 +0100166 }
167
168 if (WEXITSTATUS(rc) != 0)
169 {
170 sprintf(daemon->dhcp_buff, "%d", WEXITSTATUS(rc));
Simon Kelley5aabfc72007-08-29 11:24:47 +0100171 die(_("lease-init script returned exit code %s"), daemon->dhcp_buff, WEXITSTATUS(rc) + EC_INIT_OFFSET);
Simon Kelley208b65c2006-08-05 21:41:37 +0100172 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000173 }
Simon Kelley1f15b812009-10-13 17:49:32 +0100174#endif
Simon Kelley7cebd202006-05-06 14:13:33 +0100175
176 /* Some leases may have expired */
177 file_dirty = 0;
178 lease_prune(NULL, now);
179 dns_dirty = 1;
Simon Kelley44a2a312004-03-10 20:04:35 +0000180}
181
Simon Kelley5aabfc72007-08-29 11:24:47 +0100182void lease_update_from_configs(void)
Simon Kelley44a2a312004-03-10 20:04:35 +0000183{
184 /* changes to the config may change current leases. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000185
Simon Kelley44a2a312004-03-10 20:04:35 +0000186 struct dhcp_lease *lease;
187 struct dhcp_config *config;
Simon Kelleyb8187c82005-11-26 21:46:27 +0000188 char *name;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000189
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000190 for (lease = leases; lease; lease = lease->next)
Simon Kelley89500e32013-09-20 16:29:20 +0100191 if (lease->flags & (LEASE_TA | LEASE_NA))
192 continue;
193 else if ((config = find_config(daemon->dhcp_conf, NULL, lease->clid, lease->clid_len,
194 lease->hwaddr, lease->hwaddr_len, lease->hwaddr_type, NULL)) &&
195 (config->flags & CONFIG_NAME) &&
196 (!(config->flags & CONFIG_ADDR) || config->addr.s_addr == lease->addr.s_addr))
Simon Kelley70c5e3e2012-02-06 22:05:15 +0000197 lease_set_hostname(lease, config->hostname, 1, get_domain(lease->addr), NULL);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100198 else if ((name = host_from_dns(lease->addr)))
Simon Kelley70c5e3e2012-02-06 22:05:15 +0000199 lease_set_hostname(lease, name, 1, get_domain(lease->addr), NULL); /* updates auth flag only */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000200}
Simon Kelley4cb1b322012-02-06 14:30:41 +0000201
Simon Kelley5aabfc72007-08-29 11:24:47 +0100202static void ourprintf(int *errp, char *format, ...)
Simon Kelley7cebd202006-05-06 14:13:33 +0100203{
204 va_list ap;
205
206 va_start(ap, format);
207 if (!(*errp) && vfprintf(daemon->lease_stream, format, ap) < 0)
208 *errp = errno;
209 va_end(ap);
210}
211
Simon Kelley5aabfc72007-08-29 11:24:47 +0100212void lease_update_file(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000213{
214 struct dhcp_lease *lease;
Simon Kelley7cebd202006-05-06 14:13:33 +0100215 time_t next_event;
216 int i, err = 0;
217
Simon Kelley208b65c2006-08-05 21:41:37 +0100218 if (file_dirty != 0 && daemon->lease_stream)
Simon Kelley44a2a312004-03-10 20:04:35 +0000219 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000220 errno = 0;
221 rewind(daemon->lease_stream);
222 if (errno != 0 || ftruncate(fileno(daemon->lease_stream), 0) != 0)
Simon Kelley7cebd202006-05-06 14:13:33 +0100223 err = errno;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000224
225 for (lease = leases; lease; lease = lease->next)
226 {
Simon Kelleyc72daea2012-01-05 21:33:27 +0000227
228#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000229 if (lease->flags & (LEASE_TA | LEASE_NA))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000230 continue;
231#endif
232
Simon Kelley44a2a312004-03-10 20:04:35 +0000233#ifdef HAVE_BROKEN_RTC
Simon Kelley5aabfc72007-08-29 11:24:47 +0100234 ourprintf(&err, "%u ", lease->length);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100235#else
Simon Kelley5aabfc72007-08-29 11:24:47 +0100236 ourprintf(&err, "%lu ", (unsigned long)lease->expires);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100237#endif
Simon Kelleyc72daea2012-01-05 21:33:27 +0000238
Simon Kelley7cebd202006-05-06 14:13:33 +0100239 if (lease->hwaddr_type != ARPHRD_ETHER || lease->hwaddr_len == 0)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100240 ourprintf(&err, "%.2x-", lease->hwaddr_type);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100241 for (i = 0; i < lease->hwaddr_len; i++)
242 {
Simon Kelley5aabfc72007-08-29 11:24:47 +0100243 ourprintf(&err, "%.2x", lease->hwaddr[i]);
Simon Kelley7cebd202006-05-06 14:13:33 +0100244 if (i != lease->hwaddr_len - 1)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100245 ourprintf(&err, ":");
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100246 }
Simon Kelleyc72daea2012-01-05 21:33:27 +0000247
248 inet_ntop(AF_INET, &lease->addr, daemon->addrbuff, ADDRSTRLEN);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100249
Simon Kelleyc72daea2012-01-05 21:33:27 +0000250 ourprintf(&err, " %s ", daemon->addrbuff);
Simon Kelley1f15b812009-10-13 17:49:32 +0100251 ourprintf(&err, "%s ", lease->hostname ? lease->hostname : "*");
252
Simon Kelley0a852542005-03-23 20:28:59 +0000253 if (lease->clid && lease->clid_len != 0)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000254 {
255 for (i = 0; i < lease->clid_len - 1; i++)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100256 ourprintf(&err, "%.2x:", lease->clid[i]);
257 ourprintf(&err, "%.2x\n", lease->clid[i]);
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000258 }
259 else
Simon Kelley5aabfc72007-08-29 11:24:47 +0100260 ourprintf(&err, "*\n");
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000261 }
Simon Kelley7cebd202006-05-06 14:13:33 +0100262
Simon Kelleyc72daea2012-01-05 21:33:27 +0000263#ifdef HAVE_DHCP6
264 if (daemon->duid)
265 {
266 ourprintf(&err, "duid ");
267 for (i = 0; i < daemon->duid_len - 1; i++)
268 ourprintf(&err, "%.2x:", daemon->duid[i]);
269 ourprintf(&err, "%.2x\n", daemon->duid[i]);
270
271 for (lease = leases; lease; lease = lease->next)
272 {
273
Simon Kelley4cb1b322012-02-06 14:30:41 +0000274 if (!(lease->flags & (LEASE_TA | LEASE_NA)))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000275 continue;
276
277#ifdef HAVE_BROKEN_RTC
278 ourprintf(&err, "%u ", lease->length);
279#else
280 ourprintf(&err, "%lu ", (unsigned long)lease->expires);
281#endif
282
Simon Kelley89500e32013-09-20 16:29:20 +0100283 inet_ntop(AF_INET6, &lease->addr6, daemon->addrbuff, ADDRSTRLEN);
Simon Kelleyc72daea2012-01-05 21:33:27 +0000284
Simon Kelley4cb1b322012-02-06 14:30:41 +0000285 ourprintf(&err, "%s%u %s ", (lease->flags & LEASE_TA) ? "T" : "",
Simon Kelley89500e32013-09-20 16:29:20 +0100286 lease->iaid, daemon->addrbuff);
Simon Kelleyc72daea2012-01-05 21:33:27 +0000287 ourprintf(&err, "%s ", lease->hostname ? lease->hostname : "*");
288
289 if (lease->clid && lease->clid_len != 0)
290 {
291 for (i = 0; i < lease->clid_len - 1; i++)
292 ourprintf(&err, "%.2x:", lease->clid[i]);
293 ourprintf(&err, "%.2x\n", lease->clid[i]);
294 }
295 else
296 ourprintf(&err, "*\n");
297 }
298 }
299#endif
300
Simon Kelley7cebd202006-05-06 14:13:33 +0100301 if (fflush(daemon->lease_stream) != 0 ||
302 fsync(fileno(daemon->lease_stream)) < 0)
303 err = errno;
304
305 if (!err)
306 file_dirty = 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000307 }
Simon Kelley7cebd202006-05-06 14:13:33 +0100308
Simon Kelleydd0e0a32014-01-22 11:16:59 +0000309 /* Set alarm for when the first lease expires. */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000310 next_event = 0;
311
312#ifdef HAVE_DHCP6
Simon Kelley353ae4d2012-03-19 20:07:51 +0000313 /* do timed RAs and determine when the next is, also pings to potential SLAAC addresses */
Simon Kelley1f776932012-12-16 19:46:08 +0000314 if (daemon->doing_ra)
Simon Kelley353ae4d2012-03-19 20:07:51 +0000315 {
Simon Kelley919dd7c2012-05-12 15:23:09 +0100316 time_t event;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000317
Simon Kelley919dd7c2012-05-12 15:23:09 +0100318 if ((event = periodic_slaac(now, leases)) != 0)
319 {
320 if (next_event == 0 || difftime(next_event, event) > 0.0)
321 next_event = event;
322 }
Simon Kelley353ae4d2012-03-19 20:07:51 +0000323
Simon Kelley919dd7c2012-05-12 15:23:09 +0100324 if ((event = periodic_ra(now)) != 0)
325 {
326 if (next_event == 0 || difftime(next_event, event) > 0.0)
327 next_event = event;
328 }
Simon Kelley353ae4d2012-03-19 20:07:51 +0000329 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000330#endif
331
332 for (lease = leases; lease; lease = lease->next)
Simon Kelley7cebd202006-05-06 14:13:33 +0100333 if (lease->expires != 0 &&
Simon Kelleydd0e0a32014-01-22 11:16:59 +0000334 (next_event == 0 || difftime(next_event, lease->expires) > 0.0))
335 next_event = lease->expires;
Simon Kelley7cebd202006-05-06 14:13:33 +0100336
337 if (err)
338 {
339 if (next_event == 0 || difftime(next_event, LEASE_RETRY + now) > 0.0)
340 next_event = LEASE_RETRY + now;
341
Simon Kelley7622fc02009-06-04 20:32:05 +0100342 my_syslog(MS_DHCP | LOG_ERR, _("failed to write %s: %s (retry in %us)"),
Simon Kelleyf2621c72007-04-29 19:47:21 +0100343 daemon->lease_file, strerror(err),
344 (unsigned int)difftime(next_event, now));
Simon Kelley7cebd202006-05-06 14:13:33 +0100345 }
346
Simon Kelley353ae4d2012-03-19 20:07:51 +0000347 send_alarm(next_event, now);
Simon Kelley44a2a312004-03-10 20:04:35 +0000348}
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000349
Simon Kelley801ca9a2012-03-06 19:30:17 +0000350
Simon Kelley3f2873d2013-05-14 11:28:47 +0100351static int find_interface_v4(struct in_addr local, int if_index, char *label,
Simon Kelley801ca9a2012-03-06 19:30:17 +0000352 struct in_addr netmask, struct in_addr broadcast, void *vparam)
Simon Kelley44a2a312004-03-10 20:04:35 +0000353{
354 struct dhcp_lease *lease;
355
Simon Kelley3f2873d2013-05-14 11:28:47 +0100356 (void) label;
Simon Kelley801ca9a2012-03-06 19:30:17 +0000357 (void) broadcast;
358 (void) vparam;
359
360 for (lease = leases; lease; lease = lease->next)
361 if (!(lease->flags & (LEASE_TA | LEASE_NA)))
362 if (is_same_net(local, lease->addr, netmask))
Simon Kelley353ae4d2012-03-19 20:07:51 +0000363 lease_set_interface(lease, if_index, *((time_t *)vparam));
Simon Kelley801ca9a2012-03-06 19:30:17 +0000364
365 return 1;
366}
367
368#ifdef HAVE_DHCP6
369static int find_interface_v6(struct in6_addr *local, int prefix,
Simon Kelleybad7b872012-12-20 22:00:39 +0000370 int scope, int if_index, int flags,
Simon Kelley1f776932012-12-16 19:46:08 +0000371 int preferred, int valid, void *vparam)
Simon Kelley801ca9a2012-03-06 19:30:17 +0000372{
373 struct dhcp_lease *lease;
374
Simon Kelley353ae4d2012-03-19 20:07:51 +0000375 (void)scope;
Simon Kelleybad7b872012-12-20 22:00:39 +0000376 (void)flags;
Simon Kelley1f776932012-12-16 19:46:08 +0000377 (void)preferred;
378 (void)valid;
Simon Kelley801ca9a2012-03-06 19:30:17 +0000379
380 for (lease = leases; lease; lease = lease->next)
381 if ((lease->flags & (LEASE_TA | LEASE_NA)))
Simon Kelley89500e32013-09-20 16:29:20 +0100382 if (is_same_net6(local, &lease->addr6, prefix))
Simon Kelley353ae4d2012-03-19 20:07:51 +0000383 lease_set_interface(lease, if_index, *((time_t *)vparam));
Simon Kelley801ca9a2012-03-06 19:30:17 +0000384
385 return 1;
386}
Simon Kelley353ae4d2012-03-19 20:07:51 +0000387
388void lease_ping_reply(struct in6_addr *sender, unsigned char *packet, char *interface)
389{
Simon Kelley5ef33272012-03-30 15:10:28 +0100390 /* We may be doing RA but not DHCPv4, in which case the lease
391 database may not exist and we have nothing to do anyway */
392 if (daemon->dhcp)
393 slaac_ping_reply(sender, packet, interface, leases);
Simon Kelley353ae4d2012-03-19 20:07:51 +0000394}
395
Simon Kelley0c050242012-12-22 22:13:19 +0000396void lease_update_slaac(time_t now)
397{
398 /* Called when we contruct a new RA-names context, to add putative
399 new SLAAC addresses to existing leases. */
400
401 struct dhcp_lease *lease;
402
403 if (daemon->dhcp)
404 for (lease = leases; lease; lease = lease->next)
405 slaac_add_addrs(lease, now, 0);
406}
407
Simon Kelley801ca9a2012-03-06 19:30:17 +0000408#endif
409
410
411/* Find interfaces associated with leases at start-up. This gets updated as
412 we do DHCP transactions, but information about directly-connected subnets
413 is useful from scrips and necessary for determining SLAAC addresses from
414 start-time. */
Simon Kelley8b372702012-03-09 17:45:10 +0000415void lease_find_interfaces(time_t now)
Simon Kelley801ca9a2012-03-06 19:30:17 +0000416{
Simon Kelley353ae4d2012-03-19 20:07:51 +0000417 iface_enumerate(AF_INET, &now, find_interface_v4);
418#ifdef HAVE_DHCP6
419 iface_enumerate(AF_INET6, &now, find_interface_v6);
Simon Kelley3511a922013-11-07 10:28:11 +0000420#endif
421}
Simon Kelley8b372702012-03-09 17:45:10 +0000422
Simon Kelley3511a922013-11-07 10:28:11 +0000423#ifdef HAVE_DHCP6
424void lease_make_duid(time_t now)
425{
Simon Kelley8b372702012-03-09 17:45:10 +0000426 /* If we're not doing DHCPv6, and there are not v6 leases, don't add the DUID to the database */
Simon Kelley3511a922013-11-07 10:28:11 +0000427 if (!daemon->duid && daemon->doing_dhcp6)
Simon Kelley8b372702012-03-09 17:45:10 +0000428 {
429 file_dirty = 1;
430 make_duid(now);
431 }
Simon Kelley801ca9a2012-03-06 19:30:17 +0000432}
Simon Kelley3511a922013-11-07 10:28:11 +0000433#endif
434
Simon Kelley801ca9a2012-03-06 19:30:17 +0000435
436
437
Simon Kelley353ae4d2012-03-19 20:07:51 +0000438void lease_update_dns(int force)
Simon Kelley801ca9a2012-03-06 19:30:17 +0000439{
440 struct dhcp_lease *lease;
441
Simon Kelley353ae4d2012-03-19 20:07:51 +0000442 if (daemon->port != 0 && (dns_dirty || force))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000443 {
Simon Kelley8ff55672012-12-09 21:09:01 +0000444#ifndef HAVE_BROKEN_RTC
Simon Kelleye1ff4192012-12-09 17:08:47 +0000445 /* force transfer to authoritative secondaries */
446 daemon->soa_sn++;
Simon Kelley8ff55672012-12-09 21:09:01 +0000447#endif
Simon Kelleye1ff4192012-12-09 17:08:47 +0000448
Simon Kelley801ca9a2012-03-06 19:30:17 +0000449 cache_unhash_dhcp();
450
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000451 for (lease = leases; lease; lease = lease->next)
452 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000453 int prot = AF_INET;
Simon Kelley801ca9a2012-03-06 19:30:17 +0000454
Simon Kelley4cb1b322012-02-06 14:30:41 +0000455#ifdef HAVE_DHCP6
456 if (lease->flags & (LEASE_TA | LEASE_NA))
457 prot = AF_INET6;
Simon Kelleyf444cdd2012-03-07 10:15:57 +0000458 else if (lease->hostname || lease->fqdn)
Simon Kelley801ca9a2012-03-06 19:30:17 +0000459 {
Simon Kelley353ae4d2012-03-19 20:07:51 +0000460 struct slaac_address *slaac;
461
462 for (slaac = lease->slaac_address; slaac; slaac = slaac->next)
463 if (slaac->backoff == 0)
Simon Kelley801ca9a2012-03-06 19:30:17 +0000464 {
Simon Kelley801ca9a2012-03-06 19:30:17 +0000465 if (lease->fqdn)
Simon Kelley353ae4d2012-03-19 20:07:51 +0000466 cache_add_dhcp_entry(lease->fqdn, AF_INET6, (struct all_addr *)&slaac->addr, lease->expires);
Simon Kelley801ca9a2012-03-06 19:30:17 +0000467 if (!option_bool(OPT_DHCP_FQDN) && lease->hostname)
Simon Kelley353ae4d2012-03-19 20:07:51 +0000468 cache_add_dhcp_entry(lease->hostname, AF_INET6, (struct all_addr *)&slaac->addr, lease->expires);
Simon Kelley801ca9a2012-03-06 19:30:17 +0000469 }
470 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000471
Simon Kelley9009d742008-11-14 20:04:27 +0000472 if (lease->fqdn)
Simon Kelley4cb1b322012-02-06 14:30:41 +0000473 cache_add_dhcp_entry(lease->fqdn, prot,
Simon Kelley89500e32013-09-20 16:29:20 +0100474 prot == AF_INET ? (struct all_addr *)&lease->addr : (struct all_addr *)&lease->addr6,
Simon Kelley4cb1b322012-02-06 14:30:41 +0000475 lease->expires);
Simon Kelley9009d742008-11-14 20:04:27 +0000476
Simon Kelley28866e92011-02-14 20:19:14 +0000477 if (!option_bool(OPT_DHCP_FQDN) && lease->hostname)
Simon Kelley4cb1b322012-02-06 14:30:41 +0000478 cache_add_dhcp_entry(lease->hostname, prot,
Simon Kelley89500e32013-09-20 16:29:20 +0100479 prot == AF_INET ? (struct all_addr *)&lease->addr : (struct all_addr *)&lease->addr6,
Simon Kelley4cb1b322012-02-06 14:30:41 +0000480 lease->expires);
Simon Kelley91543f42013-09-23 12:41:20 +0100481
482#else
483 if (lease->fqdn)
484 cache_add_dhcp_entry(lease->fqdn, prot, (struct all_addr *)&lease->addr, lease->expires);
485
486 if (!option_bool(OPT_DHCP_FQDN) && lease->hostname)
487 cache_add_dhcp_entry(lease->hostname, prot, (struct all_addr *)&lease->addr, lease->expires);
488#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000489 }
490
491 dns_dirty = 0;
492 }
493}
494
495void lease_prune(struct dhcp_lease *target, time_t now)
496{
497 struct dhcp_lease *lease, *tmp, **up;
498
499 for (lease = leases, up = &leases; lease; lease = tmp)
500 {
501 tmp = lease->next;
502 if ((lease->expires != 0 && difftime(now, lease->expires) > 0) || lease == target)
503 {
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100504 file_dirty = 1;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000505 if (lease->hostname)
Simon Kelley7cebd202006-05-06 14:13:33 +0100506 dns_dirty = 1;
507
Simon Kelleyc72daea2012-01-05 21:33:27 +0000508 *up = lease->next; /* unlink */
Simon Kelley7cebd202006-05-06 14:13:33 +0100509
510 /* Put on old_leases list 'till we
511 can run the script */
512 lease->next = old_leases;
513 old_leases = lease;
514
Simon Kelley44a2a312004-03-10 20:04:35 +0000515 leases_left++;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000516 }
517 else
518 up = &lease->next;
519 }
520}
521
522
Simon Kelleycdeda282006-03-16 20:16:06 +0000523struct dhcp_lease *lease_find_by_client(unsigned char *hwaddr, int hw_len, int hw_type,
Simon Kelley0a852542005-03-23 20:28:59 +0000524 unsigned char *clid, int clid_len)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000525{
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000526 struct dhcp_lease *lease;
527
Simon Kelley0a852542005-03-23 20:28:59 +0000528 if (clid)
529 for (lease = leases; lease; lease = lease->next)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000530 {
531#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000532 if (lease->flags & (LEASE_TA | LEASE_NA))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000533 continue;
534#endif
535 if (lease->clid && clid_len == lease->clid_len &&
536 memcmp(clid, lease->clid, clid_len) == 0)
537 return lease;
538 }
Simon Kelley0a852542005-03-23 20:28:59 +0000539
540 for (lease = leases; lease; lease = lease->next)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000541 {
542#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000543 if (lease->flags & (LEASE_TA | LEASE_NA))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000544 continue;
545#endif
546 if ((!lease->clid || !clid) &&
547 hw_len != 0 &&
548 lease->hwaddr_len == hw_len &&
549 lease->hwaddr_type == hw_type &&
550 memcmp(hwaddr, lease->hwaddr, hw_len) == 0)
551 return lease;
552 }
553
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000554 return NULL;
555}
556
557struct dhcp_lease *lease_find_by_addr(struct in_addr addr)
558{
559 struct dhcp_lease *lease;
560
561 for (lease = leases; lease; lease = lease->next)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000562 {
563#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000564 if (lease->flags & (LEASE_TA | LEASE_NA))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000565 continue;
566#endif
567 if (lease->addr.s_addr == addr.s_addr)
568 return lease;
569 }
570
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000571 return NULL;
572}
573
Simon Kelley52b92f42012-01-22 16:05:15 +0000574#ifdef HAVE_DHCP6
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000575/* find address for {CLID, IAID, address} */
Simon Kelley4cb1b322012-02-06 14:30:41 +0000576struct dhcp_lease *lease6_find(unsigned char *clid, int clid_len,
577 int lease_type, int iaid, struct in6_addr *addr)
Simon Kelley52b92f42012-01-22 16:05:15 +0000578{
579 struct dhcp_lease *lease;
580
581 for (lease = leases; lease; lease = lease->next)
582 {
Simon Kelley89500e32013-09-20 16:29:20 +0100583 if (!(lease->flags & lease_type) || lease->iaid != iaid)
Simon Kelley4cb1b322012-02-06 14:30:41 +0000584 continue;
Simon Kelley52b92f42012-01-22 16:05:15 +0000585
Simon Kelley89500e32013-09-20 16:29:20 +0100586 if (!IN6_ARE_ADDR_EQUAL(&lease->addr6, addr))
Simon Kelley4cb1b322012-02-06 14:30:41 +0000587 continue;
588
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000589 if ((clid_len != lease->clid_len ||
Simon Kelley4cb1b322012-02-06 14:30:41 +0000590 memcmp(clid, lease->clid, clid_len) != 0))
591 continue;
592
Simon Kelley8b460612012-09-08 21:47:28 +0100593 return lease;
Simon Kelley52b92f42012-01-22 16:05:15 +0000594 }
595
596 return NULL;
597}
598
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000599/* reset "USED flags */
600void lease6_reset(void)
Simon Kelley8b460612012-09-08 21:47:28 +0100601{
602 struct dhcp_lease *lease;
603
604 for (lease = leases; lease; lease = lease->next)
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000605 lease->flags &= ~LEASE_USED;
606}
607
608/* enumerate all leases belonging to {CLID, IAID} */
609struct dhcp_lease *lease6_find_by_client(struct dhcp_lease *first, int lease_type, unsigned char *clid, int clid_len, int iaid)
610{
611 struct dhcp_lease *lease;
612
613 if (!first)
614 first = leases;
Simon Kelley27cb3142013-04-02 20:06:39 +0100615 else
616 first = first->next;
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000617
618 for (lease = first; lease; lease = lease->next)
Simon Kelley8b460612012-09-08 21:47:28 +0100619 {
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000620 if (lease->flags & LEASE_USED)
621 continue;
622
Simon Kelley89500e32013-09-20 16:29:20 +0100623 if (!(lease->flags & lease_type) || lease->iaid != iaid)
Simon Kelley8b460612012-09-08 21:47:28 +0100624 continue;
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000625
626 if ((clid_len != lease->clid_len ||
627 memcmp(clid, lease->clid, clid_len) != 0))
628 continue;
629
630 return lease;
Simon Kelley8b460612012-09-08 21:47:28 +0100631 }
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000632
633 return NULL;
Simon Kelley8b460612012-09-08 21:47:28 +0100634}
635
Simon Kelley52b92f42012-01-22 16:05:15 +0000636struct dhcp_lease *lease6_find_by_addr(struct in6_addr *net, int prefix, u64 addr)
637{
638 struct dhcp_lease *lease;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000639
Simon Kelley52b92f42012-01-22 16:05:15 +0000640 for (lease = leases; lease; lease = lease->next)
641 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000642 if (!(lease->flags & (LEASE_TA | LEASE_NA)))
Simon Kelley52b92f42012-01-22 16:05:15 +0000643 continue;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000644
Simon Kelley89500e32013-09-20 16:29:20 +0100645 if (is_same_net6(&lease->addr6, net, prefix) &&
646 (prefix == 128 || addr6part(&lease->addr6) == addr))
Simon Kelley52b92f42012-01-22 16:05:15 +0000647 return lease;
648 }
649
650 return NULL;
Simon Kelley07933802012-02-14 20:55:25 +0000651}
652
653/* Find largest assigned address in context */
654u64 lease_find_max_addr6(struct dhcp_context *context)
655{
656 struct dhcp_lease *lease;
657 u64 addr = addr6part(&context->start6);
658
659 if (!(context->flags & (CONTEXT_STATIC | CONTEXT_PROXY)))
660 for (lease = leases; lease; lease = lease->next)
661 {
Simon Kelley07933802012-02-14 20:55:25 +0000662 if (!(lease->flags & (LEASE_TA | LEASE_NA)))
663 continue;
Simon Kelley6caacac2012-02-15 21:58:33 +0000664
Simon Kelley89500e32013-09-20 16:29:20 +0100665 if (is_same_net6(&lease->addr6, &context->start6, 64) &&
666 addr6part(&lease->addr6) > addr6part(&context->start6) &&
667 addr6part(&lease->addr6) <= addr6part(&context->end6) &&
668 addr6part(&lease->addr6) > addr)
669 addr = addr6part(&lease->addr6);
Simon Kelley07933802012-02-14 20:55:25 +0000670 }
671
672 return addr;
673}
674
Simon Kelley52b92f42012-01-22 16:05:15 +0000675#endif
676
Simon Kelley7de060b2011-08-26 17:24:52 +0100677/* Find largest assigned address in context */
678struct in_addr lease_find_max_addr(struct dhcp_context *context)
679{
680 struct dhcp_lease *lease;
681 struct in_addr addr = context->start;
682
683 if (!(context->flags & (CONTEXT_STATIC | CONTEXT_PROXY)))
684 for (lease = leases; lease; lease = lease->next)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000685 {
686#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000687 if (lease->flags & (LEASE_TA | LEASE_NA))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000688 continue;
689#endif
690 if (((unsigned)ntohl(lease->addr.s_addr)) > ((unsigned)ntohl(context->start.s_addr)) &&
691 ((unsigned)ntohl(lease->addr.s_addr)) <= ((unsigned)ntohl(context->end.s_addr)) &&
692 ((unsigned)ntohl(lease->addr.s_addr)) > ((unsigned)ntohl(addr.s_addr)))
693 addr = lease->addr;
694 }
Simon Kelley7de060b2011-08-26 17:24:52 +0100695
696 return addr;
697}
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000698
Simon Kelleyc72daea2012-01-05 21:33:27 +0000699static struct dhcp_lease *lease_allocate(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000700{
701 struct dhcp_lease *lease;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100702 if (!leases_left || !(lease = whine_malloc(sizeof(struct dhcp_lease))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000703 return NULL;
704
Simon Kelley7cebd202006-05-06 14:13:33 +0100705 memset(lease, 0, sizeof(struct dhcp_lease));
Simon Kelley4cb1b322012-02-06 14:30:41 +0000706 lease->flags = LEASE_NEW;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000707 lease->expires = 1;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100708#ifdef HAVE_BROKEN_RTC
709 lease->length = 0xffffffff; /* illegal value */
710#endif
Simon Kelley89500e32013-09-20 16:29:20 +0100711 lease->hwaddr_len = 256; /* illegal value */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000712 lease->next = leases;
713 leases = lease;
714
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100715 file_dirty = 1;
Simon Kelley44a2a312004-03-10 20:04:35 +0000716 leases_left--;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000717
718 return lease;
719}
720
Simon Kelley52b92f42012-01-22 16:05:15 +0000721struct dhcp_lease *lease4_allocate(struct in_addr addr)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000722{
723 struct dhcp_lease *lease = lease_allocate();
Simon Kelley0b0a73c2013-04-11 14:07:02 +0100724 if (lease)
Simon Kelley89500e32013-09-20 16:29:20 +0100725 lease->addr = addr;
726
Simon Kelleyc72daea2012-01-05 21:33:27 +0000727 return lease;
728}
729
730#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +0000731struct dhcp_lease *lease6_allocate(struct in6_addr *addrp, int lease_type)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000732{
733 struct dhcp_lease *lease = lease_allocate();
Simon Kelley0b0a73c2013-04-11 14:07:02 +0100734
735 if (lease)
736 {
Simon Kelley89500e32013-09-20 16:29:20 +0100737 lease->addr6 = *addrp;
Simon Kelley0b0a73c2013-04-11 14:07:02 +0100738 lease->flags |= lease_type;
Simon Kelley89500e32013-09-20 16:29:20 +0100739 lease->iaid = 0;
Simon Kelley0b0a73c2013-04-11 14:07:02 +0100740 }
Simon Kelleyc72daea2012-01-05 21:33:27 +0000741
742 return lease;
743}
744#endif
745
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100746void lease_set_expires(struct dhcp_lease *lease, unsigned int len, time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000747{
Simon Kelleydd0e0a32014-01-22 11:16:59 +0000748 time_t exp;
749
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100750 if (len == 0xffffffff)
751 {
752 exp = 0;
753 len = 0;
754 }
Simon Kelleydd0e0a32014-01-22 11:16:59 +0000755 else
756 {
757 exp = now + (time_t)len;
758 /* Check for 2038 overflow. Make the lease
759 inifinite in that case, as the least disruptive
760 thing we can do. */
761 if (difftime(exp, now) <= 0.0)
762 exp = 0;
763 }
764
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000765 if (exp != lease->expires)
Simon Kelley0a852542005-03-23 20:28:59 +0000766 {
Simon Kelley0a852542005-03-23 20:28:59 +0000767 dns_dirty = 1;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100768 lease->expires = exp;
769#ifndef HAVE_BROKEN_RTC
Simon Kelley4cb1b322012-02-06 14:30:41 +0000770 lease->flags |= LEASE_AUX_CHANGED;
771 file_dirty = 1;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100772#endif
Simon Kelley0a852542005-03-23 20:28:59 +0000773 }
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100774
775#ifdef HAVE_BROKEN_RTC
776 if (len != lease->length)
777 {
778 lease->length = len;
Simon Kelleyb7f40202012-02-29 21:43:37 +0000779 lease->flags |= LEASE_AUX_CHANGED;
780 file_dirty = 1;
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100781 }
782#endif
783}
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000784
Simon Kelley89500e32013-09-20 16:29:20 +0100785#ifdef HAVE_DHCP6
786void lease_set_iaid(struct dhcp_lease *lease, int iaid)
787{
788 if (lease->iaid != iaid)
789 {
790 lease->iaid = iaid;
791 lease->flags |= LEASE_CHANGED;
792 }
793}
794#endif
795
Simon Kelley7cebd202006-05-06 14:13:33 +0100796void lease_set_hwaddr(struct dhcp_lease *lease, unsigned char *hwaddr,
Simon Kelleya9ab7322012-04-28 11:29:37 +0100797 unsigned char *clid, int hw_len, int hw_type, int clid_len,
798 time_t now, int force)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000799{
Simon Kelley353ae4d2012-03-19 20:07:51 +0000800#ifdef HAVE_DHCP6
Simon Kelleya9ab7322012-04-28 11:29:37 +0100801 int change = force;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000802 lease->flags |= LEASE_HAVE_HWADDR;
803#endif
804
Simon Kelleya9ab7322012-04-28 11:29:37 +0100805 (void)force;
Vladislav Grishenko408c3682013-09-24 16:18:49 +0100806 (void)now;
Simon Kelleya9ab7322012-04-28 11:29:37 +0100807
Simon Kelleycdeda282006-03-16 20:16:06 +0000808 if (hw_len != lease->hwaddr_len ||
809 hw_type != lease->hwaddr_type ||
Simon Kelley7cebd202006-05-06 14:13:33 +0100810 (hw_len != 0 && memcmp(lease->hwaddr, hwaddr, hw_len) != 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000811 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000812 if (hw_len != 0)
813 memcpy(lease->hwaddr, hwaddr, hw_len);
Simon Kelleycdeda282006-03-16 20:16:06 +0000814 lease->hwaddr_len = hw_len;
815 lease->hwaddr_type = hw_type;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000816 lease->flags |= LEASE_CHANGED;
817 file_dirty = 1; /* run script on change */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000818 }
Simon Kelley0a852542005-03-23 20:28:59 +0000819
820 /* only update clid when one is available, stops packets
821 without a clid removing the record. Lease init uses
822 clid_len == 0 for no clid. */
823 if (clid_len != 0 && clid)
824 {
825 if (!lease->clid)
826 lease->clid_len = 0;
827
828 if (lease->clid_len != clid_len)
829 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000830 lease->flags |= LEASE_AUX_CHANGED;
831 file_dirty = 1;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100832 free(lease->clid);
833 if (!(lease->clid = whine_malloc(clid_len)))
Simon Kelley7cebd202006-05-06 14:13:33 +0100834 return;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000835#ifdef HAVE_DHCP6
836 change = 1;
837#endif
Simon Kelley0a852542005-03-23 20:28:59 +0000838 }
839 else if (memcmp(lease->clid, clid, clid_len) != 0)
Simon Kelley4cb1b322012-02-06 14:30:41 +0000840 {
841 lease->flags |= LEASE_AUX_CHANGED;
842 file_dirty = 1;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000843#ifdef HAVE_DHCP6
844 change = 1;
845#endif
Simon Kelley4cb1b322012-02-06 14:30:41 +0000846 }
Simon Kelley353ae4d2012-03-19 20:07:51 +0000847
Simon Kelley0a852542005-03-23 20:28:59 +0000848 lease->clid_len = clid_len;
849 memcpy(lease->clid, clid, clid_len);
850 }
Simon Kelley353ae4d2012-03-19 20:07:51 +0000851
852#ifdef HAVE_DHCP6
853 if (change)
Simon Kelleya9ab7322012-04-28 11:29:37 +0100854 slaac_add_addrs(lease, now, force);
Simon Kelley353ae4d2012-03-19 20:07:51 +0000855#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000856}
857
Simon Kelley9009d742008-11-14 20:04:27 +0000858static void kill_name(struct dhcp_lease *lease)
859{
860 /* run script to say we lost our old name */
861
862 /* this shouldn't happen unless updates are very quick and the
863 script very slow, we just avoid a memory leak if it does. */
864 free(lease->old_hostname);
865
866 /* If we know the fqdn, pass that. The helper will derive the
Simon Kelley4cb1b322012-02-06 14:30:41 +0000867 unqualified name from it, free the unqualified name here. */
Simon Kelley9009d742008-11-14 20:04:27 +0000868
869 if (lease->fqdn)
870 {
871 lease->old_hostname = lease->fqdn;
872 free(lease->hostname);
873 }
874 else
875 lease->old_hostname = lease->hostname;
876
877 lease->hostname = lease->fqdn = NULL;
878}
879
Simon Kelley70c5e3e2012-02-06 22:05:15 +0000880void lease_set_hostname(struct dhcp_lease *lease, char *name, int auth, char *domain, char *config_domain)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000881{
882 struct dhcp_lease *lease_tmp;
883 char *new_name = NULL, *new_fqdn = NULL;
Simon Kelley70c5e3e2012-02-06 22:05:15 +0000884
885 if (config_domain && (!domain || !hostname_isequal(domain, config_domain)))
886 my_syslog(MS_DHCP | LOG_WARNING, _("Ignoring domain %s for DHCP host name %s"), config_domain, name);
Simon Kelley9009d742008-11-14 20:04:27 +0000887
Simon Kelleya2226412004-05-13 20:27:08 +0100888 if (lease->hostname && name && hostname_isequal(lease->hostname, name))
Simon Kelleyb8187c82005-11-26 21:46:27 +0000889 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000890 if (auth)
891 lease->flags |= LEASE_AUTH_NAME;
Simon Kelleyb8187c82005-11-26 21:46:27 +0000892 return;
893 }
Simon Kelley7cebd202006-05-06 14:13:33 +0100894
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000895 if (!name && !lease->hostname)
896 return;
897
898 /* If a machine turns up on a new net without dropping the old lease,
899 or two machines claim the same name, then we end up with two interfaces with
Simon Kelleyb8187c82005-11-26 21:46:27 +0000900 the same name. Check for that here and remove the name from the old lease.
Simon Kelley4cb1b322012-02-06 14:30:41 +0000901 Note that IPv6 leases are different. All the leases to the same DUID are
902 allowed the same name.
903
Simon Kelleyb8187c82005-11-26 21:46:27 +0000904 Don't allow a name from the client to override a name from dnsmasq config. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000905
906 if (name)
907 {
Simon Kelley9009d742008-11-14 20:04:27 +0000908 if ((new_name = whine_malloc(strlen(name) + 1)))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000909 {
Simon Kelley9009d742008-11-14 20:04:27 +0000910 strcpy(new_name, name);
Simon Kelley4cb1b322012-02-06 14:30:41 +0000911 if (domain && (new_fqdn = whine_malloc(strlen(new_name) + strlen(domain) + 2)))
Simon Kelley9009d742008-11-14 20:04:27 +0000912 {
913 strcpy(new_fqdn, name);
914 strcat(new_fqdn, ".");
Simon Kelley4cb1b322012-02-06 14:30:41 +0000915 strcat(new_fqdn, domain);
Simon Kelley9009d742008-11-14 20:04:27 +0000916 }
917 }
918
919 /* Depending on mode, we check either unqualified name or FQDN. */
920 for (lease_tmp = leases; lease_tmp; lease_tmp = lease_tmp->next)
921 {
Simon Kelley28866e92011-02-14 20:19:14 +0000922 if (option_bool(OPT_DHCP_FQDN))
Simon Kelley9009d742008-11-14 20:04:27 +0000923 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000924 if (!new_fqdn || !lease_tmp->fqdn || !hostname_isequal(lease_tmp->fqdn, new_fqdn))
Simon Kelley9009d742008-11-14 20:04:27 +0000925 continue;
926 }
927 else
928 {
929 if (!new_name || !lease_tmp->hostname || !hostname_isequal(lease_tmp->hostname, new_name) )
930 continue;
931 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000932
933 if (lease->flags & (LEASE_TA | LEASE_NA))
934 {
935 if (!(lease_tmp->flags & (LEASE_TA | LEASE_NA)))
936 continue;
937
Simon Kelleyceae00d2012-02-09 21:28:14 +0000938 /* another lease for the same DUID is OK for IPv6 */
Simon Kelley4cb1b322012-02-06 14:30:41 +0000939 if (lease->clid_len == lease_tmp->clid_len &&
940 lease->clid && lease_tmp->clid &&
941 memcmp(lease->clid, lease_tmp->clid, lease->clid_len) == 0)
942 continue;
943 }
944 else if (lease_tmp->flags & (LEASE_TA | LEASE_NA))
945 continue;
946
947 if ((lease_tmp->flags & LEASE_AUTH_NAME) && !auth)
Simon Kelley9009d742008-11-14 20:04:27 +0000948 {
949 free(new_name);
950 free(new_fqdn);
951 return;
952 }
953
954 kill_name(lease_tmp);
955 break;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000956 }
957 }
958
959 if (lease->hostname)
Simon Kelley9009d742008-11-14 20:04:27 +0000960 kill_name(lease);
Simon Kelley16972692006-10-16 20:04:18 +0100961
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000962 lease->hostname = new_name;
963 lease->fqdn = new_fqdn;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000964
965 if (auth)
966 lease->flags |= LEASE_AUTH_NAME;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000967
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100968 file_dirty = 1;
Simon Kelley7cebd202006-05-06 14:13:33 +0100969 dns_dirty = 1;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000970 lease->flags |= LEASE_CHANGED; /* run script on change */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000971}
972
Simon Kelley353ae4d2012-03-19 20:07:51 +0000973void lease_set_interface(struct dhcp_lease *lease, int interface, time_t now)
Simon Kelley824af852008-02-12 20:43:05 +0000974{
Vladislav Grishenko408c3682013-09-24 16:18:49 +0100975 (void)now;
976
Simon Kelley824af852008-02-12 20:43:05 +0000977 if (lease->last_interface == interface)
978 return;
979
980 lease->last_interface = interface;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000981 lease->flags |= LEASE_CHANGED;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000982
983#ifdef HAVE_DHCP6
Simon Kelleya9ab7322012-04-28 11:29:37 +0100984 slaac_add_addrs(lease, now, 0);
Simon Kelley353ae4d2012-03-19 20:07:51 +0000985#endif
Simon Kelley824af852008-02-12 20:43:05 +0000986}
987
Simon Kelley5aabfc72007-08-29 11:24:47 +0100988void rerun_scripts(void)
989{
990 struct dhcp_lease *lease;
991
992 for (lease = leases; lease; lease = lease->next)
Simon Kelley4cb1b322012-02-06 14:30:41 +0000993 lease->flags |= LEASE_CHANGED;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100994}
995
Simon Kelley7cebd202006-05-06 14:13:33 +0100996/* deleted leases get transferred to the old_leases list.
997 remove them here, after calling the lease change
Simon Kelley16972692006-10-16 20:04:18 +0100998 script. Also run the lease change script on new/modified leases.
999
1000 Return zero if nothing to do. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001001int do_script_run(time_t now)
Simon Kelley7cebd202006-05-06 14:13:33 +01001002{
1003 struct dhcp_lease *lease;
1004
Vladislav Grishenko408c3682013-09-24 16:18:49 +01001005 (void)now;
1006
Simon Kelley9009d742008-11-14 20:04:27 +00001007#ifdef HAVE_DBUS
1008 /* If we're going to be sending DBus signals, but the connection is not yet up,
1009 delay everything until it is. */
Simon Kelley28866e92011-02-14 20:19:14 +00001010 if (option_bool(OPT_DBUS) && !daemon->dbus)
Simon Kelley9009d742008-11-14 20:04:27 +00001011 return 0;
1012#endif
1013
Simon Kelley16972692006-10-16 20:04:18 +01001014 if (old_leases)
Simon Kelley7cebd202006-05-06 14:13:33 +01001015 {
Simon Kelley7cebd202006-05-06 14:13:33 +01001016 lease = old_leases;
Simon Kelley16972692006-10-16 20:04:18 +01001017
1018 /* If the lease still has an old_hostname, do the "old" action on that first */
1019 if (lease->old_hostname)
1020 {
Simon Kelley1f15b812009-10-13 17:49:32 +01001021#ifdef HAVE_SCRIPT
Simon Kelley5aabfc72007-08-29 11:24:47 +01001022 queue_script(ACTION_OLD_HOSTNAME, lease, lease->old_hostname, now);
1023#endif
Simon Kelley16972692006-10-16 20:04:18 +01001024 free(lease->old_hostname);
1025 lease->old_hostname = NULL;
1026 return 1;
1027 }
1028 else
1029 {
Simon Kelley353ae4d2012-03-19 20:07:51 +00001030#ifdef HAVE_DHCP6
1031 struct slaac_address *slaac, *tmp;
1032 for (slaac = lease->slaac_address; slaac; slaac = tmp)
1033 {
1034 tmp = slaac->next;
1035 free(slaac);
1036 }
1037#endif
Simon Kelley9009d742008-11-14 20:04:27 +00001038 kill_name(lease);
Simon Kelley1f15b812009-10-13 17:49:32 +01001039#ifdef HAVE_SCRIPT
Simon Kelley9009d742008-11-14 20:04:27 +00001040 queue_script(ACTION_DEL, lease, lease->old_hostname, now);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001041#endif
Simon Kelley1f15b812009-10-13 17:49:32 +01001042#ifdef HAVE_DBUS
1043 emit_dbus_signal(ACTION_DEL, lease, lease->old_hostname);
1044#endif
Simon Kelley16972692006-10-16 20:04:18 +01001045 old_leases = lease->next;
1046
Simon Kelley9009d742008-11-14 20:04:27 +00001047 free(lease->old_hostname);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001048 free(lease->clid);
Simon Kelley316e2732010-01-22 20:16:09 +00001049 free(lease->extradata);
Simon Kelley16972692006-10-16 20:04:18 +01001050 free(lease);
1051
1052 return 1;
1053 }
Simon Kelley7cebd202006-05-06 14:13:33 +01001054 }
Simon Kelley16972692006-10-16 20:04:18 +01001055
1056 /* make sure we announce the loss of a hostname before its new location. */
1057 for (lease = leases; lease; lease = lease->next)
1058 if (lease->old_hostname)
1059 {
Simon Kelley1f15b812009-10-13 17:49:32 +01001060#ifdef HAVE_SCRIPT
Simon Kelley5aabfc72007-08-29 11:24:47 +01001061 queue_script(ACTION_OLD_HOSTNAME, lease, lease->old_hostname, now);
1062#endif
Simon Kelley16972692006-10-16 20:04:18 +01001063 free(lease->old_hostname);
1064 lease->old_hostname = NULL;
1065 return 1;
1066 }
1067
Simon Kelley7cebd202006-05-06 14:13:33 +01001068 for (lease = leases; lease; lease = lease->next)
Simon Kelley4cb1b322012-02-06 14:30:41 +00001069 if ((lease->flags & (LEASE_NEW | LEASE_CHANGED)) ||
1070 ((lease->flags & LEASE_AUX_CHANGED) && option_bool(OPT_LEASE_RO)))
Simon Kelley7cebd202006-05-06 14:13:33 +01001071 {
Simon Kelley1f15b812009-10-13 17:49:32 +01001072#ifdef HAVE_SCRIPT
Simon Kelley4cb1b322012-02-06 14:30:41 +00001073 queue_script((lease->flags & LEASE_NEW) ? ACTION_ADD : ACTION_OLD, lease,
Simon Kelley9009d742008-11-14 20:04:27 +00001074 lease->fqdn ? lease->fqdn : lease->hostname, now);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001075#endif
Simon Kelley1f15b812009-10-13 17:49:32 +01001076#ifdef HAVE_DBUS
Simon Kelley4cb1b322012-02-06 14:30:41 +00001077 emit_dbus_signal((lease->flags & LEASE_NEW) ? ACTION_ADD : ACTION_OLD, lease,
Simon Kelley1f15b812009-10-13 17:49:32 +01001078 lease->fqdn ? lease->fqdn : lease->hostname);
1079#endif
Simon Kelley4cb1b322012-02-06 14:30:41 +00001080 lease->flags &= ~(LEASE_NEW | LEASE_CHANGED | LEASE_AUX_CHANGED);
Simon Kelley16972692006-10-16 20:04:18 +01001081
Simon Kelley316e2732010-01-22 20:16:09 +00001082 /* this is used for the "add" call, then junked, since they're not in the database */
1083 free(lease->extradata);
1084 lease->extradata = NULL;
Simon Kelley16972692006-10-16 20:04:18 +01001085
1086 return 1;
Simon Kelley7cebd202006-05-06 14:13:33 +01001087 }
Simon Kelley16972692006-10-16 20:04:18 +01001088
1089 return 0; /* nothing to do */
Simon Kelley7cebd202006-05-06 14:13:33 +01001090}
Simon Kelley7622fc02009-06-04 20:32:05 +01001091
Simon Kelleyceae00d2012-02-09 21:28:14 +00001092#ifdef HAVE_SCRIPT
1093void lease_add_extradata(struct dhcp_lease *lease, unsigned char *data, unsigned int len, int delim)
1094{
1095 unsigned int i;
1096
1097 /* check for embeded NULLs */
1098 for (i = 0; i < len; i++)
1099 if (data[i] == 0)
1100 {
1101 len = i;
1102 break;
1103 }
1104
1105 if ((lease->extradata_size - lease->extradata_len) < (len + 1))
1106 {
1107 size_t newsz = lease->extradata_len + len + 100;
1108 unsigned char *new = whine_malloc(newsz);
1109
1110 if (!new)
1111 return;
1112
1113 if (lease->extradata)
1114 {
1115 memcpy(new, lease->extradata, lease->extradata_len);
1116 free(lease->extradata);
1117 }
1118
1119 lease->extradata = new;
1120 lease->extradata_size = newsz;
1121 }
1122
1123 if (len != 0)
1124 memcpy(lease->extradata + lease->extradata_len, data, len);
1125 lease->extradata[lease->extradata_len + len] = delim;
1126 lease->extradata_len += len + 1;
1127}
1128#endif
1129
Simon Kelley7622fc02009-06-04 20:32:05 +01001130#endif
Simon Kelley7cebd202006-05-06 14:13:33 +01001131
1132
1133
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001134