busybox: update to 1.23.2
[tomato.git] / release / src / router / busybox / networking / udhcp / files.c
blob1c8808c0f1fcc911c54ec093421eb535a820c48d
1 /* vi: set sw=4 ts=4: */
2 /*
3 * DHCP server config and lease file manipulation
5 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */
9 #include <netinet/ether.h>
11 #include "common.h"
12 #include "dhcpd.h"
14 /* on these functions, make sure your datatype matches */
15 static int FAST_FUNC read_str(const char *line, void *arg)
17 char **dest = arg;
19 free(*dest);
20 *dest = xstrdup(line);
21 return 1;
24 static int FAST_FUNC read_u32(const char *line, void *arg)
26 *(uint32_t*)arg = bb_strtou32(line, NULL, 10);
27 return errno == 0;
30 static int FAST_FUNC read_staticlease(const char *const_line, void *arg)
32 char *line;
33 char *mac_string;
34 char *ip_string;
35 struct ether_addr mac_bytes; /* it's "struct { uint8_t mac[6]; }" */
36 uint32_t nip;
38 /* Read mac */
39 line = (char *) const_line;
40 mac_string = strtok_r(line, " \t", &line);
41 if (!mac_string || !ether_aton_r(mac_string, &mac_bytes))
42 return 0;
44 /* Read ip */
45 ip_string = strtok_r(NULL, " \t", &line);
46 if (!ip_string || !udhcp_str2nip(ip_string, &nip))
47 return 0;
49 add_static_lease(arg, (uint8_t*) &mac_bytes, nip);
51 log_static_leases(arg);
53 return 1;
57 struct config_keyword {
58 const char *keyword;
59 int (*handler)(const char *line, void *var) FAST_FUNC;
60 void *var;
61 const char *def;
64 static const struct config_keyword keywords[] = {
65 /* keyword handler variable address default */
66 {"start" , udhcp_str2nip , &server_config.start_ip , "192.168.0.20"},
67 {"end" , udhcp_str2nip , &server_config.end_ip , "192.168.0.254"},
68 {"interface" , read_str , &server_config.interface , "eth0"},
69 /* Avoid "max_leases value not sane" warning by setting default
70 * to default_end_ip - default_start_ip + 1: */
71 {"max_leases" , read_u32 , &server_config.max_leases , "235"},
72 {"auto_time" , read_u32 , &server_config.auto_time , "7200"},
73 {"decline_time" , read_u32 , &server_config.decline_time , "3600"},
74 {"conflict_time", read_u32 , &server_config.conflict_time, "3600"},
75 {"offer_time" , read_u32 , &server_config.offer_time , "60"},
76 {"min_lease" , read_u32 , &server_config.min_lease_sec, "60"},
77 {"lease_file" , read_str , &server_config.lease_file , LEASES_FILE},
78 {"pidfile" , read_str , &server_config.pidfile , "/var/run/udhcpd.pid"},
79 {"siaddr" , udhcp_str2nip , &server_config.siaddr_nip , "0.0.0.0"},
80 /* keywords with no defaults must be last! */
81 {"option" , udhcp_str2optset, &server_config.options , ""},
82 {"opt" , udhcp_str2optset, &server_config.options , ""},
83 {"notify_file" , read_str , &server_config.notify_file , NULL},
84 {"sname" , read_str , &server_config.sname , NULL},
85 {"boot_file" , read_str , &server_config.boot_file , NULL},
86 {"static_lease" , read_staticlease, &server_config.static_leases, ""},
88 enum { KWS_WITH_DEFAULTS = ARRAY_SIZE(keywords) - 6 };
90 void FAST_FUNC read_config(const char *file)
92 parser_t *parser;
93 const struct config_keyword *k;
94 unsigned i;
95 char *token[2];
97 for (i = 0; i < KWS_WITH_DEFAULTS; i++)
98 keywords[i].handler(keywords[i].def, keywords[i].var);
100 parser = config_open(file);
101 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL)) {
102 for (k = keywords, i = 0; i < ARRAY_SIZE(keywords); k++, i++) {
103 if (strcasecmp(token[0], k->keyword) == 0) {
104 if (!k->handler(token[1], k->var)) {
105 bb_error_msg("can't parse line %u in %s",
106 parser->lineno, file);
107 /* reset back to the default value */
108 k->handler(k->def, k->var);
110 break;
114 config_close(parser);
116 server_config.start_ip = ntohl(server_config.start_ip);
117 server_config.end_ip = ntohl(server_config.end_ip);
120 void FAST_FUNC write_leases(void)
122 int fd;
123 unsigned i;
124 leasetime_t curr;
125 int64_t written_at;
127 fd = open_or_warn(server_config.lease_file, O_WRONLY|O_CREAT|O_TRUNC);
128 if (fd < 0)
129 return;
131 curr = written_at = time(NULL);
133 written_at = SWAP_BE64(written_at);
134 full_write(fd, &written_at, sizeof(written_at));
136 for (i = 0; i < server_config.max_leases; i++) {
137 leasetime_t tmp_time;
139 if (g_leases[i].lease_nip == 0)
140 continue;
142 /* Screw with the time in the struct, for easier writing */
143 tmp_time = g_leases[i].expires;
145 g_leases[i].expires -= curr;
146 if ((signed_leasetime_t) g_leases[i].expires < 0)
147 g_leases[i].expires = 0;
148 g_leases[i].expires = htonl(g_leases[i].expires);
150 /* No error check. If the file gets truncated,
151 * we lose some leases on restart. Oh well. */
152 full_write(fd, &g_leases[i], sizeof(g_leases[i]));
154 /* Then restore it when done */
155 g_leases[i].expires = tmp_time;
157 close(fd);
159 if (server_config.notify_file) {
160 char *argv[3];
161 argv[0] = server_config.notify_file;
162 argv[1] = server_config.lease_file;
163 argv[2] = NULL;
164 spawn_and_wait(argv);
168 void FAST_FUNC read_leases(const char *file)
170 struct dyn_lease lease;
171 int64_t written_at, time_passed;
172 int fd;
173 #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
174 unsigned i = 0;
175 #endif
177 fd = open_or_warn(file, O_RDONLY);
178 if (fd < 0)
179 return;
181 if (full_read(fd, &written_at, sizeof(written_at)) != sizeof(written_at))
182 goto ret;
183 written_at = SWAP_BE64(written_at);
185 time_passed = time(NULL) - written_at;
186 /* Strange written_at, or lease file from old version of udhcpd
187 * which had no "written_at" field? */
188 if ((uint64_t)time_passed > 12 * 60 * 60)
189 goto ret;
191 while (full_read(fd, &lease, sizeof(lease)) == sizeof(lease)) {
192 uint32_t y = ntohl(lease.lease_nip);
193 if (y >= server_config.start_ip && y <= server_config.end_ip) {
194 signed_leasetime_t expires = ntohl(lease.expires) - (signed_leasetime_t)time_passed;
195 uint32_t static_nip;
197 if (expires <= 0)
198 continue;
200 /* Check if there is a different static lease for this IP or MAC */
201 static_nip = get_static_nip_by_mac(server_config.static_leases, lease.lease_mac);
202 if (static_nip) {
203 /* NB: we do not add lease even if static_nip == lease.lease_nip.
205 continue;
207 if (is_nip_reserved(server_config.static_leases, lease.lease_nip))
208 continue;
210 /* NB: add_lease takes "relative time", IOW,
211 * lease duration, not lease deadline. */
212 if (add_lease(lease.lease_mac, lease.lease_nip,
213 expires,
214 lease.hostname, sizeof(lease.hostname)
215 ) == 0
217 bb_error_msg("too many leases while loading %s", file);
218 break;
220 #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
221 i++;
222 #endif
225 log1("Read %d leases", i);
226 ret:
227 close(fd);