64edcbb256d855fce2c125a123172c1b0e3a86dc
[oweals/busybox.git] / networking / udhcp / files.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * files.c -- DHCP server file manipulation *
4  * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
5  *
6  * Licensed under GPLv2, see file LICENSE in this tarball for details.
7  */
8
9 #include <netinet/ether.h>
10
11 #include "common.h"
12 #include "dhcpd.h"
13 #include "options.h"
14
15 #if BB_LITTLE_ENDIAN
16 static inline uint64_t hton64(uint64_t v)
17 {
18         return (((uint64_t)htonl(v)) << 32) | htonl(v >> 32);
19 }
20 #else
21 #define hton64(v) (v)
22 #endif
23 #define ntoh64(v) hton64(v)
24
25
26 /* on these functions, make sure your datatype matches */
27 static int read_ip(const char *line, void *arg)
28 {
29         len_and_sockaddr *lsa;
30
31         lsa = host_and_af2sockaddr(line, 0, AF_INET);
32         if (!lsa)
33                 return 0;
34         *(uint32_t*)arg = lsa->u.sin.sin_addr.s_addr;
35         free(lsa);
36         return 1;
37 }
38
39 static int read_mac(const char *line, void *arg)
40 {
41         return NULL == ether_aton_r(line, (struct ether_addr *)arg);
42 }
43
44
45 static int read_str(const char *line, void *arg)
46 {
47         char **dest = arg;
48
49         free(*dest);
50         *dest = xstrdup(line);
51         return 1;
52 }
53
54
55 static int read_u32(const char *line, void *arg)
56 {
57         *(uint32_t*)arg = bb_strtou32(line, NULL, 10);
58         return errno == 0;
59 }
60
61
62 static int read_yn(const char *line, void *arg)
63 {
64         char *dest = arg;
65
66         if (!strcasecmp("yes", line)) {
67                 *dest = 1;
68                 return 1;
69         }
70         if (!strcasecmp("no", line)) {
71                 *dest = 0;
72                 return 1;
73         }
74         return 0;
75 }
76
77
78 /* find option 'code' in opt_list */
79 struct option_set* FAST_FUNC find_option(struct option_set *opt_list, uint8_t code)
80 {
81         while (opt_list && opt_list->data[OPT_CODE] < code)
82                 opt_list = opt_list->next;
83
84         if (opt_list && opt_list->data[OPT_CODE] == code)
85                 return opt_list;
86         return NULL;
87 }
88
89
90 /* add an option to the opt_list */
91 static void attach_option(struct option_set **opt_list,
92                 const struct dhcp_option *option, char *buffer, int length)
93 {
94         struct option_set *existing, *new, **curr;
95
96         existing = find_option(*opt_list, option->code);
97         if (!existing) {
98                 DEBUG("Attaching option %02x to list", option->code);
99
100 #if ENABLE_FEATURE_UDHCP_RFC3397
101                 if ((option->flags & TYPE_MASK) == OPTION_STR1035)
102                         /* reuse buffer and length for RFC1035-formatted string */
103                         buffer = (char *)dname_enc(NULL, 0, buffer, &length);
104 #endif
105
106                 /* make a new option */
107                 new = xmalloc(sizeof(*new));
108                 new->data = xmalloc(length + 2);
109                 new->data[OPT_CODE] = option->code;
110                 new->data[OPT_LEN] = length;
111                 memcpy(new->data + 2, buffer, length);
112
113                 curr = opt_list;
114                 while (*curr && (*curr)->data[OPT_CODE] < option->code)
115                         curr = &(*curr)->next;
116
117                 new->next = *curr;
118                 *curr = new;
119 #if ENABLE_FEATURE_UDHCP_RFC3397
120                 if ((option->flags & TYPE_MASK) == OPTION_STR1035 && buffer != NULL)
121                         free(buffer);
122 #endif
123                 return;
124         }
125
126         /* add it to an existing option */
127         DEBUG("Attaching option %02x to existing member of list", option->code);
128         if (option->flags & OPTION_LIST) {
129 #if ENABLE_FEATURE_UDHCP_RFC3397
130                 if ((option->flags & TYPE_MASK) == OPTION_STR1035)
131                         /* reuse buffer and length for RFC1035-formatted string */
132                         buffer = (char *)dname_enc(existing->data + 2,
133                                         existing->data[OPT_LEN], buffer, &length);
134 #endif
135                 if (existing->data[OPT_LEN] + length <= 255) {
136                         existing->data = xrealloc(existing->data,
137                                         existing->data[OPT_LEN] + length + 3);
138                         if ((option->flags & TYPE_MASK) == OPTION_STRING) {
139                                 /* ' ' can bring us to 256 - bad */
140                                 if (existing->data[OPT_LEN] + length >= 255)
141                                         return;
142                                 /* add space separator between STRING options in a list */
143                                 existing->data[existing->data[OPT_LEN] + 2] = ' ';
144                                 existing->data[OPT_LEN]++;
145                         }
146                         memcpy(existing->data + existing->data[OPT_LEN] + 2, buffer, length);
147                         existing->data[OPT_LEN] += length;
148                 } /* else, ignore the data, we could put this in a second option in the future */
149 #if ENABLE_FEATURE_UDHCP_RFC3397
150                 if ((option->flags & TYPE_MASK) == OPTION_STR1035 && buffer != NULL)
151                         free(buffer);
152 #endif
153         } /* else, ignore the new data */
154 }
155
156
157 /* read a dhcp option and add it to opt_list */
158 static int read_opt(const char *const_line, void *arg)
159 {
160         struct option_set **opt_list = arg;
161         char *opt, *val, *endptr;
162         char *line;
163         const struct dhcp_option *option;
164         int retval, length, idx;
165         char buffer[8] ALIGNED(4);
166         uint16_t *result_u16 = (uint16_t *) buffer;
167         uint32_t *result_u32 = (uint32_t *) buffer;
168
169         /* Cheat, the only const line we'll actually get is "" */
170         line = (char *) const_line;
171         opt = strtok(line, " \t=");
172         if (!opt)
173                 return 0;
174
175         idx = index_in_strings(dhcp_option_strings, opt); /* NB: was strcasecmp! */
176         if (idx < 0)
177                 return 0;
178         option = &dhcp_options[idx];
179
180         retval = 0;
181         do {
182                 val = strtok(NULL, ", \t");
183                 if (!val) break;
184                 length = dhcp_option_lengths[option->flags & TYPE_MASK];
185                 retval = 0;
186                 opt = buffer; /* new meaning for variable opt */
187                 switch (option->flags & TYPE_MASK) {
188                 case OPTION_IP:
189                         retval = read_ip(val, buffer);
190                         break;
191                 case OPTION_IP_PAIR:
192                         retval = read_ip(val, buffer);
193                         val = strtok(NULL, ", \t/-");
194                         if (!val)
195                                 retval = 0;
196                         if (retval)
197                                 retval = read_ip(val, buffer + 4);
198                         break;
199                 case OPTION_STRING:
200 #if ENABLE_FEATURE_UDHCP_RFC3397
201                 case OPTION_STR1035:
202 #endif
203                         length = strlen(val);
204                         if (length > 0) {
205                                 if (length > 254) length = 254;
206                                 opt = val;
207                                 retval = 1;
208                         }
209                         break;
210                 case OPTION_BOOLEAN:
211                         retval = read_yn(val, buffer);
212                         break;
213                 case OPTION_U8:
214                         buffer[0] = strtoul(val, &endptr, 0);
215                         retval = (endptr[0] == '\0');
216                         break;
217                 /* htonX are macros in older libc's, using temp var
218                  * in code below for safety */
219                 /* TODO: use bb_strtoX? */
220                 case OPTION_U16: {
221                         unsigned long tmp = strtoul(val, &endptr, 0);
222                         *result_u16 = htons(tmp);
223                         retval = (endptr[0] == '\0' /*&& tmp < 0x10000*/);
224                         break;
225                 }
226                 case OPTION_S16: {
227                         long tmp = strtol(val, &endptr, 0);
228                         *result_u16 = htons(tmp);
229                         retval = (endptr[0] == '\0');
230                         break;
231                 }
232                 case OPTION_U32: {
233                         unsigned long tmp = strtoul(val, &endptr, 0);
234                         *result_u32 = htonl(tmp);
235                         retval = (endptr[0] == '\0');
236                         break;
237                 }
238                 case OPTION_S32: {
239                         long tmp = strtol(val, &endptr, 0);
240                         *result_u32 = htonl(tmp);
241                         retval = (endptr[0] == '\0');
242                         break;
243                 }
244                 default:
245                         break;
246                 }
247                 if (retval)
248                         attach_option(opt_list, option, opt, length);
249         } while (retval && option->flags & OPTION_LIST);
250         return retval;
251 }
252
253 static int read_staticlease(const char *const_line, void *arg)
254 {
255         char *line;
256         char *mac_string;
257         char *ip_string;
258         struct ether_addr mac_bytes;
259         uint32_t ip;
260
261         /* Read mac */
262         line = (char *) const_line;
263         mac_string = strtok_r(line, " \t", &line);
264         read_mac(mac_string, &mac_bytes);
265
266         /* Read ip */
267         ip_string = strtok_r(NULL, " \t", &line);
268         read_ip(ip_string, &ip);
269
270         addStaticLease(arg, (uint8_t*) &mac_bytes, ip);
271
272         if (ENABLE_UDHCP_DEBUG) printStaticLeases(arg);
273
274         return 1;
275 }
276
277
278 struct config_keyword {
279         const char *keyword;
280         int (*handler)(const char *line, void *var);
281         void *var;
282         const char *def;
283 };
284
285 static const struct config_keyword keywords[] = {
286         /* keyword       handler   variable address               default */
287         {"start",        read_ip,  &(server_config.start_ip),     "192.168.0.20"},
288         {"end",          read_ip,  &(server_config.end_ip),       "192.168.0.254"},
289         {"interface",    read_str, &(server_config.interface),    "eth0"},
290         /* Avoid "max_leases value not sane" warning by setting default
291          * to default_end_ip - default_start_ip + 1: */
292         {"max_leases",   read_u32, &(server_config.max_leases),   "235"},
293 //      {"remaining",    read_yn,  &(server_config.remaining),    "yes"},
294         {"auto_time",    read_u32, &(server_config.auto_time),    "7200"},
295         {"decline_time", read_u32, &(server_config.decline_time), "3600"},
296         {"conflict_time",read_u32, &(server_config.conflict_time),"3600"},
297         {"offer_time",   read_u32, &(server_config.offer_time),   "60"},
298         {"min_lease",    read_u32, &(server_config.min_lease),    "60"},
299         {"lease_file",   read_str, &(server_config.lease_file),   LEASES_FILE},
300         {"pidfile",      read_str, &(server_config.pidfile),      "/var/run/udhcpd.pid"},
301         {"siaddr",       read_ip,  &(server_config.siaddr),       "0.0.0.0"},
302         /* keywords with no defaults must be last! */
303         {"option",       read_opt, &(server_config.options),      ""},
304         {"opt",          read_opt, &(server_config.options),      ""},
305         {"notify_file",  read_str, &(server_config.notify_file),  ""},
306         {"sname",        read_str, &(server_config.sname),        ""},
307         {"boot_file",    read_str, &(server_config.boot_file),    ""},
308         {"static_lease", read_staticlease, &(server_config.static_leases), ""},
309 };
310 enum { KWS_WITH_DEFAULTS = ARRAY_SIZE(keywords) - 6 };
311
312 void FAST_FUNC read_config(const char *file)
313 {
314         parser_t *parser;
315         const struct config_keyword *k;
316         unsigned i;
317         char *token[2];
318
319         for (i = 0; i < KWS_WITH_DEFAULTS; i++)
320                 keywords[i].handler(keywords[i].def, keywords[i].var);
321
322         parser = config_open(file);
323         while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL)) {
324                 for (k = keywords, i = 0; i < ARRAY_SIZE(keywords); k++, i++) {
325                         if (!strcasecmp(token[0], k->keyword)) {
326                                 if (!k->handler(token[1], k->var)) {
327                                         bb_error_msg("can't parse line %u in %s",
328                                                         parser->lineno, file);
329                                         /* reset back to the default value */
330                                         k->handler(k->def, k->var);
331                                 }
332                                 break;
333                         }
334                 }
335         }
336         config_close(parser);
337
338         server_config.start_ip = ntohl(server_config.start_ip);
339         server_config.end_ip = ntohl(server_config.end_ip);
340 }
341
342
343 void FAST_FUNC write_leases(void)
344 {
345         int fd;
346         unsigned i;
347         leasetime_t curr;
348         int64_t written_at;
349
350         fd = open_or_warn(server_config.lease_file, O_WRONLY|O_CREAT|O_TRUNC);
351         if (fd < 0)
352                 return;
353
354         curr = written_at = time(NULL);
355
356         written_at = hton64(written_at);
357         full_write(fd, &written_at, sizeof(written_at));
358
359         for (i = 0; i < server_config.max_leases; i++) {
360                 leasetime_t tmp_time;
361
362                 if (leases[i].yiaddr == 0)
363                         continue;
364
365                 /* screw with the time in the struct, for easier writing */
366                 tmp_time = leases[i].expires;
367
368                 leases[i].expires -= curr;
369                 if ((signed_leasetime_t) leases[i].expires < 0)
370                         leases[i].expires = 0;
371                 leases[i].expires = htonl(leases[i].expires);
372
373                 /* No error check. If the file gets truncated,
374                  * we lose some leases on restart. Oh well. */
375                 full_write(fd, &leases[i], sizeof(leases[i]));
376
377                 /* then restore it when done */
378                 leases[i].expires = tmp_time;
379         }
380         close(fd);
381
382         if (server_config.notify_file) {
383 // TODO: vfork-based child creation
384                 char *cmd = xasprintf("%s %s", server_config.notify_file, server_config.lease_file);
385                 system(cmd);
386                 free(cmd);
387         }
388 }
389
390
391 void FAST_FUNC read_leases(const char *file)
392 {
393         int fd;
394         unsigned i;
395         struct dhcpOfferedAddr lease;
396         int64_t written_at, curr;
397
398         fd = open_or_warn(file, O_RDONLY);
399         if (fd < 0)
400                 return;
401
402         if (full_read(fd, &written_at, sizeof(written_at)) != sizeof(written_at))
403                 goto ret;
404         written_at = ntoh64(written_at);
405         curr = time(NULL);
406         if (curr < written_at)
407                 written_at = curr; /* lease file from future! :) */
408
409         i = 0;
410         while (i < server_config.max_leases
411          && full_read(fd, &lease, sizeof(lease)) == sizeof(lease)
412         ) {
413                 /* ADDME: what if it matches some static lease? */
414                 uint32_t y = ntohl(lease.yiaddr);
415                 if (y >= server_config.start_ip && y <= server_config.end_ip) {
416                         int64_t expires = ntohl(lease.expires) + written_at - curr;
417                         if (expires <= 0)
418                                 continue;
419                         /* NB: add_lease takes "relative time", IOW,
420                          * lease duration, not lease deadline. */
421                         if (!(add_lease(lease.chaddr, lease.yiaddr, expires))) {
422                                 bb_error_msg("too many leases while loading %s", file);
423                                 break;
424                         }
425                         i++;
426                 }
427         }
428         DEBUG("Read %d leases", i);
429  ret:
430         close(fd);
431 }