blob: cb85fa9e3756cd9c9518f41ad9996ac605d35a23 [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 * Russ Dill <Russ.Dill@asu.edu> July 2001
5 *
Denys Vlasenko6b24d532010-03-22 13:42:13 +01006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Mike Frysinger7031f622006-05-08 03:20:50 +000019 */
Denys Vlasenkof7683cd2016-11-23 18:54:59 +010020//applet:IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP))
21
22//kbuild:lib-$(CONFIG_UDHCPC) += common.o packet.o signalpipe.o socket.o
23//kbuild:lib-$(CONFIG_UDHCPC) += dhcpc.o
24//kbuild:lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o
25//kbuild:lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
26
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +000027#include <syslog.h>
Denis Vlasenko1caca342007-08-02 10:14:29 +000028/* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
29#define WANT_PIDFILE 1
Mike Frysinger7031f622006-05-08 03:20:50 +000030#include "common.h"
31#include "dhcpd.h"
32#include "dhcpc.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000033
Dan Fandrichf533ec82011-06-10 05:17:59 +020034#include <netinet/if_ether.h>
Denys Vlasenko6b24d532010-03-22 13:42:13 +010035#include <linux/filter.h>
Alexey Froloff3c62bba2012-09-17 16:02:44 +020036#include <linux/if_packet.h>
Denys Vlasenko6b24d532010-03-22 13:42:13 +010037
Denys Vlasenkof2bf20f2015-10-08 18:13:57 +020038#ifndef PACKET_AUXDATA
39# define PACKET_AUXDATA 8
40struct tpacket_auxdata {
41 uint32_t tp_status;
42 uint32_t tp_len;
43 uint32_t tp_snaplen;
44 uint16_t tp_mac;
45 uint16_t tp_net;
46 uint16_t tp_vlan_tci;
47 uint16_t tp_padding;
48};
49#endif
50
51
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +020052/* "struct client_data_t client_data" is in bb_common_bufsiz1 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +000053
Mike Frysinger7031f622006-05-08 03:20:50 +000054
Keith Younge6bb8d32011-03-07 03:18:46 +010055#if ENABLE_LONG_OPTS
56static const char udhcpc_longopts[] ALIGN1 =
57 "clientid-none\0" No_argument "C"
58 "vendorclass\0" Required_argument "V"
59 "hostname\0" Required_argument "H"
60 "fqdn\0" Required_argument "F"
61 "interface\0" Required_argument "i"
62 "now\0" No_argument "n"
63 "pidfile\0" Required_argument "p"
64 "quit\0" No_argument "q"
65 "release\0" No_argument "R"
66 "request\0" Required_argument "r"
67 "script\0" Required_argument "s"
68 "timeout\0" Required_argument "T"
Keith Younge6bb8d32011-03-07 03:18:46 +010069 "retries\0" Required_argument "t"
70 "tryagain\0" Required_argument "A"
71 "syslog\0" No_argument "S"
72 "request-option\0" Required_argument "O"
73 "no-default-options\0" No_argument "o"
74 "foreground\0" No_argument "f"
Denys Vlasenkoed820cc2017-05-08 15:11:02 +020075 USE_FOR_MMU(
Keith Younge6bb8d32011-03-07 03:18:46 +010076 "background\0" No_argument "b"
Denys Vlasenkoed820cc2017-05-08 15:11:02 +020077 )
Keith Younge6bb8d32011-03-07 03:18:46 +010078 "broadcast\0" No_argument "B"
Michel Stam9f412712014-10-30 11:59:04 +010079 IF_FEATURE_UDHCPC_ARPING("arping\0" Optional_argument "a")
Keith Younge6bb8d32011-03-07 03:18:46 +010080 IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P")
81 ;
82#endif
83/* Must match getopt32 option string order */
84enum {
85 OPT_C = 1 << 0,
86 OPT_V = 1 << 1,
87 OPT_H = 1 << 2,
88 OPT_h = 1 << 3,
89 OPT_F = 1 << 4,
90 OPT_i = 1 << 5,
91 OPT_n = 1 << 6,
92 OPT_p = 1 << 7,
93 OPT_q = 1 << 8,
94 OPT_R = 1 << 9,
95 OPT_r = 1 << 10,
96 OPT_s = 1 << 11,
97 OPT_T = 1 << 12,
98 OPT_t = 1 << 13,
99 OPT_S = 1 << 14,
100 OPT_A = 1 << 15,
101 OPT_O = 1 << 16,
102 OPT_o = 1 << 17,
103 OPT_x = 1 << 18,
104 OPT_f = 1 << 19,
105 OPT_B = 1 << 20,
106/* The rest has variable bit positions, need to be clever */
107 OPTBIT_B = 20,
108 USE_FOR_MMU( OPTBIT_b,)
109 IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
110 IF_FEATURE_UDHCP_PORT( OPTBIT_P,)
111 USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,)
112 IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
113 IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,)
114};
115
116
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100117/*** Script execution code ***/
118
119/* get a rough idea of how long an option will be (rounding up...) */
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200120static const uint8_t len_of_option_as_string[] ALIGN1 = {
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200121 [OPTION_IP ] = sizeof("255.255.255.255 "),
122 [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2,
123 [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "),
Denys Vlasenko352f79a2016-02-26 15:54:56 +0100124 [OPTION_6RD ] = sizeof("132 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 "),
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200125 [OPTION_STRING ] = 1,
Denys Vlasenkod2266d42012-04-22 03:37:01 +0200126 [OPTION_STRING_HOST ] = 1,
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100127#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200128 [OPTION_DNS_STRING ] = 1, /* unused */
129 /* Hmmm, this severely overestimates size if SIP_SERVERS option
130 * is in domain name form: N-byte option in binary form
131 * mallocs ~16*N bytes. But it is freed almost at once.
132 */
133 [OPTION_SIP_SERVERS ] = sizeof("255.255.255.255 "),
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100134#endif
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200135// [OPTION_BOOLEAN ] = sizeof("yes "),
136 [OPTION_U8 ] = sizeof("255 "),
137 [OPTION_U16 ] = sizeof("65535 "),
138// [OPTION_S16 ] = sizeof("-32768 "),
139 [OPTION_U32 ] = sizeof("4294967295 "),
140 [OPTION_S32 ] = sizeof("-2147483684 "),
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100141};
142
143/* note: ip is a pointer to an IP in network order, possibly misaliged */
144static int sprint_nip(char *dest, const char *pre, const uint8_t *ip)
145{
146 return sprintf(dest, "%s%u.%u.%u.%u", pre, ip[0], ip[1], ip[2], ip[3]);
147}
148
149/* really simple implementation, just count the bits */
150static int mton(uint32_t mask)
151{
152 int i = 0;
153 mask = ntohl(mask); /* 111110000-like bit pattern */
154 while (mask) {
155 i++;
156 mask <<= 1;
157 }
158 return i;
159}
160
Denys Vlasenko85090c12014-06-16 00:17:00 +0200161#if ENABLE_FEATURE_UDHCPC_SANITIZEOPT
Denys Vlasenko7280d202011-12-08 16:41:05 +0100162/* Check if a given label represents a valid DNS label
Denys Vlasenko48ec9792018-08-01 13:16:05 +0200163 * Return pointer to the first character after the label
164 * (NUL or dot) upon success, NULL otherwise.
Denys Vlasenko7280d202011-12-08 16:41:05 +0100165 * See RFC1035, 2.3.1
166 */
167/* We don't need to be particularly anal. For example, allowing _, hyphen
168 * at the end, or leading and trailing dots would be ok, since it
169 * can't be used for attacks. (Leading hyphen can be, if someone uses
170 * cmd "$hostname"
171 * in the script: then hostname may be treated as an option)
172 */
173static const char *valid_domain_label(const char *label)
174{
175 unsigned char ch;
Denys Vlasenko48ec9792018-08-01 13:16:05 +0200176 //unsigned pos = 0;
Denys Vlasenko7280d202011-12-08 16:41:05 +0100177
Denys Vlasenko48ec9792018-08-01 13:16:05 +0200178 if (label[0] == '-')
179 return NULL;
Denys Vlasenko7280d202011-12-08 16:41:05 +0100180 for (;;) {
181 ch = *label;
182 if ((ch|0x20) < 'a' || (ch|0x20) > 'z') {
Denys Vlasenko7280d202011-12-08 16:41:05 +0100183 if (ch < '0' || ch > '9') {
184 if (ch == '\0' || ch == '.')
185 return label;
186 /* DNS allows only '-', but we are more permissive */
187 if (ch != '-' && ch != '_')
188 return NULL;
189 }
190 }
191 label++;
Denys Vlasenko48ec9792018-08-01 13:16:05 +0200192 //pos++;
Denys Vlasenko7280d202011-12-08 16:41:05 +0100193 //Do we want this?
194 //if (pos > 63) /* NS_MAXLABEL; labels must be 63 chars or less */
195 // return NULL;
196 }
197}
198
199/* Check if a given name represents a valid DNS name */
200/* See RFC1035, 2.3.1 */
201static int good_hostname(const char *name)
202{
203 //const char *start = name;
204
205 for (;;) {
206 name = valid_domain_label(name);
207 if (!name)
208 return 0;
209 if (!name[0])
210 return 1;
211 //Do we want this?
212 //return ((name - start) < 1025); /* NS_MAXDNAME */
213 name++;
Denys Vlasenko8efcc952016-02-11 17:44:44 +0100214 if (*name == '\0')
215 return 1; // We allow trailing dot too
Denys Vlasenko7280d202011-12-08 16:41:05 +0100216 }
217}
Denys Vlasenko85090c12014-06-16 00:17:00 +0200218#else
219# define good_hostname(name) 1
220#endif
Denys Vlasenko7280d202011-12-08 16:41:05 +0100221
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100222/* Create "opt_name=opt_value" string */
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200223static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_optflag *optflag, const char *opt_name)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100224{
225 unsigned upper_length;
226 int len, type, optlen;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100227 char *dest, *ret;
228
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200229 /* option points to OPT_DATA, need to go back to get OPT_LEN */
230 len = option[-OPT_DATA + OPT_LEN];
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200231
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200232 type = optflag->flags & OPTION_TYPE_MASK;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100233 optlen = dhcp_option_lengths[type];
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200234 upper_length = len_of_option_as_string[type]
Denys Vlasenko352f79a2016-02-26 15:54:56 +0100235 * ((unsigned)(len + optlen) / (unsigned)optlen);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100236
237 dest = ret = xmalloc(upper_length + strlen(opt_name) + 2);
238 dest += sprintf(ret, "%s=", opt_name);
239
240 while (len >= optlen) {
241 switch (type) {
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200242 case OPTION_IP:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100243 case OPTION_IP_PAIR:
244 dest += sprint_nip(dest, "", option);
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200245 if (type == OPTION_IP)
246 break;
247 dest += sprint_nip(dest, "/", option + 4);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100248 break;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100249// case OPTION_BOOLEAN:
250// dest += sprintf(dest, *option ? "yes" : "no");
251// break;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100252 case OPTION_U8:
253 dest += sprintf(dest, "%u", *option);
254 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200255// case OPTION_S16:
256 case OPTION_U16: {
257 uint16_t val_u16;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100258 move_from_unaligned16(val_u16, option);
259 dest += sprintf(dest, "%u", ntohs(val_u16));
260 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200261 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100262 case OPTION_S32:
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200263 case OPTION_U32: {
264 uint32_t val_u32;
265 move_from_unaligned32(val_u32, option);
266 dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32));
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100267 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200268 }
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200269 /* Note: options which use 'return' instead of 'break'
270 * (for example, OPTION_STRING) skip the code which handles
271 * the case of list of options.
272 */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100273 case OPTION_STRING:
Denys Vlasenko7280d202011-12-08 16:41:05 +0100274 case OPTION_STRING_HOST:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100275 memcpy(dest, option, len);
276 dest[len] = '\0';
Denys Vlasenko02cf1492018-08-01 13:36:36 +0200277//TODO: it appears option 15 DHCP_DOMAIN_NAME is often abused
278//by DHCP admins to contain a space-separated list of domains,
279//not one domain name (presumably, to work as list of search domains,
280//instead of using proper option 119 DHCP_DOMAIN_SEARCH).
281//Currently, good_hostname() balks on strings containing spaces.
282//Do we need to allow it? Only for DHCP_DOMAIN_NAME option?
Denys Vlasenko7280d202011-12-08 16:41:05 +0100283 if (type == OPTION_STRING_HOST && !good_hostname(dest))
284 safe_strncpy(dest, "bad", len);
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200285 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100286 case OPTION_STATIC_ROUTES: {
287 /* Option binary format:
288 * mask [one byte, 0..32]
289 * ip [big endian, 0..4 bytes depending on mask]
290 * router [big endian, 4 bytes]
291 * may be repeated
292 *
293 * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2"
294 */
295 const char *pfx = "";
296
297 while (len >= 1 + 4) { /* mask + 0-byte ip + router */
298 uint32_t nip;
299 uint8_t *p;
300 unsigned mask;
301 int bytes;
302
303 mask = *option++;
304 if (mask > 32)
305 break;
306 len--;
307
308 nip = 0;
309 p = (void*) &nip;
310 bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */
311 while (--bytes >= 0) {
312 *p++ = *option++;
313 len--;
314 }
315 if (len < 4)
316 break;
317
318 /* print ip/mask */
319 dest += sprint_nip(dest, pfx, (void*) &nip);
320 pfx = " ";
321 dest += sprintf(dest, "/%u ", mask);
322 /* print router */
323 dest += sprint_nip(dest, "", option);
324 option += 4;
325 len -= 4;
326 }
327
328 return ret;
329 }
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200330 case OPTION_6RD:
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200331 /* Option binary format (see RFC 5969):
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200332 * 0 1 2 3
333 * 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
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200334 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
335 * | OPTION_6RD | option-length | IPv4MaskLen | 6rdPrefixLen |
336 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200337 * | 6rdPrefix |
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200338 * ... (16 octets) ...
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200339 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200340 * ... 6rdBRIPv4Address(es) ...
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200341 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200342 * We convert it to a string
343 * "IPv4MaskLen 6rdPrefixLen 6rdPrefix 6rdBRIPv4Address..."
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200344 *
345 * Sanity check: ensure that our length is at least 22 bytes, that
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200346 * IPv4MaskLen <= 32,
347 * 6rdPrefixLen <= 128,
348 * 6rdPrefixLen + (32 - IPv4MaskLen) <= 128
349 * (2nd condition need no check - it follows from 1st and 3rd).
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200350 * Else, return envvar with empty value ("optname=")
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200351 */
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200352 if (len >= (1 + 1 + 16 + 4)
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200353 && option[0] <= 32
354 && (option[1] + 32 - option[0]) <= 128
355 ) {
356 /* IPv4MaskLen */
357 dest += sprintf(dest, "%u ", *option++);
358 /* 6rdPrefixLen */
359 dest += sprintf(dest, "%u ", *option++);
360 /* 6rdPrefix */
Denys Vlasenko42816c22011-10-20 10:52:07 +0200361 dest += sprint_nip6(dest, /* "", */ option);
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200362 option += 16;
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200363 len -= 1 + 1 + 16 + 4;
364 /* "+ 4" above corresponds to the length of IPv4 addr
365 * we consume in the loop below */
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200366 while (1) {
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200367 /* 6rdBRIPv4Address(es) */
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200368 dest += sprint_nip(dest, " ", option);
369 option += 4;
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200370 len -= 4; /* do we have yet another 4+ bytes? */
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200371 if (len < 0)
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200372 break; /* no */
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200373 }
374 }
375
376 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100377#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200378 case OPTION_DNS_STRING:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100379 /* unpack option into dest; use ret for prefix (i.e., "optname=") */
380 dest = dname_dec(option, len, ret);
381 if (dest) {
382 free(ret);
383 return dest;
384 }
385 /* error. return "optname=" string */
386 return ret;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200387 case OPTION_SIP_SERVERS:
388 /* Option binary format:
389 * type: byte
390 * type=0: domain names, dns-compressed
391 * type=1: IP addrs
392 */
393 option++;
394 len--;
395 if (option[-1] == 0) {
396 dest = dname_dec(option, len, ret);
397 if (dest) {
398 free(ret);
399 return dest;
400 }
401 } else
402 if (option[-1] == 1) {
403 const char *pfx = "";
404 while (1) {
405 len -= 4;
406 if (len < 0)
407 break;
408 dest += sprint_nip(dest, pfx, option);
409 pfx = " ";
410 option += 4;
411 }
412 }
413 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100414#endif
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200415 } /* switch */
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200416
417 /* If we are here, try to format any remaining data
418 * in the option as another, similarly-formatted option
419 */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100420 option += optlen;
421 len -= optlen;
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200422// TODO: it can be a list only if (optflag->flags & OPTION_LIST).
423// Should we bail out/warn if we see multi-ip option which is
424// not allowed to be such (for example, DHCP_BROADCAST)? -
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200425 if (len < optlen /* || !(optflag->flags & OPTION_LIST) */)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100426 break;
427 *dest++ = ' ';
428 *dest = '\0';
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200429 } /* while */
430
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100431 return ret;
432}
433
434/* put all the parameters into the environment */
435static char **fill_envp(struct dhcp_packet *packet)
436{
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200437 int envc;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100438 int i;
439 char **envp, **curr;
440 const char *opt_name;
441 uint8_t *temp;
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200442 uint8_t overload = 0;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100443
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200444#define BITMAP unsigned
445#define BBITS (sizeof(BITMAP) * 8)
446#define BMASK(i) (1 << (i & (sizeof(BITMAP) * 8 - 1)))
447#define FOUND_OPTS(i) (found_opts[(unsigned)i / BBITS])
448 BITMAP found_opts[256 / BBITS];
449
450 memset(found_opts, 0, sizeof(found_opts));
451
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200452 /* We need 6 elements for:
453 * "interface=IFACE"
454 * "ip=N.N.N.N" from packet->yiaddr
455 * "siaddr=IP" from packet->siaddr_nip (unless 0)
456 * "boot_file=FILE" from packet->file (unless overloaded)
457 * "sname=SERVER_HOSTNAME" from packet->sname (unless overloaded)
458 * terminating NULL
459 */
460 envc = 6;
461 /* +1 element for each option, +2 for subnet option: */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100462 if (packet) {
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200463 /* note: do not search for "pad" (0) and "end" (255) options */
Denys Vlasenko7280d202011-12-08 16:41:05 +0100464//TODO: change logic to scan packet _once_
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200465 for (i = 1; i < 255; i++) {
466 temp = udhcp_get_option(packet, i);
467 if (temp) {
468 if (i == DHCP_OPTION_OVERLOAD)
Brian Foleyf9beeb22016-10-25 14:20:55 +0200469 overload |= *temp;
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200470 else if (i == DHCP_SUBNET)
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200471 envc++; /* for $mask */
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200472 envc++;
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200473 /*if (i != DHCP_MESSAGE_TYPE)*/
474 FOUND_OPTS(i) |= BMASK(i);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100475 }
476 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100477 }
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200478 curr = envp = xzalloc(sizeof(envp[0]) * envc);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100479
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200480 *curr = xasprintf("interface=%s", client_data.interface);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100481 putenv(*curr++);
482
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200483 if (!packet)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100484 return envp;
485
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200486 /* Export BOOTP fields. Fields we don't (yet?) export:
487 * uint8_t op; // always BOOTREPLY
488 * uint8_t htype; // hardware address type. 1 = 10mb ethernet
489 * uint8_t hlen; // hardware address length
490 * uint8_t hops; // used by relay agents only
491 * uint32_t xid;
492 * uint16_t secs; // elapsed since client began acquisition/renewal
493 * uint16_t flags; // only one flag so far: bcast. Never set by server
494 * uint32_t ciaddr; // client IP (usually == yiaddr. can it be different
Brian Foleyf9beeb22016-10-25 14:20:55 +0200495 * // if during renew server wants to give us different IP?)
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200496 * uint32_t gateway_nip; // relay agent IP address
497 * uint8_t chaddr[16]; // link-layer client hardware address (MAC)
498 * TODO: export gateway_nip as $giaddr?
499 */
500 /* Most important one: yiaddr as $ip */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100501 *curr = xmalloc(sizeof("ip=255.255.255.255"));
502 sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr);
503 putenv(*curr++);
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200504 if (packet->siaddr_nip) {
505 /* IP address of next server to use in bootstrap */
506 *curr = xmalloc(sizeof("siaddr=255.255.255.255"));
507 sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip);
508 putenv(*curr++);
509 }
510 if (!(overload & FILE_FIELD) && packet->file[0]) {
511 /* watch out for invalid packets */
512 *curr = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file);
513 putenv(*curr++);
514 }
515 if (!(overload & SNAME_FIELD) && packet->sname[0]) {
516 /* watch out for invalid packets */
517 *curr = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname);
518 putenv(*curr++);
519 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100520
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200521 /* Export known DHCP options */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100522 opt_name = dhcp_option_strings;
523 i = 0;
524 while (*opt_name) {
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200525 uint8_t code = dhcp_optflags[i].code;
526 BITMAP *found_ptr = &FOUND_OPTS(code);
527 BITMAP found_mask = BMASK(code);
528 if (!(*found_ptr & found_mask))
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100529 goto next;
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200530 *found_ptr &= ~found_mask; /* leave only unknown options */
531 temp = udhcp_get_option(packet, code);
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200532 *curr = xmalloc_optname_optval(temp, &dhcp_optflags[i], opt_name);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100533 putenv(*curr++);
Denys Vlasenko74d9f1b2019-01-07 15:33:42 +0100534 if (code == DHCP_SUBNET && temp[-OPT_DATA + OPT_LEN] == 4) {
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200535 /* Subnet option: make things like "$ip/$mask" possible */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100536 uint32_t subnet;
537 move_from_unaligned32(subnet, temp);
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200538 *curr = xasprintf("mask=%u", mton(subnet));
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100539 putenv(*curr++);
540 }
541 next:
542 opt_name += strlen(opt_name) + 1;
543 i++;
544 }
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200545 /* Export unknown options */
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200546 for (i = 0; i < 256;) {
547 BITMAP bitmap = FOUND_OPTS(i);
548 if (!bitmap) {
549 i += BBITS;
550 continue;
551 }
552 if (bitmap & BMASK(i)) {
553 unsigned len, ofs;
554
555 temp = udhcp_get_option(packet, i);
556 /* udhcp_get_option returns ptr to data portion,
557 * need to go back to get len
558 */
559 len = temp[-OPT_DATA + OPT_LEN];
560 *curr = xmalloc(sizeof("optNNN=") + 1 + len*2);
561 ofs = sprintf(*curr, "opt%u=", i);
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200562 *bin2hex(*curr + ofs, (void*) temp, len) = '\0';
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200563 putenv(*curr++);
564 }
565 i++;
566 }
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200567
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100568 return envp;
569}
570
571/* Call a script with a par file and env vars */
572static void udhcp_run_script(struct dhcp_packet *packet, const char *name)
573{
574 char **envp, **curr;
575 char *argv[3];
576
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100577 envp = fill_envp(packet);
578
579 /* call script */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200580 log1("executing %s %s", client_data.script, name);
581 argv[0] = (char*) client_data.script;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100582 argv[1] = (char*) name;
583 argv[2] = NULL;
584 spawn_and_wait(argv);
585
586 for (curr = envp; *curr; curr++) {
587 log2(" %s", *curr);
Denys Vlasenkodd8adde2010-06-24 05:00:50 +0200588 bb_unsetenv_and_free(*curr);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100589 }
590 free(envp);
591}
592
593
594/*** Sending/receiving packets ***/
595
Denys Vlasenko8d114452010-03-22 13:44:09 +0100596static ALWAYS_INLINE uint32_t random_xid(void)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100597{
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100598 return rand();
599}
600
601/* Initialize the packet with the proper defaults */
602static void init_packet(struct dhcp_packet *packet, char type)
603{
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100604 uint16_t secs;
605
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200606 /* Fill in: op, htype, hlen, cookie fields; message type option: */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100607 udhcp_init_header(packet, type);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200608
609 packet->xid = random_xid();
610
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200611 client_data.last_secs = monotonic_sec();
612 if (client_data.first_secs == 0)
613 client_data.first_secs = client_data.last_secs;
614 secs = client_data.last_secs - client_data.first_secs;
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100615 packet->secs = htons(secs);
616
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200617 memcpy(packet->chaddr, client_data.client_mac, 6);
618 if (client_data.clientid)
619 udhcp_add_binary_option(packet, client_data.clientid);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100620}
621
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100622static void add_client_options(struct dhcp_packet *packet)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100623{
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200624 int i, end, len;
625
626 udhcp_add_simple_option(packet, DHCP_MAX_SIZE, htons(IP_UDP_DHCP_SIZE));
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200627
Denys Vlasenko7724c762010-03-26 09:32:09 +0100628 /* Add a "param req" option with the list of options we'd like to have
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100629 * from stubborn DHCP servers. Pull the data from the struct in common.c.
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100630 * No bounds checking because it goes towards the head of the packet. */
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200631 end = udhcp_end_option(packet->options);
632 len = 0;
Denys Vlasenko293c9452012-07-27 13:25:07 +0200633 for (i = 1; i < DHCP_END; i++) {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200634 if (client_data.opt_mask[i >> 3] & (1 << (i & 7))) {
Denys Vlasenko293c9452012-07-27 13:25:07 +0200635 packet->options[end + OPT_DATA + len] = i;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100636 len++;
637 }
638 }
639 if (len) {
640 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
641 packet->options[end + OPT_LEN] = len;
642 packet->options[end + OPT_DATA + len] = DHCP_END;
643 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100644
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200645 if (client_data.vendorclass)
646 udhcp_add_binary_option(packet, client_data.vendorclass);
647 if (client_data.hostname)
648 udhcp_add_binary_option(packet, client_data.hostname);
649 if (client_data.fqdn)
650 udhcp_add_binary_option(packet, client_data.fqdn);
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200651
Keith Younge6bb8d32011-03-07 03:18:46 +0100652 /* Request broadcast replies if we have no IP addr */
653 if ((option_mask32 & OPT_B) && packet->ciaddr == 0)
654 packet->flags |= htons(BROADCAST_FLAG);
655
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100656 /* Add -x options if any */
657 {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200658 struct option_set *curr = client_data.options;
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100659 while (curr) {
Denys Vlasenko7724c762010-03-26 09:32:09 +0100660 udhcp_add_binary_option(packet, curr->data);
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100661 curr = curr->next;
662 }
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200663// if (client_data.sname)
664// strncpy((char*)packet->sname, client_data.sname, sizeof(packet->sname) - 1);
665// if (client_data.boot_file)
666// strncpy((char*)packet->file, client_data.boot_file, sizeof(packet->file) - 1);
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100667 }
Denys Vlasenko2017d482011-11-05 01:24:14 +0100668
669 // This will be needed if we remove -V VENDOR_STR in favor of
670 // -x vendor:VENDOR_STR
671 //if (!udhcp_find_option(packet.options, DHCP_VENDOR))
672 // /* not set, set the default vendor ID */
673 // ...add (DHCP_VENDOR, "udhcp "BB_VER) opt...
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100674}
675
676/* RFC 2131
677 * 4.4.4 Use of broadcast and unicast
678 *
679 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
680 * messages, unless the client knows the address of a DHCP server.
681 * The client unicasts DHCPRELEASE messages to the server. Because
682 * the client is declining the use of the IP address supplied by the server,
683 * the client broadcasts DHCPDECLINE messages.
684 *
685 * When the DHCP client knows the address of a DHCP server, in either
686 * INIT or REBOOTING state, the client may use that address
687 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
688 * The client may also use unicast to send DHCPINFORM messages
689 * to a known DHCP server. If the client receives no response to DHCP
690 * messages sent to the IP address of a known DHCP server, the DHCP
691 * client reverts to using the IP broadcast address.
692 */
693
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200694static int raw_bcast_from_client_data_ifindex(struct dhcp_packet *packet, uint32_t src_nip)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100695{
696 return udhcp_send_raw_packet(packet,
Hans Dedeckerabe8f752016-02-18 12:27:07 +0100697 /*src*/ src_nip, CLIENT_PORT,
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100698 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200699 client_data.ifindex);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100700}
701
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100702static int bcast_or_ucast(struct dhcp_packet *packet, uint32_t ciaddr, uint32_t server)
703{
Denys Vlasenko148788e2018-06-21 17:36:22 +0200704 if (server)
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100705 return udhcp_send_kernel_packet(packet,
706 ciaddr, CLIENT_PORT,
Denys Vlasenko148788e2018-06-21 17:36:22 +0200707 server, SERVER_PORT);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200708 return raw_bcast_from_client_data_ifindex(packet, ciaddr);
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100709}
710
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100711/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200712/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200713static NOINLINE int send_discover(uint32_t xid, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100714{
715 struct dhcp_packet packet;
716
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200717 /* Fill in: op, htype, hlen, cookie, chaddr fields,
718 * random xid field (we override it below),
719 * client-id option (unless -C), message type option:
720 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100721 init_packet(&packet, DHCPDISCOVER);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200722
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100723 packet.xid = xid;
724 if (requested)
Denys Vlasenko7724c762010-03-26 09:32:09 +0100725 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200726
727 /* Add options: maxsize,
728 * optionally: hostname, fqdn, vendorclass,
729 * "param req" option according to -O, options specified with -x
730 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100731 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100732
James Byrne253c4e72019-04-12 17:01:51 +0000733 bb_info_msg("sending %s", "discover");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200734 return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100735}
736
737/* Broadcast a DHCP request message */
738/* RFC 2131 3.1 paragraph 3:
739 * "The client _broadcasts_ a DHCPREQUEST message..."
740 */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200741/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200742static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100743{
744 struct dhcp_packet packet;
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200745 struct in_addr temp_addr;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100746
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200747/*
748 * RFC 2131 4.3.2 DHCPREQUEST message
749 * ...
750 * If the DHCPREQUEST message contains a 'server identifier'
751 * option, the message is in response to a DHCPOFFER message.
752 * Otherwise, the message is a request to verify or extend an
753 * existing lease. If the client uses a 'client identifier'
754 * in a DHCPREQUEST message, it MUST use that same 'client identifier'
755 * in all subsequent messages. If the client included a list
756 * of requested parameters in a DHCPDISCOVER message, it MUST
757 * include that list in all subsequent messages.
758 */
759 /* Fill in: op, htype, hlen, cookie, chaddr fields,
760 * random xid field (we override it below),
761 * client-id option (unless -C), message type option:
762 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100763 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200764
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100765 packet.xid = xid;
Denys Vlasenko7724c762010-03-26 09:32:09 +0100766 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200767
Denys Vlasenko7724c762010-03-26 09:32:09 +0100768 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200769
770 /* Add options: maxsize,
771 * optionally: hostname, fqdn, vendorclass,
772 * "param req" option according to -O, and options specified with -x
773 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100774 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100775
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200776 temp_addr.s_addr = requested;
James Byrne253c4e72019-04-12 17:01:51 +0000777 bb_info_msg("sending select for %s", inet_ntoa(temp_addr));
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200778 return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100779}
780
781/* Unicast or broadcast a DHCP renew message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200782/* NOINLINE: limit stack usage in caller */
783static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100784{
785 struct dhcp_packet packet;
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200786 struct in_addr temp_addr;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100787
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200788/*
789 * RFC 2131 4.3.2 DHCPREQUEST message
790 * ...
791 * DHCPREQUEST generated during RENEWING state:
792 *
793 * 'server identifier' MUST NOT be filled in, 'requested IP address'
794 * option MUST NOT be filled in, 'ciaddr' MUST be filled in with
795 * client's IP address. In this situation, the client is completely
796 * configured, and is trying to extend its lease. This message will
797 * be unicast, so no relay agents will be involved in its
798 * transmission. Because 'giaddr' is therefore not filled in, the
799 * DHCP server will trust the value in 'ciaddr', and use it when
800 * replying to the client.
801 */
802 /* Fill in: op, htype, hlen, cookie, chaddr fields,
803 * random xid field (we override it below),
804 * client-id option (unless -C), message type option:
805 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100806 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200807
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100808 packet.xid = xid;
809 packet.ciaddr = ciaddr;
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200810
811 /* Add options: maxsize,
812 * optionally: hostname, fqdn, vendorclass,
813 * "param req" option according to -O, and options specified with -x
814 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100815 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100816
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200817 temp_addr.s_addr = server;
James Byrne253c4e72019-04-12 17:01:51 +0000818 bb_info_msg("sending renew to %s", inet_ntoa(temp_addr));
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100819 return bcast_or_ucast(&packet, ciaddr, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100820}
821
822#if ENABLE_FEATURE_UDHCPC_ARPING
823/* Broadcast a DHCP decline message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200824/* NOINLINE: limit stack usage in caller */
Denys Vlasenko860491c2011-11-18 02:09:13 +0100825static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100826{
827 struct dhcp_packet packet;
828
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200829 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
830 * client-id option (unless -C), message type option:
831 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100832 init_packet(&packet, DHCPDECLINE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200833
Denys Vlasenko860491c2011-11-18 02:09:13 +0100834#if 0
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200835 /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client,
836 * but in case the server is buggy and wants DHCPDECLINE's xid
837 * to match the xid which started entire handshake,
838 * we use the same xid we used in initial DHCPDISCOVER:
839 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100840 packet.xid = xid;
Denys Vlasenko860491c2011-11-18 02:09:13 +0100841#endif
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200842 /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */
Denys Vlasenko7724c762010-03-26 09:32:09 +0100843 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200844
Denys Vlasenko7724c762010-03-26 09:32:09 +0100845 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100846
James Byrne253c4e72019-04-12 17:01:51 +0000847 bb_info_msg("sending %s", "decline");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200848 return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100849}
850#endif
851
852/* Unicast a DHCP release message */
Denys Vlasenko9d05ad02018-11-03 23:34:03 +0100853static
854ALWAYS_INLINE /* one caller, help compiler to use this fact */
855int send_release(uint32_t server, uint32_t ciaddr)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100856{
857 struct dhcp_packet packet;
858
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200859 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
860 * client-id option (unless -C), message type option:
861 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100862 init_packet(&packet, DHCPRELEASE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200863
864 /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100865 packet.ciaddr = ciaddr;
866
Denys Vlasenko7724c762010-03-26 09:32:09 +0100867 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100868
James Byrne253c4e72019-04-12 17:01:51 +0000869 bb_info_msg("sending %s", "release");
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100870 /* Note: normally we unicast here since "server" is not zero.
871 * However, there _are_ people who run "address-less" DHCP servers,
872 * and reportedly ISC dhcp client and Windows allow that.
873 */
874 return bcast_or_ucast(&packet, ciaddr, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100875}
876
877/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200878/* NOINLINE: limit stack usage in caller */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100879static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
880{
881 int bytes;
882 struct ip_udp_dhcp_packet packet;
883 uint16_t check;
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200884 unsigned char cmsgbuf[CMSG_LEN(sizeof(struct tpacket_auxdata))];
885 struct iovec iov;
886 struct msghdr msg;
887 struct cmsghdr *cmsg;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100888
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200889 /* used to use just safe_read(fd, &packet, sizeof(packet))
890 * but we need to check for TP_STATUS_CSUMNOTREADY :(
891 */
892 iov.iov_base = &packet;
893 iov.iov_len = sizeof(packet);
894 memset(&msg, 0, sizeof(msg));
895 msg.msg_iov = &iov;
896 msg.msg_iovlen = 1;
897 msg.msg_control = cmsgbuf;
898 msg.msg_controllen = sizeof(cmsgbuf);
899 for (;;) {
900 bytes = recvmsg(fd, &msg, 0);
901 if (bytes < 0) {
902 if (errno == EINTR)
903 continue;
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200904 log1("packet read error, ignoring");
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200905 /* NB: possible down interface, etc. Caller should pause. */
906 return bytes; /* returns -1 */
907 }
908 break;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100909 }
910
911 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200912 log1("packet is too short, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100913 return -2;
914 }
915
916 if (bytes < ntohs(packet.ip.tot_len)) {
917 /* packet is bigger than sizeof(packet), we did partial read */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200918 log1("oversized packet, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100919 return -2;
920 }
921
922 /* ignore any extra garbage bytes */
923 bytes = ntohs(packet.ip.tot_len);
924
925 /* make sure its the right packet for us, and that it passes sanity checks */
Denys Vlasenko7981d792011-10-20 10:34:05 +0200926 if (packet.ip.protocol != IPPROTO_UDP
927 || packet.ip.version != IPVERSION
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100928 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
929 || packet.udp.dest != htons(CLIENT_PORT)
930 /* || bytes > (int) sizeof(packet) - can't happen */
931 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
932 ) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200933 log1("unrelated/bogus packet, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100934 return -2;
935 }
936
937 /* verify IP checksum */
938 check = packet.ip.check;
939 packet.ip.check = 0;
Baruch Siache8f36332011-09-07 17:52:37 +0200940 if (check != inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip))) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200941 log1("bad IP header checksum, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100942 return -2;
943 }
944
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200945 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
946 if (cmsg->cmsg_level == SOL_PACKET
947 && cmsg->cmsg_type == PACKET_AUXDATA
948 ) {
949 /* some VMs don't checksum UDP and TCP data
950 * they send to the same physical machine,
951 * here we detect this case:
952 */
953 struct tpacket_auxdata *aux = (void *)CMSG_DATA(cmsg);
954 if (aux->tp_status & TP_STATUS_CSUMNOTREADY)
955 goto skip_udp_sum_check;
956 }
957 }
958
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100959 /* verify UDP checksum. IP header has to be modified for this */
960 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
961 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
962 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
963 check = packet.udp.check;
964 packet.udp.check = 0;
Baruch Siache8f36332011-09-07 17:52:37 +0200965 if (check && check != inet_cksum((uint16_t *)&packet, bytes)) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200966 log1("packet with bad UDP checksum received, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100967 return -2;
968 }
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200969 skip_udp_sum_check:
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100970
Denys Vlasenko7981d792011-10-20 10:34:05 +0200971 if (packet.data.cookie != htonl(DHCP_MAGIC)) {
James Byrne253c4e72019-04-12 17:01:51 +0000972 bb_info_msg("packet with bad magic, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100973 return -2;
974 }
Denys Vlasenko7981d792011-10-20 10:34:05 +0200975
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200976 log1("received %s", "a packet");
Denys Vlasenko7981d792011-10-20 10:34:05 +0200977 udhcp_dump_packet(&packet.data);
978
979 bytes -= sizeof(packet.ip) + sizeof(packet.udp);
980 memcpy(dhcp_pkt, &packet.data, bytes);
981 return bytes;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100982}
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100983
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100984
985/*** Main ***/
986
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200987/* Values for client_data.listen_mode */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100988#define LISTEN_NONE 0
989#define LISTEN_KERNEL 1
990#define LISTEN_RAW 2
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100991
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200992/* Values for client_data.state */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100993/* initial state: (re)start DHCP negotiation */
994#define INIT_SELECTING 0
995/* discover was sent, DHCPOFFER reply received */
996#define REQUESTING 1
997/* select/renew was sent, DHCPACK reply received */
998#define BOUND 2
999/* half of lease passed, want to renew it by sending unicast renew requests */
1000#define RENEWING 3
1001/* renew requests were not answered, lease is almost over, send broadcast renew */
1002#define REBINDING 4
1003/* manually requested renew (SIGUSR1) */
1004#define RENEW_REQUESTED 5
1005/* release, possibly manually requested (SIGUSR2) */
1006#define RELEASED 6
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001007
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001008static int udhcp_raw_socket(int ifindex)
1009{
1010 int fd;
1011 struct sockaddr_ll sock;
1012
Denys Vlasenko168f0ef2017-07-21 12:04:22 +02001013 log2("opening raw socket on ifindex %d", ifindex);
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001014
1015 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
Denys Vlasenko744ee5d2014-02-07 17:38:52 +01001016 /* ^^^^^
1017 * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them)
1018 * ETH_P_IP: want to receive only packets with IPv4 eth type
1019 */
Denys Vlasenko168f0ef2017-07-21 12:04:22 +02001020 log2("got raw socket fd");
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001021
Denys Vlasenko2b9acc62017-09-29 14:09:02 +02001022 memset(&sock, 0, sizeof(sock)); /* let's be deterministic */
Vladislav Grishenko713e6d72011-02-14 04:50:30 +01001023 sock.sll_family = AF_PACKET;
1024 sock.sll_protocol = htons(ETH_P_IP);
1025 sock.sll_ifindex = ifindex;
Denys Vlasenko2b9acc62017-09-29 14:09:02 +02001026 /*sock.sll_hatype = ARPHRD_???;*/
1027 /*sock.sll_pkttype = PACKET_???;*/
1028 /*sock.sll_halen = ???;*/
1029 /*sock.sll_addr[8] = ???;*/
Vladislav Grishenko713e6d72011-02-14 04:50:30 +01001030 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
1031
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001032#if 0 /* Several users reported breakage when BPF filter is used */
Vladislav Grishenko713e6d72011-02-14 04:50:30 +01001033 if (CLIENT_PORT == 68) {
1034 /* Use only if standard port is in use */
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001035 /*
1036 * I've selected not to see LL header, so BPF doesn't see it, too.
1037 * The filter may also pass non-IP and non-ARP packets, but we do
1038 * a more complete check when receiving the message in userspace.
1039 *
1040 * and filter shamelessly stolen from:
1041 *
1042 * http://www.flamewarmaster.de/software/dhcpclient/
1043 *
1044 * There are a few other interesting ideas on that page (look under
1045 * "Motivation"). Use of netlink events is most interesting. Think
1046 * of various network servers listening for events and reconfiguring.
1047 * That would obsolete sending HUP signals and/or make use of restarts.
1048 *
1049 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
1050 * License: GPL v2.
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001051 */
1052 static const struct sock_filter filter_instr[] = {
1053 /* load 9th byte (protocol) */
1054 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
1055 /* jump to L1 if it is IPPROTO_UDP, else to L4 */
1056 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6),
1057 /* L1: load halfword from offset 6 (flags and frag offset) */
1058 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6),
1059 /* jump to L4 if any bits in frag offset field are set, else to L2 */
1060 BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0),
1061 /* L2: skip IP header (load index reg with header len) */
1062 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0),
1063 /* load udp destination port from halfword[header_len + 2] */
1064 BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2),
1065 /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */
1066 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1),
Denys Vlasenkoffc3a932014-02-19 14:17:11 +01001067 /* L3: accept packet ("accept 0x7fffffff bytes") */
1068 /* Accepting 0xffffffff works too but kernel 2.6.19 is buggy */
1069 BPF_STMT(BPF_RET|BPF_K, 0x7fffffff),
1070 /* L4: discard packet ("accept zero bytes") */
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001071 BPF_STMT(BPF_RET|BPF_K, 0),
1072 };
1073 static const struct sock_fprog filter_prog = {
1074 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
1075 /* casting const away: */
1076 .filter = (struct sock_filter *) filter_instr,
1077 };
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001078 /* Ignoring error (kernel may lack support for this) */
1079 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
1080 sizeof(filter_prog)) >= 0)
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001081 log1("attached filter to raw socket fd"); // log?
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001082 }
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001083#endif
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001084
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001085 if (setsockopt_1(fd, SOL_PACKET, PACKET_AUXDATA) != 0) {
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001086 if (errno != ENOPROTOOPT)
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001087 log1("can't set PACKET_AUXDATA on raw socket");
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001088 }
1089
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001090 log1("created raw socket");
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001091
1092 return fd;
1093}
1094
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001095static void change_listen_mode(int new_mode)
Mike Frysinger7031f622006-05-08 03:20:50 +00001096{
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001097 log1("entering listen mode: %s",
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001098 new_mode != LISTEN_NONE
1099 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
1100 : "none"
1101 );
Denis Vlasenko517413f2008-12-10 11:16:47 +00001102
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001103 client_data.listen_mode = new_mode;
1104 if (client_data.sockfd >= 0) {
1105 close(client_data.sockfd);
1106 client_data.sockfd = -1;
Denis Vlasenkofbd29182007-04-07 01:05:47 +00001107 }
Denis Vlasenko517413f2008-12-10 11:16:47 +00001108 if (new_mode == LISTEN_KERNEL)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001109 client_data.sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_data.interface);
Denis Vlasenko517413f2008-12-10 11:16:47 +00001110 else if (new_mode != LISTEN_NONE)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001111 client_data.sockfd = udhcp_raw_socket(client_data.ifindex);
1112 /* else LISTEN_NONE: client_data.sockfd stays closed */
Mike Frysinger7031f622006-05-08 03:20:50 +00001113}
1114
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001115/* Called only on SIGUSR1 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001116static void perform_renew(void)
1117{
James Byrne253c4e72019-04-12 17:01:51 +00001118 bb_info_msg("performing DHCP renew");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001119 switch (client_data.state) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001120 case BOUND:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001121 change_listen_mode(LISTEN_KERNEL);
Mike Frysinger7031f622006-05-08 03:20:50 +00001122 case RENEWING:
1123 case REBINDING:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001124 client_data.state = RENEW_REQUESTED;
Mike Frysinger7031f622006-05-08 03:20:50 +00001125 break;
1126 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +00001127 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +00001128 case REQUESTING:
1129 case RELEASED:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001130 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001131 client_data.state = INIT_SELECTING;
Mike Frysinger7031f622006-05-08 03:20:50 +00001132 break;
1133 case INIT_SELECTING:
1134 break;
1135 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001136}
1137
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001138static void perform_release(uint32_t server_addr, uint32_t requested_ip)
Mike Frysinger7031f622006-05-08 03:20:50 +00001139{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001140 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +00001141 struct in_addr temp_addr;
1142
1143 /* send release packet */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001144 if (client_data.state == BOUND
1145 || client_data.state == RENEWING
1146 || client_data.state == REBINDING
1147 || client_data.state == RENEW_REQUESTED
Denys Vlasenko44399e02016-07-03 20:26:44 +02001148 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001149 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001150 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +00001151 temp_addr.s_addr = requested_ip;
James Byrne253c4e72019-04-12 17:01:51 +00001152 bb_info_msg("unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +00001153 inet_ntoa(temp_addr), buffer);
1154 send_release(server_addr, requested_ip); /* unicast */
Mike Frysinger7031f622006-05-08 03:20:50 +00001155 }
James Byrne253c4e72019-04-12 17:01:51 +00001156 bb_info_msg("entering released state");
Peter Korsgaardb6355e22016-08-26 18:46:34 +02001157/*
1158 * We can be here on: SIGUSR2,
1159 * or on exit (SIGTERM) and -R "release on quit" is specified.
1160 * Users requested to be notified in all cases, even if not in one
1161 * of the states above.
1162 */
1163 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +00001164
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001165 change_listen_mode(LISTEN_NONE);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001166 client_data.state = RELEASED;
Mike Frysinger7031f622006-05-08 03:20:50 +00001167}
1168
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001169static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
1170{
1171 uint8_t *storage;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001172 int len = strnlen(str, 255);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001173 storage = xzalloc(len + extra + OPT_DATA);
1174 storage[OPT_CODE] = code;
1175 storage[OPT_LEN] = len + extra;
1176 memcpy(storage + extra + OPT_DATA, str, len);
1177 return storage;
1178}
1179
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001180#if BB_MMU
1181static void client_background(void)
1182{
1183 bb_daemonize(0);
1184 logmode &= ~LOGMODE_STDIO;
1185 /* rewrite pidfile, as our pid is different now */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001186 write_pidfile(client_data.pidfile);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001187}
1188#endif
1189
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001190//usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
1191//usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__
1192//usage:#else
1193//usage:# define IF_UDHCP_VERBOSE(...)
1194//usage:#endif
1195//usage:#define udhcpc_trivial_usage
Michel Stam9f412712014-10-30 11:59:04 +01001196//usage: "[-fbq"IF_UDHCP_VERBOSE("v")"RB]"IF_FEATURE_UDHCPC_ARPING(" [-a[MSEC]]")" [-t N] [-T SEC] [-A SEC/-n]\n"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001197//usage: " [-i IFACE]"IF_FEATURE_UDHCP_PORT(" [-P PORT]")" [-s PROG] [-p PIDFILE]\n"
1198//usage: " [-oC] [-r IP] [-V VENDOR] [-F NAME] [-x OPT:VAL]... [-O OPT]..."
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001199//usage:#define udhcpc_full_usage "\n"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001200//usage: "\n -i IFACE Interface to use (default eth0)"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001201//usage: IF_FEATURE_UDHCP_PORT(
1202//usage: "\n -P PORT Use PORT (default 68)"
1203//usage: )
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001204//usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001205//usage: "\n -p FILE Create pidfile"
Keith Younge6bb8d32011-03-07 03:18:46 +01001206//usage: "\n -B Request broadcast replies"
Denys Vlasenkoaadb4852013-08-05 02:21:36 +02001207//usage: "\n -t N Send up to N discover packets (default 3)"
Denys Vlasenko456687f2013-08-08 12:33:18 +02001208//usage: "\n -T SEC Pause between packets (default 3)"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001209//usage: "\n -A SEC Wait if lease is not obtained (default 20)"
Denys Vlasenko544143d2019-02-27 08:17:07 +01001210//usage: USE_FOR_MMU(
1211//usage: "\n -b Background if lease is not obtained"
1212//usage: )
Denys Vlasenko456687f2013-08-08 12:33:18 +02001213//usage: "\n -n Exit if lease is not obtained"
1214//usage: "\n -q Exit after obtaining lease"
1215//usage: "\n -R Release IP on exit"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001216//usage: "\n -f Run in foreground"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001217//usage: "\n -S Log to syslog too"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001218//usage: IF_FEATURE_UDHCPC_ARPING(
Michel Stam9f412712014-10-30 11:59:04 +01001219//usage: "\n -a[MSEC] Validate offered address with ARP ping"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001220//usage: )
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001221//usage: "\n -r IP Request this IP address"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001222//usage: "\n -o Don't request any options (unless -O is given)"
1223//usage: "\n -O OPT Request option OPT from server (cumulative)"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001224//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
1225//usage: "\n Examples of string, numeric, and hex byte opts:"
1226//usage: "\n -x hostname:bbox - option 12"
1227//usage: "\n -x lease:3600 - option 51 (lease time)"
1228//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001229//usage: "\n -x 14:'\"dumpfile\"' - option 14 (shell-quoted)"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001230//usage: "\n -F NAME Ask server to update DNS mapping for NAME"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001231//usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001232//usage: "\n -C Don't send MAC as client identifier"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001233//usage: IF_UDHCP_VERBOSE(
1234//usage: "\n -v Verbose"
1235//usage: )
Denys Vlasenko8993c3f2010-12-25 06:21:54 +01001236//usage: "\nSignals:"
Denys Vlasenko50089fc2011-11-07 15:44:46 +01001237//usage: "\n USR1 Renew lease"
1238//usage: "\n USR2 Release lease"
Denys Vlasenko8993c3f2010-12-25 06:21:54 +01001239
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001240
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001241int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001242int udhcpc_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +00001243{
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001244 uint8_t *message;
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001245 const char *str_V, *str_h, *str_F, *str_r;
Michel Stam9f412712014-10-30 11:59:04 +01001246 IF_FEATURE_UDHCPC_ARPING(const char *str_a = "2000";)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001247 IF_FEATURE_UDHCP_PORT(char *str_P;)
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001248 void *clientid_mac_ptr;
Denis Vlasenko19183682007-12-10 07:03:38 +00001249 llist_t *list_O = NULL;
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001250 llist_t *list_x = NULL;
Denis Vlasenko68af8e72007-11-22 21:41:14 +00001251 int tryagain_timeout = 20;
1252 int discover_timeout = 3;
1253 int discover_retries = 3;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001254 uint32_t server_addr = server_addr; /* for compiler */
1255 uint32_t requested_ip = 0;
Denys Vlasenko860491c2011-11-18 02:09:13 +01001256 uint32_t xid = xid; /* for compiler */
Denis Vlasenkob539c842007-11-29 08:17:45 +00001257 int packet_num;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001258 int timeout; /* must be signed */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001259 unsigned already_waited_sec;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001260 unsigned opt;
Michel Stam9f412712014-10-30 11:59:04 +01001261 IF_FEATURE_UDHCPC_ARPING(unsigned arpping_ms;)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001262 int retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001263
Denys Vlasenkodf70a432016-04-21 18:54:36 +02001264 setup_common_bufsiz();
1265
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001266 /* Default options */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001267 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
1268 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001269 client_data.interface = "eth0";
1270 client_data.script = CONFIG_UDHCPC_DEFAULT_SCRIPT;
1271 client_data.sockfd = -1;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001272 str_V = "udhcp "BB_VER;
Mike Frysinger7031f622006-05-08 03:20:50 +00001273
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001274 /* Parse command line */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001275 opt = getopt32long(argv, "^"
1276 /* O,x: list; -T,-t,-A take numeric param */
1277 "CV:H:h:F:i:np:qRr:s:T:+t:+SA:+O:*ox:*fB"
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001278 USE_FOR_MMU("b")
Michel Stam9f412712014-10-30 11:59:04 +01001279 IF_FEATURE_UDHCPC_ARPING("a::")
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001280 IF_FEATURE_UDHCP_PORT("P:")
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001281 "v"
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001282 "\0" IF_UDHCP_VERBOSE("vv") /* -v is a counter */
Denys Vlasenko036585a2017-08-08 16:38:18 +02001283 , udhcpc_longopts
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001284 , &str_V, &str_h, &str_h, &str_F
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001285 , &client_data.interface, &client_data.pidfile /* i,p */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001286 , &str_r /* r */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001287 , &client_data.script /* s */
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001288 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
Denis Vlasenko19183682007-12-10 07:03:38 +00001289 , &list_O
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001290 , &list_x
Michel Stam9f412712014-10-30 11:59:04 +01001291 IF_FEATURE_UDHCPC_ARPING(, &str_a)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001292 IF_FEATURE_UDHCP_PORT(, &str_P)
Leonid Lisovskiy6c9c0a12011-10-18 00:35:47 +02001293 IF_UDHCP_VERBOSE(, &dhcp_verbose)
Denys Vlasenko7e21f042011-11-08 11:39:41 +01001294 );
Denys Vlasenko2017d482011-11-05 01:24:14 +01001295 if (opt & (OPT_h|OPT_H)) {
1296 //msg added 2011-11
1297 bb_error_msg("option -h NAME is deprecated, use -x hostname:NAME");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001298 client_data.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
Denys Vlasenko2017d482011-11-05 01:24:14 +01001299 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001300 if (opt & OPT_F) {
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001301 /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001302 client_data.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001303 /* Flag bits: 0000NEOS
1304 * S: 1 = Client requests server to update A RR in DNS as well as PTR
1305 * O: 1 = Server indicates to client that DNS has been updated regardless
1306 * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>,
1307 * not "host.domain.com". Format 0 is obsolete.
1308 * N: 1 = Client requests server to not update DNS (S must be 0 then)
1309 * Two [0] bytes which follow are deprecated and must be 0.
1310 */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001311 client_data.fqdn[OPT_DATA + 0] = 0x1;
1312 /*client_data.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */
1313 /*client_data.fqdn[OPT_DATA + 2] = 0; */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001314 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001315 if (opt & OPT_r)
1316 requested_ip = inet_addr(str_r);
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +00001317#if ENABLE_FEATURE_UDHCP_PORT
1318 if (opt & OPT_P) {
1319 CLIENT_PORT = xatou16(str_P);
1320 SERVER_PORT = CLIENT_PORT - 1;
1321 }
1322#endif
Michel Stam9f412712014-10-30 11:59:04 +01001323 IF_FEATURE_UDHCPC_ARPING(arpping_ms = xatou(str_a);)
Denis Vlasenko19183682007-12-10 07:03:38 +00001324 while (list_O) {
Denis Vlasenko18c93022008-08-27 22:29:43 +00001325 char *optstr = llist_pop(&list_O);
Denys Vlasenko5d3aace2011-06-04 05:07:16 +02001326 unsigned n = bb_strtou(optstr, NULL, 0);
1327 if (errno || n > 254) {
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +02001328 n = udhcp_option_idx(optstr, dhcp_option_strings);
Denys Vlasenko5d3aace2011-06-04 05:07:16 +02001329 n = dhcp_optflags[n].code;
1330 }
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001331 client_data.opt_mask[n >> 3] |= 1 << (n & 7);
Denis Vlasenko19183682007-12-10 07:03:38 +00001332 }
Denys Vlasenko293c9452012-07-27 13:25:07 +02001333 if (!(opt & OPT_o)) {
1334 unsigned i, n;
1335 for (i = 0; (n = dhcp_optflags[i].code) != 0; i++) {
1336 if (dhcp_optflags[i].flags & OPTION_REQ) {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001337 client_data.opt_mask[n >> 3] |= 1 << (n & 7);
Denys Vlasenko293c9452012-07-27 13:25:07 +02001338 }
1339 }
1340 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001341 while (list_x) {
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001342 char *optstr = xstrdup(llist_pop(&list_x));
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001343 udhcp_str2optset(optstr, &client_data.options,
Denys Vlasenko60275972018-05-14 11:06:35 +02001344 dhcp_optflags, dhcp_option_strings,
1345 /*dhcpv6:*/ 0
1346 );
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001347 free(optstr);
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001348 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001349
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001350 if (udhcp_read_interface(client_data.interface,
1351 &client_data.ifindex,
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001352 NULL,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001353 client_data.client_mac)
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001354 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001355 return 1;
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001356 }
1357
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001358 clientid_mac_ptr = NULL;
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001359 if (!(opt & OPT_C) && !udhcp_find_option(client_data.options, DHCP_CLIENT_ID)) {
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001360 /* not suppressed and not set, set the default client ID */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001361 client_data.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
1362 client_data.clientid[OPT_DATA] = 1; /* type: ethernet */
1363 clientid_mac_ptr = client_data.clientid + OPT_DATA+1;
1364 memcpy(clientid_mac_ptr, client_data.client_mac, 6);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001365 }
Denys Vlasenko2017d482011-11-05 01:24:14 +01001366 if (str_V[0] != '\0') {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001367 // can drop -V, str_V, client_data.vendorclass,
Denys Vlasenko2017d482011-11-05 01:24:14 +01001368 // but need to add "vendor" to the list of recognized
1369 // string opts for this to work;
1370 // and need to tweak add_client_options() too...
1371 // ...so the question is, should we?
1372 //bb_error_msg("option -V VENDOR is deprecated, use -x vendor:VENDOR");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001373 client_data.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
Denys Vlasenko2017d482011-11-05 01:24:14 +01001374 }
1375
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001376#if !BB_MMU
1377 /* on NOMMU reexec (i.e., background) early */
1378 if (!(opt & OPT_f)) {
1379 bb_daemonize_or_rexec(0 /* flags */, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001380 logmode = LOGMODE_NONE;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001381 }
1382#endif
1383 if (opt & OPT_S) {
Denis Vlasenko5e4fda02009-03-08 23:46:48 +00001384 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001385 logmode |= LOGMODE_SYSLOG;
1386 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001387
Denis Vlasenko80edead2007-08-02 22:31:05 +00001388 /* Make sure fd 0,1,2 are open */
1389 bb_sanitize_stdio();
Denis Vlasenko80edead2007-08-02 22:31:05 +00001390 /* Create pidfile */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001391 write_pidfile(client_data.pidfile);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001392 /* Goes to stdout (unless NOMMU) and possibly syslog */
James Byrne253c4e72019-04-12 17:01:51 +00001393 bb_info_msg("started, v"BB_VER);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001394 /* Set up the signal pipe */
Mike Frysinger7031f622006-05-08 03:20:50 +00001395 udhcp_sp_setup();
Denys Vlasenko8d114452010-03-22 13:44:09 +01001396 /* We want random_xid to be random... */
1397 srand(monotonic_us());
Mike Frysinger7031f622006-05-08 03:20:50 +00001398
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001399 client_data.state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +00001400 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001401 change_listen_mode(LISTEN_RAW);
Denis Vlasenkob539c842007-11-29 08:17:45 +00001402 packet_num = 0;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001403 timeout = 0;
Denis Vlasenko19903f02008-05-21 07:03:03 +00001404 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001405
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001406 /* Main event loop. select() waits on signal pipe and possibly
1407 * on sockfd.
1408 * "continue" statements in code below jump to the top of the loop.
1409 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001410 for (;;) {
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001411 int tv;
1412 struct pollfd pfds[2];
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001413 struct dhcp_packet packet;
Denis Vlasenkoec64a572009-01-14 00:28:03 +00001414 /* silence "uninitialized!" warning */
1415 unsigned timestamp_before_wait = timestamp_before_wait;
Mike Frysinger7031f622006-05-08 03:20:50 +00001416
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001417 //bb_error_msg("sockfd:%d, listen_mode:%d", client_data.sockfd, client_data.listen_mode);
Denis Vlasenko517413f2008-12-10 11:16:47 +00001418
1419 /* Was opening raw or udp socket here
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001420 * if (client_data.listen_mode != LISTEN_NONE && client_data.sockfd < 0),
Denis Vlasenko517413f2008-12-10 11:16:47 +00001421 * but on fast network renew responses return faster
1422 * than we open sockets. Thus this code is moved
1423 * to change_listen_mode(). Thus we open listen socket
1424 * BEFORE we send renew request (see "case BOUND:"). */
1425
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001426 udhcp_sp_fd_set(pfds, client_data.sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +00001427
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001428 tv = timeout - already_waited_sec;
Denys Vlasenko8d114452010-03-22 13:44:09 +01001429 retval = 0;
1430 /* If we already timed out, fall through with retval = 0, else... */
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001431 if (tv > 0) {
Denys Vlasenkode6cb412017-07-24 12:01:28 +02001432 log1("waiting %u seconds", tv);
Denis Vlasenkob2342912008-05-21 07:02:16 +00001433 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenko7c67f1e2017-02-17 19:20:32 +01001434 retval = poll(pfds, 2, tv < INT_MAX/1000 ? tv * 1000 : INT_MAX);
Denis Vlasenkob2342912008-05-21 07:02:16 +00001435 if (retval < 0) {
1436 /* EINTR? A signal was caught, don't panic */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001437 if (errno == EINTR) {
1438 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenkob2342912008-05-21 07:02:16 +00001439 continue;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001440 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001441 /* Else: an error occurred, panic! */
Denys Vlasenkode6cb412017-07-24 12:01:28 +02001442 bb_perror_msg_and_die("poll");
Denis Vlasenko80edead2007-08-02 22:31:05 +00001443 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001444 }
1445
1446 /* If timeout dropped to zero, time to become active:
1447 * resend discover/renew/whatever
1448 */
1449 if (retval == 0) {
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001450 /* When running on a bridge, the ifindex may have changed
1451 * (e.g. if member interfaces were added/removed
1452 * or if the status of the bridge changed).
1453 * Refresh ifindex and client_mac:
1454 */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001455 if (udhcp_read_interface(client_data.interface,
1456 &client_data.ifindex,
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001457 NULL,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001458 client_data.client_mac)
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001459 ) {
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001460 goto ret0; /* iface is gone? */
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001461 }
1462 if (clientid_mac_ptr)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001463 memcpy(clientid_mac_ptr, client_data.client_mac, 6);
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001464
Denis Vlasenkof1980f62008-09-26 09:34:59 +00001465 /* We will restart the wait in any case */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001466 already_waited_sec = 0;
1467
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001468 switch (client_data.state) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001469 case INIT_SELECTING:
Felix Fietkau1c7a58d2012-09-27 16:22:24 +02001470 if (!discover_retries || packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001471 if (packet_num == 0)
1472 xid = random_xid();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001473 /* broadcast */
1474 send_discover(xid, requested_ip);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001475 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001476 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001477 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001478 }
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001479 leasefail:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001480 udhcp_run_script(NULL, "leasefail");
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001481#if BB_MMU /* -b is not supported on NOMMU */
1482 if (opt & OPT_b) { /* background if no lease */
James Byrne253c4e72019-04-12 17:01:51 +00001483 bb_info_msg("no lease, forking to background");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001484 client_background();
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001485 /* do not background again! */
Andrey Mazo87e21622019-02-22 16:46:19 -05001486 opt = ((opt & ~(OPT_b|OPT_n)) | OPT_f);
1487 /* ^^^ also disables -n (-b takes priority over -n):
1488 * ifup's default udhcpc options are -R -n,
1489 * and users want to be able to add -b
1490 * (in a config file) to make it background
1491 * _and not exit_.
1492 */
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001493 } else
1494#endif
1495 if (opt & OPT_n) { /* abort if no lease */
James Byrne253c4e72019-04-12 17:01:51 +00001496 bb_info_msg("no lease, failing");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001497 retval = 1;
1498 goto ret;
1499 }
Denis Vlasenko6de89942008-05-21 07:05:06 +00001500 /* wait before trying again */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001501 timeout = tryagain_timeout;
1502 packet_num = 0;
1503 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001504 case REQUESTING:
Denys Vlasenko86d9f602016-03-04 17:00:56 +01001505 if (packet_num < 3) {
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001506 /* send broadcast select packet */
1507 send_select(xid, server_addr, requested_ip);
Denis Vlasenko6de89942008-05-21 07:05:06 +00001508 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001509 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001510 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001511 }
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001512 /* Timed out, go back to init state.
1513 * "discover...select...discover..." loops
Denis Vlasenko7d9399e2008-09-26 22:21:03 +00001514 * were seen in the wild. Treat them similarly
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001515 * to "no response to discover" case */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001516 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001517 client_data.state = INIT_SELECTING;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001518 goto leasefail;
Mike Frysinger7031f622006-05-08 03:20:50 +00001519 case BOUND:
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001520 /* 1/2 lease passed, enter renewing state */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001521 client_data.state = RENEWING;
1522 client_data.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001523 change_listen_mode(LISTEN_KERNEL);
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001524 log1("entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +00001525 /* fall right through */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001526 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
1527 case_RENEW_REQUESTED:
Mike Frysinger7031f622006-05-08 03:20:50 +00001528 case RENEWING:
Denys Vlasenkoaae428f2018-09-28 14:44:09 +02001529 if (timeout >= 60) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001530 /* send an unicast renew request */
1531 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
1532 * a new UDP socket for sending inside send_renew.
1533 * I hazard to guess existing listening socket
1534 * is somehow conflicting with it, but why is it
1535 * not deterministic then?! Strange.
Denys Vlasenko753a3ce2009-07-19 04:27:10 +02001536 * Anyway, it does recover by eventually failing through
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001537 * into INIT_SELECTING state.
1538 */
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001539 if (send_renew(xid, server_addr, requested_ip) >= 0) {
1540 timeout >>= 1;
Denys Vlasenkof6258362017-09-29 18:02:01 +02001541//TODO: the timeout to receive an answer for our renew should not be selected
1542//with "timeout = lease_seconds / 2; ...; timeout = timeout / 2": it is often huge.
1543//Waiting e.g. 4*3600 seconds for a reply does not make sense
1544//(if reply isn't coming, we keep an open socket for hours),
1545//it should be something like 10 seconds.
1546//Also, it's probably best to try sending renew in kernel mode a few (3-5) times
1547//and fall back to raw mode if it does not work.
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001548 continue;
1549 }
1550 /* else: error sending.
1551 * example: ENETUNREACH seen with server
1552 * which gave us bogus server ID 1.1.1.1
1553 * which wasn't reachable (and probably did not exist).
1554 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001555 }
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001556 /* Timed out or error, enter rebinding state */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001557 log1("entering rebinding state");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001558 client_data.state = REBINDING;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001559 /* fall right through */
Mike Frysinger7031f622006-05-08 03:20:50 +00001560 case REBINDING:
Denys Vlasenko219757f2009-10-08 23:05:46 +02001561 /* Switch to bcast receive */
1562 change_listen_mode(LISTEN_RAW);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001563 /* Lease is *really* about to run out,
1564 * try to find DHCP server using broadcast */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001565 if (timeout > 0) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001566 /* send a broadcast renew request */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001567 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +00001568 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001569 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001570 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001571 /* Timed out, enter init state */
James Byrne253c4e72019-04-12 17:01:51 +00001572 bb_info_msg("lease lost, entering init state");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001573 udhcp_run_script(NULL, "deconfig");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001574 client_data.state = INIT_SELECTING;
1575 client_data.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001576 /*timeout = 0; - already is */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001577 packet_num = 0;
1578 continue;
1579 /* case RELEASED: */
Mike Frysinger7031f622006-05-08 03:20:50 +00001580 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001581 /* yah, I know, *you* say it would never happen */
1582 timeout = INT_MAX;
1583 continue; /* back to main loop */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001584 } /* if poll timed out */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001585
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001586 /* poll() didn't timeout, something happened */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001587
1588 /* Is it a signal? */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001589 switch (udhcp_sp_read()) {
Denys Vlasenko4248c332009-06-26 23:23:16 +02001590 case SIGUSR1:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001591 client_data.first_secs = 0; /* make secs field count from 0 */
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001592 already_waited_sec = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001593 perform_renew();
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001594 if (client_data.state == RENEW_REQUESTED) {
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001595 /* We might be either on the same network
1596 * (in which case renew might work),
1597 * or we might be on a completely different one
1598 * (in which case renew won't ever succeed).
1599 * For the second case, must make sure timeout
1600 * is not too big, or else we can send
1601 * futile renew requests for hours.
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001602 */
Denys Vlasenkoaae428f2018-09-28 14:44:09 +02001603 if (timeout > 60)
1604 timeout = 60;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001605 goto case_RENEW_REQUESTED;
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001606 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001607 /* Start things over */
1608 packet_num = 0;
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001609 /* Kill any timeouts, user wants this to hurry along */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001610 timeout = 0;
1611 continue;
1612 case SIGUSR2:
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001613 perform_release(server_addr, requested_ip);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001614 timeout = INT_MAX;
1615 continue;
1616 case SIGTERM:
James Byrne253c4e72019-04-12 17:01:51 +00001617 bb_info_msg("received %s", "SIGTERM");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001618 goto ret0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001619 }
1620
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001621 /* Is it a packet? */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001622 if (!pfds[1].revents)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001623 continue; /* no */
Mike Frysinger7031f622006-05-08 03:20:50 +00001624
Denys Vlasenko4248c332009-06-26 23:23:16 +02001625 {
1626 int len;
1627
1628 /* A packet is ready, read it */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001629 if (client_data.listen_mode == LISTEN_KERNEL)
1630 len = udhcp_recv_kernel_packet(&packet, client_data.sockfd);
Denis Vlasenkob76b9a42008-01-25 22:46:34 +00001631 else
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001632 len = udhcp_recv_raw_packet(&packet, client_data.sockfd);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001633 if (len == -1) {
1634 /* Error is severe, reopen socket */
Denys Vlasenko6f97b302017-09-29 18:17:25 +02001635 bb_error_msg("read error: "STRERROR_FMT", reopening socket" STRERROR_ERRNO);
Denis Vlasenko6de89942008-05-21 07:05:06 +00001636 sleep(discover_timeout); /* 3 seconds by default */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001637 change_listen_mode(client_data.listen_mode); /* just close and reopen */
Denis Vlasenko6de89942008-05-21 07:05:06 +00001638 }
Denis Vlasenkob2342912008-05-21 07:02:16 +00001639 /* If this packet will turn out to be unrelated/bogus,
1640 * we will go back and wait for next one.
1641 * Be sure timeout is properly decreased. */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001642 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001643 if (len < 0)
1644 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001645 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001646
Denys Vlasenko4248c332009-06-26 23:23:16 +02001647 if (packet.xid != xid) {
1648 log1("xid %x (our is %x), ignoring packet",
1649 (unsigned)packet.xid, (unsigned)xid);
1650 continue;
1651 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001652
Denys Vlasenko4248c332009-06-26 23:23:16 +02001653 /* Ignore packets that aren't for us */
1654 if (packet.hlen != 6
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001655 || memcmp(packet.chaddr, client_data.client_mac, 6) != 0
Denys Vlasenko4248c332009-06-26 23:23:16 +02001656 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001657//FIXME: need to also check that last 10 bytes are zero
Denys Vlasenko4248c332009-06-26 23:23:16 +02001658 log1("chaddr does not match, ignoring packet"); // log2?
1659 continue;
1660 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001661
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001662 message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001663 if (message == NULL) {
James Byrne253c4e72019-04-12 17:01:51 +00001664 bb_info_msg("no message type option, ignoring packet");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001665 continue;
1666 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001667
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001668 switch (client_data.state) {
Denys Vlasenko4248c332009-06-26 23:23:16 +02001669 case INIT_SELECTING:
Denys Vlasenko860491c2011-11-18 02:09:13 +01001670 /* Must be a DHCPOFFER */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001671 if (*message == DHCPOFFER) {
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001672 uint8_t *temp;
1673
Denys Vlasenko2af2acf2011-10-20 14:47:41 +02001674/* What exactly is server's IP? There are several values.
1675 * Example DHCP offer captured with tchdump:
1676 *
1677 * 10.34.25.254:67 > 10.34.25.202:68 // IP header's src
1678 * BOOTP fields:
1679 * Your-IP 10.34.25.202
1680 * Server-IP 10.34.32.125 // "next server" IP
1681 * Gateway-IP 10.34.25.254 // relay's address (if DHCP relays are in use)
1682 * DHCP options:
1683 * DHCP-Message Option 53, length 1: Offer
1684 * Server-ID Option 54, length 4: 10.34.255.7 // "server ID"
1685 * Default-Gateway Option 3, length 4: 10.34.25.254 // router
1686 *
1687 * We think that real server IP (one to use in renew/release)
1688 * is one in Server-ID option. But I am not 100% sure.
Denys Vlasenkoee320c62011-10-23 18:05:58 +02001689 * IP header's src and Gateway-IP (same in this example)
Denys Vlasenko2af2acf2011-10-20 14:47:41 +02001690 * might work too.
1691 * "Next server" and router are definitely wrong ones to use, though...
1692 */
James Byrne253c4e72019-04-12 17:01:51 +00001693/* We used to ignore packets without DHCP_SERVER_ID.
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +01001694 * I've got user reports from people who run "address-less" servers.
1695 * They either supply DHCP_SERVER_ID of 0.0.0.0 or don't supply it at all.
1696 * They say ISC DHCP client supports this case.
1697 */
1698 server_addr = 0;
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001699 temp = udhcp_get_option32(&packet, DHCP_SERVER_ID);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001700 if (!temp) {
James Byrne253c4e72019-04-12 17:01:51 +00001701 bb_info_msg("no server ID, using 0.0.0.0");
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +01001702 } else {
1703 /* it IS unaligned sometimes, don't "optimize" */
1704 move_from_unaligned32(server_addr, temp);
Mike Frysinger7031f622006-05-08 03:20:50 +00001705 }
Denys Vlasenkob3af65b2010-10-20 21:37:23 +02001706 /*xid = packet.xid; - already is */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001707 requested_ip = packet.yiaddr;
1708
1709 /* enter requesting state */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001710 client_data.state = REQUESTING;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001711 timeout = 0;
1712 packet_num = 0;
1713 already_waited_sec = 0;
1714 }
1715 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001716 case REQUESTING:
1717 case RENEWING:
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001718 case RENEW_REQUESTED:
Denys Vlasenko4248c332009-06-26 23:23:16 +02001719 case REBINDING:
1720 if (*message == DHCPACK) {
Denys Vlasenko28634922014-12-21 16:10:22 +01001721 unsigned start;
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001722 uint32_t lease_seconds;
1723 struct in_addr temp_addr;
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001724 uint8_t *temp;
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001725
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001726 temp = udhcp_get_option32(&packet, DHCP_LEASE_TIME);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001727 if (!temp) {
James Byrne253c4e72019-04-12 17:01:51 +00001728 bb_info_msg("no lease time with ACK, using 1 hour lease");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001729 lease_seconds = 60 * 60;
1730 } else {
1731 /* it IS unaligned sometimes, don't "optimize" */
1732 move_from_unaligned32(lease_seconds, temp);
1733 lease_seconds = ntohl(lease_seconds);
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001734 /* paranoia: must not be too small and not prone to overflows */
Denys Vlasenkoc05aa6a2018-10-30 11:56:18 +01001735 /* timeout > 60 - ensures at least one unicast renew attempt */
1736 if (lease_seconds < 2 * 61)
1737 lease_seconds = 2 * 61;
Denys Vlasenko7c44b602018-01-17 13:55:51 +01001738 //if (lease_seconds > 0x7fffffff)
1739 // lease_seconds = 0x7fffffff;
1740 //^^^not necessary since "timeout = lease_seconds / 2"
1741 //does not overflow even for 0xffffffff.
Denys Vlasenko4248c332009-06-26 23:23:16 +02001742 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001743#if ENABLE_FEATURE_UDHCPC_ARPING
Denys Vlasenko4248c332009-06-26 23:23:16 +02001744 if (opt & OPT_a) {
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001745/* RFC 2131 3.1 paragraph 5:
1746 * "The client receives the DHCPACK message with configuration
1747 * parameters. The client SHOULD perform a final check on the
1748 * parameters (e.g., ARP for allocated network address), and notes
1749 * the duration of the lease specified in the DHCPACK message. At this
1750 * point, the client is configured. If the client detects that the
1751 * address is already in use (e.g., through the use of ARP),
1752 * the client MUST send a DHCPDECLINE message to the server and restarts
1753 * the configuration process..." */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001754 if (!arpping(packet.yiaddr,
1755 NULL,
1756 (uint32_t) 0,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001757 client_data.client_mac,
1758 client_data.interface,
Michel Stam9f412712014-10-30 11:59:04 +01001759 arpping_ms)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001760 ) {
James Byrne253c4e72019-04-12 17:01:51 +00001761 bb_info_msg("offered address is in use "
Denys Vlasenko4248c332009-06-26 23:23:16 +02001762 "(got ARP reply), declining");
Denys Vlasenko860491c2011-11-18 02:09:13 +01001763 send_decline(/*xid,*/ server_addr, packet.yiaddr);
Denis Vlasenko223bc972007-11-22 00:58:49 +00001764
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001765 if (client_data.state != REQUESTING)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001766 udhcp_run_script(NULL, "deconfig");
1767 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001768 client_data.state = INIT_SELECTING;
1769 client_data.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001770 requested_ip = 0;
1771 timeout = tryagain_timeout;
1772 packet_num = 0;
1773 already_waited_sec = 0;
1774 continue; /* back to main loop */
Denis Vlasenko223bc972007-11-22 00:58:49 +00001775 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001776 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001777#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +02001778 /* enter bound state */
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01001779 temp_addr.s_addr = packet.yiaddr;
James Byrne253c4e72019-04-12 17:01:51 +00001780 bb_info_msg("lease of %s obtained, lease time %u",
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001781 inet_ntoa(temp_addr), (unsigned)lease_seconds);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001782 requested_ip = packet.yiaddr;
Denys Vlasenko28634922014-12-21 16:10:22 +01001783
1784 start = monotonic_sec();
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001785 udhcp_run_script(&packet, client_data.state == REQUESTING ? "bound" : "renew");
Denys Vlasenko28634922014-12-21 16:10:22 +01001786 already_waited_sec = (unsigned)monotonic_sec() - start;
John Schroeder8074a6c2014-12-25 21:12:51 +01001787 timeout = lease_seconds / 2;
1788 if ((unsigned)timeout < already_waited_sec) {
1789 /* Something went wrong. Back to discover state */
1790 timeout = already_waited_sec = 0;
1791 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001792
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001793 client_data.state = BOUND;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001794 change_listen_mode(LISTEN_NONE);
1795 if (opt & OPT_q) { /* quit after lease */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001796 goto ret0;
1797 }
Justin Maggardaa369e02009-08-13 01:26:17 +02001798 /* future renew failures should not exit (JM) */
1799 opt &= ~OPT_n;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001800#if BB_MMU /* NOMMU case backgrounded earlier */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001801 if (!(opt & OPT_f)) {
1802 client_background();
1803 /* do not background again! */
1804 opt = ((opt & ~OPT_b) | OPT_f);
1805 }
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001806#endif
Denys Vlasenko860491c2011-11-18 02:09:13 +01001807 /* make future renew packets use different xid */
1808 /* xid = random_xid(); ...but why bother? */
Denys Vlasenko28634922014-12-21 16:10:22 +01001809
Denys Vlasenko4248c332009-06-26 23:23:16 +02001810 continue; /* back to main loop */
Mike Frysinger7031f622006-05-08 03:20:50 +00001811 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001812 if (*message == DHCPNAK) {
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001813 /* If network has more than one DHCP server,
1814 * "wrong" server can reply first, with a NAK.
1815 * Do not interpret it as a NAK from "our" server.
1816 */
1817 if (server_addr != 0) {
1818 uint32_t svid;
1819 uint8_t *temp;
1820
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001821 temp = udhcp_get_option32(&packet, DHCP_SERVER_ID);
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001822 if (!temp) {
1823 non_matching_svid:
Peter Korsgaardb6355e22016-08-26 18:46:34 +02001824 log1("received DHCP NAK with wrong"
1825 " server ID, ignoring packet");
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001826 continue;
1827 }
1828 move_from_unaligned32(svid, temp);
1829 if (svid != server_addr)
1830 goto non_matching_svid;
1831 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001832 /* return to init state */
James Byrne253c4e72019-04-12 17:01:51 +00001833 bb_info_msg("received %s", "DHCP NAK");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001834 udhcp_run_script(&packet, "nak");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001835 if (client_data.state != REQUESTING)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001836 udhcp_run_script(NULL, "deconfig");
1837 change_listen_mode(LISTEN_RAW);
1838 sleep(3); /* avoid excessive network traffic */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001839 client_data.state = INIT_SELECTING;
1840 client_data.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001841 requested_ip = 0;
Denis Vlasenkob539c842007-11-29 08:17:45 +00001842 timeout = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001843 packet_num = 0;
1844 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001845 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001846 continue;
1847 /* case BOUND: - ignore all packets */
1848 /* case RELEASED: - ignore all packets */
Mike Frysinger7031f622006-05-08 03:20:50 +00001849 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001850 /* back to main loop */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001851 } /* for (;;) - main loop ends */
1852
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001853 ret0:
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001854 if (opt & OPT_R) /* release on quit */
1855 perform_release(server_addr, requested_ip);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001856 retval = 0;
1857 ret:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001858 /*if (client_data.pidfile) - remove_pidfile has its own check */
1859 remove_pidfile(client_data.pidfile);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001860 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001861}