blob: e2002460d0a845d933bf69b4634ec31f09d85315 [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001/*
2 * files.c -- DHCP server file manipulation *
3 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
4 */
5
Russ Dill61fb4892002-10-14 21:41:28 +00006#include <sys/socket.h>
7#include <arpa/inet.h>
8#include <string.h>
9#include <stdlib.h>
10#include <time.h>
11#include <ctype.h>
Russ Dill61fb4892002-10-14 21:41:28 +000012
Russ Dill61fb4892002-10-14 21:41:28 +000013#include "dhcpd.h"
14#include "files.h"
15#include "options.h"
Glenn L McGrath24833432003-06-10 17:22:49 +000016#include "common.h"
Russ Dill61fb4892002-10-14 21:41:28 +000017
18/* on these functions, make sure you datatype matches */
Glenn L McGrath24833432003-06-10 17:22:49 +000019static int read_ip(const char *line, void *arg)
Russ Dill61fb4892002-10-14 21:41:28 +000020{
21 struct in_addr *addr = arg;
22 struct hostent *host;
23 int retval = 1;
24
25 if (!inet_aton(line, addr)) {
26 if ((host = gethostbyname(line)))
27 addr->s_addr = *((unsigned long *) host->h_addr_list[0]);
28 else retval = 0;
29 }
30 return retval;
31}
32
33
Glenn L McGrath24833432003-06-10 17:22:49 +000034static int read_str(const char *line, void *arg)
Russ Dill61fb4892002-10-14 21:41:28 +000035{
36 char **dest = arg;
37
Russ Dill1eb7a172002-12-11 21:12:45 +000038 if (*dest) free(*dest);
Russ Dill61fb4892002-10-14 21:41:28 +000039 *dest = strdup(line);
40
41 return 1;
42}
43
44
Glenn L McGrath24833432003-06-10 17:22:49 +000045static int read_u32(const char *line, void *arg)
Russ Dill61fb4892002-10-14 21:41:28 +000046{
47 u_int32_t *dest = arg;
48 char *endptr;
49 *dest = strtoul(line, &endptr, 0);
50 return endptr[0] == '\0';
51}
52
53
Glenn L McGrath24833432003-06-10 17:22:49 +000054static int read_yn(const char *line, void *arg)
Russ Dill61fb4892002-10-14 21:41:28 +000055{
56 char *dest = arg;
57 int retval = 1;
58
59 if (!strcasecmp("yes", line))
60 *dest = 1;
61 else if (!strcasecmp("no", line))
62 *dest = 0;
63 else retval = 0;
64
65 return retval;
66}
67
Glenn L McGrath24833432003-06-10 17:22:49 +000068#define READ_CONFIG_BUF_SIZE 512 /* domainname may have 254 chars */
Russ Dill61fb4892002-10-14 21:41:28 +000069
70/* read a dhcp option and add it to opt_list */
Glenn L McGrath24833432003-06-10 17:22:49 +000071static int read_opt(const char *const_line, void *arg)
Russ Dill61fb4892002-10-14 21:41:28 +000072{
Glenn L McGrath24833432003-06-10 17:22:49 +000073 char line[READ_CONFIG_BUF_SIZE];
Russ Dill61fb4892002-10-14 21:41:28 +000074 struct option_set **opt_list = arg;
75 char *opt, *val, *endptr;
Glenn L McGrath24833432003-06-10 17:22:49 +000076 struct dhcp_option *option;
77 int retval = 0, length;
78 char buffer[256]; /* max opt length */
Russ Dill61fb4892002-10-14 21:41:28 +000079 u_int16_t result_u16;
80 u_int32_t result_u32;
Glenn L McGrath24833432003-06-10 17:22:49 +000081 void *valptr;
Russ Dill61fb4892002-10-14 21:41:28 +000082
Glenn L McGrath24833432003-06-10 17:22:49 +000083 if ((opt = strtok(strcpy(line, const_line), " \t="))) {
Russ Dill61fb4892002-10-14 21:41:28 +000084
Russ Dill4a9e34c2003-12-15 22:09:36 +000085 for (option = dhcp_options; option->code; option++)
Glenn L McGrath24833432003-06-10 17:22:49 +000086 if (!strcasecmp(option->name, opt))
87 break;
Russ Dill61fb4892002-10-14 21:41:28 +000088
Glenn L McGrath24833432003-06-10 17:22:49 +000089 if (option->code) do {
Russ Dill61fb4892002-10-14 21:41:28 +000090 val = strtok(NULL, ", \t");
Glenn L McGrath24833432003-06-10 17:22:49 +000091 if(!val)
92 break;
Russ Dill61fb4892002-10-14 21:41:28 +000093 length = option_lengths[option->flags & TYPE_MASK];
Glenn L McGrath24833432003-06-10 17:22:49 +000094 valptr = NULL;
Russ Dill61fb4892002-10-14 21:41:28 +000095 switch (option->flags & TYPE_MASK) {
96 case OPTION_IP:
97 retval = read_ip(val, buffer);
98 break;
99 case OPTION_IP_PAIR:
100 retval = read_ip(val, buffer);
101 if (!(val = strtok(NULL, ", \t/-"))) retval = 0;
102 if (retval) retval = read_ip(val, buffer + 4);
103 break;
104 case OPTION_STRING:
105 length = strlen(val);
106 if (length > 0) {
107 if (length > 254) length = 254;
Glenn L McGrath24833432003-06-10 17:22:49 +0000108 endptr = buffer + length;
109 endptr[0] = 0;
110 valptr = val;
Russ Dill61fb4892002-10-14 21:41:28 +0000111 }
112 break;
113 case OPTION_BOOLEAN:
114 retval = read_yn(val, buffer);
115 break;
116 case OPTION_U8:
117 buffer[0] = strtoul(val, &endptr, 0);
Glenn L McGrath24833432003-06-10 17:22:49 +0000118 valptr = buffer;
Russ Dill61fb4892002-10-14 21:41:28 +0000119 break;
120 case OPTION_U16:
121 result_u16 = htons(strtoul(val, &endptr, 0));
Glenn L McGrath24833432003-06-10 17:22:49 +0000122 valptr = &result_u16;
Russ Dill61fb4892002-10-14 21:41:28 +0000123 break;
124 case OPTION_S16:
125 result_u16 = htons(strtol(val, &endptr, 0));
Glenn L McGrath24833432003-06-10 17:22:49 +0000126 valptr = &result_u16;
Russ Dill61fb4892002-10-14 21:41:28 +0000127 break;
128 case OPTION_U32:
129 result_u32 = htonl(strtoul(val, &endptr, 0));
Glenn L McGrath24833432003-06-10 17:22:49 +0000130 valptr = &result_u32;
Russ Dill61fb4892002-10-14 21:41:28 +0000131 break;
132 case OPTION_S32:
133 result_u32 = htonl(strtol(val, &endptr, 0));
Glenn L McGrath24833432003-06-10 17:22:49 +0000134 valptr = &result_u32;
Russ Dill61fb4892002-10-14 21:41:28 +0000135 break;
136 default:
Glenn L McGrath24833432003-06-10 17:22:49 +0000137 retval = 0;
Russ Dill61fb4892002-10-14 21:41:28 +0000138 break;
139 }
Glenn L McGrath24833432003-06-10 17:22:49 +0000140 if(valptr) {
141 memcpy(buffer, valptr, length);
142 retval = (endptr[0] == '\0');
143 }
Russ Dill61fb4892002-10-14 21:41:28 +0000144 if (retval)
145 attach_option(opt_list, option, buffer, length);
Glenn L McGrath24833432003-06-10 17:22:49 +0000146 else
147 break;
148 } while (option->flags & OPTION_LIST);
149 }
Russ Dill61fb4892002-10-14 21:41:28 +0000150 return retval;
151}
152
153
Glenn L McGrath24833432003-06-10 17:22:49 +0000154static const struct config_keyword keywords[] = {
155 /* keyword handler variable address default */
Russ Dill61fb4892002-10-14 21:41:28 +0000156 {"start", read_ip, &(server_config.start), "192.168.0.20"},
157 {"end", read_ip, &(server_config.end), "192.168.0.254"},
158 {"interface", read_str, &(server_config.interface), "eth0"},
159 {"option", read_opt, &(server_config.options), ""},
160 {"opt", read_opt, &(server_config.options), ""},
161 {"max_leases", read_u32, &(server_config.max_leases), "254"},
162 {"remaining", read_yn, &(server_config.remaining), "yes"},
163 {"auto_time", read_u32, &(server_config.auto_time), "7200"},
164 {"decline_time",read_u32, &(server_config.decline_time),"3600"},
165 {"conflict_time",read_u32,&(server_config.conflict_time),"3600"},
166 {"offer_time", read_u32, &(server_config.offer_time), "60"},
167 {"min_lease", read_u32, &(server_config.min_lease), "60"},
Glenn L McGrath24833432003-06-10 17:22:49 +0000168 {"lease_file", read_str, &(server_config.lease_file), leases_file},
Russ Dill61fb4892002-10-14 21:41:28 +0000169 {"pidfile", read_str, &(server_config.pidfile), "/var/run/udhcpd.pid"},
170 {"notify_file", read_str, &(server_config.notify_file), ""},
171 {"siaddr", read_ip, &(server_config.siaddr), "0.0.0.0"},
172 {"sname", read_str, &(server_config.sname), ""},
173 {"boot_file", read_str, &(server_config.boot_file), ""},
174 /*ADDME: static lease */
175 {"", NULL, NULL, ""}
176};
177
178
Glenn L McGrath24833432003-06-10 17:22:49 +0000179int read_config(const char *file)
Russ Dill61fb4892002-10-14 21:41:28 +0000180{
181 FILE *in;
Glenn L McGrath24833432003-06-10 17:22:49 +0000182 char buffer[READ_CONFIG_BUF_SIZE], orig[READ_CONFIG_BUF_SIZE];
183 char *token, *line;
Russ Dill61fb4892002-10-14 21:41:28 +0000184 int i;
185
Glenn L McGrath24833432003-06-10 17:22:49 +0000186 for (i = 0; keywords[i].keyword[0]; i++)
187 if (keywords[i].def[0])
Russ Dill61fb4892002-10-14 21:41:28 +0000188 keywords[i].handler(keywords[i].def, keywords[i].var);
189
190 if (!(in = fopen(file, "r"))) {
191 LOG(LOG_ERR, "unable to open config file: %s", file);
192 return 0;
193 }
194
Glenn L McGrath24833432003-06-10 17:22:49 +0000195 while (fgets(buffer, READ_CONFIG_BUF_SIZE, in)) {
Russ Dill61fb4892002-10-14 21:41:28 +0000196 if (strchr(buffer, '\n')) *(strchr(buffer, '\n')) = '\0';
Glenn L McGrath24833432003-06-10 17:22:49 +0000197 strcpy(orig, buffer);
Russ Dill61fb4892002-10-14 21:41:28 +0000198 if (strchr(buffer, '#')) *(strchr(buffer, '#')) = '\0';
Glenn L McGrath24833432003-06-10 17:22:49 +0000199 token = strtok(buffer, " \t");
200 if(!token)
201 continue;
202 line = strtok(NULL, "");
203 if(!line)
204 continue;
205 while(*line == '=' || isspace(*line))
Russ Dill61fb4892002-10-14 21:41:28 +0000206 line++;
Russ Dill61fb4892002-10-14 21:41:28 +0000207 /* eat trailing whitespace */
208 for (i = strlen(line); i > 0 && isspace(line[i - 1]); i--);
209 line[i] = '\0';
Glenn L McGrath24833432003-06-10 17:22:49 +0000210 if (*line == '\0')
211 continue;
Russ Dill61fb4892002-10-14 21:41:28 +0000212
Glenn L McGrath24833432003-06-10 17:22:49 +0000213 for (i = 0; keywords[i].keyword[0]; i++)
Russ Dill61fb4892002-10-14 21:41:28 +0000214 if (!strcasecmp(token, keywords[i].keyword))
215 if (!keywords[i].handler(line, keywords[i].var)) {
216 LOG(LOG_ERR, "unable to parse '%s'", orig);
217 /* reset back to the default value */
218 keywords[i].handler(keywords[i].def, keywords[i].var);
219 }
220 }
221 fclose(in);
222 return 1;
223}
224
225
226void write_leases(void)
227{
228 FILE *fp;
229 unsigned int i;
230 char buf[255];
231 time_t curr = time(0);
Russ Dill8f431262003-12-16 01:29:40 +0000232 unsigned long tmp_time;
Russ Dill61fb4892002-10-14 21:41:28 +0000233
234 if (!(fp = fopen(server_config.lease_file, "w"))) {
235 LOG(LOG_ERR, "Unable to open %s for writing", server_config.lease_file);
236 return;
237 }
238
239 for (i = 0; i < server_config.max_leases; i++) {
240 if (leases[i].yiaddr != 0) {
Russ Dill8f431262003-12-16 01:29:40 +0000241
242 /* screw with the time in the struct, for easier writing */
243 tmp_time = leases[i].expires;
244
Russ Dill61fb4892002-10-14 21:41:28 +0000245 if (server_config.remaining) {
246 if (lease_expired(&(leases[i])))
Russ Dill8f431262003-12-16 01:29:40 +0000247 leases[i].expires = 0;
248 else leases[i].expires -= curr;
249 } /* else stick with the time we got */
250 leases[i].expires = htonl(leases[i].expires);
251 fwrite(leases[i], sizeof(sturct dhcpOfferedAddr), 1, fp);
252
253 /* Then restore it when done. */
254 leases[i].expires = tmp_time;
Russ Dill61fb4892002-10-14 21:41:28 +0000255 }
256 }
257 fclose(fp);
258
259 if (server_config.notify_file) {
260 sprintf(buf, "%s %s", server_config.notify_file, server_config.lease_file);
261 system(buf);
262 }
263}
264
265
Glenn L McGrath24833432003-06-10 17:22:49 +0000266void read_leases(const char *file)
Russ Dill61fb4892002-10-14 21:41:28 +0000267{
268 FILE *fp;
269 unsigned int i = 0;
270 struct dhcpOfferedAddr lease;
271
272 if (!(fp = fopen(file, "r"))) {
273 LOG(LOG_ERR, "Unable to open %s for reading", file);
274 return;
275 }
276
277 while (i < server_config.max_leases && (fread(&lease, sizeof lease, 1, fp) == 1)) {
278 /* ADDME: is it a static lease */
279 if (lease.yiaddr >= server_config.start && lease.yiaddr <= server_config.end) {
280 lease.expires = ntohl(lease.expires);
281 if (!server_config.remaining) lease.expires -= time(0);
282 if (!(add_lease(lease.chaddr, lease.yiaddr, lease.expires))) {
283 LOG(LOG_WARNING, "Too many leases while loading %s\n", file);
284 break;
285 }
286 i++;
287 }
288 }
289 DEBUG(LOG_INFO, "Read %d leases", i);
290 fclose(fp);
291}