"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 | */ |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 21 | #include <syslog.h> |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 22 | /* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */ |
| 23 | #define WANT_PIDFILE 1 |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 24 | #include "common.h" |
| 25 | #include "dhcpd.h" |
| 26 | #include "dhcpc.h" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 27 | |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 28 | #include <netinet/if_ether.h> |
| 29 | #include <netpacket/packet.h> |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 30 | #include <linux/filter.h> |
| 31 | |
Denis Vlasenko | deabacd | 2007-09-30 17:55:43 +0000 | [diff] [blame] | 32 | /* struct client_config_t client_config is in bb_common_bufsiz1 */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 33 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 34 | |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 35 | #if ENABLE_LONG_OPTS |
| 36 | static const char udhcpc_longopts[] ALIGN1 = |
| 37 | "clientid-none\0" No_argument "C" |
| 38 | "vendorclass\0" Required_argument "V" |
| 39 | "hostname\0" Required_argument "H" |
| 40 | "fqdn\0" Required_argument "F" |
| 41 | "interface\0" Required_argument "i" |
| 42 | "now\0" No_argument "n" |
| 43 | "pidfile\0" Required_argument "p" |
| 44 | "quit\0" No_argument "q" |
| 45 | "release\0" No_argument "R" |
| 46 | "request\0" Required_argument "r" |
| 47 | "script\0" Required_argument "s" |
| 48 | "timeout\0" Required_argument "T" |
| 49 | "version\0" No_argument "v" |
| 50 | "retries\0" Required_argument "t" |
| 51 | "tryagain\0" Required_argument "A" |
| 52 | "syslog\0" No_argument "S" |
| 53 | "request-option\0" Required_argument "O" |
| 54 | "no-default-options\0" No_argument "o" |
| 55 | "foreground\0" No_argument "f" |
| 56 | "background\0" No_argument "b" |
| 57 | "broadcast\0" No_argument "B" |
| 58 | IF_FEATURE_UDHCPC_ARPING("arping\0" No_argument "a") |
| 59 | IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P") |
| 60 | ; |
| 61 | #endif |
| 62 | /* Must match getopt32 option string order */ |
| 63 | enum { |
| 64 | OPT_C = 1 << 0, |
| 65 | OPT_V = 1 << 1, |
| 66 | OPT_H = 1 << 2, |
| 67 | OPT_h = 1 << 3, |
| 68 | OPT_F = 1 << 4, |
| 69 | OPT_i = 1 << 5, |
| 70 | OPT_n = 1 << 6, |
| 71 | OPT_p = 1 << 7, |
| 72 | OPT_q = 1 << 8, |
| 73 | OPT_R = 1 << 9, |
| 74 | OPT_r = 1 << 10, |
| 75 | OPT_s = 1 << 11, |
| 76 | OPT_T = 1 << 12, |
| 77 | OPT_t = 1 << 13, |
| 78 | OPT_S = 1 << 14, |
| 79 | OPT_A = 1 << 15, |
| 80 | OPT_O = 1 << 16, |
| 81 | OPT_o = 1 << 17, |
| 82 | OPT_x = 1 << 18, |
| 83 | OPT_f = 1 << 19, |
| 84 | OPT_B = 1 << 20, |
| 85 | /* The rest has variable bit positions, need to be clever */ |
| 86 | OPTBIT_B = 20, |
| 87 | USE_FOR_MMU( OPTBIT_b,) |
| 88 | IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,) |
| 89 | IF_FEATURE_UDHCP_PORT( OPTBIT_P,) |
| 90 | USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,) |
| 91 | IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,) |
| 92 | IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,) |
| 93 | }; |
| 94 | |
| 95 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 96 | /*** Script execution code ***/ |
| 97 | |
| 98 | /* get a rough idea of how long an option will be (rounding up...) */ |
| 99 | static const uint8_t len_of_option_as_string[] = { |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 100 | [OPTION_IP ] = sizeof("255.255.255.255 "), |
| 101 | [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2, |
| 102 | [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "), |
| 103 | [OPTION_STRING ] = 1, |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 104 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 105 | [OPTION_DNS_STRING ] = 1, /* unused */ |
| 106 | /* Hmmm, this severely overestimates size if SIP_SERVERS option |
| 107 | * is in domain name form: N-byte option in binary form |
| 108 | * mallocs ~16*N bytes. But it is freed almost at once. |
| 109 | */ |
| 110 | [OPTION_SIP_SERVERS ] = sizeof("255.255.255.255 "), |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 111 | #endif |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 112 | // [OPTION_BOOLEAN ] = sizeof("yes "), |
| 113 | [OPTION_U8 ] = sizeof("255 "), |
| 114 | [OPTION_U16 ] = sizeof("65535 "), |
| 115 | // [OPTION_S16 ] = sizeof("-32768 "), |
| 116 | [OPTION_U32 ] = sizeof("4294967295 "), |
| 117 | [OPTION_S32 ] = sizeof("-2147483684 "), |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | /* note: ip is a pointer to an IP in network order, possibly misaliged */ |
| 121 | static int sprint_nip(char *dest, const char *pre, const uint8_t *ip) |
| 122 | { |
| 123 | return sprintf(dest, "%s%u.%u.%u.%u", pre, ip[0], ip[1], ip[2], ip[3]); |
| 124 | } |
| 125 | |
| 126 | /* really simple implementation, just count the bits */ |
| 127 | static int mton(uint32_t mask) |
| 128 | { |
| 129 | int i = 0; |
| 130 | mask = ntohl(mask); /* 111110000-like bit pattern */ |
| 131 | while (mask) { |
| 132 | i++; |
| 133 | mask <<= 1; |
| 134 | } |
| 135 | return i; |
| 136 | } |
| 137 | |
| 138 | /* Create "opt_name=opt_value" string */ |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 139 | 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] | 140 | { |
| 141 | unsigned upper_length; |
| 142 | int len, type, optlen; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 143 | char *dest, *ret; |
| 144 | |
| 145 | /* option points to OPT_DATA, need to go back and get OPT_LEN */ |
| 146 | len = option[OPT_LEN - OPT_DATA]; |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 147 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 148 | type = optflag->flags & OPTION_TYPE_MASK; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 149 | optlen = dhcp_option_lengths[type]; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 150 | upper_length = len_of_option_as_string[type] * ((unsigned)len / (unsigned)optlen); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 151 | |
| 152 | dest = ret = xmalloc(upper_length + strlen(opt_name) + 2); |
| 153 | dest += sprintf(ret, "%s=", opt_name); |
| 154 | |
| 155 | while (len >= optlen) { |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 156 | unsigned ip_ofs = 0; |
| 157 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 158 | switch (type) { |
| 159 | case OPTION_IP_PAIR: |
| 160 | dest += sprint_nip(dest, "", option); |
| 161 | *dest++ = '/'; |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 162 | ip_ofs = 4; |
| 163 | /* fall through */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 164 | case OPTION_IP: |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 165 | dest += sprint_nip(dest, "", option + ip_ofs); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 166 | break; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 167 | // case OPTION_BOOLEAN: |
| 168 | // dest += sprintf(dest, *option ? "yes" : "no"); |
| 169 | // break; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 170 | case OPTION_U8: |
| 171 | dest += sprintf(dest, "%u", *option); |
| 172 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 173 | // case OPTION_S16: |
| 174 | case OPTION_U16: { |
| 175 | uint16_t val_u16; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 176 | move_from_unaligned16(val_u16, option); |
| 177 | dest += sprintf(dest, "%u", ntohs(val_u16)); |
| 178 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 179 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 180 | case OPTION_S32: |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 181 | case OPTION_U32: { |
| 182 | uint32_t val_u32; |
| 183 | move_from_unaligned32(val_u32, option); |
| 184 | dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32)); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 185 | break; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 186 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 187 | case OPTION_STRING: |
| 188 | memcpy(dest, option, len); |
| 189 | dest[len] = '\0'; |
| 190 | return ret; /* Short circuit this case */ |
| 191 | case OPTION_STATIC_ROUTES: { |
| 192 | /* Option binary format: |
| 193 | * mask [one byte, 0..32] |
| 194 | * ip [big endian, 0..4 bytes depending on mask] |
| 195 | * router [big endian, 4 bytes] |
| 196 | * may be repeated |
| 197 | * |
| 198 | * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2" |
| 199 | */ |
| 200 | const char *pfx = ""; |
| 201 | |
| 202 | while (len >= 1 + 4) { /* mask + 0-byte ip + router */ |
| 203 | uint32_t nip; |
| 204 | uint8_t *p; |
| 205 | unsigned mask; |
| 206 | int bytes; |
| 207 | |
| 208 | mask = *option++; |
| 209 | if (mask > 32) |
| 210 | break; |
| 211 | len--; |
| 212 | |
| 213 | nip = 0; |
| 214 | p = (void*) &nip; |
| 215 | bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */ |
| 216 | while (--bytes >= 0) { |
| 217 | *p++ = *option++; |
| 218 | len--; |
| 219 | } |
| 220 | if (len < 4) |
| 221 | break; |
| 222 | |
| 223 | /* print ip/mask */ |
| 224 | dest += sprint_nip(dest, pfx, (void*) &nip); |
| 225 | pfx = " "; |
| 226 | dest += sprintf(dest, "/%u ", mask); |
| 227 | /* print router */ |
| 228 | dest += sprint_nip(dest, "", option); |
| 229 | option += 4; |
| 230 | len -= 4; |
| 231 | } |
| 232 | |
| 233 | return ret; |
| 234 | } |
| 235 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 236 | case OPTION_DNS_STRING: |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 237 | /* unpack option into dest; use ret for prefix (i.e., "optname=") */ |
| 238 | dest = dname_dec(option, len, ret); |
| 239 | if (dest) { |
| 240 | free(ret); |
| 241 | return dest; |
| 242 | } |
| 243 | /* error. return "optname=" string */ |
| 244 | return ret; |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 245 | case OPTION_SIP_SERVERS: |
| 246 | /* Option binary format: |
| 247 | * type: byte |
| 248 | * type=0: domain names, dns-compressed |
| 249 | * type=1: IP addrs |
| 250 | */ |
| 251 | option++; |
| 252 | len--; |
| 253 | if (option[-1] == 0) { |
| 254 | dest = dname_dec(option, len, ret); |
| 255 | if (dest) { |
| 256 | free(ret); |
| 257 | return dest; |
| 258 | } |
| 259 | } else |
| 260 | if (option[-1] == 1) { |
| 261 | const char *pfx = ""; |
| 262 | while (1) { |
| 263 | len -= 4; |
| 264 | if (len < 0) |
| 265 | break; |
| 266 | dest += sprint_nip(dest, pfx, option); |
| 267 | pfx = " "; |
| 268 | option += 4; |
| 269 | } |
| 270 | } |
| 271 | return ret; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 272 | #endif |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 273 | } /* switch */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 274 | option += optlen; |
| 275 | len -= optlen; |
Vladislav Grishenko | ad8def2 | 2010-10-17 12:27:50 +0200 | [diff] [blame] | 276 | // TODO: it can be a list only if (optflag->flags & OPTION_LIST). |
| 277 | // Should we bail out/warn if we see multi-ip option which is |
| 278 | // not allowed to be such (for example, DHCP_BROADCAST)? - |
| 279 | if (len <= 0 /* || !(optflag->flags & OPTION_LIST) */) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 280 | break; |
| 281 | *dest++ = ' '; |
| 282 | *dest = '\0'; |
| 283 | } |
| 284 | return ret; |
| 285 | } |
| 286 | |
| 287 | /* put all the parameters into the environment */ |
| 288 | static char **fill_envp(struct dhcp_packet *packet) |
| 289 | { |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 290 | int envc; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 291 | int i; |
| 292 | char **envp, **curr; |
| 293 | const char *opt_name; |
| 294 | uint8_t *temp; |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 295 | uint8_t overload = 0; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 296 | |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 297 | #define BITMAP unsigned |
| 298 | #define BBITS (sizeof(BITMAP) * 8) |
| 299 | #define BMASK(i) (1 << (i & (sizeof(BITMAP) * 8 - 1))) |
| 300 | #define FOUND_OPTS(i) (found_opts[(unsigned)i / BBITS]) |
| 301 | BITMAP found_opts[256 / BBITS]; |
| 302 | |
| 303 | memset(found_opts, 0, sizeof(found_opts)); |
| 304 | |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 305 | /* We need 6 elements for: |
| 306 | * "interface=IFACE" |
| 307 | * "ip=N.N.N.N" from packet->yiaddr |
| 308 | * "siaddr=IP" from packet->siaddr_nip (unless 0) |
| 309 | * "boot_file=FILE" from packet->file (unless overloaded) |
| 310 | * "sname=SERVER_HOSTNAME" from packet->sname (unless overloaded) |
| 311 | * terminating NULL |
| 312 | */ |
| 313 | envc = 6; |
| 314 | /* +1 element for each option, +2 for subnet option: */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 315 | if (packet) { |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 316 | /* note: do not search for "pad" (0) and "end" (255) options */ |
| 317 | for (i = 1; i < 255; i++) { |
| 318 | temp = udhcp_get_option(packet, i); |
| 319 | if (temp) { |
| 320 | if (i == DHCP_OPTION_OVERLOAD) |
| 321 | overload = *temp; |
| 322 | else if (i == DHCP_SUBNET) |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 323 | envc++; /* for mton */ |
| 324 | envc++; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 325 | /*if (i != DHCP_MESSAGE_TYPE)*/ |
| 326 | FOUND_OPTS(i) |= BMASK(i); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 327 | } |
| 328 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 329 | } |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 330 | curr = envp = xzalloc(sizeof(envp[0]) * envc); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 331 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 332 | *curr = xasprintf("interface=%s", client_config.interface); |
| 333 | putenv(*curr++); |
| 334 | |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 335 | if (!packet) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 336 | return envp; |
| 337 | |
| 338 | *curr = xmalloc(sizeof("ip=255.255.255.255")); |
| 339 | sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr); |
| 340 | putenv(*curr++); |
| 341 | |
| 342 | opt_name = dhcp_option_strings; |
| 343 | i = 0; |
| 344 | while (*opt_name) { |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 345 | uint8_t code = dhcp_optflags[i].code; |
| 346 | BITMAP *found_ptr = &FOUND_OPTS(code); |
| 347 | BITMAP found_mask = BMASK(code); |
| 348 | if (!(*found_ptr & found_mask)) |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 349 | goto next; |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 350 | *found_ptr &= ~found_mask; /* leave only unknown options */ |
| 351 | temp = udhcp_get_option(packet, code); |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 352 | *curr = xmalloc_optname_optval(temp, &dhcp_optflags[i], opt_name); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 353 | putenv(*curr++); |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 354 | if (code == DHCP_SUBNET) { |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 355 | /* Subnet option: make things like "$ip/$mask" possible */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 356 | uint32_t subnet; |
| 357 | move_from_unaligned32(subnet, temp); |
| 358 | *curr = xasprintf("mask=%d", mton(subnet)); |
| 359 | putenv(*curr++); |
| 360 | } |
| 361 | next: |
| 362 | opt_name += strlen(opt_name) + 1; |
| 363 | i++; |
| 364 | } |
| 365 | if (packet->siaddr_nip) { |
| 366 | *curr = xmalloc(sizeof("siaddr=255.255.255.255")); |
| 367 | sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip); |
| 368 | putenv(*curr++); |
| 369 | } |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 370 | if (!(overload & FILE_FIELD) && packet->file[0]) { |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 371 | /* watch out for invalid packets */ |
| 372 | *curr = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file); |
| 373 | putenv(*curr++); |
| 374 | } |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 375 | if (!(overload & SNAME_FIELD) && packet->sname[0]) { |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 376 | /* watch out for invalid packets */ |
| 377 | *curr = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname); |
| 378 | putenv(*curr++); |
| 379 | } |
Nigel Hathaway | c37d4c6 | 2011-04-26 02:38:29 +0200 | [diff] [blame] | 380 | /* Handle unknown options */ |
| 381 | for (i = 0; i < 256;) { |
| 382 | BITMAP bitmap = FOUND_OPTS(i); |
| 383 | if (!bitmap) { |
| 384 | i += BBITS; |
| 385 | continue; |
| 386 | } |
| 387 | if (bitmap & BMASK(i)) { |
| 388 | unsigned len, ofs; |
| 389 | |
| 390 | temp = udhcp_get_option(packet, i); |
| 391 | /* udhcp_get_option returns ptr to data portion, |
| 392 | * need to go back to get len |
| 393 | */ |
| 394 | len = temp[-OPT_DATA + OPT_LEN]; |
| 395 | *curr = xmalloc(sizeof("optNNN=") + 1 + len*2); |
| 396 | ofs = sprintf(*curr, "opt%u=", i); |
| 397 | bin2hex(*curr + ofs, (void*) temp, len)[0] = '\0'; |
| 398 | putenv(*curr++); |
| 399 | } |
| 400 | i++; |
| 401 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 402 | return envp; |
| 403 | } |
| 404 | |
| 405 | /* Call a script with a par file and env vars */ |
| 406 | static void udhcp_run_script(struct dhcp_packet *packet, const char *name) |
| 407 | { |
| 408 | char **envp, **curr; |
| 409 | char *argv[3]; |
| 410 | |
| 411 | if (client_config.script == NULL) |
| 412 | return; |
| 413 | |
| 414 | envp = fill_envp(packet); |
| 415 | |
| 416 | /* call script */ |
| 417 | log1("Executing %s %s", client_config.script, name); |
| 418 | argv[0] = (char*) client_config.script; |
| 419 | argv[1] = (char*) name; |
| 420 | argv[2] = NULL; |
| 421 | spawn_and_wait(argv); |
| 422 | |
| 423 | for (curr = envp; *curr; curr++) { |
| 424 | log2(" %s", *curr); |
Denys Vlasenko | dd8adde | 2010-06-24 05:00:50 +0200 | [diff] [blame] | 425 | bb_unsetenv_and_free(*curr); |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 426 | } |
| 427 | free(envp); |
| 428 | } |
| 429 | |
| 430 | |
| 431 | /*** Sending/receiving packets ***/ |
| 432 | |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 433 | static ALWAYS_INLINE uint32_t random_xid(void) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 434 | { |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 435 | return rand(); |
| 436 | } |
| 437 | |
| 438 | /* Initialize the packet with the proper defaults */ |
| 439 | static void init_packet(struct dhcp_packet *packet, char type) |
| 440 | { |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 441 | uint16_t secs; |
| 442 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 443 | /* Fill in: op, htype, hlen, cookie fields; message type option: */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 444 | udhcp_init_header(packet, type); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 445 | |
| 446 | packet->xid = random_xid(); |
| 447 | |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 448 | client_config.last_secs = monotonic_sec(); |
| 449 | if (client_config.first_secs == 0) |
| 450 | client_config.first_secs = client_config.last_secs; |
| 451 | secs = client_config.last_secs - client_config.first_secs; |
| 452 | packet->secs = htons(secs); |
| 453 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 454 | memcpy(packet->chaddr, client_config.client_mac, 6); |
| 455 | if (client_config.clientid) |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 456 | udhcp_add_binary_option(packet, client_config.clientid); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 457 | } |
| 458 | |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 459 | static void add_client_options(struct dhcp_packet *packet) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 460 | { |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 461 | uint8_t c; |
| 462 | int i, end, len; |
| 463 | |
| 464 | 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] | 465 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 466 | /* 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] | 467 | * 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] | 468 | * No bounds checking because it goes towards the head of the packet. */ |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 469 | end = udhcp_end_option(packet->options); |
| 470 | len = 0; |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 471 | for (i = 0; (c = dhcp_optflags[i].code) != 0; i++) { |
| 472 | if (( (dhcp_optflags[i].flags & OPTION_REQ) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 473 | && !client_config.no_default_options |
| 474 | ) |
| 475 | || (client_config.opt_mask[c >> 3] & (1 << (c & 7))) |
| 476 | ) { |
| 477 | packet->options[end + OPT_DATA + len] = c; |
| 478 | len++; |
| 479 | } |
| 480 | } |
| 481 | if (len) { |
| 482 | packet->options[end + OPT_CODE] = DHCP_PARAM_REQ; |
| 483 | packet->options[end + OPT_LEN] = len; |
| 484 | packet->options[end + OPT_DATA + len] = DHCP_END; |
| 485 | } |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 486 | |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 487 | if (client_config.vendorclass) |
| 488 | udhcp_add_binary_option(packet, client_config.vendorclass); |
| 489 | if (client_config.hostname) |
| 490 | udhcp_add_binary_option(packet, client_config.hostname); |
| 491 | if (client_config.fqdn) |
| 492 | udhcp_add_binary_option(packet, client_config.fqdn); |
| 493 | |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 494 | /* Request broadcast replies if we have no IP addr */ |
| 495 | if ((option_mask32 & OPT_B) && packet->ciaddr == 0) |
| 496 | packet->flags |= htons(BROADCAST_FLAG); |
| 497 | |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 498 | /* Add -x options if any */ |
| 499 | { |
| 500 | struct option_set *curr = client_config.options; |
| 501 | while (curr) { |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 502 | udhcp_add_binary_option(packet, curr->data); |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 503 | curr = curr->next; |
| 504 | } |
| 505 | // if (client_config.sname) |
| 506 | // strncpy((char*)packet->sname, client_config.sname, sizeof(packet->sname) - 1); |
| 507 | // if (client_config.boot_file) |
| 508 | // strncpy((char*)packet->file, client_config.boot_file, sizeof(packet->file) - 1); |
| 509 | } |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | /* RFC 2131 |
| 513 | * 4.4.4 Use of broadcast and unicast |
| 514 | * |
| 515 | * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM |
| 516 | * messages, unless the client knows the address of a DHCP server. |
| 517 | * The client unicasts DHCPRELEASE messages to the server. Because |
| 518 | * the client is declining the use of the IP address supplied by the server, |
| 519 | * the client broadcasts DHCPDECLINE messages. |
| 520 | * |
| 521 | * When the DHCP client knows the address of a DHCP server, in either |
| 522 | * INIT or REBOOTING state, the client may use that address |
| 523 | * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address. |
| 524 | * The client may also use unicast to send DHCPINFORM messages |
| 525 | * to a known DHCP server. If the client receives no response to DHCP |
| 526 | * messages sent to the IP address of a known DHCP server, the DHCP |
| 527 | * client reverts to using the IP broadcast address. |
| 528 | */ |
| 529 | |
| 530 | static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet) |
| 531 | { |
| 532 | return udhcp_send_raw_packet(packet, |
| 533 | /*src*/ INADDR_ANY, CLIENT_PORT, |
| 534 | /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR, |
| 535 | client_config.ifindex); |
| 536 | } |
| 537 | |
| 538 | /* Broadcast a DHCP discover packet to the network, with an optionally requested IP */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 539 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 540 | static NOINLINE int send_discover(uint32_t xid, uint32_t requested) |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 541 | { |
| 542 | struct dhcp_packet packet; |
| 543 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 544 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 545 | * random xid field (we override it below), |
| 546 | * client-id option (unless -C), message type option: |
| 547 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 548 | init_packet(&packet, DHCPDISCOVER); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 549 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 550 | packet.xid = xid; |
| 551 | if (requested) |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 552 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 553 | |
| 554 | /* Add options: maxsize, |
| 555 | * optionally: hostname, fqdn, vendorclass, |
| 556 | * "param req" option according to -O, options specified with -x |
| 557 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 558 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 559 | |
| 560 | bb_info_msg("Sending discover..."); |
| 561 | return raw_bcast_from_client_config_ifindex(&packet); |
| 562 | } |
| 563 | |
| 564 | /* Broadcast a DHCP request message */ |
| 565 | /* RFC 2131 3.1 paragraph 3: |
| 566 | * "The client _broadcasts_ a DHCPREQUEST message..." |
| 567 | */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 568 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 569 | 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] | 570 | { |
| 571 | struct dhcp_packet packet; |
| 572 | struct in_addr addr; |
| 573 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 574 | /* |
| 575 | * RFC 2131 4.3.2 DHCPREQUEST message |
| 576 | * ... |
| 577 | * If the DHCPREQUEST message contains a 'server identifier' |
| 578 | * option, the message is in response to a DHCPOFFER message. |
| 579 | * Otherwise, the message is a request to verify or extend an |
| 580 | * existing lease. If the client uses a 'client identifier' |
| 581 | * in a DHCPREQUEST message, it MUST use that same 'client identifier' |
| 582 | * in all subsequent messages. If the client included a list |
| 583 | * of requested parameters in a DHCPDISCOVER message, it MUST |
| 584 | * include that list in all subsequent messages. |
| 585 | */ |
| 586 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 587 | * random xid field (we override it below), |
| 588 | * client-id option (unless -C), message type option: |
| 589 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 590 | init_packet(&packet, DHCPREQUEST); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 591 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 592 | packet.xid = xid; |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 593 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 594 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 595 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 596 | |
| 597 | /* Add options: maxsize, |
| 598 | * optionally: hostname, fqdn, vendorclass, |
| 599 | * "param req" option according to -O, and options specified with -x |
| 600 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 601 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 602 | |
| 603 | addr.s_addr = requested; |
| 604 | bb_info_msg("Sending select for %s...", inet_ntoa(addr)); |
| 605 | return raw_bcast_from_client_config_ifindex(&packet); |
| 606 | } |
| 607 | |
| 608 | /* Unicast or broadcast a DHCP renew message */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 609 | /* NOINLINE: limit stack usage in caller */ |
| 610 | 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] | 611 | { |
| 612 | struct dhcp_packet packet; |
| 613 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 614 | /* |
| 615 | * RFC 2131 4.3.2 DHCPREQUEST message |
| 616 | * ... |
| 617 | * DHCPREQUEST generated during RENEWING state: |
| 618 | * |
| 619 | * 'server identifier' MUST NOT be filled in, 'requested IP address' |
| 620 | * option MUST NOT be filled in, 'ciaddr' MUST be filled in with |
| 621 | * client's IP address. In this situation, the client is completely |
| 622 | * configured, and is trying to extend its lease. This message will |
| 623 | * be unicast, so no relay agents will be involved in its |
| 624 | * transmission. Because 'giaddr' is therefore not filled in, the |
| 625 | * DHCP server will trust the value in 'ciaddr', and use it when |
| 626 | * replying to the client. |
| 627 | */ |
| 628 | /* Fill in: op, htype, hlen, cookie, chaddr fields, |
| 629 | * random xid field (we override it below), |
| 630 | * client-id option (unless -C), message type option: |
| 631 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 632 | init_packet(&packet, DHCPREQUEST); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 633 | |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 634 | packet.xid = xid; |
| 635 | packet.ciaddr = ciaddr; |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 636 | |
| 637 | /* Add options: maxsize, |
| 638 | * optionally: hostname, fqdn, vendorclass, |
| 639 | * "param req" option according to -O, and options specified with -x |
| 640 | */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 641 | add_client_options(&packet); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 642 | |
| 643 | bb_info_msg("Sending renew..."); |
| 644 | if (server) |
| 645 | return udhcp_send_kernel_packet(&packet, |
| 646 | ciaddr, CLIENT_PORT, |
| 647 | server, SERVER_PORT); |
| 648 | return raw_bcast_from_client_config_ifindex(&packet); |
| 649 | } |
| 650 | |
| 651 | #if ENABLE_FEATURE_UDHCPC_ARPING |
| 652 | /* Broadcast a DHCP decline message */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 653 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 654 | 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] | 655 | { |
| 656 | struct dhcp_packet packet; |
| 657 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 658 | /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, |
| 659 | * client-id option (unless -C), message type option: |
| 660 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 661 | init_packet(&packet, DHCPDECLINE); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 662 | |
| 663 | /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client, |
| 664 | * but in case the server is buggy and wants DHCPDECLINE's xid |
| 665 | * to match the xid which started entire handshake, |
| 666 | * we use the same xid we used in initial DHCPDISCOVER: |
| 667 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 668 | packet.xid = xid; |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 669 | /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */ |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 670 | udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 671 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 672 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 673 | |
| 674 | bb_info_msg("Sending decline..."); |
| 675 | return raw_bcast_from_client_config_ifindex(&packet); |
| 676 | } |
| 677 | #endif |
| 678 | |
| 679 | /* Unicast a DHCP release message */ |
| 680 | static int send_release(uint32_t server, uint32_t ciaddr) |
| 681 | { |
| 682 | struct dhcp_packet packet; |
| 683 | |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 684 | /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, |
| 685 | * client-id option (unless -C), message type option: |
| 686 | */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 687 | init_packet(&packet, DHCPRELEASE); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 688 | |
| 689 | /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 690 | packet.ciaddr = ciaddr; |
| 691 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 692 | udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 693 | |
| 694 | bb_info_msg("Sending release..."); |
| 695 | return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT); |
| 696 | } |
| 697 | |
| 698 | /* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 699 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 700 | static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd) |
| 701 | { |
| 702 | int bytes; |
| 703 | struct ip_udp_dhcp_packet packet; |
| 704 | uint16_t check; |
| 705 | |
| 706 | memset(&packet, 0, sizeof(packet)); |
| 707 | bytes = safe_read(fd, &packet, sizeof(packet)); |
| 708 | if (bytes < 0) { |
| 709 | log1("Packet read error, ignoring"); |
| 710 | /* NB: possible down interface, etc. Caller should pause. */ |
| 711 | return bytes; /* returns -1 */ |
| 712 | } |
| 713 | |
| 714 | if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) { |
| 715 | log1("Packet is too short, ignoring"); |
| 716 | return -2; |
| 717 | } |
| 718 | |
| 719 | if (bytes < ntohs(packet.ip.tot_len)) { |
| 720 | /* packet is bigger than sizeof(packet), we did partial read */ |
| 721 | log1("Oversized packet, ignoring"); |
| 722 | return -2; |
| 723 | } |
| 724 | |
| 725 | /* ignore any extra garbage bytes */ |
| 726 | bytes = ntohs(packet.ip.tot_len); |
| 727 | |
| 728 | /* make sure its the right packet for us, and that it passes sanity checks */ |
| 729 | if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION |
| 730 | || packet.ip.ihl != (sizeof(packet.ip) >> 2) |
| 731 | || packet.udp.dest != htons(CLIENT_PORT) |
| 732 | /* || bytes > (int) sizeof(packet) - can't happen */ |
| 733 | || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip)) |
| 734 | ) { |
| 735 | log1("Unrelated/bogus packet, ignoring"); |
| 736 | return -2; |
| 737 | } |
| 738 | |
| 739 | /* verify IP checksum */ |
| 740 | check = packet.ip.check; |
| 741 | packet.ip.check = 0; |
Baruch Siach | e8f3633 | 2011-09-07 17:52:37 +0200 | [diff] [blame^] | 742 | if (check != inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip))) { |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 743 | log1("Bad IP header checksum, ignoring"); |
| 744 | return -2; |
| 745 | } |
| 746 | |
| 747 | /* verify UDP checksum. IP header has to be modified for this */ |
| 748 | memset(&packet.ip, 0, offsetof(struct iphdr, protocol)); |
| 749 | /* ip.xx fields which are not memset: protocol, check, saddr, daddr */ |
| 750 | packet.ip.tot_len = packet.udp.len; /* yes, this is needed */ |
| 751 | check = packet.udp.check; |
| 752 | packet.udp.check = 0; |
Baruch Siach | e8f3633 | 2011-09-07 17:52:37 +0200 | [diff] [blame^] | 753 | if (check && check != inet_cksum((uint16_t *)&packet, bytes)) { |
Denys Vlasenko | 501e35c | 2010-03-22 13:43:12 +0100 | [diff] [blame] | 754 | log1("Packet with bad UDP checksum received, ignoring"); |
| 755 | return -2; |
| 756 | } |
| 757 | |
| 758 | memcpy(dhcp_pkt, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp))); |
| 759 | |
| 760 | if (dhcp_pkt->cookie != htonl(DHCP_MAGIC)) { |
| 761 | bb_info_msg("Packet with bad magic, ignoring"); |
| 762 | return -2; |
| 763 | } |
| 764 | log1("Got valid DHCP packet"); |
| 765 | udhcp_dump_packet(dhcp_pkt); |
| 766 | return bytes - (sizeof(packet.ip) + sizeof(packet.udp)); |
| 767 | } |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 768 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 769 | |
| 770 | /*** Main ***/ |
| 771 | |
| 772 | static int sockfd = -1; |
| 773 | |
| 774 | #define LISTEN_NONE 0 |
| 775 | #define LISTEN_KERNEL 1 |
| 776 | #define LISTEN_RAW 2 |
| 777 | static smallint listen_mode; |
| 778 | |
| 779 | /* initial state: (re)start DHCP negotiation */ |
| 780 | #define INIT_SELECTING 0 |
| 781 | /* discover was sent, DHCPOFFER reply received */ |
| 782 | #define REQUESTING 1 |
| 783 | /* select/renew was sent, DHCPACK reply received */ |
| 784 | #define BOUND 2 |
| 785 | /* half of lease passed, want to renew it by sending unicast renew requests */ |
| 786 | #define RENEWING 3 |
| 787 | /* renew requests were not answered, lease is almost over, send broadcast renew */ |
| 788 | #define REBINDING 4 |
| 789 | /* manually requested renew (SIGUSR1) */ |
| 790 | #define RENEW_REQUESTED 5 |
| 791 | /* release, possibly manually requested (SIGUSR2) */ |
| 792 | #define RELEASED 6 |
| 793 | static smallint state; |
| 794 | |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 795 | static int udhcp_raw_socket(int ifindex) |
| 796 | { |
| 797 | int fd; |
| 798 | struct sockaddr_ll sock; |
| 799 | |
| 800 | /* |
| 801 | * Comment: |
| 802 | * |
| 803 | * I've selected not to see LL header, so BPF doesn't see it, too. |
| 804 | * The filter may also pass non-IP and non-ARP packets, but we do |
| 805 | * a more complete check when receiving the message in userspace. |
| 806 | * |
| 807 | * and filter shamelessly stolen from: |
| 808 | * |
| 809 | * http://www.flamewarmaster.de/software/dhcpclient/ |
| 810 | * |
| 811 | * There are a few other interesting ideas on that page (look under |
| 812 | * "Motivation"). Use of netlink events is most interesting. Think |
| 813 | * of various network servers listening for events and reconfiguring. |
| 814 | * That would obsolete sending HUP signals and/or make use of restarts. |
| 815 | * |
| 816 | * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>. |
| 817 | * License: GPL v2. |
| 818 | * |
| 819 | * TODO: make conditional? |
| 820 | */ |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 821 | static const struct sock_filter filter_instr[] = { |
Vladislav Grishenko | 713e6d7 | 2011-02-14 04:50:30 +0100 | [diff] [blame] | 822 | /* load 9th byte (protocol) */ |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 823 | BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9), |
Vladislav Grishenko | 713e6d7 | 2011-02-14 04:50:30 +0100 | [diff] [blame] | 824 | /* jump to L1 if it is IPPROTO_UDP, else to L4 */ |
| 825 | BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6), |
| 826 | /* L1: load halfword from offset 6 (flags and frag offset) */ |
| 827 | BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6), |
| 828 | /* jump to L4 if any bits in frag offset field are set, else to L2 */ |
| 829 | BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0), |
| 830 | /* L2: skip IP header (load index reg with header len) */ |
| 831 | BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), |
| 832 | /* load udp destination port from halfword[header_len + 2] */ |
| 833 | BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2), |
| 834 | /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */ |
| 835 | BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1), |
| 836 | /* L3: accept packet */ |
| 837 | BPF_STMT(BPF_RET|BPF_K, 0xffffffff), |
| 838 | /* L4: discard packet */ |
| 839 | BPF_STMT(BPF_RET|BPF_K, 0), |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 840 | }; |
| 841 | static const struct sock_fprog filter_prog = { |
| 842 | .len = sizeof(filter_instr) / sizeof(filter_instr[0]), |
| 843 | /* casting const away: */ |
| 844 | .filter = (struct sock_filter *) filter_instr, |
| 845 | }; |
| 846 | |
| 847 | log1("Opening raw socket on ifindex %d", ifindex); //log2? |
| 848 | |
| 849 | fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)); |
| 850 | log1("Got raw socket fd %d", fd); //log2? |
| 851 | |
Vladislav Grishenko | 713e6d7 | 2011-02-14 04:50:30 +0100 | [diff] [blame] | 852 | sock.sll_family = AF_PACKET; |
| 853 | sock.sll_protocol = htons(ETH_P_IP); |
| 854 | sock.sll_ifindex = ifindex; |
| 855 | xbind(fd, (struct sockaddr *) &sock, sizeof(sock)); |
| 856 | |
| 857 | if (CLIENT_PORT == 68) { |
| 858 | /* Use only if standard port is in use */ |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 859 | /* Ignoring error (kernel may lack support for this) */ |
| 860 | if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog, |
| 861 | sizeof(filter_prog)) >= 0) |
| 862 | log1("Attached filter to raw socket fd %d", fd); // log? |
| 863 | } |
| 864 | |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 865 | log1("Created raw socket"); |
| 866 | |
| 867 | return fd; |
| 868 | } |
| 869 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 870 | static void change_listen_mode(int new_mode) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 871 | { |
Denys Vlasenko | 4945ed3 | 2009-06-17 11:58:11 +0200 | [diff] [blame] | 872 | log1("Entering listen mode: %s", |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 873 | new_mode != LISTEN_NONE |
| 874 | ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw") |
| 875 | : "none" |
| 876 | ); |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 877 | |
| 878 | listen_mode = new_mode; |
Denis Vlasenko | fbd2918 | 2007-04-07 01:05:47 +0000 | [diff] [blame] | 879 | if (sockfd >= 0) { |
| 880 | close(sockfd); |
| 881 | sockfd = -1; |
| 882 | } |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 883 | if (new_mode == LISTEN_KERNEL) |
| 884 | sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface); |
| 885 | else if (new_mode != LISTEN_NONE) |
| 886 | sockfd = udhcp_raw_socket(client_config.ifindex); |
Denys Vlasenko | 6b24d53 | 2010-03-22 13:42:13 +0100 | [diff] [blame] | 887 | /* else LISTEN_NONE: sockfd stays closed */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 890 | /* Called only on SIGUSR1 */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 891 | static void perform_renew(void) |
| 892 | { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 893 | bb_info_msg("Performing a DHCP renew"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 894 | switch (state) { |
| 895 | case BOUND: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 896 | change_listen_mode(LISTEN_KERNEL); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 897 | case RENEWING: |
| 898 | case REBINDING: |
| 899 | state = RENEW_REQUESTED; |
| 900 | break; |
| 901 | case RENEW_REQUESTED: /* impatient are we? fine, square 1 */ |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 902 | udhcp_run_script(NULL, "deconfig"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 903 | case REQUESTING: |
| 904 | case RELEASED: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 905 | change_listen_mode(LISTEN_RAW); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 906 | state = INIT_SELECTING; |
| 907 | break; |
| 908 | case INIT_SELECTING: |
| 909 | break; |
| 910 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 911 | } |
| 912 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 913 | static void perform_release(uint32_t requested_ip, uint32_t server_addr) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 914 | { |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 915 | char buffer[sizeof("255.255.255.255")]; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 916 | struct in_addr temp_addr; |
| 917 | |
| 918 | /* send release packet */ |
| 919 | if (state == BOUND || state == RENEWING || state == REBINDING) { |
| 920 | temp_addr.s_addr = server_addr; |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 921 | strcpy(buffer, inet_ntoa(temp_addr)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 922 | temp_addr.s_addr = requested_ip; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 923 | bb_info_msg("Unicasting a release of %s to %s", |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 924 | inet_ntoa(temp_addr), buffer); |
| 925 | send_release(server_addr, requested_ip); /* unicast */ |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 926 | udhcp_run_script(NULL, "deconfig"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 927 | } |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 928 | bb_info_msg("Entering released state"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 929 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 930 | change_listen_mode(LISTEN_NONE); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 931 | state = RELEASED; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 932 | } |
| 933 | |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 934 | static uint8_t* alloc_dhcp_option(int code, const char *str, int extra) |
| 935 | { |
| 936 | uint8_t *storage; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 937 | int len = strnlen(str, 255); |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 938 | storage = xzalloc(len + extra + OPT_DATA); |
| 939 | storage[OPT_CODE] = code; |
| 940 | storage[OPT_LEN] = len + extra; |
| 941 | memcpy(storage + extra + OPT_DATA, str, len); |
| 942 | return storage; |
| 943 | } |
| 944 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 945 | #if BB_MMU |
| 946 | static void client_background(void) |
| 947 | { |
| 948 | bb_daemonize(0); |
| 949 | logmode &= ~LOGMODE_STDIO; |
| 950 | /* rewrite pidfile, as our pid is different now */ |
| 951 | write_pidfile(client_config.pidfile); |
| 952 | } |
| 953 | #endif |
| 954 | |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 955 | //usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 956 | //usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__ |
| 957 | //usage:#else |
| 958 | //usage:# define IF_UDHCP_VERBOSE(...) |
| 959 | //usage:#endif |
| 960 | //usage:#define udhcpc_trivial_usage |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 961 | //usage: "[-fbnq"IF_UDHCP_VERBOSE("v")"oCRB] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE]\n" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 962 | //usage: " [-H HOSTNAME] [-V VENDOR] [-x OPT:VAL]... [-O OPT]..." IF_FEATURE_UDHCP_PORT(" [-P N]") |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 963 | //usage:#define udhcpc_full_usage "\n" |
| 964 | //usage: IF_LONG_OPTS( |
| 965 | //usage: "\n -i,--interface IFACE Interface to use (default eth0)" |
| 966 | //usage: "\n -p,--pidfile FILE Create pidfile" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 967 | //usage: "\n -s,--script PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 968 | //usage: "\n -B,--broadcast Request broadcast replies" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 969 | //usage: "\n -t,--retries N Send up to N discover packets" |
| 970 | //usage: "\n -T,--timeout N Pause between packets (default 3 seconds)" |
| 971 | //usage: "\n -A,--tryagain N Wait N seconds after failure (default 20)" |
| 972 | //usage: "\n -f,--foreground Run in foreground" |
| 973 | //usage: USE_FOR_MMU( |
| 974 | //usage: "\n -b,--background Background if lease is not obtained" |
| 975 | //usage: ) |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 976 | //usage: "\n -n,--now Exit if lease is not obtained" |
| 977 | //usage: "\n -q,--quit Exit after obtaining lease" |
| 978 | //usage: "\n -R,--release Release IP on exit" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 979 | //usage: "\n -S,--syslog Log to syslog too" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 980 | //usage: IF_FEATURE_UDHCP_PORT( |
| 981 | //usage: "\n -P,--client-port N Use port N (default 68)" |
| 982 | //usage: ) |
| 983 | //usage: IF_FEATURE_UDHCPC_ARPING( |
| 984 | //usage: "\n -a,--arping Use arping to validate offered address" |
| 985 | //usage: ) |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 986 | //usage: "\n -O,--request-option OPT Request option OPT from server (cumulative)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 987 | //usage: "\n -o,--no-default-options Don't request any options (unless -O is given)" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 988 | //usage: "\n -r,--request IP Request this IP address" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 989 | //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 990 | //usage: "\n Examples of string, numeric, and hex byte opts:" |
| 991 | //usage: "\n -x hostname:bbox - option 12" |
| 992 | //usage: "\n -x lease:3600 - option 51 (lease time)" |
| 993 | //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 994 | //usage: "\n -F,--fqdn NAME Ask server to update DNS mapping for NAME" |
| 995 | //usage: "\n -H,-h,--hostname NAME Send NAME as client hostname (default none)" |
| 996 | //usage: "\n -V,--vendorclass VENDOR Vendor identifier (default 'udhcp VERSION')" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 997 | //usage: "\n -C,--clientid-none Don't send MAC as client identifier" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 998 | //usage: IF_UDHCP_VERBOSE( |
| 999 | //usage: "\n -v Verbose" |
| 1000 | //usage: ) |
| 1001 | //usage: ) |
| 1002 | //usage: IF_NOT_LONG_OPTS( |
| 1003 | //usage: "\n -i IFACE Interface to use (default eth0)" |
| 1004 | //usage: "\n -p FILE Create pidfile" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1005 | //usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 1006 | //usage: "\n -B Request broadcast replies" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1007 | //usage: "\n -t N Send up to N discover packets" |
| 1008 | //usage: "\n -T N Pause between packets (default 3 seconds)" |
| 1009 | //usage: "\n -A N Wait N seconds (default 20) after failure" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1010 | //usage: "\n -f Run in foreground" |
| 1011 | //usage: USE_FOR_MMU( |
| 1012 | //usage: "\n -b Background if lease is not obtained" |
| 1013 | //usage: ) |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1014 | //usage: "\n -n Exit if lease is not obtained" |
| 1015 | //usage: "\n -q Exit after obtaining lease" |
| 1016 | //usage: "\n -R Release IP on exit" |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1017 | //usage: "\n -S Log to syslog too" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1018 | //usage: IF_FEATURE_UDHCP_PORT( |
| 1019 | //usage: "\n -P N Use port N (default 68)" |
| 1020 | //usage: ) |
| 1021 | //usage: IF_FEATURE_UDHCPC_ARPING( |
| 1022 | //usage: "\n -a Use arping to validate offered address" |
| 1023 | //usage: ) |
Denys Vlasenko | c59e06e | 2010-10-20 16:10:59 +0200 | [diff] [blame] | 1024 | //usage: "\n -O OPT Request option OPT from server (cumulative)" |
| 1025 | //usage: "\n -o Don't request any options (unless -O is given)" |
| 1026 | //usage: "\n -r IP Request this IP address" |
| 1027 | //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" |
| 1028 | //usage: "\n Examples of string, numeric, and hex byte opts:" |
| 1029 | //usage: "\n -x hostname:bbox - option 12" |
| 1030 | //usage: "\n -x lease:3600 - option 51 (lease time)" |
| 1031 | //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1032 | //usage: "\n -F NAME Ask server to update DNS mapping for NAME" |
| 1033 | //usage: "\n -H,-h NAME Send NAME as client hostname (default none)" |
| 1034 | //usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1035 | //usage: "\n -C Don't send MAC as client identifier" |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1036 | //usage: IF_UDHCP_VERBOSE( |
| 1037 | //usage: "\n -v Verbose" |
| 1038 | //usage: ) |
| 1039 | //usage: ) |
Denys Vlasenko | 8993c3f | 2010-12-25 06:21:54 +0100 | [diff] [blame] | 1040 | //usage: "\nSignals:" |
| 1041 | //usage: "\n USR1 Renew current lease" |
| 1042 | //usage: "\n USR2 Release current lease" |
| 1043 | |
Denys Vlasenko | 9e244c7 | 2010-10-20 01:38:56 +0200 | [diff] [blame] | 1044 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1045 | int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1046 | int udhcpc_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1047 | { |
| 1048 | uint8_t *temp, *message; |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1049 | const char *str_V, *str_h, *str_F, *str_r; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1050 | IF_FEATURE_UDHCP_PORT(char *str_P;) |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1051 | void *clientid_mac_ptr; |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1052 | llist_t *list_O = NULL; |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1053 | llist_t *list_x = NULL; |
Denis Vlasenko | 68af8e7 | 2007-11-22 21:41:14 +0000 | [diff] [blame] | 1054 | int tryagain_timeout = 20; |
| 1055 | int discover_timeout = 3; |
| 1056 | int discover_retries = 3; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1057 | uint32_t server_addr = server_addr; /* for compiler */ |
| 1058 | uint32_t requested_ip = 0; |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 1059 | uint32_t xid = 0; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1060 | uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */ |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1061 | int packet_num; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1062 | int timeout; /* must be signed */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1063 | unsigned already_waited_sec; |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1064 | unsigned opt; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1065 | int max_fd; |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1066 | int retval; |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1067 | struct timeval tv; |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 1068 | struct dhcp_packet packet; |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1069 | fd_set rfds; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1070 | |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1071 | /* Default options */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1072 | IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;) |
| 1073 | IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;) |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1074 | client_config.interface = "eth0"; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1075 | client_config.script = CONFIG_UDHCPC_DEFAULT_SCRIPT; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1076 | str_V = "udhcp "BB_VER; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1077 | |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1078 | /* Parse command line */ |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1079 | /* O,x: list; -T,-t,-A take numeric param */ |
| 1080 | opt_complementary = "O::x::T+:t+:A+" |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1081 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 1082 | ":vv" |
| 1083 | #endif |
| 1084 | ; |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 1085 | IF_LONG_OPTS(applet_long_options = udhcpc_longopts;) |
Keith Young | e6bb8d3 | 2011-03-07 03:18:46 +0100 | [diff] [blame] | 1086 | 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] | 1087 | USE_FOR_MMU("b") |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1088 | IF_FEATURE_UDHCPC_ARPING("a") |
| 1089 | IF_FEATURE_UDHCP_PORT("P:") |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1090 | "v" |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1091 | , &str_V, &str_h, &str_h, &str_F |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1092 | , &client_config.interface, &client_config.pidfile, &str_r /* i,p */ |
| 1093 | , &client_config.script /* s */ |
| 1094 | , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */ |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1095 | , &list_O |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1096 | , &list_x |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1097 | IF_FEATURE_UDHCP_PORT(, &str_P) |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1098 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 1099 | , &dhcp_verbose |
| 1100 | #endif |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1101 | ); |
Denis Vlasenko | 68af8e7 | 2007-11-22 21:41:14 +0000 | [diff] [blame] | 1102 | if (opt & (OPT_h|OPT_H)) |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1103 | client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0); |
| 1104 | if (opt & OPT_F) { |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1105 | /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1106 | client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3); |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1107 | /* Flag bits: 0000NEOS |
| 1108 | * S: 1 = Client requests server to update A RR in DNS as well as PTR |
| 1109 | * O: 1 = Server indicates to client that DNS has been updated regardless |
| 1110 | * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>, |
| 1111 | * not "host.domain.com". Format 0 is obsolete. |
| 1112 | * N: 1 = Client requests server to not update DNS (S must be 0 then) |
| 1113 | * Two [0] bytes which follow are deprecated and must be 0. |
| 1114 | */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1115 | client_config.fqdn[OPT_DATA + 0] = 0x1; |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1116 | /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */ |
| 1117 | /*client_config.fqdn[OPT_DATA + 2] = 0; */ |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1118 | } |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 1119 | if (opt & OPT_r) |
| 1120 | requested_ip = inet_addr(str_r); |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 1121 | #if ENABLE_FEATURE_UDHCP_PORT |
| 1122 | if (opt & OPT_P) { |
| 1123 | CLIENT_PORT = xatou16(str_P); |
| 1124 | SERVER_PORT = CLIENT_PORT - 1; |
| 1125 | } |
| 1126 | #endif |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 1127 | if (opt & OPT_o) |
| 1128 | client_config.no_default_options = 1; |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1129 | while (list_O) { |
Denis Vlasenko | 18c9302 | 2008-08-27 22:29:43 +0000 | [diff] [blame] | 1130 | char *optstr = llist_pop(&list_O); |
Denys Vlasenko | 5d3aace | 2011-06-04 05:07:16 +0200 | [diff] [blame] | 1131 | unsigned n = bb_strtou(optstr, NULL, 0); |
| 1132 | if (errno || n > 254) { |
| 1133 | n = udhcp_option_idx(optstr); |
| 1134 | n = dhcp_optflags[n].code; |
| 1135 | } |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1136 | client_config.opt_mask[n >> 3] |= 1 << (n & 7); |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 1137 | } |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1138 | while (list_x) { |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1139 | char *optstr = llist_pop(&list_x); |
| 1140 | char *colon = strchr(optstr, ':'); |
| 1141 | if (colon) |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1142 | *colon = ' '; |
Denys Vlasenko | 9c0ea86 | 2010-04-04 02:12:03 +0200 | [diff] [blame] | 1143 | /* now it looks similar to udhcpd's config file line: |
| 1144 | * "optname optval", using the common routine: */ |
Denys Vlasenko | 7e6add1 | 2010-03-25 20:32:38 +0100 | [diff] [blame] | 1145 | udhcp_str2optset(optstr, &client_config.options); |
| 1146 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1147 | |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 1148 | if (udhcp_read_interface(client_config.interface, |
| 1149 | &client_config.ifindex, |
| 1150 | NULL, |
| 1151 | client_config.client_mac) |
| 1152 | ) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1153 | return 1; |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 1154 | } |
| 1155 | |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1156 | clientid_mac_ptr = NULL; |
Denys Vlasenko | 1cbdc03 | 2010-10-20 01:42:37 +0200 | [diff] [blame] | 1157 | if (!(opt & OPT_C) && !udhcp_find_option(client_config.options, DHCP_CLIENT_ID)) { |
| 1158 | /* not suppressed and not set, set the default client ID */ |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1159 | client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7); |
| 1160 | client_config.clientid[OPT_DATA] = 1; /* type: ethernet */ |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1161 | clientid_mac_ptr = client_config.clientid + OPT_DATA+1; |
| 1162 | memcpy(clientid_mac_ptr, client_config.client_mac, 6); |
Denys Vlasenko | 87fa216 | 2010-03-20 18:06:23 +0100 | [diff] [blame] | 1163 | } |
| 1164 | if (str_V[0] != '\0') |
| 1165 | client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1166 | #if !BB_MMU |
| 1167 | /* on NOMMU reexec (i.e., background) early */ |
| 1168 | if (!(opt & OPT_f)) { |
| 1169 | bb_daemonize_or_rexec(0 /* flags */, argv); |
Denis Vlasenko | a19e649 | 2009-03-11 14:40:00 +0000 | [diff] [blame] | 1170 | logmode = LOGMODE_NONE; |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1171 | } |
| 1172 | #endif |
| 1173 | if (opt & OPT_S) { |
Denis Vlasenko | 5e4fda0 | 2009-03-08 23:46:48 +0000 | [diff] [blame] | 1174 | openlog(applet_name, LOG_PID, LOG_DAEMON); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1175 | logmode |= LOGMODE_SYSLOG; |
| 1176 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1177 | |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1178 | /* Make sure fd 0,1,2 are open */ |
| 1179 | bb_sanitize_stdio(); |
| 1180 | /* Equivalent of doing a fflush after every \n */ |
| 1181 | setlinebuf(stdout); |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1182 | /* Create pidfile */ |
| 1183 | write_pidfile(client_config.pidfile); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1184 | /* Goes to stdout (unless NOMMU) and possibly syslog */ |
Denis Vlasenko | def8898 | 2007-10-07 17:06:01 +0000 | [diff] [blame] | 1185 | bb_info_msg("%s (v"BB_VER") started", applet_name); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1186 | /* Set up the signal pipe */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1187 | udhcp_sp_setup(); |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 1188 | /* We want random_xid to be random... */ |
| 1189 | srand(monotonic_us()); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1190 | |
| 1191 | state = INIT_SELECTING; |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 1192 | udhcp_run_script(NULL, "deconfig"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1193 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1194 | packet_num = 0; |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 1195 | timeout = 0; |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1196 | already_waited_sec = 0; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1197 | |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1198 | /* Main event loop. select() waits on signal pipe and possibly |
| 1199 | * on sockfd. |
| 1200 | * "continue" statements in code below jump to the top of the loop. |
| 1201 | */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1202 | for (;;) { |
Denis Vlasenko | ec64a57 | 2009-01-14 00:28:03 +0000 | [diff] [blame] | 1203 | /* silence "uninitialized!" warning */ |
| 1204 | unsigned timestamp_before_wait = timestamp_before_wait; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1205 | |
Denis Vlasenko | 517413f | 2008-12-10 11:16:47 +0000 | [diff] [blame] | 1206 | //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode); |
| 1207 | |
| 1208 | /* Was opening raw or udp socket here |
| 1209 | * if (listen_mode != LISTEN_NONE && sockfd < 0), |
| 1210 | * but on fast network renew responses return faster |
| 1211 | * than we open sockets. Thus this code is moved |
| 1212 | * to change_listen_mode(). Thus we open listen socket |
| 1213 | * BEFORE we send renew request (see "case BOUND:"). */ |
| 1214 | |
Denis Vlasenko | fbd2918 | 2007-04-07 01:05:47 +0000 | [diff] [blame] | 1215 | max_fd = udhcp_sp_fd_set(&rfds, sockfd); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1216 | |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1217 | tv.tv_sec = timeout - already_waited_sec; |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1218 | tv.tv_usec = 0; |
Denys Vlasenko | 8d11445 | 2010-03-22 13:44:09 +0100 | [diff] [blame] | 1219 | retval = 0; |
| 1220 | /* If we already timed out, fall through with retval = 0, else... */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1221 | if ((int)tv.tv_sec > 0) { |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1222 | timestamp_before_wait = (unsigned)monotonic_sec(); |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1223 | log1("Waiting on select..."); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1224 | retval = select(max_fd + 1, &rfds, NULL, NULL, &tv); |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1225 | if (retval < 0) { |
| 1226 | /* EINTR? A signal was caught, don't panic */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1227 | if (errno == EINTR) { |
| 1228 | already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1229 | continue; |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1230 | } |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 1231 | /* Else: an error occured, panic! */ |
| 1232 | bb_perror_msg_and_die("select"); |
| 1233 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | /* If timeout dropped to zero, time to become active: |
| 1237 | * resend discover/renew/whatever |
| 1238 | */ |
| 1239 | if (retval == 0) { |
Denys Vlasenko | a5048fa | 2010-10-20 21:38:29 +0200 | [diff] [blame] | 1240 | /* When running on a bridge, the ifindex may have changed |
| 1241 | * (e.g. if member interfaces were added/removed |
| 1242 | * or if the status of the bridge changed). |
| 1243 | * Refresh ifindex and client_mac: |
| 1244 | */ |
Denys Vlasenko | 5d374e9 | 2010-10-20 22:26:38 +0200 | [diff] [blame] | 1245 | if (udhcp_read_interface(client_config.interface, |
| 1246 | &client_config.ifindex, |
| 1247 | NULL, |
| 1248 | client_config.client_mac) |
| 1249 | ) { |
| 1250 | return 1; /* iface is gone? */ |
| 1251 | } |
| 1252 | if (clientid_mac_ptr) |
| 1253 | memcpy(clientid_mac_ptr, client_config.client_mac, 6); |
Denys Vlasenko | a5048fa | 2010-10-20 21:38:29 +0200 | [diff] [blame] | 1254 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 1255 | /* We will restart the wait in any case */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1256 | already_waited_sec = 0; |
| 1257 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1258 | switch (state) { |
| 1259 | case INIT_SELECTING: |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1260 | if (packet_num < discover_retries) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1261 | if (packet_num == 0) |
| 1262 | xid = random_xid(); |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1263 | /* broadcast */ |
| 1264 | send_discover(xid, requested_ip); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1265 | timeout = discover_timeout; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1266 | packet_num++; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1267 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1268 | } |
Denis Vlasenko | cdb0b65 | 2008-09-26 09:34:15 +0000 | [diff] [blame] | 1269 | leasefail: |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1270 | udhcp_run_script(NULL, "leasefail"); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1271 | #if BB_MMU /* -b is not supported on NOMMU */ |
| 1272 | if (opt & OPT_b) { /* background if no lease */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1273 | bb_info_msg("No lease, forking to background"); |
| 1274 | client_background(); |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1275 | /* do not background again! */ |
| 1276 | opt = ((opt & ~OPT_b) | OPT_f); |
| 1277 | } else |
| 1278 | #endif |
| 1279 | if (opt & OPT_n) { /* abort if no lease */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1280 | bb_info_msg("No lease, failing"); |
| 1281 | retval = 1; |
| 1282 | goto ret; |
| 1283 | } |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1284 | /* wait before trying again */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1285 | timeout = tryagain_timeout; |
| 1286 | packet_num = 0; |
| 1287 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1288 | case REQUESTING: |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1289 | if (packet_num < discover_retries) { |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1290 | /* send broadcast select packet */ |
| 1291 | send_select(xid, server_addr, requested_ip); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1292 | timeout = discover_timeout; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1293 | packet_num++; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1294 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1295 | } |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1296 | /* Timed out, go back to init state. |
| 1297 | * "discover...select...discover..." loops |
Denis Vlasenko | 7d9399e | 2008-09-26 22:21:03 +0000 | [diff] [blame] | 1298 | * were seen in the wild. Treat them similarly |
Denis Vlasenko | cdb0b65 | 2008-09-26 09:34:15 +0000 | [diff] [blame] | 1299 | * to "no response to discover" case */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1300 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | 7d9399e | 2008-09-26 22:21:03 +0000 | [diff] [blame] | 1301 | state = INIT_SELECTING; |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1302 | goto leasefail; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1303 | case BOUND: |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1304 | /* 1/2 lease passed, enter renewing state */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1305 | state = RENEWING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1306 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1307 | change_listen_mode(LISTEN_KERNEL); |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1308 | log1("Entering renew state"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1309 | /* fall right through */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1310 | case RENEW_REQUESTED: /* manual (SIGUSR1) renew */ |
| 1311 | case_RENEW_REQUESTED: |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1312 | case RENEWING: |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1313 | if (timeout > 60) { |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1314 | /* send an unicast renew request */ |
| 1315 | /* Sometimes observed to fail (EADDRNOTAVAIL) to bind |
| 1316 | * a new UDP socket for sending inside send_renew. |
| 1317 | * I hazard to guess existing listening socket |
| 1318 | * is somehow conflicting with it, but why is it |
| 1319 | * not deterministic then?! Strange. |
Denys Vlasenko | 753a3ce | 2009-07-19 04:27:10 +0200 | [diff] [blame] | 1320 | * Anyway, it does recover by eventually failing through |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1321 | * into INIT_SELECTING state. |
| 1322 | */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1323 | send_renew(xid, server_addr, requested_ip); |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1324 | timeout >>= 1; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1325 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1326 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1327 | /* Timed out, enter rebinding state */ |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1328 | log1("Entering rebinding state"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1329 | state = REBINDING; |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1330 | /* fall right through */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1331 | case REBINDING: |
Denys Vlasenko | 219757f | 2009-10-08 23:05:46 +0200 | [diff] [blame] | 1332 | /* Switch to bcast receive */ |
| 1333 | change_listen_mode(LISTEN_RAW); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1334 | /* Lease is *really* about to run out, |
| 1335 | * try to find DHCP server using broadcast */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1336 | if (timeout > 0) { |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1337 | /* send a broadcast renew request */ |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1338 | send_renew(xid, 0 /*INADDR_ANY*/, requested_ip); |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1339 | timeout >>= 1; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1340 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1341 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1342 | /* Timed out, enter init state */ |
| 1343 | bb_info_msg("Lease lost, entering init state"); |
| 1344 | udhcp_run_script(NULL, "deconfig"); |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1345 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1346 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1347 | /*timeout = 0; - already is */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1348 | packet_num = 0; |
| 1349 | continue; |
| 1350 | /* case RELEASED: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1351 | } |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1352 | /* yah, I know, *you* say it would never happen */ |
| 1353 | timeout = INT_MAX; |
| 1354 | continue; /* back to main loop */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1355 | } /* if select timed out */ |
| 1356 | |
| 1357 | /* select() didn't timeout, something happened */ |
| 1358 | |
| 1359 | /* Is it a signal? */ |
| 1360 | /* note: udhcp_sp_read checks FD_ISSET before reading */ |
| 1361 | switch (udhcp_sp_read(&rfds)) { |
| 1362 | case SIGUSR1: |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1363 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1364 | perform_renew(); |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1365 | if (state == RENEW_REQUESTED) |
| 1366 | goto case_RENEW_REQUESTED; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1367 | /* Start things over */ |
| 1368 | packet_num = 0; |
Denys Vlasenko | 7d6a791 | 2009-07-19 04:24:23 +0200 | [diff] [blame] | 1369 | /* Kill any timeouts, user wants this to hurry along */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1370 | timeout = 0; |
| 1371 | continue; |
| 1372 | case SIGUSR2: |
| 1373 | perform_release(requested_ip, server_addr); |
| 1374 | timeout = INT_MAX; |
| 1375 | continue; |
| 1376 | case SIGTERM: |
| 1377 | bb_info_msg("Received SIGTERM"); |
| 1378 | if (opt & OPT_R) /* release on quit */ |
| 1379 | perform_release(requested_ip, server_addr); |
| 1380 | goto ret0; |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 1383 | /* Is it a packet? */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1384 | if (listen_mode == LISTEN_NONE || !FD_ISSET(sockfd, &rfds)) |
| 1385 | continue; /* no */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1386 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1387 | { |
| 1388 | int len; |
| 1389 | |
| 1390 | /* A packet is ready, read it */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1391 | if (listen_mode == LISTEN_KERNEL) |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1392 | len = udhcp_recv_kernel_packet(&packet, sockfd); |
Denis Vlasenko | b76b9a4 | 2008-01-25 22:46:34 +0000 | [diff] [blame] | 1393 | else |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1394 | len = udhcp_recv_raw_packet(&packet, sockfd); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1395 | if (len == -1) { |
| 1396 | /* Error is severe, reopen socket */ |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1397 | bb_info_msg("Read error: %s, reopening socket", strerror(errno)); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1398 | sleep(discover_timeout); /* 3 seconds by default */ |
| 1399 | change_listen_mode(listen_mode); /* just close and reopen */ |
| 1400 | } |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1401 | /* If this packet will turn out to be unrelated/bogus, |
| 1402 | * we will go back and wait for next one. |
| 1403 | * Be sure timeout is properly decreased. */ |
Denis Vlasenko | 19903f0 | 2008-05-21 07:03:03 +0000 | [diff] [blame] | 1404 | already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 1405 | if (len < 0) |
| 1406 | continue; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1407 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1408 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1409 | if (packet.xid != xid) { |
| 1410 | log1("xid %x (our is %x), ignoring packet", |
| 1411 | (unsigned)packet.xid, (unsigned)xid); |
| 1412 | continue; |
| 1413 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1414 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1415 | /* Ignore packets that aren't for us */ |
| 1416 | if (packet.hlen != 6 |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 1417 | || memcmp(packet.chaddr, client_config.client_mac, 6) != 0 |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1418 | ) { |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 1419 | //FIXME: need to also check that last 10 bytes are zero |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1420 | log1("chaddr does not match, ignoring packet"); // log2? |
| 1421 | continue; |
| 1422 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1423 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1424 | message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1425 | if (message == NULL) { |
| 1426 | bb_error_msg("no message type option, ignoring packet"); |
| 1427 | continue; |
| 1428 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1429 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1430 | switch (state) { |
| 1431 | case INIT_SELECTING: |
| 1432 | /* Must be a DHCPOFFER to one of our xid's */ |
| 1433 | if (*message == DHCPOFFER) { |
| 1434 | /* TODO: why we don't just fetch server's IP from IP header? */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1435 | temp = udhcp_get_option(&packet, DHCP_SERVER_ID); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1436 | if (!temp) { |
Denys Vlasenko | c72c1d7 | 2010-10-20 22:08:16 +0200 | [diff] [blame] | 1437 | bb_error_msg("no server ID, ignoring packet"); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1438 | continue; |
| 1439 | /* still selecting - this server looks bad */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1440 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1441 | /* it IS unaligned sometimes, don't "optimize" */ |
| 1442 | move_from_unaligned32(server_addr, temp); |
Denys Vlasenko | b3af65b | 2010-10-20 21:37:23 +0200 | [diff] [blame] | 1443 | /*xid = packet.xid; - already is */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1444 | requested_ip = packet.yiaddr; |
| 1445 | |
| 1446 | /* enter requesting state */ |
| 1447 | state = REQUESTING; |
| 1448 | timeout = 0; |
| 1449 | packet_num = 0; |
| 1450 | already_waited_sec = 0; |
| 1451 | } |
| 1452 | continue; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1453 | case REQUESTING: |
| 1454 | case RENEWING: |
Denys Vlasenko | 13ca4b1 | 2009-07-19 04:07:21 +0200 | [diff] [blame] | 1455 | case RENEW_REQUESTED: |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1456 | case REBINDING: |
| 1457 | if (*message == DHCPACK) { |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 1458 | temp = udhcp_get_option(&packet, DHCP_LEASE_TIME); |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1459 | if (!temp) { |
| 1460 | bb_error_msg("no lease time with ACK, using 1 hour lease"); |
| 1461 | lease_seconds = 60 * 60; |
| 1462 | } else { |
| 1463 | /* it IS unaligned sometimes, don't "optimize" */ |
| 1464 | move_from_unaligned32(lease_seconds, temp); |
| 1465 | lease_seconds = ntohl(lease_seconds); |
| 1466 | lease_seconds &= 0x0fffffff; /* paranoia: must not be prone to overflows */ |
| 1467 | if (lease_seconds < 10) /* and not too small */ |
| 1468 | lease_seconds = 10; |
| 1469 | } |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1470 | #if ENABLE_FEATURE_UDHCPC_ARPING |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1471 | if (opt & OPT_a) { |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 1472 | /* RFC 2131 3.1 paragraph 5: |
| 1473 | * "The client receives the DHCPACK message with configuration |
| 1474 | * parameters. The client SHOULD perform a final check on the |
| 1475 | * parameters (e.g., ARP for allocated network address), and notes |
| 1476 | * the duration of the lease specified in the DHCPACK message. At this |
| 1477 | * point, the client is configured. If the client detects that the |
| 1478 | * address is already in use (e.g., through the use of ARP), |
| 1479 | * the client MUST send a DHCPDECLINE message to the server and restarts |
| 1480 | * the configuration process..." */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1481 | if (!arpping(packet.yiaddr, |
| 1482 | NULL, |
| 1483 | (uint32_t) 0, |
| 1484 | client_config.client_mac, |
| 1485 | client_config.interface) |
| 1486 | ) { |
| 1487 | bb_info_msg("Offered address is in use " |
| 1488 | "(got ARP reply), declining"); |
| 1489 | send_decline(xid, server_addr, packet.yiaddr); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1490 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1491 | if (state != REQUESTING) |
| 1492 | udhcp_run_script(NULL, "deconfig"); |
| 1493 | change_listen_mode(LISTEN_RAW); |
| 1494 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1495 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1496 | requested_ip = 0; |
| 1497 | timeout = tryagain_timeout; |
| 1498 | packet_num = 0; |
| 1499 | already_waited_sec = 0; |
| 1500 | continue; /* back to main loop */ |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1501 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1502 | } |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 1503 | #endif |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1504 | /* enter bound state */ |
| 1505 | timeout = lease_seconds / 2; |
| 1506 | { |
| 1507 | struct in_addr temp_addr; |
| 1508 | temp_addr.s_addr = packet.yiaddr; |
| 1509 | bb_info_msg("Lease of %s obtained, lease time %u", |
| 1510 | inet_ntoa(temp_addr), (unsigned)lease_seconds); |
| 1511 | } |
| 1512 | requested_ip = packet.yiaddr; |
Denys Vlasenko | 4abfc26 | 2009-07-19 04:35:16 +0200 | [diff] [blame] | 1513 | udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1514 | |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1515 | state = BOUND; |
| 1516 | change_listen_mode(LISTEN_NONE); |
| 1517 | if (opt & OPT_q) { /* quit after lease */ |
| 1518 | if (opt & OPT_R) /* release on quit */ |
| 1519 | perform_release(requested_ip, server_addr); |
| 1520 | goto ret0; |
| 1521 | } |
Justin Maggard | aa369e0 | 2009-08-13 01:26:17 +0200 | [diff] [blame] | 1522 | /* future renew failures should not exit (JM) */ |
| 1523 | opt &= ~OPT_n; |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1524 | #if BB_MMU /* NOMMU case backgrounded earlier */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1525 | if (!(opt & OPT_f)) { |
| 1526 | client_background(); |
| 1527 | /* do not background again! */ |
| 1528 | opt = ((opt & ~OPT_b) | OPT_f); |
| 1529 | } |
Denis Vlasenko | 21765fa | 2008-06-13 20:44:05 +0000 | [diff] [blame] | 1530 | #endif |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1531 | already_waited_sec = 0; |
| 1532 | continue; /* back to main loop */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1533 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1534 | if (*message == DHCPNAK) { |
| 1535 | /* return to init state */ |
| 1536 | bb_info_msg("Received DHCP NAK"); |
| 1537 | udhcp_run_script(&packet, "nak"); |
| 1538 | if (state != REQUESTING) |
| 1539 | udhcp_run_script(NULL, "deconfig"); |
| 1540 | change_listen_mode(LISTEN_RAW); |
| 1541 | sleep(3); /* avoid excessive network traffic */ |
| 1542 | state = INIT_SELECTING; |
Denys Vlasenko | 9ac5596 | 2011-03-12 05:37:54 +0100 | [diff] [blame] | 1543 | client_config.first_secs = 0; /* make secs field count from 0 */ |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1544 | requested_ip = 0; |
Denis Vlasenko | b539c84 | 2007-11-29 08:17:45 +0000 | [diff] [blame] | 1545 | timeout = 0; |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1546 | packet_num = 0; |
| 1547 | already_waited_sec = 0; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1548 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1549 | continue; |
| 1550 | /* case BOUND: - ignore all packets */ |
| 1551 | /* case RELEASED: - ignore all packets */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1552 | } |
Denys Vlasenko | 4248c33 | 2009-06-26 23:23:16 +0200 | [diff] [blame] | 1553 | /* back to main loop */ |
Denis Vlasenko | 9cdfd14 | 2007-11-22 01:00:00 +0000 | [diff] [blame] | 1554 | } /* for (;;) - main loop ends */ |
| 1555 | |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 1556 | ret0: |
| 1557 | retval = 0; |
| 1558 | ret: |
Denis Vlasenko | b234291 | 2008-05-21 07:02:16 +0000 | [diff] [blame] | 1559 | /*if (client_config.pidfile) - remove_pidfile has its own check */ |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 1560 | remove_pidfile(client_config.pidfile); |
| 1561 | return retval; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1562 | } |