blob: a0656c1dab54989cef71cac161e7f4fcb9bb4a97 [file] [log] [blame]
Denys Vlasenko9ba75042011-11-07 15:55:39 +01001/* vi: set sw=4 ts=4: */
2/*
3 * Copyright (C) 2011 Denys Vlasenko.
4 *
5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */
7#include "common.h"
8#include "d6_common.h"
9#include "dhcpd.h"
10#include <netinet/in.h>
11#include <netinet/if_ether.h>
12#include <netpacket/packet.h>
13
14#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
15void FAST_FUNC d6_dump_packet(struct d6_packet *packet)
16{
17 if (dhcp_verbose < 2)
18 return;
19
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020020 bb_error_msg(
21 "xid %x"
Denys Vlasenko9ba75042011-11-07 15:55:39 +010022 , packet->d6_xid32
23 );
24 //*bin2hex(buf, (void *) packet->chaddr, sizeof(packet->chaddr)) = '\0';
Denys Vlasenko76b680c2016-03-30 16:04:37 +020025 //bb_error_msg(" chaddr %s", buf);
Denys Vlasenko9ba75042011-11-07 15:55:39 +010026}
27#endif
28
29int FAST_FUNC d6_recv_kernel_packet(struct in6_addr *peer_ipv6
30 UNUSED_PARAM
31 , struct d6_packet *packet, int fd)
32{
33 int bytes;
34
35 memset(packet, 0, sizeof(*packet));
36 bytes = safe_read(fd, packet, sizeof(*packet));
37 if (bytes < 0) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020038 log1("packet read error, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +010039 return bytes; /* returns -1 */
40 }
41
42 if (bytes < offsetof(struct d6_packet, d6_options)) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020043 bb_error_msg("packet with bad magic, ignoring");
Denys Vlasenko9ba75042011-11-07 15:55:39 +010044 return -2;
45 }
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +020046 log1("received %s", "a packet");
Denys Vlasenko9ba75042011-11-07 15:55:39 +010047 d6_dump_packet(packet);
48
49 return bytes;
50}
51
52/* Construct a ipv6+udp header for a packet, send packet */
53int FAST_FUNC d6_send_raw_packet(
54 struct d6_packet *d6_pkt, unsigned d6_pkt_size,
55 struct in6_addr *src_ipv6, int source_port,
56 struct in6_addr *dst_ipv6, int dest_port, const uint8_t *dest_arp,
57 int ifindex)
58{
59 struct sockaddr_ll dest_sll;
60 struct ip6_udp_d6_packet packet;
61 int fd;
62 int result = -1;
63 const char *msg;
64
65 fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6));
66 if (fd < 0) {
67 msg = "socket(%s)";
68 goto ret_msg;
69 }
70
71 memset(&dest_sll, 0, sizeof(dest_sll));
72 memset(&packet, 0, offsetof(struct ip6_udp_d6_packet, data));
73 packet.data = *d6_pkt; /* struct copy */
74
75 dest_sll.sll_family = AF_PACKET;
76 dest_sll.sll_protocol = htons(ETH_P_IPV6);
77 dest_sll.sll_ifindex = ifindex;
Denys Vlasenko2b9acc62017-09-29 14:09:02 +020078 /*dest_sll.sll_hatype = ARPHRD_???;*/
79 /*dest_sll.sll_pkttype = PACKET_???;*/
Denys Vlasenko9ba75042011-11-07 15:55:39 +010080 dest_sll.sll_halen = 6;
81 memcpy(dest_sll.sll_addr, dest_arp, 6);
82
83 if (bind(fd, (struct sockaddr *)&dest_sll, sizeof(dest_sll)) < 0) {
84 msg = "bind(%s)";
85 goto ret_close;
86 }
87
88 packet.ip6.ip6_vfc = (6 << 4); /* 4 bits version, top 4 bits of tclass */
89 if (src_ipv6)
90 packet.ip6.ip6_src = *src_ipv6; /* struct copy */
91 packet.ip6.ip6_dst = *dst_ipv6; /* struct copy */
92 packet.udp.source = htons(source_port);
93 packet.udp.dest = htons(dest_port);
94 /* size, excluding IP header: */
95 packet.udp.len = htons(sizeof(struct udphdr) + d6_pkt_size);
96 packet.ip6.ip6_plen = packet.udp.len;
Denys Vlasenko2b6a6b92011-11-07 18:22:06 +010097 /*
98 * Someone was smoking weed (at least) while inventing UDP checksumming:
99 * UDP checksum skips first four bytes of IPv6 header.
100 * 'next header' field should be summed as if it is one more byte
101 * to the right, therefore we write its value (IPPROTO_UDP)
102 * into ip6_hlim, and its 'real' location remains zero-filled for now.
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100103 */
104 packet.ip6.ip6_hlim = IPPROTO_UDP;
Denys Vlasenko2b6a6b92011-11-07 18:22:06 +0100105 packet.udp.check = inet_cksum(
106 (uint16_t *)&packet + 2,
107 offsetof(struct ip6_udp_d6_packet, data) - 4 + d6_pkt_size
108 );
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100109 /* fix 'hop limit' and 'next header' after UDP checksumming */
Denys Vlasenko2b6a6b92011-11-07 18:22:06 +0100110 packet.ip6.ip6_hlim = 1; /* observed Windows machines to use hlim=1 */
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100111 packet.ip6.ip6_nxt = IPPROTO_UDP;
112
113 d6_dump_packet(d6_pkt);
114 result = sendto(fd, &packet, offsetof(struct ip6_udp_d6_packet, data) + d6_pkt_size,
115 /*flags:*/ 0,
116 (struct sockaddr *) &dest_sll, sizeof(dest_sll)
117 );
118 msg = "sendto";
119 ret_close:
120 close(fd);
121 if (result < 0) {
122 ret_msg:
123 bb_perror_msg(msg, "PACKET");
124 }
125 return result;
126}
127
128/* Let the kernel do all the work for packet generation */
129int FAST_FUNC d6_send_kernel_packet(
130 struct d6_packet *d6_pkt, unsigned d6_pkt_size,
131 struct in6_addr *src_ipv6, int source_port,
Denys Vlasenkoed898ed2017-03-27 22:32:44 +0200132 struct in6_addr *dst_ipv6, int dest_port,
133 int ifindex)
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100134{
135 struct sockaddr_in6 sa;
136 int fd;
137 int result = -1;
138 const char *msg;
139
140 fd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
141 if (fd < 0) {
142 msg = "socket(%s)";
143 goto ret_msg;
144 }
145 setsockopt_reuseaddr(fd);
146
147 memset(&sa, 0, sizeof(sa));
148 sa.sin6_family = AF_INET6;
149 sa.sin6_port = htons(source_port);
150 sa.sin6_addr = *src_ipv6; /* struct copy */
151 if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {
152 msg = "bind(%s)";
153 goto ret_close;
154 }
155
156 memset(&sa, 0, sizeof(sa));
157 sa.sin6_family = AF_INET6;
158 sa.sin6_port = htons(dest_port);
159 sa.sin6_addr = *dst_ipv6; /* struct copy */
Denys Vlasenkoed898ed2017-03-27 22:32:44 +0200160 sa.sin6_scope_id = ifindex;
Denys Vlasenko9ba75042011-11-07 15:55:39 +0100161 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {
162 msg = "connect";
163 goto ret_close;
164 }
165
166 d6_dump_packet(d6_pkt);
167 result = safe_write(fd, d6_pkt, d6_pkt_size);
168 msg = "write";
169 ret_close:
170 close(fd);
171 if (result < 0) {
172 ret_msg:
173 bb_perror_msg(msg, "UDP");
174 }
175 return result;
176}