Initial public busybox upstream commit
[busybox4maemo] / networking / udhcp / packet.c
1 /* vi: set sw=4 ts=4: */
2
3 #include <netinet/in.h>
4 #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION
5 #include <netpacket/packet.h>
6 #include <net/ethernet.h>
7 #else
8 #include <asm/types.h>
9 #include <linux/if_packet.h>
10 #include <linux/if_ether.h>
11 #endif
12
13 #include "common.h"
14 #include "dhcpd.h"
15 #include "options.h"
16
17
18 void udhcp_init_header(struct dhcpMessage *packet, char type)
19 {
20         memset(packet, 0, sizeof(struct dhcpMessage));
21         packet->op = BOOTREQUEST;
22         switch (type) {
23         case DHCPOFFER:
24         case DHCPACK:
25         case DHCPNAK:
26                 packet->op = BOOTREPLY;
27         }
28         packet->htype = ETH_10MB;
29         packet->hlen = ETH_10MB_LEN;
30         packet->cookie = htonl(DHCP_MAGIC);
31         packet->options[0] = DHCP_END;
32         add_simple_option(packet->options, DHCP_MESSAGE_TYPE, type);
33 }
34
35
36 /* read a packet from socket fd, return -1 on read error, -2 on packet error */
37 int udhcp_recv_packet(struct dhcpMessage *packet, int fd)
38 {
39         int bytes;
40         unsigned char *vendor;
41
42         memset(packet, 0, sizeof(*packet));
43         bytes = safe_read(fd, packet, sizeof(*packet));
44         if (bytes < 0) {
45                 DEBUG("cannot read on listening socket, ignoring");
46                 return bytes; /* returns -1 */
47         }
48
49         if (packet->cookie != htonl(DHCP_MAGIC)) {
50                 bb_error_msg("received bogus message, ignoring");
51                 return -2;
52         }
53         DEBUG("Received a packet");
54
55         if (packet->op == BOOTREQUEST) {
56                 vendor = get_option(packet, DHCP_VENDOR);
57                 if (vendor) {
58 #if 0
59                         static const char broken_vendors[][8] = {
60                                 "MSFT 98",
61                                 ""
62                         };
63                         int i;
64                         for (i = 0; broken_vendors[i][0]; i++) {
65                                 if (vendor[OPT_LEN - 2] == (uint8_t)strlen(broken_vendors[i])
66                                  && !strncmp((char*)vendor, broken_vendors[i], vendor[OPT_LEN - 2])
67                                 ) {
68                                         DEBUG("broken client (%s), forcing broadcast",
69                                                 broken_vendors[i]);
70                                         packet->flags |= htons(BROADCAST_FLAG);
71                                 }
72                         }
73 #else
74                         if (vendor[OPT_LEN - 2] == (uint8_t)(sizeof("MSFT 98")-1)
75                          && memcmp(vendor, "MSFT 98", sizeof("MSFT 98")-1) == 0
76                         ) {
77                                 DEBUG("broken client (%s), forcing broadcast", "MSFT 98");
78                                 packet->flags |= htons(BROADCAST_FLAG);
79                         }
80 #endif
81                 }
82         }
83
84         return bytes;
85 }
86
87
88 uint16_t udhcp_checksum(void *addr, int count)
89 {
90         /* Compute Internet Checksum for "count" bytes
91          *         beginning at location "addr".
92          */
93         int32_t sum = 0;
94         uint16_t *source = (uint16_t *) addr;
95
96         while (count > 1)  {
97                 /*  This is the inner loop */
98                 sum += *source++;
99                 count -= 2;
100         }
101
102         /*  Add left-over byte, if any */
103         if (count > 0) {
104                 /* Make sure that the left-over byte is added correctly both
105                  * with little and big endian hosts */
106                 uint16_t tmp = 0;
107                 *(uint8_t*)&tmp = *(uint8_t*)source;
108                 sum += tmp;
109         }
110         /*  Fold 32-bit sum to 16 bits */
111         while (sum >> 16)
112                 sum = (sum & 0xffff) + (sum >> 16);
113
114         return ~sum;
115 }
116
117
118 /* Construct a ip/udp header for a packet, send packet */
119 int udhcp_send_raw_packet(struct dhcpMessage *payload,
120                 uint32_t source_ip, int source_port,
121                 uint32_t dest_ip, int dest_port, const uint8_t *dest_arp, int ifindex)
122 {
123         struct sockaddr_ll dest;
124         struct udp_dhcp_packet packet;
125         int fd;
126         int result = -1;
127         const char *msg;
128
129         enum {
130                 IP_UPD_DHCP_SIZE = sizeof(struct udp_dhcp_packet) - CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS,
131                 UPD_DHCP_SIZE    = IP_UPD_DHCP_SIZE - offsetof(struct udp_dhcp_packet, udp),
132         };
133
134         fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
135         if (fd < 0) {
136                 msg = "socket(%s)";
137                 goto ret_msg;
138         }
139
140         memset(&dest, 0, sizeof(dest));
141         memset(&packet, 0, sizeof(packet));
142         packet.data = *payload; /* struct copy */
143
144         dest.sll_family = AF_PACKET;
145         dest.sll_protocol = htons(ETH_P_IP);
146         dest.sll_ifindex = ifindex;
147         dest.sll_halen = 6;
148         memcpy(dest.sll_addr, dest_arp, 6);
149         if (bind(fd, (struct sockaddr *)&dest, sizeof(dest)) < 0) {
150                 msg = "bind(%s)";
151                 goto ret_close;
152         }
153
154         packet.ip.protocol = IPPROTO_UDP;
155         packet.ip.saddr = source_ip;
156         packet.ip.daddr = dest_ip;
157         packet.udp.source = htons(source_port);
158         packet.udp.dest = htons(dest_port);
159         /* size, excluding IP header: */
160         packet.udp.len = htons(UPD_DHCP_SIZE);
161         /* for UDP checksumming, ip.len is set to UDP packet len */
162         packet.ip.tot_len = packet.udp.len;
163         packet.udp.check = udhcp_checksum(&packet, IP_UPD_DHCP_SIZE);
164         /* but for sending, it is set to IP packet len */
165         packet.ip.tot_len = htons(IP_UPD_DHCP_SIZE);
166         packet.ip.ihl = sizeof(packet.ip) >> 2;
167         packet.ip.version = IPVERSION;
168         packet.ip.ttl = IPDEFTTL;
169         packet.ip.check = udhcp_checksum(&packet.ip, sizeof(packet.ip));
170
171         /* Currently we send full-sized DHCP packets (zero padded).
172          * If you need to change this: last byte of the packet is
173          * packet.data.options[end_option(packet.data.options)]
174          */
175         result = sendto(fd, &packet, IP_UPD_DHCP_SIZE, 0,
176                                 (struct sockaddr *) &dest, sizeof(dest));
177         msg = "sendto";
178  ret_close:
179         close(fd);
180         if (result < 0) {
181  ret_msg:
182                 bb_perror_msg(msg, "PACKET");
183         }
184         return result;
185 }
186
187
188 /* Let the kernel do all the work for packet generation */
189 int udhcp_send_kernel_packet(struct dhcpMessage *payload,
190                 uint32_t source_ip, int source_port,
191                 uint32_t dest_ip, int dest_port)
192 {
193         struct sockaddr_in client;
194         int fd;
195         int result = -1;
196         const char *msg;
197
198         enum {
199                 DHCP_SIZE = sizeof(struct dhcpMessage) - CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS,
200         };
201
202         fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
203         if (fd < 0) {
204                 msg = "socket(%s)";
205                 goto ret_msg;
206         }
207         setsockopt_reuseaddr(fd);
208
209         memset(&client, 0, sizeof(client));
210         client.sin_family = AF_INET;
211         client.sin_port = htons(source_port);
212         client.sin_addr.s_addr = source_ip;
213         if (bind(fd, (struct sockaddr *)&client, sizeof(client)) == -1) {
214                 msg = "bind(%s)";
215                 goto ret_close;
216         }
217
218         memset(&client, 0, sizeof(client));
219         client.sin_family = AF_INET;
220         client.sin_port = htons(dest_port);
221         client.sin_addr.s_addr = dest_ip;
222         if (connect(fd, (struct sockaddr *)&client, sizeof(client)) == -1) {
223                 msg = "connect";
224                 goto ret_close;
225         }
226
227         /* Currently we send full-sized DHCP packets (see above) */
228         result = safe_write(fd, payload, DHCP_SIZE);
229         msg = "write";
230  ret_close:
231         close(fd);
232         if (result < 0) {
233  ret_msg:
234                 bb_perror_msg(msg, "UDP");
235         }
236         return result;
237 }