"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 2 | /* clientpacket.c |
| 3 | * |
| 4 | * Packet generation and dispatching functions for the DHCP client. |
| 5 | * |
| 6 | * Russ Dill <Russ.Dill@asu.edu> July 2001 |
| 7 | * |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 11 | #include <features.h> |
Denis Vlasenko | 83e5d6f | 2006-12-18 21:49:06 +0000 | [diff] [blame] | 12 | #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 13 | #include <netpacket/packet.h> |
| 14 | #include <net/ethernet.h> |
| 15 | #else |
| 16 | #include <asm/types.h> |
| 17 | #include <linux/if_packet.h> |
| 18 | #include <linux/if_ether.h> |
| 19 | #endif |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 20 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 21 | #include "common.h" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 22 | #include "dhcpd.h" |
| 23 | #include "dhcpc.h" |
| 24 | #include "options.h" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 25 | |
| 26 | |
| 27 | /* Create a random xid */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 28 | uint32_t FAST_FUNC random_xid(void) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 29 | { |
Denis Vlasenko | bd7bb29 | 2007-06-17 23:40:26 +0000 | [diff] [blame] | 30 | static smallint initialized; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 31 | |
Denis Vlasenko | bd7bb29 | 2007-06-17 23:40:26 +0000 | [diff] [blame] | 32 | if (!initialized) { |
| 33 | srand(monotonic_us()); |
| 34 | initialized = 1; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 35 | } |
| 36 | return rand(); |
| 37 | } |
| 38 | |
| 39 | |
| 40 | /* initialize a packet with the proper defaults */ |
| 41 | static void init_packet(struct dhcpMessage *packet, char type) |
| 42 | { |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 43 | udhcp_init_header(packet, type); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 44 | memcpy(packet->chaddr, client_config.arp, 6); |
| 45 | if (client_config.clientid) |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 46 | add_option_string(packet->options, client_config.clientid); |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 47 | if (client_config.hostname) |
| 48 | add_option_string(packet->options, client_config.hostname); |
| 49 | if (client_config.fqdn) |
| 50 | add_option_string(packet->options, client_config.fqdn); |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 51 | if ((type != DHCPDECLINE) && (type != DHCPRELEASE)) |
| 52 | add_option_string(packet->options, client_config.vendorclass); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | |
| 56 | /* Add a parameter request list for stubborn DHCP servers. Pull the data |
| 57 | * from the struct in options.c. Don't do bounds checking here because it |
| 58 | * goes towards the head of the packet. */ |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 59 | static void add_param_req_option(struct dhcpMessage *packet) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 60 | { |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 61 | uint8_t c; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 62 | int end = end_option(packet->options); |
| 63 | int i, len = 0; |
| 64 | |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 65 | for (i = 0; (c = dhcp_options[i].code) != 0; i++) { |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 66 | if (((dhcp_options[i].flags & OPTION_REQ) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 67 | && !client_config.no_default_options) |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 68 | || (client_config.opt_mask[c >> 3] & (1 << (c & 7))) |
| 69 | ) { |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 70 | packet->options[end + OPT_DATA + len] = c; |
| 71 | len++; |
Denis Vlasenko | 1918368 | 2007-12-10 07:03:38 +0000 | [diff] [blame] | 72 | } |
| 73 | } |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 74 | if (len) { |
| 75 | packet->options[end + OPT_CODE] = DHCP_PARAM_REQ; |
| 76 | packet->options[end + OPT_LEN] = len; |
| 77 | packet->options[end + OPT_DATA + len] = DHCP_END; |
| 78 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 81 | /* RFC 2131 |
| 82 | * 4.4.4 Use of broadcast and unicast |
| 83 | * |
| 84 | * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM |
| 85 | * messages, unless the client knows the address of a DHCP server. |
| 86 | * The client unicasts DHCPRELEASE messages to the server. Because |
| 87 | * the client is declining the use of the IP address supplied by the server, |
| 88 | * the client broadcasts DHCPDECLINE messages. |
| 89 | * |
| 90 | * When the DHCP client knows the address of a DHCP server, in either |
| 91 | * INIT or REBOOTING state, the client may use that address |
| 92 | * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address. |
| 93 | * The client may also use unicast to send DHCPINFORM messages |
| 94 | * to a known DHCP server. If the client receives no response to DHCP |
| 95 | * messages sent to the IP address of a known DHCP server, the DHCP |
| 96 | * client reverts to using the IP broadcast address. |
| 97 | */ |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 98 | |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 99 | static int raw_bcast_from_client_config_ifindex(struct dhcpMessage *packet) |
| 100 | { |
| 101 | return udhcp_send_raw_packet(packet, |
| 102 | /*src*/ INADDR_ANY, CLIENT_PORT, |
| 103 | /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR, |
| 104 | client_config.ifindex); |
| 105 | } |
| 106 | |
| 107 | |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 108 | #if ENABLE_FEATURE_UDHCPC_ARPING |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 109 | /* Broadcast a DHCP decline message */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 110 | int FAST_FUNC send_decline(uint32_t xid, uint32_t server, uint32_t requested) |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 111 | { |
| 112 | struct dhcpMessage packet; |
| 113 | |
| 114 | init_packet(&packet, DHCPDECLINE); |
| 115 | packet.xid = xid; |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 116 | add_simple_option(packet.options, DHCP_REQUESTED_IP, requested); |
| 117 | add_simple_option(packet.options, DHCP_SERVER_ID, server); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 118 | |
| 119 | bb_info_msg("Sending decline..."); |
| 120 | |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 121 | return raw_bcast_from_client_config_ifindex(&packet); |
Denis Vlasenko | 223bc97 | 2007-11-22 00:58:49 +0000 | [diff] [blame] | 122 | } |
| 123 | #endif |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 124 | |
| 125 | /* Broadcast a DHCP discover packet to the network, with an optionally requested IP */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 126 | int FAST_FUNC send_discover(uint32_t xid, uint32_t requested) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 127 | { |
| 128 | struct dhcpMessage packet; |
| 129 | |
| 130 | init_packet(&packet, DHCPDISCOVER); |
| 131 | packet.xid = xid; |
| 132 | if (requested) |
| 133 | add_simple_option(packet.options, DHCP_REQUESTED_IP, requested); |
| 134 | |
Denis Vlasenko | 35ff746 | 2007-11-28 19:23:12 +0000 | [diff] [blame] | 135 | /* Explicitly saying that we want RFC-compliant packets helps |
| 136 | * some buggy DHCP servers to NOT send bigger packets */ |
| 137 | add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576)); |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 139 | add_param_req_option(&packet); |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 140 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 141 | bb_info_msg("Sending discover..."); |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 142 | return raw_bcast_from_client_config_ifindex(&packet); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | |
| 146 | /* Broadcasts a DHCP request message */ |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 147 | /* RFC 2131 3.1 paragraph 3: |
| 148 | * "The client _broadcasts_ a DHCPREQUEST message..." |
| 149 | */ |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 150 | int FAST_FUNC send_select(uint32_t xid, uint32_t server, uint32_t requested) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 151 | { |
| 152 | struct dhcpMessage packet; |
| 153 | struct in_addr addr; |
| 154 | |
| 155 | init_packet(&packet, DHCPREQUEST); |
| 156 | packet.xid = xid; |
| 157 | |
| 158 | add_simple_option(packet.options, DHCP_REQUESTED_IP, requested); |
| 159 | add_simple_option(packet.options, DHCP_SERVER_ID, server); |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 160 | add_param_req_option(&packet); |
Denis Vlasenko | 2e4c3c4 | 2008-04-02 13:04:19 +0000 | [diff] [blame] | 161 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 162 | addr.s_addr = requested; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 163 | bb_info_msg("Sending select for %s...", inet_ntoa(addr)); |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 164 | return raw_bcast_from_client_config_ifindex(&packet); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | |
| 168 | /* Unicasts or broadcasts a DHCP renew message */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 169 | int FAST_FUNC send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 170 | { |
| 171 | struct dhcpMessage packet; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 172 | |
| 173 | init_packet(&packet, DHCPREQUEST); |
| 174 | packet.xid = xid; |
| 175 | packet.ciaddr = ciaddr; |
| 176 | |
Denis Vlasenko | ca9635b | 2008-01-25 19:27:08 +0000 | [diff] [blame] | 177 | add_param_req_option(&packet); |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 178 | bb_info_msg("Sending renew..."); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 179 | if (server) |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 180 | return udhcp_send_kernel_packet(&packet, |
| 181 | ciaddr, CLIENT_PORT, |
| 182 | server, SERVER_PORT); |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 183 | |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 184 | return raw_bcast_from_client_config_ifindex(&packet); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | |
| 188 | /* Unicasts a DHCP release message */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 189 | int FAST_FUNC send_release(uint32_t server, uint32_t ciaddr) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 190 | { |
| 191 | struct dhcpMessage packet; |
| 192 | |
| 193 | init_packet(&packet, DHCPRELEASE); |
| 194 | packet.xid = random_xid(); |
| 195 | packet.ciaddr = ciaddr; |
| 196 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 197 | add_simple_option(packet.options, DHCP_SERVER_ID, server); |
| 198 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 199 | bb_info_msg("Sending release..."); |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 200 | return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 204 | /* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 205 | int FAST_FUNC udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 206 | { |
| 207 | int bytes; |
| 208 | struct udp_dhcp_packet packet; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 209 | uint16_t check; |
| 210 | |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 211 | memset(&packet, 0, sizeof(packet)); |
| 212 | bytes = safe_read(fd, &packet, sizeof(packet)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 213 | if (bytes < 0) { |
Denis Vlasenko | a959588 | 2006-09-29 21:30:43 +0000 | [diff] [blame] | 214 | DEBUG("Cannot read on raw listening socket - ignoring"); |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 215 | /* NB: possible down interface, etc. Caller should pause. */ |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 216 | return bytes; /* returns -1 */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 217 | } |
| 218 | |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 219 | if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) { |
| 220 | DEBUG("Packet is too short, ignoring"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 221 | return -2; |
| 222 | } |
| 223 | |
| 224 | if (bytes < ntohs(packet.ip.tot_len)) { |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 225 | /* packet is bigger than sizeof(packet), we did partial read */ |
| 226 | DEBUG("Oversized packet, ignoring"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 227 | return -2; |
| 228 | } |
| 229 | |
| 230 | /* ignore any extra garbage bytes */ |
| 231 | bytes = ntohs(packet.ip.tot_len); |
| 232 | |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 233 | /* make sure its the right packet for us, and that it passes sanity checks */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 234 | if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION |
Denis Vlasenko | 6884f66 | 2007-11-23 00:08:54 +0000 | [diff] [blame] | 235 | || packet.ip.ihl != (sizeof(packet.ip) >> 2) |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 236 | || packet.udp.dest != htons(CLIENT_PORT) |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 237 | /* || bytes > (int) sizeof(packet) - can't happen */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 238 | || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip)) |
| 239 | ) { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 240 | DEBUG("Unrelated/bogus packet"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 241 | return -2; |
| 242 | } |
| 243 | |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 244 | /* verify IP checksum */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 245 | check = packet.ip.check; |
| 246 | packet.ip.check = 0; |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 247 | if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) { |
| 248 | DEBUG("Bad IP header checksum, ignoring"); |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 249 | return -2; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 252 | /* verify UDP checksum. IP header has to be modified for this */ |
| 253 | memset(&packet.ip, 0, offsetof(struct iphdr, protocol)); |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 254 | /* ip.xx fields which are not memset: protocol, check, saddr, daddr */ |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 255 | packet.ip.tot_len = packet.udp.len; /* yes, this is needed */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 256 | check = packet.udp.check; |
| 257 | packet.udp.check = 0; |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 258 | if (check && check != udhcp_checksum(&packet, bytes)) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 259 | bb_error_msg("packet with bad UDP checksum received, ignoring"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 260 | return -2; |
| 261 | } |
| 262 | |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 263 | memcpy(payload, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp))); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 264 | |
Denis Vlasenko | 6884f66 | 2007-11-23 00:08:54 +0000 | [diff] [blame] | 265 | if (payload->cookie != htonl(DHCP_MAGIC)) { |
Denis Vlasenko | 8e5b6f5 | 2007-12-24 17:32:22 +0000 | [diff] [blame] | 266 | bb_error_msg("received bogus message (bad magic), ignoring"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 267 | return -2; |
| 268 | } |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 269 | DEBUG("Got valid DHCP packet"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 270 | return bytes - (sizeof(packet.ip) + sizeof(packet.udp)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 271 | } |