"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 385b456 | 2010-03-26 10:09:34 +0100 | [diff] [blame] | 3 | * udhcp client |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 4 | * |
| 5 | * Russ Dill <Russ.Dill@asu.edu> July 2001 |
| 6 | * |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 20 | */ |
Denys Vlasenko | f7683cd | 2016-11-23 18:54:59 +0100 | [diff] [blame] | 21 | //applet:IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP)) |
| 22 | |
| 23 | //kbuild:lib-$(CONFIG_UDHCPC) += common.o packet.o signalpipe.o socket.o |
| 24 | //kbuild:lib-$(CONFIG_UDHCPC) += dhcpc.o |
| 25 | //kbuild:lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o |
| 26 | //kbuild:lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o |
| 27 | |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 28 | #include <syslog.h> |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 29 | /* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */ |
| 30 | #define WANT_PIDFILE 1 |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 31 | #include "common.h" |
| 32 | #include "dhcpd.h" |
| 33 | #include "dhcpc.h" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 34 | |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 35 | #include <netinet/if_ether.h> |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 36 | #include <linux/filter.h> |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 37 | #include <linux/if_packet.h> |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 38 | |
Denys Vlasenko | f2bf20f | 2015-10-08 18:13:57 +0200 | [diff] [blame] | 39 | #ifndef PACKET_AUXDATA |
| 40 | # define PACKET_AUXDATA 8 |
| 41 | struct tpacket_auxdata { |
| 42 | uint32_t tp_status; |
| 43 | uint32_t tp_len; |
| 44 | uint32_t tp_snaplen; |
| 45 | uint16_t tp_mac; |
| 46 | uint16_t tp_net; |
| 47 | uint16_t tp_vlan_tci; |
| 48 | uint16_t tp_padding; |
| 49 | }; |
| 50 | #endif |
| 51 | |
| 52 | |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 53 | /* "struct client_config_t client_config" is in bb_common_bufsiz1 */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 54 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 55 | |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 56 | #if ENABLE_LONG_OPTS |
| 57 | static const char udhcpc_longopts[] ALIGN1 = |
| 58 | "clientid-none\0" No_argument "C" |
| 59 | "vendorclass\0" Required_argument "V" |
| 60 | "hostname\0" Required_argument "H" |
| 61 | "fqdn\0" Required_argument "F" |
| 62 | "interface\0" Required_argument "i" |
| 63 | "now\0" No_argument "n" |
| 64 | "pidfile\0" Required_argument "p" |
| 65 | "quit\0" No_argument "q" |
| 66 | "release\0" No_argument "R" |
| 67 | "request\0" Required_argument "r" |
| 68 | "script\0" Required_argument "s" |
| 69 | "timeout\0" Required_argument "T" |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 70 | "retries\0" Required_argument "t" |
| 71 | "tryagain\0" Required_argument "A" |
| 72 | "syslog\0" No_argument "S" |
| 73 | "request-option\0" Required_argument "O" |
| 74 | "no-default-options\0" No_argument "o" |
| 75 | "foreground\0" No_argument "f" |
| 76 | "background\0" No_argument "b" |
| 77 | "broadcast\0" No_argument "B" |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 78 | IF_FEATURE_UDHCPC_ARPING("arping\0" Optional_argument "a") |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 79 | IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P") |
| 80 | ; |
| 81 | #endif |
| 82 | /* Must match getopt32 option string order */ |
| 83 | enum { |
| 84 | OPT_C = 1 << 0, |
| 85 | OPT_V = 1 << 1, |
| 86 | OPT_H = 1 << 2, |
| 87 | OPT_h = 1 << 3, |
| 88 | OPT_F = 1 << 4, |
| 89 | OPT_i = 1 << 5, |
| 90 | OPT_n = 1 << 6, |
| 91 | OPT_p = 1 << 7, |
| 92 | OPT_q = 1 << 8, |
| 93 | OPT_R = 1 << 9, |
| 94 | OPT_r = 1 << 10, |
| 95 | OPT_s = 1 << 11, |
| 96 | OPT_T = 1 << 12, |
| 97 | OPT_t = 1 << 13, |
| 98 | OPT_S = 1 << 14, |
| 99 | OPT_A = 1 << 15, |
| 100 | OPT_O = 1 << 16, |
| 101 | OPT_o = 1 << 17, |
| 102 | OPT_x = 1 << 18, |
| 103 | OPT_f = 1 << 19, |
| 104 | OPT_B = 1 << 20, |
| 105 | /* The rest has variable bit positions, need to be clever */ |
| 106 | OPTBIT_B = 20, |
| 107 | USE_FOR_MMU( OPTBIT_b,) |
| 108 | IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,) |
| 109 | IF_FEATURE_UDHCP_PORT( OPTBIT_P,) |
| 110 | USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,) |
| 111 | IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,) |
| 112 | IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,) |
| 113 | }; |
| 114 | |
| 115 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 116 | /*** Script execution code ***/ |
| 117 | |
| 118 | /* get a rough idea of how long an option will be (rounding up...) */ |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 119 | static const uint8_t len_of_option_as_string[] ALIGN1 = { |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 120 | [OPTION_IP ] = sizeof("255.255.255.255 "), |
| 121 | [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2, |
| 122 | [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "), |
Denys Vlasenko | 352f79a | 2016-02-26 15:54:56 +0100 | [diff] [blame] | 123 | [OPTION_6RD ] = sizeof("132 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 "), |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 124 | [OPTION_STRING ] = 1, |
Denys Vlasenko | d2266d4 | 2012-04-22 03:37:01 +0200 | [diff] [blame] | 125 | [OPTION_STRING_HOST ] = 1, |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 126 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 127 | [OPTION_DNS_STRING ] = 1, /* unused */ |
| 128 | /* Hmmm, this severely overestimates size if SIP_SERVERS option |
| 129 | * is in domain name form: N-byte option in binary form |
| 130 | * mallocs ~16*N bytes. But it is freed almost at once. |
| 131 | */ |
| 132 | [OPTION_SIP_SERVERS ] = sizeof("255.255.255.255 "), |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 133 | #endif |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 134 | // [OPTION_BOOLEAN ] = sizeof("yes "), |
| 135 | [OPTION_U8 ] = sizeof("255 "), |
| 136 | [OPTION_U16 ] = sizeof("65535 "), |
| 137 | // [OPTION_S16 ] = sizeof("-32768 "), |
| 138 | [OPTION_U32 ] = sizeof("4294967295 "), |
| 139 | [OPTION_S32 ] = sizeof("-2147483684 "), |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | /* note: ip is a pointer to an IP in network order, possibly misaliged */ |
| 143 | static int sprint_nip(char *dest, const char *pre, const uint8_t *ip) |
| 144 | { |
| 145 | return sprintf(dest, "%s%u.%u.%u.%u", pre, ip[0], ip[1], ip[2], ip[3]); |
| 146 | } |
| 147 | |
| 148 | /* really simple implementation, just count the bits */ |
| 149 | static int mton(uint32_t mask) |
| 150 | { |
| 151 | int i = 0; |
| 152 | mask = ntohl(mask); /* 111110000-like bit pattern */ |
| 153 | while (mask) { |
| 154 | i++; |
| 155 | mask <<= 1; |
| 156 | } |
| 157 | return i; |
| 158 | } |
| 159 | |
Denys Vlasenko | 85090c1 | 2014-06-16 00:17:00 +0200 | [diff] [blame] | 160 | #if ENABLE_FEATURE_UDHCPC_SANITIZEOPT |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 161 | /* Check if a given label represents a valid DNS label |
| 162 | * Return pointer to the first character after the label upon success, |
| 163 | * NULL otherwise. |
| 164 | * See RFC1035, 2.3.1 |
| 165 | */ |
| 166 | /* We don't need to be particularly anal. For example, allowing _, hyphen |
| 167 | * at the end, or leading and trailing dots would be ok, since it |
| 168 | * can't be used for attacks. (Leading hyphen can be, if someone uses |
| 169 | * cmd "$hostname" |
| 170 | * in the script: then hostname may be treated as an option) |
| 171 | */ |
| 172 | static const char *valid_domain_label(const char *label) |
| 173 | { |
| 174 | unsigned char ch; |
| 175 | unsigned pos = 0; |
| 176 | |
| 177 | for (;;) { |
| 178 | ch = *label; |
| 179 | if ((ch|0x20) < 'a' || (ch|0x20) > 'z') { |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 180 | if (ch < '0' || ch > '9') { |
| 181 | if (ch == '\0' || ch == '.') |
| 182 | return label; |
| 183 | /* DNS allows only '-', but we are more permissive */ |
| 184 | if (ch != '-' && ch != '_') |
| 185 | return NULL; |
| 186 | } |
| 187 | } |
| 188 | label++; |
| 189 | pos++; |
| 190 | //Do we want this? |
| 191 | //if (pos > 63) /* NS_MAXLABEL; labels must be 63 chars or less */ |
| 192 | // return NULL; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /* Check if a given name represents a valid DNS name */ |
| 197 | /* See RFC1035, 2.3.1 */ |
| 198 | static int good_hostname(const char *name) |
| 199 | { |
| 200 | //const char *start = name; |
| 201 | |
| 202 | for (;;) { |
| 203 | name = valid_domain_label(name); |
| 204 | if (!name) |
| 205 | return 0; |
| 206 | if (!name[0]) |
| 207 | return 1; |
| 208 | //Do we want this? |
| 209 | //return ((name - start) < 1025); /* NS_MAXDNAME */ |
| 210 | name++; |
Denys Vlasenko | 8efcc95 | 2016-02-11 17:44:44 +0100 | [diff] [blame] | 211 | if (*name == '\0') |
| 212 | return 1; // We allow trailing dot too |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 213 | } |
| 214 | } |
Denys Vlasenko | 85090c1 | 2014-06-16 00:17:00 +0200 | [diff] [blame] | 215 | #else |
| 216 | # define good_hostname(name) 1 |
| 217 | #endif |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 218 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 219 | /* Create "opt_name=opt_value" string */ |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 220 | static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_optflag *optflag, const char *opt_name) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 221 | { |
| 222 | unsigned upper_length; |
| 223 | int len, type, optlen; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 224 | char *dest, *ret; |
| 225 | |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 226 | /* option points to OPT_DATA, need to go back to get OPT_LEN */ |
| 227 | len = option[-OPT_DATA + OPT_LEN]; |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 228 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 229 | type = optflag->flags & OPTION_TYPE_MASK; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 230 | optlen = dhcp_option_lengths[type]; |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 231 | upper_length = len_of_option_as_string[type] |
Denys Vlasenko | 352f79a | 2016-02-26 15:54:56 +0100 | [diff] [blame] | 232 | * ((unsigned)(len + optlen) / (unsigned)optlen); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 233 | |
| 234 | dest = ret = xmalloc(upper_length + strlen(opt_name) + 2); |
| 235 | dest += sprintf(ret, "%s=", opt_name); |
| 236 | |
| 237 | while (len >= optlen) { |
| 238 | switch (type) { |
Denys Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 239 | case OPTION_IP: |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 240 | case OPTION_IP_PAIR: |
| 241 | dest += sprint_nip(dest, "", option); |
Denys Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 242 | if (type == OPTION_IP) |
| 243 | break; |
| 244 | dest += sprint_nip(dest, "/", option + 4); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 245 | break; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 246 | // case OPTION_BOOLEAN: |
| 247 | // dest += sprintf(dest, *option ? "yes" : "no"); |
| 248 | // break; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 249 | case OPTION_U8: |
| 250 | dest += sprintf(dest, "%u", *option); |
| 251 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 252 | // case OPTION_S16: |
| 253 | case OPTION_U16: { |
| 254 | uint16_t val_u16; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 255 | move_from_unaligned16(val_u16, option); |
| 256 | dest += sprintf(dest, "%u", ntohs(val_u16)); |
| 257 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 258 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 259 | case OPTION_S32: |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 260 | case OPTION_U32: { |
| 261 | uint32_t val_u32; |
| 262 | move_from_unaligned32(val_u32, option); |
| 263 | dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32)); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 264 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 265 | } |
Denys Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 266 | /* Note: options which use 'return' instead of 'break' |
| 267 | * (for example, OPTION_STRING) skip the code which handles |
| 268 | * the case of list of options. |
| 269 | */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 270 | case OPTION_STRING: |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 271 | case OPTION_STRING_HOST: |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 272 | memcpy(dest, option, len); |
| 273 | dest[len] = '\0'; |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 274 | if (type == OPTION_STRING_HOST && !good_hostname(dest)) |
| 275 | safe_strncpy(dest, "bad", len); |
Denys Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 276 | return ret; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 277 | case OPTION_STATIC_ROUTES: { |
| 278 | /* Option binary format: |
| 279 | * mask [one byte, 0..32] |
| 280 | * ip [big endian, 0..4 bytes depending on mask] |
| 281 | * router [big endian, 4 bytes] |
| 282 | * may be repeated |
| 283 | * |
| 284 | * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2" |
| 285 | */ |
| 286 | const char *pfx = ""; |
| 287 | |
| 288 | while (len >= 1 + 4) { /* mask + 0-byte ip + router */ |
| 289 | uint32_t nip; |
| 290 | uint8_t *p; |
| 291 | unsigned mask; |
| 292 | int bytes; |
| 293 | |
| 294 | mask = *option++; |
| 295 | if (mask > 32) |
| 296 | break; |
| 297 | len--; |
| 298 | |
| 299 | nip = 0; |
| 300 | p = (void*) &nip; |
| 301 | bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */ |
| 302 | while (--bytes >= 0) { |
| 303 | *p++ = *option++; |
| 304 | len--; |
| 305 | } |
| 306 | if (len < 4) |
| 307 | break; |
| 308 | |
| 309 | /* print ip/mask */ |
| 310 | dest += sprint_nip(dest, pfx, (void*) &nip); |
| 311 | pfx = " "; |
| 312 | dest += sprintf(dest, "/%u ", mask); |
| 313 | /* print router */ |
| 314 | dest += sprint_nip(dest, "", option); |
| 315 | option += 4; |
| 316 | len -= 4; |
| 317 | } |
| 318 | |
| 319 | return ret; |
| 320 | } |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 321 | case OPTION_6RD: |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 322 | /* Option binary format (see RFC 5969): |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 323 | * 0 1 2 3 |
| 324 | * 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 Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 325 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 326 | * | OPTION_6RD | option-length | IPv4MaskLen | 6rdPrefixLen | |
| 327 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 328 | * | 6rdPrefix | |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 329 | * ... (16 octets) ... |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 330 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 331 | * ... 6rdBRIPv4Address(es) ... |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 332 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 333 | * We convert it to a string |
| 334 | * "IPv4MaskLen 6rdPrefixLen 6rdPrefix 6rdBRIPv4Address..." |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 335 | * |
| 336 | * Sanity check: ensure that our length is at least 22 bytes, that |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 337 | * IPv4MaskLen <= 32, |
| 338 | * 6rdPrefixLen <= 128, |
| 339 | * 6rdPrefixLen + (32 - IPv4MaskLen) <= 128 |
| 340 | * (2nd condition need no check - it follows from 1st and 3rd). |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 341 | * Else, return envvar with empty value ("optname=") |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 342 | */ |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 343 | if (len >= (1 + 1 + 16 + 4) |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 344 | && option[0] <= 32 |
| 345 | && (option[1] + 32 - option[0]) <= 128 |
| 346 | ) { |
| 347 | /* IPv4MaskLen */ |
| 348 | dest += sprintf(dest, "%u ", *option++); |
| 349 | /* 6rdPrefixLen */ |
| 350 | dest += sprintf(dest, "%u ", *option++); |
| 351 | /* 6rdPrefix */ |
Denys Vlasenko | 42816c2 | 2011-10-20 10:52:07 +0200 | [diff] [blame] | 352 | dest += sprint_nip6(dest, /* "", */ option); |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 353 | option += 16; |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 354 | len -= 1 + 1 + 16 + 4; |
| 355 | /* "+ 4" above corresponds to the length of IPv4 addr |
| 356 | * we consume in the loop below */ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 357 | while (1) { |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 358 | /* 6rdBRIPv4Address(es) */ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 359 | dest += sprint_nip(dest, " ", option); |
| 360 | option += 4; |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 361 | len -= 4; /* do we have yet another 4+ bytes? */ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 362 | if (len < 0) |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 363 | break; /* no */ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 364 | } |
| 365 | } |
| 366 | |
| 367 | return ret; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 368 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 369 | case OPTION_DNS_STRING: |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 370 | /* unpack option into dest; use ret for prefix (i.e., "optname=") */ |
| 371 | dest = dname_dec(option, len, ret); |
| 372 | if (dest) { |
| 373 | free(ret); |
| 374 | return dest; |
| 375 | } |
| 376 | /* error. return "optname=" string */ |
| 377 | return ret; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 378 | case OPTION_SIP_SERVERS: |
| 379 | /* Option binary format: |
| 380 | * type: byte |
| 381 | * type=0: domain names, dns-compressed |
| 382 | * type=1: IP addrs |
| 383 | */ |
| 384 | option++; |
| 385 | len--; |
| 386 | if (option[-1] == 0) { |
| 387 | dest = dname_dec(option, len, ret); |
| 388 | if (dest) { |
| 389 | free(ret); |
| 390 | return dest; |
| 391 | } |
| 392 | } else |
| 393 | if (option[-1] == 1) { |
| 394 | const char *pfx = ""; |
| 395 | while (1) { |
| 396 | len -= 4; |
| 397 | if (len < 0) |
| 398 | break; |
| 399 | dest += sprint_nip(dest, pfx, option); |
| 400 | pfx = " "; |
| 401 | option += 4; |
| 402 | } |
| 403 | } |
| 404 | return ret; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 405 | #endif |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 406 | } /* switch */ |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 407 | |
| 408 | /* If we are here, try to format any remaining data |
| 409 | * in the option as another, similarly-formatted option |
| 410 | */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 411 | option += optlen; |
| 412 | len -= optlen; |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 413 | // TODO: it can be a list only if (optflag->flags & OPTION_LIST). |
| 414 | // Should we bail out/warn if we see multi-ip option which is |
| 415 | // not allowed to be such (for example, DHCP_BROADCAST)? - |
Denys Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 416 | if (len < optlen /* || !(optflag->flags & OPTION_LIST) */) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 417 | break; |
| 418 | *dest++ = ' '; |
| 419 | *dest = '\0'; |
Denys Vlasenko | 1dff672 | 2011-10-20 12:29:18 +0200 | [diff] [blame] | 420 | } /* while */ |
| 421 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 422 | return ret; |
| 423 | } |
| 424 | |
| 425 | /* put all the parameters into the environment */ |
| 426 | static char **fill_envp(struct dhcp_packet *packet) |
| 427 | { |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 428 | int envc; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 429 | int i; |
| 430 | char **envp, **curr; |
| 431 | const char *opt_name; |
| 432 | uint8_t *temp; |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 433 | uint8_t overload = 0; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 434 | |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 435 | #define BITMAP unsigned |
| 436 | #define BBITS (sizeof(BITMAP) * 8) |
| 437 | #define BMASK(i) (1 << (i & (sizeof(BITMAP) * 8 - 1))) |
| 438 | #define FOUND_OPTS(i) (found_opts[(unsigned)i / BBITS]) |
| 439 | BITMAP found_opts[256 / BBITS]; |
| 440 | |
| 441 | memset(found_opts, 0, sizeof(found_opts)); |
| 442 | |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 443 | /* We need 6 elements for: |
| 444 | * "interface=IFACE" |
| 445 | * "ip=N.N.N.N" from packet->yiaddr |
| 446 | * "siaddr=IP" from packet->siaddr_nip (unless 0) |
| 447 | * "boot_file=FILE" from packet->file (unless overloaded) |
| 448 | * "sname=SERVER_HOSTNAME" from packet->sname (unless overloaded) |
| 449 | * terminating NULL |
| 450 | */ |
| 451 | envc = 6; |
| 452 | /* +1 element for each option, +2 for subnet option: */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 453 | if (packet) { |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 454 | /* note: do not search for "pad" (0) and "end" (255) options */ |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 455 | //TODO: change logic to scan packet _once_ |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 456 | for (i = 1; i < 255; i++) { |
| 457 | temp = udhcp_get_option(packet, i); |
| 458 | if (temp) { |
| 459 | if (i == DHCP_OPTION_OVERLOAD) |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 460 | overload |= *temp; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 461 | else if (i == DHCP_SUBNET) |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 462 | envc++; /* for $mask */ |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 463 | envc++; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 464 | /*if (i != DHCP_MESSAGE_TYPE)*/ |
| 465 | FOUND_OPTS(i) |= BMASK(i); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 466 | } |
| 467 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 468 | } |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 469 | curr = envp = xzalloc(sizeof(envp[0]) * envc); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 470 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 471 | *curr = xasprintf("interface=%s", client_config.interface); |
| 472 | putenv(*curr++); |
| 473 | |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 474 | if (!packet) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 475 | return envp; |
| 476 | |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 477 | /* Export BOOTP fields. Fields we don't (yet?) export: |
| 478 | * uint8_t op; // always BOOTREPLY |
| 479 | * uint8_t htype; // hardware address type. 1 = 10mb ethernet |
| 480 | * uint8_t hlen; // hardware address length |
| 481 | * uint8_t hops; // used by relay agents only |
| 482 | * uint32_t xid; |
| 483 | * uint16_t secs; // elapsed since client began acquisition/renewal |
| 484 | * uint16_t flags; // only one flag so far: bcast. Never set by server |
| 485 | * uint32_t ciaddr; // client IP (usually == yiaddr. can it be different |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 486 | * // if during renew server wants to give us different IP?) |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 487 | * uint32_t gateway_nip; // relay agent IP address |
| 488 | * uint8_t chaddr[16]; // link-layer client hardware address (MAC) |
| 489 | * TODO: export gateway_nip as $giaddr? |
| 490 | */ |
| 491 | /* Most important one: yiaddr as $ip */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 492 | *curr = xmalloc(sizeof("ip=255.255.255.255")); |
| 493 | sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr); |
| 494 | putenv(*curr++); |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 495 | if (packet->siaddr_nip) { |
| 496 | /* IP address of next server to use in bootstrap */ |
| 497 | *curr = xmalloc(sizeof("siaddr=255.255.255.255")); |
| 498 | sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip); |
| 499 | putenv(*curr++); |
| 500 | } |
| 501 | if (!(overload & FILE_FIELD) && packet->file[0]) { |
| 502 | /* watch out for invalid packets */ |
| 503 | *curr = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file); |
| 504 | putenv(*curr++); |
| 505 | } |
| 506 | if (!(overload & SNAME_FIELD) && packet->sname[0]) { |
| 507 | /* watch out for invalid packets */ |
| 508 | *curr = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname); |
| 509 | putenv(*curr++); |
| 510 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 511 | |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 512 | /* Export known DHCP options */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 513 | opt_name = dhcp_option_strings; |
| 514 | i = 0; |
| 515 | while (*opt_name) { |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 516 | uint8_t code = dhcp_optflags[i].code; |
| 517 | BITMAP *found_ptr = &FOUND_OPTS(code); |
| 518 | BITMAP found_mask = BMASK(code); |
| 519 | if (!(*found_ptr & found_mask)) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 520 | goto next; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 521 | *found_ptr &= ~found_mask; /* leave only unknown options */ |
| 522 | temp = udhcp_get_option(packet, code); |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 523 | *curr = xmalloc_optname_optval(temp, &dhcp_optflags[i], opt_name); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 524 | putenv(*curr++); |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 525 | if (code == DHCP_SUBNET) { |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 526 | /* Subnet option: make things like "$ip/$mask" possible */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 527 | uint32_t subnet; |
| 528 | move_from_unaligned32(subnet, temp); |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 529 | *curr = xasprintf("mask=%u", mton(subnet)); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 530 | putenv(*curr++); |
| 531 | } |
| 532 | next: |
| 533 | opt_name += strlen(opt_name) + 1; |
| 534 | i++; |
| 535 | } |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 536 | /* Export unknown options */ |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 537 | for (i = 0; i < 256;) { |
| 538 | BITMAP bitmap = FOUND_OPTS(i); |
| 539 | if (!bitmap) { |
| 540 | i += BBITS; |
| 541 | continue; |
| 542 | } |
| 543 | if (bitmap & BMASK(i)) { |
| 544 | unsigned len, ofs; |
| 545 | |
| 546 | temp = udhcp_get_option(packet, i); |
| 547 | /* udhcp_get_option returns ptr to data portion, |
| 548 | * need to go back to get len |
| 549 | */ |
| 550 | len = temp[-OPT_DATA + OPT_LEN]; |
| 551 | *curr = xmalloc(sizeof("optNNN=") + 1 + len*2); |
| 552 | ofs = sprintf(*curr, "opt%u=", i); |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 553 | *bin2hex(*curr + ofs, (void*) temp, len) = '\0'; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 554 | putenv(*curr++); |
| 555 | } |
| 556 | i++; |
| 557 | } |
Denys Vlasenko | fbca0c6 | 2011-10-20 14:24:18 +0200 | [diff] [blame] | 558 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 559 | return envp; |
| 560 | } |
| 561 | |
| 562 | /* Call a script with a par file and env vars */ |
| 563 | static void udhcp_run_script(struct dhcp_packet *packet, const char *name) |
| 564 | { |
| 565 | char **envp, **curr; |
| 566 | char *argv[3]; |
| 567 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 568 | envp = fill_envp(packet); |
| 569 | |
| 570 | /* call script */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 571 | log1("executing %s %s", client_config.script, name); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 572 | argv[0] = (char*) client_config.script; |
| 573 | argv[1] = (char*) name; |
| 574 | argv[2] = NULL; |
| 575 | spawn_and_wait(argv); |
| 576 | |
| 577 | for (curr = envp; *curr; curr++) { |
| 578 | log2(" %s", *curr); |
Denys Vlasenko | dd8adde | 2010-06-24 05:00:50 +0200 | [diff] [blame] | 579 | bb_unsetenv_and_free(*curr); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 580 | } |
| 581 | free(envp); |
| 582 | } |
| 583 | |
| 584 | |
| 585 | /*** Sending/receiving packets ***/ |
| 586 | |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 587 | static ALWAYS_INLINE uint32_t random_xid(void) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 588 | { |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 589 | return rand(); |
| 590 | } |
| 591 | |
| 592 | /* Initialize the packet with the proper defaults */ |
| 593 | static void init_packet(struct dhcp_packet *packet, char type) |
| 594 | { |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 595 | uint16_t secs; |
| 596 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 597 | /* Fill in: op, htype, hlen, cookie fields; message type option: */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 598 | udhcp_init_header(packet, type); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 599 | |
| 600 | packet->xid = random_xid(); |
| 601 | |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 602 | client_config.last_secs = monotonic_sec(); |
| 603 | if (client_config.first_secs == 0) |
| 604 | client_config.first_secs = client_config.last_secs; |
| 605 | secs = client_config.last_secs - client_config.first_secs; |
| 606 | packet->secs = htons(secs); |
| 607 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 608 | memcpy(packet->chaddr, client_config.client_mac, 6); |
| 609 | if (client_config.clientid) |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 610 | udhcp_add_binary_option(packet, client_config.clientid); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 611 | } |
| 612 | |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 613 | static void add_client_options(struct dhcp_packet *packet) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 614 | { |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 615 | int i, end, len; |
| 616 | |
| 617 | udhcp_add_simple_option(packet, DHCP_MAX_SIZE, htons(IP_UDP_DHCP_SIZE)); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 618 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 619 | /* Add a "param req" option with the list of options we'd like to have |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 620 | * from stubborn DHCP servers. Pull the data from the struct in common.c. |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 621 | * No bounds checking because it goes towards the head of the packet. */ |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 622 | end = udhcp_end_option(packet->options); |
| 623 | len = 0; |
Denys Vlasenko | 293c945 | 2012-07-27 13:25:07 +0200 | [diff] [blame] | 624 | for (i = 1; i < DHCP_END; i++) { |
| 625 | if (client_config.opt_mask[i >> 3] & (1 << (i & 7))) { |
| 626 | packet->options[end + OPT_DATA + len] = i; |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 627 | len++; |
| 628 | } |
| 629 | } |
| 630 | if (len) { |
| 631 | packet->options[end + OPT_CODE] = DHCP_PARAM_REQ; |
| 632 | packet->options[end + OPT_LEN] = len; |
| 633 | packet->options[end + OPT_DATA + len] = DHCP_END; |
| 634 | } |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 635 | |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 636 | if (client_config.vendorclass) |
| 637 | udhcp_add_binary_option(packet, client_config.vendorclass); |
| 638 | if (client_config.hostname) |
| 639 | udhcp_add_binary_option(packet, client_config.hostname); |
| 640 | if (client_config.fqdn) |
| 641 | udhcp_add_binary_option(packet, client_config.fqdn); |
| 642 | |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 643 | /* Request broadcast replies if we have no IP addr */ |
| 644 | if ((option_mask32 & OPT_B) && packet->ciaddr == 0) |
| 645 | packet->flags |= htons(BROADCAST_FLAG); |
| 646 | |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 647 | /* Add -x options if any */ |
| 648 | { |
| 649 | struct option_set *curr = client_config.options; |
| 650 | while (curr) { |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 651 | udhcp_add_binary_option(packet, curr->data); |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 652 | curr = curr->next; |
| 653 | } |
| 654 | // if (client_config.sname) |
| 655 | // strncpy((char*)packet->sname, client_config.sname, sizeof(packet->sname) - 1); |
| 656 | // if (client_config.boot_file) |
| 657 | // strncpy((char*)packet->file, client_config.boot_file, sizeof(packet->file) - 1); |
| 658 | } |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 659 | |
| 660 | // This will be needed if we remove -V VENDOR_STR in favor of |
| 661 | // -x vendor:VENDOR_STR |
| 662 | //if (!udhcp_find_option(packet.options, DHCP_VENDOR)) |
| 663 | // /* not set, set the default vendor ID */ |
| 664 | // ...add (DHCP_VENDOR, "udhcp "BB_VER) opt... |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 665 | } |
| 666 | |
| 667 | /* RFC 2131 |
| 668 | * 4.4.4 Use of broadcast and unicast |
| 669 | * |
| 670 | * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM |
| 671 | * messages, unless the client knows the address of a DHCP server. |
| 672 | * The client unicasts DHCPRELEASE messages to the server. Because |
| 673 | * the client is declining the use of the IP address supplied by the server, |
| 674 | * the client broadcasts DHCPDECLINE messages. |
| 675 | * |
| 676 | * When the DHCP client knows the address of a DHCP server, in either |
| 677 | * INIT or REBOOTING state, the client may use that address |
| 678 | * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address. |
| 679 | * The client may also use unicast to send DHCPINFORM messages |
| 680 | * to a known DHCP server. If the client receives no response to DHCP |
| 681 | * messages sent to the IP address of a known DHCP server, the DHCP |
| 682 | * client reverts to using the IP broadcast address. |
| 683 | */ |
| 684 | |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 685 | static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet, uint32_t src_nip) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 686 | { |
| 687 | return udhcp_send_raw_packet(packet, |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 688 | /*src*/ src_nip, CLIENT_PORT, |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 689 | /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR, |
| 690 | client_config.ifindex); |
| 691 | } |
| 692 | |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 693 | static int bcast_or_ucast(struct dhcp_packet *packet, uint32_t ciaddr, uint32_t server) |
| 694 | { |
| 695 | if (server) |
| 696 | return udhcp_send_kernel_packet(packet, |
| 697 | ciaddr, CLIENT_PORT, |
| 698 | server, SERVER_PORT); |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 699 | return raw_bcast_from_client_config_ifindex(packet, ciaddr); |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 700 | } |
| 701 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 702 | /* Broadcast a DHCP discover packet to the network, with an optionally requested IP */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 703 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 704 | static NOINLINE int send_discover(uint32_t xid, uint32_t requested) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 705 | { |
| 706 | struct dhcp_packet packet; |
| 707 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 708 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 709 | * random xid field (we override it below), |
| 710 | * client-id option (unless -C), message type option: |
| 711 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 712 | init_packet(&packet, DHCPDISCOVER); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 713 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 714 | packet.xid = xid; |
| 715 | if (requested) |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 716 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 717 | |
| 718 | /* Add options: maxsize, |
| 719 | * optionally: hostname, fqdn, vendorclass, |
| 720 | * "param req" option according to -O, options specified with -x |
| 721 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 722 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 723 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 724 | bb_error_msg("sending %s", "discover"); |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 725 | return raw_bcast_from_client_config_ifindex(&packet, INADDR_ANY); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* Broadcast a DHCP request message */ |
| 729 | /* RFC 2131 3.1 paragraph 3: |
| 730 | * "The client _broadcasts_ a DHCPREQUEST message..." |
| 731 | */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 732 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 733 | static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requested) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 734 | { |
| 735 | struct dhcp_packet packet; |
| 736 | struct in_addr addr; |
| 737 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 738 | /* |
| 739 | * RFC 2131 4.3.2 DHCPREQUEST message |
| 740 | * ... |
| 741 | * If the DHCPREQUEST message contains a 'server identifier' |
| 742 | * option, the message is in response to a DHCPOFFER message. |
| 743 | * Otherwise, the message is a request to verify or extend an |
| 744 | * existing lease. If the client uses a 'client identifier' |
| 745 | * in a DHCPREQUEST message, it MUST use that same 'client identifier' |
| 746 | * in all subsequent messages. If the client included a list |
| 747 | * of requested parameters in a DHCPDISCOVER message, it MUST |
| 748 | * include that list in all subsequent messages. |
| 749 | */ |
| 750 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 751 | * random xid field (we override it below), |
| 752 | * client-id option (unless -C), message type option: |
| 753 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 754 | init_packet(&packet, DHCPREQUEST); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 755 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 756 | packet.xid = xid; |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 757 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 758 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 759 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 760 | |
| 761 | /* Add options: maxsize, |
| 762 | * optionally: hostname, fqdn, vendorclass, |
| 763 | * "param req" option according to -O, and options specified with -x |
| 764 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 765 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 766 | |
| 767 | addr.s_addr = requested; |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 768 | bb_error_msg("sending select for %s", inet_ntoa(addr)); |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 769 | return raw_bcast_from_client_config_ifindex(&packet, INADDR_ANY); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | /* Unicast or broadcast a DHCP renew message */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 773 | /* NOINLINE: limit stack usage in caller */ |
| 774 | static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 775 | { |
| 776 | struct dhcp_packet packet; |
| 777 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 778 | /* |
| 779 | * RFC 2131 4.3.2 DHCPREQUEST message |
| 780 | * ... |
| 781 | * DHCPREQUEST generated during RENEWING state: |
| 782 | * |
| 783 | * 'server identifier' MUST NOT be filled in, 'requested IP address' |
| 784 | * option MUST NOT be filled in, 'ciaddr' MUST be filled in with |
| 785 | * client's IP address. In this situation, the client is completely |
| 786 | * configured, and is trying to extend its lease. This message will |
| 787 | * be unicast, so no relay agents will be involved in its |
| 788 | * transmission. Because 'giaddr' is therefore not filled in, the |
| 789 | * DHCP server will trust the value in 'ciaddr', and use it when |
| 790 | * replying to the client. |
| 791 | */ |
| 792 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 793 | * random xid field (we override it below), |
| 794 | * client-id option (unless -C), message type option: |
| 795 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 796 | init_packet(&packet, DHCPREQUEST); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 797 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 798 | packet.xid = xid; |
| 799 | packet.ciaddr = ciaddr; |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 800 | |
| 801 | /* Add options: maxsize, |
| 802 | * optionally: hostname, fqdn, vendorclass, |
| 803 | * "param req" option according to -O, and options specified with -x |
| 804 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 805 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 806 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 807 | bb_error_msg("sending %s", "renew"); |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 808 | return bcast_or_ucast(&packet, ciaddr, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | #if ENABLE_FEATURE_UDHCPC_ARPING |
| 812 | /* Broadcast a DHCP decline message */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 813 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 814 | static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t requested) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 815 | { |
| 816 | struct dhcp_packet packet; |
| 817 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 818 | /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, |
| 819 | * client-id option (unless -C), message type option: |
| 820 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 821 | init_packet(&packet, DHCPDECLINE); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 822 | |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 823 | #if 0 |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 824 | /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client, |
| 825 | * but in case the server is buggy and wants DHCPDECLINE's xid |
| 826 | * to match the xid which started entire handshake, |
| 827 | * we use the same xid we used in initial DHCPDISCOVER: |
| 828 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 829 | packet.xid = xid; |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 830 | #endif |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 831 | /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */ |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 832 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 833 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 834 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 835 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 836 | bb_error_msg("sending %s", "decline"); |
Hans Dedecker | abe8f75 | 2016-02-18 12:27:07 +0100 | [diff] [blame] | 837 | return raw_bcast_from_client_config_ifindex(&packet, INADDR_ANY); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 838 | } |
| 839 | #endif |
| 840 | |
| 841 | /* Unicast a DHCP release message */ |
| 842 | static int send_release(uint32_t server, uint32_t ciaddr) |
| 843 | { |
| 844 | struct dhcp_packet packet; |
| 845 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 846 | /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, |
| 847 | * client-id option (unless -C), message type option: |
| 848 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 849 | init_packet(&packet, DHCPRELEASE); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 850 | |
| 851 | /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 852 | packet.ciaddr = ciaddr; |
| 853 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 854 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 855 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 856 | bb_error_msg("sending %s", "release"); |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 857 | /* Note: normally we unicast here since "server" is not zero. |
| 858 | * However, there _are_ people who run "address-less" DHCP servers, |
| 859 | * and reportedly ISC dhcp client and Windows allow that. |
| 860 | */ |
| 861 | return bcast_or_ucast(&packet, ciaddr, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | /* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 865 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 866 | static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd) |
| 867 | { |
| 868 | int bytes; |
| 869 | struct ip_udp_dhcp_packet packet; |
| 870 | uint16_t check; |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 871 | unsigned char cmsgbuf[CMSG_LEN(sizeof(struct tpacket_auxdata))]; |
| 872 | struct iovec iov; |
| 873 | struct msghdr msg; |
| 874 | struct cmsghdr *cmsg; |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 875 | |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 876 | /* used to use just safe_read(fd, &packet, sizeof(packet)) |
| 877 | * but we need to check for TP_STATUS_CSUMNOTREADY :( |
| 878 | */ |
| 879 | iov.iov_base = &packet; |
| 880 | iov.iov_len = sizeof(packet); |
| 881 | memset(&msg, 0, sizeof(msg)); |
| 882 | msg.msg_iov = &iov; |
| 883 | msg.msg_iovlen = 1; |
| 884 | msg.msg_control = cmsgbuf; |
| 885 | msg.msg_controllen = sizeof(cmsgbuf); |
| 886 | for (;;) { |
| 887 | bytes = recvmsg(fd, &msg, 0); |
| 888 | if (bytes < 0) { |
| 889 | if (errno == EINTR) |
| 890 | continue; |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 891 | log1("packet read error, ignoring"); |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 892 | /* NB: possible down interface, etc. Caller should pause. */ |
| 893 | return bytes; /* returns -1 */ |
| 894 | } |
| 895 | break; |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 899 | log1("packet is too short, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 900 | return -2; |
| 901 | } |
| 902 | |
| 903 | if (bytes < ntohs(packet.ip.tot_len)) { |
| 904 | /* packet is bigger than sizeof(packet), we did partial read */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 905 | log1("oversized packet, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 906 | return -2; |
| 907 | } |
| 908 | |
| 909 | /* ignore any extra garbage bytes */ |
| 910 | bytes = ntohs(packet.ip.tot_len); |
| 911 | |
| 912 | /* make sure its the right packet for us, and that it passes sanity checks */ |
Denys Vlasenko | 7981d79 | 2011-10-20 10:34:05 +0200 | [diff] [blame] | 913 | if (packet.ip.protocol != IPPROTO_UDP |
| 914 | || packet.ip.version != IPVERSION |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 915 | || packet.ip.ihl != (sizeof(packet.ip) >> 2) |
| 916 | || packet.udp.dest != htons(CLIENT_PORT) |
| 917 | /* || bytes > (int) sizeof(packet) - can't happen */ |
| 918 | || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip)) |
| 919 | ) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 920 | log1("unrelated/bogus packet, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 921 | return -2; |
| 922 | } |
| 923 | |
| 924 | /* verify IP checksum */ |
| 925 | check = packet.ip.check; |
| 926 | packet.ip.check = 0; |
Baruch Siach | e8f3633 | 2011-09-07 17:52:37 +0200 | [diff] [blame] | 927 | if (check != inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip))) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 928 | log1("bad IP header checksum, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 929 | return -2; |
| 930 | } |
| 931 | |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 932 | for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) { |
| 933 | if (cmsg->cmsg_level == SOL_PACKET |
| 934 | && cmsg->cmsg_type == PACKET_AUXDATA |
| 935 | ) { |
| 936 | /* some VMs don't checksum UDP and TCP data |
| 937 | * they send to the same physical machine, |
| 938 | * here we detect this case: |
| 939 | */ |
| 940 | struct tpacket_auxdata *aux = (void *)CMSG_DATA(cmsg); |
| 941 | if (aux->tp_status & TP_STATUS_CSUMNOTREADY) |
| 942 | goto skip_udp_sum_check; |
| 943 | } |
| 944 | } |
| 945 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 946 | /* verify UDP checksum. IP header has to be modified for this */ |
| 947 | memset(&packet.ip, 0, offsetof(struct iphdr, protocol)); |
| 948 | /* ip.xx fields which are not memset: protocol, check, saddr, daddr */ |
| 949 | packet.ip.tot_len = packet.udp.len; /* yes, this is needed */ |
| 950 | check = packet.udp.check; |
| 951 | packet.udp.check = 0; |
Baruch Siach | e8f3633 | 2011-09-07 17:52:37 +0200 | [diff] [blame] | 952 | if (check && check != inet_cksum((uint16_t *)&packet, bytes)) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 953 | log1("packet with bad UDP checksum received, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 954 | return -2; |
| 955 | } |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 956 | skip_udp_sum_check: |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 957 | |
Denys Vlasenko | 7981d79 | 2011-10-20 10:34:05 +0200 | [diff] [blame] | 958 | if (packet.data.cookie != htonl(DHCP_MAGIC)) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 959 | bb_error_msg("packet with bad magic, ignoring"); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 960 | return -2; |
| 961 | } |
Denys Vlasenko | 7981d79 | 2011-10-20 10:34:05 +0200 | [diff] [blame] | 962 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 963 | log1("received %s", "a packet"); |
Denys Vlasenko | 7981d79 | 2011-10-20 10:34:05 +0200 | [diff] [blame] | 964 | udhcp_dump_packet(&packet.data); |
| 965 | |
| 966 | bytes -= sizeof(packet.ip) + sizeof(packet.udp); |
| 967 | memcpy(dhcp_pkt, &packet.data, bytes); |
| 968 | return bytes; |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 969 | } |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 970 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 971 | |
| 972 | /*** Main ***/ |
| 973 | |
| 974 | static int sockfd = -1; |
| 975 | |
| 976 | #define LISTEN_NONE 0 |
| 977 | #define LISTEN_KERNEL 1 |
| 978 | #define LISTEN_RAW 2 |
| 979 | static smallint listen_mode; |
| 980 | |
| 981 | /* initial state: (re)start DHCP negotiation */ |
| 982 | #define INIT_SELECTING 0 |
| 983 | /* discover was sent, DHCPOFFER reply received */ |
| 984 | #define REQUESTING 1 |
| 985 | /* select/renew was sent, DHCPACK reply received */ |
| 986 | #define BOUND 2 |
| 987 | /* half of lease passed, want to renew it by sending unicast renew requests */ |
| 988 | #define RENEWING 3 |
| 989 | /* renew requests were not answered, lease is almost over, send broadcast renew */ |
| 990 | #define REBINDING 4 |
| 991 | /* manually requested renew (SIGUSR1) */ |
| 992 | #define RENEW_REQUESTED 5 |
| 993 | /* release, possibly manually requested (SIGUSR2) */ |
| 994 | #define RELEASED 6 |
| 995 | static smallint state; |
| 996 | |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 997 | static int udhcp_raw_socket(int ifindex) |
| 998 | { |
| 999 | int fd; |
| 1000 | struct sockaddr_ll sock; |
| 1001 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1002 | log1("opening raw socket on ifindex %d", ifindex); //log2? |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1003 | |
| 1004 | fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)); |
Denys Vlasenko | 744ee5d | 2014-02-07 17:38:52 +0100 | [diff] [blame] | 1005 | /* ^^^^^ |
| 1006 | * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) |
| 1007 | * ETH_P_IP: want to receive only packets with IPv4 eth type |
| 1008 | */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1009 | log1("got raw socket fd"); //log2? |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1010 | |
Vladislav Grishenko | 713e6d7 | 2011-02-14 04:50:30 +0100 | [diff] [blame] | 1011 | sock.sll_family = AF_PACKET; |
| 1012 | sock.sll_protocol = htons(ETH_P_IP); |
| 1013 | sock.sll_ifindex = ifindex; |
| 1014 | xbind(fd, (struct sockaddr *) &sock, sizeof(sock)); |
| 1015 | |
Denys Vlasenko | e4785ca | 2014-02-03 18:03:42 +0100 | [diff] [blame] | 1016 | #if 0 /* Several users reported breakage when BPF filter is used */ |
Vladislav Grishenko | 713e6d7 | 2011-02-14 04:50:30 +0100 | [diff] [blame] | 1017 | if (CLIENT_PORT == 68) { |
| 1018 | /* Use only if standard port is in use */ |
Denys Vlasenko | e4785ca | 2014-02-03 18:03:42 +0100 | [diff] [blame] | 1019 | /* |
| 1020 | * I've selected not to see LL header, so BPF doesn't see it, too. |
| 1021 | * The filter may also pass non-IP and non-ARP packets, but we do |
| 1022 | * a more complete check when receiving the message in userspace. |
| 1023 | * |
| 1024 | * and filter shamelessly stolen from: |
| 1025 | * |
| 1026 | * http://www.flamewarmaster.de/software/dhcpclient/ |
| 1027 | * |
| 1028 | * There are a few other interesting ideas on that page (look under |
| 1029 | * "Motivation"). Use of netlink events is most interesting. Think |
| 1030 | * of various network servers listening for events and reconfiguring. |
| 1031 | * That would obsolete sending HUP signals and/or make use of restarts. |
| 1032 | * |
| 1033 | * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>. |
| 1034 | * License: GPL v2. |
Denys Vlasenko | e4785ca | 2014-02-03 18:03:42 +0100 | [diff] [blame] | 1035 | */ |
| 1036 | static const struct sock_filter filter_instr[] = { |
| 1037 | /* load 9th byte (protocol) */ |
| 1038 | BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9), |
| 1039 | /* jump to L1 if it is IPPROTO_UDP, else to L4 */ |
| 1040 | BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6), |
| 1041 | /* L1: load halfword from offset 6 (flags and frag offset) */ |
| 1042 | BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6), |
| 1043 | /* jump to L4 if any bits in frag offset field are set, else to L2 */ |
| 1044 | BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0), |
| 1045 | /* L2: skip IP header (load index reg with header len) */ |
| 1046 | BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), |
| 1047 | /* load udp destination port from halfword[header_len + 2] */ |
| 1048 | BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2), |
| 1049 | /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */ |
| 1050 | BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1), |
Denys Vlasenko | ffc3a93 | 2014-02-19 14:17:11 +0100 | [diff] [blame] | 1051 | /* L3: accept packet ("accept 0x7fffffff bytes") */ |
| 1052 | /* Accepting 0xffffffff works too but kernel 2.6.19 is buggy */ |
| 1053 | BPF_STMT(BPF_RET|BPF_K, 0x7fffffff), |
| 1054 | /* L4: discard packet ("accept zero bytes") */ |
Denys Vlasenko | e4785ca | 2014-02-03 18:03:42 +0100 | [diff] [blame] | 1055 | BPF_STMT(BPF_RET|BPF_K, 0), |
| 1056 | }; |
| 1057 | static const struct sock_fprog filter_prog = { |
| 1058 | .len = sizeof(filter_instr) / sizeof(filter_instr[0]), |
| 1059 | /* casting const away: */ |
| 1060 | .filter = (struct sock_filter *) filter_instr, |
| 1061 | }; |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1062 | /* Ignoring error (kernel may lack support for this) */ |
| 1063 | if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog, |
| 1064 | sizeof(filter_prog)) >= 0) |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1065 | log1("attached filter to raw socket fd"); // log? |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 1066 | } |
Denys Vlasenko | e4785ca | 2014-02-03 18:03:42 +0100 | [diff] [blame] | 1067 | #endif |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 1068 | |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 1069 | if (setsockopt_1(fd, SOL_PACKET, PACKET_AUXDATA) != 0) { |
Alexey Froloff | 3c62bba | 2012-09-17 16:02:44 +0200 | [diff] [blame] | 1070 | if (errno != ENOPROTOOPT) |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1071 | log1("can't set PACKET_AUXDATA on raw socket"); |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1072 | } |
| 1073 | |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1074 | log1("created raw socket"); |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1075 | |
| 1076 | return fd; |
| 1077 | } |
| 1078 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1079 | static void change_listen_mode(int new_mode) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1080 | { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1081 | log1("entering listen mode: %s", |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1082 | new_mode != LISTEN_NONE |
| 1083 | ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw") |
| 1084 | : "none" |
| 1085 | ); |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 1086 | |
| 1087 | listen_mode = new_mode; |
Denis Vlasenko | fbd2918 | 2007-04-07 01:05:47 +0000 | [diff] [blame] | 1088 | if (sockfd >= 0) { |
| 1089 | close(sockfd); |
| 1090 | sockfd = -1; |
| 1091 | } |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 1092 | if (new_mode == LISTEN_KERNEL) |
| 1093 | sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface); |
| 1094 | else if (new_mode != LISTEN_NONE) |
| 1095 | sockfd = udhcp_raw_socket(client_config.ifindex); |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 1096 | /* else LISTEN_NONE: sockfd stays closed */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1099 | /* Called only on SIGUSR1 */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1100 | static void perform_renew(void) |
| 1101 | { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1102 | bb_error_msg("performing DHCP renew"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1103 | switch (state) { |
| 1104 | case BOUND: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1105 | change_listen_mode(LISTEN_KERNEL); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1106 | case RENEWING: |
| 1107 | case REBINDING: |
| 1108 | state = RENEW_REQUESTED; |
| 1109 | break; |
| 1110 | case RENEW_REQUESTED: /* impatient are we? fine, square 1 */ |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 1111 | udhcp_run_script(NULL, "deconfig"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1112 | case REQUESTING: |
| 1113 | case RELEASED: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1114 | change_listen_mode(LISTEN_RAW); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1115 | state = INIT_SELECTING; |
| 1116 | break; |
| 1117 | case INIT_SELECTING: |
| 1118 | break; |
| 1119 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1120 | } |
| 1121 | |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1122 | static void perform_release(uint32_t server_addr, uint32_t requested_ip) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1123 | { |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 1124 | char buffer[sizeof("255.255.255.255")]; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1125 | struct in_addr temp_addr; |
| 1126 | |
| 1127 | /* send release packet */ |
Denys Vlasenko | 44399e0 | 2016-07-03 20:26:44 +0200 | [diff] [blame] | 1128 | if (state == BOUND |
| 1129 | || state == RENEWING |
| 1130 | || state == REBINDING |
| 1131 | || state == RENEW_REQUESTED |
| 1132 | ) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1133 | temp_addr.s_addr = server_addr; |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 1134 | strcpy(buffer, inet_ntoa(temp_addr)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1135 | temp_addr.s_addr = requested_ip; |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1136 | bb_error_msg("unicasting a release of %s to %s", |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1137 | inet_ntoa(temp_addr), buffer); |
| 1138 | send_release(server_addr, requested_ip); /* unicast */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1139 | } |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1140 | bb_error_msg("entering released state"); |
Peter Korsgaard | b6355e2 | 2016-08-26 18:46:34 +0200 | [diff] [blame] | 1141 | /* |
| 1142 | * We can be here on: SIGUSR2, |
| 1143 | * or on exit (SIGTERM) and -R "release on quit" is specified. |
| 1144 | * Users requested to be notified in all cases, even if not in one |
| 1145 | * of the states above. |
| 1146 | */ |
| 1147 | udhcp_run_script(NULL, "deconfig"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1148 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1149 | change_listen_mode(LISTEN_NONE); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1150 | state = RELEASED; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1151 | } |
| 1152 | |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1153 | static uint8_t* alloc_dhcp_option(int code, const char *str, int extra) |
| 1154 | { |
| 1155 | uint8_t *storage; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1156 | int len = strnlen(str, 255); |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1157 | storage = xzalloc(len + extra + OPT_DATA); |
| 1158 | storage[OPT_CODE] = code; |
| 1159 | storage[OPT_LEN] = len + extra; |
| 1160 | memcpy(storage + extra + OPT_DATA, str, len); |
| 1161 | return storage; |
| 1162 | } |
| 1163 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1164 | #if BB_MMU |
| 1165 | static void client_background(void) |
| 1166 | { |
| 1167 | bb_daemonize(0); |
| 1168 | logmode &= ~LOGMODE_STDIO; |
| 1169 | /* rewrite pidfile, as our pid is different now */ |
| 1170 | write_pidfile(client_config.pidfile); |
| 1171 | } |
| 1172 | #endif |
| 1173 | |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1174 | //usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 1175 | //usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__ |
| 1176 | //usage:#else |
| 1177 | //usage:# define IF_UDHCP_VERBOSE(...) |
| 1178 | //usage:#endif |
| 1179 | //usage:#define udhcpc_trivial_usage |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1180 | //usage: "[-fbq"IF_UDHCP_VERBOSE("v")"RB]"IF_FEATURE_UDHCPC_ARPING(" [-a[MSEC]]")" [-t N] [-T SEC] [-A SEC/-n]\n" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1181 | //usage: " [-i IFACE]"IF_FEATURE_UDHCP_PORT(" [-P PORT]")" [-s PROG] [-p PIDFILE]\n" |
| 1182 | //usage: " [-oC] [-r IP] [-V VENDOR] [-F NAME] [-x OPT:VAL]... [-O OPT]..." |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1183 | //usage:#define udhcpc_full_usage "\n" |
| 1184 | //usage: IF_LONG_OPTS( |
| 1185 | //usage: "\n -i,--interface IFACE Interface to use (default eth0)" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1186 | //usage: IF_FEATURE_UDHCP_PORT( |
| 1187 | //usage: "\n -P,--client-port PORT Use PORT (default 68)" |
| 1188 | //usage: ) |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1189 | //usage: "\n -s,--script PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1190 | //usage: "\n -p,--pidfile FILE Create pidfile" |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 1191 | //usage: "\n -B,--broadcast Request broadcast replies" |
Denys Vlasenko | aadb485 | 2013-08-05 02:21:36 +0200 | [diff] [blame] | 1192 | //usage: "\n -t,--retries N Send up to N discover packets (default 3)" |
Denys Vlasenko | 456687f | 2013-08-08 12:33:18 +0200 | [diff] [blame] | 1193 | //usage: "\n -T,--timeout SEC Pause between packets (default 3)" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1194 | //usage: "\n -A,--tryagain SEC Wait if lease is not obtained (default 20)" |
Denys Vlasenko | 456687f | 2013-08-08 12:33:18 +0200 | [diff] [blame] | 1195 | //usage: "\n -n,--now Exit if lease is not obtained" |
| 1196 | //usage: "\n -q,--quit Exit after obtaining lease" |
| 1197 | //usage: "\n -R,--release Release IP on exit" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1198 | //usage: "\n -f,--foreground Run in foreground" |
| 1199 | //usage: USE_FOR_MMU( |
| 1200 | //usage: "\n -b,--background Background if lease is not obtained" |
| 1201 | //usage: ) |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1202 | //usage: "\n -S,--syslog Log to syslog too" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1203 | //usage: IF_FEATURE_UDHCPC_ARPING( |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1204 | //usage: "\n -a[MSEC],--arping[=MSEC] Validate offered address with ARP ping" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1205 | //usage: ) |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1206 | //usage: "\n -r,--request IP Request this IP address" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1207 | //usage: "\n -o,--no-default-options Don't request any options (unless -O is given)" |
| 1208 | //usage: "\n -O,--request-option OPT Request option OPT from server (cumulative)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1209 | //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1210 | //usage: "\n Examples of string, numeric, and hex byte opts:" |
| 1211 | //usage: "\n -x hostname:bbox - option 12" |
| 1212 | //usage: "\n -x lease:3600 - option 51 (lease time)" |
| 1213 | //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1214 | //usage: "\n -F,--fqdn NAME Ask server to update DNS mapping for NAME" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1215 | //usage: "\n -V,--vendorclass VENDOR Vendor identifier (default 'udhcp VERSION')" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1216 | //usage: "\n -C,--clientid-none Don't send MAC as client identifier" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1217 | //usage: IF_UDHCP_VERBOSE( |
| 1218 | //usage: "\n -v Verbose" |
| 1219 | //usage: ) |
| 1220 | //usage: ) |
| 1221 | //usage: IF_NOT_LONG_OPTS( |
| 1222 | //usage: "\n -i IFACE Interface to use (default eth0)" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1223 | //usage: IF_FEATURE_UDHCP_PORT( |
| 1224 | //usage: "\n -P PORT Use PORT (default 68)" |
| 1225 | //usage: ) |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1226 | //usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1227 | //usage: "\n -p FILE Create pidfile" |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 1228 | //usage: "\n -B Request broadcast replies" |
Denys Vlasenko | aadb485 | 2013-08-05 02:21:36 +0200 | [diff] [blame] | 1229 | //usage: "\n -t N Send up to N discover packets (default 3)" |
Denys Vlasenko | 456687f | 2013-08-08 12:33:18 +0200 | [diff] [blame] | 1230 | //usage: "\n -T SEC Pause between packets (default 3)" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1231 | //usage: "\n -A SEC Wait if lease is not obtained (default 20)" |
Denys Vlasenko | 456687f | 2013-08-08 12:33:18 +0200 | [diff] [blame] | 1232 | //usage: "\n -n Exit if lease is not obtained" |
| 1233 | //usage: "\n -q Exit after obtaining lease" |
| 1234 | //usage: "\n -R Release IP on exit" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1235 | //usage: "\n -f Run in foreground" |
| 1236 | //usage: USE_FOR_MMU( |
| 1237 | //usage: "\n -b Background if lease is not obtained" |
| 1238 | //usage: ) |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1239 | //usage: "\n -S Log to syslog too" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1240 | //usage: IF_FEATURE_UDHCPC_ARPING( |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1241 | //usage: "\n -a[MSEC] Validate offered address with ARP ping" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1242 | //usage: ) |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1243 | //usage: "\n -r IP Request this IP address" |
Denys Vlasenko | 9ae6d79 | 2013-08-08 12:45:45 +0200 | [diff] [blame] | 1244 | //usage: "\n -o Don't request any options (unless -O is given)" |
| 1245 | //usage: "\n -O OPT Request option OPT from server (cumulative)" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1246 | //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" |
| 1247 | //usage: "\n Examples of string, numeric, and hex byte opts:" |
| 1248 | //usage: "\n -x hostname:bbox - option 12" |
| 1249 | //usage: "\n -x lease:3600 - option 51 (lease time)" |
| 1250 | //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1251 | //usage: "\n -F NAME Ask server to update DNS mapping for NAME" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1252 | //usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1253 | //usage: "\n -C Don't send MAC as client identifier" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1254 | //usage: IF_UDHCP_VERBOSE( |
| 1255 | //usage: "\n -v Verbose" |
| 1256 | //usage: ) |
| 1257 | //usage: ) |
Denys Vlasenko | 8993c3f | 2010-12-25 06:21:54 +0100 | [diff] [blame] | 1258 | //usage: "\nSignals:" |
Denys Vlasenko | 50089fc | 2011-11-07 15:44:46 +0100 | [diff] [blame] | 1259 | //usage: "\n USR1 Renew lease" |
| 1260 | //usage: "\n USR2 Release lease" |
Denys Vlasenko | 8993c3f | 2010-12-25 06:21:54 +0100 | [diff] [blame] | 1261 | |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1262 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1263 | int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1264 | int udhcpc_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1265 | { |
Denys Vlasenko | e2318bb | 2014-02-27 18:15:50 +0100 | [diff] [blame] | 1266 | uint8_t *message; |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1267 | const char *str_V, *str_h, *str_F, *str_r; |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1268 | IF_FEATURE_UDHCPC_ARPING(const char *str_a = "2000";) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1269 | IF_FEATURE_UDHCP_PORT(char *str_P;) |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1270 | void *clientid_mac_ptr; |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1271 | llist_t *list_O = NULL; |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1272 | llist_t *list_x = NULL; |
Denis Vlasenko | 68af8e7 | 2007-11-22 21:41:14 +0000 | [diff] [blame] | 1273 | int tryagain_timeout = 20; |
| 1274 | int discover_timeout = 3; |
| 1275 | int discover_retries = 3; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1276 | uint32_t server_addr = server_addr; /* for compiler */ |
| 1277 | uint32_t requested_ip = 0; |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 1278 | uint32_t xid = xid; /* for compiler */ |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1279 | int packet_num; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1280 | int timeout; /* must be signed */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1281 | unsigned already_waited_sec; |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1282 | unsigned opt; |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1283 | IF_FEATURE_UDHCPC_ARPING(unsigned arpping_ms;) |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1284 | int retval; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1285 | |
Denys Vlasenko | df70a43 | 2016-04-21 18:54:36 +0200 | [diff] [blame] | 1286 | setup_common_bufsiz(); |
| 1287 | |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1288 | /* Default options */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1289 | IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;) |
| 1290 | IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;) |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1291 | client_config.interface = "eth0"; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1292 | client_config.script = CONFIG_UDHCPC_DEFAULT_SCRIPT; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1293 | str_V = "udhcp "BB_VER; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1294 | |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1295 | /* Parse command line */ |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1296 | /* O,x: list; -T,-t,-A take numeric param */ |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 1297 | IF_UDHCP_VERBOSE(opt_complementary = "vv";) |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 1298 | IF_LONG_OPTS(applet_long_options = udhcpc_longopts;) |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 1299 | opt = getopt32(argv, "CV:H:h:F:i:np:qRr:s:T:+t:+SA:+O:*ox:*fB" |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1300 | USE_FOR_MMU("b") |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1301 | IF_FEATURE_UDHCPC_ARPING("a::") |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1302 | IF_FEATURE_UDHCP_PORT("P:") |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1303 | "v" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1304 | , &str_V, &str_h, &str_h, &str_F |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1305 | , &client_config.interface, &client_config.pidfile, &str_r /* i,p */ |
| 1306 | , &client_config.script /* s */ |
| 1307 | , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */ |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1308 | , &list_O |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1309 | , &list_x |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1310 | IF_FEATURE_UDHCPC_ARPING(, &str_a) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1311 | IF_FEATURE_UDHCP_PORT(, &str_P) |
Leonid Lisovskiy | 6c9c0a1 | 2011-10-18 00:35:47 +0200 | [diff] [blame] | 1312 | IF_UDHCP_VERBOSE(, &dhcp_verbose) |
Denys Vlasenko | 7e21f04 | 2011-11-08 11:39:41 +0100 | [diff] [blame] | 1313 | ); |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 1314 | if (opt & (OPT_h|OPT_H)) { |
| 1315 | //msg added 2011-11 |
| 1316 | bb_error_msg("option -h NAME is deprecated, use -x hostname:NAME"); |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1317 | client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0); |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 1318 | } |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1319 | if (opt & OPT_F) { |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1320 | /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1321 | client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3); |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1322 | /* Flag bits: 0000NEOS |
| 1323 | * S: 1 = Client requests server to update A RR in DNS as well as PTR |
| 1324 | * O: 1 = Server indicates to client that DNS has been updated regardless |
| 1325 | * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>, |
| 1326 | * not "host.domain.com". Format 0 is obsolete. |
| 1327 | * N: 1 = Client requests server to not update DNS (S must be 0 then) |
| 1328 | * Two [0] bytes which follow are deprecated and must be 0. |
| 1329 | */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1330 | client_config.fqdn[OPT_DATA + 0] = 0x1; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1331 | /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */ |
| 1332 | /*client_config.fqdn[OPT_DATA + 2] = 0; */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1333 | } |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1334 | if (opt & OPT_r) |
| 1335 | requested_ip = inet_addr(str_r); |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 1336 | #if ENABLE_FEATURE_UDHCP_PORT |
| 1337 | if (opt & OPT_P) { |
| 1338 | CLIENT_PORT = xatou16(str_P); |
| 1339 | SERVER_PORT = CLIENT_PORT - 1; |
| 1340 | } |
| 1341 | #endif |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1342 | IF_FEATURE_UDHCPC_ARPING(arpping_ms = xatou(str_a);) |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1343 | while (list_O) { |
Denis Vlasenko | 18c9302 | 2008-08-27 22:29:43 +0000 | [diff] [blame] | 1344 | char *optstr = llist_pop(&list_O); |
Denys Vlasenko | 5d3aace | 2011-06-04 05:07:16 +0200 | [diff] [blame] | 1345 | unsigned n = bb_strtou(optstr, NULL, 0); |
| 1346 | if (errno || n > 254) { |
| 1347 | n = udhcp_option_idx(optstr); |
| 1348 | n = dhcp_optflags[n].code; |
| 1349 | } |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1350 | client_config.opt_mask[n >> 3] |= 1 << (n & 7); |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1351 | } |
Denys Vlasenko | 293c945 | 2012-07-27 13:25:07 +0200 | [diff] [blame] | 1352 | if (!(opt & OPT_o)) { |
| 1353 | unsigned i, n; |
| 1354 | for (i = 0; (n = dhcp_optflags[i].code) != 0; i++) { |
| 1355 | if (dhcp_optflags[i].flags & OPTION_REQ) { |
| 1356 | client_config.opt_mask[n >> 3] |= 1 << (n & 7); |
| 1357 | } |
| 1358 | } |
| 1359 | } |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1360 | while (list_x) { |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1361 | char *optstr = llist_pop(&list_x); |
| 1362 | char *colon = strchr(optstr, ':'); |
| 1363 | if (colon) |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1364 | *colon = ' '; |
Denys Vlasenko | 9c0ea86 | 2010-04-04 02:12:03 +0200 | [diff] [blame] | 1365 | /* now it looks similar to udhcpd's config file line: |
| 1366 | * "optname optval", using the common routine: */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1367 | udhcp_str2optset(optstr, &client_config.options); |
| 1368 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1369 | |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 1370 | if (udhcp_read_interface(client_config.interface, |
| 1371 | &client_config.ifindex, |
| 1372 | NULL, |
| 1373 | client_config.client_mac) |
| 1374 | ) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1375 | return 1; |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 1376 | } |
| 1377 | |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1378 | clientid_mac_ptr = NULL; |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1379 | if (!(opt & OPT_C) && !udhcp_find_option(client_config.options, DHCP_CLIENT_ID)) { |
| 1380 | /* not suppressed and not set, set the default client ID */ |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1381 | client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7); |
| 1382 | client_config.clientid[OPT_DATA] = 1; /* type: ethernet */ |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1383 | clientid_mac_ptr = client_config.clientid + OPT_DATA+1; |
| 1384 | memcpy(clientid_mac_ptr, client_config.client_mac, 6); |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1385 | } |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 1386 | if (str_V[0] != '\0') { |
| 1387 | // can drop -V, str_V, client_config.vendorclass, |
| 1388 | // but need to add "vendor" to the list of recognized |
| 1389 | // string opts for this to work; |
| 1390 | // and need to tweak add_client_options() too... |
| 1391 | // ...so the question is, should we? |
| 1392 | //bb_error_msg("option -V VENDOR is deprecated, use -x vendor:VENDOR"); |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1393 | client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0); |
Denys Vlasenko | 2017d48 | 2011-11-05 01:24:14 +0100 | [diff] [blame] | 1394 | } |
| 1395 | |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1396 | #if !BB_MMU |
| 1397 | /* on NOMMU reexec (i.e., background) early */ |
| 1398 | if (!(opt & OPT_f)) { |
| 1399 | bb_daemonize_or_rexec(0 /* flags */, argv); |
Denis Vlasenko | a19e649 | 2009-03-11 14:40:00 +0000 | [diff] [blame] | 1400 | logmode = LOGMODE_NONE; |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1401 | } |
| 1402 | #endif |
| 1403 | if (opt & OPT_S) { |
Denis Vlasenko | 5e4fda0 | 2009-03-08 23:46:48 +0000 | [diff] [blame] | 1404 | openlog(applet_name, LOG_PID, LOG_DAEMON); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1405 | logmode |= LOGMODE_SYSLOG; |
| 1406 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1407 | |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1408 | /* Make sure fd 0,1,2 are open */ |
| 1409 | bb_sanitize_stdio(); |
| 1410 | /* Equivalent of doing a fflush after every \n */ |
| 1411 | setlinebuf(stdout); |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1412 | /* Create pidfile */ |
| 1413 | write_pidfile(client_config.pidfile); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1414 | /* Goes to stdout (unless NOMMU) and possibly syslog */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1415 | bb_error_msg("started, v"BB_VER); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1416 | /* Set up the signal pipe */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1417 | udhcp_sp_setup(); |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 1418 | /* We want random_xid to be random... */ |
| 1419 | srand(monotonic_us()); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1420 | |
| 1421 | state = INIT_SELECTING; |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 1422 | udhcp_run_script(NULL, "deconfig"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1423 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1424 | packet_num = 0; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1425 | timeout = 0; |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1426 | already_waited_sec = 0; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1427 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1428 | /* Main event loop. select() waits on signal pipe and possibly |
| 1429 | * on sockfd. |
| 1430 | * "continue" statements in code below jump to the top of the loop. |
| 1431 | */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1432 | for (;;) { |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1433 | int tv; |
| 1434 | struct pollfd pfds[2]; |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1435 | struct dhcp_packet packet; |
Denis Vlasenko | ec64a57 | 2009-01-14 00:28:03 +0000 | [diff] [blame] | 1436 | /* silence "uninitialized!" warning */ |
| 1437 | unsigned timestamp_before_wait = timestamp_before_wait; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1438 | |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 1439 | //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode); |
| 1440 | |
| 1441 | /* Was opening raw or udp socket here |
| 1442 | * if (listen_mode != LISTEN_NONE && sockfd < 0), |
| 1443 | * but on fast network renew responses return faster |
| 1444 | * than we open sockets. Thus this code is moved |
| 1445 | * to change_listen_mode(). Thus we open listen socket |
| 1446 | * BEFORE we send renew request (see "case BOUND:"). */ |
| 1447 | |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1448 | udhcp_sp_fd_set(pfds, sockfd); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1449 | |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1450 | tv = timeout - already_waited_sec; |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 1451 | retval = 0; |
| 1452 | /* If we already timed out, fall through with retval = 0, else... */ |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1453 | if (tv > 0) { |
| 1454 | log1("waiting on select %u seconds", tv); |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1455 | timestamp_before_wait = (unsigned)monotonic_sec(); |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1456 | retval = poll(pfds, 2, tv * 1000); |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1457 | if (retval < 0) { |
| 1458 | /* EINTR? A signal was caught, don't panic */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1459 | if (errno == EINTR) { |
| 1460 | already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1461 | continue; |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1462 | } |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1463 | /* Else: an error occured, panic! */ |
| 1464 | bb_perror_msg_and_die("select"); |
| 1465 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | /* If timeout dropped to zero, time to become active: |
| 1469 | * resend discover/renew/whatever |
| 1470 | */ |
| 1471 | if (retval == 0) { |
Denys Vlasenko | a5048fa | 2010-10-20 21:38:29 +0200 | [diff] [blame] | 1472 | /* When running on a bridge, the ifindex may have changed |
| 1473 | * (e.g. if member interfaces were added/removed |
| 1474 | * or if the status of the bridge changed). |
| 1475 | * Refresh ifindex and client_mac: |
| 1476 | */ |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1477 | if (udhcp_read_interface(client_config.interface, |
| 1478 | &client_config.ifindex, |
| 1479 | NULL, |
| 1480 | client_config.client_mac) |
| 1481 | ) { |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1482 | goto ret0; /* iface is gone? */ |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1483 | } |
| 1484 | if (clientid_mac_ptr) |
| 1485 | memcpy(clientid_mac_ptr, client_config.client_mac, 6); |
Denys Vlasenko | a5048fa | 2010-10-20 21:38:29 +0200 | [diff] [blame] | 1486 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 1487 | /* We will restart the wait in any case */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1488 | already_waited_sec = 0; |
| 1489 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1490 | switch (state) { |
| 1491 | case INIT_SELECTING: |
Felix Fietkau | 1c7a58d | 2012-09-27 16:22:24 +0200 | [diff] [blame] | 1492 | if (!discover_retries || packet_num < discover_retries) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1493 | if (packet_num == 0) |
| 1494 | xid = random_xid(); |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1495 | /* broadcast */ |
| 1496 | send_discover(xid, requested_ip); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1497 | timeout = discover_timeout; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1498 | packet_num++; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1499 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1500 | } |
Denis Vlasenko | cdb0b65 | 2008-09-26 09:34:15 +0000 | [diff] [blame] | 1501 | leasefail: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1502 | udhcp_run_script(NULL, "leasefail"); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1503 | #if BB_MMU /* -b is not supported on NOMMU */ |
| 1504 | if (opt & OPT_b) { /* background if no lease */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1505 | bb_error_msg("no lease, forking to background"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1506 | client_background(); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1507 | /* do not background again! */ |
| 1508 | opt = ((opt & ~OPT_b) | OPT_f); |
| 1509 | } else |
| 1510 | #endif |
| 1511 | if (opt & OPT_n) { /* abort if no lease */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1512 | bb_error_msg("no lease, failing"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1513 | retval = 1; |
| 1514 | goto ret; |
| 1515 | } |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1516 | /* wait before trying again */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1517 | timeout = tryagain_timeout; |
| 1518 | packet_num = 0; |
| 1519 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1520 | case REQUESTING: |
Denys Vlasenko | 86d9f60 | 2016-03-04 17:00:56 +0100 | [diff] [blame] | 1521 | if (packet_num < 3) { |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1522 | /* send broadcast select packet */ |
| 1523 | send_select(xid, server_addr, requested_ip); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1524 | timeout = discover_timeout; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1525 | packet_num++; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1526 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1527 | } |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1528 | /* Timed out, go back to init state. |
| 1529 | * "discover...select...discover..." loops |
Denis Vlasenko | 7d9399e | 2008-09-26 22:21:03 +0000 | [diff] [blame] | 1530 | * were seen in the wild. Treat them similarly |
Denis Vlasenko | cdb0b65 | 2008-09-26 09:34:15 +0000 | [diff] [blame] | 1531 | * to "no response to discover" case */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1532 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | 7d9399e | 2008-09-26 22:21:03 +0000 | [diff] [blame] | 1533 | state = INIT_SELECTING; |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1534 | goto leasefail; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1535 | case BOUND: |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1536 | /* 1/2 lease passed, enter renewing state */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1537 | state = RENEWING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1538 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1539 | change_listen_mode(LISTEN_KERNEL); |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1540 | log1("entering renew state"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1541 | /* fall right through */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1542 | case RENEW_REQUESTED: /* manual (SIGUSR1) renew */ |
| 1543 | case_RENEW_REQUESTED: |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1544 | case RENEWING: |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1545 | if (timeout > 60) { |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1546 | /* send an unicast renew request */ |
| 1547 | /* Sometimes observed to fail (EADDRNOTAVAIL) to bind |
| 1548 | * a new UDP socket for sending inside send_renew. |
| 1549 | * I hazard to guess existing listening socket |
| 1550 | * is somehow conflicting with it, but why is it |
| 1551 | * not deterministic then?! Strange. |
Denys Vlasenko | 753a3ce | 2009-07-19 04:27:10 +0200 | [diff] [blame] | 1552 | * Anyway, it does recover by eventually failing through |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1553 | * into INIT_SELECTING state. |
| 1554 | */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1555 | send_renew(xid, server_addr, requested_ip); |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1556 | timeout >>= 1; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1557 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1558 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1559 | /* Timed out, enter rebinding state */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1560 | log1("entering rebinding state"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1561 | state = REBINDING; |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1562 | /* fall right through */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1563 | case REBINDING: |
Denys Vlasenko | 219757f | 2009-10-08 23:05:46 +0200 | [diff] [blame] | 1564 | /* Switch to bcast receive */ |
| 1565 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1566 | /* Lease is *really* about to run out, |
| 1567 | * try to find DHCP server using broadcast */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1568 | if (timeout > 0) { |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1569 | /* send a broadcast renew request */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1570 | send_renew(xid, 0 /*INADDR_ANY*/, requested_ip); |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1571 | timeout >>= 1; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1572 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1573 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1574 | /* Timed out, enter init state */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1575 | bb_error_msg("lease lost, entering init state"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1576 | udhcp_run_script(NULL, "deconfig"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1577 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1578 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1579 | /*timeout = 0; - already is */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1580 | packet_num = 0; |
| 1581 | continue; |
| 1582 | /* case RELEASED: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1583 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1584 | /* yah, I know, *you* say it would never happen */ |
| 1585 | timeout = INT_MAX; |
| 1586 | continue; /* back to main loop */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1587 | } /* if select timed out */ |
| 1588 | |
| 1589 | /* select() didn't timeout, something happened */ |
| 1590 | |
| 1591 | /* Is it a signal? */ |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1592 | /* note: udhcp_sp_read checks poll result before reading */ |
| 1593 | switch (udhcp_sp_read(pfds)) { |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1594 | case SIGUSR1: |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1595 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Vladislav Grishenko | 6464f15 | 2011-10-18 01:37:47 +0200 | [diff] [blame] | 1596 | already_waited_sec = 0; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1597 | perform_renew(); |
Vladislav Grishenko | 6464f15 | 2011-10-18 01:37:47 +0200 | [diff] [blame] | 1598 | if (state == RENEW_REQUESTED) { |
| 1599 | /* We might be either on the same network |
| 1600 | * (in which case renew might work), |
| 1601 | * or we might be on a completely different one |
| 1602 | * (in which case renew won't ever succeed). |
| 1603 | * For the second case, must make sure timeout |
| 1604 | * is not too big, or else we can send |
| 1605 | * futile renew requests for hours. |
| 1606 | * (Ab)use -A TIMEOUT value (usually 20 sec) |
| 1607 | * as a cap on the timeout. |
| 1608 | */ |
| 1609 | if (timeout > tryagain_timeout) |
| 1610 | timeout = tryagain_timeout; |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1611 | goto case_RENEW_REQUESTED; |
Vladislav Grishenko | 6464f15 | 2011-10-18 01:37:47 +0200 | [diff] [blame] | 1612 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1613 | /* Start things over */ |
| 1614 | packet_num = 0; |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1615 | /* Kill any timeouts, user wants this to hurry along */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1616 | timeout = 0; |
| 1617 | continue; |
| 1618 | case SIGUSR2: |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1619 | perform_release(server_addr, requested_ip); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1620 | timeout = INT_MAX; |
| 1621 | continue; |
| 1622 | case SIGTERM: |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1623 | bb_error_msg("received %s", "SIGTERM"); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1624 | goto ret0; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1625 | } |
| 1626 | |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 1627 | /* Is it a packet? */ |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1628 | if (listen_mode == LISTEN_NONE || !pfds[1].revents) |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1629 | continue; /* no */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1630 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1631 | { |
| 1632 | int len; |
| 1633 | |
| 1634 | /* A packet is ready, read it */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1635 | if (listen_mode == LISTEN_KERNEL) |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1636 | len = udhcp_recv_kernel_packet(&packet, sockfd); |
Denis Vlasenko | b76b9a4 | 2008-01-25 22:46:34 +0000 | [diff] [blame] | 1637 | else |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1638 | len = udhcp_recv_raw_packet(&packet, sockfd); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1639 | if (len == -1) { |
| 1640 | /* Error is severe, reopen socket */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1641 | bb_error_msg("read error: %s, reopening socket", strerror(errno)); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1642 | sleep(discover_timeout); /* 3 seconds by default */ |
| 1643 | change_listen_mode(listen_mode); /* just close and reopen */ |
| 1644 | } |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1645 | /* If this packet will turn out to be unrelated/bogus, |
| 1646 | * we will go back and wait for next one. |
| 1647 | * Be sure timeout is properly decreased. */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1648 | already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1649 | if (len < 0) |
| 1650 | continue; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1651 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1652 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1653 | if (packet.xid != xid) { |
| 1654 | log1("xid %x (our is %x), ignoring packet", |
| 1655 | (unsigned)packet.xid, (unsigned)xid); |
| 1656 | continue; |
| 1657 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1658 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1659 | /* Ignore packets that aren't for us */ |
| 1660 | if (packet.hlen != 6 |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 1661 | || memcmp(packet.chaddr, client_config.client_mac, 6) != 0 |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1662 | ) { |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1663 | //FIXME: need to also check that last 10 bytes are zero |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1664 | log1("chaddr does not match, ignoring packet"); // log2? |
| 1665 | continue; |
| 1666 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1667 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1668 | message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1669 | if (message == NULL) { |
| 1670 | bb_error_msg("no message type option, ignoring packet"); |
| 1671 | continue; |
| 1672 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1673 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1674 | switch (state) { |
| 1675 | case INIT_SELECTING: |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 1676 | /* Must be a DHCPOFFER */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1677 | if (*message == DHCPOFFER) { |
Denys Vlasenko | e2318bb | 2014-02-27 18:15:50 +0100 | [diff] [blame] | 1678 | uint8_t *temp; |
| 1679 | |
Denys Vlasenko | 2af2acf | 2011-10-20 14:47:41 +0200 | [diff] [blame] | 1680 | /* What exactly is server's IP? There are several values. |
| 1681 | * Example DHCP offer captured with tchdump: |
| 1682 | * |
| 1683 | * 10.34.25.254:67 > 10.34.25.202:68 // IP header's src |
| 1684 | * BOOTP fields: |
| 1685 | * Your-IP 10.34.25.202 |
| 1686 | * Server-IP 10.34.32.125 // "next server" IP |
| 1687 | * Gateway-IP 10.34.25.254 // relay's address (if DHCP relays are in use) |
| 1688 | * DHCP options: |
| 1689 | * DHCP-Message Option 53, length 1: Offer |
| 1690 | * Server-ID Option 54, length 4: 10.34.255.7 // "server ID" |
| 1691 | * Default-Gateway Option 3, length 4: 10.34.25.254 // router |
| 1692 | * |
| 1693 | * We think that real server IP (one to use in renew/release) |
| 1694 | * is one in Server-ID option. But I am not 100% sure. |
Denys Vlasenko | ee320c6 | 2011-10-23 18:05:58 +0200 | [diff] [blame] | 1695 | * IP header's src and Gateway-IP (same in this example) |
Denys Vlasenko | 2af2acf | 2011-10-20 14:47:41 +0200 | [diff] [blame] | 1696 | * might work too. |
| 1697 | * "Next server" and router are definitely wrong ones to use, though... |
| 1698 | */ |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 1699 | /* We used to ignore pcakets without DHCP_SERVER_ID. |
| 1700 | * I've got user reports from people who run "address-less" servers. |
| 1701 | * They either supply DHCP_SERVER_ID of 0.0.0.0 or don't supply it at all. |
| 1702 | * They say ISC DHCP client supports this case. |
| 1703 | */ |
| 1704 | server_addr = 0; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1705 | temp = udhcp_get_option(&packet, DHCP_SERVER_ID); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1706 | if (!temp) { |
Denys Vlasenko | 8d3efaf | 2013-11-03 19:20:54 +0100 | [diff] [blame] | 1707 | bb_error_msg("no server ID, using 0.0.0.0"); |
| 1708 | } else { |
| 1709 | /* it IS unaligned sometimes, don't "optimize" */ |
| 1710 | move_from_unaligned32(server_addr, temp); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1711 | } |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 1712 | /*xid = packet.xid; - already is */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1713 | requested_ip = packet.yiaddr; |
| 1714 | |
| 1715 | /* enter requesting state */ |
| 1716 | state = REQUESTING; |
| 1717 | timeout = 0; |
| 1718 | packet_num = 0; |
| 1719 | already_waited_sec = 0; |
| 1720 | } |
| 1721 | continue; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1722 | case REQUESTING: |
| 1723 | case RENEWING: |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1724 | case RENEW_REQUESTED: |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1725 | case REBINDING: |
| 1726 | if (*message == DHCPACK) { |
Denys Vlasenko | 2863492 | 2014-12-21 16:10:22 +0100 | [diff] [blame] | 1727 | unsigned start; |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1728 | uint32_t lease_seconds; |
| 1729 | struct in_addr temp_addr; |
Denys Vlasenko | e2318bb | 2014-02-27 18:15:50 +0100 | [diff] [blame] | 1730 | uint8_t *temp; |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1731 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1732 | temp = udhcp_get_option(&packet, DHCP_LEASE_TIME); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1733 | if (!temp) { |
| 1734 | bb_error_msg("no lease time with ACK, using 1 hour lease"); |
| 1735 | lease_seconds = 60 * 60; |
| 1736 | } else { |
| 1737 | /* it IS unaligned sometimes, don't "optimize" */ |
| 1738 | move_from_unaligned32(lease_seconds, temp); |
| 1739 | lease_seconds = ntohl(lease_seconds); |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1740 | /* paranoia: must not be too small and not prone to overflows */ |
| 1741 | if (lease_seconds < 0x10) |
| 1742 | lease_seconds = 0x10; |
Denys Vlasenko | 52a515d | 2017-02-16 23:25:44 +0100 | [diff] [blame^] | 1743 | if (lease_seconds > 0x7fffffff / 1000) |
| 1744 | lease_seconds = 0x7fffffff / 1000; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1745 | } |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1746 | #if ENABLE_FEATURE_UDHCPC_ARPING |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1747 | if (opt & OPT_a) { |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 1748 | /* RFC 2131 3.1 paragraph 5: |
| 1749 | * "The client receives the DHCPACK message with configuration |
| 1750 | * parameters. The client SHOULD perform a final check on the |
| 1751 | * parameters (e.g., ARP for allocated network address), and notes |
| 1752 | * the duration of the lease specified in the DHCPACK message. At this |
| 1753 | * point, the client is configured. If the client detects that the |
| 1754 | * address is already in use (e.g., through the use of ARP), |
| 1755 | * the client MUST send a DHCPDECLINE message to the server and restarts |
| 1756 | * the configuration process..." */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1757 | if (!arpping(packet.yiaddr, |
| 1758 | NULL, |
| 1759 | (uint32_t) 0, |
| 1760 | client_config.client_mac, |
Michel Stam | 9f41271 | 2014-10-30 11:59:04 +0100 | [diff] [blame] | 1761 | client_config.interface, |
| 1762 | arpping_ms) |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1763 | ) { |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1764 | bb_error_msg("offered address is in use " |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1765 | "(got ARP reply), declining"); |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 1766 | send_decline(/*xid,*/ server_addr, packet.yiaddr); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1767 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1768 | if (state != REQUESTING) |
| 1769 | udhcp_run_script(NULL, "deconfig"); |
| 1770 | change_listen_mode(LISTEN_RAW); |
| 1771 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1772 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1773 | requested_ip = 0; |
| 1774 | timeout = tryagain_timeout; |
| 1775 | packet_num = 0; |
| 1776 | already_waited_sec = 0; |
| 1777 | continue; /* back to main loop */ |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1778 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1779 | } |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1780 | #endif |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1781 | /* enter bound state */ |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 1782 | temp_addr.s_addr = packet.yiaddr; |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1783 | bb_error_msg("lease of %s obtained, lease time %u", |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1784 | inet_ntoa(temp_addr), (unsigned)lease_seconds); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1785 | requested_ip = packet.yiaddr; |
Denys Vlasenko | 2863492 | 2014-12-21 16:10:22 +0100 | [diff] [blame] | 1786 | |
| 1787 | start = monotonic_sec(); |
Denys Vlasenko | 4abfc26 | 2009-07-19 04:35:16 +0200 | [diff] [blame] | 1788 | udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew"); |
Denys Vlasenko | 2863492 | 2014-12-21 16:10:22 +0100 | [diff] [blame] | 1789 | already_waited_sec = (unsigned)monotonic_sec() - start; |
John Schroeder | 8074a6c | 2014-12-25 21:12:51 +0100 | [diff] [blame] | 1790 | timeout = lease_seconds / 2; |
| 1791 | if ((unsigned)timeout < already_waited_sec) { |
| 1792 | /* Something went wrong. Back to discover state */ |
| 1793 | timeout = already_waited_sec = 0; |
| 1794 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1795 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1796 | state = BOUND; |
| 1797 | change_listen_mode(LISTEN_NONE); |
| 1798 | if (opt & OPT_q) { /* quit after lease */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1799 | goto ret0; |
| 1800 | } |
Justin Maggard | aa369e0 | 2009-08-13 01:26:17 +0200 | [diff] [blame] | 1801 | /* future renew failures should not exit (JM) */ |
| 1802 | opt &= ~OPT_n; |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1803 | #if BB_MMU /* NOMMU case backgrounded earlier */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1804 | if (!(opt & OPT_f)) { |
| 1805 | client_background(); |
| 1806 | /* do not background again! */ |
| 1807 | opt = ((opt & ~OPT_b) | OPT_f); |
| 1808 | } |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1809 | #endif |
Denys Vlasenko | 860491c | 2011-11-18 02:09:13 +0100 | [diff] [blame] | 1810 | /* make future renew packets use different xid */ |
| 1811 | /* xid = random_xid(); ...but why bother? */ |
Denys Vlasenko | 2863492 | 2014-12-21 16:10:22 +0100 | [diff] [blame] | 1812 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1813 | continue; /* back to main loop */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1814 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1815 | if (*message == DHCPNAK) { |
Denys Vlasenko | e2318bb | 2014-02-27 18:15:50 +0100 | [diff] [blame] | 1816 | /* If network has more than one DHCP server, |
| 1817 | * "wrong" server can reply first, with a NAK. |
| 1818 | * Do not interpret it as a NAK from "our" server. |
| 1819 | */ |
| 1820 | if (server_addr != 0) { |
| 1821 | uint32_t svid; |
| 1822 | uint8_t *temp; |
| 1823 | |
| 1824 | temp = udhcp_get_option(&packet, DHCP_SERVER_ID); |
| 1825 | if (!temp) { |
| 1826 | non_matching_svid: |
Peter Korsgaard | b6355e2 | 2016-08-26 18:46:34 +0200 | [diff] [blame] | 1827 | log1("received DHCP NAK with wrong" |
| 1828 | " server ID, ignoring packet"); |
Denys Vlasenko | e2318bb | 2014-02-27 18:15:50 +0100 | [diff] [blame] | 1829 | continue; |
| 1830 | } |
| 1831 | move_from_unaligned32(svid, temp); |
| 1832 | if (svid != server_addr) |
| 1833 | goto non_matching_svid; |
| 1834 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1835 | /* return to init state */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 1836 | bb_error_msg("received %s", "DHCP NAK"); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1837 | udhcp_run_script(&packet, "nak"); |
| 1838 | if (state != REQUESTING) |
| 1839 | udhcp_run_script(NULL, "deconfig"); |
| 1840 | change_listen_mode(LISTEN_RAW); |
| 1841 | sleep(3); /* avoid excessive network traffic */ |
| 1842 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1843 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1844 | requested_ip = 0; |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1845 | timeout = 0; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1846 | packet_num = 0; |
| 1847 | already_waited_sec = 0; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1848 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1849 | continue; |
| 1850 | /* case BOUND: - ignore all packets */ |
| 1851 | /* case RELEASED: - ignore all packets */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1852 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1853 | /* back to main loop */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1854 | } /* for (;;) - main loop ends */ |
| 1855 | |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 1856 | ret0: |
Denys Vlasenko | 0fd4347 | 2011-11-07 00:54:27 +0100 | [diff] [blame] | 1857 | if (opt & OPT_R) /* release on quit */ |
| 1858 | perform_release(server_addr, requested_ip); |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 1859 | retval = 0; |
| 1860 | ret: |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1861 | /*if (client_config.pidfile) - remove_pidfile has its own check */ |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 1862 | remove_pidfile(client_config.pidfile); |
| 1863 | return retval; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1864 | } |