]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * INET An implementation of the TCP/IP protocol suite for the LINUX | |
3 | * operating system. INET is implemented using the BSD Socket | |
4 | * interface as the means of communication with the user level. | |
5 | * | |
6 | * The User Datagram Protocol (UDP). | |
7 | * | |
8 | * Version: $Id: udp.c,v 1.102 2002/02/01 22:01:04 davem Exp $ | |
9 | * | |
02c30a84 | 10 | * Authors: Ross Biro |
1da177e4 LT |
11 | * Fred N. van Kempen, <[email protected]> |
12 | * Arnt Gulbrandsen, <[email protected]> | |
13 | * Alan Cox, <[email protected]> | |
14 | * Hirokazu Takahashi, <[email protected]> | |
15 | * | |
16 | * Fixes: | |
17 | * Alan Cox : verify_area() calls | |
18 | * Alan Cox : stopped close while in use off icmp | |
19 | * messages. Not a fix but a botch that | |
20 | * for udp at least is 'valid'. | |
21 | * Alan Cox : Fixed icmp handling properly | |
22 | * Alan Cox : Correct error for oversized datagrams | |
e905a9ed YH |
23 | * Alan Cox : Tidied select() semantics. |
24 | * Alan Cox : udp_err() fixed properly, also now | |
1da177e4 LT |
25 | * select and read wake correctly on errors |
26 | * Alan Cox : udp_send verify_area moved to avoid mem leak | |
27 | * Alan Cox : UDP can count its memory | |
28 | * Alan Cox : send to an unknown connection causes | |
29 | * an ECONNREFUSED off the icmp, but | |
30 | * does NOT close. | |
31 | * Alan Cox : Switched to new sk_buff handlers. No more backlog! | |
32 | * Alan Cox : Using generic datagram code. Even smaller and the PEEK | |
33 | * bug no longer crashes it. | |
34 | * Fred Van Kempen : Net2e support for sk->broadcast. | |
35 | * Alan Cox : Uses skb_free_datagram | |
36 | * Alan Cox : Added get/set sockopt support. | |
37 | * Alan Cox : Broadcasting without option set returns EACCES. | |
38 | * Alan Cox : No wakeup calls. Instead we now use the callbacks. | |
39 | * Alan Cox : Use ip_tos and ip_ttl | |
40 | * Alan Cox : SNMP Mibs | |
41 | * Alan Cox : MSG_DONTROUTE, and 0.0.0.0 support. | |
42 | * Matt Dillon : UDP length checks. | |
43 | * Alan Cox : Smarter af_inet used properly. | |
44 | * Alan Cox : Use new kernel side addressing. | |
45 | * Alan Cox : Incorrect return on truncated datagram receive. | |
46 | * Arnt Gulbrandsen : New udp_send and stuff | |
47 | * Alan Cox : Cache last socket | |
48 | * Alan Cox : Route cache | |
49 | * Jon Peatfield : Minor efficiency fix to sendto(). | |
50 | * Mike Shaver : RFC1122 checks. | |
51 | * Alan Cox : Nonblocking error fix. | |
52 | * Willy Konynenberg : Transparent proxying support. | |
53 | * Mike McLagan : Routing by source | |
54 | * David S. Miller : New socket lookup architecture. | |
55 | * Last socket cache retained as it | |
56 | * does have a high hit rate. | |
57 | * Olaf Kirch : Don't linearise iovec on sendmsg. | |
58 | * Andi Kleen : Some cleanups, cache destination entry | |
e905a9ed | 59 | * for connect. |
1da177e4 LT |
60 | * Vitaly E. Lavrov : Transparent proxy revived after year coma. |
61 | * Melvin Smith : Check msg_name not msg_namelen in sendto(), | |
62 | * return ENOTCONN for unconnected sockets (POSIX) | |
63 | * Janos Farkas : don't deliver multi/broadcasts to a different | |
64 | * bound-to-device socket | |
65 | * Hirokazu Takahashi : HW checksumming for outgoing UDP | |
66 | * datagrams. | |
67 | * Hirokazu Takahashi : sendfile() on UDP works now. | |
68 | * Arnaldo C. Melo : convert /proc/net/udp to seq_file | |
69 | * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which | |
70 | * Alexey Kuznetsov: allow both IPv4 and IPv6 sockets to bind | |
71 | * a single port at the same time. | |
72 | * Derek Atkins <[email protected]>: Add Encapulation Support | |
73 | * | |
74 | * | |
75 | * This program is free software; you can redistribute it and/or | |
76 | * modify it under the terms of the GNU General Public License | |
77 | * as published by the Free Software Foundation; either version | |
78 | * 2 of the License, or (at your option) any later version. | |
79 | */ | |
e905a9ed | 80 | |
1da177e4 LT |
81 | #include <asm/system.h> |
82 | #include <asm/uaccess.h> | |
83 | #include <asm/ioctls.h> | |
84 | #include <linux/types.h> | |
85 | #include <linux/fcntl.h> | |
86 | #include <linux/module.h> | |
87 | #include <linux/socket.h> | |
88 | #include <linux/sockios.h> | |
14c85021 | 89 | #include <linux/igmp.h> |
1da177e4 LT |
90 | #include <linux/in.h> |
91 | #include <linux/errno.h> | |
92 | #include <linux/timer.h> | |
93 | #include <linux/mm.h> | |
1da177e4 | 94 | #include <linux/inet.h> |
1da177e4 | 95 | #include <linux/netdevice.h> |
c752f073 | 96 | #include <net/tcp_states.h> |
1da177e4 LT |
97 | #include <linux/skbuff.h> |
98 | #include <linux/proc_fs.h> | |
99 | #include <linux/seq_file.h> | |
1da177e4 LT |
100 | #include <net/icmp.h> |
101 | #include <net/route.h> | |
1da177e4 LT |
102 | #include <net/checksum.h> |
103 | #include <net/xfrm.h> | |
ba4e58ec | 104 | #include "udp_impl.h" |
1da177e4 LT |
105 | |
106 | /* | |
107 | * Snmp MIB for the UDP layer | |
108 | */ | |
109 | ||
ba89966c | 110 | DEFINE_SNMP_STAT(struct udp_mib, udp_statistics) __read_mostly; |
1da177e4 LT |
111 | |
112 | struct hlist_head udp_hash[UDP_HTABLE_SIZE]; | |
113 | DEFINE_RWLOCK(udp_hash_lock); | |
114 | ||
bed53ea7 | 115 | static int udp_port_rover; |
1da177e4 | 116 | |
6aaf47fa ED |
117 | /* |
118 | * Note about this hash function : | |
119 | * Typical use is probably daddr = 0, only dport is going to vary hash | |
120 | */ | |
121 | static inline unsigned int hash_port_and_addr(__u16 port, __be32 addr) | |
122 | { | |
123 | addr ^= addr >> 16; | |
124 | addr ^= addr >> 8; | |
125 | return port ^ addr; | |
126 | } | |
127 | ||
128 | static inline int __udp_lib_port_inuse(unsigned int hash, int port, | |
129 | __be32 daddr, struct hlist_head udptable[]) | |
1da177e4 | 130 | { |
25030a7f | 131 | struct sock *sk; |
1da177e4 | 132 | struct hlist_node *node; |
6aaf47fa | 133 | struct inet_sock *inet; |
25030a7f | 134 | |
6aaf47fa ED |
135 | sk_for_each(sk, node, &udptable[hash & (UDP_HTABLE_SIZE - 1)]) { |
136 | if (sk->sk_hash != hash) | |
137 | continue; | |
138 | inet = inet_sk(sk); | |
139 | if (inet->num != port) | |
140 | continue; | |
141 | if (inet->rcv_saddr == daddr) | |
25030a7f | 142 | return 1; |
6aaf47fa | 143 | } |
25030a7f GR |
144 | return 0; |
145 | } | |
146 | ||
147 | /** | |
ba4e58ec | 148 | * __udp_lib_get_port - UDP/-Lite port lookup for IPv4 and IPv6 |
25030a7f GR |
149 | * |
150 | * @sk: socket struct in question | |
151 | * @snum: port number to look up | |
ba4e58ec GR |
152 | * @udptable: hash list table, must be of UDP_HTABLE_SIZE |
153 | * @port_rover: pointer to record of last unallocated port | |
25030a7f GR |
154 | * @saddr_comp: AF-dependent comparison of bound local IP addresses |
155 | */ | |
ba4e58ec GR |
156 | int __udp_lib_get_port(struct sock *sk, unsigned short snum, |
157 | struct hlist_head udptable[], int *port_rover, | |
158 | int (*saddr_comp)(const struct sock *sk1, | |
159 | const struct sock *sk2 ) ) | |
25030a7f GR |
160 | { |
161 | struct hlist_node *node; | |
162 | struct hlist_head *head; | |
1da177e4 | 163 | struct sock *sk2; |
6aaf47fa | 164 | unsigned int hash; |
25030a7f | 165 | int error = 1; |
1da177e4 LT |
166 | |
167 | write_lock_bh(&udp_hash_lock); | |
168 | if (snum == 0) { | |
169 | int best_size_so_far, best, result, i; | |
170 | ||
ba4e58ec GR |
171 | if (*port_rover > sysctl_local_port_range[1] || |
172 | *port_rover < sysctl_local_port_range[0]) | |
173 | *port_rover = sysctl_local_port_range[0]; | |
1da177e4 | 174 | best_size_so_far = 32767; |
ba4e58ec | 175 | best = result = *port_rover; |
1da177e4 | 176 | for (i = 0; i < UDP_HTABLE_SIZE; i++, result++) { |
1da177e4 LT |
177 | int size; |
178 | ||
6aaf47fa ED |
179 | hash = hash_port_and_addr(result, |
180 | inet_sk(sk)->rcv_saddr); | |
181 | head = &udptable[hash & (UDP_HTABLE_SIZE - 1)]; | |
25030a7f | 182 | if (hlist_empty(head)) { |
1da177e4 LT |
183 | if (result > sysctl_local_port_range[1]) |
184 | result = sysctl_local_port_range[0] + | |
185 | ((result - sysctl_local_port_range[0]) & | |
186 | (UDP_HTABLE_SIZE - 1)); | |
187 | goto gotit; | |
188 | } | |
189 | size = 0; | |
5c668704 DM |
190 | sk_for_each(sk2, node, head) { |
191 | if (++size >= best_size_so_far) | |
192 | goto next; | |
193 | } | |
194 | best_size_so_far = size; | |
195 | best = result; | |
196 | next: | |
197 | ; | |
1da177e4 LT |
198 | } |
199 | result = best; | |
6516c655 SH |
200 | for (i = 0; i < (1 << 16) / UDP_HTABLE_SIZE; |
201 | i++, result += UDP_HTABLE_SIZE) { | |
1da177e4 LT |
202 | if (result > sysctl_local_port_range[1]) |
203 | result = sysctl_local_port_range[0] | |
204 | + ((result - sysctl_local_port_range[0]) & | |
205 | (UDP_HTABLE_SIZE - 1)); | |
6aaf47fa ED |
206 | hash = hash_port_and_addr(result, |
207 | inet_sk(sk)->rcv_saddr); | |
208 | if (! __udp_lib_port_inuse(hash, result, | |
209 | inet_sk(sk)->rcv_saddr, udptable)) | |
1da177e4 LT |
210 | break; |
211 | } | |
212 | if (i >= (1 << 16) / UDP_HTABLE_SIZE) | |
213 | goto fail; | |
214 | gotit: | |
ba4e58ec | 215 | *port_rover = snum = result; |
1da177e4 | 216 | } else { |
6aaf47fa ED |
217 | hash = hash_port_and_addr(snum, inet_sk(sk)->rcv_saddr); |
218 | head = &udptable[hash & (UDP_HTABLE_SIZE - 1)]; | |
25030a7f GR |
219 | |
220 | sk_for_each(sk2, node, head) | |
6aaf47fa | 221 | if (sk2->sk_hash == hash && |
25030a7f | 222 | sk2 != sk && |
6aaf47fa | 223 | inet_sk(sk2)->num == snum && |
25030a7f GR |
224 | (!sk2->sk_reuse || !sk->sk_reuse) && |
225 | (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if | |
226 | || sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && | |
ba4e58ec | 227 | (*saddr_comp)(sk, sk2) ) |
1da177e4 | 228 | goto fail; |
1da177e4 | 229 | } |
25030a7f | 230 | inet_sk(sk)->num = snum; |
6aaf47fa | 231 | sk->sk_hash = hash; |
1da177e4 | 232 | if (sk_unhashed(sk)) { |
6aaf47fa | 233 | head = &udptable[hash & (UDP_HTABLE_SIZE - 1)]; |
25030a7f | 234 | sk_add_node(sk, head); |
1da177e4 LT |
235 | sock_prot_inc_use(sk->sk_prot); |
236 | } | |
25030a7f | 237 | error = 0; |
1da177e4 LT |
238 | fail: |
239 | write_unlock_bh(&udp_hash_lock); | |
25030a7f GR |
240 | return error; |
241 | } | |
242 | ||
3fbe070a | 243 | int udp_get_port(struct sock *sk, unsigned short snum, |
ba4e58ec GR |
244 | int (*scmp)(const struct sock *, const struct sock *)) |
245 | { | |
246 | return __udp_lib_get_port(sk, snum, udp_hash, &udp_port_rover, scmp); | |
247 | } | |
248 | ||
3fbe070a | 249 | int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2) |
25030a7f GR |
250 | { |
251 | struct inet_sock *inet1 = inet_sk(sk1), *inet2 = inet_sk(sk2); | |
252 | ||
253 | return ( !ipv6_only_sock(sk2) && | |
254 | (!inet1->rcv_saddr || !inet2->rcv_saddr || | |
255 | inet1->rcv_saddr == inet2->rcv_saddr )); | |
256 | } | |
257 | ||
258 | static inline int udp_v4_get_port(struct sock *sk, unsigned short snum) | |
259 | { | |
260 | return udp_get_port(sk, snum, ipv4_rcv_saddr_equal); | |
1da177e4 LT |
261 | } |
262 | ||
1da177e4 LT |
263 | /* UDP is nearly always wildcards out the wazoo, it makes no sense to try |
264 | * harder than this. -DaveM | |
265 | */ | |
ba4e58ec GR |
266 | static struct sock *__udp4_lib_lookup(__be32 saddr, __be16 sport, |
267 | __be32 daddr, __be16 dport, | |
268 | int dif, struct hlist_head udptable[]) | |
1da177e4 LT |
269 | { |
270 | struct sock *sk, *result = NULL; | |
271 | struct hlist_node *node; | |
6aaf47fa ED |
272 | unsigned int hash, hashwild; |
273 | int score, best = -1; | |
274 | ||
275 | hash = hash_port_and_addr(ntohs(dport), daddr); | |
276 | hashwild = hash_port_and_addr(ntohs(dport), 0); | |
1da177e4 | 277 | |
ba4e58ec | 278 | read_lock(&udp_hash_lock); |
6aaf47fa ED |
279 | |
280 | lookup: | |
281 | ||
282 | sk_for_each(sk, node, &udptable[hash & (UDP_HTABLE_SIZE - 1)]) { | |
1da177e4 LT |
283 | struct inet_sock *inet = inet_sk(sk); |
284 | ||
6aaf47fa ED |
285 | if (sk->sk_hash != hash || ipv6_only_sock(sk) || |
286 | inet->num != dport) | |
287 | continue; | |
288 | ||
289 | score = (sk->sk_family == PF_INET ? 1 : 0); | |
290 | if (inet->rcv_saddr) { | |
291 | if (inet->rcv_saddr != daddr) | |
292 | continue; | |
293 | score+=2; | |
294 | } | |
295 | if (inet->daddr) { | |
296 | if (inet->daddr != saddr) | |
297 | continue; | |
298 | score+=2; | |
299 | } | |
300 | if (inet->dport) { | |
301 | if (inet->dport != sport) | |
302 | continue; | |
303 | score+=2; | |
304 | } | |
305 | if (sk->sk_bound_dev_if) { | |
306 | if (sk->sk_bound_dev_if != dif) | |
307 | continue; | |
308 | score+=2; | |
309 | } | |
310 | if (score == 9) { | |
311 | result = sk; | |
312 | goto found; | |
313 | } else if (score > best) { | |
314 | result = sk; | |
315 | best = score; | |
1da177e4 LT |
316 | } |
317 | } | |
6aaf47fa ED |
318 | |
319 | if (hash != hashwild) { | |
320 | hash = hashwild; | |
321 | goto lookup; | |
322 | } | |
323 | found: | |
ba4e58ec GR |
324 | if (result) |
325 | sock_hold(result); | |
1da177e4 | 326 | read_unlock(&udp_hash_lock); |
ba4e58ec | 327 | return result; |
1da177e4 LT |
328 | } |
329 | ||
6aaf47fa ED |
330 | static inline struct sock *udp_v4_mcast_next( |
331 | struct sock *sk, | |
332 | unsigned int hnum, __be16 loc_port, __be32 loc_addr, | |
333 | __be16 rmt_port, __be32 rmt_addr, | |
334 | int dif) | |
1da177e4 LT |
335 | { |
336 | struct hlist_node *node; | |
337 | struct sock *s = sk; | |
1da177e4 LT |
338 | |
339 | sk_for_each_from(s, node) { | |
340 | struct inet_sock *inet = inet_sk(s); | |
341 | ||
95f30b33 | 342 | if (s->sk_hash != hnum || |
6aaf47fa | 343 | inet->num != loc_port || |
1da177e4 LT |
344 | (inet->daddr && inet->daddr != rmt_addr) || |
345 | (inet->dport != rmt_port && inet->dport) || | |
346 | (inet->rcv_saddr && inet->rcv_saddr != loc_addr) || | |
347 | ipv6_only_sock(s) || | |
348 | (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)) | |
349 | continue; | |
350 | if (!ip_mc_sf_allow(s, loc_addr, rmt_addr, dif)) | |
351 | continue; | |
352 | goto found; | |
e905a9ed | 353 | } |
1da177e4 LT |
354 | s = NULL; |
355 | found: | |
e905a9ed | 356 | return s; |
1da177e4 LT |
357 | } |
358 | ||
359 | /* | |
360 | * This routine is called by the ICMP module when it gets some | |
361 | * sort of error condition. If err < 0 then the socket should | |
362 | * be closed and the error returned to the user. If err > 0 | |
e905a9ed | 363 | * it's just the icmp type << 8 | icmp code. |
1da177e4 LT |
364 | * Header points to the ip header of the error packet. We move |
365 | * on past this. Then (as it used to claim before adjustment) | |
366 | * header points to the first 8 bytes of the udp header. We need | |
367 | * to find the appropriate port. | |
368 | */ | |
369 | ||
ba4e58ec | 370 | void __udp4_lib_err(struct sk_buff *skb, u32 info, struct hlist_head udptable[]) |
1da177e4 LT |
371 | { |
372 | struct inet_sock *inet; | |
373 | struct iphdr *iph = (struct iphdr*)skb->data; | |
374 | struct udphdr *uh = (struct udphdr*)(skb->data+(iph->ihl<<2)); | |
88c7664f ACM |
375 | const int type = icmp_hdr(skb)->type; |
376 | const int code = icmp_hdr(skb)->code; | |
1da177e4 LT |
377 | struct sock *sk; |
378 | int harderr; | |
379 | int err; | |
380 | ||
ba4e58ec GR |
381 | sk = __udp4_lib_lookup(iph->daddr, uh->dest, iph->saddr, uh->source, |
382 | skb->dev->ifindex, udptable ); | |
1da177e4 LT |
383 | if (sk == NULL) { |
384 | ICMP_INC_STATS_BH(ICMP_MIB_INERRORS); | |
e905a9ed | 385 | return; /* No socket for error */ |
1da177e4 LT |
386 | } |
387 | ||
388 | err = 0; | |
389 | harderr = 0; | |
390 | inet = inet_sk(sk); | |
391 | ||
392 | switch (type) { | |
393 | default: | |
394 | case ICMP_TIME_EXCEEDED: | |
395 | err = EHOSTUNREACH; | |
396 | break; | |
397 | case ICMP_SOURCE_QUENCH: | |
398 | goto out; | |
399 | case ICMP_PARAMETERPROB: | |
400 | err = EPROTO; | |
401 | harderr = 1; | |
402 | break; | |
403 | case ICMP_DEST_UNREACH: | |
404 | if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */ | |
405 | if (inet->pmtudisc != IP_PMTUDISC_DONT) { | |
406 | err = EMSGSIZE; | |
407 | harderr = 1; | |
408 | break; | |
409 | } | |
410 | goto out; | |
411 | } | |
412 | err = EHOSTUNREACH; | |
413 | if (code <= NR_ICMP_UNREACH) { | |
414 | harderr = icmp_err_convert[code].fatal; | |
415 | err = icmp_err_convert[code].errno; | |
416 | } | |
417 | break; | |
418 | } | |
419 | ||
420 | /* | |
e905a9ed | 421 | * RFC1122: OK. Passes ICMP errors back to application, as per |
1da177e4 LT |
422 | * 4.1.3.3. |
423 | */ | |
424 | if (!inet->recverr) { | |
425 | if (!harderr || sk->sk_state != TCP_ESTABLISHED) | |
426 | goto out; | |
427 | } else { | |
428 | ip_icmp_error(sk, skb, err, uh->dest, info, (u8*)(uh+1)); | |
429 | } | |
430 | sk->sk_err = err; | |
431 | sk->sk_error_report(sk); | |
432 | out: | |
433 | sock_put(sk); | |
434 | } | |
435 | ||
3fbe070a | 436 | void udp_err(struct sk_buff *skb, u32 info) |
ba4e58ec GR |
437 | { |
438 | return __udp4_lib_err(skb, info, udp_hash); | |
439 | } | |
440 | ||
1da177e4 LT |
441 | /* |
442 | * Throw away all pending data and cancel the corking. Socket is locked. | |
443 | */ | |
444 | static void udp_flush_pending_frames(struct sock *sk) | |
445 | { | |
446 | struct udp_sock *up = udp_sk(sk); | |
447 | ||
448 | if (up->pending) { | |
449 | up->len = 0; | |
450 | up->pending = 0; | |
451 | ip_flush_pending_frames(sk); | |
452 | } | |
453 | } | |
454 | ||
ba4e58ec GR |
455 | /** |
456 | * udp4_hwcsum_outgoing - handle outgoing HW checksumming | |
457 | * @sk: socket we are sending on | |
458 | * @skb: sk_buff containing the filled-in UDP header | |
459 | * (checksum field must be zeroed out) | |
460 | */ | |
461 | static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, | |
462 | __be32 src, __be32 dst, int len ) | |
463 | { | |
6b11687e | 464 | unsigned int offset; |
4bedb452 | 465 | struct udphdr *uh = udp_hdr(skb); |
6b11687e | 466 | __wsum csum = 0; |
ba4e58ec GR |
467 | |
468 | if (skb_queue_len(&sk->sk_write_queue) == 1) { | |
469 | /* | |
470 | * Only one fragment on the socket. | |
471 | */ | |
663ead3b | 472 | skb->csum_start = skb_transport_header(skb) - skb->head; |
ff1dcadb | 473 | skb->csum_offset = offsetof(struct udphdr, check); |
ba4e58ec GR |
474 | uh->check = ~csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, 0); |
475 | } else { | |
476 | /* | |
477 | * HW-checksum won't work as there are two or more | |
478 | * fragments on the socket so that all csums of sk_buffs | |
479 | * should be together | |
480 | */ | |
ea2ae17d | 481 | offset = skb_transport_offset(skb); |
ba4e58ec GR |
482 | skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); |
483 | ||
484 | skb->ip_summed = CHECKSUM_NONE; | |
485 | ||
486 | skb_queue_walk(&sk->sk_write_queue, skb) { | |
487 | csum = csum_add(csum, skb->csum); | |
488 | } | |
489 | ||
490 | uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum); | |
491 | if (uh->check == 0) | |
f6ab0288 | 492 | uh->check = CSUM_MANGLED_0; |
ba4e58ec GR |
493 | } |
494 | } | |
495 | ||
1da177e4 LT |
496 | /* |
497 | * Push out all pending data as one UDP datagram. Socket is locked. | |
498 | */ | |
4c0a6cb0 | 499 | static int udp_push_pending_frames(struct sock *sk) |
1da177e4 | 500 | { |
4c0a6cb0 | 501 | struct udp_sock *up = udp_sk(sk); |
1da177e4 LT |
502 | struct inet_sock *inet = inet_sk(sk); |
503 | struct flowi *fl = &inet->cork.fl; | |
504 | struct sk_buff *skb; | |
505 | struct udphdr *uh; | |
506 | int err = 0; | |
8e5200f5 | 507 | __wsum csum = 0; |
1da177e4 LT |
508 | |
509 | /* Grab the skbuff where UDP header space exists. */ | |
510 | if ((skb = skb_peek(&sk->sk_write_queue)) == NULL) | |
511 | goto out; | |
512 | ||
513 | /* | |
514 | * Create a UDP header | |
515 | */ | |
4bedb452 | 516 | uh = udp_hdr(skb); |
1da177e4 LT |
517 | uh->source = fl->fl_ip_sport; |
518 | uh->dest = fl->fl_ip_dport; | |
519 | uh->len = htons(up->len); | |
520 | uh->check = 0; | |
521 | ||
ba4e58ec GR |
522 | if (up->pcflag) /* UDP-Lite */ |
523 | csum = udplite_csum_outgoing(sk, skb); | |
524 | ||
525 | else if (sk->sk_no_check == UDP_CSUM_NOXMIT) { /* UDP csum disabled */ | |
526 | ||
1da177e4 LT |
527 | skb->ip_summed = CHECKSUM_NONE; |
528 | goto send; | |
1da177e4 | 529 | |
ba4e58ec | 530 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */ |
1da177e4 | 531 | |
ba4e58ec GR |
532 | udp4_hwcsum_outgoing(sk, skb, fl->fl4_src,fl->fl4_dst, up->len); |
533 | goto send; | |
534 | ||
535 | } else /* `normal' UDP */ | |
536 | csum = udp_csum_outgoing(sk, skb); | |
537 | ||
538 | /* add protocol-dependent pseudo-header */ | |
539 | uh->check = csum_tcpudp_magic(fl->fl4_src, fl->fl4_dst, up->len, | |
540 | sk->sk_protocol, csum ); | |
541 | if (uh->check == 0) | |
f6ab0288 | 542 | uh->check = CSUM_MANGLED_0; |
1da177e4 | 543 | |
1da177e4 LT |
544 | send: |
545 | err = ip_push_pending_frames(sk); | |
546 | out: | |
547 | up->len = 0; | |
548 | up->pending = 0; | |
549 | return err; | |
550 | } | |
551 | ||
1da177e4 LT |
552 | int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, |
553 | size_t len) | |
554 | { | |
555 | struct inet_sock *inet = inet_sk(sk); | |
556 | struct udp_sock *up = udp_sk(sk); | |
557 | int ulen = len; | |
558 | struct ipcm_cookie ipc; | |
559 | struct rtable *rt = NULL; | |
560 | int free = 0; | |
561 | int connected = 0; | |
3ca3c68e | 562 | __be32 daddr, faddr, saddr; |
734ab87f | 563 | __be16 dport; |
1da177e4 | 564 | u8 tos; |
ba4e58ec | 565 | int err, is_udplite = up->pcflag; |
1da177e4 | 566 | int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; |
ba4e58ec | 567 | int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); |
1da177e4 LT |
568 | |
569 | if (len > 0xFFFF) | |
570 | return -EMSGSIZE; | |
571 | ||
e905a9ed | 572 | /* |
1da177e4 LT |
573 | * Check the flags. |
574 | */ | |
575 | ||
576 | if (msg->msg_flags&MSG_OOB) /* Mirror BSD error message compatibility */ | |
577 | return -EOPNOTSUPP; | |
578 | ||
579 | ipc.opt = NULL; | |
580 | ||
581 | if (up->pending) { | |
582 | /* | |
583 | * There are pending frames. | |
e905a9ed | 584 | * The socket lock must be held while it's corked. |
1da177e4 LT |
585 | */ |
586 | lock_sock(sk); | |
587 | if (likely(up->pending)) { | |
588 | if (unlikely(up->pending != AF_INET)) { | |
589 | release_sock(sk); | |
590 | return -EINVAL; | |
591 | } | |
e905a9ed | 592 | goto do_append_data; |
1da177e4 LT |
593 | } |
594 | release_sock(sk); | |
595 | } | |
596 | ulen += sizeof(struct udphdr); | |
597 | ||
598 | /* | |
e905a9ed | 599 | * Get and verify the address. |
1da177e4 LT |
600 | */ |
601 | if (msg->msg_name) { | |
602 | struct sockaddr_in * usin = (struct sockaddr_in*)msg->msg_name; | |
603 | if (msg->msg_namelen < sizeof(*usin)) | |
604 | return -EINVAL; | |
605 | if (usin->sin_family != AF_INET) { | |
606 | if (usin->sin_family != AF_UNSPEC) | |
607 | return -EAFNOSUPPORT; | |
608 | } | |
609 | ||
610 | daddr = usin->sin_addr.s_addr; | |
611 | dport = usin->sin_port; | |
612 | if (dport == 0) | |
613 | return -EINVAL; | |
614 | } else { | |
615 | if (sk->sk_state != TCP_ESTABLISHED) | |
616 | return -EDESTADDRREQ; | |
617 | daddr = inet->daddr; | |
618 | dport = inet->dport; | |
619 | /* Open fast path for connected socket. | |
620 | Route will not be used, if at least one option is set. | |
621 | */ | |
622 | connected = 1; | |
e905a9ed | 623 | } |
1da177e4 LT |
624 | ipc.addr = inet->saddr; |
625 | ||
626 | ipc.oif = sk->sk_bound_dev_if; | |
627 | if (msg->msg_controllen) { | |
628 | err = ip_cmsg_send(msg, &ipc); | |
629 | if (err) | |
630 | return err; | |
631 | if (ipc.opt) | |
632 | free = 1; | |
633 | connected = 0; | |
634 | } | |
635 | if (!ipc.opt) | |
636 | ipc.opt = inet->opt; | |
637 | ||
638 | saddr = ipc.addr; | |
639 | ipc.addr = faddr = daddr; | |
640 | ||
641 | if (ipc.opt && ipc.opt->srr) { | |
642 | if (!daddr) | |
643 | return -EINVAL; | |
644 | faddr = ipc.opt->faddr; | |
645 | connected = 0; | |
646 | } | |
647 | tos = RT_TOS(inet->tos); | |
648 | if (sock_flag(sk, SOCK_LOCALROUTE) || | |
e905a9ed | 649 | (msg->msg_flags & MSG_DONTROUTE) || |
1da177e4 LT |
650 | (ipc.opt && ipc.opt->is_strictroute)) { |
651 | tos |= RTO_ONLINK; | |
652 | connected = 0; | |
653 | } | |
654 | ||
655 | if (MULTICAST(daddr)) { | |
656 | if (!ipc.oif) | |
657 | ipc.oif = inet->mc_index; | |
658 | if (!saddr) | |
659 | saddr = inet->mc_addr; | |
660 | connected = 0; | |
661 | } | |
662 | ||
663 | if (connected) | |
664 | rt = (struct rtable*)sk_dst_check(sk, 0); | |
665 | ||
666 | if (rt == NULL) { | |
667 | struct flowi fl = { .oif = ipc.oif, | |
668 | .nl_u = { .ip4_u = | |
669 | { .daddr = faddr, | |
670 | .saddr = saddr, | |
671 | .tos = tos } }, | |
ba4e58ec | 672 | .proto = sk->sk_protocol, |
1da177e4 LT |
673 | .uli_u = { .ports = |
674 | { .sport = inet->sport, | |
675 | .dport = dport } } }; | |
beb8d13b | 676 | security_sk_classify_flow(sk, &fl); |
8eb9086f | 677 | err = ip_route_output_flow(&rt, &fl, sk, 1); |
1da177e4 LT |
678 | if (err) |
679 | goto out; | |
680 | ||
681 | err = -EACCES; | |
682 | if ((rt->rt_flags & RTCF_BROADCAST) && | |
683 | !sock_flag(sk, SOCK_BROADCAST)) | |
684 | goto out; | |
685 | if (connected) | |
686 | sk_dst_set(sk, dst_clone(&rt->u.dst)); | |
687 | } | |
688 | ||
689 | if (msg->msg_flags&MSG_CONFIRM) | |
690 | goto do_confirm; | |
691 | back_from_confirm: | |
692 | ||
693 | saddr = rt->rt_src; | |
694 | if (!ipc.addr) | |
695 | daddr = ipc.addr = rt->rt_dst; | |
696 | ||
697 | lock_sock(sk); | |
698 | if (unlikely(up->pending)) { | |
699 | /* The socket is already corked while preparing it. */ | |
700 | /* ... which is an evident application bug. --ANK */ | |
701 | release_sock(sk); | |
702 | ||
64ce2073 | 703 | LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n"); |
1da177e4 LT |
704 | err = -EINVAL; |
705 | goto out; | |
706 | } | |
707 | /* | |
708 | * Now cork the socket to pend data. | |
709 | */ | |
710 | inet->cork.fl.fl4_dst = daddr; | |
711 | inet->cork.fl.fl_ip_dport = dport; | |
712 | inet->cork.fl.fl4_src = saddr; | |
713 | inet->cork.fl.fl_ip_sport = inet->sport; | |
714 | up->pending = AF_INET; | |
715 | ||
716 | do_append_data: | |
717 | up->len += ulen; | |
ba4e58ec GR |
718 | getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag; |
719 | err = ip_append_data(sk, getfrag, msg->msg_iov, ulen, | |
720 | sizeof(struct udphdr), &ipc, rt, | |
1da177e4 LT |
721 | corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); |
722 | if (err) | |
723 | udp_flush_pending_frames(sk); | |
724 | else if (!corkreq) | |
4c0a6cb0 | 725 | err = udp_push_pending_frames(sk); |
1e0c14f4 HX |
726 | else if (unlikely(skb_queue_empty(&sk->sk_write_queue))) |
727 | up->pending = 0; | |
1da177e4 LT |
728 | release_sock(sk); |
729 | ||
730 | out: | |
731 | ip_rt_put(rt); | |
732 | if (free) | |
733 | kfree(ipc.opt); | |
734 | if (!err) { | |
ba4e58ec | 735 | UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite); |
1da177e4 LT |
736 | return len; |
737 | } | |
81aa646c MB |
738 | /* |
739 | * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting | |
740 | * ENOBUFS might not be good (it's not tunable per se), but otherwise | |
741 | * we don't have a good statistic (IpOutDiscards but it can be too many | |
742 | * things). We could add another new stat but at least for now that | |
743 | * seems like overkill. | |
744 | */ | |
745 | if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) { | |
ba4e58ec | 746 | UDP_INC_STATS_USER(UDP_MIB_SNDBUFERRORS, is_udplite); |
81aa646c | 747 | } |
1da177e4 LT |
748 | return err; |
749 | ||
750 | do_confirm: | |
751 | dst_confirm(&rt->u.dst); | |
752 | if (!(msg->msg_flags&MSG_PROBE) || len) | |
753 | goto back_from_confirm; | |
754 | err = 0; | |
755 | goto out; | |
756 | } | |
757 | ||
ba4e58ec GR |
758 | int udp_sendpage(struct sock *sk, struct page *page, int offset, |
759 | size_t size, int flags) | |
1da177e4 LT |
760 | { |
761 | struct udp_sock *up = udp_sk(sk); | |
762 | int ret; | |
763 | ||
764 | if (!up->pending) { | |
765 | struct msghdr msg = { .msg_flags = flags|MSG_MORE }; | |
766 | ||
767 | /* Call udp_sendmsg to specify destination address which | |
768 | * sendpage interface can't pass. | |
769 | * This will succeed only when the socket is connected. | |
770 | */ | |
771 | ret = udp_sendmsg(NULL, sk, &msg, 0); | |
772 | if (ret < 0) | |
773 | return ret; | |
774 | } | |
775 | ||
776 | lock_sock(sk); | |
777 | ||
778 | if (unlikely(!up->pending)) { | |
779 | release_sock(sk); | |
780 | ||
64ce2073 | 781 | LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 3\n"); |
1da177e4 LT |
782 | return -EINVAL; |
783 | } | |
784 | ||
785 | ret = ip_append_page(sk, page, offset, size, flags); | |
786 | if (ret == -EOPNOTSUPP) { | |
787 | release_sock(sk); | |
788 | return sock_no_sendpage(sk->sk_socket, page, offset, | |
789 | size, flags); | |
790 | } | |
791 | if (ret < 0) { | |
792 | udp_flush_pending_frames(sk); | |
793 | goto out; | |
794 | } | |
795 | ||
796 | up->len += size; | |
797 | if (!(up->corkflag || (flags&MSG_MORE))) | |
4c0a6cb0 | 798 | ret = udp_push_pending_frames(sk); |
1da177e4 LT |
799 | if (!ret) |
800 | ret = size; | |
801 | out: | |
802 | release_sock(sk); | |
803 | return ret; | |
804 | } | |
805 | ||
806 | /* | |
807 | * IOCTL requests applicable to the UDP protocol | |
808 | */ | |
e905a9ed | 809 | |
1da177e4 LT |
810 | int udp_ioctl(struct sock *sk, int cmd, unsigned long arg) |
811 | { | |
6516c655 SH |
812 | switch (cmd) { |
813 | case SIOCOUTQ: | |
1da177e4 | 814 | { |
6516c655 SH |
815 | int amount = atomic_read(&sk->sk_wmem_alloc); |
816 | return put_user(amount, (int __user *)arg); | |
817 | } | |
1da177e4 | 818 | |
6516c655 SH |
819 | case SIOCINQ: |
820 | { | |
821 | struct sk_buff *skb; | |
822 | unsigned long amount; | |
823 | ||
824 | amount = 0; | |
825 | spin_lock_bh(&sk->sk_receive_queue.lock); | |
826 | skb = skb_peek(&sk->sk_receive_queue); | |
827 | if (skb != NULL) { | |
828 | /* | |
829 | * We will only return the amount | |
830 | * of this packet since that is all | |
831 | * that will be read. | |
832 | */ | |
833 | amount = skb->len - sizeof(struct udphdr); | |
1da177e4 | 834 | } |
6516c655 SH |
835 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
836 | return put_user(amount, (int __user *)arg); | |
837 | } | |
1da177e4 | 838 | |
6516c655 SH |
839 | default: |
840 | return -ENOIOCTLCMD; | |
1da177e4 | 841 | } |
6516c655 SH |
842 | |
843 | return 0; | |
1da177e4 LT |
844 | } |
845 | ||
1da177e4 LT |
846 | /* |
847 | * This should be easy, if there is something there we | |
848 | * return it, otherwise we block. | |
849 | */ | |
850 | ||
ba4e58ec | 851 | int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, |
e905a9ed | 852 | size_t len, int noblock, int flags, int *addr_len) |
1da177e4 LT |
853 | { |
854 | struct inet_sock *inet = inet_sk(sk); | |
e905a9ed YH |
855 | struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name; |
856 | struct sk_buff *skb; | |
759e5d00 HX |
857 | unsigned int ulen, copied; |
858 | int err; | |
859 | int is_udplite = IS_UDPLITE(sk); | |
1da177e4 LT |
860 | |
861 | /* | |
862 | * Check any passed addresses | |
863 | */ | |
864 | if (addr_len) | |
865 | *addr_len=sizeof(*sin); | |
866 | ||
867 | if (flags & MSG_ERRQUEUE) | |
868 | return ip_recv_error(sk, msg, len); | |
869 | ||
870 | try_again: | |
871 | skb = skb_recv_datagram(sk, flags, noblock, &err); | |
872 | if (!skb) | |
873 | goto out; | |
e905a9ed | 874 | |
759e5d00 HX |
875 | ulen = skb->len - sizeof(struct udphdr); |
876 | copied = len; | |
877 | if (copied > ulen) | |
878 | copied = ulen; | |
879 | else if (copied < ulen) | |
1da177e4 | 880 | msg->msg_flags |= MSG_TRUNC; |
1da177e4 | 881 | |
ba4e58ec | 882 | /* |
759e5d00 HX |
883 | * If checksum is needed at all, try to do it while copying the |
884 | * data. If the data is truncated, or if we only want a partial | |
885 | * coverage checksum (UDP-Lite), do it before the copy. | |
ba4e58ec | 886 | */ |
ba4e58ec | 887 | |
759e5d00 HX |
888 | if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) { |
889 | if (udp_lib_checksum_complete(skb)) | |
1da177e4 | 890 | goto csum_copy_err; |
ba4e58ec GR |
891 | } |
892 | ||
60476372 | 893 | if (skb_csum_unnecessary(skb)) |
ba4e58ec GR |
894 | err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr), |
895 | msg->msg_iov, copied ); | |
896 | else { | |
1da177e4 LT |
897 | err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov); |
898 | ||
899 | if (err == -EINVAL) | |
900 | goto csum_copy_err; | |
901 | } | |
902 | ||
903 | if (err) | |
904 | goto out_free; | |
905 | ||
906 | sock_recv_timestamp(msg, sk, skb); | |
907 | ||
908 | /* Copy the address. */ | |
909 | if (sin) | |
910 | { | |
911 | sin->sin_family = AF_INET; | |
4bedb452 | 912 | sin->sin_port = udp_hdr(skb)->source; |
eddc9ec5 | 913 | sin->sin_addr.s_addr = ip_hdr(skb)->saddr; |
1da177e4 | 914 | memset(sin->sin_zero, 0, sizeof(sin->sin_zero)); |
e905a9ed | 915 | } |
1da177e4 LT |
916 | if (inet->cmsg_flags) |
917 | ip_cmsg_recv(msg, skb); | |
918 | ||
919 | err = copied; | |
920 | if (flags & MSG_TRUNC) | |
759e5d00 | 921 | err = ulen; |
e905a9ed | 922 | |
1da177e4 | 923 | out_free: |
e905a9ed | 924 | skb_free_datagram(sk, skb); |
1da177e4 | 925 | out: |
e905a9ed | 926 | return err; |
1da177e4 LT |
927 | |
928 | csum_copy_err: | |
ba4e58ec | 929 | UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite); |
1da177e4 | 930 | |
3305b80c | 931 | skb_kill_datagram(sk, skb, flags); |
1da177e4 LT |
932 | |
933 | if (noblock) | |
e905a9ed | 934 | return -EAGAIN; |
1da177e4 LT |
935 | goto try_again; |
936 | } | |
937 | ||
938 | ||
939 | int udp_disconnect(struct sock *sk, int flags) | |
940 | { | |
941 | struct inet_sock *inet = inet_sk(sk); | |
942 | /* | |
943 | * 1003.1g - break association. | |
944 | */ | |
e905a9ed | 945 | |
1da177e4 LT |
946 | sk->sk_state = TCP_CLOSE; |
947 | inet->daddr = 0; | |
948 | inet->dport = 0; | |
949 | sk->sk_bound_dev_if = 0; | |
950 | if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK)) | |
951 | inet_reset_saddr(sk); | |
952 | ||
953 | if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) { | |
954 | sk->sk_prot->unhash(sk); | |
955 | inet->sport = 0; | |
956 | } | |
957 | sk_dst_reset(sk); | |
958 | return 0; | |
959 | } | |
960 | ||
1da177e4 LT |
961 | /* return: |
962 | * 1 if the the UDP system should process it | |
963 | * 0 if we should drop this packet | |
964 | * -1 if it should get processed by xfrm4_rcv_encap | |
965 | */ | |
966 | static int udp_encap_rcv(struct sock * sk, struct sk_buff *skb) | |
967 | { | |
968 | #ifndef CONFIG_XFRM | |
e905a9ed | 969 | return 1; |
1da177e4 LT |
970 | #else |
971 | struct udp_sock *up = udp_sk(sk); | |
e905a9ed | 972 | struct udphdr *uh; |
1da177e4 LT |
973 | struct iphdr *iph; |
974 | int iphlen, len; | |
e905a9ed | 975 | |
753eab76 OK |
976 | __u8 *udpdata; |
977 | __be32 *udpdata32; | |
1da177e4 LT |
978 | __u16 encap_type = up->encap_type; |
979 | ||
980 | /* if we're overly short, let UDP handle it */ | |
753eab76 OK |
981 | len = skb->len - sizeof(struct udphdr); |
982 | if (len <= 0) | |
1da177e4 LT |
983 | return 1; |
984 | ||
985 | /* if this is not encapsulated socket, then just return now */ | |
986 | if (!encap_type) | |
987 | return 1; | |
988 | ||
753eab76 OK |
989 | /* If this is a paged skb, make sure we pull up |
990 | * whatever data we need to look at. */ | |
991 | if (!pskb_may_pull(skb, sizeof(struct udphdr) + min(len, 8))) | |
992 | return 1; | |
993 | ||
994 | /* Now we can get the pointers */ | |
4bedb452 | 995 | uh = udp_hdr(skb); |
753eab76 OK |
996 | udpdata = (__u8 *)uh + sizeof(struct udphdr); |
997 | udpdata32 = (__be32 *)udpdata; | |
1da177e4 LT |
998 | |
999 | switch (encap_type) { | |
1000 | default: | |
1001 | case UDP_ENCAP_ESPINUDP: | |
1002 | /* Check if this is a keepalive packet. If so, eat it. */ | |
1003 | if (len == 1 && udpdata[0] == 0xff) { | |
1004 | return 0; | |
6516c655 | 1005 | } else if (len > sizeof(struct ip_esp_hdr) && udpdata32[0] != 0) { |
1da177e4 LT |
1006 | /* ESP Packet without Non-ESP header */ |
1007 | len = sizeof(struct udphdr); | |
1008 | } else | |
1009 | /* Must be an IKE packet.. pass it through */ | |
1010 | return 1; | |
1011 | break; | |
1012 | case UDP_ENCAP_ESPINUDP_NON_IKE: | |
1013 | /* Check if this is a keepalive packet. If so, eat it. */ | |
1014 | if (len == 1 && udpdata[0] == 0xff) { | |
1015 | return 0; | |
1016 | } else if (len > 2 * sizeof(u32) + sizeof(struct ip_esp_hdr) && | |
1017 | udpdata32[0] == 0 && udpdata32[1] == 0) { | |
e905a9ed | 1018 | |
1da177e4 LT |
1019 | /* ESP Packet with Non-IKE marker */ |
1020 | len = sizeof(struct udphdr) + 2 * sizeof(u32); | |
1021 | } else | |
1022 | /* Must be an IKE packet.. pass it through */ | |
1023 | return 1; | |
1024 | break; | |
1025 | } | |
1026 | ||
1027 | /* At this point we are sure that this is an ESPinUDP packet, | |
1028 | * so we need to remove 'len' bytes from the packet (the UDP | |
1029 | * header and optional ESP marker bytes) and then modify the | |
1030 | * protocol to ESP, and then call into the transform receiver. | |
1031 | */ | |
4d78b6c7 HX |
1032 | if (skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) |
1033 | return 0; | |
1da177e4 LT |
1034 | |
1035 | /* Now we can update and verify the packet length... */ | |
eddc9ec5 | 1036 | iph = ip_hdr(skb); |
1da177e4 LT |
1037 | iphlen = iph->ihl << 2; |
1038 | iph->tot_len = htons(ntohs(iph->tot_len) - len); | |
1039 | if (skb->len < iphlen + len) { | |
1040 | /* packet is too small!?! */ | |
1041 | return 0; | |
1042 | } | |
1043 | ||
1044 | /* pull the data buffer up to the ESP header and set the | |
1045 | * transport header to point to ESP. Keep UDP on the stack | |
1046 | * for later. | |
1047 | */ | |
badff6d0 ACM |
1048 | __skb_pull(skb, len); |
1049 | skb_reset_transport_header(skb); | |
1da177e4 LT |
1050 | |
1051 | /* modify the protocol (it's ESP!) */ | |
1052 | iph->protocol = IPPROTO_ESP; | |
1053 | ||
1054 | /* and let the caller know to send this into the ESP processor... */ | |
1055 | return -1; | |
1056 | #endif | |
1057 | } | |
1058 | ||
1059 | /* returns: | |
1060 | * -1: error | |
1061 | * 0: success | |
1062 | * >0: "udp encap" protocol resubmission | |
1063 | * | |
1064 | * Note that in the success and error cases, the skb is assumed to | |
1065 | * have either been requeued or freed. | |
1066 | */ | |
ba4e58ec | 1067 | int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb) |
1da177e4 LT |
1068 | { |
1069 | struct udp_sock *up = udp_sk(sk); | |
81aa646c | 1070 | int rc; |
1da177e4 LT |
1071 | |
1072 | /* | |
1073 | * Charge it to the socket, dropping if the queue is full. | |
1074 | */ | |
ba4e58ec GR |
1075 | if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) |
1076 | goto drop; | |
b59c2701 | 1077 | nf_reset(skb); |
1da177e4 LT |
1078 | |
1079 | if (up->encap_type) { | |
1080 | /* | |
1081 | * This is an encapsulation socket, so let's see if this is | |
1082 | * an encapsulated packet. | |
1083 | * If it's a keepalive packet, then just eat it. | |
1084 | * If it's an encapsulateed packet, then pass it to the | |
1085 | * IPsec xfrm input and return the response | |
1086 | * appropriately. Otherwise, just fall through and | |
1087 | * pass this up the UDP socket. | |
1088 | */ | |
1089 | int ret; | |
1090 | ||
1091 | ret = udp_encap_rcv(sk, skb); | |
1092 | if (ret == 0) { | |
1093 | /* Eat the packet .. */ | |
1094 | kfree_skb(skb); | |
1095 | return 0; | |
1096 | } | |
1097 | if (ret < 0) { | |
1098 | /* process the ESP packet */ | |
1099 | ret = xfrm4_rcv_encap(skb, up->encap_type); | |
ba4e58ec | 1100 | UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag); |
1da177e4 LT |
1101 | return -ret; |
1102 | } | |
1103 | /* FALLTHROUGH -- it's a UDP Packet */ | |
1104 | } | |
1105 | ||
ba4e58ec GR |
1106 | /* |
1107 | * UDP-Lite specific tests, ignored on UDP sockets | |
1108 | */ | |
1109 | if ((up->pcflag & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) { | |
1110 | ||
1111 | /* | |
1112 | * MIB statistics other than incrementing the error count are | |
1113 | * disabled for the following two types of errors: these depend | |
1114 | * on the application settings, not on the functioning of the | |
1115 | * protocol stack as such. | |
1116 | * | |
1117 | * RFC 3828 here recommends (sec 3.3): "There should also be a | |
1118 | * way ... to ... at least let the receiving application block | |
1119 | * delivery of packets with coverage values less than a value | |
1120 | * provided by the application." | |
1121 | */ | |
1122 | if (up->pcrlen == 0) { /* full coverage was set */ | |
1123 | LIMIT_NETDEBUG(KERN_WARNING "UDPLITE: partial coverage " | |
1124 | "%d while full coverage %d requested\n", | |
1125 | UDP_SKB_CB(skb)->cscov, skb->len); | |
1126 | goto drop; | |
1da177e4 | 1127 | } |
ba4e58ec GR |
1128 | /* The next case involves violating the min. coverage requested |
1129 | * by the receiver. This is subtle: if receiver wants x and x is | |
1130 | * greater than the buffersize/MTU then receiver will complain | |
1131 | * that it wants x while sender emits packets of smaller size y. | |
1132 | * Therefore the above ...()->partial_cov statement is essential. | |
1133 | */ | |
1134 | if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { | |
1135 | LIMIT_NETDEBUG(KERN_WARNING | |
1136 | "UDPLITE: coverage %d too small, need min %d\n", | |
1137 | UDP_SKB_CB(skb)->cscov, up->pcrlen); | |
1138 | goto drop; | |
1139 | } | |
1140 | } | |
1141 | ||
759e5d00 HX |
1142 | if (sk->sk_filter) { |
1143 | if (udp_lib_checksum_complete(skb)) | |
ba4e58ec | 1144 | goto drop; |
1da177e4 LT |
1145 | } |
1146 | ||
81aa646c MB |
1147 | if ((rc = sock_queue_rcv_skb(sk,skb)) < 0) { |
1148 | /* Note that an ENOMEM error is charged twice */ | |
1149 | if (rc == -ENOMEM) | |
ba4e58ec GR |
1150 | UDP_INC_STATS_BH(UDP_MIB_RCVBUFERRORS, up->pcflag); |
1151 | goto drop; | |
1da177e4 | 1152 | } |
ba4e58ec GR |
1153 | |
1154 | UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag); | |
1da177e4 | 1155 | return 0; |
ba4e58ec GR |
1156 | |
1157 | drop: | |
1158 | UDP_INC_STATS_BH(UDP_MIB_INERRORS, up->pcflag); | |
1159 | kfree_skb(skb); | |
1160 | return -1; | |
1da177e4 LT |
1161 | } |
1162 | ||
1163 | /* | |
1164 | * Multicasts and broadcasts go to each listener. | |
1165 | * | |
1166 | * Note: called only from the BH handler context, | |
1167 | * so we don't need to lock the hashes. | |
1168 | */ | |
ba4e58ec GR |
1169 | static int __udp4_lib_mcast_deliver(struct sk_buff *skb, |
1170 | struct udphdr *uh, | |
1171 | __be32 saddr, __be32 daddr, | |
1172 | struct hlist_head udptable[]) | |
1da177e4 | 1173 | { |
6aaf47fa | 1174 | struct sock *sk, *skw, *sknext; |
1da177e4 | 1175 | int dif; |
6aaf47fa ED |
1176 | unsigned int hash = hash_port_and_addr(ntohs(uh->dest), daddr); |
1177 | unsigned int hashwild = hash_port_and_addr(ntohs(uh->dest), 0); | |
1da177e4 | 1178 | |
1da177e4 | 1179 | dif = skb->dev->ifindex; |
1da177e4 | 1180 | |
6aaf47fa ED |
1181 | read_lock(&udp_hash_lock); |
1182 | ||
1183 | sk = sk_head(&udptable[hash & (UDP_HTABLE_SIZE - 1)]); | |
1184 | skw = sk_head(&udptable[hashwild & (UDP_HTABLE_SIZE - 1)]); | |
1185 | ||
1186 | sk = udp_v4_mcast_next(sk, hash, uh->dest, daddr, uh->source, saddr, dif); | |
1187 | if (!sk) { | |
1188 | hash = hashwild; | |
1189 | sk = udp_v4_mcast_next(skw, hash, uh->dest, daddr, uh->source, | |
1190 | saddr, dif); | |
1191 | } | |
1192 | if (sk) { | |
1da177e4 LT |
1193 | do { |
1194 | struct sk_buff *skb1 = skb; | |
6aaf47fa ED |
1195 | sknext = udp_v4_mcast_next(sk_next(sk), hash, uh->dest, |
1196 | daddr, uh->source, saddr, dif); | |
1197 | if (!sknext && hash != hashwild) { | |
1198 | hash = hashwild; | |
1199 | sknext = udp_v4_mcast_next(skw, hash, uh->dest, | |
1200 | daddr, uh->source, saddr, dif); | |
1201 | } | |
6516c655 | 1202 | if (sknext) |
1da177e4 LT |
1203 | skb1 = skb_clone(skb, GFP_ATOMIC); |
1204 | ||
6516c655 | 1205 | if (skb1) { |
1da177e4 LT |
1206 | int ret = udp_queue_rcv_skb(sk, skb1); |
1207 | if (ret > 0) | |
6aaf47fa ED |
1208 | /* |
1209 | * we should probably re-process | |
1210 | * instead of dropping packets here. | |
1211 | */ | |
1da177e4 LT |
1212 | kfree_skb(skb1); |
1213 | } | |
1214 | sk = sknext; | |
6516c655 | 1215 | } while (sknext); |
1da177e4 LT |
1216 | } else |
1217 | kfree_skb(skb); | |
1218 | read_unlock(&udp_hash_lock); | |
1219 | return 0; | |
1220 | } | |
1221 | ||
1222 | /* Initialize UDP checksum. If exited with zero value (success), | |
1223 | * CHECKSUM_UNNECESSARY means, that no more checks are required. | |
1224 | * Otherwise, csum completion requires chacksumming packet body, | |
1225 | * including udp header and folding it to skb->csum. | |
1226 | */ | |
759e5d00 HX |
1227 | static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh, |
1228 | int proto) | |
1da177e4 | 1229 | { |
eddc9ec5 | 1230 | const struct iphdr *iph; |
759e5d00 HX |
1231 | int err; |
1232 | ||
1233 | UDP_SKB_CB(skb)->partial_cov = 0; | |
1234 | UDP_SKB_CB(skb)->cscov = skb->len; | |
1235 | ||
1236 | if (proto == IPPROTO_UDPLITE) { | |
1237 | err = udplite_checksum_init(skb, uh); | |
1238 | if (err) | |
1239 | return err; | |
1240 | } | |
1241 | ||
eddc9ec5 | 1242 | iph = ip_hdr(skb); |
1da177e4 LT |
1243 | if (uh->check == 0) { |
1244 | skb->ip_summed = CHECKSUM_UNNECESSARY; | |
84fa7933 | 1245 | } else if (skb->ip_summed == CHECKSUM_COMPLETE) { |
eddc9ec5 ACM |
1246 | if (!csum_tcpudp_magic(iph->saddr, iph->daddr, skb->len, |
1247 | proto, skb->csum)) | |
fb286bb2 | 1248 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
1da177e4 | 1249 | } |
60476372 | 1250 | if (!skb_csum_unnecessary(skb)) |
eddc9ec5 | 1251 | skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr, |
759e5d00 | 1252 | skb->len, proto, 0); |
1da177e4 LT |
1253 | /* Probably, we should checksum udp header (it should be in cache |
1254 | * in any case) and data in tiny packets (< rx copybreak). | |
1255 | */ | |
ba4e58ec | 1256 | |
759e5d00 | 1257 | return 0; |
1da177e4 LT |
1258 | } |
1259 | ||
1260 | /* | |
e905a9ed | 1261 | * All we need to do is get the socket, and then do a checksum. |
1da177e4 | 1262 | */ |
e905a9ed | 1263 | |
ba4e58ec | 1264 | int __udp4_lib_rcv(struct sk_buff *skb, struct hlist_head udptable[], |
759e5d00 | 1265 | int proto) |
1da177e4 | 1266 | { |
e905a9ed | 1267 | struct sock *sk; |
4bedb452 | 1268 | struct udphdr *uh = udp_hdr(skb); |
1da177e4 LT |
1269 | unsigned short ulen; |
1270 | struct rtable *rt = (struct rtable*)skb->dst; | |
eddc9ec5 ACM |
1271 | __be32 saddr = ip_hdr(skb)->saddr; |
1272 | __be32 daddr = ip_hdr(skb)->daddr; | |
1da177e4 LT |
1273 | |
1274 | /* | |
ba4e58ec | 1275 | * Validate the packet. |
1da177e4 LT |
1276 | */ |
1277 | if (!pskb_may_pull(skb, sizeof(struct udphdr))) | |
ba4e58ec | 1278 | goto drop; /* No space for header. */ |
1da177e4 LT |
1279 | |
1280 | ulen = ntohs(uh->len); | |
ba4e58ec | 1281 | if (ulen > skb->len) |
1da177e4 LT |
1282 | goto short_packet; |
1283 | ||
759e5d00 HX |
1284 | if (proto == IPPROTO_UDP) { |
1285 | /* UDP validates ulen. */ | |
ba4e58ec GR |
1286 | if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen)) |
1287 | goto short_packet; | |
4bedb452 | 1288 | uh = udp_hdr(skb); |
ba4e58ec | 1289 | } |
1da177e4 | 1290 | |
759e5d00 HX |
1291 | if (udp4_csum_init(skb, uh, proto)) |
1292 | goto csum_error; | |
1293 | ||
6516c655 | 1294 | if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST)) |
ba4e58ec | 1295 | return __udp4_lib_mcast_deliver(skb, uh, saddr, daddr, udptable); |
1da177e4 | 1296 | |
ba4e58ec GR |
1297 | sk = __udp4_lib_lookup(saddr, uh->source, daddr, uh->dest, |
1298 | skb->dev->ifindex, udptable ); | |
1da177e4 LT |
1299 | |
1300 | if (sk != NULL) { | |
1301 | int ret = udp_queue_rcv_skb(sk, skb); | |
1302 | sock_put(sk); | |
1303 | ||
1304 | /* a return value > 0 means to resubmit the input, but | |
ba4e58ec | 1305 | * it wants the return to be -protocol, or 0 |
1da177e4 LT |
1306 | */ |
1307 | if (ret > 0) | |
1308 | return -ret; | |
1309 | return 0; | |
1310 | } | |
1311 | ||
1312 | if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) | |
1313 | goto drop; | |
b59c2701 | 1314 | nf_reset(skb); |
1da177e4 LT |
1315 | |
1316 | /* No socket. Drop packet silently, if checksum is wrong */ | |
ba4e58ec | 1317 | if (udp_lib_checksum_complete(skb)) |
1da177e4 LT |
1318 | goto csum_error; |
1319 | ||
759e5d00 | 1320 | UDP_INC_STATS_BH(UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); |
1da177e4 LT |
1321 | icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0); |
1322 | ||
1323 | /* | |
1324 | * Hmm. We got an UDP packet to a port to which we | |
1325 | * don't wanna listen. Ignore it. | |
1326 | */ | |
1327 | kfree_skb(skb); | |
6516c655 | 1328 | return 0; |
1da177e4 LT |
1329 | |
1330 | short_packet: | |
ba4e58ec | 1331 | LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: short packet: From %u.%u.%u.%u:%u %d/%d to %u.%u.%u.%u:%u\n", |
759e5d00 | 1332 | proto == IPPROTO_UDPLITE ? "-Lite" : "", |
64ce2073 PM |
1333 | NIPQUAD(saddr), |
1334 | ntohs(uh->source), | |
1335 | ulen, | |
ba4e58ec | 1336 | skb->len, |
64ce2073 PM |
1337 | NIPQUAD(daddr), |
1338 | ntohs(uh->dest)); | |
ba4e58ec | 1339 | goto drop; |
1da177e4 LT |
1340 | |
1341 | csum_error: | |
e905a9ed YH |
1342 | /* |
1343 | * RFC1122: OK. Discards the bad packet silently (as far as | |
1344 | * the network is concerned, anyway) as per 4.1.3.4 (MUST). | |
1da177e4 | 1345 | */ |
ba4e58ec | 1346 | LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: bad checksum. From %d.%d.%d.%d:%d to %d.%d.%d.%d:%d ulen %d\n", |
759e5d00 | 1347 | proto == IPPROTO_UDPLITE ? "-Lite" : "", |
64ce2073 PM |
1348 | NIPQUAD(saddr), |
1349 | ntohs(uh->source), | |
1350 | NIPQUAD(daddr), | |
1351 | ntohs(uh->dest), | |
1352 | ulen); | |
1da177e4 | 1353 | drop: |
759e5d00 | 1354 | UDP_INC_STATS_BH(UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); |
1da177e4 | 1355 | kfree_skb(skb); |
6516c655 | 1356 | return 0; |
1da177e4 LT |
1357 | } |
1358 | ||
3fbe070a | 1359 | int udp_rcv(struct sk_buff *skb) |
ba4e58ec | 1360 | { |
759e5d00 | 1361 | return __udp4_lib_rcv(skb, udp_hash, IPPROTO_UDP); |
ba4e58ec GR |
1362 | } |
1363 | ||
1364 | int udp_destroy_sock(struct sock *sk) | |
1da177e4 LT |
1365 | { |
1366 | lock_sock(sk); | |
1367 | udp_flush_pending_frames(sk); | |
1368 | release_sock(sk); | |
1369 | return 0; | |
1370 | } | |
1371 | ||
1372 | /* | |
1373 | * Socket option code for UDP | |
1374 | */ | |
4c0a6cb0 GR |
1375 | int udp_lib_setsockopt(struct sock *sk, int level, int optname, |
1376 | char __user *optval, int optlen, | |
1377 | int (*push_pending_frames)(struct sock *)) | |
1da177e4 LT |
1378 | { |
1379 | struct udp_sock *up = udp_sk(sk); | |
1380 | int val; | |
1381 | int err = 0; | |
1382 | ||
6516c655 | 1383 | if (optlen<sizeof(int)) |
1da177e4 LT |
1384 | return -EINVAL; |
1385 | ||
1386 | if (get_user(val, (int __user *)optval)) | |
1387 | return -EFAULT; | |
1388 | ||
6516c655 | 1389 | switch (optname) { |
1da177e4 LT |
1390 | case UDP_CORK: |
1391 | if (val != 0) { | |
1392 | up->corkflag = 1; | |
1393 | } else { | |
1394 | up->corkflag = 0; | |
1395 | lock_sock(sk); | |
4c0a6cb0 | 1396 | (*push_pending_frames)(sk); |
1da177e4 LT |
1397 | release_sock(sk); |
1398 | } | |
1399 | break; | |
e905a9ed | 1400 | |
1da177e4 LT |
1401 | case UDP_ENCAP: |
1402 | switch (val) { | |
1403 | case 0: | |
1404 | case UDP_ENCAP_ESPINUDP: | |
1405 | case UDP_ENCAP_ESPINUDP_NON_IKE: | |
1406 | up->encap_type = val; | |
1407 | break; | |
1408 | default: | |
1409 | err = -ENOPROTOOPT; | |
1410 | break; | |
1411 | } | |
1412 | break; | |
1413 | ||
ba4e58ec GR |
1414 | /* |
1415 | * UDP-Lite's partial checksum coverage (RFC 3828). | |
1416 | */ | |
1417 | /* The sender sets actual checksum coverage length via this option. | |
1418 | * The case coverage > packet length is handled by send module. */ | |
1419 | case UDPLITE_SEND_CSCOV: | |
1420 | if (!up->pcflag) /* Disable the option on UDP sockets */ | |
1421 | return -ENOPROTOOPT; | |
1422 | if (val != 0 && val < 8) /* Illegal coverage: use default (8) */ | |
1423 | val = 8; | |
1424 | up->pcslen = val; | |
1425 | up->pcflag |= UDPLITE_SEND_CC; | |
1426 | break; | |
1427 | ||
e905a9ed YH |
1428 | /* The receiver specifies a minimum checksum coverage value. To make |
1429 | * sense, this should be set to at least 8 (as done below). If zero is | |
ba4e58ec GR |
1430 | * used, this again means full checksum coverage. */ |
1431 | case UDPLITE_RECV_CSCOV: | |
1432 | if (!up->pcflag) /* Disable the option on UDP sockets */ | |
1433 | return -ENOPROTOOPT; | |
1434 | if (val != 0 && val < 8) /* Avoid silly minimal values. */ | |
1435 | val = 8; | |
1436 | up->pcrlen = val; | |
1437 | up->pcflag |= UDPLITE_RECV_CC; | |
1438 | break; | |
1439 | ||
1da177e4 LT |
1440 | default: |
1441 | err = -ENOPROTOOPT; | |
1442 | break; | |
6516c655 | 1443 | } |
1da177e4 LT |
1444 | |
1445 | return err; | |
1446 | } | |
1447 | ||
ba4e58ec GR |
1448 | int udp_setsockopt(struct sock *sk, int level, int optname, |
1449 | char __user *optval, int optlen) | |
3fdadf7d | 1450 | { |
ba4e58ec | 1451 | if (level == SOL_UDP || level == SOL_UDPLITE) |
4c0a6cb0 GR |
1452 | return udp_lib_setsockopt(sk, level, optname, optval, optlen, |
1453 | udp_push_pending_frames); | |
ba4e58ec | 1454 | return ip_setsockopt(sk, level, optname, optval, optlen); |
3fdadf7d DM |
1455 | } |
1456 | ||
1457 | #ifdef CONFIG_COMPAT | |
ba4e58ec GR |
1458 | int compat_udp_setsockopt(struct sock *sk, int level, int optname, |
1459 | char __user *optval, int optlen) | |
3fdadf7d | 1460 | { |
ba4e58ec | 1461 | if (level == SOL_UDP || level == SOL_UDPLITE) |
4c0a6cb0 GR |
1462 | return udp_lib_setsockopt(sk, level, optname, optval, optlen, |
1463 | udp_push_pending_frames); | |
ba4e58ec | 1464 | return compat_ip_setsockopt(sk, level, optname, optval, optlen); |
3fdadf7d DM |
1465 | } |
1466 | #endif | |
1467 | ||
4c0a6cb0 GR |
1468 | int udp_lib_getsockopt(struct sock *sk, int level, int optname, |
1469 | char __user *optval, int __user *optlen) | |
1da177e4 LT |
1470 | { |
1471 | struct udp_sock *up = udp_sk(sk); | |
1472 | int val, len; | |
1473 | ||
6516c655 | 1474 | if (get_user(len,optlen)) |
1da177e4 LT |
1475 | return -EFAULT; |
1476 | ||
1477 | len = min_t(unsigned int, len, sizeof(int)); | |
e905a9ed | 1478 | |
6516c655 | 1479 | if (len < 0) |
1da177e4 LT |
1480 | return -EINVAL; |
1481 | ||
6516c655 | 1482 | switch (optname) { |
1da177e4 LT |
1483 | case UDP_CORK: |
1484 | val = up->corkflag; | |
1485 | break; | |
1486 | ||
1487 | case UDP_ENCAP: | |
1488 | val = up->encap_type; | |
1489 | break; | |
1490 | ||
ba4e58ec GR |
1491 | /* The following two cannot be changed on UDP sockets, the return is |
1492 | * always 0 (which corresponds to the full checksum coverage of UDP). */ | |
1493 | case UDPLITE_SEND_CSCOV: | |
1494 | val = up->pcslen; | |
1495 | break; | |
1496 | ||
1497 | case UDPLITE_RECV_CSCOV: | |
1498 | val = up->pcrlen; | |
1499 | break; | |
1500 | ||
1da177e4 LT |
1501 | default: |
1502 | return -ENOPROTOOPT; | |
6516c655 | 1503 | } |
1da177e4 | 1504 | |
6516c655 | 1505 | if (put_user(len, optlen)) |
e905a9ed | 1506 | return -EFAULT; |
6516c655 | 1507 | if (copy_to_user(optval, &val,len)) |
1da177e4 | 1508 | return -EFAULT; |
e905a9ed | 1509 | return 0; |
1da177e4 LT |
1510 | } |
1511 | ||
ba4e58ec GR |
1512 | int udp_getsockopt(struct sock *sk, int level, int optname, |
1513 | char __user *optval, int __user *optlen) | |
3fdadf7d | 1514 | { |
ba4e58ec | 1515 | if (level == SOL_UDP || level == SOL_UDPLITE) |
4c0a6cb0 | 1516 | return udp_lib_getsockopt(sk, level, optname, optval, optlen); |
ba4e58ec | 1517 | return ip_getsockopt(sk, level, optname, optval, optlen); |
3fdadf7d DM |
1518 | } |
1519 | ||
1520 | #ifdef CONFIG_COMPAT | |
ba4e58ec | 1521 | int compat_udp_getsockopt(struct sock *sk, int level, int optname, |
543d9cfe | 1522 | char __user *optval, int __user *optlen) |
3fdadf7d | 1523 | { |
ba4e58ec | 1524 | if (level == SOL_UDP || level == SOL_UDPLITE) |
4c0a6cb0 | 1525 | return udp_lib_getsockopt(sk, level, optname, optval, optlen); |
ba4e58ec | 1526 | return compat_ip_getsockopt(sk, level, optname, optval, optlen); |
3fdadf7d DM |
1527 | } |
1528 | #endif | |
1da177e4 LT |
1529 | /** |
1530 | * udp_poll - wait for a UDP event. | |
1531 | * @file - file struct | |
1532 | * @sock - socket | |
1533 | * @wait - poll table | |
1534 | * | |
e905a9ed | 1535 | * This is same as datagram poll, except for the special case of |
1da177e4 LT |
1536 | * blocking sockets. If application is using a blocking fd |
1537 | * and a packet with checksum error is in the queue; | |
1538 | * then it could get return from select indicating data available | |
1539 | * but then block when reading it. Add special case code | |
1540 | * to work around these arguably broken applications. | |
1541 | */ | |
1542 | unsigned int udp_poll(struct file *file, struct socket *sock, poll_table *wait) | |
1543 | { | |
1544 | unsigned int mask = datagram_poll(file, sock, wait); | |
1545 | struct sock *sk = sock->sk; | |
ba4e58ec GR |
1546 | int is_lite = IS_UDPLITE(sk); |
1547 | ||
1da177e4 LT |
1548 | /* Check for false positives due to checksum errors */ |
1549 | if ( (mask & POLLRDNORM) && | |
1550 | !(file->f_flags & O_NONBLOCK) && | |
1551 | !(sk->sk_shutdown & RCV_SHUTDOWN)){ | |
1552 | struct sk_buff_head *rcvq = &sk->sk_receive_queue; | |
1553 | struct sk_buff *skb; | |
1554 | ||
208d8984 | 1555 | spin_lock_bh(&rcvq->lock); |
759e5d00 HX |
1556 | while ((skb = skb_peek(rcvq)) != NULL && |
1557 | udp_lib_checksum_complete(skb)) { | |
1558 | UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_lite); | |
1559 | __skb_unlink(skb, rcvq); | |
1560 | kfree_skb(skb); | |
1da177e4 | 1561 | } |
208d8984 | 1562 | spin_unlock_bh(&rcvq->lock); |
1da177e4 LT |
1563 | |
1564 | /* nothing to see, move along */ | |
1565 | if (skb == NULL) | |
1566 | mask &= ~(POLLIN | POLLRDNORM); | |
1567 | } | |
1568 | ||
1569 | return mask; | |
e905a9ed | 1570 | |
1da177e4 LT |
1571 | } |
1572 | ||
1573 | struct proto udp_prot = { | |
e905a9ed | 1574 | .name = "UDP", |
543d9cfe | 1575 | .owner = THIS_MODULE, |
ba4e58ec | 1576 | .close = udp_lib_close, |
543d9cfe ACM |
1577 | .connect = ip4_datagram_connect, |
1578 | .disconnect = udp_disconnect, | |
1579 | .ioctl = udp_ioctl, | |
1580 | .destroy = udp_destroy_sock, | |
1581 | .setsockopt = udp_setsockopt, | |
1582 | .getsockopt = udp_getsockopt, | |
1583 | .sendmsg = udp_sendmsg, | |
1584 | .recvmsg = udp_recvmsg, | |
1585 | .sendpage = udp_sendpage, | |
1586 | .backlog_rcv = udp_queue_rcv_skb, | |
ba4e58ec GR |
1587 | .hash = udp_lib_hash, |
1588 | .unhash = udp_lib_unhash, | |
543d9cfe ACM |
1589 | .get_port = udp_v4_get_port, |
1590 | .obj_size = sizeof(struct udp_sock), | |
3fdadf7d | 1591 | #ifdef CONFIG_COMPAT |
543d9cfe ACM |
1592 | .compat_setsockopt = compat_udp_setsockopt, |
1593 | .compat_getsockopt = compat_udp_getsockopt, | |
3fdadf7d | 1594 | #endif |
1da177e4 LT |
1595 | }; |
1596 | ||
1597 | /* ------------------------------------------------------------------------ */ | |
1598 | #ifdef CONFIG_PROC_FS | |
1599 | ||
1600 | static struct sock *udp_get_first(struct seq_file *seq) | |
1601 | { | |
1602 | struct sock *sk; | |
1603 | struct udp_iter_state *state = seq->private; | |
1604 | ||
1605 | for (state->bucket = 0; state->bucket < UDP_HTABLE_SIZE; ++state->bucket) { | |
1606 | struct hlist_node *node; | |
ba4e58ec | 1607 | sk_for_each(sk, node, state->hashtable + state->bucket) { |
1da177e4 LT |
1608 | if (sk->sk_family == state->family) |
1609 | goto found; | |
1610 | } | |
1611 | } | |
1612 | sk = NULL; | |
1613 | found: | |
1614 | return sk; | |
1615 | } | |
1616 | ||
1617 | static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk) | |
1618 | { | |
1619 | struct udp_iter_state *state = seq->private; | |
1620 | ||
1621 | do { | |
1622 | sk = sk_next(sk); | |
1623 | try_again: | |
1624 | ; | |
1625 | } while (sk && sk->sk_family != state->family); | |
1626 | ||
1627 | if (!sk && ++state->bucket < UDP_HTABLE_SIZE) { | |
ba4e58ec | 1628 | sk = sk_head(state->hashtable + state->bucket); |
1da177e4 LT |
1629 | goto try_again; |
1630 | } | |
1631 | return sk; | |
1632 | } | |
1633 | ||
1634 | static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos) | |
1635 | { | |
1636 | struct sock *sk = udp_get_first(seq); | |
1637 | ||
1638 | if (sk) | |
6516c655 | 1639 | while (pos && (sk = udp_get_next(seq, sk)) != NULL) |
1da177e4 LT |
1640 | --pos; |
1641 | return pos ? NULL : sk; | |
1642 | } | |
1643 | ||
1644 | static void *udp_seq_start(struct seq_file *seq, loff_t *pos) | |
1645 | { | |
1646 | read_lock(&udp_hash_lock); | |
1647 | return *pos ? udp_get_idx(seq, *pos-1) : (void *)1; | |
1648 | } | |
1649 | ||
1650 | static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |
1651 | { | |
1652 | struct sock *sk; | |
1653 | ||
1654 | if (v == (void *)1) | |
1655 | sk = udp_get_idx(seq, 0); | |
1656 | else | |
1657 | sk = udp_get_next(seq, v); | |
1658 | ||
1659 | ++*pos; | |
1660 | return sk; | |
1661 | } | |
1662 | ||
1663 | static void udp_seq_stop(struct seq_file *seq, void *v) | |
1664 | { | |
1665 | read_unlock(&udp_hash_lock); | |
1666 | } | |
1667 | ||
1668 | static int udp_seq_open(struct inode *inode, struct file *file) | |
1669 | { | |
1670 | struct udp_seq_afinfo *afinfo = PDE(inode)->data; | |
1671 | struct seq_file *seq; | |
1672 | int rc = -ENOMEM; | |
0da974f4 | 1673 | struct udp_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL); |
1da177e4 LT |
1674 | |
1675 | if (!s) | |
1676 | goto out; | |
1da177e4 | 1677 | s->family = afinfo->family; |
ba4e58ec | 1678 | s->hashtable = afinfo->hashtable; |
1da177e4 LT |
1679 | s->seq_ops.start = udp_seq_start; |
1680 | s->seq_ops.next = udp_seq_next; | |
1681 | s->seq_ops.show = afinfo->seq_show; | |
1682 | s->seq_ops.stop = udp_seq_stop; | |
1683 | ||
1684 | rc = seq_open(file, &s->seq_ops); | |
1685 | if (rc) | |
1686 | goto out_kfree; | |
1687 | ||
1688 | seq = file->private_data; | |
1689 | seq->private = s; | |
1690 | out: | |
1691 | return rc; | |
1692 | out_kfree: | |
1693 | kfree(s); | |
1694 | goto out; | |
1695 | } | |
1696 | ||
1697 | /* ------------------------------------------------------------------------ */ | |
1698 | int udp_proc_register(struct udp_seq_afinfo *afinfo) | |
1699 | { | |
1700 | struct proc_dir_entry *p; | |
1701 | int rc = 0; | |
1702 | ||
1703 | if (!afinfo) | |
1704 | return -EINVAL; | |
1705 | afinfo->seq_fops->owner = afinfo->owner; | |
1706 | afinfo->seq_fops->open = udp_seq_open; | |
1707 | afinfo->seq_fops->read = seq_read; | |
1708 | afinfo->seq_fops->llseek = seq_lseek; | |
1709 | afinfo->seq_fops->release = seq_release_private; | |
1710 | ||
1711 | p = proc_net_fops_create(afinfo->name, S_IRUGO, afinfo->seq_fops); | |
1712 | if (p) | |
1713 | p->data = afinfo; | |
1714 | else | |
1715 | rc = -ENOMEM; | |
1716 | return rc; | |
1717 | } | |
1718 | ||
1719 | void udp_proc_unregister(struct udp_seq_afinfo *afinfo) | |
1720 | { | |
1721 | if (!afinfo) | |
1722 | return; | |
1723 | proc_net_remove(afinfo->name); | |
1724 | memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops)); | |
1725 | } | |
1726 | ||
1727 | /* ------------------------------------------------------------------------ */ | |
1728 | static void udp4_format_sock(struct sock *sp, char *tmpbuf, int bucket) | |
1729 | { | |
1730 | struct inet_sock *inet = inet_sk(sp); | |
734ab87f AV |
1731 | __be32 dest = inet->daddr; |
1732 | __be32 src = inet->rcv_saddr; | |
1da177e4 LT |
1733 | __u16 destp = ntohs(inet->dport); |
1734 | __u16 srcp = ntohs(inet->sport); | |
1735 | ||
1736 | sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X" | |
1737 | " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p", | |
e905a9ed | 1738 | bucket, src, srcp, dest, destp, sp->sk_state, |
1da177e4 LT |
1739 | atomic_read(&sp->sk_wmem_alloc), |
1740 | atomic_read(&sp->sk_rmem_alloc), | |
1741 | 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp), | |
1742 | atomic_read(&sp->sk_refcnt), sp); | |
1743 | } | |
1744 | ||
ba4e58ec | 1745 | int udp4_seq_show(struct seq_file *seq, void *v) |
1da177e4 LT |
1746 | { |
1747 | if (v == SEQ_START_TOKEN) | |
1748 | seq_printf(seq, "%-127s\n", | |
1749 | " sl local_address rem_address st tx_queue " | |
1750 | "rx_queue tr tm->when retrnsmt uid timeout " | |
1751 | "inode"); | |
1752 | else { | |
1753 | char tmpbuf[129]; | |
1754 | struct udp_iter_state *state = seq->private; | |
1755 | ||
1756 | udp4_format_sock(v, tmpbuf, state->bucket); | |
1757 | seq_printf(seq, "%-127s\n", tmpbuf); | |
1758 | } | |
1759 | return 0; | |
1760 | } | |
1761 | ||
1762 | /* ------------------------------------------------------------------------ */ | |
1763 | static struct file_operations udp4_seq_fops; | |
1764 | static struct udp_seq_afinfo udp4_seq_afinfo = { | |
1765 | .owner = THIS_MODULE, | |
1766 | .name = "udp", | |
1767 | .family = AF_INET, | |
ba4e58ec | 1768 | .hashtable = udp_hash, |
1da177e4 LT |
1769 | .seq_show = udp4_seq_show, |
1770 | .seq_fops = &udp4_seq_fops, | |
1771 | }; | |
1772 | ||
1773 | int __init udp4_proc_init(void) | |
1774 | { | |
1775 | return udp_proc_register(&udp4_seq_afinfo); | |
1776 | } | |
1777 | ||
1778 | void udp4_proc_exit(void) | |
1779 | { | |
1780 | udp_proc_unregister(&udp4_seq_afinfo); | |
1781 | } | |
1782 | #endif /* CONFIG_PROC_FS */ | |
1783 | ||
1784 | EXPORT_SYMBOL(udp_disconnect); | |
1785 | EXPORT_SYMBOL(udp_hash); | |
1786 | EXPORT_SYMBOL(udp_hash_lock); | |
1787 | EXPORT_SYMBOL(udp_ioctl); | |
25030a7f | 1788 | EXPORT_SYMBOL(udp_get_port); |
1da177e4 LT |
1789 | EXPORT_SYMBOL(udp_prot); |
1790 | EXPORT_SYMBOL(udp_sendmsg); | |
4c0a6cb0 GR |
1791 | EXPORT_SYMBOL(udp_lib_getsockopt); |
1792 | EXPORT_SYMBOL(udp_lib_setsockopt); | |
1da177e4 LT |
1793 | EXPORT_SYMBOL(udp_poll); |
1794 | ||
1795 | #ifdef CONFIG_PROC_FS | |
1796 | EXPORT_SYMBOL(udp_proc_register); | |
1797 | EXPORT_SYMBOL(udp_proc_unregister); | |
1798 | #endif |