udp_usrreq.c revision 1.264 1 1.264 ozaki /* $NetBSD: udp_usrreq.c,v 1.264 2022/11/04 09:00:58 ozaki-r Exp $ */
2 1.48 itojun
3 1.48 itojun /*
4 1.48 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.48 itojun * All rights reserved.
6 1.94 itojun *
7 1.48 itojun * Redistribution and use in source and binary forms, with or without
8 1.48 itojun * modification, are permitted provided that the following conditions
9 1.48 itojun * are met:
10 1.48 itojun * 1. Redistributions of source code must retain the above copyright
11 1.48 itojun * notice, this list of conditions and the following disclaimer.
12 1.48 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.48 itojun * notice, this list of conditions and the following disclaimer in the
14 1.48 itojun * documentation and/or other materials provided with the distribution.
15 1.48 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.48 itojun * may be used to endorse or promote products derived from this software
17 1.48 itojun * without specific prior written permission.
18 1.94 itojun *
19 1.48 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.48 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.48 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.48 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.48 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.48 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.48 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.48 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.48 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.48 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.48 itojun * SUCH DAMAGE.
30 1.48 itojun */
31 1.14 cgd
32 1.1 cgd /*
33 1.44 thorpej * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
34 1.13 mycroft * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.104 agc * 3. Neither the name of the University nor the names of its contributors
45 1.1 cgd * may be used to endorse or promote products derived from this software
46 1.1 cgd * without specific prior written permission.
47 1.1 cgd *
48 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 cgd * SUCH DAMAGE.
59 1.1 cgd *
60 1.44 thorpej * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
61 1.1 cgd */
62 1.91 lukem
63 1.198 rmind /*
64 1.198 rmind * UDP protocol implementation.
65 1.198 rmind * Per RFC 768, August, 1980.
66 1.198 rmind */
67 1.198 rmind
68 1.91 lukem #include <sys/cdefs.h>
69 1.264 ozaki __KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.264 2022/11/04 09:00:58 ozaki-r Exp $");
70 1.50 thorpej
71 1.222 pooka #ifdef _KERNEL_OPT
72 1.77 soda #include "opt_inet.h"
73 1.50 thorpej #include "opt_ipsec.h"
74 1.78 thorpej #include "opt_inet_csum.h"
75 1.101 martin #include "opt_mbuftrace.h"
76 1.229 knakahar #include "opt_net_mpsafe.h"
77 1.222 pooka #endif
78 1.1 cgd
79 1.5 mycroft #include <sys/param.h>
80 1.5 mycroft #include <sys/mbuf.h>
81 1.192 pooka #include <sys/once.h>
82 1.5 mycroft #include <sys/protosw.h>
83 1.5 mycroft #include <sys/socket.h>
84 1.5 mycroft #include <sys/socketvar.h>
85 1.27 christos #include <sys/systm.h>
86 1.27 christos #include <sys/proc.h>
87 1.53 itojun #include <sys/domain.h>
88 1.27 christos #include <sys/sysctl.h>
89 1.1 cgd
90 1.5 mycroft #include <net/if.h>
91 1.1 cgd
92 1.5 mycroft #include <netinet/in.h>
93 1.5 mycroft #include <netinet/in_systm.h>
94 1.15 cgd #include <netinet/in_var.h>
95 1.5 mycroft #include <netinet/ip.h>
96 1.5 mycroft #include <netinet/in_pcb.h>
97 1.5 mycroft #include <netinet/ip_var.h>
98 1.5 mycroft #include <netinet/ip_icmp.h>
99 1.5 mycroft #include <netinet/udp.h>
100 1.5 mycroft #include <netinet/udp_var.h>
101 1.166 thorpej #include <netinet/udp_private.h>
102 1.1 cgd
103 1.53 itojun #ifdef INET6
104 1.53 itojun #include <netinet/ip6.h>
105 1.53 itojun #include <netinet6/ip6_var.h>
106 1.167 thorpej #include <netinet6/ip6_private.h>
107 1.53 itojun #include <netinet6/in6_pcb.h>
108 1.53 itojun #include <netinet6/udp6_var.h>
109 1.168 thorpej #include <netinet6/udp6_private.h>
110 1.53 itojun #endif
111 1.53 itojun
112 1.53 itojun #ifndef INET6
113 1.53 itojun #include <netinet/ip6.h>
114 1.53 itojun #endif
115 1.53 itojun
116 1.190 christos #ifdef IPSEC
117 1.105 jonathan #include <netipsec/ipsec.h>
118 1.147 christos #include <netipsec/esp.h>
119 1.238 maxv #endif
120 1.105 jonathan
121 1.238 maxv int udpcksum = 1;
122 1.238 maxv int udp_do_loopback_cksum = 0;
123 1.93 matt
124 1.238 maxv struct inpcbtable udbtable;
125 1.164 thorpej
126 1.166 thorpej percpu_t *udpstat_percpu;
127 1.8 mycroft
128 1.72 itojun #ifdef INET
129 1.190 christos #ifdef IPSEC
130 1.258 maxv static int udp4_espinudp(struct mbuf **, int);
131 1.189 christos #endif
132 1.239 maxv static void udp4_sendup(struct mbuf *, int, struct sockaddr *,
133 1.238 maxv struct socket *);
134 1.239 maxv static int udp4_realinput(struct sockaddr_in *, struct sockaddr_in *,
135 1.238 maxv struct mbuf **, int);
136 1.129 yamt static int udp4_input_checksum(struct mbuf *, const struct udphdr *, int, int);
137 1.72 itojun #endif
138 1.72 itojun #ifdef INET
139 1.238 maxv static void udp_notify (struct inpcb *, int);
140 1.72 itojun #endif
141 1.7 mycroft
142 1.26 mycroft #ifndef UDBHASHSIZE
143 1.26 mycroft #define UDBHASHSIZE 128
144 1.26 mycroft #endif
145 1.238 maxv int udbhashsize = UDBHASHSIZE;
146 1.26 mycroft
147 1.196 rmind /*
148 1.196 rmind * For send - really max datagram size; for receive - 40 1K datagrams.
149 1.196 rmind */
150 1.238 maxv static int udp_sendspace = 9216;
151 1.238 maxv static int udp_recvspace = 40 * (1024 + sizeof(struct sockaddr_in));
152 1.196 rmind
153 1.98 matt #ifdef MBUFTRACE
154 1.150 dogcow struct mowner udp_mowner = MOWNER_INIT("udp", "");
155 1.150 dogcow struct mowner udp_rx_mowner = MOWNER_INIT("udp", "rx");
156 1.150 dogcow struct mowner udp_tx_mowner = MOWNER_INIT("udp", "tx");
157 1.98 matt #endif
158 1.98 matt
159 1.78 thorpej #ifdef UDP_CSUM_COUNTERS
160 1.78 thorpej #include <sys/device.h>
161 1.78 thorpej
162 1.140 yamt #if defined(INET)
163 1.78 thorpej struct evcnt udp_hwcsum_bad = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
164 1.78 thorpej NULL, "udp", "hwcsum bad");
165 1.78 thorpej struct evcnt udp_hwcsum_ok = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
166 1.78 thorpej NULL, "udp", "hwcsum ok");
167 1.78 thorpej struct evcnt udp_hwcsum_data = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
168 1.78 thorpej NULL, "udp", "hwcsum data");
169 1.78 thorpej struct evcnt udp_swcsum = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
170 1.78 thorpej NULL, "udp", "swcsum");
171 1.78 thorpej
172 1.120 matt EVCNT_ATTACH_STATIC(udp_hwcsum_bad);
173 1.120 matt EVCNT_ATTACH_STATIC(udp_hwcsum_ok);
174 1.120 matt EVCNT_ATTACH_STATIC(udp_hwcsum_data);
175 1.120 matt EVCNT_ATTACH_STATIC(udp_swcsum);
176 1.140 yamt #endif /* defined(INET) */
177 1.140 yamt
178 1.140 yamt #define UDP_CSUM_COUNTER_INCR(ev) (ev)->ev_count++
179 1.78 thorpej #else
180 1.78 thorpej #define UDP_CSUM_COUNTER_INCR(ev) /* nothing */
181 1.78 thorpej #endif /* UDP_CSUM_COUNTERS */
182 1.78 thorpej
183 1.179 pooka static void sysctl_net_inet_udp_setup(struct sysctllog **);
184 1.179 pooka
185 1.192 pooka static int
186 1.192 pooka do_udpinit(void)
187 1.1 cgd {
188 1.18 mycroft
189 1.264 ozaki inpcb_init(&udbtable, udbhashsize, udbhashsize);
190 1.193 pooka udpstat_percpu = percpu_alloc(sizeof(uint64_t) * UDP_NSTATS);
191 1.78 thorpej
192 1.98 matt MOWNER_ATTACH(&udp_tx_mowner);
193 1.98 matt MOWNER_ATTACH(&udp_rx_mowner);
194 1.98 matt MOWNER_ATTACH(&udp_mowner);
195 1.166 thorpej
196 1.192 pooka return 0;
197 1.192 pooka }
198 1.192 pooka
199 1.192 pooka void
200 1.192 pooka udp_init_common(void)
201 1.192 pooka {
202 1.192 pooka static ONCE_DECL(doudpinit);
203 1.192 pooka
204 1.192 pooka RUN_ONCE(&doudpinit, do_udpinit);
205 1.192 pooka }
206 1.192 pooka
207 1.192 pooka void
208 1.192 pooka udp_init(void)
209 1.192 pooka {
210 1.192 pooka
211 1.192 pooka sysctl_net_inet_udp_setup(NULL);
212 1.192 pooka
213 1.192 pooka udp_init_common();
214 1.1 cgd }
215 1.1 cgd
216 1.129 yamt /*
217 1.129 yamt * Checksum extended UDP header and data.
218 1.129 yamt */
219 1.129 yamt int
220 1.129 yamt udp_input_checksum(int af, struct mbuf *m, const struct udphdr *uh,
221 1.129 yamt int iphlen, int len)
222 1.129 yamt {
223 1.129 yamt
224 1.129 yamt switch (af) {
225 1.72 itojun #ifdef INET
226 1.129 yamt case AF_INET:
227 1.129 yamt return udp4_input_checksum(m, uh, iphlen, len);
228 1.129 yamt #endif
229 1.129 yamt #ifdef INET6
230 1.129 yamt case AF_INET6:
231 1.129 yamt return udp6_input_checksum(m, uh, iphlen, len);
232 1.129 yamt #endif
233 1.129 yamt }
234 1.129 yamt #ifdef DIAGNOSTIC
235 1.129 yamt panic("udp_input_checksum: unknown af %d", af);
236 1.129 yamt #endif
237 1.129 yamt /* NOTREACHED */
238 1.129 yamt return -1;
239 1.129 yamt }
240 1.129 yamt
241 1.129 yamt #ifdef INET
242 1.129 yamt
243 1.129 yamt /*
244 1.129 yamt * Checksum extended UDP header and data.
245 1.129 yamt */
246 1.129 yamt static int
247 1.129 yamt udp4_input_checksum(struct mbuf *m, const struct udphdr *uh,
248 1.129 yamt int iphlen, int len)
249 1.129 yamt {
250 1.129 yamt
251 1.129 yamt /*
252 1.129 yamt * XXX it's better to record and check if this mbuf is
253 1.129 yamt * already checked.
254 1.129 yamt */
255 1.129 yamt
256 1.129 yamt if (uh->uh_sum == 0)
257 1.129 yamt return 0;
258 1.129 yamt
259 1.129 yamt switch (m->m_pkthdr.csum_flags &
260 1.226 ozaki ((m_get_rcvif_NOMPSAFE(m)->if_csum_flags_rx & M_CSUM_UDPv4) |
261 1.129 yamt M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
262 1.129 yamt case M_CSUM_UDPv4|M_CSUM_TCP_UDP_BAD:
263 1.129 yamt UDP_CSUM_COUNTER_INCR(&udp_hwcsum_bad);
264 1.129 yamt goto badcsum;
265 1.129 yamt
266 1.129 yamt case M_CSUM_UDPv4|M_CSUM_DATA: {
267 1.129 yamt u_int32_t hw_csum = m->m_pkthdr.csum_data;
268 1.129 yamt
269 1.129 yamt UDP_CSUM_COUNTER_INCR(&udp_hwcsum_data);
270 1.129 yamt if (m->m_pkthdr.csum_flags & M_CSUM_NO_PSEUDOHDR) {
271 1.129 yamt const struct ip *ip =
272 1.129 yamt mtod(m, const struct ip *);
273 1.129 yamt
274 1.129 yamt hw_csum = in_cksum_phdr(ip->ip_src.s_addr,
275 1.129 yamt ip->ip_dst.s_addr,
276 1.129 yamt htons(hw_csum + len + IPPROTO_UDP));
277 1.129 yamt }
278 1.129 yamt if ((hw_csum ^ 0xffff) != 0)
279 1.129 yamt goto badcsum;
280 1.129 yamt break;
281 1.129 yamt }
282 1.129 yamt
283 1.129 yamt case M_CSUM_UDPv4:
284 1.129 yamt /* Checksum was okay. */
285 1.129 yamt UDP_CSUM_COUNTER_INCR(&udp_hwcsum_ok);
286 1.129 yamt break;
287 1.129 yamt
288 1.129 yamt default:
289 1.129 yamt /*
290 1.129 yamt * Need to compute it ourselves. Maybe skip checksum
291 1.129 yamt * on loopback interfaces.
292 1.129 yamt */
293 1.226 ozaki if (__predict_true(!(m_get_rcvif_NOMPSAFE(m)->if_flags &
294 1.129 yamt IFF_LOOPBACK) ||
295 1.129 yamt udp_do_loopback_cksum)) {
296 1.129 yamt UDP_CSUM_COUNTER_INCR(&udp_swcsum);
297 1.129 yamt if (in4_cksum(m, IPPROTO_UDP, iphlen, len) != 0)
298 1.129 yamt goto badcsum;
299 1.129 yamt }
300 1.129 yamt break;
301 1.129 yamt }
302 1.129 yamt
303 1.129 yamt return 0;
304 1.129 yamt
305 1.129 yamt badcsum:
306 1.166 thorpej UDP_STATINC(UDP_STAT_BADSUM);
307 1.129 yamt return -1;
308 1.129 yamt }
309 1.129 yamt
310 1.7 mycroft void
311 1.256 maxv udp_input(struct mbuf *m, int off, int proto)
312 1.1 cgd {
313 1.53 itojun struct sockaddr_in src, dst;
314 1.53 itojun struct ip *ip;
315 1.53 itojun struct udphdr *uh;
316 1.256 maxv int iphlen = off;
317 1.53 itojun int len;
318 1.53 itojun int n;
319 1.96 itojun u_int16_t ip_len;
320 1.53 itojun
321 1.98 matt MCLAIM(m, &udp_rx_mowner);
322 1.166 thorpej UDP_STATINC(UDP_STAT_IPACKETS);
323 1.53 itojun
324 1.53 itojun /*
325 1.53 itojun * Get IP and UDP header together in first mbuf.
326 1.53 itojun */
327 1.53 itojun ip = mtod(m, struct ip *);
328 1.252 maxv M_REGION_GET(uh, struct udphdr *, m, iphlen, sizeof(struct udphdr));
329 1.53 itojun if (uh == NULL) {
330 1.166 thorpej UDP_STATINC(UDP_STAT_HDROPS);
331 1.53 itojun return;
332 1.53 itojun }
333 1.238 maxv
334 1.228 mlelstv /*
335 1.228 mlelstv * Enforce alignment requirements that are violated in
336 1.228 mlelstv * some cases, see kern/50766 for details.
337 1.228 mlelstv */
338 1.261 christos if (ACCESSIBLE_POINTER(uh, struct udphdr) == 0) {
339 1.228 mlelstv m = m_copyup(m, iphlen + sizeof(struct udphdr), 0);
340 1.228 mlelstv if (m == NULL) {
341 1.228 mlelstv UDP_STATINC(UDP_STAT_HDROPS);
342 1.228 mlelstv return;
343 1.228 mlelstv }
344 1.228 mlelstv ip = mtod(m, struct ip *);
345 1.228 mlelstv uh = (struct udphdr *)(mtod(m, char *) + iphlen);
346 1.228 mlelstv }
347 1.261 christos KASSERT(ACCESSIBLE_POINTER(uh, struct udphdr));
348 1.53 itojun
349 1.57 itojun /* destination port of 0 is illegal, based on RFC768. */
350 1.57 itojun if (uh->uh_dport == 0)
351 1.57 itojun goto bad;
352 1.57 itojun
353 1.53 itojun /*
354 1.53 itojun * Make mbuf data length reflect UDP length.
355 1.53 itojun * If not enough data to reflect UDP length, drop.
356 1.53 itojun */
357 1.96 itojun ip_len = ntohs(ip->ip_len);
358 1.53 itojun len = ntohs((u_int16_t)uh->uh_ulen);
359 1.248 maxv if (len < sizeof(struct udphdr)) {
360 1.248 maxv UDP_STATINC(UDP_STAT_BADLEN);
361 1.248 maxv goto bad;
362 1.248 maxv }
363 1.96 itojun if (ip_len != iphlen + len) {
364 1.248 maxv if (ip_len < iphlen + len) {
365 1.166 thorpej UDP_STATINC(UDP_STAT_BADLEN);
366 1.53 itojun goto bad;
367 1.53 itojun }
368 1.96 itojun m_adj(m, iphlen + len - ip_len);
369 1.53 itojun }
370 1.53 itojun
371 1.53 itojun /*
372 1.53 itojun * Checksum extended UDP header and data.
373 1.53 itojun */
374 1.129 yamt if (udp4_input_checksum(m, uh, iphlen, len))
375 1.129 yamt goto badcsum;
376 1.53 itojun
377 1.53 itojun /* construct source and dst sockaddrs. */
378 1.159 dyoung sockaddr_in_init(&src, &ip->ip_src, uh->uh_sport);
379 1.159 dyoung sockaddr_in_init(&dst, &ip->ip_dst, uh->uh_dport);
380 1.53 itojun
381 1.144 manu if ((n = udp4_realinput(&src, &dst, &m, iphlen)) == -1) {
382 1.166 thorpej UDP_STATINC(UDP_STAT_HDROPS);
383 1.144 manu return;
384 1.144 manu }
385 1.188 christos if (m == NULL) {
386 1.188 christos /*
387 1.188 christos * packet has been processed by ESP stuff -
388 1.188 christos * e.g. dropped NAT-T-keep-alive-packet ...
389 1.188 christos */
390 1.188 christos return;
391 1.188 christos }
392 1.237 maxv
393 1.242 maxv ip = mtod(m, struct ip *);
394 1.252 maxv M_REGION_GET(uh, struct udphdr *, m, iphlen, sizeof(struct udphdr));
395 1.242 maxv if (uh == NULL) {
396 1.242 maxv UDP_STATINC(UDP_STAT_HDROPS);
397 1.242 maxv return;
398 1.242 maxv }
399 1.242 maxv /* XXX Re-enforce alignment? */
400 1.242 maxv
401 1.53 itojun #ifdef INET6
402 1.53 itojun if (IN_MULTICAST(ip->ip_dst.s_addr) || n == 0) {
403 1.53 itojun struct sockaddr_in6 src6, dst6;
404 1.53 itojun
405 1.175 cegger memset(&src6, 0, sizeof(src6));
406 1.53 itojun src6.sin6_family = AF_INET6;
407 1.53 itojun src6.sin6_len = sizeof(struct sockaddr_in6);
408 1.224 rtr in6_in_2_v4mapin6(&ip->ip_src, &src6.sin6_addr);
409 1.53 itojun src6.sin6_port = uh->uh_sport;
410 1.175 cegger memset(&dst6, 0, sizeof(dst6));
411 1.53 itojun dst6.sin6_family = AF_INET6;
412 1.53 itojun dst6.sin6_len = sizeof(struct sockaddr_in6);
413 1.224 rtr in6_in_2_v4mapin6(&ip->ip_dst, &dst6.sin6_addr);
414 1.53 itojun dst6.sin6_port = uh->uh_dport;
415 1.53 itojun
416 1.257 knakahar n += udp6_realinput(AF_INET, &src6, &dst6, &m, iphlen);
417 1.53 itojun }
418 1.53 itojun #endif
419 1.53 itojun
420 1.53 itojun if (n == 0) {
421 1.53 itojun if (m->m_flags & (M_BCAST | M_MCAST)) {
422 1.166 thorpej UDP_STATINC(UDP_STAT_NOPORTBCAST);
423 1.53 itojun goto bad;
424 1.53 itojun }
425 1.166 thorpej UDP_STATINC(UDP_STAT_NOPORT);
426 1.53 itojun icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
427 1.53 itojun m = NULL;
428 1.53 itojun }
429 1.53 itojun
430 1.53 itojun bad:
431 1.53 itojun if (m)
432 1.53 itojun m_freem(m);
433 1.78 thorpej return;
434 1.78 thorpej
435 1.78 thorpej badcsum:
436 1.78 thorpej m_freem(m);
437 1.53 itojun }
438 1.72 itojun #endif
439 1.53 itojun
440 1.72 itojun #ifdef INET
441 1.53 itojun static void
442 1.119 matt udp4_sendup(struct mbuf *m, int off /* offset of data portion */,
443 1.238 maxv struct sockaddr *src, struct socket *so)
444 1.53 itojun {
445 1.53 itojun struct mbuf *opts = NULL;
446 1.53 itojun struct mbuf *n;
447 1.232 ozaki struct inpcb *inp;
448 1.53 itojun
449 1.233 ozaki KASSERT(so != NULL);
450 1.232 ozaki KASSERT(so->so_proto->pr_domain->dom_family == AF_INET);
451 1.232 ozaki inp = sotoinpcb(so);
452 1.232 ozaki KASSERT(inp != NULL);
453 1.53 itojun
454 1.190 christos #if defined(IPSEC)
455 1.243 maxv if (ipsec_used && ipsec_in_reject(m, inp)) {
456 1.162 dyoung if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)
457 1.110 itojun icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,
458 1.110 itojun 0, 0);
459 1.53 itojun return;
460 1.53 itojun }
461 1.238 maxv #endif
462 1.53 itojun
463 1.162 dyoung if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {
464 1.238 maxv if (inp->inp_flags & INP_CONTROLOPTS ||
465 1.238 maxv SOOPT_TIMESTAMP(so->so_options)) {
466 1.53 itojun struct ip *ip = mtod(n, struct ip *);
467 1.53 itojun ip_savecontrol(inp, &opts, ip, n);
468 1.53 itojun }
469 1.53 itojun
470 1.53 itojun m_adj(n, off);
471 1.238 maxv if (sbappendaddr(&so->so_rcv, src, n, opts) == 0) {
472 1.53 itojun m_freem(n);
473 1.53 itojun if (opts)
474 1.53 itojun m_freem(opts);
475 1.166 thorpej UDP_STATINC(UDP_STAT_FULLSOCK);
476 1.246 roy soroverflow(so);
477 1.53 itojun } else
478 1.53 itojun sorwakeup(so);
479 1.53 itojun }
480 1.53 itojun }
481 1.72 itojun #endif
482 1.53 itojun
483 1.72 itojun #ifdef INET
484 1.53 itojun static int
485 1.119 matt udp4_realinput(struct sockaddr_in *src, struct sockaddr_in *dst,
486 1.238 maxv struct mbuf **mp, int off /* offset of udphdr */)
487 1.53 itojun {
488 1.53 itojun u_int16_t *sport, *dport;
489 1.53 itojun int rcvcnt;
490 1.53 itojun struct in_addr *src4, *dst4;
491 1.53 itojun struct inpcb *inp;
492 1.144 manu struct mbuf *m = *mp;
493 1.53 itojun
494 1.53 itojun rcvcnt = 0;
495 1.53 itojun off += sizeof(struct udphdr); /* now, offset of payload */
496 1.53 itojun
497 1.53 itojun if (src->sin_family != AF_INET || dst->sin_family != AF_INET)
498 1.53 itojun goto bad;
499 1.53 itojun
500 1.53 itojun src4 = &src->sin_addr;
501 1.53 itojun sport = &src->sin_port;
502 1.53 itojun dst4 = &dst->sin_addr;
503 1.53 itojun dport = &dst->sin_port;
504 1.53 itojun
505 1.73 itojun if (IN_MULTICAST(dst4->s_addr) ||
506 1.226 ozaki in_broadcast(*dst4, m_get_rcvif_NOMPSAFE(m))) {
507 1.53 itojun /*
508 1.53 itojun * Deliver a multicast or broadcast datagram to *all* sockets
509 1.53 itojun * for which the local and remote addresses and ports match
510 1.53 itojun * those of the incoming datagram. This allows more than
511 1.53 itojun * one process to receive multi/broadcasts on the same port.
512 1.53 itojun * (This really ought to be done for unicast datagrams as
513 1.53 itojun * well, but that would cause problems with existing
514 1.53 itojun * applications that open both address-specific sockets and
515 1.53 itojun * a wildcard socket listening to the same port -- they would
516 1.53 itojun * end up receiving duplicates of every unicast datagram.
517 1.53 itojun * Those applications open the multiple sockets to overcome an
518 1.53 itojun * inadequacy of the UDP socket interface, but for backwards
519 1.53 itojun * compatibility we avoid the problem here rather than
520 1.53 itojun * fixing the interface. Maybe 4.5BSD will remedy this?)
521 1.53 itojun */
522 1.53 itojun
523 1.53 itojun /*
524 1.92 itojun * KAME note: traditionally we dropped udpiphdr from mbuf here.
525 1.71 itojun * we need udpiphdr for IPsec processing so we do that later.
526 1.53 itojun */
527 1.53 itojun /*
528 1.53 itojun * Locate pcb(s) for datagram.
529 1.53 itojun */
530 1.262 ozaki TAILQ_FOREACH(inp, &udbtable.inpt_queue, inp_queue) {
531 1.109 itojun if (inp->inp_af != AF_INET)
532 1.109 itojun continue;
533 1.109 itojun
534 1.53 itojun if (inp->inp_lport != *dport)
535 1.53 itojun continue;
536 1.263 ozaki if (!in_nullhost(in4p_laddr(inp))) {
537 1.263 ozaki if (!in_hosteq(in4p_laddr(inp), *dst4))
538 1.53 itojun continue;
539 1.53 itojun }
540 1.263 ozaki if (!in_nullhost(in4p_faddr(inp))) {
541 1.263 ozaki if (!in_hosteq(in4p_faddr(inp), *src4) ||
542 1.53 itojun inp->inp_fport != *sport)
543 1.53 itojun continue;
544 1.53 itojun }
545 1.53 itojun
546 1.53 itojun udp4_sendup(m, off, (struct sockaddr *)src,
547 1.238 maxv inp->inp_socket);
548 1.53 itojun rcvcnt++;
549 1.53 itojun
550 1.53 itojun /*
551 1.53 itojun * Don't look for additional matches if this one does
552 1.53 itojun * not have either the SO_REUSEPORT or SO_REUSEADDR
553 1.53 itojun * socket options set. This heuristic avoids searching
554 1.53 itojun * through all pcbs in the common case of a non-shared
555 1.53 itojun * port. It assumes that an application will never
556 1.53 itojun * clear these options after setting them.
557 1.53 itojun */
558 1.53 itojun if ((inp->inp_socket->so_options &
559 1.53 itojun (SO_REUSEPORT|SO_REUSEADDR)) == 0)
560 1.53 itojun break;
561 1.53 itojun }
562 1.53 itojun } else {
563 1.53 itojun /*
564 1.53 itojun * Locate pcb for datagram.
565 1.53 itojun */
566 1.264 ozaki inp = inpcb_lookup(&udbtable, *src4, *sport, *dst4,
567 1.180 dyoung *dport, 0);
568 1.53 itojun if (inp == 0) {
569 1.166 thorpej UDP_STATINC(UDP_STAT_PCBHASHMISS);
570 1.264 ozaki inp = inpcb_lookup_bound(&udbtable, *dst4, *dport);
571 1.82 itojun if (inp == 0)
572 1.53 itojun return rcvcnt;
573 1.53 itojun }
574 1.53 itojun
575 1.190 christos #ifdef IPSEC
576 1.130 manu /* Handle ESP over UDP */
577 1.253 maxv if (inp->inp_flags & INP_ESPINUDP) {
578 1.258 maxv switch (udp4_espinudp(mp, off)) {
579 1.242 maxv case -1: /* Error, m was freed */
580 1.242 maxv rcvcnt = -1;
581 1.242 maxv goto bad;
582 1.242 maxv
583 1.242 maxv case 1: /* ESP over UDP */
584 1.242 maxv rcvcnt++;
585 1.242 maxv goto bad;
586 1.242 maxv
587 1.242 maxv case 0: /* plain UDP */
588 1.242 maxv default: /* Unexpected */
589 1.242 maxv /*
590 1.242 maxv * Normal UDP processing will take place,
591 1.242 maxv * m may have changed.
592 1.242 maxv */
593 1.242 maxv m = *mp;
594 1.242 maxv break;
595 1.242 maxv }
596 1.130 manu }
597 1.189 christos #endif
598 1.259 riastrad if (inp->inp_overudp_cb != NULL) {
599 1.259 riastrad int ret;
600 1.259 riastrad ret = inp->inp_overudp_cb(mp, off, inp->inp_socket,
601 1.259 riastrad sintosa(src), inp->inp_overudp_arg);
602 1.259 riastrad switch (ret) {
603 1.259 riastrad case -1: /* Error, m was freed */
604 1.259 riastrad rcvcnt = -1;
605 1.259 riastrad goto bad;
606 1.259 riastrad
607 1.259 riastrad case 1: /* Foo over UDP */
608 1.259 riastrad KASSERT(*mp == NULL);
609 1.259 riastrad rcvcnt++;
610 1.259 riastrad goto bad;
611 1.259 riastrad
612 1.259 riastrad case 0: /* plain UDP */
613 1.259 riastrad default: /* Unexpected */
614 1.259 riastrad /*
615 1.259 riastrad * Normal UDP processing will take place,
616 1.259 riastrad * m may have changed.
617 1.259 riastrad */
618 1.259 riastrad m = *mp;
619 1.259 riastrad break;
620 1.259 riastrad }
621 1.259 riastrad }
622 1.130 manu
623 1.178 minskim /*
624 1.178 minskim * Check the minimum TTL for socket.
625 1.178 minskim */
626 1.263 ozaki if (mtod(m, struct ip *)->ip_ttl < in4p_ip_minttl(inp))
627 1.178 minskim goto bad;
628 1.178 minskim
629 1.53 itojun udp4_sendup(m, off, (struct sockaddr *)src, inp->inp_socket);
630 1.53 itojun rcvcnt++;
631 1.53 itojun }
632 1.53 itojun
633 1.53 itojun bad:
634 1.53 itojun return rcvcnt;
635 1.53 itojun }
636 1.72 itojun #endif
637 1.53 itojun
638 1.72 itojun #ifdef INET
639 1.1 cgd /*
640 1.1 cgd * Notify a udp user of an asynchronous error;
641 1.1 cgd * just wake up so that he can collect error status.
642 1.1 cgd */
643 1.7 mycroft static void
644 1.119 matt udp_notify(struct inpcb *inp, int errno)
645 1.1 cgd {
646 1.1 cgd inp->inp_socket->so_error = errno;
647 1.1 cgd sorwakeup(inp->inp_socket);
648 1.1 cgd sowwakeup(inp->inp_socket);
649 1.1 cgd }
650 1.1 cgd
651 1.27 christos void *
652 1.157 dyoung udp_ctlinput(int cmd, const struct sockaddr *sa, void *v)
653 1.1 cgd {
654 1.66 augustss struct ip *ip = v;
655 1.66 augustss struct udphdr *uh;
656 1.119 matt void (*notify)(struct inpcb *, int) = udp_notify;
657 1.21 mycroft int errno;
658 1.1 cgd
659 1.238 maxv if (sa->sa_family != AF_INET ||
660 1.238 maxv sa->sa_len != sizeof(struct sockaddr_in))
661 1.51 itojun return NULL;
662 1.20 mycroft if ((unsigned)cmd >= PRC_NCMDS)
663 1.27 christos return NULL;
664 1.239 maxv
665 1.20 mycroft errno = inetctlerrmap[cmd];
666 1.239 maxv if (PRC_IS_REDIRECT(cmd)) {
667 1.264 ozaki notify = inpcb_rtchange;
668 1.239 maxv ip = NULL;
669 1.239 maxv } else if (cmd == PRC_HOSTDEAD) {
670 1.239 maxv ip = NULL;
671 1.239 maxv } else if (errno == 0) {
672 1.27 christos return NULL;
673 1.239 maxv }
674 1.239 maxv
675 1.19 mycroft if (ip) {
676 1.158 christos uh = (struct udphdr *)((char *)ip + (ip->ip_hl << 2));
677 1.264 ozaki inpcb_notify(&udbtable, satocsin(sa)->sin_addr, uh->uh_dport,
678 1.34 mycroft ip->ip_src, uh->uh_sport, errno, notify);
679 1.53 itojun /* XXX mapped address case */
680 1.239 maxv } else {
681 1.264 ozaki inpcb_notifyall(&udbtable, satocsin(sa)->sin_addr, errno,
682 1.34 mycroft notify);
683 1.239 maxv }
684 1.239 maxv
685 1.27 christos return NULL;
686 1.1 cgd }
687 1.1 cgd
688 1.7 mycroft int
689 1.173 plunky udp_ctloutput(int op, struct socket *so, struct sockopt *sopt)
690 1.130 manu {
691 1.130 manu int s;
692 1.130 manu int error = 0;
693 1.130 manu struct inpcb *inp;
694 1.130 manu int family;
695 1.173 plunky int optval;
696 1.130 manu
697 1.130 manu family = so->so_proto->pr_domain->dom_family;
698 1.130 manu
699 1.130 manu s = splsoftnet();
700 1.130 manu switch (family) {
701 1.130 manu #ifdef INET
702 1.130 manu case PF_INET:
703 1.173 plunky if (sopt->sopt_level != IPPROTO_UDP) {
704 1.173 plunky error = ip_ctloutput(op, so, sopt);
705 1.130 manu goto end;
706 1.130 manu }
707 1.130 manu break;
708 1.130 manu #endif
709 1.130 manu #ifdef INET6
710 1.130 manu case PF_INET6:
711 1.173 plunky if (sopt->sopt_level != IPPROTO_UDP) {
712 1.173 plunky error = ip6_ctloutput(op, so, sopt);
713 1.130 manu goto end;
714 1.130 manu }
715 1.130 manu break;
716 1.130 manu #endif
717 1.130 manu default:
718 1.130 manu error = EAFNOSUPPORT;
719 1.130 manu goto end;
720 1.130 manu }
721 1.130 manu
722 1.130 manu
723 1.130 manu switch (op) {
724 1.130 manu case PRCO_SETOPT:
725 1.130 manu inp = sotoinpcb(so);
726 1.130 manu
727 1.173 plunky switch (sopt->sopt_name) {
728 1.130 manu case UDP_ENCAP:
729 1.173 plunky error = sockopt_getint(sopt, &optval);
730 1.173 plunky if (error)
731 1.153 yamt break;
732 1.131 perry
733 1.173 plunky switch(optval) {
734 1.130 manu case 0:
735 1.253 maxv inp->inp_flags &= ~INP_ESPINUDP;
736 1.130 manu break;
737 1.130 manu
738 1.130 manu case UDP_ENCAP_ESPINUDP:
739 1.130 manu inp->inp_flags |= INP_ESPINUDP;
740 1.130 manu break;
741 1.131 perry
742 1.130 manu default:
743 1.130 manu error = EINVAL;
744 1.130 manu break;
745 1.130 manu }
746 1.130 manu break;
747 1.238 maxv
748 1.130 manu default:
749 1.130 manu error = ENOPROTOOPT;
750 1.130 manu break;
751 1.130 manu }
752 1.130 manu break;
753 1.130 manu
754 1.130 manu default:
755 1.130 manu error = EINVAL;
756 1.130 manu break;
757 1.131 perry }
758 1.131 perry
759 1.130 manu end:
760 1.130 manu splx(s);
761 1.130 manu return error;
762 1.130 manu }
763 1.131 perry
764 1.130 manu int
765 1.235 ryo udp_output(struct mbuf *m, struct inpcb *inp, struct mbuf *control,
766 1.235 ryo struct lwp *l)
767 1.27 christos {
768 1.66 augustss struct udpiphdr *ui;
769 1.125 thorpej struct route *ro;
770 1.235 ryo struct ip_pktopts pktopts;
771 1.235 ryo kauth_cred_t cred;
772 1.66 augustss int len = m->m_pkthdr.len;
773 1.235 ryo int error, flags = 0;
774 1.27 christos
775 1.98 matt MCLAIM(m, &udp_tx_mowner);
776 1.1 cgd
777 1.1 cgd /*
778 1.1 cgd * Calculate data length and get a mbuf
779 1.1 cgd * for UDP and IP headers.
780 1.1 cgd */
781 1.13 mycroft M_PREPEND(m, sizeof(struct udpiphdr), M_DONTWAIT);
782 1.239 maxv if (m == NULL) {
783 1.13 mycroft error = ENOBUFS;
784 1.39 thorpej goto release;
785 1.39 thorpej }
786 1.39 thorpej
787 1.39 thorpej /*
788 1.39 thorpej * Compute the packet length of the IP header, and
789 1.39 thorpej * punt if the length looks bogus.
790 1.39 thorpej */
791 1.96 itojun if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) {
792 1.39 thorpej error = EMSGSIZE;
793 1.13 mycroft goto release;
794 1.13 mycroft }
795 1.1 cgd
796 1.235 ryo if (l == NULL)
797 1.235 ryo cred = NULL;
798 1.235 ryo else
799 1.235 ryo cred = l->l_cred;
800 1.235 ryo
801 1.235 ryo /* Setup IP outgoing packet options */
802 1.235 ryo memset(&pktopts, 0, sizeof(pktopts));
803 1.236 ryo error = ip_setpktopts(control, &pktopts, &flags, inp, cred);
804 1.235 ryo if (error != 0)
805 1.235 ryo goto release;
806 1.235 ryo
807 1.235 ryo if (control != NULL) {
808 1.235 ryo m_freem(control);
809 1.235 ryo control = NULL;
810 1.235 ryo }
811 1.235 ryo
812 1.1 cgd /*
813 1.1 cgd * Fill in mbuf with extended UDP header
814 1.1 cgd * and addresses and length put into network format.
815 1.1 cgd */
816 1.1 cgd ui = mtod(m, struct udpiphdr *);
817 1.1 cgd ui->ui_pr = IPPROTO_UDP;
818 1.235 ryo ui->ui_src = pktopts.ippo_laddr.sin_addr;
819 1.263 ozaki ui->ui_dst = in4p_faddr(inp);
820 1.1 cgd ui->ui_sport = inp->inp_lport;
821 1.1 cgd ui->ui_dport = inp->inp_fport;
822 1.78 thorpej ui->ui_ulen = htons((u_int16_t)len + sizeof(struct udphdr));
823 1.1 cgd
824 1.125 thorpej ro = &inp->inp_route;
825 1.125 thorpej
826 1.1 cgd /*
827 1.78 thorpej * Set up checksum and output datagram.
828 1.1 cgd */
829 1.1 cgd if (udpcksum) {
830 1.78 thorpej /*
831 1.78 thorpej * XXX Cache pseudo-header checksum part for
832 1.78 thorpej * XXX "connected" UDP sockets.
833 1.78 thorpej */
834 1.78 thorpej ui->ui_sum = in_cksum_phdr(ui->ui_src.s_addr,
835 1.78 thorpej ui->ui_dst.s_addr, htons((u_int16_t)len +
836 1.78 thorpej sizeof(struct udphdr) + IPPROTO_UDP));
837 1.135 yamt m->m_pkthdr.csum_flags = M_CSUM_UDPv4;
838 1.78 thorpej m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
839 1.78 thorpej } else
840 1.78 thorpej ui->ui_sum = 0;
841 1.239 maxv
842 1.239 maxv ((struct ip *)ui)->ip_len = htons(sizeof(struct udpiphdr) + len);
843 1.263 ozaki ((struct ip *)ui)->ip_ttl = in4p_ip(inp).ip_ttl; /* XXX */
844 1.263 ozaki ((struct ip *)ui)->ip_tos = in4p_ip(inp).ip_tos; /* XXX */
845 1.166 thorpej UDP_STATINC(UDP_STAT_OPACKETS);
846 1.48 itojun
847 1.235 ryo flags |= inp->inp_socket->so_options & (SO_DONTROUTE|SO_BROADCAST);
848 1.235 ryo return ip_output(m, inp->inp_options, ro, flags, pktopts.ippo_imo, inp);
849 1.1 cgd
850 1.235 ryo release:
851 1.235 ryo if (control != NULL)
852 1.235 ryo m_freem(control);
853 1.1 cgd m_freem(m);
854 1.235 ryo return error;
855 1.1 cgd }
856 1.1 cgd
857 1.196 rmind static int
858 1.196 rmind udp_attach(struct socket *so, int proto)
859 1.196 rmind {
860 1.196 rmind struct inpcb *inp;
861 1.196 rmind int error;
862 1.196 rmind
863 1.196 rmind KASSERT(sotoinpcb(so) == NULL);
864 1.196 rmind
865 1.196 rmind /* Assign the lock (must happen even if we will error out). */
866 1.196 rmind sosetlock(so);
867 1.196 rmind
868 1.196 rmind #ifdef MBUFTRACE
869 1.196 rmind so->so_mowner = &udp_mowner;
870 1.196 rmind so->so_rcv.sb_mowner = &udp_rx_mowner;
871 1.196 rmind so->so_snd.sb_mowner = &udp_tx_mowner;
872 1.196 rmind #endif
873 1.196 rmind if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
874 1.196 rmind error = soreserve(so, udp_sendspace, udp_recvspace);
875 1.196 rmind if (error) {
876 1.196 rmind return error;
877 1.196 rmind }
878 1.196 rmind }
879 1.196 rmind
880 1.264 ozaki error = inpcb_create(so, &udbtable);
881 1.196 rmind if (error) {
882 1.196 rmind return error;
883 1.196 rmind }
884 1.196 rmind inp = sotoinpcb(so);
885 1.263 ozaki in4p_ip(inp).ip_ttl = ip_defttl;
886 1.196 rmind KASSERT(solocked(so));
887 1.196 rmind
888 1.196 rmind return error;
889 1.196 rmind }
890 1.196 rmind
891 1.196 rmind static void
892 1.196 rmind udp_detach(struct socket *so)
893 1.196 rmind {
894 1.196 rmind struct inpcb *inp;
895 1.196 rmind
896 1.196 rmind KASSERT(solocked(so));
897 1.196 rmind inp = sotoinpcb(so);
898 1.196 rmind KASSERT(inp != NULL);
899 1.264 ozaki inpcb_destroy(inp);
900 1.196 rmind }
901 1.1 cgd
902 1.195 rmind static int
903 1.219 rtr udp_accept(struct socket *so, struct sockaddr *nam)
904 1.208 rtr {
905 1.208 rtr KASSERT(solocked(so));
906 1.208 rtr
907 1.208 rtr panic("udp_accept");
908 1.210 rtr
909 1.208 rtr return EOPNOTSUPP;
910 1.208 rtr }
911 1.208 rtr
912 1.208 rtr static int
913 1.218 rtr udp_bind(struct socket *so, struct sockaddr *nam, struct lwp *l)
914 1.210 rtr {
915 1.210 rtr struct inpcb *inp = sotoinpcb(so);
916 1.218 rtr struct sockaddr_in *sin = (struct sockaddr_in *)nam;
917 1.210 rtr int error = 0;
918 1.210 rtr int s;
919 1.210 rtr
920 1.210 rtr KASSERT(solocked(so));
921 1.210 rtr KASSERT(inp != NULL);
922 1.210 rtr KASSERT(nam != NULL);
923 1.210 rtr
924 1.210 rtr s = splsoftnet();
925 1.264 ozaki error = inpcb_bind(inp, sin, l);
926 1.210 rtr splx(s);
927 1.210 rtr
928 1.210 rtr return error;
929 1.210 rtr }
930 1.210 rtr
931 1.210 rtr static int
932 1.214 rtr udp_listen(struct socket *so, struct lwp *l)
933 1.210 rtr {
934 1.210 rtr KASSERT(solocked(so));
935 1.210 rtr
936 1.210 rtr return EOPNOTSUPP;
937 1.210 rtr }
938 1.210 rtr
939 1.211 rtr static int
940 1.221 rtr udp_connect(struct socket *so, struct sockaddr *nam, struct lwp *l)
941 1.211 rtr {
942 1.211 rtr struct inpcb *inp = sotoinpcb(so);
943 1.211 rtr int error = 0;
944 1.211 rtr int s;
945 1.211 rtr
946 1.211 rtr KASSERT(solocked(so));
947 1.211 rtr KASSERT(inp != NULL);
948 1.211 rtr KASSERT(nam != NULL);
949 1.211 rtr
950 1.211 rtr s = splsoftnet();
951 1.264 ozaki error = inpcb_connect(inp, (struct sockaddr_in *)nam, l);
952 1.211 rtr if (! error)
953 1.211 rtr soisconnected(so);
954 1.211 rtr splx(s);
955 1.211 rtr return error;
956 1.211 rtr }
957 1.210 rtr
958 1.210 rtr static int
959 1.217 rtr udp_connect2(struct socket *so, struct socket *so2)
960 1.217 rtr {
961 1.217 rtr KASSERT(solocked(so));
962 1.217 rtr
963 1.217 rtr return EOPNOTSUPP;
964 1.217 rtr }
965 1.217 rtr
966 1.217 rtr static int
967 1.212 rtr udp_disconnect(struct socket *so)
968 1.212 rtr {
969 1.212 rtr struct inpcb *inp = sotoinpcb(so);
970 1.212 rtr int s;
971 1.212 rtr
972 1.212 rtr KASSERT(solocked(so));
973 1.212 rtr KASSERT(inp != NULL);
974 1.212 rtr
975 1.212 rtr s = splsoftnet();
976 1.212 rtr /*soisdisconnected(so);*/
977 1.212 rtr so->so_state &= ~SS_ISCONNECTED; /* XXX */
978 1.264 ozaki inpcb_disconnect(inp);
979 1.263 ozaki in4p_laddr(inp) = zeroin_addr; /* XXX */
980 1.264 ozaki inpcb_set_state(inp, INP_BOUND); /* XXX */
981 1.212 rtr splx(s);
982 1.212 rtr
983 1.212 rtr return 0;
984 1.212 rtr }
985 1.212 rtr
986 1.212 rtr static int
987 1.212 rtr udp_shutdown(struct socket *so)
988 1.212 rtr {
989 1.212 rtr int s;
990 1.212 rtr
991 1.212 rtr KASSERT(solocked(so));
992 1.212 rtr
993 1.212 rtr s = splsoftnet();
994 1.212 rtr socantsendmore(so);
995 1.212 rtr splx(s);
996 1.212 rtr
997 1.212 rtr return 0;
998 1.212 rtr }
999 1.212 rtr
1000 1.212 rtr static int
1001 1.212 rtr udp_abort(struct socket *so)
1002 1.212 rtr {
1003 1.212 rtr KASSERT(solocked(so));
1004 1.212 rtr
1005 1.212 rtr panic("udp_abort");
1006 1.212 rtr
1007 1.212 rtr return EOPNOTSUPP;
1008 1.212 rtr }
1009 1.212 rtr
1010 1.212 rtr static int
1011 1.202 rtr udp_ioctl(struct socket *so, u_long cmd, void *nam, struct ifnet *ifp)
1012 1.200 rtr {
1013 1.202 rtr return in_control(so, cmd, nam, ifp);
1014 1.200 rtr }
1015 1.200 rtr
1016 1.200 rtr static int
1017 1.203 rtr udp_stat(struct socket *so, struct stat *ub)
1018 1.203 rtr {
1019 1.206 rtr KASSERT(solocked(so));
1020 1.206 rtr
1021 1.205 rtr /* stat: don't bother with a blocksize. */
1022 1.205 rtr return 0;
1023 1.203 rtr }
1024 1.203 rtr
1025 1.203 rtr static int
1026 1.219 rtr udp_peeraddr(struct socket *so, struct sockaddr *nam)
1027 1.207 rtr {
1028 1.213 rtr int s;
1029 1.213 rtr
1030 1.207 rtr KASSERT(solocked(so));
1031 1.207 rtr KASSERT(sotoinpcb(so) != NULL);
1032 1.207 rtr KASSERT(nam != NULL);
1033 1.207 rtr
1034 1.213 rtr s = splsoftnet();
1035 1.264 ozaki inpcb_fetch_peeraddr(sotoinpcb(so), (struct sockaddr_in *)nam);
1036 1.213 rtr splx(s);
1037 1.213 rtr
1038 1.207 rtr return 0;
1039 1.207 rtr }
1040 1.207 rtr
1041 1.207 rtr static int
1042 1.219 rtr udp_sockaddr(struct socket *so, struct sockaddr *nam)
1043 1.207 rtr {
1044 1.213 rtr int s;
1045 1.213 rtr
1046 1.207 rtr KASSERT(solocked(so));
1047 1.207 rtr KASSERT(sotoinpcb(so) != NULL);
1048 1.207 rtr KASSERT(nam != NULL);
1049 1.207 rtr
1050 1.213 rtr s = splsoftnet();
1051 1.264 ozaki inpcb_fetch_sockaddr(sotoinpcb(so), (struct sockaddr_in *)nam);
1052 1.213 rtr splx(s);
1053 1.213 rtr
1054 1.207 rtr return 0;
1055 1.207 rtr }
1056 1.207 rtr
1057 1.207 rtr static int
1058 1.216 rtr udp_rcvd(struct socket *so, int flags, struct lwp *l)
1059 1.216 rtr {
1060 1.216 rtr KASSERT(solocked(so));
1061 1.216 rtr
1062 1.216 rtr return EOPNOTSUPP;
1063 1.216 rtr }
1064 1.216 rtr
1065 1.216 rtr static int
1066 1.209 rtr udp_recvoob(struct socket *so, struct mbuf *m, int flags)
1067 1.209 rtr {
1068 1.209 rtr KASSERT(solocked(so));
1069 1.209 rtr
1070 1.209 rtr return EOPNOTSUPP;
1071 1.209 rtr }
1072 1.209 rtr
1073 1.259 riastrad int
1074 1.221 rtr udp_send(struct socket *so, struct mbuf *m, struct sockaddr *nam,
1075 1.215 rtr struct mbuf *control, struct lwp *l)
1076 1.215 rtr {
1077 1.215 rtr struct inpcb *inp = sotoinpcb(so);
1078 1.215 rtr int error = 0;
1079 1.215 rtr struct in_addr laddr; /* XXX */
1080 1.215 rtr int s;
1081 1.215 rtr
1082 1.215 rtr KASSERT(solocked(so));
1083 1.215 rtr KASSERT(inp != NULL);
1084 1.215 rtr KASSERT(m != NULL);
1085 1.215 rtr
1086 1.215 rtr memset(&laddr, 0, sizeof laddr);
1087 1.215 rtr
1088 1.215 rtr s = splsoftnet();
1089 1.215 rtr if (nam) {
1090 1.263 ozaki laddr = in4p_laddr(inp); /* XXX */
1091 1.215 rtr if ((so->so_state & SS_ISCONNECTED) != 0) {
1092 1.215 rtr error = EISCONN;
1093 1.215 rtr goto die;
1094 1.215 rtr }
1095 1.264 ozaki error = inpcb_connect(inp, (struct sockaddr_in *)nam, l);
1096 1.215 rtr if (error)
1097 1.215 rtr goto die;
1098 1.215 rtr } else {
1099 1.215 rtr if ((so->so_state & SS_ISCONNECTED) == 0) {
1100 1.215 rtr error = ENOTCONN;
1101 1.215 rtr goto die;
1102 1.215 rtr }
1103 1.215 rtr }
1104 1.235 ryo error = udp_output(m, inp, control, l);
1105 1.215 rtr m = NULL;
1106 1.235 ryo control = NULL;
1107 1.215 rtr if (nam) {
1108 1.264 ozaki inpcb_disconnect(inp);
1109 1.263 ozaki in4p_laddr(inp) = laddr; /* XXX */
1110 1.264 ozaki inpcb_set_state(inp, INP_BOUND); /* XXX */
1111 1.215 rtr }
1112 1.215 rtr die:
1113 1.235 ryo if (m != NULL)
1114 1.215 rtr m_freem(m);
1115 1.235 ryo if (control != NULL)
1116 1.235 ryo m_freem(control);
1117 1.215 rtr
1118 1.215 rtr splx(s);
1119 1.215 rtr return error;
1120 1.215 rtr }
1121 1.215 rtr
1122 1.215 rtr static int
1123 1.209 rtr udp_sendoob(struct socket *so, struct mbuf *m, struct mbuf *control)
1124 1.209 rtr {
1125 1.209 rtr KASSERT(solocked(so));
1126 1.209 rtr
1127 1.209 rtr m_freem(m);
1128 1.209 rtr m_freem(control);
1129 1.209 rtr
1130 1.209 rtr return EOPNOTSUPP;
1131 1.209 rtr }
1132 1.209 rtr
1133 1.209 rtr static int
1134 1.217 rtr udp_purgeif(struct socket *so, struct ifnet *ifp)
1135 1.217 rtr {
1136 1.217 rtr int s;
1137 1.217 rtr
1138 1.217 rtr s = splsoftnet();
1139 1.217 rtr mutex_enter(softnet_lock);
1140 1.264 ozaki inpcb_purgeif0(&udbtable, ifp);
1141 1.230 ozaki #ifdef NET_MPSAFE
1142 1.230 ozaki mutex_exit(softnet_lock);
1143 1.229 knakahar #endif
1144 1.217 rtr in_purgeif(ifp);
1145 1.230 ozaki #ifdef NET_MPSAFE
1146 1.230 ozaki mutex_enter(softnet_lock);
1147 1.230 ozaki #endif
1148 1.264 ozaki inpcb_purgeif(&udbtable, ifp);
1149 1.217 rtr mutex_exit(softnet_lock);
1150 1.217 rtr splx(s);
1151 1.217 rtr
1152 1.217 rtr return 0;
1153 1.217 rtr }
1154 1.217 rtr
1155 1.217 rtr static int
1156 1.166 thorpej sysctl_net_inet_udp_stats(SYSCTLFN_ARGS)
1157 1.166 thorpej {
1158 1.166 thorpej
1159 1.172 thorpej return (NETSTAT_SYSCTL(udpstat_percpu, UDP_NSTATS));
1160 1.166 thorpej }
1161 1.166 thorpej
1162 1.13 mycroft /*
1163 1.13 mycroft * Sysctl for udp variables.
1164 1.13 mycroft */
1165 1.179 pooka static void
1166 1.179 pooka sysctl_net_inet_udp_setup(struct sysctllog **clog)
1167 1.13 mycroft {
1168 1.194 pooka
1169 1.116 atatat sysctl_createv(clog, 0, NULL, NULL,
1170 1.116 atatat CTLFLAG_PERMANENT,
1171 1.114 atatat CTLTYPE_NODE, "inet", NULL,
1172 1.114 atatat NULL, 0, NULL, 0,
1173 1.114 atatat CTL_NET, PF_INET, CTL_EOL);
1174 1.116 atatat sysctl_createv(clog, 0, NULL, NULL,
1175 1.116 atatat CTLFLAG_PERMANENT,
1176 1.122 atatat CTLTYPE_NODE, "udp",
1177 1.122 atatat SYSCTL_DESCR("UDPv4 related settings"),
1178 1.114 atatat NULL, 0, NULL, 0,
1179 1.114 atatat CTL_NET, PF_INET, IPPROTO_UDP, CTL_EOL);
1180 1.114 atatat
1181 1.116 atatat sysctl_createv(clog, 0, NULL, NULL,
1182 1.116 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1183 1.122 atatat CTLTYPE_INT, "checksum",
1184 1.123 heas SYSCTL_DESCR("Compute UDP checksums"),
1185 1.114 atatat NULL, 0, &udpcksum, 0,
1186 1.114 atatat CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_CHECKSUM,
1187 1.114 atatat CTL_EOL);
1188 1.116 atatat sysctl_createv(clog, 0, NULL, NULL,
1189 1.116 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1190 1.122 atatat CTLTYPE_INT, "sendspace",
1191 1.122 atatat SYSCTL_DESCR("Default UDP send buffer size"),
1192 1.114 atatat NULL, 0, &udp_sendspace, 0,
1193 1.114 atatat CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_SENDSPACE,
1194 1.114 atatat CTL_EOL);
1195 1.116 atatat sysctl_createv(clog, 0, NULL, NULL,
1196 1.116 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1197 1.122 atatat CTLTYPE_INT, "recvspace",
1198 1.122 atatat SYSCTL_DESCR("Default UDP receive buffer size"),
1199 1.114 atatat NULL, 0, &udp_recvspace, 0,
1200 1.114 atatat CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_RECVSPACE,
1201 1.114 atatat CTL_EOL);
1202 1.125 thorpej sysctl_createv(clog, 0, NULL, NULL,
1203 1.125 thorpej CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1204 1.125 thorpej CTLTYPE_INT, "do_loopback_cksum",
1205 1.125 thorpej SYSCTL_DESCR("Perform UDP checksum on loopback"),
1206 1.125 thorpej NULL, 0, &udp_do_loopback_cksum, 0,
1207 1.125 thorpej CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_LOOPBACKCKSUM,
1208 1.125 thorpej CTL_EOL);
1209 1.132 atatat sysctl_createv(clog, 0, NULL, NULL,
1210 1.132 atatat CTLFLAG_PERMANENT,
1211 1.134 atatat CTLTYPE_STRUCT, "pcblist",
1212 1.132 atatat SYSCTL_DESCR("UDP protocol control block list"),
1213 1.132 atatat sysctl_inpcblist, 0, &udbtable, 0,
1214 1.132 atatat CTL_NET, PF_INET, IPPROTO_UDP, CTL_CREATE,
1215 1.132 atatat CTL_EOL);
1216 1.139 elad sysctl_createv(clog, 0, NULL, NULL,
1217 1.139 elad CTLFLAG_PERMANENT,
1218 1.139 elad CTLTYPE_STRUCT, "stats",
1219 1.139 elad SYSCTL_DESCR("UDP statistics"),
1220 1.166 thorpej sysctl_net_inet_udp_stats, 0, NULL, 0,
1221 1.139 elad CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_STATS,
1222 1.139 elad CTL_EOL);
1223 1.1 cgd }
1224 1.72 itojun #endif
1225 1.130 manu
1226 1.166 thorpej void
1227 1.166 thorpej udp_statinc(u_int stat)
1228 1.166 thorpej {
1229 1.166 thorpej
1230 1.166 thorpej KASSERT(stat < UDP_NSTATS);
1231 1.166 thorpej UDP_STATINC(stat);
1232 1.166 thorpej }
1233 1.166 thorpej
1234 1.190 christos #if defined(INET) && defined(IPSEC)
1235 1.130 manu /*
1236 1.251 maxv * Handle ESP-in-UDP packets (RFC3948).
1237 1.251 maxv *
1238 1.251 maxv * We need to distinguish between ESP packets and IKE packets. We do so by
1239 1.253 maxv * looking at the Non-ESP marker. If IKE, we process the UDP packet as usual.
1240 1.253 maxv * Otherwise, ESP, we invoke IPsec.
1241 1.251 maxv *
1242 1.242 maxv * Returns:
1243 1.242 maxv * 1 if the packet was processed
1244 1.242 maxv * 0 if normal UDP processing should take place
1245 1.242 maxv * -1 if an error occurred and m was freed
1246 1.130 manu */
1247 1.242 maxv static int
1248 1.258 maxv udp4_espinudp(struct mbuf **mp, int off)
1249 1.130 manu {
1250 1.253 maxv const size_t skip = sizeof(struct udphdr);
1251 1.130 manu size_t len;
1252 1.251 maxv uint8_t *data;
1253 1.130 manu size_t minlen;
1254 1.130 manu size_t iphdrlen;
1255 1.130 manu struct ip *ip;
1256 1.136 manu struct m_tag *tag;
1257 1.136 manu struct udphdr *udphdr;
1258 1.136 manu u_int16_t sport, dport;
1259 1.242 maxv struct mbuf *m = *mp;
1260 1.253 maxv uint32_t *marker;
1261 1.130 manu
1262 1.254 maxv minlen = off + sizeof(struct esp);
1263 1.130 manu if (minlen > m->m_pkthdr.len)
1264 1.130 manu minlen = m->m_pkthdr.len;
1265 1.130 manu
1266 1.130 manu if (m->m_len < minlen) {
1267 1.242 maxv if ((*mp = m_pullup(m, minlen)) == NULL) {
1268 1.242 maxv return -1;
1269 1.130 manu }
1270 1.242 maxv m = *mp;
1271 1.130 manu }
1272 1.130 manu
1273 1.131 perry len = m->m_len - off;
1274 1.251 maxv data = mtod(m, uint8_t *) + off;
1275 1.130 manu
1276 1.251 maxv /* Ignore keepalive packets. */
1277 1.251 maxv if ((len == 1) && (*data == 0xff)) {
1278 1.242 maxv m_freem(m);
1279 1.251 maxv *mp = NULL; /* avoid any further processing by caller */
1280 1.242 maxv return 1;
1281 1.130 manu }
1282 1.130 manu
1283 1.251 maxv /* Handle Non-ESP marker (32bit). If zero, then IKE. */
1284 1.253 maxv marker = (uint32_t *)data;
1285 1.253 maxv if (len <= sizeof(uint32_t))
1286 1.253 maxv return 0;
1287 1.253 maxv if (marker[0] == 0)
1288 1.253 maxv return 0;
1289 1.130 manu
1290 1.130 manu /*
1291 1.251 maxv * Get the UDP ports. They are handled in network order
1292 1.251 maxv * everywhere in the IPSEC_NAT_T code.
1293 1.136 manu */
1294 1.158 christos udphdr = (struct udphdr *)((char *)data - skip);
1295 1.136 manu sport = udphdr->uh_sport;
1296 1.136 manu dport = udphdr->uh_dport;
1297 1.136 manu
1298 1.136 manu /*
1299 1.251 maxv * Remove the UDP header, plus a possible marker. IP header
1300 1.251 maxv * length is iphdrlen.
1301 1.251 maxv *
1302 1.131 perry * Before:
1303 1.130 manu * <--- off --->
1304 1.130 manu * +----+------+-----+
1305 1.130 manu * | IP | UDP | ESP |
1306 1.130 manu * +----+------+-----+
1307 1.130 manu * <-skip->
1308 1.130 manu * After:
1309 1.130 manu * +----+-----+
1310 1.130 manu * | IP | ESP |
1311 1.130 manu * +----+-----+
1312 1.130 manu * <-skip->
1313 1.130 manu */
1314 1.130 manu iphdrlen = off - sizeof(struct udphdr);
1315 1.158 christos memmove(mtod(m, char *) + skip, mtod(m, void *), iphdrlen);
1316 1.130 manu m_adj(m, skip);
1317 1.130 manu
1318 1.130 manu ip = mtod(m, struct ip *);
1319 1.130 manu ip->ip_len = htons(ntohs(ip->ip_len) - skip);
1320 1.130 manu ip->ip_p = IPPROTO_ESP;
1321 1.130 manu
1322 1.130 manu /*
1323 1.188 christos * We have modified the packet - it is now ESP, so we should not
1324 1.251 maxv * return to UDP processing.
1325 1.188 christos *
1326 1.251 maxv * Add a PACKET_TAG_IPSEC_NAT_T_PORTS tag to remember the source
1327 1.251 maxv * UDP port. This is required if we want to select the right SPD
1328 1.251 maxv * for multiple hosts behind same NAT.
1329 1.136 manu */
1330 1.137 manu if ((tag = m_tag_get(PACKET_TAG_IPSEC_NAT_T_PORTS,
1331 1.137 manu sizeof(sport) + sizeof(dport), M_DONTWAIT)) == NULL) {
1332 1.242 maxv m_freem(m);
1333 1.242 maxv return -1;
1334 1.137 manu }
1335 1.136 manu ((u_int16_t *)(tag + 1))[0] = sport;
1336 1.136 manu ((u_int16_t *)(tag + 1))[1] = dport;
1337 1.188 christos m_tag_prepend(m, tag);
1338 1.136 manu
1339 1.199 christos if (ipsec_used)
1340 1.199 christos ipsec4_common_input(m, iphdrlen, IPPROTO_ESP);
1341 1.237 maxv else
1342 1.237 maxv m_freem(m);
1343 1.130 manu
1344 1.242 maxv /* We handled it, it shouldn't be handled by UDP */
1345 1.242 maxv *mp = NULL; /* avoid free by caller ... */
1346 1.242 maxv return 1;
1347 1.130 manu }
1348 1.130 manu #endif
1349 1.195 rmind
1350 1.197 rmind PR_WRAP_USRREQS(udp)
1351 1.197 rmind #define udp_attach udp_attach_wrapper
1352 1.197 rmind #define udp_detach udp_detach_wrapper
1353 1.208 rtr #define udp_accept udp_accept_wrapper
1354 1.210 rtr #define udp_bind udp_bind_wrapper
1355 1.210 rtr #define udp_listen udp_listen_wrapper
1356 1.211 rtr #define udp_connect udp_connect_wrapper
1357 1.217 rtr #define udp_connect2 udp_connect2_wrapper
1358 1.212 rtr #define udp_disconnect udp_disconnect_wrapper
1359 1.212 rtr #define udp_shutdown udp_shutdown_wrapper
1360 1.212 rtr #define udp_abort udp_abort_wrapper
1361 1.200 rtr #define udp_ioctl udp_ioctl_wrapper
1362 1.203 rtr #define udp_stat udp_stat_wrapper
1363 1.207 rtr #define udp_peeraddr udp_peeraddr_wrapper
1364 1.207 rtr #define udp_sockaddr udp_sockaddr_wrapper
1365 1.216 rtr #define udp_rcvd udp_rcvd_wrapper
1366 1.209 rtr #define udp_recvoob udp_recvoob_wrapper
1367 1.215 rtr #define udp_send udp_send_wrapper
1368 1.209 rtr #define udp_sendoob udp_sendoob_wrapper
1369 1.217 rtr #define udp_purgeif udp_purgeif_wrapper
1370 1.195 rmind
1371 1.195 rmind const struct pr_usrreqs udp_usrreqs = {
1372 1.196 rmind .pr_attach = udp_attach,
1373 1.196 rmind .pr_detach = udp_detach,
1374 1.208 rtr .pr_accept = udp_accept,
1375 1.210 rtr .pr_bind = udp_bind,
1376 1.210 rtr .pr_listen = udp_listen,
1377 1.211 rtr .pr_connect = udp_connect,
1378 1.217 rtr .pr_connect2 = udp_connect2,
1379 1.212 rtr .pr_disconnect = udp_disconnect,
1380 1.212 rtr .pr_shutdown = udp_shutdown,
1381 1.212 rtr .pr_abort = udp_abort,
1382 1.200 rtr .pr_ioctl = udp_ioctl,
1383 1.203 rtr .pr_stat = udp_stat,
1384 1.207 rtr .pr_peeraddr = udp_peeraddr,
1385 1.207 rtr .pr_sockaddr = udp_sockaddr,
1386 1.216 rtr .pr_rcvd = udp_rcvd,
1387 1.209 rtr .pr_recvoob = udp_recvoob,
1388 1.215 rtr .pr_send = udp_send,
1389 1.209 rtr .pr_sendoob = udp_sendoob,
1390 1.217 rtr .pr_purgeif = udp_purgeif,
1391 1.195 rmind };
1392