blob: 50dfead63d14ae7f5f48059648a86c8e2b2ea84b [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 name represents a valid DNS name */
163/* See RFC1035, 2.3.1 */
Martin Lewis726d0d12020-05-04 16:59:14 -0500164/* We don't need to be particularly anal. For example, allowing _, hyphen
165 * at the end, or leading and trailing dots would be ok, since it
166 * can't be used for attacks. (Leading hyphen can be, if someone uses cmd "$hostname"
167 * in the script: then hostname may be treated as an option)
168 */
Denys Vlasenko7280d202011-12-08 16:41:05 +0100169static int good_hostname(const char *name)
170{
Martin Lewis726d0d12020-05-04 16:59:14 -0500171 if (*name == '-') /* Can't start with '-' */
172 return 0;
Denys Vlasenko7280d202011-12-08 16:41:05 +0100173
Martin Lewis726d0d12020-05-04 16:59:14 -0500174 while (*name) {
175 unsigned char ch = *name++;
176 if (!isalnum(ch))
177 /* DNS allows only '-', but we are more permissive */
178 if (ch != '-' && ch != '_' && ch != '.')
179 return 0;
180 // TODO: do we want to validate lengths against NS_MAXLABEL and NS_MAXDNAME?
Denys Vlasenko7280d202011-12-08 16:41:05 +0100181 }
Martin Lewis726d0d12020-05-04 16:59:14 -0500182 return 1;
Denys Vlasenko7280d202011-12-08 16:41:05 +0100183}
Denys Vlasenko85090c12014-06-16 00:17:00 +0200184#else
185# define good_hostname(name) 1
186#endif
Denys Vlasenko7280d202011-12-08 16:41:05 +0100187
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100188/* Create "opt_name=opt_value" string */
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200189static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_optflag *optflag, const char *opt_name)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100190{
191 unsigned upper_length;
192 int len, type, optlen;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100193 char *dest, *ret;
194
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200195 /* option points to OPT_DATA, need to go back to get OPT_LEN */
196 len = option[-OPT_DATA + OPT_LEN];
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200197
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200198 type = optflag->flags & OPTION_TYPE_MASK;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100199 optlen = dhcp_option_lengths[type];
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200200 upper_length = len_of_option_as_string[type]
Denys Vlasenko352f79a2016-02-26 15:54:56 +0100201 * ((unsigned)(len + optlen) / (unsigned)optlen);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100202
203 dest = ret = xmalloc(upper_length + strlen(opt_name) + 2);
204 dest += sprintf(ret, "%s=", opt_name);
205
206 while (len >= optlen) {
207 switch (type) {
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200208 case OPTION_IP:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100209 case OPTION_IP_PAIR:
210 dest += sprint_nip(dest, "", option);
Martin Lewisd30d1eb2020-06-09 16:59:54 -0500211 if (type == OPTION_IP_PAIR)
212 dest += sprint_nip(dest, "/", option + 4);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100213 break;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100214// case OPTION_BOOLEAN:
215// dest += sprintf(dest, *option ? "yes" : "no");
216// break;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100217 case OPTION_U8:
218 dest += sprintf(dest, "%u", *option);
219 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200220// case OPTION_S16:
221 case OPTION_U16: {
222 uint16_t val_u16;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100223 move_from_unaligned16(val_u16, option);
224 dest += sprintf(dest, "%u", ntohs(val_u16));
225 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200226 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100227 case OPTION_S32:
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200228 case OPTION_U32: {
229 uint32_t val_u32;
230 move_from_unaligned32(val_u32, option);
231 dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32));
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100232 break;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200233 }
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200234 /* Note: options which use 'return' instead of 'break'
235 * (for example, OPTION_STRING) skip the code which handles
236 * the case of list of options.
237 */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100238 case OPTION_STRING:
Denys Vlasenko7280d202011-12-08 16:41:05 +0100239 case OPTION_STRING_HOST:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100240 memcpy(dest, option, len);
241 dest[len] = '\0';
Denys Vlasenko02cf1492018-08-01 13:36:36 +0200242//TODO: it appears option 15 DHCP_DOMAIN_NAME is often abused
243//by DHCP admins to contain a space-separated list of domains,
244//not one domain name (presumably, to work as list of search domains,
245//instead of using proper option 119 DHCP_DOMAIN_SEARCH).
246//Currently, good_hostname() balks on strings containing spaces.
247//Do we need to allow it? Only for DHCP_DOMAIN_NAME option?
Denys Vlasenko7280d202011-12-08 16:41:05 +0100248 if (type == OPTION_STRING_HOST && !good_hostname(dest))
249 safe_strncpy(dest, "bad", len);
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200250 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100251 case OPTION_STATIC_ROUTES: {
252 /* Option binary format:
253 * mask [one byte, 0..32]
254 * ip [big endian, 0..4 bytes depending on mask]
255 * router [big endian, 4 bytes]
256 * may be repeated
257 *
258 * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2"
259 */
260 const char *pfx = "";
261
262 while (len >= 1 + 4) { /* mask + 0-byte ip + router */
263 uint32_t nip;
264 uint8_t *p;
265 unsigned mask;
266 int bytes;
267
268 mask = *option++;
269 if (mask > 32)
270 break;
271 len--;
272
273 nip = 0;
274 p = (void*) &nip;
275 bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */
276 while (--bytes >= 0) {
277 *p++ = *option++;
278 len--;
279 }
280 if (len < 4)
281 break;
282
283 /* print ip/mask */
284 dest += sprint_nip(dest, pfx, (void*) &nip);
285 pfx = " ";
286 dest += sprintf(dest, "/%u ", mask);
287 /* print router */
288 dest += sprint_nip(dest, "", option);
289 option += 4;
290 len -= 4;
291 }
292
293 return ret;
294 }
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200295 case OPTION_6RD:
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200296 /* Option binary format (see RFC 5969):
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200297 * 0 1 2 3
298 * 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 +0200299 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
300 * | OPTION_6RD | option-length | IPv4MaskLen | 6rdPrefixLen |
301 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200302 * | 6rdPrefix |
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200303 * ... (16 octets) ...
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200304 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200305 * ... 6rdBRIPv4Address(es) ...
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200306 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200307 * We convert it to a string
308 * "IPv4MaskLen 6rdPrefixLen 6rdPrefix 6rdBRIPv4Address..."
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200309 *
310 * Sanity check: ensure that our length is at least 22 bytes, that
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200311 * IPv4MaskLen <= 32,
312 * 6rdPrefixLen <= 128,
313 * 6rdPrefixLen + (32 - IPv4MaskLen) <= 128
Martin Lewisd30d1eb2020-06-09 16:59:54 -0500314 * (2nd condition needs no check - it follows from 1st and 3rd).
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200315 * Else, return envvar with empty value ("optname=")
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200316 */
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200317 if (len >= (1 + 1 + 16 + 4)
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200318 && option[0] <= 32
319 && (option[1] + 32 - option[0]) <= 128
320 ) {
321 /* IPv4MaskLen */
322 dest += sprintf(dest, "%u ", *option++);
323 /* 6rdPrefixLen */
324 dest += sprintf(dest, "%u ", *option++);
325 /* 6rdPrefix */
Denys Vlasenko42816c22011-10-20 10:52:07 +0200326 dest += sprint_nip6(dest, /* "", */ option);
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200327 option += 16;
Martin Lewisd30d1eb2020-06-09 16:59:54 -0500328 len -= 1 + 1 + 16;
329 *dest++ = ' ';
330 /* 6rdBRIPv4Address(es), use common IPv4 logic to process them */
331 type = OPTION_IP;
332 optlen = 4;
333 continue;
Denys Vlasenko1f56e512011-10-19 22:40:35 +0200334 }
335
336 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100337#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200338 case OPTION_DNS_STRING:
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100339 /* unpack option into dest; use ret for prefix (i.e., "optname=") */
340 dest = dname_dec(option, len, ret);
341 if (dest) {
342 free(ret);
343 return dest;
344 }
345 /* error. return "optname=" string */
346 return ret;
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200347 case OPTION_SIP_SERVERS:
348 /* Option binary format:
349 * type: byte
350 * type=0: domain names, dns-compressed
351 * type=1: IP addrs
352 */
353 option++;
354 len--;
Martin Lewisd30d1eb2020-06-09 16:59:54 -0500355 if (option[-1] == 1) {
356 /* use common IPv4 logic to process IP addrs */
357 type = OPTION_IP;
358 optlen = 4;
359 continue;
360 }
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200361 if (option[-1] == 0) {
362 dest = dname_dec(option, len, ret);
363 if (dest) {
364 free(ret);
365 return dest;
366 }
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200367 }
368 return ret;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100369#endif
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200370 } /* switch */
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200371
372 /* If we are here, try to format any remaining data
373 * in the option as another, similarly-formatted option
374 */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100375 option += optlen;
376 len -= optlen;
Vladislav Grishenkoad8def22010-10-17 12:27:50 +0200377// TODO: it can be a list only if (optflag->flags & OPTION_LIST).
378// Should we bail out/warn if we see multi-ip option which is
379// not allowed to be such (for example, DHCP_BROADCAST)? -
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +0200380 if (len < optlen /* || !(optflag->flags & OPTION_LIST) */)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100381 break;
382 *dest++ = ' ';
383 *dest = '\0';
Denys Vlasenko1dff6722011-10-20 12:29:18 +0200384 } /* while */
385
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100386 return ret;
387}
388
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500389static void putenvp(llist_t **envp, char *new_opt)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100390{
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500391 putenv(new_opt);
392 log2(" %s", new_opt);
393 llist_add_to(envp, new_opt);
394}
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100395
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500396static const char* get_optname(uint8_t code, const struct dhcp_optflag **dh)
397{
398 /* Find the option:
399 * dhcp_optflags is sorted so we stop searching when dh->code >= code, which is faster
400 * than iterating over the entire array.
401 * Options which don't have a match in dhcp_option_strings[], e.g DHCP_REQUESTED_IP,
402 * are located after the sorted array, so these entries will never be reached
403 * and they'll count as unknown options.
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200404 */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500405 for (*dh = dhcp_optflags; (*dh)->code && (*dh)->code < code; (*dh)++)
406 continue;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100407
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500408 if ((*dh)->code == code)
409 return nth_string(dhcp_option_strings, (*dh - dhcp_optflags));
410
411 return NULL;
412}
413
414/* put all the parameters into the environment */
415static llist_t *fill_envp(struct dhcp_packet *packet)
416{
417 uint8_t *optptr;
418 struct dhcp_scan_state scan_state;
419 char *new_opt;
420 llist_t *envp = NULL;
421
422 putenvp(&envp, xasprintf("interface=%s", client_data.interface));
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100423
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200424 if (!packet)
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100425 return envp;
426
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500427 init_scan_state(packet, &scan_state);
428
429 /* Iterate over the packet options.
430 * Handle each option based on whether it's an unknown / known option.
431 * There may be (although unlikely) duplicate options. For now, only the last
432 * appearing option will be stored in the environment, and all duplicates
433 * are freed properly.
434 * Long options may be implemented in the future (see RFC 3396) if needed.
435 */
436 while ((optptr = udhcp_scan_options(packet, &scan_state)) != NULL) {
437 const struct dhcp_optflag *dh;
438 const char *opt_name;
439 uint8_t code = optptr[OPT_CODE];
440 uint8_t len = optptr[OPT_LEN];
441 uint8_t *data = optptr + OPT_DATA;
442
443 opt_name = get_optname(code, &dh);
444 if (opt_name) {
445 new_opt = xmalloc_optname_optval(data, dh, opt_name);
446 if (code == DHCP_SUBNET && len == 4) {
447 uint32_t subnet;
448 putenvp(&envp, new_opt);
449 move_from_unaligned32(subnet, data);
450 new_opt = xasprintf("mask=%u", mton(subnet));
451 }
452 } else {
453 unsigned ofs;
454 new_opt = xmalloc(sizeof("optNNN=") + 1 + len*2);
455 ofs = sprintf(new_opt, "opt%u=", code);
456 bin2hex(new_opt + ofs, (char *)data, len)[0] = '\0';
457 }
458 putenvp(&envp, new_opt);
459 }
460
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200461 /* Export BOOTP fields. Fields we don't (yet?) export:
462 * uint8_t op; // always BOOTREPLY
463 * uint8_t htype; // hardware address type. 1 = 10mb ethernet
464 * uint8_t hlen; // hardware address length
465 * uint8_t hops; // used by relay agents only
466 * uint32_t xid;
467 * uint16_t secs; // elapsed since client began acquisition/renewal
468 * uint16_t flags; // only one flag so far: bcast. Never set by server
469 * uint32_t ciaddr; // client IP (usually == yiaddr. can it be different
Brian Foleyf9beeb22016-10-25 14:20:55 +0200470 * // if during renew server wants to give us different IP?)
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200471 * uint8_t chaddr[16]; // link-layer client hardware address (MAC)
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200472 */
473 /* Most important one: yiaddr as $ip */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500474 new_opt = xmalloc(sizeof("ip=255.255.255.255"));
475 sprint_nip(new_opt, "ip=", (uint8_t *) &packet->yiaddr);
476 putenvp(&envp, new_opt);
477
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200478 if (packet->siaddr_nip) {
479 /* IP address of next server to use in bootstrap */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500480 new_opt = xmalloc(sizeof("siaddr=255.255.255.255"));
481 sprint_nip(new_opt, "siaddr=", (uint8_t *) &packet->siaddr_nip);
482 putenvp(&envp, new_opt);
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200483 }
Martin Lewisd378fa12019-06-10 17:06:17 +0200484 if (packet->gateway_nip) {
Denys Vlasenko84d38502019-06-13 10:02:03 +0200485 /* IP address of DHCP relay agent */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500486 new_opt = xmalloc(sizeof("giaddr=255.255.255.255"));
487 sprint_nip(new_opt, "giaddr=", (uint8_t *) &packet->gateway_nip);
488 putenvp(&envp, new_opt);
Martin Lewisd378fa12019-06-10 17:06:17 +0200489 }
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500490 if (!(scan_state.overload & FILE_FIELD) && packet->file[0]) {
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200491 /* watch out for invalid packets */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500492 new_opt = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file);
493 putenvp(&envp, new_opt);
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200494 }
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500495 if (!(scan_state.overload & SNAME_FIELD) && packet->sname[0]) {
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200496 /* watch out for invalid packets */
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500497 new_opt = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname);
498 putenvp(&envp, new_opt);
Nigel Hathawayc37d4c62011-04-26 02:38:29 +0200499 }
Denys Vlasenkofbca0c62011-10-20 14:24:18 +0200500
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100501 return envp;
502}
503
504/* Call a script with a par file and env vars */
505static void udhcp_run_script(struct dhcp_packet *packet, const char *name)
506{
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500507 llist_t *envp;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100508 char *argv[3];
509
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100510 envp = fill_envp(packet);
511
512 /* call script */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200513 log1("executing %s %s", client_data.script, name);
514 argv[0] = (char*) client_data.script;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100515 argv[1] = (char*) name;
516 argv[2] = NULL;
517 spawn_and_wait(argv);
518
Martin Lewis1f86ecb2020-06-23 15:25:09 -0500519 /* Free all allocated environment variables */
520 llist_free(envp, (void (*)(void *))bb_unsetenv_and_free);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100521}
522
523
524/*** Sending/receiving packets ***/
525
Denys Vlasenko8d114452010-03-22 13:44:09 +0100526static ALWAYS_INLINE uint32_t random_xid(void)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100527{
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100528 return rand();
529}
530
531/* Initialize the packet with the proper defaults */
532static void init_packet(struct dhcp_packet *packet, char type)
533{
Denys Vlasenko11e024a2019-09-24 14:01:00 +0200534 unsigned secs;
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100535
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200536 /* Fill in: op, htype, hlen, cookie fields; message type option: */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100537 udhcp_init_header(packet, type);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200538
539 packet->xid = random_xid();
540
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200541 client_data.last_secs = monotonic_sec();
542 if (client_data.first_secs == 0)
543 client_data.first_secs = client_data.last_secs;
544 secs = client_data.last_secs - client_data.first_secs;
Denys Vlasenko11e024a2019-09-24 14:01:00 +0200545 packet->secs = (secs < 0xffff) ? htons(secs) : 0xffff;
Denys Vlasenko9ac55962011-03-12 05:37:54 +0100546
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200547 memcpy(packet->chaddr, client_data.client_mac, 6);
548 if (client_data.clientid)
549 udhcp_add_binary_option(packet, client_data.clientid);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100550}
551
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100552static void add_client_options(struct dhcp_packet *packet)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100553{
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200554 int i, end, len;
555
556 udhcp_add_simple_option(packet, DHCP_MAX_SIZE, htons(IP_UDP_DHCP_SIZE));
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200557
Denys Vlasenko7724c762010-03-26 09:32:09 +0100558 /* Add a "param req" option with the list of options we'd like to have
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100559 * from stubborn DHCP servers. Pull the data from the struct in common.c.
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100560 * No bounds checking because it goes towards the head of the packet. */
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200561 end = udhcp_end_option(packet->options);
562 len = 0;
Denys Vlasenko293c9452012-07-27 13:25:07 +0200563 for (i = 1; i < DHCP_END; i++) {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200564 if (client_data.opt_mask[i >> 3] & (1 << (i & 7))) {
Denys Vlasenko293c9452012-07-27 13:25:07 +0200565 packet->options[end + OPT_DATA + len] = i;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100566 len++;
567 }
568 }
569 if (len) {
570 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
571 packet->options[end + OPT_LEN] = len;
572 packet->options[end + OPT_DATA + len] = DHCP_END;
573 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100574
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200575 if (client_data.vendorclass)
576 udhcp_add_binary_option(packet, client_data.vendorclass);
577 if (client_data.hostname)
578 udhcp_add_binary_option(packet, client_data.hostname);
579 if (client_data.fqdn)
580 udhcp_add_binary_option(packet, client_data.fqdn);
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200581
Keith Younge6bb8d32011-03-07 03:18:46 +0100582 /* Request broadcast replies if we have no IP addr */
583 if ((option_mask32 & OPT_B) && packet->ciaddr == 0)
584 packet->flags |= htons(BROADCAST_FLAG);
585
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100586 /* Add -x options if any */
587 {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200588 struct option_set *curr = client_data.options;
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100589 while (curr) {
Denys Vlasenko7724c762010-03-26 09:32:09 +0100590 udhcp_add_binary_option(packet, curr->data);
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100591 curr = curr->next;
592 }
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200593// if (client_data.sname)
594// strncpy((char*)packet->sname, client_data.sname, sizeof(packet->sname) - 1);
595// if (client_data.boot_file)
596// strncpy((char*)packet->file, client_data.boot_file, sizeof(packet->file) - 1);
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100597 }
Denys Vlasenko2017d482011-11-05 01:24:14 +0100598
599 // This will be needed if we remove -V VENDOR_STR in favor of
600 // -x vendor:VENDOR_STR
601 //if (!udhcp_find_option(packet.options, DHCP_VENDOR))
602 // /* not set, set the default vendor ID */
603 // ...add (DHCP_VENDOR, "udhcp "BB_VER) opt...
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100604}
605
606/* RFC 2131
607 * 4.4.4 Use of broadcast and unicast
608 *
609 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
610 * messages, unless the client knows the address of a DHCP server.
611 * The client unicasts DHCPRELEASE messages to the server. Because
612 * the client is declining the use of the IP address supplied by the server,
613 * the client broadcasts DHCPDECLINE messages.
614 *
615 * When the DHCP client knows the address of a DHCP server, in either
616 * INIT or REBOOTING state, the client may use that address
617 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
618 * The client may also use unicast to send DHCPINFORM messages
619 * to a known DHCP server. If the client receives no response to DHCP
620 * messages sent to the IP address of a known DHCP server, the DHCP
621 * client reverts to using the IP broadcast address.
622 */
623
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200624static int raw_bcast_from_client_data_ifindex(struct dhcp_packet *packet, uint32_t src_nip)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100625{
626 return udhcp_send_raw_packet(packet,
Hans Dedeckerabe8f752016-02-18 12:27:07 +0100627 /*src*/ src_nip, CLIENT_PORT,
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100628 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200629 client_data.ifindex);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100630}
631
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100632static int bcast_or_ucast(struct dhcp_packet *packet, uint32_t ciaddr, uint32_t server)
633{
Denys Vlasenko148788e2018-06-21 17:36:22 +0200634 if (server)
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100635 return udhcp_send_kernel_packet(packet,
636 ciaddr, CLIENT_PORT,
Denys Vlasenko148788e2018-06-21 17:36:22 +0200637 server, SERVER_PORT);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200638 return raw_bcast_from_client_data_ifindex(packet, ciaddr);
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100639}
640
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100641/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200642/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200643static NOINLINE int send_discover(uint32_t xid, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100644{
645 struct dhcp_packet packet;
646
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200647 /* Fill in: op, htype, hlen, cookie, chaddr fields,
648 * random xid field (we override it below),
649 * client-id option (unless -C), message type option:
650 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100651 init_packet(&packet, DHCPDISCOVER);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200652
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100653 packet.xid = xid;
654 if (requested)
Denys Vlasenko7724c762010-03-26 09:32:09 +0100655 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200656
657 /* Add options: maxsize,
658 * optionally: hostname, fqdn, vendorclass,
659 * "param req" option according to -O, options specified with -x
660 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100661 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100662
James Byrne253c4e72019-04-12 17:01:51 +0000663 bb_info_msg("sending %s", "discover");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200664 return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100665}
666
667/* Broadcast a DHCP request message */
668/* RFC 2131 3.1 paragraph 3:
669 * "The client _broadcasts_ a DHCPREQUEST message..."
670 */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200671/* NOINLINE: limit stack usage in caller */
Denys Vlasenkoc72c1d72010-10-20 22:08:16 +0200672static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100673{
674 struct dhcp_packet packet;
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200675 struct in_addr temp_addr;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100676
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200677/*
678 * RFC 2131 4.3.2 DHCPREQUEST message
679 * ...
680 * If the DHCPREQUEST message contains a 'server identifier'
681 * option, the message is in response to a DHCPOFFER message.
682 * Otherwise, the message is a request to verify or extend an
683 * existing lease. If the client uses a 'client identifier'
684 * in a DHCPREQUEST message, it MUST use that same 'client identifier'
685 * in all subsequent messages. If the client included a list
686 * of requested parameters in a DHCPDISCOVER message, it MUST
687 * include that list in all subsequent messages.
688 */
689 /* Fill in: op, htype, hlen, cookie, chaddr fields,
690 * random xid field (we override it below),
691 * client-id option (unless -C), message type option:
692 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100693 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200694
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100695 packet.xid = xid;
Denys Vlasenko7724c762010-03-26 09:32:09 +0100696 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200697
Denys Vlasenko7724c762010-03-26 09:32:09 +0100698 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200699
700 /* Add options: maxsize,
701 * optionally: hostname, fqdn, vendorclass,
702 * "param req" option according to -O, and options specified with -x
703 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100704 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100705
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200706 temp_addr.s_addr = requested;
James Byrne253c4e72019-04-12 17:01:51 +0000707 bb_info_msg("sending select for %s", inet_ntoa(temp_addr));
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200708 return raw_bcast_from_client_data_ifindex(&packet, INADDR_ANY);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100709}
710
711/* Unicast or broadcast a DHCP renew message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200712/* NOINLINE: limit stack usage in caller */
713static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100714{
715 struct dhcp_packet packet;
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200716 struct in_addr temp_addr;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100717
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200718/*
719 * RFC 2131 4.3.2 DHCPREQUEST message
720 * ...
721 * DHCPREQUEST generated during RENEWING state:
722 *
723 * 'server identifier' MUST NOT be filled in, 'requested IP address'
724 * option MUST NOT be filled in, 'ciaddr' MUST be filled in with
725 * client's IP address. In this situation, the client is completely
726 * configured, and is trying to extend its lease. This message will
727 * be unicast, so no relay agents will be involved in its
728 * transmission. Because 'giaddr' is therefore not filled in, the
729 * DHCP server will trust the value in 'ciaddr', and use it when
730 * replying to the client.
731 */
732 /* Fill in: op, htype, hlen, cookie, chaddr fields,
733 * random xid field (we override it below),
734 * client-id option (unless -C), message type option:
735 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100736 init_packet(&packet, DHCPREQUEST);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200737
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100738 packet.xid = xid;
739 packet.ciaddr = ciaddr;
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200740
741 /* Add options: maxsize,
742 * optionally: hostname, fqdn, vendorclass,
743 * "param req" option according to -O, and options specified with -x
744 */
Denys Vlasenko7e6add12010-03-25 20:32:38 +0100745 add_client_options(&packet);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100746
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200747 temp_addr.s_addr = server;
James Byrne253c4e72019-04-12 17:01:51 +0000748 bb_info_msg("sending renew to %s", inet_ntoa(temp_addr));
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100749 return bcast_or_ucast(&packet, ciaddr, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100750}
751
752#if ENABLE_FEATURE_UDHCPC_ARPING
753/* Broadcast a DHCP decline message */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200754/* NOINLINE: limit stack usage in caller */
Denys Vlasenko860491c2011-11-18 02:09:13 +0100755static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t requested)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100756{
757 struct dhcp_packet packet;
758
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200759 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
760 * client-id option (unless -C), message type option:
761 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100762 init_packet(&packet, DHCPDECLINE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200763
Denys Vlasenko860491c2011-11-18 02:09:13 +0100764#if 0
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200765 /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client,
766 * but in case the server is buggy and wants DHCPDECLINE's xid
767 * to match the xid which started entire handshake,
768 * we use the same xid we used in initial DHCPDISCOVER:
769 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100770 packet.xid = xid;
Denys Vlasenko860491c2011-11-18 02:09:13 +0100771#endif
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200772 /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */
Denys Vlasenko7724c762010-03-26 09:32:09 +0100773 udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200774
Denys Vlasenko7724c762010-03-26 09:32:09 +0100775 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100776
James Byrne253c4e72019-04-12 17:01:51 +0000777 bb_info_msg("sending %s", "decline");
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#endif
781
782/* Unicast a DHCP release message */
Denys Vlasenko9d05ad02018-11-03 23:34:03 +0100783static
784ALWAYS_INLINE /* one caller, help compiler to use this fact */
785int send_release(uint32_t server, uint32_t ciaddr)
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100786{
787 struct dhcp_packet packet;
788
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200789 /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields,
790 * client-id option (unless -C), message type option:
791 */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100792 init_packet(&packet, DHCPRELEASE);
Denys Vlasenkob3af65b2010-10-20 21:37:23 +0200793
794 /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100795 packet.ciaddr = ciaddr;
796
Denys Vlasenko7724c762010-03-26 09:32:09 +0100797 udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100798
James Byrne253c4e72019-04-12 17:01:51 +0000799 bb_info_msg("sending %s", "release");
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +0100800 /* Note: normally we unicast here since "server" is not zero.
801 * However, there _are_ people who run "address-less" DHCP servers,
802 * and reportedly ISC dhcp client and Windows allow that.
803 */
804 return bcast_or_ucast(&packet, ciaddr, server);
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100805}
806
807/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200808/* NOINLINE: limit stack usage in caller */
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100809static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
810{
811 int bytes;
812 struct ip_udp_dhcp_packet packet;
813 uint16_t check;
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200814 unsigned char cmsgbuf[CMSG_LEN(sizeof(struct tpacket_auxdata))];
815 struct iovec iov;
816 struct msghdr msg;
817 struct cmsghdr *cmsg;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100818
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200819 /* used to use just safe_read(fd, &packet, sizeof(packet))
820 * but we need to check for TP_STATUS_CSUMNOTREADY :(
821 */
822 iov.iov_base = &packet;
823 iov.iov_len = sizeof(packet);
824 memset(&msg, 0, sizeof(msg));
825 msg.msg_iov = &iov;
826 msg.msg_iovlen = 1;
827 msg.msg_control = cmsgbuf;
828 msg.msg_controllen = sizeof(cmsgbuf);
829 for (;;) {
830 bytes = recvmsg(fd, &msg, 0);
831 if (bytes < 0) {
832 if (errno == EINTR)
833 continue;
James Byrne69374872019-07-02 11:35:03 +0200834 log1s("packet read error, ignoring");
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200835 /* NB: possible down interface, etc. Caller should pause. */
836 return bytes; /* returns -1 */
837 }
838 break;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100839 }
840
841 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
James Byrne69374872019-07-02 11:35:03 +0200842 log1s("packet is too short, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100843 return -2;
844 }
845
846 if (bytes < ntohs(packet.ip.tot_len)) {
847 /* packet is bigger than sizeof(packet), we did partial read */
James Byrne69374872019-07-02 11:35:03 +0200848 log1s("oversized packet, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100849 return -2;
850 }
851
852 /* ignore any extra garbage bytes */
853 bytes = ntohs(packet.ip.tot_len);
854
855 /* make sure its the right packet for us, and that it passes sanity checks */
Denys Vlasenko7981d792011-10-20 10:34:05 +0200856 if (packet.ip.protocol != IPPROTO_UDP
857 || packet.ip.version != IPVERSION
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100858 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
859 || packet.udp.dest != htons(CLIENT_PORT)
860 /* || bytes > (int) sizeof(packet) - can't happen */
861 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
862 ) {
James Byrne69374872019-07-02 11:35:03 +0200863 log1s("unrelated/bogus packet, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100864 return -2;
865 }
866
867 /* verify IP checksum */
868 check = packet.ip.check;
869 packet.ip.check = 0;
Baruch Siache8f36332011-09-07 17:52:37 +0200870 if (check != inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip))) {
James Byrne69374872019-07-02 11:35:03 +0200871 log1s("bad IP header checksum, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100872 return -2;
873 }
874
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200875 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
876 if (cmsg->cmsg_level == SOL_PACKET
877 && cmsg->cmsg_type == PACKET_AUXDATA
878 ) {
879 /* some VMs don't checksum UDP and TCP data
880 * they send to the same physical machine,
881 * here we detect this case:
882 */
883 struct tpacket_auxdata *aux = (void *)CMSG_DATA(cmsg);
884 if (aux->tp_status & TP_STATUS_CSUMNOTREADY)
885 goto skip_udp_sum_check;
886 }
887 }
888
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100889 /* verify UDP checksum. IP header has to be modified for this */
890 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
891 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
892 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
893 check = packet.udp.check;
894 packet.udp.check = 0;
Baruch Siache8f36332011-09-07 17:52:37 +0200895 if (check && check != inet_cksum((uint16_t *)&packet, bytes)) {
James Byrne69374872019-07-02 11:35:03 +0200896 log1s("packet with bad UDP checksum received, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100897 return -2;
898 }
Alexey Froloff3c62bba2012-09-17 16:02:44 +0200899 skip_udp_sum_check:
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100900
Denys Vlasenko7981d792011-10-20 10:34:05 +0200901 if (packet.data.cookie != htonl(DHCP_MAGIC)) {
James Byrne69374872019-07-02 11:35:03 +0200902 bb_simple_info_msg("packet with bad magic, ignoring");
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100903 return -2;
904 }
Denys Vlasenko7981d792011-10-20 10:34:05 +0200905
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200906 log1("received %s", "a packet");
Denys Vlasenko7981d792011-10-20 10:34:05 +0200907 udhcp_dump_packet(&packet.data);
908
909 bytes -= sizeof(packet.ip) + sizeof(packet.udp);
910 memcpy(dhcp_pkt, &packet.data, bytes);
911 return bytes;
Denys Vlasenko501e35c2010-03-22 13:43:12 +0100912}
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100913
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100914
915/*** Main ***/
916
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200917/* Values for client_data.listen_mode */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100918#define LISTEN_NONE 0
919#define LISTEN_KERNEL 1
920#define LISTEN_RAW 2
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100921
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +0200922/* Values for client_data.state */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100923/* initial state: (re)start DHCP negotiation */
924#define INIT_SELECTING 0
925/* discover was sent, DHCPOFFER reply received */
926#define REQUESTING 1
927/* select/renew was sent, DHCPACK reply received */
928#define BOUND 2
929/* half of lease passed, want to renew it by sending unicast renew requests */
930#define RENEWING 3
931/* renew requests were not answered, lease is almost over, send broadcast renew */
932#define REBINDING 4
933/* manually requested renew (SIGUSR1) */
934#define RENEW_REQUESTED 5
935/* release, possibly manually requested (SIGUSR2) */
936#define RELEASED 6
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100937
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100938static int udhcp_raw_socket(int ifindex)
939{
940 int fd;
941 struct sockaddr_ll sock;
942
Denys Vlasenko168f0ef2017-07-21 12:04:22 +0200943 log2("opening raw socket on ifindex %d", ifindex);
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100944
945 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
Denys Vlasenko744ee5d2014-02-07 17:38:52 +0100946 /* ^^^^^
947 * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them)
948 * ETH_P_IP: want to receive only packets with IPv4 eth type
949 */
Denys Vlasenko6eb6e6a2019-05-31 23:51:07 +0200950 log3("got raw socket fd %d", fd);
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100951
Denys Vlasenko2b9acc62017-09-29 14:09:02 +0200952 memset(&sock, 0, sizeof(sock)); /* let's be deterministic */
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100953 sock.sll_family = AF_PACKET;
954 sock.sll_protocol = htons(ETH_P_IP);
955 sock.sll_ifindex = ifindex;
Denys Vlasenko2b9acc62017-09-29 14:09:02 +0200956 /*sock.sll_hatype = ARPHRD_???;*/
957 /*sock.sll_pkttype = PACKET_???;*/
958 /*sock.sll_halen = ???;*/
959 /*sock.sll_addr[8] = ???;*/
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100960 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
961
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +0100962#if 0 /* Several users reported breakage when BPF filter is used */
Vladislav Grishenko713e6d72011-02-14 04:50:30 +0100963 if (CLIENT_PORT == 68) {
964 /* Use only if standard port is in use */
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +0100965 /*
966 * I've selected not to see LL header, so BPF doesn't see it, too.
967 * The filter may also pass non-IP and non-ARP packets, but we do
968 * a more complete check when receiving the message in userspace.
969 *
970 * and filter shamelessly stolen from:
971 *
972 * http://www.flamewarmaster.de/software/dhcpclient/
973 *
974 * There are a few other interesting ideas on that page (look under
975 * "Motivation"). Use of netlink events is most interesting. Think
976 * of various network servers listening for events and reconfiguring.
977 * That would obsolete sending HUP signals and/or make use of restarts.
978 *
979 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
980 * License: GPL v2.
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +0100981 */
982 static const struct sock_filter filter_instr[] = {
983 /* load 9th byte (protocol) */
984 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
985 /* jump to L1 if it is IPPROTO_UDP, else to L4 */
986 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6),
987 /* L1: load halfword from offset 6 (flags and frag offset) */
988 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6),
989 /* jump to L4 if any bits in frag offset field are set, else to L2 */
990 BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0),
991 /* L2: skip IP header (load index reg with header len) */
992 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0),
993 /* load udp destination port from halfword[header_len + 2] */
994 BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2),
995 /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */
996 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1),
Denys Vlasenkoffc3a932014-02-19 14:17:11 +0100997 /* L3: accept packet ("accept 0x7fffffff bytes") */
998 /* Accepting 0xffffffff works too but kernel 2.6.19 is buggy */
999 BPF_STMT(BPF_RET|BPF_K, 0x7fffffff),
1000 /* L4: discard packet ("accept zero bytes") */
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001001 BPF_STMT(BPF_RET|BPF_K, 0),
1002 };
1003 static const struct sock_fprog filter_prog = {
1004 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
1005 /* casting const away: */
1006 .filter = (struct sock_filter *) filter_instr,
1007 };
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001008 /* Ignoring error (kernel may lack support for this) */
1009 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
1010 sizeof(filter_prog)) >= 0)
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001011 log1("attached filter to raw socket fd"); // log?
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001012 }
Denys Vlasenkoe4785ca2014-02-03 18:03:42 +01001013#endif
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001014
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001015 if (setsockopt_1(fd, SOL_PACKET, PACKET_AUXDATA) != 0) {
Alexey Froloff3c62bba2012-09-17 16:02:44 +02001016 if (errno != ENOPROTOOPT)
James Byrne69374872019-07-02 11:35:03 +02001017 log1s("can't set PACKET_AUXDATA on raw socket");
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001018 }
1019
James Byrne69374872019-07-02 11:35:03 +02001020 log1s("created raw socket");
Denys Vlasenko6b24d532010-03-22 13:42:13 +01001021
1022 return fd;
1023}
1024
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001025static void change_listen_mode(int new_mode)
Mike Frysinger7031f622006-05-08 03:20:50 +00001026{
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001027 log1("entering listen mode: %s",
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001028 new_mode != LISTEN_NONE
1029 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
1030 : "none"
1031 );
Denis Vlasenko517413f2008-12-10 11:16:47 +00001032
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001033 client_data.listen_mode = new_mode;
1034 if (client_data.sockfd >= 0) {
1035 close(client_data.sockfd);
1036 client_data.sockfd = -1;
Denis Vlasenkofbd29182007-04-07 01:05:47 +00001037 }
Denis Vlasenko517413f2008-12-10 11:16:47 +00001038 if (new_mode == LISTEN_KERNEL)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001039 client_data.sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_data.interface);
Denis Vlasenko517413f2008-12-10 11:16:47 +00001040 else if (new_mode != LISTEN_NONE)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001041 client_data.sockfd = udhcp_raw_socket(client_data.ifindex);
1042 /* else LISTEN_NONE: client_data.sockfd stays closed */
Mike Frysinger7031f622006-05-08 03:20:50 +00001043}
1044
Denys Vlasenko9ac55962011-03-12 05:37:54 +01001045/* Called only on SIGUSR1 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001046static void perform_renew(void)
1047{
James Byrne69374872019-07-02 11:35:03 +02001048 bb_simple_info_msg("performing DHCP renew");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001049 switch (client_data.state) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001050 case BOUND:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001051 change_listen_mode(LISTEN_KERNEL);
Mike Frysinger7031f622006-05-08 03:20:50 +00001052 case RENEWING:
1053 case REBINDING:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001054 client_data.state = RENEW_REQUESTED;
Mike Frysinger7031f622006-05-08 03:20:50 +00001055 break;
1056 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +00001057 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +00001058 case REQUESTING:
1059 case RELEASED:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001060 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001061 client_data.state = INIT_SELECTING;
Mike Frysinger7031f622006-05-08 03:20:50 +00001062 break;
1063 case INIT_SELECTING:
1064 break;
1065 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001066}
1067
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001068static void perform_release(uint32_t server_addr, uint32_t requested_ip)
Mike Frysinger7031f622006-05-08 03:20:50 +00001069{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001070 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +00001071 struct in_addr temp_addr;
1072
1073 /* send release packet */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001074 if (client_data.state == BOUND
1075 || client_data.state == RENEWING
1076 || client_data.state == REBINDING
1077 || client_data.state == RENEW_REQUESTED
Denys Vlasenko44399e02016-07-03 20:26:44 +02001078 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001079 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001080 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +00001081 temp_addr.s_addr = requested_ip;
James Byrne253c4e72019-04-12 17:01:51 +00001082 bb_info_msg("unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +00001083 inet_ntoa(temp_addr), buffer);
1084 send_release(server_addr, requested_ip); /* unicast */
Mike Frysinger7031f622006-05-08 03:20:50 +00001085 }
James Byrne69374872019-07-02 11:35:03 +02001086 bb_simple_info_msg("entering released state");
Peter Korsgaardb6355e22016-08-26 18:46:34 +02001087/*
1088 * We can be here on: SIGUSR2,
1089 * or on exit (SIGTERM) and -R "release on quit" is specified.
1090 * Users requested to be notified in all cases, even if not in one
1091 * of the states above.
1092 */
1093 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +00001094
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001095 change_listen_mode(LISTEN_NONE);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001096 client_data.state = RELEASED;
Mike Frysinger7031f622006-05-08 03:20:50 +00001097}
1098
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001099static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
1100{
1101 uint8_t *storage;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001102 int len = strnlen(str, 255);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001103 storage = xzalloc(len + extra + OPT_DATA);
1104 storage[OPT_CODE] = code;
1105 storage[OPT_LEN] = len + extra;
1106 memcpy(storage + extra + OPT_DATA, str, len);
1107 return storage;
1108}
1109
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001110#if BB_MMU
1111static void client_background(void)
1112{
1113 bb_daemonize(0);
1114 logmode &= ~LOGMODE_STDIO;
1115 /* rewrite pidfile, as our pid is different now */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001116 write_pidfile(client_data.pidfile);
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001117}
1118#endif
1119
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001120//usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
1121//usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__
1122//usage:#else
1123//usage:# define IF_UDHCP_VERBOSE(...)
1124//usage:#endif
1125//usage:#define udhcpc_trivial_usage
Michel Stam9f412712014-10-30 11:59:04 +01001126//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 +02001127//usage: " [-i IFACE]"IF_FEATURE_UDHCP_PORT(" [-P PORT]")" [-s PROG] [-p PIDFILE]\n"
1128//usage: " [-oC] [-r IP] [-V VENDOR] [-F NAME] [-x OPT:VAL]... [-O OPT]..."
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001129//usage:#define udhcpc_full_usage "\n"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001130//usage: "\n -i IFACE Interface to use (default eth0)"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001131//usage: IF_FEATURE_UDHCP_PORT(
1132//usage: "\n -P PORT Use PORT (default 68)"
1133//usage: )
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001134//usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001135//usage: "\n -p FILE Create pidfile"
Keith Younge6bb8d32011-03-07 03:18:46 +01001136//usage: "\n -B Request broadcast replies"
Denys Vlasenkoaadb4852013-08-05 02:21:36 +02001137//usage: "\n -t N Send up to N discover packets (default 3)"
Denys Vlasenko456687f2013-08-08 12:33:18 +02001138//usage: "\n -T SEC Pause between packets (default 3)"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001139//usage: "\n -A SEC Wait if lease is not obtained (default 20)"
Denys Vlasenko544143d2019-02-27 08:17:07 +01001140//usage: USE_FOR_MMU(
1141//usage: "\n -b Background if lease is not obtained"
1142//usage: )
Denys Vlasenko456687f2013-08-08 12:33:18 +02001143//usage: "\n -n Exit if lease is not obtained"
1144//usage: "\n -q Exit after obtaining lease"
1145//usage: "\n -R Release IP on exit"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001146//usage: "\n -f Run in foreground"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001147//usage: "\n -S Log to syslog too"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001148//usage: IF_FEATURE_UDHCPC_ARPING(
Michel Stam9f412712014-10-30 11:59:04 +01001149//usage: "\n -a[MSEC] Validate offered address with ARP ping"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001150//usage: )
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001151//usage: "\n -r IP Request this IP address"
Denys Vlasenko9ae6d792013-08-08 12:45:45 +02001152//usage: "\n -o Don't request any options (unless -O is given)"
1153//usage: "\n -O OPT Request option OPT from server (cumulative)"
Denys Vlasenkoc59e06e2010-10-20 16:10:59 +02001154//usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)"
1155//usage: "\n Examples of string, numeric, and hex byte opts:"
1156//usage: "\n -x hostname:bbox - option 12"
1157//usage: "\n -x lease:3600 - option 51 (lease time)"
1158//usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)"
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001159//usage: "\n -x 14:'\"dumpfile\"' - option 14 (shell-quoted)"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001160//usage: "\n -F NAME Ask server to update DNS mapping for NAME"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001161//usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')"
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001162//usage: "\n -C Don't send MAC as client identifier"
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001163//usage: IF_UDHCP_VERBOSE(
1164//usage: "\n -v Verbose"
1165//usage: )
Denys Vlasenko8993c3f2010-12-25 06:21:54 +01001166//usage: "\nSignals:"
Denys Vlasenko50089fc2011-11-07 15:44:46 +01001167//usage: "\n USR1 Renew lease"
1168//usage: "\n USR2 Release lease"
Denys Vlasenko8993c3f2010-12-25 06:21:54 +01001169
Denys Vlasenko9e244c72010-10-20 01:38:56 +02001170
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001171int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001172int udhcpc_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +00001173{
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001174 uint8_t *message;
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001175 const char *str_V, *str_h, *str_F, *str_r;
Michel Stam9f412712014-10-30 11:59:04 +01001176 IF_FEATURE_UDHCPC_ARPING(const char *str_a = "2000";)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001177 IF_FEATURE_UDHCP_PORT(char *str_P;)
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001178 void *clientid_mac_ptr;
Denis Vlasenko19183682007-12-10 07:03:38 +00001179 llist_t *list_O = NULL;
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001180 llist_t *list_x = NULL;
Denis Vlasenko68af8e72007-11-22 21:41:14 +00001181 int tryagain_timeout = 20;
1182 int discover_timeout = 3;
1183 int discover_retries = 3;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001184 uint32_t server_addr = server_addr; /* for compiler */
1185 uint32_t requested_ip = 0;
Denys Vlasenko860491c2011-11-18 02:09:13 +01001186 uint32_t xid = xid; /* for compiler */
Denis Vlasenkob539c842007-11-29 08:17:45 +00001187 int packet_num;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001188 int timeout; /* must be signed */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001189 unsigned already_waited_sec;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001190 unsigned opt;
Michel Stam9f412712014-10-30 11:59:04 +01001191 IF_FEATURE_UDHCPC_ARPING(unsigned arpping_ms;)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001192 int retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001193
Denys Vlasenkodf70a432016-04-21 18:54:36 +02001194 setup_common_bufsiz();
1195
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001196 /* Default options */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001197 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
1198 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001199 client_data.interface = "eth0";
1200 client_data.script = CONFIG_UDHCPC_DEFAULT_SCRIPT;
1201 client_data.sockfd = -1;
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001202 str_V = "udhcp "BB_VER;
Mike Frysinger7031f622006-05-08 03:20:50 +00001203
Denys Vlasenko65c34c52019-05-31 23:39:22 +02001204 /* Make sure fd 0,1,2 are open */
1205 /* Set up the signal pipe on fds 3,4 - must be before openlog() */
1206 udhcp_sp_setup();
1207
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001208 /* Parse command line */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001209 opt = getopt32long(argv, "^"
1210 /* O,x: list; -T,-t,-A take numeric param */
1211 "CV:H:h:F:i:np:qRr:s:T:+t:+SA:+O:*ox:*fB"
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001212 USE_FOR_MMU("b")
Michel Stam9f412712014-10-30 11:59:04 +01001213 IF_FEATURE_UDHCPC_ARPING("a::")
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001214 IF_FEATURE_UDHCP_PORT("P:")
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001215 "v"
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001216 "\0" IF_UDHCP_VERBOSE("vv") /* -v is a counter */
Denys Vlasenko036585a2017-08-08 16:38:18 +02001217 , udhcpc_longopts
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001218 , &str_V, &str_h, &str_h, &str_F
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001219 , &client_data.interface, &client_data.pidfile /* i,p */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001220 , &str_r /* r */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001221 , &client_data.script /* s */
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001222 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
Denis Vlasenko19183682007-12-10 07:03:38 +00001223 , &list_O
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001224 , &list_x
Michel Stam9f412712014-10-30 11:59:04 +01001225 IF_FEATURE_UDHCPC_ARPING(, &str_a)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001226 IF_FEATURE_UDHCP_PORT(, &str_P)
Leonid Lisovskiy6c9c0a12011-10-18 00:35:47 +02001227 IF_UDHCP_VERBOSE(, &dhcp_verbose)
Denys Vlasenko7e21f042011-11-08 11:39:41 +01001228 );
Denys Vlasenko2017d482011-11-05 01:24:14 +01001229 if (opt & (OPT_h|OPT_H)) {
1230 //msg added 2011-11
James Byrne69374872019-07-02 11:35:03 +02001231 bb_simple_error_msg("option -h NAME is deprecated, use -x hostname:NAME");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001232 client_data.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
Denys Vlasenko2017d482011-11-05 01:24:14 +01001233 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001234 if (opt & OPT_F) {
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001235 /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001236 client_data.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001237 /* Flag bits: 0000NEOS
1238 * S: 1 = Client requests server to update A RR in DNS as well as PTR
1239 * O: 1 = Server indicates to client that DNS has been updated regardless
1240 * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>,
1241 * not "host.domain.com". Format 0 is obsolete.
1242 * N: 1 = Client requests server to not update DNS (S must be 0 then)
1243 * Two [0] bytes which follow are deprecated and must be 0.
1244 */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001245 client_data.fqdn[OPT_DATA + 0] = 0x1;
1246 /*client_data.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */
1247 /*client_data.fqdn[OPT_DATA + 2] = 0; */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001248 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +00001249 if (opt & OPT_r)
1250 requested_ip = inet_addr(str_r);
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +00001251#if ENABLE_FEATURE_UDHCP_PORT
1252 if (opt & OPT_P) {
1253 CLIENT_PORT = xatou16(str_P);
1254 SERVER_PORT = CLIENT_PORT - 1;
1255 }
1256#endif
Michel Stam9f412712014-10-30 11:59:04 +01001257 IF_FEATURE_UDHCPC_ARPING(arpping_ms = xatou(str_a);)
Denis Vlasenko19183682007-12-10 07:03:38 +00001258 while (list_O) {
Denis Vlasenko18c93022008-08-27 22:29:43 +00001259 char *optstr = llist_pop(&list_O);
Denys Vlasenko5d3aace2011-06-04 05:07:16 +02001260 unsigned n = bb_strtou(optstr, NULL, 0);
1261 if (errno || n > 254) {
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +02001262 n = udhcp_option_idx(optstr, dhcp_option_strings);
Denys Vlasenko5d3aace2011-06-04 05:07:16 +02001263 n = dhcp_optflags[n].code;
1264 }
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001265 client_data.opt_mask[n >> 3] |= 1 << (n & 7);
Denis Vlasenko19183682007-12-10 07:03:38 +00001266 }
Denys Vlasenko293c9452012-07-27 13:25:07 +02001267 if (!(opt & OPT_o)) {
1268 unsigned i, n;
1269 for (i = 0; (n = dhcp_optflags[i].code) != 0; i++) {
1270 if (dhcp_optflags[i].flags & OPTION_REQ) {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001271 client_data.opt_mask[n >> 3] |= 1 << (n & 7);
Denys Vlasenko293c9452012-07-27 13:25:07 +02001272 }
1273 }
1274 }
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001275 while (list_x) {
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001276 char *optstr = xstrdup(llist_pop(&list_x));
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001277 udhcp_str2optset(optstr, &client_data.options,
Denys Vlasenko60275972018-05-14 11:06:35 +02001278 dhcp_optflags, dhcp_option_strings,
1279 /*dhcpv6:*/ 0
1280 );
Denys Vlasenko266f6f12018-04-13 13:18:34 +02001281 free(optstr);
Denys Vlasenko7e6add12010-03-25 20:32:38 +01001282 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001283
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001284 if (udhcp_read_interface(client_data.interface,
1285 &client_data.ifindex,
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001286 NULL,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001287 client_data.client_mac)
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001288 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001289 return 1;
Denys Vlasenko26918dd2009-06-16 12:04:23 +02001290 }
1291
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001292 clientid_mac_ptr = NULL;
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001293 if (!(opt & OPT_C) && !udhcp_find_option(client_data.options, DHCP_CLIENT_ID)) {
Denys Vlasenko1cbdc032010-10-20 01:42:37 +02001294 /* not suppressed and not set, set the default client ID */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001295 client_data.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
1296 client_data.clientid[OPT_DATA] = 1; /* type: ethernet */
1297 clientid_mac_ptr = client_data.clientid + OPT_DATA+1;
1298 memcpy(clientid_mac_ptr, client_data.client_mac, 6);
Denys Vlasenko87fa2162010-03-20 18:06:23 +01001299 }
Denys Vlasenko2017d482011-11-05 01:24:14 +01001300 if (str_V[0] != '\0') {
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001301 // can drop -V, str_V, client_data.vendorclass,
Denys Vlasenko2017d482011-11-05 01:24:14 +01001302 // but need to add "vendor" to the list of recognized
1303 // string opts for this to work;
1304 // and need to tweak add_client_options() too...
1305 // ...so the question is, should we?
1306 //bb_error_msg("option -V VENDOR is deprecated, use -x vendor:VENDOR");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001307 client_data.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
Denys Vlasenko2017d482011-11-05 01:24:14 +01001308 }
1309
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001310#if !BB_MMU
1311 /* on NOMMU reexec (i.e., background) early */
1312 if (!(opt & OPT_f)) {
1313 bb_daemonize_or_rexec(0 /* flags */, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001314 logmode = LOGMODE_NONE;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001315 }
1316#endif
1317 if (opt & OPT_S) {
Denis Vlasenko5e4fda02009-03-08 23:46:48 +00001318 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001319 logmode |= LOGMODE_SYSLOG;
1320 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001321
Denis Vlasenko80edead2007-08-02 22:31:05 +00001322 /* Create pidfile */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001323 write_pidfile(client_data.pidfile);
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001324 /* Goes to stdout (unless NOMMU) and possibly syslog */
James Byrne69374872019-07-02 11:35:03 +02001325 bb_simple_info_msg("started, v"BB_VER);
Denys Vlasenko8d114452010-03-22 13:44:09 +01001326 /* We want random_xid to be random... */
1327 srand(monotonic_us());
Mike Frysinger7031f622006-05-08 03:20:50 +00001328
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001329 client_data.state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +00001330 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001331 change_listen_mode(LISTEN_RAW);
Denis Vlasenkob539c842007-11-29 08:17:45 +00001332 packet_num = 0;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +00001333 timeout = 0;
Denis Vlasenko19903f02008-05-21 07:03:03 +00001334 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001335
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001336 /* Main event loop. select() waits on signal pipe and possibly
1337 * on sockfd.
1338 * "continue" statements in code below jump to the top of the loop.
1339 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001340 for (;;) {
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001341 int tv;
1342 struct pollfd pfds[2];
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001343 struct dhcp_packet packet;
Denis Vlasenkoec64a572009-01-14 00:28:03 +00001344 /* silence "uninitialized!" warning */
1345 unsigned timestamp_before_wait = timestamp_before_wait;
Mike Frysinger7031f622006-05-08 03:20:50 +00001346
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001347 //bb_error_msg("sockfd:%d, listen_mode:%d", client_data.sockfd, client_data.listen_mode);
Denis Vlasenko517413f2008-12-10 11:16:47 +00001348
1349 /* Was opening raw or udp socket here
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001350 * if (client_data.listen_mode != LISTEN_NONE && client_data.sockfd < 0),
Denis Vlasenko517413f2008-12-10 11:16:47 +00001351 * but on fast network renew responses return faster
1352 * than we open sockets. Thus this code is moved
1353 * to change_listen_mode(). Thus we open listen socket
1354 * BEFORE we send renew request (see "case BOUND:"). */
1355
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001356 udhcp_sp_fd_set(pfds, client_data.sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +00001357
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001358 tv = timeout - already_waited_sec;
Denys Vlasenko8d114452010-03-22 13:44:09 +01001359 retval = 0;
1360 /* If we already timed out, fall through with retval = 0, else... */
Denys Vlasenko52a515d2017-02-16 23:25:44 +01001361 if (tv > 0) {
Denys Vlasenkode6cb412017-07-24 12:01:28 +02001362 log1("waiting %u seconds", tv);
Denis Vlasenkob2342912008-05-21 07:02:16 +00001363 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenko7c67f1e2017-02-17 19:20:32 +01001364 retval = poll(pfds, 2, tv < INT_MAX/1000 ? tv * 1000 : INT_MAX);
Denis Vlasenkob2342912008-05-21 07:02:16 +00001365 if (retval < 0) {
1366 /* EINTR? A signal was caught, don't panic */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001367 if (errno == EINTR) {
1368 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenkob2342912008-05-21 07:02:16 +00001369 continue;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001370 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001371 /* Else: an error occurred, panic! */
James Byrne69374872019-07-02 11:35:03 +02001372 bb_simple_perror_msg_and_die("poll");
Denis Vlasenko80edead2007-08-02 22:31:05 +00001373 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001374 }
1375
1376 /* If timeout dropped to zero, time to become active:
1377 * resend discover/renew/whatever
1378 */
1379 if (retval == 0) {
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001380 /* When running on a bridge, the ifindex may have changed
1381 * (e.g. if member interfaces were added/removed
1382 * or if the status of the bridge changed).
1383 * Refresh ifindex and client_mac:
1384 */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001385 if (udhcp_read_interface(client_data.interface,
1386 &client_data.ifindex,
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001387 NULL,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001388 client_data.client_mac)
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001389 ) {
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001390 goto ret0; /* iface is gone? */
Denys Vlasenko5d374e92010-10-20 22:26:38 +02001391 }
1392 if (clientid_mac_ptr)
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001393 memcpy(clientid_mac_ptr, client_data.client_mac, 6);
Denys Vlasenkoa5048fa2010-10-20 21:38:29 +02001394
Denis Vlasenkof1980f62008-09-26 09:34:59 +00001395 /* We will restart the wait in any case */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001396 already_waited_sec = 0;
1397
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001398 switch (client_data.state) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001399 case INIT_SELECTING:
Felix Fietkau1c7a58d2012-09-27 16:22:24 +02001400 if (!discover_retries || packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +00001401 if (packet_num == 0)
1402 xid = random_xid();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001403 /* broadcast */
1404 send_discover(xid, requested_ip);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001405 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001406 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001407 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001408 }
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001409 leasefail:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001410 udhcp_run_script(NULL, "leasefail");
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001411#if BB_MMU /* -b is not supported on NOMMU */
1412 if (opt & OPT_b) { /* background if no lease */
James Byrne69374872019-07-02 11:35:03 +02001413 bb_simple_info_msg("no lease, forking to background");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001414 client_background();
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001415 /* do not background again! */
Andrey Mazo87e21622019-02-22 16:46:19 -05001416 opt = ((opt & ~(OPT_b|OPT_n)) | OPT_f);
1417 /* ^^^ also disables -n (-b takes priority over -n):
1418 * ifup's default udhcpc options are -R -n,
1419 * and users want to be able to add -b
1420 * (in a config file) to make it background
1421 * _and not exit_.
1422 */
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001423 } else
1424#endif
1425 if (opt & OPT_n) { /* abort if no lease */
James Byrne69374872019-07-02 11:35:03 +02001426 bb_simple_info_msg("no lease, failing");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001427 retval = 1;
1428 goto ret;
1429 }
Denis Vlasenko6de89942008-05-21 07:05:06 +00001430 /* wait before trying again */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001431 timeout = tryagain_timeout;
1432 packet_num = 0;
1433 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001434 case REQUESTING:
Denys Vlasenko86d9f602016-03-04 17:00:56 +01001435 if (packet_num < 3) {
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001436 /* send broadcast select packet */
1437 send_select(xid, server_addr, requested_ip);
Denis Vlasenko6de89942008-05-21 07:05:06 +00001438 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +00001439 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001440 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001441 }
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001442 /* Timed out, go back to init state.
1443 * "discover...select...discover..." loops
Denis Vlasenko7d9399e2008-09-26 22:21:03 +00001444 * were seen in the wild. Treat them similarly
Denis Vlasenkocdb0b652008-09-26 09:34:15 +00001445 * to "no response to discover" case */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001446 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001447 client_data.state = INIT_SELECTING;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001448 goto leasefail;
Mike Frysinger7031f622006-05-08 03:20:50 +00001449 case BOUND:
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001450 /* 1/2 lease passed, enter renewing state */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001451 client_data.state = RENEWING;
1452 client_data.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001453 change_listen_mode(LISTEN_KERNEL);
James Byrne69374872019-07-02 11:35:03 +02001454 log1s("entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +00001455 /* fall right through */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001456 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
1457 case_RENEW_REQUESTED:
Mike Frysinger7031f622006-05-08 03:20:50 +00001458 case RENEWING:
Denys Vlasenkoaae428f2018-09-28 14:44:09 +02001459 if (timeout >= 60) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001460 /* send an unicast renew request */
1461 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
1462 * a new UDP socket for sending inside send_renew.
1463 * I hazard to guess existing listening socket
1464 * is somehow conflicting with it, but why is it
1465 * not deterministic then?! Strange.
Denys Vlasenko753a3ce2009-07-19 04:27:10 +02001466 * Anyway, it does recover by eventually failing through
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001467 * into INIT_SELECTING state.
1468 */
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001469 if (send_renew(xid, server_addr, requested_ip) >= 0) {
1470 timeout >>= 1;
Denys Vlasenkof6258362017-09-29 18:02:01 +02001471//TODO: the timeout to receive an answer for our renew should not be selected
1472//with "timeout = lease_seconds / 2; ...; timeout = timeout / 2": it is often huge.
1473//Waiting e.g. 4*3600 seconds for a reply does not make sense
1474//(if reply isn't coming, we keep an open socket for hours),
1475//it should be something like 10 seconds.
1476//Also, it's probably best to try sending renew in kernel mode a few (3-5) times
1477//and fall back to raw mode if it does not work.
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001478 continue;
1479 }
1480 /* else: error sending.
1481 * example: ENETUNREACH seen with server
1482 * which gave us bogus server ID 1.1.1.1
1483 * which wasn't reachable (and probably did not exist).
1484 */
Mike Frysinger7031f622006-05-08 03:20:50 +00001485 }
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +02001486 /* Timed out or error, enter rebinding state */
James Byrne69374872019-07-02 11:35:03 +02001487 log1s("entering rebinding state");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001488 client_data.state = REBINDING;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001489 /* fall right through */
Mike Frysinger7031f622006-05-08 03:20:50 +00001490 case REBINDING:
Denys Vlasenko219757f2009-10-08 23:05:46 +02001491 /* Switch to bcast receive */
1492 change_listen_mode(LISTEN_RAW);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001493 /* Lease is *really* about to run out,
1494 * try to find DHCP server using broadcast */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001495 if (timeout > 0) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001496 /* send a broadcast renew request */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001497 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +00001498 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001499 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +00001500 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001501 /* Timed out, enter init state */
James Byrne69374872019-07-02 11:35:03 +02001502 bb_simple_info_msg("lease lost, entering init state");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001503 udhcp_run_script(NULL, "deconfig");
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001504 client_data.state = INIT_SELECTING;
1505 client_data.first_secs = 0; /* make secs field count from 0 */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001506 /*timeout = 0; - already is */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001507 packet_num = 0;
1508 continue;
1509 /* case RELEASED: */
Mike Frysinger7031f622006-05-08 03:20:50 +00001510 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001511 /* yah, I know, *you* say it would never happen */
1512 timeout = INT_MAX;
1513 continue; /* back to main loop */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001514 } /* if poll timed out */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001515
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001516 /* poll() didn't timeout, something happened */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001517
1518 /* Is it a signal? */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001519 switch (udhcp_sp_read()) {
Denys Vlasenko4248c332009-06-26 23:23:16 +02001520 case SIGUSR1:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001521 client_data.first_secs = 0; /* make secs field count from 0 */
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001522 already_waited_sec = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001523 perform_renew();
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001524 if (client_data.state == RENEW_REQUESTED) {
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001525 /* We might be either on the same network
1526 * (in which case renew might work),
1527 * or we might be on a completely different one
1528 * (in which case renew won't ever succeed).
1529 * For the second case, must make sure timeout
1530 * is not too big, or else we can send
1531 * futile renew requests for hours.
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001532 */
Denys Vlasenkoaae428f2018-09-28 14:44:09 +02001533 if (timeout > 60)
1534 timeout = 60;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001535 goto case_RENEW_REQUESTED;
Vladislav Grishenko6464f152011-10-18 01:37:47 +02001536 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001537 /* Start things over */
1538 packet_num = 0;
Denys Vlasenko7d6a7912009-07-19 04:24:23 +02001539 /* Kill any timeouts, user wants this to hurry along */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001540 timeout = 0;
1541 continue;
1542 case SIGUSR2:
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001543 perform_release(server_addr, requested_ip);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001544 timeout = INT_MAX;
1545 continue;
1546 case SIGTERM:
James Byrne253c4e72019-04-12 17:01:51 +00001547 bb_info_msg("received %s", "SIGTERM");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001548 goto ret0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001549 }
1550
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001551 /* Is it a packet? */
Denys Vlasenko3293bc12018-03-10 19:01:48 +01001552 if (!pfds[1].revents)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001553 continue; /* no */
Mike Frysinger7031f622006-05-08 03:20:50 +00001554
Denys Vlasenko4248c332009-06-26 23:23:16 +02001555 {
1556 int len;
1557
1558 /* A packet is ready, read it */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001559 if (client_data.listen_mode == LISTEN_KERNEL)
1560 len = udhcp_recv_kernel_packet(&packet, client_data.sockfd);
Denis Vlasenkob76b9a42008-01-25 22:46:34 +00001561 else
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001562 len = udhcp_recv_raw_packet(&packet, client_data.sockfd);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001563 if (len == -1) {
1564 /* Error is severe, reopen socket */
Denys Vlasenko6f97b302017-09-29 18:17:25 +02001565 bb_error_msg("read error: "STRERROR_FMT", reopening socket" STRERROR_ERRNO);
Denis Vlasenko6de89942008-05-21 07:05:06 +00001566 sleep(discover_timeout); /* 3 seconds by default */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001567 change_listen_mode(client_data.listen_mode); /* just close and reopen */
Denis Vlasenko6de89942008-05-21 07:05:06 +00001568 }
Denis Vlasenkob2342912008-05-21 07:02:16 +00001569 /* If this packet will turn out to be unrelated/bogus,
1570 * we will go back and wait for next one.
1571 * Be sure timeout is properly decreased. */
Denis Vlasenko19903f02008-05-21 07:03:03 +00001572 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenko6de89942008-05-21 07:05:06 +00001573 if (len < 0)
1574 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001575 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001576
Denys Vlasenko4248c332009-06-26 23:23:16 +02001577 if (packet.xid != xid) {
1578 log1("xid %x (our is %x), ignoring packet",
1579 (unsigned)packet.xid, (unsigned)xid);
1580 continue;
1581 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001582
Denys Vlasenko4248c332009-06-26 23:23:16 +02001583 /* Ignore packets that aren't for us */
1584 if (packet.hlen != 6
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001585 || memcmp(packet.chaddr, client_data.client_mac, 6) != 0
Denys Vlasenko4248c332009-06-26 23:23:16 +02001586 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02001587//FIXME: need to also check that last 10 bytes are zero
James Byrne69374872019-07-02 11:35:03 +02001588 log1("chaddr does not match%s", ", ignoring packet"); // log2?
Denys Vlasenko4248c332009-06-26 23:23:16 +02001589 continue;
1590 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001591
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +01001592 message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001593 if (message == NULL) {
James Byrne69374872019-07-02 11:35:03 +02001594 bb_info_msg("no message type option%s", ", ignoring packet");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001595 continue;
1596 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001597
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001598 switch (client_data.state) {
Denys Vlasenko4248c332009-06-26 23:23:16 +02001599 case INIT_SELECTING:
Denys Vlasenko860491c2011-11-18 02:09:13 +01001600 /* Must be a DHCPOFFER */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001601 if (*message == DHCPOFFER) {
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001602 uint8_t *temp;
1603
Denys Vlasenko2af2acf2011-10-20 14:47:41 +02001604/* What exactly is server's IP? There are several values.
1605 * Example DHCP offer captured with tchdump:
1606 *
1607 * 10.34.25.254:67 > 10.34.25.202:68 // IP header's src
1608 * BOOTP fields:
1609 * Your-IP 10.34.25.202
1610 * Server-IP 10.34.32.125 // "next server" IP
1611 * Gateway-IP 10.34.25.254 // relay's address (if DHCP relays are in use)
1612 * DHCP options:
1613 * DHCP-Message Option 53, length 1: Offer
1614 * Server-ID Option 54, length 4: 10.34.255.7 // "server ID"
1615 * Default-Gateway Option 3, length 4: 10.34.25.254 // router
1616 *
1617 * We think that real server IP (one to use in renew/release)
1618 * is one in Server-ID option. But I am not 100% sure.
Denys Vlasenkoee320c62011-10-23 18:05:58 +02001619 * IP header's src and Gateway-IP (same in this example)
Denys Vlasenko2af2acf2011-10-20 14:47:41 +02001620 * might work too.
1621 * "Next server" and router are definitely wrong ones to use, though...
1622 */
James Byrne253c4e72019-04-12 17:01:51 +00001623/* We used to ignore packets without DHCP_SERVER_ID.
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +01001624 * I've got user reports from people who run "address-less" servers.
1625 * They either supply DHCP_SERVER_ID of 0.0.0.0 or don't supply it at all.
1626 * They say ISC DHCP client supports this case.
1627 */
1628 server_addr = 0;
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001629 temp = udhcp_get_option32(&packet, DHCP_SERVER_ID);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001630 if (!temp) {
James Byrne69374872019-07-02 11:35:03 +02001631 bb_simple_info_msg("no server ID, using 0.0.0.0");
Denys Vlasenko8d3efaf2013-11-03 19:20:54 +01001632 } else {
1633 /* it IS unaligned sometimes, don't "optimize" */
1634 move_from_unaligned32(server_addr, temp);
Mike Frysinger7031f622006-05-08 03:20:50 +00001635 }
Denys Vlasenkob3af65b2010-10-20 21:37:23 +02001636 /*xid = packet.xid; - already is */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001637 requested_ip = packet.yiaddr;
1638
1639 /* enter requesting state */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001640 client_data.state = REQUESTING;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001641 timeout = 0;
1642 packet_num = 0;
1643 already_waited_sec = 0;
1644 }
1645 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001646 case REQUESTING:
1647 case RENEWING:
Denys Vlasenko13ca4b12009-07-19 04:07:21 +02001648 case RENEW_REQUESTED:
Denys Vlasenko4248c332009-06-26 23:23:16 +02001649 case REBINDING:
1650 if (*message == DHCPACK) {
Denys Vlasenko28634922014-12-21 16:10:22 +01001651 unsigned start;
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001652 uint32_t lease_seconds;
1653 struct in_addr temp_addr;
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001654 uint8_t *temp;
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001655
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001656 temp = udhcp_get_option32(&packet, DHCP_LEASE_TIME);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001657 if (!temp) {
James Byrne69374872019-07-02 11:35:03 +02001658 bb_simple_info_msg("no lease time with ACK, using 1 hour lease");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001659 lease_seconds = 60 * 60;
1660 } else {
1661 /* it IS unaligned sometimes, don't "optimize" */
1662 move_from_unaligned32(lease_seconds, temp);
1663 lease_seconds = ntohl(lease_seconds);
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001664 /* paranoia: must not be too small and not prone to overflows */
Denys Vlasenkoc05aa6a2018-10-30 11:56:18 +01001665 /* timeout > 60 - ensures at least one unicast renew attempt */
1666 if (lease_seconds < 2 * 61)
1667 lease_seconds = 2 * 61;
Denys Vlasenko7c44b602018-01-17 13:55:51 +01001668 //if (lease_seconds > 0x7fffffff)
1669 // lease_seconds = 0x7fffffff;
1670 //^^^not necessary since "timeout = lease_seconds / 2"
1671 //does not overflow even for 0xffffffff.
Denys Vlasenko4248c332009-06-26 23:23:16 +02001672 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001673#if ENABLE_FEATURE_UDHCPC_ARPING
Denys Vlasenko4248c332009-06-26 23:23:16 +02001674 if (opt & OPT_a) {
Denis Vlasenko739e30f2008-09-26 23:45:20 +00001675/* RFC 2131 3.1 paragraph 5:
1676 * "The client receives the DHCPACK message with configuration
1677 * parameters. The client SHOULD perform a final check on the
1678 * parameters (e.g., ARP for allocated network address), and notes
1679 * the duration of the lease specified in the DHCPACK message. At this
1680 * point, the client is configured. If the client detects that the
1681 * address is already in use (e.g., through the use of ARP),
1682 * the client MUST send a DHCPDECLINE message to the server and restarts
1683 * the configuration process..." */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001684 if (!arpping(packet.yiaddr,
1685 NULL,
1686 (uint32_t) 0,
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001687 client_data.client_mac,
1688 client_data.interface,
Michel Stam9f412712014-10-30 11:59:04 +01001689 arpping_ms)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001690 ) {
James Byrne69374872019-07-02 11:35:03 +02001691 bb_simple_info_msg("offered address is in use "
Denys Vlasenko4248c332009-06-26 23:23:16 +02001692 "(got ARP reply), declining");
Denys Vlasenko860491c2011-11-18 02:09:13 +01001693 send_decline(/*xid,*/ server_addr, packet.yiaddr);
Denis Vlasenko223bc972007-11-22 00:58:49 +00001694
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001695 if (client_data.state != REQUESTING)
Denys Vlasenko4248c332009-06-26 23:23:16 +02001696 udhcp_run_script(NULL, "deconfig");
1697 change_listen_mode(LISTEN_RAW);
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001698 client_data.state = INIT_SELECTING;
1699 client_data.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001700 requested_ip = 0;
1701 timeout = tryagain_timeout;
1702 packet_num = 0;
1703 already_waited_sec = 0;
1704 continue; /* back to main loop */
Denis Vlasenko223bc972007-11-22 00:58:49 +00001705 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001706 }
Denis Vlasenko223bc972007-11-22 00:58:49 +00001707#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +02001708 /* enter bound state */
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01001709 temp_addr.s_addr = packet.yiaddr;
James Byrne253c4e72019-04-12 17:01:51 +00001710 bb_info_msg("lease of %s obtained, lease time %u",
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001711 inet_ntoa(temp_addr), (unsigned)lease_seconds);
Denys Vlasenko4248c332009-06-26 23:23:16 +02001712 requested_ip = packet.yiaddr;
Denys Vlasenko28634922014-12-21 16:10:22 +01001713
1714 start = monotonic_sec();
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001715 udhcp_run_script(&packet, client_data.state == REQUESTING ? "bound" : "renew");
Denys Vlasenko28634922014-12-21 16:10:22 +01001716 already_waited_sec = (unsigned)monotonic_sec() - start;
John Schroeder8074a6c2014-12-25 21:12:51 +01001717 timeout = lease_seconds / 2;
1718 if ((unsigned)timeout < already_waited_sec) {
1719 /* Something went wrong. Back to discover state */
1720 timeout = already_waited_sec = 0;
1721 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001722
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001723 client_data.state = BOUND;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001724 change_listen_mode(LISTEN_NONE);
1725 if (opt & OPT_q) { /* quit after lease */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001726 goto ret0;
1727 }
Justin Maggardaa369e02009-08-13 01:26:17 +02001728 /* future renew failures should not exit (JM) */
1729 opt &= ~OPT_n;
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001730#if BB_MMU /* NOMMU case backgrounded earlier */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001731 if (!(opt & OPT_f)) {
1732 client_background();
1733 /* do not background again! */
1734 opt = ((opt & ~OPT_b) | OPT_f);
1735 }
Denis Vlasenko21765fa2008-06-13 20:44:05 +00001736#endif
Denys Vlasenko860491c2011-11-18 02:09:13 +01001737 /* make future renew packets use different xid */
1738 /* xid = random_xid(); ...but why bother? */
Denys Vlasenko28634922014-12-21 16:10:22 +01001739
Denys Vlasenko4248c332009-06-26 23:23:16 +02001740 continue; /* back to main loop */
Mike Frysinger7031f622006-05-08 03:20:50 +00001741 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001742 if (*message == DHCPNAK) {
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001743 /* If network has more than one DHCP server,
1744 * "wrong" server can reply first, with a NAK.
1745 * Do not interpret it as a NAK from "our" server.
1746 */
1747 if (server_addr != 0) {
1748 uint32_t svid;
1749 uint8_t *temp;
1750
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +01001751 temp = udhcp_get_option32(&packet, DHCP_SERVER_ID);
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001752 if (!temp) {
1753 non_matching_svid:
Peter Korsgaardb6355e22016-08-26 18:46:34 +02001754 log1("received DHCP NAK with wrong"
James Byrne69374872019-07-02 11:35:03 +02001755 " server ID%s", ", ignoring packet");
Denys Vlasenkoe2318bb2014-02-27 18:15:50 +01001756 continue;
1757 }
1758 move_from_unaligned32(svid, temp);
1759 if (svid != server_addr)
1760 goto non_matching_svid;
1761 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001762 /* return to init state */
James Byrne253c4e72019-04-12 17:01:51 +00001763 bb_info_msg("received %s", "DHCP NAK");
Denys Vlasenko4248c332009-06-26 23:23:16 +02001764 udhcp_run_script(&packet, "nak");
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);
1768 sleep(3); /* avoid excessive network traffic */
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001769 client_data.state = INIT_SELECTING;
1770 client_data.first_secs = 0; /* make secs field count from 0 */
Denys Vlasenko4248c332009-06-26 23:23:16 +02001771 requested_ip = 0;
Denis Vlasenkob539c842007-11-29 08:17:45 +00001772 timeout = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +02001773 packet_num = 0;
1774 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +00001775 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001776 continue;
1777 /* case BOUND: - ignore all packets */
1778 /* case RELEASED: - ignore all packets */
Mike Frysinger7031f622006-05-08 03:20:50 +00001779 }
Denys Vlasenko4248c332009-06-26 23:23:16 +02001780 /* back to main loop */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +00001781 } /* for (;;) - main loop ends */
1782
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001783 ret0:
Denys Vlasenko0fd43472011-11-07 00:54:27 +01001784 if (opt & OPT_R) /* release on quit */
1785 perform_release(server_addr, requested_ip);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001786 retval = 0;
1787 ret:
Denys Vlasenkobcb1fc32019-05-26 15:01:13 +02001788 /*if (client_data.pidfile) - remove_pidfile has its own check */
1789 remove_pidfile(client_data.pidfile);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001790 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001791}