blob: 8ed4855580299b0a1d6d16d21781340e461f398e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/*
3 * files.c -- DHCP server file manipulation *
4 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
5 */
6
Mike Frysinger7031f622006-05-08 03:20:50 +00007#include <netinet/ether.h>
Mike Frysinger7031f622006-05-08 03:20:50 +00008
Denis Vlasenko5a3395b2006-11-18 19:51:32 +00009#include "common.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000010#include "dhcpd.h"
11#include "options.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000012
Mike Frysinger7031f622006-05-08 03:20:50 +000013
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000014/* on these functions, make sure your datatype matches */
Mike Frysinger7031f622006-05-08 03:20:50 +000015static int read_ip(const char *line, void *arg)
16{
Denis Vlasenkoe9913032007-02-04 02:41:57 +000017 len_and_sockaddr *lsa;
Mike Frysinger7031f622006-05-08 03:20:50 +000018
Denis Vlasenkoe9913032007-02-04 02:41:57 +000019 lsa = host_and_af2sockaddr(line, 0, AF_INET);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000020 if (!lsa)
21 return 0;
22 *(uint32_t*)arg = lsa->sin.sin_addr.s_addr;
23 free(lsa);
24 return 1;
Mike Frysinger7031f622006-05-08 03:20:50 +000025}
26
27static int read_mac(const char *line, void *arg)
28{
29 uint8_t *mac_bytes = arg;
30 struct ether_addr *temp_ether_addr;
Mike Frysinger7031f622006-05-08 03:20:50 +000031
32 temp_ether_addr = ether_aton(line);
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000033 if (temp_ether_addr == NULL)
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000034 return 0;
35 memcpy(mac_bytes, temp_ether_addr, 6);
36 return 1;
Mike Frysinger7031f622006-05-08 03:20:50 +000037}
38
39
40static int read_str(const char *line, void *arg)
41{
42 char **dest = arg;
43
44 free(*dest);
Denis Vlasenko4ebaf102007-01-19 21:33:19 +000045 *dest = xstrdup(line);
Mike Frysinger7031f622006-05-08 03:20:50 +000046 return 1;
47}
48
49
50static int read_u32(const char *line, void *arg)
51{
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000052 *(uint32_t*)arg = bb_strtou32(line, NULL, 10);
Denis Vlasenkod686a042006-11-27 14:43:21 +000053 return errno == 0;
Mike Frysinger7031f622006-05-08 03:20:50 +000054}
55
56
57static int read_yn(const char *line, void *arg)
58{
59 char *dest = arg;
Mike Frysinger7031f622006-05-08 03:20:50 +000060
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000061 if (!strcasecmp("yes", line)) {
Mike Frysinger7031f622006-05-08 03:20:50 +000062 *dest = 1;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000063 return 1;
64 }
65 if (!strcasecmp("no", line)) {
Mike Frysinger7031f622006-05-08 03:20:50 +000066 *dest = 0;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000067 return 1;
68 }
69 return 0;
Mike Frysinger7031f622006-05-08 03:20:50 +000070}
71
72
73/* find option 'code' in opt_list */
74struct option_set *find_option(struct option_set *opt_list, char code)
75{
76 while (opt_list && opt_list->data[OPT_CODE] < code)
77 opt_list = opt_list->next;
78
Denis Vlasenkoc82b5102007-07-01 17:05:57 +000079 if (opt_list && opt_list->data[OPT_CODE] == code)
80 return opt_list;
81 return NULL;
Mike Frysinger7031f622006-05-08 03:20:50 +000082}
83
84
85/* add an option to the opt_list */
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +000086static void attach_option(struct option_set **opt_list,
87 const struct dhcp_option *option, char *buffer, int length)
Mike Frysinger7031f622006-05-08 03:20:50 +000088{
89 struct option_set *existing, *new, **curr;
90
Denis Vlasenkod686a042006-11-27 14:43:21 +000091 existing = find_option(*opt_list, option->code);
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +000092 if (!existing) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000093 DEBUG("Attaching option %s to list", option->name);
Mike Frysinger7031f622006-05-08 03:20:50 +000094
Denis Vlasenko50664732007-02-27 21:15:08 +000095#if ENABLE_FEATURE_RFC3397
96 if ((option->flags & TYPE_MASK) == OPTION_STR1035)
97 /* reuse buffer and length for RFC1035-formatted string */
98 buffer = dname_enc(NULL, 0, buffer, &length);
99#endif
100
Mike Frysinger7031f622006-05-08 03:20:50 +0000101 /* make a new option */
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000102 new = xmalloc(sizeof(*new));
Mike Frysinger7031f622006-05-08 03:20:50 +0000103 new->data = xmalloc(length + 2);
104 new->data[OPT_CODE] = option->code;
105 new->data[OPT_LEN] = length;
106 memcpy(new->data + 2, buffer, length);
107
108 curr = opt_list;
109 while (*curr && (*curr)->data[OPT_CODE] < option->code)
110 curr = &(*curr)->next;
111
112 new->next = *curr;
113 *curr = new;
Denis Vlasenko50664732007-02-27 21:15:08 +0000114#if ENABLE_FEATURE_RFC3397
115 if ((option->flags & TYPE_MASK) == OPTION_STR1035 && buffer != NULL)
116 free(buffer);
117#endif
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +0000118 return;
Mike Frysinger7031f622006-05-08 03:20:50 +0000119 }
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +0000120
121 /* add it to an existing option */
122 DEBUG("Attaching option %s to existing member of list", option->name);
123 if (option->flags & OPTION_LIST) {
Denis Vlasenko50664732007-02-27 21:15:08 +0000124#if ENABLE_FEATURE_RFC3397
125 if ((option->flags & TYPE_MASK) == OPTION_STR1035)
126 /* reuse buffer and length for RFC1035-formatted string */
127 buffer = dname_enc(existing->data + 2,
128 existing->data[OPT_LEN], buffer, &length);
129#endif
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +0000130 if (existing->data[OPT_LEN] + length <= 255) {
131 existing->data = xrealloc(existing->data,
132 existing->data[OPT_LEN] + length + 3);
133 if ((option->flags & TYPE_MASK) == OPTION_STRING) {
Denis Vlasenkoe129f432007-02-02 01:57:24 +0000134 /* ' ' can bring us to 256 - bad */
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +0000135 if (existing->data[OPT_LEN] + length >= 255)
136 return;
137 /* add space separator between STRING options in a list */
138 existing->data[existing->data[OPT_LEN] + 2] = ' ';
139 existing->data[OPT_LEN]++;
140 }
141 memcpy(existing->data + existing->data[OPT_LEN] + 2, buffer, length);
142 existing->data[OPT_LEN] += length;
143 } /* else, ignore the data, we could put this in a second option in the future */
Denis Vlasenko50664732007-02-27 21:15:08 +0000144#if ENABLE_FEATURE_RFC3397
145 if ((option->flags & TYPE_MASK) == OPTION_STR1035 && buffer != NULL)
146 free(buffer);
147#endif
Denis Vlasenkoc4d606e2007-02-02 01:16:08 +0000148 } /* else, ignore the new data */
Mike Frysinger7031f622006-05-08 03:20:50 +0000149}
150
151
152/* read a dhcp option and add it to opt_list */
153static int read_opt(const char *const_line, void *arg)
154{
155 struct option_set **opt_list = arg;
156 char *opt, *val, *endptr;
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +0000157 const struct dhcp_option *option;
Mike Frysinger7031f622006-05-08 03:20:50 +0000158 int retval = 0, length;
159 char buffer[8];
160 char *line;
161 uint16_t *result_u16 = (uint16_t *) buffer;
162 uint32_t *result_u32 = (uint32_t *) buffer;
163
164 /* Cheat, the only const line we'll actually get is "" */
165 line = (char *) const_line;
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +0000166 opt = strtok(line, " \t=");
167 if (!opt) return 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000168
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +0000169 option = dhcp_options;
170 while (1) {
171 if (!option->code)
172 return 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000173 if (!strcasecmp(option->name, opt))
174 break;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000175 option++;
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +0000176 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000177
178 do {
Denis Vlasenkoc90c3f32006-11-23 12:57:49 +0000179 val = strtok(NULL, ", \t");
180 if (!val) break;
Mike Frysinger7031f622006-05-08 03:20:50 +0000181 length = option_lengths[option->flags & TYPE_MASK];
182 retval = 0;
183 opt = buffer; /* new meaning for variable opt */
184 switch (option->flags & TYPE_MASK) {
185 case OPTION_IP:
186 retval = read_ip(val, buffer);
187 break;
188 case OPTION_IP_PAIR:
189 retval = read_ip(val, buffer);
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000190 val = strtok(NULL, ", \t/-");
191 if (!val)
192 retval = 0;
193 if (retval)
194 retval = read_ip(val, buffer + 4);
Mike Frysinger7031f622006-05-08 03:20:50 +0000195 break;
196 case OPTION_STRING:
Denis Vlasenko50664732007-02-27 21:15:08 +0000197#if ENABLE_FEATURE_RFC3397
198 case OPTION_STR1035:
199#endif
Mike Frysinger7031f622006-05-08 03:20:50 +0000200 length = strlen(val);
201 if (length > 0) {
202 if (length > 254) length = 254;
203 opt = val;
204 retval = 1;
205 }
206 break;
207 case OPTION_BOOLEAN:
208 retval = read_yn(val, buffer);
209 break;
210 case OPTION_U8:
211 buffer[0] = strtoul(val, &endptr, 0);
212 retval = (endptr[0] == '\0');
213 break;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000214 /* htonX are macros in older libc's, using temp var
215 * in code below for safety */
216 /* TODO: use bb_strtoX? */
217 case OPTION_U16: {
218 unsigned long tmp = strtoul(val, &endptr, 0);
219 *result_u16 = htons(tmp);
220 retval = (endptr[0] == '\0' /*&& tmp < 0x10000*/);
221 break;
222 }
223 case OPTION_S16: {
224 long tmp = strtol(val, &endptr, 0);
225 *result_u16 = htons(tmp);
Mike Frysinger7031f622006-05-08 03:20:50 +0000226 retval = (endptr[0] == '\0');
227 break;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000228 }
229 case OPTION_U32: {
230 unsigned long tmp = strtoul(val, &endptr, 0);
231 *result_u32 = htonl(tmp);
Mike Frysinger7031f622006-05-08 03:20:50 +0000232 retval = (endptr[0] == '\0');
233 break;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000234 }
235 case OPTION_S32: {
236 long tmp = strtol(val, &endptr, 0);
237 *result_u32 = htonl(tmp);
Mike Frysinger7031f622006-05-08 03:20:50 +0000238 retval = (endptr[0] == '\0');
239 break;
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000240 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000241 default:
242 break;
243 }
244 if (retval)
245 attach_option(opt_list, option, opt, length);
246 } while (retval && option->flags & OPTION_LIST);
247 return retval;
248}
249
250static int read_staticlease(const char *const_line, void *arg)
251{
Mike Frysinger7031f622006-05-08 03:20:50 +0000252 char *line;
253 char *mac_string;
254 char *ip_string;
255 uint8_t *mac_bytes;
256 uint32_t *ip;
257
Mike Frysinger7031f622006-05-08 03:20:50 +0000258 /* Allocate memory for addresses */
259 mac_bytes = xmalloc(sizeof(unsigned char) * 8);
260 ip = xmalloc(sizeof(uint32_t));
261
262 /* Read mac */
263 line = (char *) const_line;
264 mac_string = strtok(line, " \t");
265 read_mac(mac_string, mac_bytes);
266
267 /* Read ip */
268 ip_string = strtok(NULL, " \t");
269 read_ip(ip_string, ip);
270
271 addStaticLease(arg, mac_bytes, ip);
272
Rob Landley3f785612006-05-28 01:06:36 +0000273 if (ENABLE_FEATURE_UDHCP_DEBUG) printStaticLeases(arg);
Mike Frysinger7031f622006-05-08 03:20:50 +0000274
275 return 1;
Mike Frysinger7031f622006-05-08 03:20:50 +0000276}
277
278
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000279struct config_keyword {
280 const char *keyword;
281 int (*handler)(const char *line, void *var);
282 void *var;
283 const char *def;
Mike Frysinger7031f622006-05-08 03:20:50 +0000284};
285
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000286static const struct config_keyword keywords[] = {
287 /* keyword handler variable address default */
288 {"start", read_ip, &(server_config.start_ip), "192.168.0.20"},
289 {"end", read_ip, &(server_config.end_ip), "192.168.0.254"},
290 {"interface", read_str, &(server_config.interface), "eth0"},
291 {"option", read_opt, &(server_config.options), ""},
292 {"opt", read_opt, &(server_config.options), ""},
293 /* Avoid "max_leases value not sane" warning by setting default
294 * to default_end_ip - default_start_ip + 1: */
295 {"max_leases", read_u32, &(server_config.max_leases), "235"},
296 {"remaining", read_yn, &(server_config.remaining), "yes"},
297 {"auto_time", read_u32, &(server_config.auto_time), "7200"},
298 {"decline_time", read_u32, &(server_config.decline_time), "3600"},
299 {"conflict_time",read_u32, &(server_config.conflict_time),"3600"},
300 {"offer_time", read_u32, &(server_config.offer_time), "60"},
301 {"min_lease", read_u32, &(server_config.min_lease), "60"},
302 {"lease_file", read_str, &(server_config.lease_file), LEASES_FILE},
303 {"pidfile", read_str, &(server_config.pidfile), "/var/run/udhcpd.pid"},
304 {"notify_file", read_str, &(server_config.notify_file), ""},
305 {"siaddr", read_ip, &(server_config.siaddr), "0.0.0.0"},
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 /* ADDME: static lease */
310};
311
312
313/*
314 * Domain names may have 254 chars, and string options can be 254
315 * chars long. However, 80 bytes will be enough for most, and won't
316 * hog up memory. If you have a special application, change it
317 */
318#define READ_CONFIG_BUF_SIZE 80
Mike Frysinger7031f622006-05-08 03:20:50 +0000319
320int read_config(const char *file)
321{
322 FILE *in;
323 char buffer[READ_CONFIG_BUF_SIZE], *token, *line;
Mike Frysinger7031f622006-05-08 03:20:50 +0000324 int i, lm = 0;
325
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000326 for (i = 0; i < ARRAY_SIZE(keywords); i++)
Mike Frysinger7031f622006-05-08 03:20:50 +0000327 if (keywords[i].def[0])
328 keywords[i].handler(keywords[i].def, keywords[i].var);
329
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000330 in = fopen_or_warn(file, "r");
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000331 if (!in) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000332 return 0;
333 }
334
335 while (fgets(buffer, READ_CONFIG_BUF_SIZE, in)) {
Rob Landley3f785612006-05-28 01:06:36 +0000336 char debug_orig[READ_CONFIG_BUF_SIZE];
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000337 char *p;
Rob Landley3f785612006-05-28 01:06:36 +0000338
Mike Frysinger7031f622006-05-08 03:20:50 +0000339 lm++;
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000340 p = strchr(buffer, '\n');
341 if (p) *p = '\0';
Rob Landley3f785612006-05-28 01:06:36 +0000342 if (ENABLE_FEATURE_UDHCP_DEBUG) strcpy(debug_orig, buffer);
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000343 p = strchr(buffer, '#');
344 if (p) *p = '\0';
Mike Frysinger7031f622006-05-08 03:20:50 +0000345
346 if (!(token = strtok(buffer, " \t"))) continue;
347 if (!(line = strtok(NULL, ""))) continue;
348
349 /* eat leading whitespace */
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000350 line = skip_whitespace(line);
Mike Frysinger7031f622006-05-08 03:20:50 +0000351 /* eat trailing whitespace */
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000352 i = strlen(line) - 1;
353 while (i >= 0 && isspace(line[i]))
354 line[i--] = '\0';
Mike Frysinger7031f622006-05-08 03:20:50 +0000355
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000356 for (i = 0; i < ARRAY_SIZE(keywords); i++)
Mike Frysinger7031f622006-05-08 03:20:50 +0000357 if (!strcasecmp(token, keywords[i].keyword))
358 if (!keywords[i].handler(line, keywords[i].var)) {
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000359 bb_error_msg("cannot parse line %d of %s", lm, file);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000360 if (ENABLE_FEATURE_UDHCP_DEBUG)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000361 bb_error_msg("cannot parse '%s'", debug_orig);
Mike Frysinger7031f622006-05-08 03:20:50 +0000362 /* reset back to the default value */
363 keywords[i].handler(keywords[i].def, keywords[i].var);
364 }
365 }
366 fclose(in);
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000367
368 server_config.start_ip = ntohl(server_config.start_ip);
369 server_config.end_ip = ntohl(server_config.end_ip);
370
Mike Frysinger7031f622006-05-08 03:20:50 +0000371 return 1;
372}
373
374
375void write_leases(void)
376{
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000377 int fp;
378 unsigned i;
Mike Frysinger7031f622006-05-08 03:20:50 +0000379 time_t curr = time(0);
380 unsigned long tmp_time;
381
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000382 fp = open3_or_warn(server_config.lease_file, O_WRONLY|O_CREAT|O_TRUNC, 0666);
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000383 if (fp < 0) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000384 return;
385 }
386
387 for (i = 0; i < server_config.max_leases; i++) {
388 if (leases[i].yiaddr != 0) {
389
390 /* screw with the time in the struct, for easier writing */
391 tmp_time = leases[i].expires;
392
393 if (server_config.remaining) {
394 if (lease_expired(&(leases[i])))
395 leases[i].expires = 0;
396 else leases[i].expires -= curr;
397 } /* else stick with the time we got */
398 leases[i].expires = htonl(leases[i].expires);
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000399 // FIXME: error check??
400 full_write(fp, &leases[i], sizeof(leases[i]));
Mike Frysinger7031f622006-05-08 03:20:50 +0000401
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000402 /* then restore it when done */
Mike Frysinger7031f622006-05-08 03:20:50 +0000403 leases[i].expires = tmp_time;
404 }
405 }
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000406 close(fp);
Mike Frysinger7031f622006-05-08 03:20:50 +0000407
408 if (server_config.notify_file) {
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000409 char *cmd = xasprintf("%s %s", server_config.notify_file, server_config.lease_file);
410 system(cmd);
411 free(cmd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000412 }
413}
414
415
416void read_leases(const char *file)
417{
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000418 int fp;
Mike Frysinger7031f622006-05-08 03:20:50 +0000419 unsigned int i = 0;
420 struct dhcpOfferedAddr lease;
421
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000422 fp = open_or_warn(file, O_RDONLY);
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000423 if (fp < 0) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000424 return;
425 }
426
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000427 while (i < server_config.max_leases
428 && full_read(fp, &lease, sizeof(lease)) == sizeof(lease)
429 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000430 /* ADDME: is it a static lease */
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000431 uint32_t y = ntohl(lease.yiaddr);
432 if (y >= server_config.start_ip && y <= server_config.end_ip) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000433 lease.expires = ntohl(lease.expires);
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000434 if (!server_config.remaining)
435 lease.expires -= time(0);
Mike Frysinger7031f622006-05-08 03:20:50 +0000436 if (!(add_lease(lease.chaddr, lease.yiaddr, lease.expires))) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000437 bb_error_msg("too many leases while loading %s", file);
Mike Frysinger7031f622006-05-08 03:20:50 +0000438 break;
439 }
440 i++;
441 }
442 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000443 DEBUG("Read %d leases", i);
Denis Vlasenko61126ab2006-11-18 22:03:26 +0000444 close(fp);
Mike Frysinger7031f622006-05-08 03:20:50 +0000445}