blob: bea589d71127c51472e9c38679369fee1bb8b22f [file] [log] [blame]
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001/* vi: set sw=4 ts=4: */
2/*
3 * DHCPv6 client.
4 *
5 * 2011-11.
6 * WARNING: THIS CODE IS INCOMPLETE. IT IS NOWHERE NEAR
7 * TO BE READY FOR PRODUCTION USE.
8 *
9 * Copyright (C) 2011 Denys Vlasenko.
10 *
11 * Licensed under GPLv2, see file LICENSE in this source tree.
12 */
13
14//config:config UDHCPC6
Denys Vlasenkoc6137ba2017-01-04 12:13:38 +010015//config: bool "udhcpc6 (DHCPv6 client, NOT READY)"
Mike Frysinger3da46c82012-05-02 21:45:35 -040016//config: default n # not yet ready
17//config: depends on FEATURE_IPV6
18//config: help
19//config: udhcpc6 is a DHCPv6 client
Denys Vlasenko9ba75042011-11-07 15:55:39 +010020
21//applet:IF_UDHCPC6(APPLET(udhcpc6, BB_DIR_USR_BIN, BB_SUID_DROP))
22
Denys Vlasenko8cab6672012-04-20 14:48:00 +020023//kbuild:lib-$(CONFIG_UDHCPC6) += d6_dhcpc.o d6_packet.o d6_socket.o common.o socket.o signalpipe.o
Denys Vlasenko9ba75042011-11-07 15:55:39 +010024
25
26#include <syslog.h>
27/* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
28#define WANT_PIDFILE 1
29#include "common.h"
30#include "dhcpd.h"
31#include "dhcpc.h"
32#include "d6_common.h"
33
34#include <netinet/if_ether.h>
35#include <netpacket/packet.h>
36#include <linux/filter.h>
37
38/* "struct client_config_t client_config" is in bb_common_bufsiz1 */
39
40
41#if ENABLE_LONG_OPTS
Denys Vlasenko7e21f042011-11-08 11:39:41 +010042static const char udhcpc6_longopts[] ALIGN1 =
Denys Vlasenko9ba75042011-11-07 15:55:39 +010043 "interface\0" Required_argument "i"
44 "now\0" No_argument "n"
45 "pidfile\0" Required_argument "p"
46 "quit\0" No_argument "q"
47 "release\0" No_argument "R"
48 "request\0" Required_argument "r"
49 "script\0" Required_argument "s"
50 "timeout\0" Required_argument "T"
Denys Vlasenko9ba75042011-11-07 15:55:39 +010051 "retries\0" Required_argument "t"
52 "tryagain\0" Required_argument "A"
53 "syslog\0" No_argument "S"
54 "request-option\0" Required_argument "O"
55 "no-default-options\0" No_argument "o"
56 "foreground\0" No_argument "f"
57 "background\0" No_argument "b"
Denys Vlasenko9ba75042011-11-07 15:55:39 +010058/// 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_i = 1 << 0,
65 OPT_n = 1 << 1,
66 OPT_p = 1 << 2,
67 OPT_q = 1 << 3,
68 OPT_R = 1 << 4,
69 OPT_r = 1 << 5,
70 OPT_s = 1 << 6,
71 OPT_T = 1 << 7,
72 OPT_t = 1 << 8,
73 OPT_S = 1 << 9,
74 OPT_A = 1 << 10,
75 OPT_O = 1 << 11,
76 OPT_o = 1 << 12,
77 OPT_x = 1 << 13,
78 OPT_f = 1 << 14,
Denys Vlasenko9ba75042011-11-07 15:55:39 +010079/* The rest has variable bit positions, need to be clever */
Denys Vlasenko7e21f042011-11-08 11:39:41 +010080 OPTBIT_f = 14,
Denys Vlasenko9ba75042011-11-07 15:55:39 +010081 USE_FOR_MMU( OPTBIT_b,)
82 ///IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
83 IF_FEATURE_UDHCP_PORT( OPTBIT_P,)
84 USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,)
85 ///IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
86 IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,)
87};
88
89
90/*** Utility functions ***/
91
92static void *d6_find_option(uint8_t *option, uint8_t *option_end, unsigned code)
93{
94 /* "length minus 4" */
95 int len_m4 = option_end - option - 4;
96 while (len_m4 >= 0) {
97 /* Next option's len is too big? */
Denys Vlasenko68c5b282011-11-07 16:21:24 +010098 if (option[3] > len_m4)
Denys Vlasenko9ba75042011-11-07 15:55:39 +010099 return NULL; /* yes. bogus packet! */
100 /* So far we treat any opts with code >255
101 * or len >255 as bogus, and stop at once.
102 * This simplifies big-endian handling.
103 */
Denys Vlasenko68c5b282011-11-07 16:21:24 +0100104 if (option[0] != 0 || option[2] != 0)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100105 return NULL;
106 /* Option seems to be valid */
107 /* Does its code match? */
Denys Vlasenko68c5b282011-11-07 16:21:24 +0100108 if (option[1] == code)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100109 return option; /* yes! */
Denys Vlasenko68c5b282011-11-07 16:21:24 +0100110 option += option[3] + 4;
111 len_m4 -= option[3] + 4;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100112 }
113 return NULL;
114}
115
116static void *d6_copy_option(uint8_t *option, uint8_t *option_end, unsigned code)
117{
118 uint8_t *opt = d6_find_option(option, option_end, code);
119 if (!opt)
120 return opt;
Ron Yorstond840c5d2015-07-19 23:05:20 +0200121 return xmemdup(opt, opt[3] + 4);
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100122}
123
124static void *d6_store_blob(void *dst, const void *src, unsigned len)
125{
126 memcpy(dst, src, len);
127 return dst + len;
128}
129
130
131/*** Script execution code ***/
132
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100133static char** new_env(void)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100134{
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100135 client6_data.env_ptr = xrealloc_vector(client6_data.env_ptr, 3, client6_data.env_idx);
136 return &client6_data.env_ptr[client6_data.env_idx++];
137}
138
139/* put all the parameters into the environment */
140static void option_to_env(uint8_t *option, uint8_t *option_end)
141{
142 /* "length minus 4" */
143 int len_m4 = option_end - option - 4;
144 while (len_m4 >= 0) {
145 uint32_t v32;
146 char ipv6str[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")];
147
148 if (option[0] != 0 || option[2] != 0)
149 break;
150
151 switch (option[1]) {
152 //case D6_OPT_CLIENTID:
153 //case D6_OPT_SERVERID:
154 case D6_OPT_IA_NA:
155 case D6_OPT_IA_PD:
156 option_to_env(option + 16, option + 4 + option[3]);
157 break;
158 //case D6_OPT_IA_TA:
159 case D6_OPT_IAADDR:
160/* 0 1 2 3
161 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
162 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
163 * | OPTION_IAADDR | option-len |
164 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
165 * | |
166 * | IPv6 address |
167 * | |
168 * | |
169 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
170 * | preferred-lifetime |
171 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
172 * | valid-lifetime |
173 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
174 */
175 sprint_nip6(ipv6str, option + 4);
176 *new_env() = xasprintf("ipv6=%s", ipv6str);
177
178 move_from_unaligned32(v32, option + 4 + 16 + 4);
179 *new_env() = xasprintf("lease=%u", (unsigned)v32);
180 break;
181
182 //case D6_OPT_ORO:
183 //case D6_OPT_PREFERENCE:
184 //case D6_OPT_ELAPSED_TIME:
185 //case D6_OPT_RELAY_MSG:
186 //case D6_OPT_AUTH:
187 //case D6_OPT_UNICAST:
188 //case D6_OPT_STATUS_CODE:
189 //case D6_OPT_RAPID_COMMIT:
190 //case D6_OPT_USER_CLASS:
191 //case D6_OPT_VENDOR_CLASS:
192 //case D6_OPT_VENDOR_OPTS:
193 //case D6_OPT_INTERFACE_ID:
194 //case D6_OPT_RECONF_MSG:
195 //case D6_OPT_RECONF_ACCEPT:
196
197 case D6_OPT_IAPREFIX:
198/* 0 1 2 3
199 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
200 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
201 * | OPTION_IAPREFIX | option-length |
202 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
203 * | preferred-lifetime |
204 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
205 * | valid-lifetime |
206 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
207 * | prefix-length | |
208 * +-+-+-+-+-+-+-+-+ IPv6 prefix |
209 * | (16 octets) |
210 * | |
211 * | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
212 * | |
213 * +-+-+-+-+-+-+-+-+
214 */
215 //move_from_unaligned32(v32, option + 4 + 4);
216 //*new_env() = xasprintf("lease=%u", (unsigned)v32);
217
218 sprint_nip6(ipv6str, option + 4 + 4 + 1);
219 *new_env() = xasprintf("ipv6prefix=%s/%u", ipv6str, (unsigned)(option[4 + 4]));
220 }
221 option += 4 + option[3];
222 len_m4 -= 4 + option[3];
223 }
224}
225
226static char **fill_envp(struct d6_packet *packet)
227{
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100228 char **envp, **curr;
229
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100230 client6_data.env_ptr = NULL;
231 client6_data.env_idx = 0;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100232
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100233 *new_env() = xasprintf("interface=%s", client_config.interface);
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100234
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100235 if (packet)
236 option_to_env(packet->d6_options, packet->d6_options + sizeof(packet->d6_options));
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100237
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100238 envp = curr = client6_data.env_ptr;
239 while (*curr)
240 putenv(*curr++);
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100241
242 return envp;
243}
244
245/* Call a script with a par file and env vars */
246static void d6_run_script(struct d6_packet *packet, const char *name)
247{
248 char **envp, **curr;
249 char *argv[3];
250
251 envp = fill_envp(packet);
252
253 /* call script */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200254 log1("executing %s %s", client_config.script, name);
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100255 argv[0] = (char*) client_config.script;
256 argv[1] = (char*) name;
257 argv[2] = NULL;
258 spawn_and_wait(argv);
259
260 for (curr = envp; *curr; curr++) {
261 log2(" %s", *curr);
262 bb_unsetenv_and_free(*curr);
263 }
264 free(envp);
265}
266
267
268/*** Sending/receiving packets ***/
269
270static ALWAYS_INLINE uint32_t random_xid(void)
271{
272 uint32_t t = rand() & htonl(0x00ffffff);
273 return t;
274}
275
276/* Initialize the packet with the proper defaults */
277static uint8_t *init_d6_packet(struct d6_packet *packet, char type, uint32_t xid)
278{
279 struct d6_option *clientid;
280
281 memset(packet, 0, sizeof(*packet));
282
283 packet->d6_xid32 = xid;
284 packet->d6_msg_type = type;
285
286 clientid = (void*)client_config.clientid;
287 return d6_store_blob(packet->d6_options, clientid, clientid->len + 2+2);
288}
289
290static uint8_t *add_d6_client_options(uint8_t *ptr)
291{
292 return ptr;
293 //uint8_t c;
294 //int i, end, len;
295
296 /* Add a "param req" option with the list of options we'd like to have
297 * from stubborn DHCP servers. Pull the data from the struct in common.c.
298 * No bounds checking because it goes towards the head of the packet. */
299 //...
300
301 /* Add -x options if any */
302 //...
303}
304
305static int d6_mcast_from_client_config_ifindex(struct d6_packet *packet, uint8_t *end)
306{
307 static const uint8_t FF02__1_2[16] = {
308 0xFF, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
309 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
310 };
311
312 return d6_send_raw_packet(
313 packet, (end - (uint8_t*) packet),
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100314 /*src*/ NULL, CLIENT_PORT6,
315 /*dst*/ (struct in6_addr*)FF02__1_2, SERVER_PORT6, MAC_BCAST_ADDR,
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100316 client_config.ifindex
317 );
318}
319
320/* Milticast a DHCPv6 Solicit packet to the network, with an optionally requested IP.
321 *
322 * RFC 3315 17.1.1. Creation of Solicit Messages
323 *
324 * The client MUST include a Client Identifier option to identify itself
325 * to the server. The client includes IA options for any IAs to which
326 * it wants the server to assign addresses. The client MAY include
327 * addresses in the IAs as a hint to the server about addresses for
328 * which the client has a preference. ...
329 *
330 * The client uses IA_NA options to request the assignment of non-
331 * temporary addresses and uses IA_TA options to request the assignment
332 * of temporary addresses. Either IA_NA or IA_TA options, or a
333 * combination of both, can be included in DHCP messages.
334 *
335 * The client SHOULD include an Option Request option (see section 22.7)
336 * to indicate the options the client is interested in receiving. The
337 * client MAY additionally include instances of those options that are
338 * identified in the Option Request option, with data values as hints to
339 * the server about parameter values the client would like to have
340 * returned.
341 *
342 * The client includes a Reconfigure Accept option (see section 22.20)
343 * if the client is willing to accept Reconfigure messages from the
344 * server.
345 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
346 | OPTION_CLIENTID | option-len |
347 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
348 . .
349 . DUID .
350 . (variable length) .
351 . .
352 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
353
354
355 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
356 | OPTION_IA_NA | option-len |
357 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
358 | IAID (4 octets) |
359 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
360 | T1 |
361 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
362 | T2 |
363 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
364 | |
365 . IA_NA-options .
366 . .
367 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
368
369
370 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
371 | OPTION_IAADDR | option-len |
372 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
373 | |
374 | IPv6 address |
375 | |
376 | |
377 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
378 | preferred-lifetime |
379 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
380 | valid-lifetime |
381 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
382 . .
383 . IAaddr-options .
384 . .
385 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
386
387
388 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
389 | OPTION_ORO | option-len |
390 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
391 | requested-option-code-1 | requested-option-code-2 |
392 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
393 | ... |
394 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
395
396
397 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
398 | OPTION_RECONF_ACCEPT | 0 |
399 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
400 */
401/* NOINLINE: limit stack usage in caller */
402static NOINLINE int send_d6_discover(uint32_t xid, struct in6_addr *requested_ipv6)
403{
404 struct d6_packet packet;
405 uint8_t *opt_ptr;
406 unsigned len;
407
408 /* Fill in: msg type, client id */
409 opt_ptr = init_d6_packet(&packet, D6_MSG_SOLICIT, xid);
410
411 /* Create new IA_NA, optionally with included IAADDR with requested IP */
412 free(client6_data.ia_na);
413 len = requested_ipv6 ? 2+2+4+4+4 + 2+2+16+4+4 : 2+2+4+4+4;
414 client6_data.ia_na = xzalloc(len);
415 client6_data.ia_na->code = D6_OPT_IA_NA;
416 client6_data.ia_na->len = len - 4;
417 *(uint32_t*)client6_data.ia_na->data = rand(); /* IAID */
418 if (requested_ipv6) {
419 struct d6_option *iaaddr = (void*)(client6_data.ia_na->data + 4+4+4);
420 iaaddr->code = D6_OPT_IAADDR;
421 iaaddr->len = 16+4+4;
422 memcpy(iaaddr->data, requested_ipv6, 16);
423 }
424 opt_ptr = d6_store_blob(opt_ptr, client6_data.ia_na, len);
425
426 /* Add options:
427 * "param req" option according to -O, options specified with -x
428 */
429 opt_ptr = add_d6_client_options(opt_ptr);
430
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200431 bb_error_msg("sending %s", "discover");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100432 return d6_mcast_from_client_config_ifindex(&packet, opt_ptr);
433}
434
435/* Multicast a DHCPv6 request message
436 *
437 * RFC 3315 18.1.1. Creation and Transmission of Request Messages
438 *
439 * The client uses a Request message to populate IAs with addresses and
440 * obtain other configuration information. The client includes one or
441 * more IA options in the Request message. The server then returns
442 * addresses and other information about the IAs to the client in IA
443 * options in a Reply message.
444 *
445 * The client generates a transaction ID and inserts this value in the
446 * "transaction-id" field.
447 *
448 * The client places the identifier of the destination server in a
449 * Server Identifier option.
450 *
451 * The client MUST include a Client Identifier option to identify itself
452 * to the server. The client adds any other appropriate options,
453 * including one or more IA options (if the client is requesting that
454 * the server assign it some network addresses).
455 *
456 * The client MUST include an Option Request option (see section 22.7)
457 * to indicate the options the client is interested in receiving. The
458 * client MAY include options with data values as hints to the server
459 * about parameter values the client would like to have returned.
460 *
461 * The client includes a Reconfigure Accept option (see section 22.20)
462 * indicating whether or not the client is willing to accept Reconfigure
463 * messages from the server.
464 */
465/* NOINLINE: limit stack usage in caller */
466static NOINLINE int send_d6_select(uint32_t xid)
467{
468 struct d6_packet packet;
469 uint8_t *opt_ptr;
470
471 /* Fill in: msg type, client id */
472 opt_ptr = init_d6_packet(&packet, D6_MSG_REQUEST, xid);
473
474 /* server id */
475 opt_ptr = d6_store_blob(opt_ptr, client6_data.server_id, client6_data.server_id->len + 2+2);
476 /* IA NA (contains requested IP) */
477 opt_ptr = d6_store_blob(opt_ptr, client6_data.ia_na, client6_data.ia_na->len + 2+2);
478
479 /* Add options:
480 * "param req" option according to -O, options specified with -x
481 */
482 opt_ptr = add_d6_client_options(opt_ptr);
483
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200484 bb_error_msg("sending %s", "select");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100485 return d6_mcast_from_client_config_ifindex(&packet, opt_ptr);
486}
487
488/* Unicast or broadcast a DHCP renew message
489 *
490 * RFC 3315 18.1.3. Creation and Transmission of Renew Messages
491 *
492 * To extend the valid and preferred lifetimes for the addresses
493 * associated with an IA, the client sends a Renew message to the server
494 * from which the client obtained the addresses in the IA containing an
495 * IA option for the IA. The client includes IA Address options in the
496 * IA option for the addresses associated with the IA. The server
497 * determines new lifetimes for the addresses in the IA according to the
498 * administrative configuration of the server. The server may also add
499 * new addresses to the IA. The server may remove addresses from the IA
500 * by setting the preferred and valid lifetimes of those addresses to
501 * zero.
502 *
503 * The server controls the time at which the client contacts the server
504 * to extend the lifetimes on assigned addresses through the T1 and T2
505 * parameters assigned to an IA.
506 *
507 * At time T1 for an IA, the client initiates a Renew/Reply message
508 * exchange to extend the lifetimes on any addresses in the IA. The
509 * client includes an IA option with all addresses currently assigned to
510 * the IA in its Renew message.
511 *
512 * If T1 or T2 is set to 0 by the server (for an IA_NA) or there are no
513 * T1 or T2 times (for an IA_TA), the client may send a Renew or Rebind
514 * message, respectively, at the client's discretion.
515 *
516 * The client sets the "msg-type" field to RENEW. The client generates
517 * a transaction ID and inserts this value in the "transaction-id"
518 * field.
519 *
520 * The client places the identifier of the destination server in a
521 * Server Identifier option.
522 *
523 * The client MUST include a Client Identifier option to identify itself
524 * to the server. The client adds any appropriate options, including
525 * one or more IA options. The client MUST include the list of
526 * addresses the client currently has associated with the IAs in the
527 * Renew message.
528 *
529 * The client MUST include an Option Request option (see section 22.7)
530 * to indicate the options the client is interested in receiving. The
531 * client MAY include options with data values as hints to the server
532 * about parameter values the client would like to have returned.
533 */
534/* NOINLINE: limit stack usage in caller */
535static NOINLINE int send_d6_renew(uint32_t xid, struct in6_addr *server_ipv6, struct in6_addr *our_cur_ipv6)
536{
537 struct d6_packet packet;
538 uint8_t *opt_ptr;
539
540 /* Fill in: msg type, client id */
541 opt_ptr = init_d6_packet(&packet, DHCPREQUEST, xid);
542
543 /* server id */
544 opt_ptr = d6_store_blob(opt_ptr, client6_data.server_id, client6_data.server_id->len + 2+2);
545 /* IA NA (contains requested IP) */
546 opt_ptr = d6_store_blob(opt_ptr, client6_data.ia_na, client6_data.ia_na->len + 2+2);
547
548 /* Add options:
549 * "param req" option according to -O, options specified with -x
550 */
551 opt_ptr = add_d6_client_options(opt_ptr);
552
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200553 bb_error_msg("sending %s", "renew");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100554 if (server_ipv6)
555 return d6_send_kernel_packet(
556 &packet, (opt_ptr - (uint8_t*) &packet),
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100557 our_cur_ipv6, CLIENT_PORT6,
558 server_ipv6, SERVER_PORT6
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100559 );
560 return d6_mcast_from_client_config_ifindex(&packet, opt_ptr);
561}
562
563/* Unicast a DHCP release message */
564static int send_d6_release(struct in6_addr *server_ipv6, struct in6_addr *our_cur_ipv6)
565{
566 struct d6_packet packet;
567 uint8_t *opt_ptr;
568
569 /* Fill in: msg type, client id */
570 opt_ptr = init_d6_packet(&packet, D6_MSG_RELEASE, random_xid());
571 /* server id */
572 opt_ptr = d6_store_blob(opt_ptr, client6_data.server_id, client6_data.server_id->len + 2+2);
573 /* IA NA (contains our current IP) */
574 opt_ptr = d6_store_blob(opt_ptr, client6_data.ia_na, client6_data.ia_na->len + 2+2);
575
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200576 bb_error_msg("sending %s", "release");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100577 return d6_send_kernel_packet(
578 &packet, (opt_ptr - (uint8_t*) &packet),
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100579 our_cur_ipv6, CLIENT_PORT6,
580 server_ipv6, SERVER_PORT6
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100581 );
582}
583
584/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
585/* NOINLINE: limit stack usage in caller */
586static NOINLINE int d6_recv_raw_packet(struct in6_addr *peer_ipv6
587 UNUSED_PARAM
588 , struct d6_packet *d6_pkt, int fd)
589{
590 int bytes;
591 struct ip6_udp_d6_packet packet;
592
593 bytes = safe_read(fd, &packet, sizeof(packet));
594 if (bytes < 0) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200595 log1("packet read error, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100596 /* NB: possible down interface, etc. Caller should pause. */
597 return bytes; /* returns -1 */
598 }
599
600 if (bytes < (int) (sizeof(packet.ip6) + sizeof(packet.udp))) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200601 log1("packet is too short, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100602 return -2;
603 }
604
605 if (bytes < sizeof(packet.ip6) + ntohs(packet.ip6.ip6_plen)) {
606 /* packet is bigger than sizeof(packet), we did partial read */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200607 log1("oversized packet, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100608 return -2;
609 }
610
611 /* ignore any extra garbage bytes */
612 bytes = sizeof(packet.ip6) + ntohs(packet.ip6.ip6_plen);
613
614 /* make sure its the right packet for us, and that it passes sanity checks */
615 if (packet.ip6.ip6_nxt != IPPROTO_UDP
616 || (packet.ip6.ip6_vfc >> 4) != 6
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100617 || packet.udp.dest != htons(CLIENT_PORT6)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100618 /* || bytes > (int) sizeof(packet) - can't happen */
619 || packet.udp.len != packet.ip6.ip6_plen
620 ) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200621 log1("unrelated/bogus packet, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100622 return -2;
623 }
624
625//How to do this for ipv6?
626// /* verify UDP checksum. IP header has to be modified for this */
627// memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
628// /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
629// packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
630// check = packet.udp.check;
631// packet.udp.check = 0;
632// if (check && check != inet_cksum((uint16_t *)&packet, bytes)) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200633// log1("packet with bad UDP checksum received, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100634// return -2;
635// }
636
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200637 log1("received %s", "a packet");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100638 d6_dump_packet(&packet.data);
639
640 bytes -= sizeof(packet.ip6) + sizeof(packet.udp);
641 memcpy(d6_pkt, &packet.data, bytes);
642 return bytes;
643}
644
645
646/*** Main ***/
647
648static int sockfd = -1;
649
650#define LISTEN_NONE 0
651#define LISTEN_KERNEL 1
652#define LISTEN_RAW 2
653static smallint listen_mode;
654
655/* initial state: (re)start DHCP negotiation */
656#define INIT_SELECTING 0
657/* discover was sent, DHCPOFFER reply received */
658#define REQUESTING 1
659/* select/renew was sent, DHCPACK reply received */
660#define BOUND 2
661/* half of lease passed, want to renew it by sending unicast renew requests */
662#define RENEWING 3
663/* renew requests were not answered, lease is almost over, send broadcast renew */
664#define REBINDING 4
665/* manually requested renew (SIGUSR1) */
666#define RENEW_REQUESTED 5
667/* release, possibly manually requested (SIGUSR2) */
668#define RELEASED 6
669static smallint state;
670
671static int d6_raw_socket(int ifindex)
672{
673 int fd;
674 struct sockaddr_ll sock;
675
676 /*
677 * Comment:
678 *
679 * I've selected not to see LL header, so BPF doesn't see it, too.
680 * The filter may also pass non-IP and non-ARP packets, but we do
681 * a more complete check when receiving the message in userspace.
682 *
683 * and filter shamelessly stolen from:
684 *
685 * http://www.flamewarmaster.de/software/dhcpclient/
686 *
687 * There are a few other interesting ideas on that page (look under
688 * "Motivation"). Use of netlink events is most interesting. Think
689 * of various network servers listening for events and reconfiguring.
690 * That would obsolete sending HUP signals and/or make use of restarts.
691 *
692 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
693 * License: GPL v2.
694 *
695 * TODO: make conditional?
696 */
697#if 0
698 static const struct sock_filter filter_instr[] = {
699 /* load 9th byte (protocol) */
700 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
701 /* jump to L1 if it is IPPROTO_UDP, else to L4 */
702 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6),
703 /* L1: load halfword from offset 6 (flags and frag offset) */
704 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6),
705 /* jump to L4 if any bits in frag offset field are set, else to L2 */
706 BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0),
707 /* L2: skip IP header (load index reg with header len) */
708 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0),
709 /* load udp destination port from halfword[header_len + 2] */
710 BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2),
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100711 /* jump to L3 if udp dport is CLIENT_PORT6, else to L4 */
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100712 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1),
713 /* L3: accept packet */
Denys Vlasenkoffc3a932014-02-19 14:17:11 +0100714 BPF_STMT(BPF_RET|BPF_K, 0x7fffffff),
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100715 /* L4: discard packet */
716 BPF_STMT(BPF_RET|BPF_K, 0),
717 };
718 static const struct sock_fprog filter_prog = {
719 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
720 /* casting const away: */
721 .filter = (struct sock_filter *) filter_instr,
722 };
723#endif
724
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200725 log1("opening raw socket on ifindex %d", ifindex); //log2?
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100726
727 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6));
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200728 log1("got raw socket fd %d", fd); //log2?
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100729
730 sock.sll_family = AF_PACKET;
731 sock.sll_protocol = htons(ETH_P_IPV6);
732 sock.sll_ifindex = ifindex;
733 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
734
735#if 0
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100736 if (CLIENT_PORT6 == 546) {
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100737 /* Use only if standard port is in use */
738 /* Ignoring error (kernel may lack support for this) */
739 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
740 sizeof(filter_prog)) >= 0)
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200741 log1("attached filter to raw socket fd %d", fd); // log?
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100742 }
743#endif
744
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200745 log1("created raw socket");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100746
747 return fd;
748}
749
750static void change_listen_mode(int new_mode)
751{
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200752 log1("entering listen mode: %s",
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100753 new_mode != LISTEN_NONE
754 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
755 : "none"
756 );
757
758 listen_mode = new_mode;
759 if (sockfd >= 0) {
760 close(sockfd);
761 sockfd = -1;
762 }
763 if (new_mode == LISTEN_KERNEL)
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100764 sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT6, client_config.interface);
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100765 else if (new_mode != LISTEN_NONE)
766 sockfd = d6_raw_socket(client_config.ifindex);
767 /* else LISTEN_NONE: sockfd stays closed */
768}
769
770/* Called only on SIGUSR1 */
771static void perform_renew(void)
772{
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200773 bb_error_msg("performing DHCP renew");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100774 switch (state) {
775 case BOUND:
776 change_listen_mode(LISTEN_KERNEL);
777 case RENEWING:
778 case REBINDING:
779 state = RENEW_REQUESTED;
780 break;
781 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
782 d6_run_script(NULL, "deconfig");
783 case REQUESTING:
784 case RELEASED:
785 change_listen_mode(LISTEN_RAW);
786 state = INIT_SELECTING;
787 break;
788 case INIT_SELECTING:
789 break;
790 }
791}
792
793static void perform_d6_release(struct in6_addr *server_ipv6, struct in6_addr *our_cur_ipv6)
794{
795 /* send release packet */
Denys Vlasenko44399e02016-07-03 20:26:44 +0200796 if (state == BOUND
797 || state == RENEWING
798 || state == REBINDING
799 || state == RENEW_REQUESTED
800 ) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200801 bb_error_msg("unicasting a release");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100802 send_d6_release(server_ipv6, our_cur_ipv6); /* unicast */
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100803 }
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200804 bb_error_msg("entering released state");
Peter Korsgaardb6355e22016-08-26 18:46:34 +0200805/*
806 * We can be here on: SIGUSR2,
807 * or on exit (SIGTERM) and -R "release on quit" is specified.
808 * Users requested to be notified in all cases, even if not in one
809 * of the states above.
810 */
811 d6_run_script(NULL, "deconfig");
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100812 change_listen_mode(LISTEN_NONE);
813 state = RELEASED;
814}
815
816///static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
817///{
818/// uint8_t *storage;
819/// int len = strnlen(str, 255);
820/// storage = xzalloc(len + extra + OPT_DATA);
821/// storage[OPT_CODE] = code;
822/// storage[OPT_LEN] = len + extra;
823/// memcpy(storage + extra + OPT_DATA, str, len);
824/// return storage;
825///}
826
827#if BB_MMU
828static void client_background(void)
829{
830 bb_daemonize(0);
831 logmode &= ~LOGMODE_STDIO;
832 /* rewrite pidfile, as our pid is different now */
833 write_pidfile(client_config.pidfile);
834}
835#endif
836
837//usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
838//usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__
839//usage:#else
840//usage:# define IF_UDHCP_VERBOSE(...)
841//usage:#endif
842//usage:#define udhcpc6_trivial_usage
Denys Vlasenko7e21f042011-11-08 11:39:41 +0100843//usage: "[-fbnq"IF_UDHCP_VERBOSE("v")"oR] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE]\n"
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100844//usage: " [-x OPT:VAL]... [-O OPT]..." IF_FEATURE_UDHCP_PORT(" [-P N]")
845//usage:#define udhcpc6_full_usage "\n"
846//usage: IF_LONG_OPTS(
847//usage: "\n -i,--interface IFACE Interface to use (default eth0)"
848//usage: "\n -p,--pidfile FILE Create pidfile"
849//usage: "\n -s,--script PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
850//usage: "\n -B,--broadcast Request broadcast replies"
851//usage: "\n -t,--retries N Send up to N discover packets"
852//usage: "\n -T,--timeout N Pause between packets (default 3 seconds)"
853//usage: "\n -A,--tryagain N Wait N seconds after failure (default 20)"
854//usage: "\n -f,--foreground Run in foreground"
855//usage: USE_FOR_MMU(
856//usage: "\n -b,--background Background if lease is not obtained"
857//usage: )
858//usage: "\n -n,--now Exit if lease is not obtained"
859//usage: "\n -q,--quit Exit after obtaining lease"
860//usage: "\n -R,--release Release IP on exit"
861//usage: "\n -S,--syslog Log to syslog too"
862//usage: IF_FEATURE_UDHCP_PORT(
Denys Vlasenko7e21f042011-11-08 11:39:41 +0100863//usage: "\n -P,--client-port N Use port N (default 546)"
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100864//usage: )
865////usage: IF_FEATURE_UDHCPC_ARPING(
866////usage: "\n -a,--arping Use arping to validate offered address"
867////usage: )
868//usage: "\n -O,--request-option OPT Request option OPT from server (cumulative)"
869//usage: "\n -o,--no-default-options Don't request any options (unless -O is given)"
870//usage: "\n -r,--request IP Request this IP address"
871//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
872//usage: "\n Examples of string, numeric, and hex byte opts:"
873//usage: "\n -x hostname:bbox - option 12"
874//usage: "\n -x lease:3600 - option 51 (lease time)"
875//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
876//usage: IF_UDHCP_VERBOSE(
877//usage: "\n -v Verbose"
878//usage: )
879//usage: )
880//usage: IF_NOT_LONG_OPTS(
881//usage: "\n -i IFACE Interface to use (default eth0)"
882//usage: "\n -p FILE Create pidfile"
883//usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
884//usage: "\n -B Request broadcast replies"
885//usage: "\n -t N Send up to N discover packets"
886//usage: "\n -T N Pause between packets (default 3 seconds)"
887//usage: "\n -A N Wait N seconds (default 20) after failure"
888//usage: "\n -f Run in foreground"
889//usage: USE_FOR_MMU(
890//usage: "\n -b Background if lease is not obtained"
891//usage: )
892//usage: "\n -n Exit if lease is not obtained"
893//usage: "\n -q Exit after obtaining lease"
894//usage: "\n -R Release IP on exit"
895//usage: "\n -S Log to syslog too"
896//usage: IF_FEATURE_UDHCP_PORT(
Denys Vlasenko7e21f042011-11-08 11:39:41 +0100897//usage: "\n -P N Use port N (default 546)"
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100898//usage: )
899////usage: IF_FEATURE_UDHCPC_ARPING(
900////usage: "\n -a Use arping to validate offered address"
901////usage: )
902//usage: "\n -O OPT Request option OPT from server (cumulative)"
903//usage: "\n -o Don't request any options (unless -O is given)"
904//usage: "\n -r IP Request this IP address"
905//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
906//usage: "\n Examples of string, numeric, and hex byte opts:"
907//usage: "\n -x hostname:bbox - option 12"
908//usage: "\n -x lease:3600 - option 51 (lease time)"
909//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
910//usage: IF_UDHCP_VERBOSE(
911//usage: "\n -v Verbose"
912//usage: )
913//usage: )
914//usage: "\nSignals:"
915//usage: "\n USR1 Renew lease"
916//usage: "\n USR2 Release lease"
917
918
919int udhcpc6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
920int udhcpc6_main(int argc UNUSED_PARAM, char **argv)
921{
922 const char *str_r;
923 IF_FEATURE_UDHCP_PORT(char *str_P;)
924 void *clientid_mac_ptr;
925 llist_t *list_O = NULL;
926 llist_t *list_x = NULL;
927 int tryagain_timeout = 20;
928 int discover_timeout = 3;
929 int discover_retries = 3;
930 struct in6_addr srv6_buf;
931 struct in6_addr ipv6_buf;
932 struct in6_addr *requested_ipv6;
933 uint32_t xid = 0;
934 int packet_num;
935 int timeout; /* must be signed */
936 unsigned already_waited_sec;
937 unsigned opt;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100938 int retval;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100939
Denys Vlasenkodf70a432016-04-21 18:54:36 +0200940 setup_common_bufsiz();
941
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100942 /* Default options */
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100943 IF_FEATURE_UDHCP_PORT(SERVER_PORT6 = 547;)
944 IF_FEATURE_UDHCP_PORT(CLIENT_PORT6 = 546;)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100945 client_config.interface = "eth0";
946 client_config.script = CONFIG_UDHCPC_DEFAULT_SCRIPT;
947
948 /* Parse command line */
949 /* O,x: list; -T,-t,-A take numeric param */
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200950 IF_UDHCP_VERBOSE(opt_complementary = "vv";)
Denys Vlasenko7e21f042011-11-08 11:39:41 +0100951 IF_LONG_OPTS(applet_long_options = udhcpc6_longopts;)
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200952 opt = getopt32(argv, "i:np:qRr:s:T:+t:+SA:+O:*ox:*f"
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100953 USE_FOR_MMU("b")
954 ///IF_FEATURE_UDHCPC_ARPING("a")
955 IF_FEATURE_UDHCP_PORT("P:")
956 "v"
957 , &client_config.interface, &client_config.pidfile, &str_r /* i,p */
958 , &client_config.script /* s */
959 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
960 , &list_O
961 , &list_x
962 IF_FEATURE_UDHCP_PORT(, &str_P)
963 IF_UDHCP_VERBOSE(, &dhcp_verbose)
Denys Vlasenko7e21f042011-11-08 11:39:41 +0100964 );
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100965 requested_ipv6 = NULL;
966 if (opt & OPT_r) {
967 if (inet_pton(AF_INET6, str_r, &ipv6_buf) <= 0)
968 bb_error_msg_and_die("bad IPv6 address '%s'", str_r);
969 requested_ipv6 = &ipv6_buf;
970 }
971#if ENABLE_FEATURE_UDHCP_PORT
972 if (opt & OPT_P) {
Denys Vlasenko04ac6e02013-01-28 15:25:35 +0100973 CLIENT_PORT6 = xatou16(str_P);
974 SERVER_PORT6 = CLIENT_PORT6 + 1;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100975 }
976#endif
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100977 while (list_O) {
978 char *optstr = llist_pop(&list_O);
979 unsigned n = bb_strtou(optstr, NULL, 0);
980 if (errno || n > 254) {
981 n = udhcp_option_idx(optstr);
982 n = dhcp_optflags[n].code;
983 }
984 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
985 }
Denys Vlasenko293c9452012-07-27 13:25:07 +0200986 if (!(opt & OPT_o)) {
987 /*
988 unsigned i, n;
989 for (i = 0; (n = dhcp_optflags[i].code) != 0; i++) {
990 if (dhcp_optflags[i].flags & OPTION_REQ) {
991 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
992 }
993 }
994 */
995 }
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100996 while (list_x) {
997 char *optstr = llist_pop(&list_x);
998 char *colon = strchr(optstr, ':');
999 if (colon)
1000 *colon = ' ';
1001 /* now it looks similar to udhcpd's config file line:
1002 * "optname optval", using the common routine: */
1003 udhcp_str2optset(optstr, &client_config.options);
1004 }
1005
1006 if (udhcp_read_interface(client_config.interface,
1007 &client_config.ifindex,
1008 NULL,
1009 client_config.client_mac)
1010 ) {
1011 return 1;
1012 }
1013
1014 /* Create client ID based on mac, set clientid_mac_ptr */
1015 {
1016 struct d6_option *clientid;
1017 clientid = xzalloc(2+2+2+2+6);
1018 clientid->code = D6_OPT_CLIENTID;
1019 clientid->len = 2+2+6;
Denys Vlasenko68c5b282011-11-07 16:21:24 +01001020 clientid->data[1] = 3; /* DUID-LL */
1021 clientid->data[3] = 1; /* ethernet */
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001022 clientid_mac_ptr = clientid->data + 2+2;
1023 memcpy(clientid_mac_ptr, client_config.client_mac, 6);
1024 client_config.clientid = (void*)clientid;
1025 }
1026
1027#if !BB_MMU
1028 /* on NOMMU reexec (i.e., background) early */
1029 if (!(opt & OPT_f)) {
1030 bb_daemonize_or_rexec(0 /* flags */, argv);
1031 logmode = LOGMODE_NONE;
1032 }
1033#endif
1034 if (opt & OPT_S) {
1035 openlog(applet_name, LOG_PID, LOG_DAEMON);
1036 logmode |= LOGMODE_SYSLOG;
1037 }
1038
1039 /* Make sure fd 0,1,2 are open */
1040 bb_sanitize_stdio();
1041 /* Equivalent of doing a fflush after every \n */
1042 setlinebuf(stdout);
1043 /* Create pidfile */
1044 write_pidfile(client_config.pidfile);
1045 /* Goes to stdout (unless NOMMU) and possibly syslog */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001046 bb_error_msg("started, v"BB_VER);
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001047 /* Set up the signal pipe */
1048 udhcp_sp_setup();
1049 /* We want random_xid to be random... */
1050 srand(monotonic_us());
1051
1052 state = INIT_SELECTING;
1053 d6_run_script(NULL, "deconfig");
1054 change_listen_mode(LISTEN_RAW);
1055 packet_num = 0;
1056 timeout = 0;
1057 already_waited_sec = 0;
1058
1059 /* Main event loop. select() waits on signal pipe and possibly
1060 * on sockfd.
1061 * "continue" statements in code below jump to the top of the loop.
1062 */
1063 for (;;) {
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001064 int tv;
1065 struct pollfd pfds[2];
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001066 struct d6_packet packet;
1067 uint8_t *packet_end;
1068 /* silence "uninitialized!" warning */
1069 unsigned timestamp_before_wait = timestamp_before_wait;
1070
1071 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
1072
1073 /* Was opening raw or udp socket here
1074 * if (listen_mode != LISTEN_NONE && sockfd < 0),
1075 * but on fast network renew responses return faster
1076 * than we open sockets. Thus this code is moved
1077 * to change_listen_mode(). Thus we open listen socket
1078 * BEFORE we send renew request (see "case BOUND:"). */
1079
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001080 udhcp_sp_fd_set(pfds, sockfd);
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001081
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001082 tv = timeout - already_waited_sec;
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001083 retval = 0;
1084 /* If we already timed out, fall through with retval = 0, else... */
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001085 if (tv > 0) {
1086 log1("waiting on select %u seconds", tv);
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001087 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenko7c67f1e2017-02-17 19:20:32 +01001088 retval = poll(pfds, 2, tv < INT_MAX/1000 ? tv * 1000 : INT_MAX);
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001089 if (retval < 0) {
1090 /* EINTR? A signal was caught, don't panic */
1091 if (errno == EINTR) {
1092 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
1093 continue;
1094 }
1095 /* Else: an error occured, panic! */
1096 bb_perror_msg_and_die("select");
1097 }
1098 }
1099
1100 /* If timeout dropped to zero, time to become active:
1101 * resend discover/renew/whatever
1102 */
1103 if (retval == 0) {
1104 /* When running on a bridge, the ifindex may have changed
1105 * (e.g. if member interfaces were added/removed
1106 * or if the status of the bridge changed).
1107 * Refresh ifindex and client_mac:
1108 */
1109 if (udhcp_read_interface(client_config.interface,
1110 &client_config.ifindex,
1111 NULL,
1112 client_config.client_mac)
1113 ) {
1114 goto ret0; /* iface is gone? */
1115 }
1116 memcpy(clientid_mac_ptr, client_config.client_mac, 6);
1117
1118 /* We will restart the wait in any case */
1119 already_waited_sec = 0;
1120
1121 switch (state) {
1122 case INIT_SELECTING:
Felix Fietkau1c7a58d2012-09-27 16:22:24 +02001123 if (!discover_retries || packet_num < discover_retries) {
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001124 if (packet_num == 0)
1125 xid = random_xid();
1126 /* multicast */
1127 send_d6_discover(xid, requested_ipv6);
1128 timeout = discover_timeout;
1129 packet_num++;
1130 continue;
1131 }
1132 leasefail:
1133 d6_run_script(NULL, "leasefail");
1134#if BB_MMU /* -b is not supported on NOMMU */
1135 if (opt & OPT_b) { /* background if no lease */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001136 bb_error_msg("no lease, forking to background");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001137 client_background();
1138 /* do not background again! */
1139 opt = ((opt & ~OPT_b) | OPT_f);
1140 } else
1141#endif
1142 if (opt & OPT_n) { /* abort if no lease */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001143 bb_error_msg("no lease, failing");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001144 retval = 1;
1145 goto ret;
1146 }
1147 /* wait before trying again */
1148 timeout = tryagain_timeout;
1149 packet_num = 0;
1150 continue;
1151 case REQUESTING:
Felix Fietkau1c7a58d2012-09-27 16:22:24 +02001152 if (!discover_retries || packet_num < discover_retries) {
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001153 /* send multicast select packet */
1154 send_d6_select(xid);
1155 timeout = discover_timeout;
1156 packet_num++;
1157 continue;
1158 }
1159 /* Timed out, go back to init state.
1160 * "discover...select...discover..." loops
1161 * were seen in the wild. Treat them similarly
1162 * to "no response to discover" case */
1163 change_listen_mode(LISTEN_RAW);
1164 state = INIT_SELECTING;
1165 goto leasefail;
1166 case BOUND:
1167 /* 1/2 lease passed, enter renewing state */
1168 state = RENEWING;
1169 client_config.first_secs = 0; /* make secs field count from 0 */
1170 change_listen_mode(LISTEN_KERNEL);
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001171 log1("entering renew state");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001172 /* fall right through */
1173 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
1174 case_RENEW_REQUESTED:
1175 case RENEWING:
1176 if (timeout > 60) {
1177 /* send an unicast renew request */
1178 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
1179 * a new UDP socket for sending inside send_renew.
1180 * I hazard to guess existing listening socket
1181 * is somehow conflicting with it, but why is it
1182 * not deterministic then?! Strange.
1183 * Anyway, it does recover by eventually failing through
1184 * into INIT_SELECTING state.
1185 */
1186 send_d6_renew(xid, &srv6_buf, requested_ipv6);
1187 timeout >>= 1;
1188 continue;
1189 }
1190 /* Timed out, enter rebinding state */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001191 log1("entering rebinding state");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001192 state = REBINDING;
1193 /* fall right through */
1194 case REBINDING:
1195 /* Switch to bcast receive */
1196 change_listen_mode(LISTEN_RAW);
1197 /* Lease is *really* about to run out,
1198 * try to find DHCP server using broadcast */
1199 if (timeout > 0) {
1200 /* send a broadcast renew request */
1201 send_d6_renew(xid, /*server_ipv6:*/ NULL, requested_ipv6);
1202 timeout >>= 1;
1203 continue;
1204 }
1205 /* Timed out, enter init state */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001206 bb_error_msg("lease lost, entering init state");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001207 d6_run_script(NULL, "deconfig");
1208 state = INIT_SELECTING;
1209 client_config.first_secs = 0; /* make secs field count from 0 */
1210 /*timeout = 0; - already is */
1211 packet_num = 0;
1212 continue;
1213 /* case RELEASED: */
1214 }
1215 /* yah, I know, *you* say it would never happen */
1216 timeout = INT_MAX;
1217 continue; /* back to main loop */
1218 } /* if select timed out */
1219
1220 /* select() didn't timeout, something happened */
1221
1222 /* Is it a signal? */
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001223 /* note: udhcp_sp_read checks poll result before reading */
1224 switch (udhcp_sp_read(pfds)) {
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001225 case SIGUSR1:
1226 client_config.first_secs = 0; /* make secs field count from 0 */
1227 already_waited_sec = 0;
1228 perform_renew();
1229 if (state == RENEW_REQUESTED) {
1230 /* We might be either on the same network
1231 * (in which case renew might work),
1232 * or we might be on a completely different one
1233 * (in which case renew won't ever succeed).
1234 * For the second case, must make sure timeout
1235 * is not too big, or else we can send
1236 * futile renew requests for hours.
1237 * (Ab)use -A TIMEOUT value (usually 20 sec)
1238 * as a cap on the timeout.
1239 */
1240 if (timeout > tryagain_timeout)
1241 timeout = tryagain_timeout;
1242 goto case_RENEW_REQUESTED;
1243 }
1244 /* Start things over */
1245 packet_num = 0;
1246 /* Kill any timeouts, user wants this to hurry along */
1247 timeout = 0;
1248 continue;
1249 case SIGUSR2:
1250 perform_d6_release(&srv6_buf, requested_ipv6);
1251 timeout = INT_MAX;
1252 continue;
1253 case SIGTERM:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001254 bb_error_msg("received %s", "SIGTERM");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001255 goto ret0;
1256 }
1257
1258 /* Is it a packet? */
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001259 if (listen_mode == LISTEN_NONE || !pfds[1].revents)
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001260 continue; /* no */
1261
1262 {
1263 int len;
1264
1265 /* A packet is ready, read it */
1266 if (listen_mode == LISTEN_KERNEL)
1267 len = d6_recv_kernel_packet(&srv6_buf, &packet, sockfd);
1268 else
1269 len = d6_recv_raw_packet(&srv6_buf, &packet, sockfd);
1270 if (len == -1) {
1271 /* Error is severe, reopen socket */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001272 bb_error_msg("read error: %s, reopening socket", strerror(errno));
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001273 sleep(discover_timeout); /* 3 seconds by default */
1274 change_listen_mode(listen_mode); /* just close and reopen */
1275 }
1276 /* If this packet will turn out to be unrelated/bogus,
1277 * we will go back and wait for next one.
1278 * Be sure timeout is properly decreased. */
1279 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
1280 if (len < 0)
1281 continue;
1282 packet_end = (uint8_t*)&packet + len;
1283 }
1284
1285 if ((packet.d6_xid32 & htonl(0x00ffffff)) != xid) {
1286 log1("xid %x (our is %x), ignoring packet",
1287 (unsigned)(packet.d6_xid32 & htonl(0x00ffffff)), (unsigned)xid);
1288 continue;
1289 }
1290
1291 switch (state) {
1292 case INIT_SELECTING:
1293 if (packet.d6_msg_type == D6_MSG_ADVERTISE)
1294 goto type_is_ok;
1295 /* DHCPv6 has "Rapid Commit", when instead of Advertise,
1296 * server sends Reply right away.
1297 * Fall through to check for this case.
1298 */
1299 case REQUESTING:
1300 case RENEWING:
1301 case RENEW_REQUESTED:
1302 case REBINDING:
1303 if (packet.d6_msg_type == D6_MSG_REPLY) {
1304 uint32_t lease_seconds;
1305 struct d6_option *option, *iaaddr;
1306 type_is_ok:
1307 option = d6_find_option(packet.d6_options, packet_end, D6_OPT_STATUS_CODE);
1308 if (option && option->data[4] != 0) {
1309 /* return to init state */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001310 bb_error_msg("received DHCP NAK (%u)", option->data[4]);
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001311 d6_run_script(&packet, "nak");
1312 if (state != REQUESTING)
1313 d6_run_script(NULL, "deconfig");
1314 change_listen_mode(LISTEN_RAW);
1315 sleep(3); /* avoid excessive network traffic */
1316 state = INIT_SELECTING;
1317 client_config.first_secs = 0; /* make secs field count from 0 */
1318 requested_ipv6 = NULL;
1319 timeout = 0;
1320 packet_num = 0;
1321 already_waited_sec = 0;
1322 continue;
1323 }
1324 option = d6_copy_option(packet.d6_options, packet_end, D6_OPT_SERVERID);
1325 if (!option) {
1326 bb_error_msg("no server ID, ignoring packet");
1327 continue;
1328 /* still selecting - this server looks bad */
1329 }
1330//Note: we do not bother comparing server IDs in Advertise and Reply msgs.
1331//server_id variable is used solely for creation of proper server_id option
1332//in outgoing packets. (why DHCPv6 even introduced it is a mystery).
1333 free(client6_data.server_id);
1334 client6_data.server_id = option;
1335 if (packet.d6_msg_type == D6_MSG_ADVERTISE) {
1336 /* enter requesting state */
1337 state = REQUESTING;
1338 timeout = 0;
1339 packet_num = 0;
1340 already_waited_sec = 0;
1341 continue;
1342 }
1343 /* It's a D6_MSG_REPLY */
1344/*
1345 * RFC 3315 18.1.8. Receipt of Reply Messages
1346 *
1347 * Upon the receipt of a valid Reply message in response to a Solicit
1348 * (with a Rapid Commit option), Request, Confirm, Renew, Rebind or
1349 * Information-request message, the client extracts the configuration
1350 * information contained in the Reply. The client MAY choose to report
1351 * any status code or message from the status code option in the Reply
1352 * message.
1353 *
1354 * The client SHOULD perform duplicate address detection [17] on each of
1355 * the addresses in any IAs it receives in the Reply message before
1356 * using that address for traffic. If any of the addresses are found to
1357 * be in use on the link, the client sends a Decline message to the
1358 * server as described in section 18.1.7.
1359 *
1360 * If the Reply was received in response to a Solicit (with a Rapid
1361 * Commit option), Request, Renew or Rebind message, the client updates
1362 * the information it has recorded about IAs from the IA options
1363 * contained in the Reply message:
1364 *
1365 * - Record T1 and T2 times.
1366 *
1367 * - Add any new addresses in the IA option to the IA as recorded by
1368 * the client.
1369 *
1370 * - Update lifetimes for any addresses in the IA option that the
1371 * client already has recorded in the IA.
1372 *
1373 * - Discard any addresses from the IA, as recorded by the client, that
1374 * have a valid lifetime of 0 in the IA Address option.
1375 *
1376 * - Leave unchanged any information about addresses the client has
1377 * recorded in the IA but that were not included in the IA from the
1378 * server.
1379 *
1380 * Management of the specific configuration information is detailed in
1381 * the definition of each option in section 22.
1382 *
1383 * If the client receives a Reply message with a Status Code containing
1384 * UnspecFail, the server is indicating that it was unable to process
1385 * the message due to an unspecified failure condition. If the client
1386 * retransmits the original message to the same server to retry the
1387 * desired operation, the client MUST limit the rate at which it
1388 * retransmits the message and limit the duration of the time during
1389 * which it retransmits the message.
1390 *
1391 * When the client receives a Reply message with a Status Code option
1392 * with the value UseMulticast, the client records the receipt of the
1393 * message and sends subsequent messages to the server through the
1394 * interface on which the message was received using multicast. The
1395 * client resends the original message using multicast.
1396 *
1397 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1398 * | OPTION_IA_NA | option-len |
1399 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1400 * | IAID (4 octets) |
1401 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1402 * | T1 |
1403 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1404 * | T2 |
1405 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1406 * | |
1407 * . IA_NA-options .
1408 * . .
1409 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1410 *
1411 *
1412 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1413 * | OPTION_IAADDR | option-len |
1414 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1415 * | |
1416 * | IPv6 address |
1417 * | |
1418 * | |
1419 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1420 * | preferred-lifetime |
1421 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1422 * | valid-lifetime |
1423 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1424 * . .
1425 * . IAaddr-options .
1426 * . .
1427 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1428 */
1429 free(client6_data.ia_na);
1430 client6_data.ia_na = d6_copy_option(packet.d6_options, packet_end, D6_OPT_IA_NA);
1431 if (!client6_data.ia_na) {
Denys Vlasenkoa092a892011-11-16 20:17:12 +01001432 bb_error_msg("no %s option, ignoring packet", "IA_NA");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001433 continue;
1434 }
1435 if (client6_data.ia_na->len < (4 + 4 + 4) + (2 + 2 + 16 + 4 + 4)) {
1436 bb_error_msg("IA_NA option is too short:%d bytes", client6_data.ia_na->len);
1437 continue;
1438 }
Denys Vlasenkoa092a892011-11-16 20:17:12 +01001439 iaaddr = d6_find_option(client6_data.ia_na->data + 4 + 4 + 4,
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001440 client6_data.ia_na->data + client6_data.ia_na->len,
1441 D6_OPT_IAADDR
1442 );
1443 if (!iaaddr) {
Denys Vlasenkoa092a892011-11-16 20:17:12 +01001444 bb_error_msg("no %s option, ignoring packet", "IAADDR");
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001445 continue;
1446 }
1447 if (iaaddr->len < (16 + 4 + 4)) {
1448 bb_error_msg("IAADDR option is too short:%d bytes", iaaddr->len);
1449 continue;
1450 }
1451 /* Note: the address is sufficiently aligned for cast:
1452 * we _copied_ IA-NA, and copy is always well-aligned.
1453 */
1454 requested_ipv6 = (struct in6_addr*) iaaddr->data;
1455 move_from_unaligned32(lease_seconds, iaaddr->data + 16 + 4);
1456 lease_seconds = ntohl(lease_seconds);
1457 /* paranoia: must not be too small and not prone to overflows */
1458 if (lease_seconds < 0x10)
1459 lease_seconds = 0x10;
1460/// TODO: check for 0 lease time?
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001461 if (lease_seconds > 0x7fffffff / 1000)
1462 lease_seconds = 0x7fffffff / 1000;
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001463 /* enter bound state */
1464 timeout = lease_seconds / 2;
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001465 bb_error_msg("lease obtained, lease time %u",
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001466 /*inet_ntoa(temp_addr),*/ (unsigned)lease_seconds);
1467 d6_run_script(&packet, state == REQUESTING ? "bound" : "renew");
1468
1469 state = BOUND;
1470 change_listen_mode(LISTEN_NONE);
1471 if (opt & OPT_q) { /* quit after lease */
1472 goto ret0;
1473 }
1474 /* future renew failures should not exit (JM) */
1475 opt &= ~OPT_n;
1476#if BB_MMU /* NOMMU case backgrounded earlier */
1477 if (!(opt & OPT_f)) {
1478 client_background();
1479 /* do not background again! */
1480 opt = ((opt & ~OPT_b) | OPT_f);
1481 }
1482#endif
1483 already_waited_sec = 0;
1484 continue; /* back to main loop */
1485 }
1486 continue;
1487 /* case BOUND: - ignore all packets */
1488 /* case RELEASED: - ignore all packets */
1489 }
1490 /* back to main loop */
1491 } /* for (;;) - main loop ends */
1492
1493 ret0:
1494 if (opt & OPT_R) /* release on quit */
1495 perform_d6_release(&srv6_buf, requested_ipv6);
1496 retval = 0;
1497 ret:
1498 /*if (client_config.pidfile) - remove_pidfile has its own check */
1499 remove_pidfile(client_config.pidfile);
1500 return retval;
1501}