blob: 4d755e6b8a063dfacd22fa3e79e158133e505dc5 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko6b24d532010-03-22 13:42:13 +01002/*
Denys Vlasenko385b4562010-03-26 10:09:34 +01003 * udhcp client
Mike Frysinger7031f622006-05-08 03:20:50 +00004 *
5 * Russ Dill <Russ.Dill@asu.edu> July 2001
6 *
Denys Vlasenko6b24d532010-03-22 13:42:13 +01007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Mike Frysinger7031f622006-05-08 03:20:50 +000020 */
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +000021#include <syslog.h>
Denis Vlasenko1caca342007-08-02 10:14:29 +000022/* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
23#define WANT_PIDFILE 1
Mike Frysinger7031f622006-05-08 03:20:50 +000024#include "common.h"
25#include "dhcpd.h"
26#include "dhcpc.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000027
Dan Fandrichf533ec82011-06-10 05:17:59 +020028#include <netinet/if_ether.h>
29#include <netpacket/packet.h>
Denys Vlasenko6b24d532010-03-22 13:42:13 +010030#include <linux/filter.h>
31
Denis Vlasenkodeabacd2007-09-30 17:55:43 +000032/* struct client_config_t client_config is in bb_common_bufsiz1 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +000033
Mike Frysinger7031f622006-05-08 03:20:50 +000034
Keith Younge6bb8d32011-03-07 03:18:46 +010035#if ENABLE_LONG_OPTS
36static const char udhcpc_longopts[] ALIGN1 =
37 "clientid-none\0" No_argument "C"
38 "vendorclass\0" Required_argument "V"
39 "hostname\0" Required_argument "H"
40 "fqdn\0" Required_argument "F"
41 "interface\0" Required_argument "i"
42 "now\0" No_argument "n"
43 "pidfile\0" Required_argument "p"
44 "quit\0" No_argument "q"
45 "release\0" No_argument "R"
46 "request\0" Required_argument "r"
47 "script\0" Required_argument "s"
48 "timeout\0" Required_argument "T"
49 "version\0" No_argument "v"
50 "retries\0" Required_argument "t"
51 "tryagain\0" Required_argument "A"
52 "syslog\0" No_argument "S"
53 "request-option\0" Required_argument "O"
54 "no-default-options\0" No_argument "o"
55 "foreground\0" No_argument "f"
56 "background\0" No_argument "b"
57 "broadcast\0" No_argument "B"
58 IF_FEATURE_UDHCPC_ARPING("arping\0" No_argument "a")
59 IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P")
60 ;
61#endif
62/* Must match getopt32 option string order */
63enum {
64 OPT_C = 1 << 0,
65 OPT_V = 1 << 1,
66 OPT_H = 1 << 2,
67 OPT_h = 1 << 3,
68 OPT_F = 1 << 4,
69 OPT_i = 1 << 5,
70 OPT_n = 1 << 6,
71 OPT_p = 1 << 7,
72 OPT_q = 1 << 8,
73 OPT_R = 1 << 9,
74 OPT_r = 1 << 10,
75 OPT_s = 1 << 11,
76 OPT_T = 1 << 12,
77 OPT_t = 1 << 13,
78 OPT_S = 1 << 14,
79 OPT_A = 1 << 15,
80 OPT_O = 1 << 16,
81 OPT_o = 1 << 17,
82 OPT_x = 1 << 18,
83 OPT_f = 1 << 19,
84 OPT_B = 1 << 20,
85/* The rest has variable bit positions, need to be clever */
86 OPTBIT_B = 20,
87 USE_FOR_MMU( OPTBIT_b,)
88 IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
89 IF_FEATURE_UDHCP_PORT( OPTBIT_P,)
90 USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,)
91 IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
92 IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,)
93};
94
95
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +010096/*** Script execution code ***/
97
98/* get a rough idea of how long an option will be (rounding up...) */
99static const uint8_t len_of_option_as_string[] = {
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200100 [OPTION_IP ] = sizeof("255.255.255.255 "),
101 [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2,
102 [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "),
103 [OPTION_STRING ] = 1,
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100104#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200105 [OPTION_DNS_STRING ] = 1, /* unused */
106 /* Hmmm, this severely overestimates size if SIP_SERVERS option
107 * is in domain name form: N-byte option in binary form
108 * mallocs ~16*N bytes. But it is freed almost at once.
109 */
110 [OPTION_SIP_SERVERS ] = sizeof("255.255.255.255 "),
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100111#endif
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200112// [OPTION_BOOLEAN ] = sizeof("yes "),
113 [OPTION_U8 ] = sizeof("255 "),
114 [OPTION_U16 ] = sizeof("65535 "),
115// [OPTION_S16 ] = sizeof("-32768 "),
116 [OPTION_U32 ] = sizeof("4294967295 "),
117 [OPTION_S32 ] = sizeof("-2147483684 "),
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100118};
119
120/* note: ip is a pointer to an IP in network order, possibly misaliged */
121static int sprint_nip(char *dest, const char *pre, const uint8_t *ip)
122{
123 return sprintf(dest, "%s%u.%u.%u.%u", pre, ip[0], ip[1], ip[2], ip[3]);
124}
125
126/* really simple implementation, just count the bits */
127static int mton(uint32_t mask)
128{
129 int i = 0;
130 mask = ntohl(mask); /* 111110000-like bit pattern */
131 while (mask) {
132 i++;
133 mask <<= 1;
134 }
135 return i;
136}
137
138/* Create "opt_name=opt_value" string */
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200139static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_optflag *optflag, const char *opt_name)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100140{
141 unsigned upper_length;
142 int len, type, optlen;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100143 char *dest, *ret;
144
145 /* option points to OPT_DATA, need to go back and get OPT_LEN */
146 len = option[OPT_LEN - OPT_DATA];
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200147
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200148 type = optflag->flags & OPTION_TYPE_MASK;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100149 optlen = dhcp_option_lengths[type];
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200150 upper_length = len_of_option_as_string[type] * ((unsigned)len / (unsigned)optlen);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100151
152 dest = ret = xmalloc(upper_length + strlen(opt_name) + 2);
153 dest += sprintf(ret, "%s=", opt_name);
154
155 while (len >= optlen) {
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200156 unsigned ip_ofs = 0;
157
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100158 switch (type) {
159 case OPTION_IP_PAIR:
160 dest += sprint_nip(dest, "", option);
161 *dest++ = '/';
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200162 ip_ofs = 4;
163 /* fall through */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100164 case OPTION_IP:
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200165 dest += sprint_nip(dest, "", option + ip_ofs);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100166 break;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100167// case OPTION_BOOLEAN:
168// dest += sprintf(dest, *option ? "yes" : "no");
169// break;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100170 case OPTION_U8:
171 dest += sprintf(dest, "%u", *option);
172 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200173// case OPTION_S16:
174 case OPTION_U16: {
175 uint16_t val_u16;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100176 move_from_unaligned16(val_u16, option);
177 dest += sprintf(dest, "%u", ntohs(val_u16));
178 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200179 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100180 case OPTION_S32:
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200181 case OPTION_U32: {
182 uint32_t val_u32;
183 move_from_unaligned32(val_u32, option);
184 dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32));
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100185 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200186 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100187 case OPTION_STRING:
188 memcpy(dest, option, len);
189 dest[len] = '\0';
190 return ret; /* Short circuit this case */
191 case OPTION_STATIC_ROUTES: {
192 /* Option binary format:
193 * mask [one byte, 0..32]
194 * ip [big endian, 0..4 bytes depending on mask]
195 * router [big endian, 4 bytes]
196 * may be repeated
197 *
198 * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2"
199 */
200 const char *pfx = "";
201
202 while (len >= 1 + 4) { /* mask + 0-byte ip + router */
203 uint32_t nip;
204 uint8_t *p;
205 unsigned mask;
206 int bytes;
207
208 mask = *option++;
209 if (mask > 32)
210 break;
211 len--;
212
213 nip = 0;
214 p = (void*) &nip;
215 bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */
216 while (--bytes >= 0) {
217 *p++ = *option++;
218 len--;
219 }
220 if (len < 4)
221 break;
222
223 /* print ip/mask */
224 dest += sprint_nip(dest, pfx, (void*) &nip);
225 pfx = " ";
226 dest += sprintf(dest, "/%u ", mask);
227 /* print router */
228 dest += sprint_nip(dest, "", option);
229 option += 4;
230 len -= 4;
231 }
232
233 return ret;
234 }
235#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200236 case OPTION_DNS_STRING:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100237 /* unpack option into dest; use ret for prefix (i.e., "optname=") */
238 dest = dname_dec(option, len, ret);
239 if (dest) {
240 free(ret);
241 return dest;
242 }
243 /* error. return "optname=" string */
244 return ret;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200245 case OPTION_SIP_SERVERS:
246 /* Option binary format:
247 * type: byte
248 * type=0: domain names, dns-compressed
249 * type=1: IP addrs
250 */
251 option++;
252 len--;
253 if (option[-1] == 0) {
254 dest = dname_dec(option, len, ret);
255 if (dest) {
256 free(ret);
257 return dest;
258 }
259 } else
260 if (option[-1] == 1) {
261 const char *pfx = "";
262 while (1) {
263 len -= 4;
264 if (len < 0)
265 break;
266 dest += sprint_nip(dest, pfx, option);
267 pfx = " ";
268 option += 4;
269 }
270 }
271 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100272#endif
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200273 } /* switch */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100274 option += optlen;
275 len -= optlen;
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200276// TODO: it can be a list only if (optflag->flags & OPTION_LIST).
277// Should we bail out/warn if we see multi-ip option which is
278// not allowed to be such (for example, DHCP_BROADCAST)? -
279 if (len <= 0 /* || !(optflag->flags & OPTION_LIST) */)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100280 break;
281 *dest++ = ' ';
282 *dest = '\0';
283 }
284 return ret;
285}
286
287/* put all the parameters into the environment */
288static char **fill_envp(struct dhcp_packet *packet)
289{
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200290 int envc;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100291 int i;
292 char **envp, **curr;
293 const char *opt_name;
294 uint8_t *temp;
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200295 uint8_t overload = 0;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100296
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200297#define BITMAP unsigned
298#define BBITS (sizeof(BITMAP) * 8)
299#define BMASK(i) (1 << (i & (sizeof(BITMAP) * 8 - 1)))
300#define FOUND_OPTS(i) (found_opts[(unsigned)i / BBITS])
301 BITMAP found_opts[256 / BBITS];
302
303 memset(found_opts, 0, sizeof(found_opts));
304
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200305 /* We need 6 elements for:
306 * "interface=IFACE"
307 * "ip=N.N.N.N" from packet->yiaddr
308 * "siaddr=IP" from packet->siaddr_nip (unless 0)
309 * "boot_file=FILE" from packet->file (unless overloaded)
310 * "sname=SERVER_HOSTNAME" from packet->sname (unless overloaded)
311 * terminating NULL
312 */
313 envc = 6;
314 /* +1 element for each option, +2 for subnet option: */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100315 if (packet) {
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200316 /* note: do not search for "pad" (0) and "end" (255) options */
317 for (i = 1; i < 255; i++) {
318 temp = udhcp_get_option(packet, i);
319 if (temp) {
320 if (i == DHCP_OPTION_OVERLOAD)
321 overload = *temp;
322 else if (i == DHCP_SUBNET)
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200323 envc++; /* for mton */
324 envc++;
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200325 /*if (i != DHCP_MESSAGE_TYPE)*/
326 FOUND_OPTS(i) |= BMASK(i);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100327 }
328 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100329 }
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200330 curr = envp = xzalloc(sizeof(envp[0]) * envc);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100331
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100332 *curr = xasprintf("interface=%s", client_config.interface);
333 putenv(*curr++);
334
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200335 if (!packet)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100336 return envp;
337
338 *curr = xmalloc(sizeof("ip=255.255.255.255"));
339 sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr);
340 putenv(*curr++);
341
342 opt_name = dhcp_option_strings;
343 i = 0;
344 while (*opt_name) {
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200345 uint8_t code = dhcp_optflags[i].code;
346 BITMAP *found_ptr = &FOUND_OPTS(code);
347 BITMAP found_mask = BMASK(code);
348 if (!(*found_ptr & found_mask))
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100349 goto next;
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200350 *found_ptr &= ~found_mask; /* leave only unknown options */
351 temp = udhcp_get_option(packet, code);
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200352 *curr = xmalloc_optname_optval(temp, &dhcp_optflags[i], opt_name);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100353 putenv(*curr++);
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200354 if (code == DHCP_SUBNET) {
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200355 /* Subnet option: make things like "$ip/$mask" possible */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100356 uint32_t subnet;
357 move_from_unaligned32(subnet, temp);
358 *curr = xasprintf("mask=%d", mton(subnet));
359 putenv(*curr++);
360 }
361 next:
362 opt_name += strlen(opt_name) + 1;
363 i++;
364 }
365 if (packet->siaddr_nip) {
366 *curr = xmalloc(sizeof("siaddr=255.255.255.255"));
367 sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip);
368 putenv(*curr++);
369 }
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200370 if (!(overload & FILE_FIELD) && packet->file[0]) {
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100371 /* watch out for invalid packets */
372 *curr = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file);
373 putenv(*curr++);
374 }
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200375 if (!(overload & SNAME_FIELD) && packet->sname[0]) {
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100376 /* watch out for invalid packets */
377 *curr = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname);
378 putenv(*curr++);
379 }
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200380 /* Handle unknown options */
381 for (i = 0; i < 256;) {
382 BITMAP bitmap = FOUND_OPTS(i);
383 if (!bitmap) {
384 i += BBITS;
385 continue;
386 }
387 if (bitmap & BMASK(i)) {
388 unsigned len, ofs;
389
390 temp = udhcp_get_option(packet, i);
391 /* udhcp_get_option returns ptr to data portion,
392 * need to go back to get len
393 */
394 len = temp[-OPT_DATA + OPT_LEN];
395 *curr = xmalloc(sizeof("optNNN=") + 1 + len*2);
396 ofs = sprintf(*curr, "opt%u=", i);
397 bin2hex(*curr + ofs, (void*) temp, len)[0] = '\0';
398 putenv(*curr++);
399 }
400 i++;
401 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100402 return envp;
403}
404
405/* Call a script with a par file and env vars */
406static void udhcp_run_script(struct dhcp_packet *packet, const char *name)
407{
408 char **envp, **curr;
409 char *argv[3];
410
411 if (client_config.script == NULL)
412 return;
413
414 envp = fill_envp(packet);
415
416 /* call script */
417 log1("Executing %s %s", client_config.script, name);
418 argv[0] = (char*) client_config.script;
419 argv[1] = (char*) name;
420 argv[2] = NULL;
421 spawn_and_wait(argv);
422
423 for (curr = envp; *curr; curr++) {
424 log2(" %s", *curr);
Denys Vlasenkodd8adde2010-06-24 05:00:50 +0200425 bb_unsetenv_and_free(*curr);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100426 }
427 free(envp);
428}
429
430
431/*** Sending/receiving packets ***/
432
Denys Vlasenko8d114452010-03-22 13:44:09 +0100433static ALWAYS_INLINE uint32_t random_xid(void)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100434{
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100435 return rand();
436}
437
438/* Initialize the packet with the proper defaults */
439static void init_packet(struct dhcp_packet *packet, char type)
440{
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100441 uint16_t secs;
442
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200443 /* Fill in: op, htype, hlen, cookie fields; message type option: */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100444 udhcp_init_header(packet, type);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200445
446 packet->xid = random_xid();
447
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100448 client_config.last_secs = monotonic_sec();
449 if (client_config.first_secs == 0)
450 client_config.first_secs = client_config.last_secs;
451 secs = client_config.last_secs - client_config.first_secs;
452 packet->secs = htons(secs);
453
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100454 memcpy(packet->chaddr, client_config.client_mac, 6);
455 if (client_config.clientid)
Denys Vlasenko7724c762010-03-26 09:32:09 +0100456 udhcp_add_binary_option(packet, client_config.clientid);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100457}
458
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100459static void add_client_options(struct dhcp_packet *packet)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100460{
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200461 uint8_t c;
462 int i, end, len;
463
464 udhcp_add_simple_option(packet, DHCP_MAX_SIZE, htons(IP_UDP_DHCP_SIZE));
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200465
Denys Vlasenko7724c762010-03-26 09:32:09 +0100466 /* Add a "param req" option with the list of options we'd like to have
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100467 * from stubborn DHCP servers. Pull the data from the struct in common.c.
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100468 * No bounds checking because it goes towards the head of the packet. */
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200469 end = udhcp_end_option(packet->options);
470 len = 0;
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200471 for (i = 0; (c = dhcp_optflags[i].code) != 0; i++) {
472 if (( (dhcp_optflags[i].flags & OPTION_REQ)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100473 && !client_config.no_default_options
474 )
475 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
476 ) {
477 packet->options[end + OPT_DATA + len] = c;
478 len++;
479 }
480 }
481 if (len) {
482 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
483 packet->options[end + OPT_LEN] = len;
484 packet->options[end + OPT_DATA + len] = DHCP_END;
485 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100486
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200487 if (client_config.vendorclass)
488 udhcp_add_binary_option(packet, client_config.vendorclass);
489 if (client_config.hostname)
490 udhcp_add_binary_option(packet, client_config.hostname);
491 if (client_config.fqdn)
492 udhcp_add_binary_option(packet, client_config.fqdn);
493
Keith Younge6bb8d32011-03-07 03:18:46 +0100494 /* Request broadcast replies if we have no IP addr */
495 if ((option_mask32 & OPT_B) && packet->ciaddr == 0)
496 packet->flags |= htons(BROADCAST_FLAG);
497
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100498 /* Add -x options if any */
499 {
500 struct option_set *curr = client_config.options;
501 while (curr) {
Denys Vlasenko7724c762010-03-26 09:32:09 +0100502 udhcp_add_binary_option(packet, curr->data);
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100503 curr = curr->next;
504 }
505// if (client_config.sname)
506// strncpy((char*)packet->sname, client_config.sname, sizeof(packet->sname) - 1);
507// if (client_config.boot_file)
508// strncpy((char*)packet->file, client_config.boot_file, sizeof(packet->file) - 1);
509 }
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100510}
511
512/* RFC 2131
513 * 4.4.4 Use of broadcast and unicast
514 *
515 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
516 * messages, unless the client knows the address of a DHCP server.
517 * The client unicasts DHCPRELEASE messages to the server. Because
518 * the client is declining the use of the IP address supplied by the server,
519 * the client broadcasts DHCPDECLINE messages.
520 *
521 * When the DHCP client knows the address of a DHCP server, in either
522 * INIT or REBOOTING state, the client may use that address
523 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
524 * The client may also use unicast to send DHCPINFORM messages
525 * to a known DHCP server. If the client receives no response to DHCP
526 * messages sent to the IP address of a known DHCP server, the DHCP
527 * client reverts to using the IP broadcast address.
528 */
529
530static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet)
531{
532 return udhcp_send_raw_packet(packet,
533 /*src*/ INADDR_ANY, CLIENT_PORT,
534 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
535 client_config.ifindex);
536}
537
538/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200539/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200540static NOINLINE int send_discover(uint32_t xid, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100541{
542 struct dhcp_packet packet;
543
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200544 /* Fill in: op, htype, hlen, cookie, chaddr fields,
545 * random xid field (we override it below),
546 * client-id option (unless -C), message type option:
547 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100548 init_packet(&packet, DHCPDISCOVER);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200549
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100550 packet.xid = xid;
551 if (requested)
Denys Vlasenko7724c762010-03-26 09:32:09 +0100552 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200553
554 /* Add options: maxsize,
555 * optionally: hostname, fqdn, vendorclass,
556 * "param req" option according to -O, options specified with -x
557 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100558 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100559
560 bb_info_msg("Sending discover...");
561 return raw_bcast_from_client_config_ifindex(&packet);
562}
563
564/* Broadcast a DHCP request message */
565/* RFC 2131 3.1 paragraph 3:
566 * "The client _broadcasts_ a DHCPREQUEST message..."
567 */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200568/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200569static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100570{
571 struct dhcp_packet packet;
572 struct in_addr addr;
573
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200574/*
575 * RFC 2131 4.3.2 DHCPREQUEST message
576 * ...
577 * If the DHCPREQUEST message contains a 'server identifier'
578 * option, the message is in response to a DHCPOFFER message.
579 * Otherwise, the message is a request to verify or extend an
580 * existing lease. If the client uses a 'client identifier'
581 * in a DHCPREQUEST message, it MUST use that same 'client identifier'
582 * in all subsequent messages. If the client included a list
583 * of requested parameters in a DHCPDISCOVER message, it MUST
584 * include that list in all subsequent messages.
585 */
586 /* Fill in: op, htype, hlen, cookie, chaddr fields,
587 * random xid field (we override it below),
588 * client-id option (unless -C), message type option:
589 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100590 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200591
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100592 packet.xid = xid;
Denys Vlasenko7724c762010-03-26 09:32:09 +0100593 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200594
Denys Vlasenko7724c762010-03-26 09:32:09 +0100595 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200596
597 /* Add options: maxsize,
598 * optionally: hostname, fqdn, vendorclass,
599 * "param req" option according to -O, and options specified with -x
600 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100601 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100602
603 addr.s_addr = requested;
604 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
605 return raw_bcast_from_client_config_ifindex(&packet);
606}
607
608/* Unicast or broadcast a DHCP renew message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200609/* NOINLINE: limit stack usage in caller */
610static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100611{
612 struct dhcp_packet packet;
613
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200614/*
615 * RFC 2131 4.3.2 DHCPREQUEST message
616 * ...
617 * DHCPREQUEST generated during RENEWING state:
618 *
619 * 'server identifier' MUST NOT be filled in, 'requested IP address'
620 * option MUST NOT be filled in, 'ciaddr' MUST be filled in with
621 * client's IP address. In this situation, the client is completely
622 * configured, and is trying to extend its lease. This message will
623 * be unicast, so no relay agents will be involved in its
624 * transmission. Because 'giaddr' is therefore not filled in, the
625 * DHCP server will trust the value in 'ciaddr', and use it when
626 * replying to the client.
627 */
628 /* Fill in: op, htype, hlen, cookie, chaddr fields,
629 * random xid field (we override it below),
630 * client-id option (unless -C), message type option:
631 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100632 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200633
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100634 packet.xid = xid;
635 packet.ciaddr = ciaddr;
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200636
637 /* Add options: maxsize,
638 * optionally: hostname, fqdn, vendorclass,
639 * "param req" option according to -O, and options specified with -x
640 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100641 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100642
643 bb_info_msg("Sending renew...");
644 if (server)
645 return udhcp_send_kernel_packet(&packet,
646 ciaddr, CLIENT_PORT,
647 server, SERVER_PORT);
648 return raw_bcast_from_client_config_ifindex(&packet);
649}
650
651#if ENABLE_FEATURE_UDHCPC_ARPING
652/* Broadcast a DHCP decline message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200653/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200654static NOINLINE int send_decline(uint32_t xid, uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100655{
656 struct dhcp_packet packet;
657
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200658 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
659 * client-id option (unless -C), message type option:
660 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100661 init_packet(&packet, DHCPDECLINE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200662
663 /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client,
664 * but in case the server is buggy and wants DHCPDECLINE's xid
665 * to match the xid which started entire handshake,
666 * we use the same xid we used in initial DHCPDISCOVER:
667 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100668 packet.xid = xid;
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200669 /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */
Denys Vlasenko7724c762010-03-26 09:32:09 +0100670 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200671
Denys Vlasenko7724c762010-03-26 09:32:09 +0100672 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100673
674 bb_info_msg("Sending decline...");
675 return raw_bcast_from_client_config_ifindex(&packet);
676}
677#endif
678
679/* Unicast a DHCP release message */
680static int send_release(uint32_t server, uint32_t ciaddr)
681{
682 struct dhcp_packet packet;
683
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200684 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
685 * client-id option (unless -C), message type option:
686 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100687 init_packet(&packet, DHCPRELEASE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200688
689 /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100690 packet.ciaddr = ciaddr;
691
Denys Vlasenko7724c762010-03-26 09:32:09 +0100692 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100693
694 bb_info_msg("Sending release...");
695 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
696}
697
698/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200699/* NOINLINE: limit stack usage in caller */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100700static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
701{
702 int bytes;
703 struct ip_udp_dhcp_packet packet;
704 uint16_t check;
705
706 memset(&packet, 0, sizeof(packet));
707 bytes = safe_read(fd, &packet, sizeof(packet));
708 if (bytes < 0) {
709 log1("Packet read error, ignoring");
710 /* NB: possible down interface, etc. Caller should pause. */
711 return bytes; /* returns -1 */
712 }
713
714 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
715 log1("Packet is too short, ignoring");
716 return -2;
717 }
718
719 if (bytes < ntohs(packet.ip.tot_len)) {
720 /* packet is bigger than sizeof(packet), we did partial read */
721 log1("Oversized packet, ignoring");
722 return -2;
723 }
724
725 /* ignore any extra garbage bytes */
726 bytes = ntohs(packet.ip.tot_len);
727
728 /* make sure its the right packet for us, and that it passes sanity checks */
729 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
730 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
731 || packet.udp.dest != htons(CLIENT_PORT)
732 /* || bytes > (int) sizeof(packet) - can't happen */
733 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
734 ) {
735 log1("Unrelated/bogus packet, ignoring");
736 return -2;
737 }
738
739 /* verify IP checksum */
740 check = packet.ip.check;
741 packet.ip.check = 0;
742 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
743 log1("Bad IP header checksum, ignoring");
744 return -2;
745 }
746
747 /* verify UDP checksum. IP header has to be modified for this */
748 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
749 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
750 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
751 check = packet.udp.check;
752 packet.udp.check = 0;
753 if (check && check != udhcp_checksum(&packet, bytes)) {
754 log1("Packet with bad UDP checksum received, ignoring");
755 return -2;
756 }
757
758 memcpy(dhcp_pkt, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
759
760 if (dhcp_pkt->cookie != htonl(DHCP_MAGIC)) {
761 bb_info_msg("Packet with bad magic, ignoring");
762 return -2;
763 }
764 log1("Got valid DHCP packet");
765 udhcp_dump_packet(dhcp_pkt);
766 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
767}
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100768
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100769
770/*** Main ***/
771
772static int sockfd = -1;
773
774#define LISTEN_NONE 0
775#define LISTEN_KERNEL 1
776#define LISTEN_RAW 2
777static smallint listen_mode;
778
779/* initial state: (re)start DHCP negotiation */
780#define INIT_SELECTING 0
781/* discover was sent, DHCPOFFER reply received */
782#define REQUESTING 1
783/* select/renew was sent, DHCPACK reply received */
784#define BOUND 2
785/* half of lease passed, want to renew it by sending unicast renew requests */
786#define RENEWING 3
787/* renew requests were not answered, lease is almost over, send broadcast renew */
788#define REBINDING 4
789/* manually requested renew (SIGUSR1) */
790#define RENEW_REQUESTED 5
791/* release, possibly manually requested (SIGUSR2) */
792#define RELEASED 6
793static smallint state;
794
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100795static int udhcp_raw_socket(int ifindex)
796{
797 int fd;
798 struct sockaddr_ll sock;
799
800 /*
801 * Comment:
802 *
803 * I've selected not to see LL header, so BPF doesn't see it, too.
804 * The filter may also pass non-IP and non-ARP packets, but we do
805 * a more complete check when receiving the message in userspace.
806 *
807 * and filter shamelessly stolen from:
808 *
809 * http://www.flamewarmaster.de/software/dhcpclient/
810 *
811 * There are a few other interesting ideas on that page (look under
812 * "Motivation"). Use of netlink events is most interesting. Think
813 * of various network servers listening for events and reconfiguring.
814 * That would obsolete sending HUP signals and/or make use of restarts.
815 *
816 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
817 * License: GPL v2.
818 *
819 * TODO: make conditional?
820 */
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100821 static const struct sock_filter filter_instr[] = {
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100822 /* load 9th byte (protocol) */
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100823 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100824 /* jump to L1 if it is IPPROTO_UDP, else to L4 */
825 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6),
826 /* L1: load halfword from offset 6 (flags and frag offset) */
827 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6),
828 /* jump to L4 if any bits in frag offset field are set, else to L2 */
829 BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0),
830 /* L2: skip IP header (load index reg with header len) */
831 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0),
832 /* load udp destination port from halfword[header_len + 2] */
833 BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2),
834 /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */
835 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1),
836 /* L3: accept packet */
837 BPF_STMT(BPF_RET|BPF_K, 0xffffffff),
838 /* L4: discard packet */
839 BPF_STMT(BPF_RET|BPF_K, 0),
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100840 };
841 static const struct sock_fprog filter_prog = {
842 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
843 /* casting const away: */
844 .filter = (struct sock_filter *) filter_instr,
845 };
846
847 log1("Opening raw socket on ifindex %d", ifindex); //log2?
848
849 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
850 log1("Got raw socket fd %d", fd); //log2?
851
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100852 sock.sll_family = AF_PACKET;
853 sock.sll_protocol = htons(ETH_P_IP);
854 sock.sll_ifindex = ifindex;
855 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
856
857 if (CLIENT_PORT == 68) {
858 /* Use only if standard port is in use */
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100859 /* Ignoring error (kernel may lack support for this) */
860 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
861 sizeof(filter_prog)) >= 0)
862 log1("Attached filter to raw socket fd %d", fd); // log?
863 }
864
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100865 log1("Created raw socket");
866
867 return fd;
868}
869
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000870static void change_listen_mode(int new_mode)
Mike Frysinger7031f622006-05-08 03:20:50 +0000871{
Denys Vlasenko4945ed32009-06-17 11:58:11 +0200872 log1("Entering listen mode: %s",
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200873 new_mode != LISTEN_NONE
874 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
875 : "none"
876 );
Denis Vlasenko517413f2008-12-10 11:16:47 +0000877
878 listen_mode = new_mode;
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000879 if (sockfd >= 0) {
880 close(sockfd);
881 sockfd = -1;
882 }
Denis Vlasenko517413f2008-12-10 11:16:47 +0000883 if (new_mode == LISTEN_KERNEL)
884 sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface);
885 else if (new_mode != LISTEN_NONE)
886 sockfd = udhcp_raw_socket(client_config.ifindex);
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100887 /* else LISTEN_NONE: sockfd stays closed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000888}
889
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100890/* Called only on SIGUSR1 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000891static void perform_renew(void)
892{
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000893 bb_info_msg("Performing a DHCP renew");
Mike Frysinger7031f622006-05-08 03:20:50 +0000894 switch (state) {
895 case BOUND:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000896 change_listen_mode(LISTEN_KERNEL);
Mike Frysinger7031f622006-05-08 03:20:50 +0000897 case RENEWING:
898 case REBINDING:
899 state = RENEW_REQUESTED;
900 break;
901 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +0000902 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000903 case REQUESTING:
904 case RELEASED:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000905 change_listen_mode(LISTEN_RAW);
Mike Frysinger7031f622006-05-08 03:20:50 +0000906 state = INIT_SELECTING;
907 break;
908 case INIT_SELECTING:
909 break;
910 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000911}
912
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000913static void perform_release(uint32_t requested_ip, uint32_t server_addr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000914{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000915 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +0000916 struct in_addr temp_addr;
917
918 /* send release packet */
919 if (state == BOUND || state == RENEWING || state == REBINDING) {
920 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000921 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +0000922 temp_addr.s_addr = requested_ip;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000923 bb_info_msg("Unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +0000924 inet_ntoa(temp_addr), buffer);
925 send_release(server_addr, requested_ip); /* unicast */
Rob Landley3f785612006-05-28 01:06:36 +0000926 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000927 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000928 bb_info_msg("Entering released state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000929
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000930 change_listen_mode(LISTEN_NONE);
Mike Frysinger7031f622006-05-08 03:20:50 +0000931 state = RELEASED;
Mike Frysinger7031f622006-05-08 03:20:50 +0000932}
933
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000934static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
935{
936 uint8_t *storage;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100937 int len = strnlen(str, 255);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000938 storage = xzalloc(len + extra + OPT_DATA);
939 storage[OPT_CODE] = code;
940 storage[OPT_LEN] = len + extra;
941 memcpy(storage + extra + OPT_DATA, str, len);
942 return storage;
943}
944
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100945#if BB_MMU
946static void client_background(void)
947{
948 bb_daemonize(0);
949 logmode &= ~LOGMODE_STDIO;
950 /* rewrite pidfile, as our pid is different now */
951 write_pidfile(client_config.pidfile);
952}
953#endif
954
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200955//usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
956//usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__
957//usage:#else
958//usage:# define IF_UDHCP_VERBOSE(...)
959//usage:#endif
960//usage:#define udhcpc_trivial_usage
Keith Younge6bb8d32011-03-07 03:18:46 +0100961//usage: "[-fbnq"IF_UDHCP_VERBOSE("v")"oCRB] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE]\n"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +0200962//usage: " [-H HOSTNAME] [-V VENDOR] [-x OPT:VAL]... [-O OPT]..." IF_FEATURE_UDHCP_PORT(" [-P N]")
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200963//usage:#define udhcpc_full_usage "\n"
964//usage: IF_LONG_OPTS(
965//usage: "\n -i,--interface IFACE Interface to use (default eth0)"
966//usage: "\n -p,--pidfile FILE Create pidfile"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200967//usage: "\n -s,--script PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
Keith Younge6bb8d32011-03-07 03:18:46 +0100968//usage: "\n -B,--broadcast Request broadcast replies"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200969//usage: "\n -t,--retries N Send up to N discover packets"
970//usage: "\n -T,--timeout N Pause between packets (default 3 seconds)"
971//usage: "\n -A,--tryagain N Wait N seconds after failure (default 20)"
972//usage: "\n -f,--foreground Run in foreground"
973//usage: USE_FOR_MMU(
974//usage: "\n -b,--background Background if lease is not obtained"
975//usage: )
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200976//usage: "\n -n,--now Exit if lease is not obtained"
977//usage: "\n -q,--quit Exit after obtaining lease"
978//usage: "\n -R,--release Release IP on exit"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +0200979//usage: "\n -S,--syslog Log to syslog too"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200980//usage: IF_FEATURE_UDHCP_PORT(
981//usage: "\n -P,--client-port N Use port N (default 68)"
982//usage: )
983//usage: IF_FEATURE_UDHCPC_ARPING(
984//usage: "\n -a,--arping Use arping to validate offered address"
985//usage: )
Denys Vlasenko1cbdc032010-10-20 01:42:37 +0200986//usage: "\n -O,--request-option OPT Request option OPT from server (cumulative)"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200987//usage: "\n -o,--no-default-options Don't request any options (unless -O is given)"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +0200988//usage: "\n -r,--request IP Request this IP address"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200989//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +0200990//usage: "\n Examples of string, numeric, and hex byte opts:"
991//usage: "\n -x hostname:bbox - option 12"
992//usage: "\n -x lease:3600 - option 51 (lease time)"
993//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200994//usage: "\n -F,--fqdn NAME Ask server to update DNS mapping for NAME"
995//usage: "\n -H,-h,--hostname NAME Send NAME as client hostname (default none)"
996//usage: "\n -V,--vendorclass VENDOR Vendor identifier (default 'udhcp VERSION')"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +0200997//usage: "\n -C,--clientid-none Don't send MAC as client identifier"
Denys Vlasenko9e244c72010-10-20 01:38:56 +0200998//usage: IF_UDHCP_VERBOSE(
999//usage: "\n -v Verbose"
1000//usage: )
1001//usage: )
1002//usage: IF_NOT_LONG_OPTS(
1003//usage: "\n -i IFACE Interface to use (default eth0)"
1004//usage: "\n -p FILE Create pidfile"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001005//usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
Keith Younge6bb8d32011-03-07 03:18:46 +01001006//usage: "\n -B Request broadcast replies"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001007//usage: "\n -t N Send up to N discover packets"
1008//usage: "\n -T N Pause between packets (default 3 seconds)"
1009//usage: "\n -A N Wait N seconds (default 20) after failure"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001010//usage: "\n -f Run in foreground"
1011//usage: USE_FOR_MMU(
1012//usage: "\n -b Background if lease is not obtained"
1013//usage: )
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001014//usage: "\n -n Exit if lease is not obtained"
1015//usage: "\n -q Exit after obtaining lease"
1016//usage: "\n -R Release IP on exit"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001017//usage: "\n -S Log to syslog too"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001018//usage: IF_FEATURE_UDHCP_PORT(
1019//usage: "\n -P N Use port N (default 68)"
1020//usage: )
1021//usage: IF_FEATURE_UDHCPC_ARPING(
1022//usage: "\n -a Use arping to validate offered address"
1023//usage: )
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001024//usage: "\n -O OPT Request option OPT from server (cumulative)"
1025//usage: "\n -o Don't request any options (unless -O is given)"
1026//usage: "\n -r IP Request this IP address"
1027//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
1028//usage: "\n Examples of string, numeric, and hex byte opts:"
1029//usage: "\n -x hostname:bbox - option 12"
1030//usage: "\n -x lease:3600 - option 51 (lease time)"
1031//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001032//usage: "\n -F NAME Ask server to update DNS mapping for NAME"
1033//usage: "\n -H,-h NAME Send NAME as client hostname (default none)"
1034//usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001035//usage: "\n -C Don't send MAC as client identifier"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001036//usage: IF_UDHCP_VERBOSE(
1037//usage: "\n -v Verbose"
1038//usage: )
1039//usage: )
Denys Vlasenko8993c3f2010-12-25 06:21:54 +01001040//usage: "\nSignals:"
1041//usage: "\n USR1 Renew current lease"
1042//usage: "\n USR2 Release current lease"
1043
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001044
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001045int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001046int udhcpc_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +00001047{
1048 uint8_t *temp, *message;
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001049 const char *str_V, *str_h, *str_F, *str_r;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001050 IF_FEATURE_UDHCP_PORT(char *str_P;)
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001051 void *clientid_mac_ptr;
Denis Vlasenko19183682007-12-10 07:03:38 +00001052 llist_t *list_O = NULL;
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001053 llist_t *list_x = NULL;
Denis Vlasenko68af8e72007-11-22 21:41:14 +00001054 int tryagain_timeout = 20;
1055 int discover_timeout = 3;
1056 int discover_retries = 3;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001057 uint32_t server_addr = server_addr; /* for compiler */
1058 uint32_t requested_ip = 0;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001059 uint32_t xid = 0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001060 uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */
Denis Vlasenkob539c842007-11-29 08:17:45 +00001061 int packet_num;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001062 int timeout; /* must be signed */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001063 unsigned already_waited_sec;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001064 unsigned opt;
Mike Frysinger7031f622006-05-08 03:20:50 +00001065 int max_fd;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001066 int retval;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001067 struct timeval tv;
Denys Vlasenko31af3d52009-06-17 11:57:09 +02001068 struct dhcp_packet packet;
Denis Vlasenko80edead2007-08-02 22:31:05 +00001069 fd_set rfds;
Mike Frysinger7031f622006-05-08 03:20:50 +00001070
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001071 /* Default options */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001072 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
1073 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001074 client_config.interface = "eth0";
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001075 client_config.script = CONFIG_UDHCPC_DEFAULT_SCRIPT;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001076 str_V = "udhcp "BB_VER;
Mike Frysinger7031f622006-05-08 03:20:50 +00001077
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001078 /* Parse command line */
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001079 /* O,x: list; -T,-t,-A take numeric param */
1080 opt_complementary = "O::x::T+:t+:A+"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001081#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
1082 ":vv"
1083#endif
1084 ;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +02001085 IF_LONG_OPTS(applet_long_options = udhcpc_longopts;)
Keith Younge6bb8d32011-03-07 03:18:46 +01001086 opt = getopt32(argv, "CV:H:h:F:i:np:qRr:s:T:t:SA:O:ox:fB"
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001087 USE_FOR_MMU("b")
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001088 IF_FEATURE_UDHCPC_ARPING("a")
1089 IF_FEATURE_UDHCP_PORT("P:")
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001090 "v"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001091 , &str_V, &str_h, &str_h, &str_F
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001092 , &client_config.interface, &client_config.pidfile, &str_r /* i,p */
1093 , &client_config.script /* s */
1094 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
Denis Vlasenko19183682007-12-10 07:03:38 +00001095 , &list_O
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001096 , &list_x
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001097 IF_FEATURE_UDHCP_PORT(, &str_P)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001098#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
1099 , &dhcp_verbose
1100#endif
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001101 );
Denis Vlasenko68af8e72007-11-22 21:41:14 +00001102 if (opt & (OPT_h|OPT_H))
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001103 client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
1104 if (opt & OPT_F) {
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001105 /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001106 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001107 /* Flag bits: 0000NEOS
1108 * S: 1 = Client requests server to update A RR in DNS as well as PTR
1109 * O: 1 = Server indicates to client that DNS has been updated regardless
1110 * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>,
1111 * not "host.domain.com". Format 0 is obsolete.
1112 * N: 1 = Client requests server to not update DNS (S must be 0 then)
1113 * Two [0] bytes which follow are deprecated and must be 0.
1114 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001115 client_config.fqdn[OPT_DATA + 0] = 0x1;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001116 /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */
1117 /*client_config.fqdn[OPT_DATA + 2] = 0; */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001118 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001119 if (opt & OPT_r)
1120 requested_ip = inet_addr(str_r);
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +00001121#if ENABLE_FEATURE_UDHCP_PORT
1122 if (opt & OPT_P) {
1123 CLIENT_PORT = xatou16(str_P);
1124 SERVER_PORT = CLIENT_PORT - 1;
1125 }
1126#endif
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +00001127 if (opt & OPT_o)
1128 client_config.no_default_options = 1;
Denis Vlasenko19183682007-12-10 07:03:38 +00001129 while (list_O) {
Denis Vlasenko18c93022008-08-27 22:29:43 +00001130 char *optstr = llist_pop(&list_O);
Denys Vlasenko5d3aace2011-06-04 05:07:16 +02001131 unsigned n = bb_strtou(optstr, NULL, 0);
1132 if (errno || n > 254) {
1133 n = udhcp_option_idx(optstr);
1134 n = dhcp_optflags[n].code;
1135 }
Denis Vlasenko19183682007-12-10 07:03:38 +00001136 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
Denis Vlasenko19183682007-12-10 07:03:38 +00001137 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001138 while (list_x) {
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001139 char *optstr = llist_pop(&list_x);
1140 char *colon = strchr(optstr, ':');
1141 if (colon)
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001142 *colon = ' ';
Denys Vlasenko9c0ea862010-04-04 02:12:03 +02001143 /* now it looks similar to udhcpd's config file line:
1144 * "optname optval", using the common routine: */
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001145 udhcp_str2optset(optstr, &client_config.options);
1146 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001147
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001148 if (udhcp_read_interface(client_config.interface,
1149 &client_config.ifindex,
1150 NULL,
1151 client_config.client_mac)
1152 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001153 return 1;
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001154 }
1155
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001156 clientid_mac_ptr = NULL;
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001157 if (!(opt & OPT_C) && !udhcp_find_option(client_config.options, DHCP_CLIENT_ID)) {
1158 /* not suppressed and not set, set the default client ID */
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001159 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
1160 client_config.clientid[OPT_DATA] = 1; /* type: ethernet */
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001161 clientid_mac_ptr = client_config.clientid + OPT_DATA+1;
1162 memcpy(clientid_mac_ptr, client_config.client_mac, 6);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001163 }
1164 if (str_V[0] != '\0')
1165 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001166#if !BB_MMU
1167 /* on NOMMU reexec (i.e., background) early */
1168 if (!(opt & OPT_f)) {
1169 bb_daemonize_or_rexec(0 /* flags */, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001170 logmode = LOGMODE_NONE;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001171 }
1172#endif
1173 if (opt & OPT_S) {
Denis Vlasenko5e4fda02009-03-08 23:46:48 +00001174 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001175 logmode |= LOGMODE_SYSLOG;
1176 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001177
Denis Vlasenko80edead2007-08-02 22:31:05 +00001178 /* Make sure fd 0,1,2 are open */
1179 bb_sanitize_stdio();
1180 /* Equivalent of doing a fflush after every \n */
1181 setlinebuf(stdout);
Denis Vlasenko80edead2007-08-02 22:31:05 +00001182 /* Create pidfile */
1183 write_pidfile(client_config.pidfile);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001184 /* Goes to stdout (unless NOMMU) and possibly syslog */
Denis Vlasenkodef88982007-10-07 17:06:01 +00001185 bb_info_msg("%s (v"BB_VER") started", applet_name);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001186 /* Set up the signal pipe */
Mike Frysinger7031f622006-05-08 03:20:50 +00001187 udhcp_sp_setup();
Denys Vlasenko8d114452010-03-22 13:44:09 +01001188 /* We want random_xid to be random... */
1189 srand(monotonic_us());
Mike Frysinger7031f622006-05-08 03:20:50 +00001190
1191 state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +00001192 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001193 change_listen_mode(LISTEN_RAW);
Denis Vlasenkob539c842007-11-29 08:17:45 +00001194 packet_num = 0;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001195 timeout = 0;
Denis Vlasenko19903f02008-05-21 07:03:03 +00001196 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001197
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001198 /* Main event loop. select() waits on signal pipe and possibly
1199 * on sockfd.
1200 * "continue" statements in code below jump to the top of the loop.
1201 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001202 for (;;) {
Denis Vlasenkoec64a572009-01-14 00:28:03 +00001203 /* silence "uninitialized!" warning */
1204 unsigned timestamp_before_wait = timestamp_before_wait;
Mike Frysinger7031f622006-05-08 03:20:50 +00001205
Denis Vlasenko517413f2008-12-10 11:16:47 +00001206 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
1207
1208 /* Was opening raw or udp socket here
1209 * if (listen_mode != LISTEN_NONE && sockfd < 0),
1210 * but on fast network renew responses return faster
1211 * than we open sockets. Thus this code is moved
1212 * to change_listen_mode(). Thus we open listen socket
1213 * BEFORE we send renew request (see "case BOUND:"). */
1214
Denis Vlasenkofbd29182007-04-07 01:05:47 +00001215 max_fd = udhcp_sp_fd_set(&rfds, sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +00001216
Denis Vlasenko19903f02008-05-21 07:03:03 +00001217 tv.tv_sec = timeout - already_waited_sec;
Denis Vlasenkob2342912008-05-21 07:02:16 +00001218 tv.tv_usec = 0;
Denys Vlasenko8d114452010-03-22 13:44:09 +01001219 retval = 0;
1220 /* If we already timed out, fall through with retval = 0, else... */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001221 if ((int)tv.tv_sec > 0) {
Denis Vlasenkob2342912008-05-21 07:02:16 +00001222 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001223 log1("Waiting on select...");
Mike Frysinger7031f622006-05-08 03:20:50 +00001224 retval = select(max_fd + 1, &rfds, NULL, NULL, &tv);
Denis Vlasenkob2342912008-05-21 07:02:16 +00001225 if (retval < 0) {
1226 /* EINTR? A signal was caught, don't panic */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001227 if (errno == EINTR) {
1228 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenkob2342912008-05-21 07:02:16 +00001229 continue;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001230 }
Denis Vlasenko80edead2007-08-02 22:31:05 +00001231 /* Else: an error occured, panic! */
1232 bb_perror_msg_and_die("select");
1233 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001234 }
1235
1236 /* If timeout dropped to zero, time to become active:
1237 * resend discover/renew/whatever
1238 */
1239 if (retval == 0) {
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001240 /* When running on a bridge, the ifindex may have changed
1241 * (e.g. if member interfaces were added/removed
1242 * or if the status of the bridge changed).
1243 * Refresh ifindex and client_mac:
1244 */
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001245 if (udhcp_read_interface(client_config.interface,
1246 &client_config.ifindex,
1247 NULL,
1248 client_config.client_mac)
1249 ) {
1250 return 1; /* iface is gone? */
1251 }
1252 if (clientid_mac_ptr)
1253 memcpy(clientid_mac_ptr, client_config.client_mac, 6);
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001254
Denis Vlasenkof1980f62008-09-26 09:34:59 +00001255 /* We will restart the wait in any case */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001256 already_waited_sec = 0;
1257
Mike Frysinger7031f622006-05-08 03:20:50 +00001258 switch (state) {
1259 case INIT_SELECTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +00001260 if (packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001261 if (packet_num == 0)
1262 xid = random_xid();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001263 /* broadcast */
1264 send_discover(xid, requested_ip);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001265 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001266 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001267 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001268 }
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001269 leasefail:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001270 udhcp_run_script(NULL, "leasefail");
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001271#if BB_MMU /* -b is not supported on NOMMU */
1272 if (opt & OPT_b) { /* background if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001273 bb_info_msg("No lease, forking to background");
1274 client_background();
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001275 /* do not background again! */
1276 opt = ((opt & ~OPT_b) | OPT_f);
1277 } else
1278#endif
1279 if (opt & OPT_n) { /* abort if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001280 bb_info_msg("No lease, failing");
1281 retval = 1;
1282 goto ret;
1283 }
Denis Vlasenko6de89942008-05-21 07:05:06 +00001284 /* wait before trying again */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001285 timeout = tryagain_timeout;
1286 packet_num = 0;
1287 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001288 case REQUESTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +00001289 if (packet_num < discover_retries) {
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001290 /* send broadcast select packet */
1291 send_select(xid, server_addr, requested_ip);
Denis Vlasenko6de89942008-05-21 07:05:06 +00001292 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001293 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001294 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001295 }
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001296 /* Timed out, go back to init state.
1297 * "discover...select...discover..." loops
Denis Vlasenko7d9399e2008-09-26 22:21:03 +00001298 * were seen in the wild. Treat them similarly
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001299 * to "no response to discover" case */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001300 change_listen_mode(LISTEN_RAW);
Denis Vlasenko7d9399e2008-09-26 22:21:03 +00001301 state = INIT_SELECTING;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001302 goto leasefail;
Mike Frysinger7031f622006-05-08 03:20:50 +00001303 case BOUND:
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001304 /* 1/2 lease passed, enter renewing state */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001305 state = RENEWING;
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001306 client_config.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001307 change_listen_mode(LISTEN_KERNEL);
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001308 log1("Entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +00001309 /* fall right through */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001310 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
1311 case_RENEW_REQUESTED:
Mike Frysinger7031f622006-05-08 03:20:50 +00001312 case RENEWING:
Denis Vlasenko19903f02008-05-21 07:03:03 +00001313 if (timeout > 60) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001314 /* send an unicast renew request */
1315 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
1316 * a new UDP socket for sending inside send_renew.
1317 * I hazard to guess existing listening socket
1318 * is somehow conflicting with it, but why is it
1319 * not deterministic then?! Strange.
Denys Vlasenko753a3ce2009-07-19 04:27:10 +02001320 * Anyway, it does recover by eventually failing through
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001321 * into INIT_SELECTING state.
1322 */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001323 send_renew(xid, server_addr, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +00001324 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001325 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001326 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001327 /* Timed out, enter rebinding state */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001328 log1("Entering rebinding state");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001329 state = REBINDING;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001330 /* fall right through */
Mike Frysinger7031f622006-05-08 03:20:50 +00001331 case REBINDING:
Denys Vlasenko219757f2009-10-08 23:05:46 +02001332 /* Switch to bcast receive */
1333 change_listen_mode(LISTEN_RAW);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001334 /* Lease is *really* about to run out,
1335 * try to find DHCP server using broadcast */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001336 if (timeout > 0) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001337 /* send a broadcast renew request */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001338 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +00001339 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001340 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001341 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001342 /* Timed out, enter init state */
1343 bb_info_msg("Lease lost, entering init state");
1344 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001345 state = INIT_SELECTING;
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001346 client_config.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001347 /*timeout = 0; - already is */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001348 packet_num = 0;
1349 continue;
1350 /* case RELEASED: */
Mike Frysinger7031f622006-05-08 03:20:50 +00001351 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001352 /* yah, I know, *you* say it would never happen */
1353 timeout = INT_MAX;
1354 continue; /* back to main loop */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001355 } /* if select timed out */
1356
1357 /* select() didn't timeout, something happened */
1358
1359 /* Is it a signal? */
1360 /* note: udhcp_sp_read checks FD_ISSET before reading */
1361 switch (udhcp_sp_read(&rfds)) {
1362 case SIGUSR1:
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001363 client_config.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001364 perform_renew();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001365 if (state == RENEW_REQUESTED)
1366 goto case_RENEW_REQUESTED;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001367 /* Start things over */
1368 packet_num = 0;
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001369 /* Kill any timeouts, user wants this to hurry along */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001370 timeout = 0;
1371 continue;
1372 case SIGUSR2:
1373 perform_release(requested_ip, server_addr);
1374 timeout = INT_MAX;
1375 continue;
1376 case SIGTERM:
1377 bb_info_msg("Received SIGTERM");
1378 if (opt & OPT_R) /* release on quit */
1379 perform_release(requested_ip, server_addr);
1380 goto ret0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001381 }
1382
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001383 /* Is it a packet? */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001384 if (listen_mode == LISTEN_NONE || !FD_ISSET(sockfd, &rfds))
1385 continue; /* no */
Mike Frysinger7031f622006-05-08 03:20:50 +00001386
Denys Vlasenko4248c332009-06-26 23:23:16 +02001387 {
1388 int len;
1389
1390 /* A packet is ready, read it */
Mike Frysinger7031f622006-05-08 03:20:50 +00001391 if (listen_mode == LISTEN_KERNEL)
Denis Vlasenko6de89942008-05-21 07:05:06 +00001392 len = udhcp_recv_kernel_packet(&packet, sockfd);
Denis Vlasenkob76b9a42008-01-25 22:46:34 +00001393 else
Denis Vlasenko6de89942008-05-21 07:05:06 +00001394 len = udhcp_recv_raw_packet(&packet, sockfd);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001395 if (len == -1) {
1396 /* Error is severe, reopen socket */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001397 bb_info_msg("Read error: %s, reopening socket", strerror(errno));
Denis Vlasenko6de89942008-05-21 07:05:06 +00001398 sleep(discover_timeout); /* 3 seconds by default */
1399 change_listen_mode(listen_mode); /* just close and reopen */
1400 }
Denis Vlasenkob2342912008-05-21 07:02:16 +00001401 /* If this packet will turn out to be unrelated/bogus,
1402 * we will go back and wait for next one.
1403 * Be sure timeout is properly decreased. */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001404 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001405 if (len < 0)
1406 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001407 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001408
Denys Vlasenko4248c332009-06-26 23:23:16 +02001409 if (packet.xid != xid) {
1410 log1("xid %x (our is %x), ignoring packet",
1411 (unsigned)packet.xid, (unsigned)xid);
1412 continue;
1413 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001414
Denys Vlasenko4248c332009-06-26 23:23:16 +02001415 /* Ignore packets that aren't for us */
1416 if (packet.hlen != 6
Denys Vlasenkob3af65b2010-10-20 21:37:23 +02001417 || memcmp(packet.chaddr, client_config.client_mac, 6) != 0
Denys Vlasenko4248c332009-06-26 23:23:16 +02001418 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001419//FIXME: need to also check that last 10 bytes are zero
Denys Vlasenko4248c332009-06-26 23:23:16 +02001420 log1("chaddr does not match, ignoring packet"); // log2?
1421 continue;
1422 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001423
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001424 message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001425 if (message == NULL) {
1426 bb_error_msg("no message type option, ignoring packet");
1427 continue;
1428 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001429
Denys Vlasenko4248c332009-06-26 23:23:16 +02001430 switch (state) {
1431 case INIT_SELECTING:
1432 /* Must be a DHCPOFFER to one of our xid's */
1433 if (*message == DHCPOFFER) {
1434 /* TODO: why we don't just fetch server's IP from IP header? */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001435 temp = udhcp_get_option(&packet, DHCP_SERVER_ID);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001436 if (!temp) {
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +02001437 bb_error_msg("no server ID, ignoring packet");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001438 continue;
1439 /* still selecting - this server looks bad */
Mike Frysinger7031f622006-05-08 03:20:50 +00001440 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001441 /* it IS unaligned sometimes, don't "optimize" */
1442 move_from_unaligned32(server_addr, temp);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +02001443 /*xid = packet.xid; - already is */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001444 requested_ip = packet.yiaddr;
1445
1446 /* enter requesting state */
1447 state = REQUESTING;
1448 timeout = 0;
1449 packet_num = 0;
1450 already_waited_sec = 0;
1451 }
1452 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001453 case REQUESTING:
1454 case RENEWING:
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001455 case RENEW_REQUESTED:
Denys Vlasenko4248c332009-06-26 23:23:16 +02001456 case REBINDING:
1457 if (*message == DHCPACK) {
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001458 temp = udhcp_get_option(&packet, DHCP_LEASE_TIME);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001459 if (!temp) {
1460 bb_error_msg("no lease time with ACK, using 1 hour lease");
1461 lease_seconds = 60 * 60;
1462 } else {
1463 /* it IS unaligned sometimes, don't "optimize" */
1464 move_from_unaligned32(lease_seconds, temp);
1465 lease_seconds = ntohl(lease_seconds);
1466 lease_seconds &= 0x0fffffff; /* paranoia: must not be prone to overflows */
1467 if (lease_seconds < 10) /* and not too small */
1468 lease_seconds = 10;
1469 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001470#if ENABLE_FEATURE_UDHCPC_ARPING
Denys Vlasenko4248c332009-06-26 23:23:16 +02001471 if (opt & OPT_a) {
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001472/* RFC 2131 3.1 paragraph 5:
1473 * "The client receives the DHCPACK message with configuration
1474 * parameters. The client SHOULD perform a final check on the
1475 * parameters (e.g., ARP for allocated network address), and notes
1476 * the duration of the lease specified in the DHCPACK message. At this
1477 * point, the client is configured. If the client detects that the
1478 * address is already in use (e.g., through the use of ARP),
1479 * the client MUST send a DHCPDECLINE message to the server and restarts
1480 * the configuration process..." */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001481 if (!arpping(packet.yiaddr,
1482 NULL,
1483 (uint32_t) 0,
1484 client_config.client_mac,
1485 client_config.interface)
1486 ) {
1487 bb_info_msg("Offered address is in use "
1488 "(got ARP reply), declining");
1489 send_decline(xid, server_addr, packet.yiaddr);
Denis Vlasenko223bc972007-11-22 00:58:49 +00001490
Denys Vlasenko4248c332009-06-26 23:23:16 +02001491 if (state != REQUESTING)
1492 udhcp_run_script(NULL, "deconfig");
1493 change_listen_mode(LISTEN_RAW);
1494 state = INIT_SELECTING;
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001495 client_config.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001496 requested_ip = 0;
1497 timeout = tryagain_timeout;
1498 packet_num = 0;
1499 already_waited_sec = 0;
1500 continue; /* back to main loop */
Denis Vlasenko223bc972007-11-22 00:58:49 +00001501 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001502 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001503#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +02001504 /* enter bound state */
1505 timeout = lease_seconds / 2;
1506 {
1507 struct in_addr temp_addr;
1508 temp_addr.s_addr = packet.yiaddr;
1509 bb_info_msg("Lease of %s obtained, lease time %u",
1510 inet_ntoa(temp_addr), (unsigned)lease_seconds);
1511 }
1512 requested_ip = packet.yiaddr;
Denys Vlasenko4abfc262009-07-19 04:35:16 +02001513 udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew");
Mike Frysinger7031f622006-05-08 03:20:50 +00001514
Denys Vlasenko4248c332009-06-26 23:23:16 +02001515 state = BOUND;
1516 change_listen_mode(LISTEN_NONE);
1517 if (opt & OPT_q) { /* quit after lease */
1518 if (opt & OPT_R) /* release on quit */
1519 perform_release(requested_ip, server_addr);
1520 goto ret0;
1521 }
Justin Maggardaa369e02009-08-13 01:26:17 +02001522 /* future renew failures should not exit (JM) */
1523 opt &= ~OPT_n;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001524#if BB_MMU /* NOMMU case backgrounded earlier */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001525 if (!(opt & OPT_f)) {
1526 client_background();
1527 /* do not background again! */
1528 opt = ((opt & ~OPT_b) | OPT_f);
1529 }
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001530#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +02001531 already_waited_sec = 0;
1532 continue; /* back to main loop */
Mike Frysinger7031f622006-05-08 03:20:50 +00001533 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001534 if (*message == DHCPNAK) {
1535 /* return to init state */
1536 bb_info_msg("Received DHCP NAK");
1537 udhcp_run_script(&packet, "nak");
1538 if (state != REQUESTING)
1539 udhcp_run_script(NULL, "deconfig");
1540 change_listen_mode(LISTEN_RAW);
1541 sleep(3); /* avoid excessive network traffic */
1542 state = INIT_SELECTING;
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001543 client_config.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001544 requested_ip = 0;
Denis Vlasenkob539c842007-11-29 08:17:45 +00001545 timeout = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001546 packet_num = 0;
1547 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001548 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001549 continue;
1550 /* case BOUND: - ignore all packets */
1551 /* case RELEASED: - ignore all packets */
Mike Frysinger7031f622006-05-08 03:20:50 +00001552 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001553 /* back to main loop */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001554 } /* for (;;) - main loop ends */
1555
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001556 ret0:
1557 retval = 0;
1558 ret:
Denis Vlasenkob2342912008-05-21 07:02:16 +00001559 /*if (client_config.pidfile) - remove_pidfile has its own check */
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001560 remove_pidfile(client_config.pidfile);
1561 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001562}