blob: fc2bb5416da73a60a3d2e2d2b1377e490054ea5a [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00002/*
Denys Vlasenko385b4562010-03-26 10:09:34 +01003 * Packet ops
4 *
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00005 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00008 */
Mike Frysinger7031f622006-05-08 03:20:50 +00009#include "common.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000010#include "dhcpd.h"
Dan Fandrichf533ec82011-06-10 05:17:59 +020011#include <netinet/in.h>
12#include <netinet/if_ether.h>
13#include <netpacket/packet.h>
Mike Frysinger7031f622006-05-08 03:20:50 +000014
Denys Vlasenko4ee824f2017-07-03 01:22:13 +020015#if ENABLE_UDHCPC || ENABLE_UDHCPD
Denys Vlasenko31af3d52009-06-17 11:57:09 +020016void FAST_FUNC udhcp_init_header(struct dhcp_packet *packet, char type)
Mike Frysinger7031f622006-05-08 03:20:50 +000017{
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +010018 memset(packet, 0, sizeof(*packet));
Denis Vlasenko739e30f2008-09-26 23:45:20 +000019 packet->op = BOOTREQUEST; /* if client to a server */
Mike Frysinger7031f622006-05-08 03:20:50 +000020 switch (type) {
Mike Frysinger7031f622006-05-08 03:20:50 +000021 case DHCPOFFER:
22 case DHCPACK:
23 case DHCPNAK:
Denis Vlasenko739e30f2008-09-26 23:45:20 +000024 packet->op = BOOTREPLY; /* if server to client */
Mike Frysinger7031f622006-05-08 03:20:50 +000025 }
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +010026 packet->htype = 1; /* ethernet */
27 packet->hlen = 6;
Mike Frysinger7031f622006-05-08 03:20:50 +000028 packet->cookie = htonl(DHCP_MAGIC);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +010029 if (DHCP_END != 0)
30 packet->options[0] = DHCP_END;
Denys Vlasenko7724c762010-03-26 09:32:09 +010031 udhcp_add_simple_option(packet, DHCP_MESSAGE_TYPE, type);
Mike Frysinger7031f622006-05-08 03:20:50 +000032}
Denys Vlasenko4ee824f2017-07-03 01:22:13 +020033#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000034
Denys Vlasenko7a76eba2009-06-19 13:51:29 +020035#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
Denys Vlasenko31af3d52009-06-17 11:57:09 +020036void FAST_FUNC udhcp_dump_packet(struct dhcp_packet *packet)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020037{
38 char buf[sizeof(packet->chaddr)*2 + 1];
Mike Frysinger7031f622006-05-08 03:20:50 +000039
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020040 if (dhcp_verbose < 2)
41 return;
42
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020043 bb_error_msg(
Denys Vlasenkof6258362017-09-29 18:02:01 +020044 //" op %x"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020045 //" htype %x"
46 " hlen %x"
47 //" hops %x"
48 " xid %x"
49 //" secs %x"
50 //" flags %x"
51 " ciaddr %x"
Denys Vlasenko9038d6f2009-07-15 20:02:19 +020052 " yiaddr %x"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020053 " siaddr %x"
54 " giaddr %x"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020055 //" sname %s"
56 //" file %s"
57 //" cookie %x"
58 //" options %s"
59 //, packet->op
60 //, packet->htype
61 , packet->hlen
62 //, packet->hops
63 , packet->xid
64 //, packet->secs
65 //, packet->flags
66 , packet->ciaddr
67 , packet->yiaddr
68 , packet->siaddr_nip
69 , packet->gateway_nip
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020070 //, packet->sname[64]
71 //, packet->file[128]
72 //, packet->cookie
73 //, packet->options[]
74 );
Denys Vlasenko6947d2c2009-06-17 13:24:03 +020075 *bin2hex(buf, (void *) packet->chaddr, sizeof(packet->chaddr)) = '\0';
Denys Vlasenkof6258362017-09-29 18:02:01 +020076 bb_error_msg(" chaddr %s", buf);
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020077}
78#endif
79
80/* Read a packet from socket fd, return -1 on read error, -2 on packet error */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020081int FAST_FUNC udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd)
Mike Frysinger7031f622006-05-08 03:20:50 +000082{
Mike Frysinger7031f622006-05-08 03:20:50 +000083 int bytes;
Mike Frysinger7031f622006-05-08 03:20:50 +000084
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000085 memset(packet, 0, sizeof(*packet));
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +000086 bytes = safe_read(fd, packet, sizeof(*packet));
Mike Frysinger7031f622006-05-08 03:20:50 +000087 if (bytes < 0) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020088 log1("packet read error, ignoring");
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +000089 return bytes; /* returns -1 */
Mike Frysinger7031f622006-05-08 03:20:50 +000090 }
91
Denys Vlasenko3b46fcb2011-11-05 01:26:18 +010092 if (bytes < offsetof(struct dhcp_packet, options)
93 || packet->cookie != htonl(DHCP_MAGIC)
94 ) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020095 bb_error_msg("packet with bad magic, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +000096 return -2;
97 }
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020098 log1("received %s", "a packet");
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020099 udhcp_dump_packet(packet);
Mike Frysinger7031f622006-05-08 03:20:50 +0000100
Mike Frysinger7031f622006-05-08 03:20:50 +0000101 return bytes;
102}
103
Denis Vlasenko61987922007-12-21 16:32:30 +0000104/* Construct a ip/udp header for a packet, send packet */
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200105int FAST_FUNC udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt,
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200106 uint32_t source_nip, int source_port,
107 uint32_t dest_nip, int dest_port, const uint8_t *dest_arp,
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000108 int ifindex)
Mike Frysinger7031f622006-05-08 03:20:50 +0000109{
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200110 struct sockaddr_ll dest_sll;
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200111 struct ip_udp_dhcp_packet packet;
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200112 unsigned padding;
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000113 int fd;
114 int result = -1;
115 const char *msg;
Mike Frysinger7031f622006-05-08 03:20:50 +0000116
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000117 fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
118 if (fd < 0) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000119 msg = "socket(%s)";
120 goto ret_msg;
Mike Frysinger7031f622006-05-08 03:20:50 +0000121 }
122
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200123 memset(&dest_sll, 0, sizeof(dest_sll));
124 memset(&packet, 0, offsetof(struct ip_udp_dhcp_packet, data));
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200125 packet.data = *dhcp_pkt; /* struct copy */
Mike Frysinger7031f622006-05-08 03:20:50 +0000126
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200127 dest_sll.sll_family = AF_PACKET;
128 dest_sll.sll_protocol = htons(ETH_P_IP);
129 dest_sll.sll_ifindex = ifindex;
Denys Vlasenko2b9acc62017-09-29 14:09:02 +0200130 /*dest_sll.sll_hatype = ARPHRD_???;*/
131 /*dest_sll.sll_pkttype = PACKET_???;*/
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200132 dest_sll.sll_halen = 6;
133 memcpy(dest_sll.sll_addr, dest_arp, 6);
134
135 if (bind(fd, (struct sockaddr *)&dest_sll, sizeof(dest_sll)) < 0) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000136 msg = "bind(%s)";
137 goto ret_close;
Mike Frysinger7031f622006-05-08 03:20:50 +0000138 }
139
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200140 /* We were sending full-sized DHCP packets (zero padded),
141 * but some badly configured servers were seen dropping them.
142 * Apparently they drop all DHCP packets >576 *ethernet* octets big,
143 * whereas they may only drop packets >576 *IP* octets big
144 * (which for typical Ethernet II means 590 octets: 6+6+2 + 576).
145 *
146 * In order to work with those buggy servers,
147 * we truncate packets after end option byte.
Johannes Stezenbach2d576e22013-10-28 23:27:37 +0100148 *
149 * However, RFC 1542 says "The IP Total Length and UDP Length
150 * must be large enough to contain the minimal BOOTP header of 300 octets".
151 * Thus, we retain enough padding to not go below 300 BOOTP bytes.
152 * Some devices have filters which drop DHCP packets shorter than that.
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200153 */
154 padding = DHCP_OPTIONS_BUFSIZE - 1 - udhcp_end_option(packet.data.options);
Johannes Stezenbach2d576e22013-10-28 23:27:37 +0100155 if (padding > DHCP_SIZE - 300)
156 padding = DHCP_SIZE - 300;
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200157
Mike Frysinger7031f622006-05-08 03:20:50 +0000158 packet.ip.protocol = IPPROTO_UDP;
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200159 packet.ip.saddr = source_nip;
160 packet.ip.daddr = dest_nip;
Mike Frysinger7031f622006-05-08 03:20:50 +0000161 packet.udp.source = htons(source_port);
162 packet.udp.dest = htons(dest_port);
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000163 /* size, excluding IP header: */
Denys Vlasenko2c3b71a2010-10-20 18:04:36 +0200164 packet.udp.len = htons(UDP_DHCP_SIZE - padding);
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000165 /* for UDP checksumming, ip.len is set to UDP packet len */
Mike Frysinger7031f622006-05-08 03:20:50 +0000166 packet.ip.tot_len = packet.udp.len;
Baruch Siache8f36332011-09-07 17:52:37 +0200167 packet.udp.check = inet_cksum((uint16_t *)&packet,
168 IP_UDP_DHCP_SIZE - padding);
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000169 /* but for sending, it is set to IP packet len */
Denys Vlasenko2c3b71a2010-10-20 18:04:36 +0200170 packet.ip.tot_len = htons(IP_UDP_DHCP_SIZE - padding);
Mike Frysinger7031f622006-05-08 03:20:50 +0000171 packet.ip.ihl = sizeof(packet.ip) >> 2;
172 packet.ip.version = IPVERSION;
173 packet.ip.ttl = IPDEFTTL;
Baruch Siache8f36332011-09-07 17:52:37 +0200174 packet.ip.check = inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip));
Mike Frysinger7031f622006-05-08 03:20:50 +0000175
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200176 udhcp_dump_packet(dhcp_pkt);
Denys Vlasenko2c3b71a2010-10-20 18:04:36 +0200177 result = sendto(fd, &packet, IP_UDP_DHCP_SIZE - padding, /*flags:*/ 0,
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200178 (struct sockaddr *) &dest_sll, sizeof(dest_sll));
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000179 msg = "sendto";
180 ret_close:
Mike Frysinger7031f622006-05-08 03:20:50 +0000181 close(fd);
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000182 if (result < 0) {
183 ret_msg:
184 bb_perror_msg(msg, "PACKET");
185 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000186 return result;
187}
188
Mike Frysinger7031f622006-05-08 03:20:50 +0000189/* Let the kernel do all the work for packet generation */
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200190int FAST_FUNC udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt,
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200191 uint32_t source_nip, int source_port,
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200192 uint32_t dest_nip, int dest_port,
193 int send_flags)
Mike Frysinger7031f622006-05-08 03:20:50 +0000194{
Denys Vlasenko50089fc2011-11-07 15:44:46 +0100195 struct sockaddr_in sa;
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200196 unsigned padding;
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000197 int fd;
198 int result = -1;
199 const char *msg;
Mike Frysinger7031f622006-05-08 03:20:50 +0000200
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000201 fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000202 if (fd < 0) {
203 msg = "socket(%s)";
204 goto ret_msg;
205 }
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000206 setsockopt_reuseaddr(fd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000207
Denys Vlasenko50089fc2011-11-07 15:44:46 +0100208 memset(&sa, 0, sizeof(sa));
209 sa.sin_family = AF_INET;
210 sa.sin_port = htons(source_port);
211 sa.sin_addr.s_addr = source_nip;
212 if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000213 msg = "bind(%s)";
214 goto ret_close;
Mike Frysinger7031f622006-05-08 03:20:50 +0000215 }
216
Denys Vlasenko50089fc2011-11-07 15:44:46 +0100217 memset(&sa, 0, sizeof(sa));
218 sa.sin_family = AF_INET;
219 sa.sin_port = htons(dest_port);
220 sa.sin_addr.s_addr = dest_nip;
221 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000222 msg = "connect";
223 goto ret_close;
Mike Frysinger7031f622006-05-08 03:20:50 +0000224 }
225
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200226 udhcp_dump_packet(dhcp_pkt);
Denys Vlasenkob8b72f02010-05-31 00:45:09 +0200227 padding = DHCP_OPTIONS_BUFSIZE - 1 - udhcp_end_option(dhcp_pkt->options);
Johannes Stezenbach2d576e22013-10-28 23:27:37 +0100228 if (padding > DHCP_SIZE - 300)
229 padding = DHCP_SIZE - 300;
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200230 result = send(fd, dhcp_pkt, DHCP_SIZE - padding, send_flags);
231 msg = "send";
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000232 ret_close:
Mike Frysinger7031f622006-05-08 03:20:50 +0000233 close(fd);
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000234 if (result < 0) {
235 ret_msg:
236 bb_perror_msg(msg, "UDP");
237 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000238 return result;
239}