blob: 2a6c491f97d7950babe6e1248f3b4866ecb9a840 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
Alan Cox113aa832008-10-13 19:01:08 -070011 * Alan Cox, <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Hirokazu Takahashi, <taka@valinux.co.jp>
13 *
14 * Fixes:
15 * Alan Cox : verify_area() calls
16 * Alan Cox : stopped close while in use off icmp
17 * messages. Not a fix but a botch that
18 * for udp at least is 'valid'.
19 * Alan Cox : Fixed icmp handling properly
20 * Alan Cox : Correct error for oversized datagrams
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090021 * Alan Cox : Tidied select() semantics.
22 * Alan Cox : udp_err() fixed properly, also now
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * select and read wake correctly on errors
24 * Alan Cox : udp_send verify_area moved to avoid mem leak
25 * Alan Cox : UDP can count its memory
26 * Alan Cox : send to an unknown connection causes
27 * an ECONNREFUSED off the icmp, but
28 * does NOT close.
29 * Alan Cox : Switched to new sk_buff handlers. No more backlog!
30 * Alan Cox : Using generic datagram code. Even smaller and the PEEK
31 * bug no longer crashes it.
32 * Fred Van Kempen : Net2e support for sk->broadcast.
33 * Alan Cox : Uses skb_free_datagram
34 * Alan Cox : Added get/set sockopt support.
35 * Alan Cox : Broadcasting without option set returns EACCES.
36 * Alan Cox : No wakeup calls. Instead we now use the callbacks.
37 * Alan Cox : Use ip_tos and ip_ttl
38 * Alan Cox : SNMP Mibs
39 * Alan Cox : MSG_DONTROUTE, and 0.0.0.0 support.
40 * Matt Dillon : UDP length checks.
41 * Alan Cox : Smarter af_inet used properly.
42 * Alan Cox : Use new kernel side addressing.
43 * Alan Cox : Incorrect return on truncated datagram receive.
44 * Arnt Gulbrandsen : New udp_send and stuff
45 * Alan Cox : Cache last socket
46 * Alan Cox : Route cache
47 * Jon Peatfield : Minor efficiency fix to sendto().
48 * Mike Shaver : RFC1122 checks.
49 * Alan Cox : Nonblocking error fix.
50 * Willy Konynenberg : Transparent proxying support.
51 * Mike McLagan : Routing by source
52 * David S. Miller : New socket lookup architecture.
53 * Last socket cache retained as it
54 * does have a high hit rate.
55 * Olaf Kirch : Don't linearise iovec on sendmsg.
56 * Andi Kleen : Some cleanups, cache destination entry
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090057 * for connect.
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * Vitaly E. Lavrov : Transparent proxy revived after year coma.
59 * Melvin Smith : Check msg_name not msg_namelen in sendto(),
60 * return ENOTCONN for unconnected sockets (POSIX)
61 * Janos Farkas : don't deliver multi/broadcasts to a different
62 * bound-to-device socket
63 * Hirokazu Takahashi : HW checksumming for outgoing UDP
64 * datagrams.
65 * Hirokazu Takahashi : sendfile() on UDP works now.
66 * Arnaldo C. Melo : convert /proc/net/udp to seq_file
67 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
68 * Alexey Kuznetsov: allow both IPv4 and IPv6 sockets to bind
69 * a single port at the same time.
70 * Derek Atkins <derek@ihtfp.com>: Add Encapulation Support
James Chapman342f0232007-06-27 15:37:46 -070071 * James Chapman : Add L2TP encapsulation type.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 *
73 *
74 * This program is free software; you can redistribute it and/or
75 * modify it under the terms of the GNU General Public License
76 * as published by the Free Software Foundation; either version
77 * 2 of the License, or (at your option) any later version.
78 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <asm/system.h>
81#include <asm/uaccess.h>
82#include <asm/ioctls.h>
Hideo Aoki95766ff2007-12-31 00:29:24 -080083#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <linux/types.h>
85#include <linux/fcntl.h>
86#include <linux/module.h>
87#include <linux/socket.h>
88#include <linux/sockios.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020089#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include <linux/in.h>
91#include <linux/errno.h>
92#include <linux/timer.h>
93#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/netdevice.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070096#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <linux/skbuff.h>
98#include <linux/proc_fs.h>
99#include <linux/seq_file.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200100#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <net/icmp.h>
102#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <net/checksum.h>
104#include <net/xfrm.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800105#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Eric Dumazet645ca702008-10-29 01:41:45 -0700107struct udp_table udp_table;
108EXPORT_SYMBOL(udp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Hideo Aoki95766ff2007-12-31 00:29:24 -0800110int sysctl_udp_mem[3] __read_mostly;
111int sysctl_udp_rmem_min __read_mostly;
112int sysctl_udp_wmem_min __read_mostly;
113
114EXPORT_SYMBOL(sysctl_udp_mem);
115EXPORT_SYMBOL(sysctl_udp_rmem_min);
116EXPORT_SYMBOL(sysctl_udp_wmem_min);
117
118atomic_t udp_memory_allocated;
119EXPORT_SYMBOL(udp_memory_allocated);
120
Eric Dumazetf24d43c2008-10-09 14:51:27 -0700121static int udp_lib_lport_inuse(struct net *net, __u16 num,
Eric Dumazet645ca702008-10-29 01:41:45 -0700122 const struct udp_hslot *hslot,
Eric Dumazetf24d43c2008-10-09 14:51:27 -0700123 struct sock *sk,
124 int (*saddr_comp)(const struct sock *sk1,
125 const struct sock *sk2))
Gerrit Renker25030a72006-08-26 20:06:05 -0700126{
Eric Dumazetf24d43c2008-10-09 14:51:27 -0700127 struct sock *sk2;
Gerrit Renker25030a72006-08-26 20:06:05 -0700128 struct hlist_node *node;
129
Eric Dumazet645ca702008-10-29 01:41:45 -0700130 sk_for_each(sk2, node, &hslot->head)
Eric Dumazetf24d43c2008-10-09 14:51:27 -0700131 if (net_eq(sock_net(sk2), net) &&
132 sk2 != sk &&
133 sk2->sk_hash == num &&
134 (!sk2->sk_reuse || !sk->sk_reuse) &&
135 (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if
136 || sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
137 (*saddr_comp)(sk, sk2))
Gerrit Renker25030a72006-08-26 20:06:05 -0700138 return 1;
139 return 0;
140}
141
142/**
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700143 * udp_lib_get_port - UDP/-Lite port lookup for IPv4 and IPv6
Gerrit Renker25030a72006-08-26 20:06:05 -0700144 *
145 * @sk: socket struct in question
146 * @snum: port number to look up
David S. Millerdf2bc452007-06-05 15:18:43 -0700147 * @saddr_comp: AF-dependent comparison of bound local IP addresses
Gerrit Renker25030a72006-08-26 20:06:05 -0700148 */
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700149int udp_lib_get_port(struct sock *sk, unsigned short snum,
David S. Millerdf2bc452007-06-05 15:18:43 -0700150 int (*saddr_comp)(const struct sock *sk1,
151 const struct sock *sk2 ) )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Eric Dumazet645ca702008-10-29 01:41:45 -0700153 struct udp_hslot *hslot;
154 struct udp_table *udptable = sk->sk_prot->h.udp_table;
Gerrit Renker25030a72006-08-26 20:06:05 -0700155 int error = 1;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900156 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Stephen Hemminger32c1da72007-08-24 23:09:41 -0700158 if (!snum) {
Eric Dumazet9088c562008-10-08 11:44:17 -0700159 int low, high, remaining;
160 unsigned rand;
161 unsigned short first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700163 inet_get_local_port_range(&low, &high);
Anton Arapova25de532007-10-18 22:00:17 -0700164 remaining = (high - low) + 1;
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700165
Eric Dumazet9088c562008-10-08 11:44:17 -0700166 rand = net_random();
167 snum = first = rand % remaining + low;
168 rand |= 1;
Eric Dumazet645ca702008-10-29 01:41:45 -0700169 for (;;) {
170 hslot = &udptable->hash[udp_hashfn(net, snum)];
171 spin_lock_bh(&hslot->lock);
172 if (!udp_lib_lport_inuse(net, snum, hslot, sk, saddr_comp))
173 break;
174 spin_unlock_bh(&hslot->lock);
Eric Dumazet9088c562008-10-08 11:44:17 -0700175 do {
176 snum = snum + rand;
177 } while (snum < low || snum > high);
178 if (snum == first)
179 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Eric Dumazet645ca702008-10-29 01:41:45 -0700181 } else {
182 hslot = &udptable->hash[udp_hashfn(net, snum)];
183 spin_lock_bh(&hslot->lock);
184 if (udp_lib_lport_inuse(net, snum, hslot, sk, saddr_comp))
185 goto fail_unlock;
186 }
Gerrit Renker25030a72006-08-26 20:06:05 -0700187 inet_sk(sk)->num = snum;
David S. Millerdf2bc452007-06-05 15:18:43 -0700188 sk->sk_hash = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (sk_unhashed(sk)) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700190 sk_add_node(sk, &hslot->head);
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700191 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Gerrit Renker25030a72006-08-26 20:06:05 -0700193 error = 0;
Eric Dumazet645ca702008-10-29 01:41:45 -0700194fail_unlock:
195 spin_unlock_bh(&hslot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196fail:
Gerrit Renker25030a72006-08-26 20:06:05 -0700197 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700200static int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2)
David S. Millerdb8dac22008-03-06 16:22:02 -0800201{
202 struct inet_sock *inet1 = inet_sk(sk1), *inet2 = inet_sk(sk2);
203
204 return ( !ipv6_only_sock(sk2) &&
205 (!inet1->rcv_saddr || !inet2->rcv_saddr ||
206 inet1->rcv_saddr == inet2->rcv_saddr ));
207}
208
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700209int udp_v4_get_port(struct sock *sk, unsigned short snum)
David S. Millerdb8dac22008-03-06 16:22:02 -0800210{
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700211 return udp_lib_get_port(sk, snum, ipv4_rcv_saddr_equal);
David S. Millerdb8dac22008-03-06 16:22:02 -0800212}
213
Eric Dumazet645ca702008-10-29 01:41:45 -0700214static inline int compute_score(struct sock *sk, struct net *net, __be32 saddr,
215 unsigned short hnum,
216 __be16 sport, __be32 daddr, __be16 dport, int dif)
217{
218 int score = -1;
219
220 if (net_eq(sock_net(sk), net) && sk->sk_hash == hnum &&
221 !ipv6_only_sock(sk)) {
222 struct inet_sock *inet = inet_sk(sk);
223
224 score = (sk->sk_family == PF_INET ? 1 : 0);
225 if (inet->rcv_saddr) {
226 if (inet->rcv_saddr != daddr)
227 return -1;
228 score += 2;
229 }
230 if (inet->daddr) {
231 if (inet->daddr != saddr)
232 return -1;
233 score += 2;
234 }
235 if (inet->dport) {
236 if (inet->dport != sport)
237 return -1;
238 score += 2;
239 }
240 if (sk->sk_bound_dev_if) {
241 if (sk->sk_bound_dev_if != dif)
242 return -1;
243 score += 2;
244 }
245 }
246 return score;
247}
248
David S. Millerdb8dac22008-03-06 16:22:02 -0800249/* UDP is nearly always wildcards out the wazoo, it makes no sense to try
250 * harder than this. -DaveM
251 */
252static struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr,
253 __be16 sport, __be32 daddr, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700254 int dif, struct udp_table *udptable)
David S. Millerdb8dac22008-03-06 16:22:02 -0800255{
256 struct sock *sk, *result = NULL;
257 struct hlist_node *node;
258 unsigned short hnum = ntohs(dport);
Eric Dumazet645ca702008-10-29 01:41:45 -0700259 unsigned int hash = udp_hashfn(net, hnum);
260 struct udp_hslot *hslot = &udptable->hash[hash];
261 int score, badness = -1;
David S. Millerdb8dac22008-03-06 16:22:02 -0800262
Eric Dumazet645ca702008-10-29 01:41:45 -0700263 spin_lock(&hslot->lock);
264 sk_for_each(sk, node, &hslot->head) {
265 score = compute_score(sk, net, saddr, hnum, sport,
266 daddr, dport, dif);
267 if (score > badness) {
268 result = sk;
269 badness = score;
David S. Millerdb8dac22008-03-06 16:22:02 -0800270 }
271 }
272 if (result)
273 sock_hold(result);
Eric Dumazet645ca702008-10-29 01:41:45 -0700274 spin_unlock(&hslot->lock);
David S. Millerdb8dac22008-03-06 16:22:02 -0800275 return result;
276}
277
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700278static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb,
279 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700280 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700281{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700282 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700283 const struct iphdr *iph = ip_hdr(skb);
284
KOVACS Krisztian23542612008-10-07 12:41:01 -0700285 if (unlikely(sk = skb_steal_sock(skb)))
286 return sk;
287 else
288 return __udp4_lib_lookup(dev_net(skb->dst->dev), iph->saddr, sport,
289 iph->daddr, dport, inet_iif(skb),
290 udptable);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700291}
292
KOVACS Krisztianbcd41302008-10-01 07:48:10 -0700293struct sock *udp4_lib_lookup(struct net *net, __be32 saddr, __be16 sport,
294 __be32 daddr, __be16 dport, int dif)
295{
Eric Dumazet645ca702008-10-29 01:41:45 -0700296 return __udp4_lib_lookup(net, saddr, sport, daddr, dport, dif, &udp_table);
KOVACS Krisztianbcd41302008-10-01 07:48:10 -0700297}
298EXPORT_SYMBOL_GPL(udp4_lib_lookup);
299
David S. Millerdb8dac22008-03-06 16:22:02 -0800300static inline struct sock *udp_v4_mcast_next(struct sock *sk,
301 __be16 loc_port, __be32 loc_addr,
302 __be16 rmt_port, __be32 rmt_addr,
303 int dif)
304{
305 struct hlist_node *node;
306 struct sock *s = sk;
307 unsigned short hnum = ntohs(loc_port);
308
309 sk_for_each_from(s, node) {
310 struct inet_sock *inet = inet_sk(s);
311
312 if (s->sk_hash != hnum ||
313 (inet->daddr && inet->daddr != rmt_addr) ||
314 (inet->dport != rmt_port && inet->dport) ||
315 (inet->rcv_saddr && inet->rcv_saddr != loc_addr) ||
316 ipv6_only_sock(s) ||
317 (s->sk_bound_dev_if && s->sk_bound_dev_if != dif))
318 continue;
319 if (!ip_mc_sf_allow(s, loc_addr, rmt_addr, dif))
320 continue;
321 goto found;
322 }
323 s = NULL;
324found:
325 return s;
326}
327
328/*
329 * This routine is called by the ICMP module when it gets some
330 * sort of error condition. If err < 0 then the socket should
331 * be closed and the error returned to the user. If err > 0
332 * it's just the icmp type << 8 | icmp code.
333 * Header points to the ip header of the error packet. We move
334 * on past this. Then (as it used to claim before adjustment)
335 * header points to the first 8 bytes of the udp header. We need
336 * to find the appropriate port.
337 */
338
Eric Dumazet645ca702008-10-29 01:41:45 -0700339void __udp4_lib_err(struct sk_buff *skb, u32 info, struct udp_table *udptable)
David S. Millerdb8dac22008-03-06 16:22:02 -0800340{
341 struct inet_sock *inet;
342 struct iphdr *iph = (struct iphdr*)skb->data;
343 struct udphdr *uh = (struct udphdr*)(skb->data+(iph->ihl<<2));
344 const int type = icmp_hdr(skb)->type;
345 const int code = icmp_hdr(skb)->code;
346 struct sock *sk;
347 int harderr;
348 int err;
Pavel Emelyanovfd54d712008-07-14 23:01:40 -0700349 struct net *net = dev_net(skb->dev);
David S. Millerdb8dac22008-03-06 16:22:02 -0800350
Pavel Emelyanovfd54d712008-07-14 23:01:40 -0700351 sk = __udp4_lib_lookup(net, iph->daddr, uh->dest,
David S. Millerdb8dac22008-03-06 16:22:02 -0800352 iph->saddr, uh->source, skb->dev->ifindex, udptable);
353 if (sk == NULL) {
Pavel Emelyanovdcfc23c2008-07-14 23:03:00 -0700354 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
David S. Millerdb8dac22008-03-06 16:22:02 -0800355 return; /* No socket for error */
356 }
357
358 err = 0;
359 harderr = 0;
360 inet = inet_sk(sk);
361
362 switch (type) {
363 default:
364 case ICMP_TIME_EXCEEDED:
365 err = EHOSTUNREACH;
366 break;
367 case ICMP_SOURCE_QUENCH:
368 goto out;
369 case ICMP_PARAMETERPROB:
370 err = EPROTO;
371 harderr = 1;
372 break;
373 case ICMP_DEST_UNREACH:
374 if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
375 if (inet->pmtudisc != IP_PMTUDISC_DONT) {
376 err = EMSGSIZE;
377 harderr = 1;
378 break;
379 }
380 goto out;
381 }
382 err = EHOSTUNREACH;
383 if (code <= NR_ICMP_UNREACH) {
384 harderr = icmp_err_convert[code].fatal;
385 err = icmp_err_convert[code].errno;
386 }
387 break;
388 }
389
390 /*
391 * RFC1122: OK. Passes ICMP errors back to application, as per
392 * 4.1.3.3.
393 */
394 if (!inet->recverr) {
395 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
396 goto out;
397 } else {
398 ip_icmp_error(sk, skb, err, uh->dest, info, (u8*)(uh+1));
399 }
400 sk->sk_err = err;
401 sk->sk_error_report(sk);
402out:
403 sock_put(sk);
404}
405
406void udp_err(struct sk_buff *skb, u32 info)
407{
Eric Dumazet645ca702008-10-29 01:41:45 -0700408 __udp4_lib_err(skb, info, &udp_table);
David S. Millerdb8dac22008-03-06 16:22:02 -0800409}
410
411/*
412 * Throw away all pending data and cancel the corking. Socket is locked.
413 */
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400414void udp_flush_pending_frames(struct sock *sk)
David S. Millerdb8dac22008-03-06 16:22:02 -0800415{
416 struct udp_sock *up = udp_sk(sk);
417
418 if (up->pending) {
419 up->len = 0;
420 up->pending = 0;
421 ip_flush_pending_frames(sk);
422 }
423}
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400424EXPORT_SYMBOL(udp_flush_pending_frames);
David S. Millerdb8dac22008-03-06 16:22:02 -0800425
426/**
427 * udp4_hwcsum_outgoing - handle outgoing HW checksumming
428 * @sk: socket we are sending on
429 * @skb: sk_buff containing the filled-in UDP header
430 * (checksum field must be zeroed out)
431 */
432static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
433 __be32 src, __be32 dst, int len )
434{
435 unsigned int offset;
436 struct udphdr *uh = udp_hdr(skb);
437 __wsum csum = 0;
438
439 if (skb_queue_len(&sk->sk_write_queue) == 1) {
440 /*
441 * Only one fragment on the socket.
442 */
443 skb->csum_start = skb_transport_header(skb) - skb->head;
444 skb->csum_offset = offsetof(struct udphdr, check);
445 uh->check = ~csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, 0);
446 } else {
447 /*
448 * HW-checksum won't work as there are two or more
449 * fragments on the socket so that all csums of sk_buffs
450 * should be together
451 */
452 offset = skb_transport_offset(skb);
453 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
454
455 skb->ip_summed = CHECKSUM_NONE;
456
457 skb_queue_walk(&sk->sk_write_queue, skb) {
458 csum = csum_add(csum, skb->csum);
459 }
460
461 uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum);
462 if (uh->check == 0)
463 uh->check = CSUM_MANGLED_0;
464 }
465}
466
467/*
468 * Push out all pending data as one UDP datagram. Socket is locked.
469 */
470static int udp_push_pending_frames(struct sock *sk)
471{
472 struct udp_sock *up = udp_sk(sk);
473 struct inet_sock *inet = inet_sk(sk);
474 struct flowi *fl = &inet->cork.fl;
475 struct sk_buff *skb;
476 struct udphdr *uh;
477 int err = 0;
478 int is_udplite = IS_UDPLITE(sk);
479 __wsum csum = 0;
480
481 /* Grab the skbuff where UDP header space exists. */
482 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
483 goto out;
484
485 /*
486 * Create a UDP header
487 */
488 uh = udp_hdr(skb);
489 uh->source = fl->fl_ip_sport;
490 uh->dest = fl->fl_ip_dport;
491 uh->len = htons(up->len);
492 uh->check = 0;
493
494 if (is_udplite) /* UDP-Lite */
495 csum = udplite_csum_outgoing(sk, skb);
496
497 else if (sk->sk_no_check == UDP_CSUM_NOXMIT) { /* UDP csum disabled */
498
499 skb->ip_summed = CHECKSUM_NONE;
500 goto send;
501
502 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
503
504 udp4_hwcsum_outgoing(sk, skb, fl->fl4_src,fl->fl4_dst, up->len);
505 goto send;
506
507 } else /* `normal' UDP */
508 csum = udp_csum_outgoing(sk, skb);
509
510 /* add protocol-dependent pseudo-header */
511 uh->check = csum_tcpudp_magic(fl->fl4_src, fl->fl4_dst, up->len,
512 sk->sk_protocol, csum );
513 if (uh->check == 0)
514 uh->check = CSUM_MANGLED_0;
515
516send:
517 err = ip_push_pending_frames(sk);
518out:
519 up->len = 0;
520 up->pending = 0;
521 if (!err)
Pavel Emelyanov629ca232008-07-05 21:18:07 -0700522 UDP_INC_STATS_USER(sock_net(sk),
523 UDP_MIB_OUTDATAGRAMS, is_udplite);
David S. Millerdb8dac22008-03-06 16:22:02 -0800524 return err;
525}
526
527int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
528 size_t len)
529{
530 struct inet_sock *inet = inet_sk(sk);
531 struct udp_sock *up = udp_sk(sk);
532 int ulen = len;
533 struct ipcm_cookie ipc;
534 struct rtable *rt = NULL;
535 int free = 0;
536 int connected = 0;
537 __be32 daddr, faddr, saddr;
538 __be16 dport;
539 u8 tos;
540 int err, is_udplite = IS_UDPLITE(sk);
541 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
542 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
543
544 if (len > 0xFFFF)
545 return -EMSGSIZE;
546
547 /*
548 * Check the flags.
549 */
550
551 if (msg->msg_flags&MSG_OOB) /* Mirror BSD error message compatibility */
552 return -EOPNOTSUPP;
553
554 ipc.opt = NULL;
555
556 if (up->pending) {
557 /*
558 * There are pending frames.
559 * The socket lock must be held while it's corked.
560 */
561 lock_sock(sk);
562 if (likely(up->pending)) {
563 if (unlikely(up->pending != AF_INET)) {
564 release_sock(sk);
565 return -EINVAL;
566 }
567 goto do_append_data;
568 }
569 release_sock(sk);
570 }
571 ulen += sizeof(struct udphdr);
572
573 /*
574 * Get and verify the address.
575 */
576 if (msg->msg_name) {
577 struct sockaddr_in * usin = (struct sockaddr_in*)msg->msg_name;
578 if (msg->msg_namelen < sizeof(*usin))
579 return -EINVAL;
580 if (usin->sin_family != AF_INET) {
581 if (usin->sin_family != AF_UNSPEC)
582 return -EAFNOSUPPORT;
583 }
584
585 daddr = usin->sin_addr.s_addr;
586 dport = usin->sin_port;
587 if (dport == 0)
588 return -EINVAL;
589 } else {
590 if (sk->sk_state != TCP_ESTABLISHED)
591 return -EDESTADDRREQ;
592 daddr = inet->daddr;
593 dport = inet->dport;
594 /* Open fast path for connected socket.
595 Route will not be used, if at least one option is set.
596 */
597 connected = 1;
598 }
599 ipc.addr = inet->saddr;
600
601 ipc.oif = sk->sk_bound_dev_if;
602 if (msg->msg_controllen) {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900603 err = ip_cmsg_send(sock_net(sk), msg, &ipc);
David S. Millerdb8dac22008-03-06 16:22:02 -0800604 if (err)
605 return err;
606 if (ipc.opt)
607 free = 1;
608 connected = 0;
609 }
610 if (!ipc.opt)
611 ipc.opt = inet->opt;
612
613 saddr = ipc.addr;
614 ipc.addr = faddr = daddr;
615
616 if (ipc.opt && ipc.opt->srr) {
617 if (!daddr)
618 return -EINVAL;
619 faddr = ipc.opt->faddr;
620 connected = 0;
621 }
622 tos = RT_TOS(inet->tos);
623 if (sock_flag(sk, SOCK_LOCALROUTE) ||
624 (msg->msg_flags & MSG_DONTROUTE) ||
625 (ipc.opt && ipc.opt->is_strictroute)) {
626 tos |= RTO_ONLINK;
627 connected = 0;
628 }
629
630 if (ipv4_is_multicast(daddr)) {
631 if (!ipc.oif)
632 ipc.oif = inet->mc_index;
633 if (!saddr)
634 saddr = inet->mc_addr;
635 connected = 0;
636 }
637
638 if (connected)
639 rt = (struct rtable*)sk_dst_check(sk, 0);
640
641 if (rt == NULL) {
642 struct flowi fl = { .oif = ipc.oif,
643 .nl_u = { .ip4_u =
644 { .daddr = faddr,
645 .saddr = saddr,
646 .tos = tos } },
647 .proto = sk->sk_protocol,
648 .uli_u = { .ports =
649 { .sport = inet->sport,
650 .dport = dport } } };
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700651 struct net *net = sock_net(sk);
652
David S. Millerdb8dac22008-03-06 16:22:02 -0800653 security_sk_classify_flow(sk, &fl);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700654 err = ip_route_output_flow(net, &rt, &fl, sk, 1);
David S. Millerdb8dac22008-03-06 16:22:02 -0800655 if (err) {
656 if (err == -ENETUNREACH)
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700657 IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
David S. Millerdb8dac22008-03-06 16:22:02 -0800658 goto out;
659 }
660
661 err = -EACCES;
662 if ((rt->rt_flags & RTCF_BROADCAST) &&
663 !sock_flag(sk, SOCK_BROADCAST))
664 goto out;
665 if (connected)
666 sk_dst_set(sk, dst_clone(&rt->u.dst));
667 }
668
669 if (msg->msg_flags&MSG_CONFIRM)
670 goto do_confirm;
671back_from_confirm:
672
673 saddr = rt->rt_src;
674 if (!ipc.addr)
675 daddr = ipc.addr = rt->rt_dst;
676
677 lock_sock(sk);
678 if (unlikely(up->pending)) {
679 /* The socket is already corked while preparing it. */
680 /* ... which is an evident application bug. --ANK */
681 release_sock(sk);
682
683 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
684 err = -EINVAL;
685 goto out;
686 }
687 /*
688 * Now cork the socket to pend data.
689 */
690 inet->cork.fl.fl4_dst = daddr;
691 inet->cork.fl.fl_ip_dport = dport;
692 inet->cork.fl.fl4_src = saddr;
693 inet->cork.fl.fl_ip_sport = inet->sport;
694 up->pending = AF_INET;
695
696do_append_data:
697 up->len += ulen;
698 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
699 err = ip_append_data(sk, getfrag, msg->msg_iov, ulen,
700 sizeof(struct udphdr), &ipc, rt,
701 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
702 if (err)
703 udp_flush_pending_frames(sk);
704 else if (!corkreq)
705 err = udp_push_pending_frames(sk);
706 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
707 up->pending = 0;
708 release_sock(sk);
709
710out:
711 ip_rt_put(rt);
712 if (free)
713 kfree(ipc.opt);
714 if (!err)
715 return len;
716 /*
717 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
718 * ENOBUFS might not be good (it's not tunable per se), but otherwise
719 * we don't have a good statistic (IpOutDiscards but it can be too many
720 * things). We could add another new stat but at least for now that
721 * seems like overkill.
722 */
723 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov629ca232008-07-05 21:18:07 -0700724 UDP_INC_STATS_USER(sock_net(sk),
725 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millerdb8dac22008-03-06 16:22:02 -0800726 }
727 return err;
728
729do_confirm:
730 dst_confirm(&rt->u.dst);
731 if (!(msg->msg_flags&MSG_PROBE) || len)
732 goto back_from_confirm;
733 err = 0;
734 goto out;
735}
736
737int udp_sendpage(struct sock *sk, struct page *page, int offset,
738 size_t size, int flags)
739{
740 struct udp_sock *up = udp_sk(sk);
741 int ret;
742
743 if (!up->pending) {
744 struct msghdr msg = { .msg_flags = flags|MSG_MORE };
745
746 /* Call udp_sendmsg to specify destination address which
747 * sendpage interface can't pass.
748 * This will succeed only when the socket is connected.
749 */
750 ret = udp_sendmsg(NULL, sk, &msg, 0);
751 if (ret < 0)
752 return ret;
753 }
754
755 lock_sock(sk);
756
757 if (unlikely(!up->pending)) {
758 release_sock(sk);
759
760 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 3\n");
761 return -EINVAL;
762 }
763
764 ret = ip_append_page(sk, page, offset, size, flags);
765 if (ret == -EOPNOTSUPP) {
766 release_sock(sk);
767 return sock_no_sendpage(sk->sk_socket, page, offset,
768 size, flags);
769 }
770 if (ret < 0) {
771 udp_flush_pending_frames(sk);
772 goto out;
773 }
774
775 up->len += size;
776 if (!(up->corkflag || (flags&MSG_MORE)))
777 ret = udp_push_pending_frames(sk);
778 if (!ret)
779 ret = size;
780out:
781 release_sock(sk);
782 return ret;
783}
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785/*
786 * IOCTL requests applicable to the UDP protocol
787 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
790{
Stephen Hemminger6516c652007-03-08 20:41:55 -0800791 switch (cmd) {
792 case SIOCOUTQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 {
Stephen Hemminger6516c652007-03-08 20:41:55 -0800794 int amount = atomic_read(&sk->sk_wmem_alloc);
795 return put_user(amount, (int __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Stephen Hemminger6516c652007-03-08 20:41:55 -0800797
798 case SIOCINQ:
799 {
800 struct sk_buff *skb;
801 unsigned long amount;
802
803 amount = 0;
804 spin_lock_bh(&sk->sk_receive_queue.lock);
805 skb = skb_peek(&sk->sk_receive_queue);
806 if (skb != NULL) {
807 /*
808 * We will only return the amount
809 * of this packet since that is all
810 * that will be read.
811 */
812 amount = skb->len - sizeof(struct udphdr);
813 }
814 spin_unlock_bh(&sk->sk_receive_queue.lock);
815 return put_user(amount, (int __user *)arg);
816 }
817
818 default:
819 return -ENOIOCTLCMD;
820 }
821
822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
David S. Millerdb8dac22008-03-06 16:22:02 -0800825/*
826 * This should be easy, if there is something there we
827 * return it, otherwise we block.
828 */
829
830int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
831 size_t len, int noblock, int flags, int *addr_len)
832{
833 struct inet_sock *inet = inet_sk(sk);
834 struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
835 struct sk_buff *skb;
836 unsigned int ulen, copied;
837 int peeked;
838 int err;
839 int is_udplite = IS_UDPLITE(sk);
840
841 /*
842 * Check any passed addresses
843 */
844 if (addr_len)
845 *addr_len=sizeof(*sin);
846
847 if (flags & MSG_ERRQUEUE)
848 return ip_recv_error(sk, msg, len);
849
850try_again:
851 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
852 &peeked, &err);
853 if (!skb)
854 goto out;
855
856 ulen = skb->len - sizeof(struct udphdr);
857 copied = len;
858 if (copied > ulen)
859 copied = ulen;
860 else if (copied < ulen)
861 msg->msg_flags |= MSG_TRUNC;
862
863 /*
864 * If checksum is needed at all, try to do it while copying the
865 * data. If the data is truncated, or if we only want a partial
866 * coverage checksum (UDP-Lite), do it before the copy.
867 */
868
869 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
870 if (udp_lib_checksum_complete(skb))
871 goto csum_copy_err;
872 }
873
874 if (skb_csum_unnecessary(skb))
875 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
876 msg->msg_iov, copied );
877 else {
878 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
879
880 if (err == -EINVAL)
881 goto csum_copy_err;
882 }
883
884 if (err)
885 goto out_free;
886
887 if (!peeked)
Pavel Emelyanov629ca232008-07-05 21:18:07 -0700888 UDP_INC_STATS_USER(sock_net(sk),
889 UDP_MIB_INDATAGRAMS, is_udplite);
David S. Millerdb8dac22008-03-06 16:22:02 -0800890
891 sock_recv_timestamp(msg, sk, skb);
892
893 /* Copy the address. */
894 if (sin)
895 {
896 sin->sin_family = AF_INET;
897 sin->sin_port = udp_hdr(skb)->source;
898 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
899 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
900 }
901 if (inet->cmsg_flags)
902 ip_cmsg_recv(msg, skb);
903
904 err = copied;
905 if (flags & MSG_TRUNC)
906 err = ulen;
907
908out_free:
909 lock_sock(sk);
910 skb_free_datagram(sk, skb);
911 release_sock(sk);
912out:
913 return err;
914
915csum_copy_err:
916 lock_sock(sk);
917 if (!skb_kill_datagram(sk, skb, flags))
Pavel Emelyanov629ca232008-07-05 21:18:07 -0700918 UDP_INC_STATS_USER(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
David S. Millerdb8dac22008-03-06 16:22:02 -0800919 release_sock(sk);
920
921 if (noblock)
922 return -EAGAIN;
923 goto try_again;
924}
925
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927int udp_disconnect(struct sock *sk, int flags)
928{
929 struct inet_sock *inet = inet_sk(sk);
930 /*
931 * 1003.1g - break association.
932 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 sk->sk_state = TCP_CLOSE;
935 inet->daddr = 0;
936 inet->dport = 0;
937 sk->sk_bound_dev_if = 0;
938 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
939 inet_reset_saddr(sk);
940
941 if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) {
942 sk->sk_prot->unhash(sk);
943 inet->sport = 0;
944 }
945 sk_dst_reset(sk);
946 return 0;
947}
948
Eric Dumazet645ca702008-10-29 01:41:45 -0700949void udp_lib_unhash(struct sock *sk)
950{
951 struct udp_table *udptable = sk->sk_prot->h.udp_table;
952 unsigned int hash = udp_hashfn(sock_net(sk), sk->sk_hash);
953 struct udp_hslot *hslot = &udptable->hash[hash];
954
955 spin_lock(&hslot->lock);
956 if (sk_del_node_init(sk)) {
957 inet_sk(sk)->num = 0;
958 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
959 }
960 spin_unlock(&hslot->lock);
961}
962EXPORT_SYMBOL(udp_lib_unhash);
963
Herbert Xu93821772008-09-15 11:48:46 -0700964static int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
965{
966 int is_udplite = IS_UDPLITE(sk);
967 int rc;
968
969 if ((rc = sock_queue_rcv_skb(sk, skb)) < 0) {
970 /* Note that an ENOMEM error is charged twice */
971 if (rc == -ENOMEM)
972 UDP_INC_STATS_BH(sock_net(sk), UDP_MIB_RCVBUFERRORS,
973 is_udplite);
974 goto drop;
975 }
976
977 return 0;
978
979drop:
980 UDP_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
981 kfree_skb(skb);
982 return -1;
983}
984
David S. Millerdb8dac22008-03-06 16:22:02 -0800985/* returns:
986 * -1: error
987 * 0: success
988 * >0: "udp encap" protocol resubmission
989 *
990 * Note that in the success and error cases, the skb is assumed to
991 * have either been requeued or freed.
992 */
993int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
994{
995 struct udp_sock *up = udp_sk(sk);
996 int rc;
997 int is_udplite = IS_UDPLITE(sk);
998
999 /*
1000 * Charge it to the socket, dropping if the queue is full.
1001 */
1002 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1003 goto drop;
1004 nf_reset(skb);
1005
1006 if (up->encap_type) {
1007 /*
1008 * This is an encapsulation socket so pass the skb to
1009 * the socket's udp_encap_rcv() hook. Otherwise, just
1010 * fall through and pass this up the UDP socket.
1011 * up->encap_rcv() returns the following value:
1012 * =0 if skb was successfully passed to the encap
1013 * handler or was discarded by it.
1014 * >0 if skb should be passed on to UDP.
1015 * <0 if skb should be resubmitted as proto -N
1016 */
1017
1018 /* if we're overly short, let UDP handle it */
1019 if (skb->len > sizeof(struct udphdr) &&
1020 up->encap_rcv != NULL) {
1021 int ret;
1022
1023 ret = (*up->encap_rcv)(sk, skb);
1024 if (ret <= 0) {
Pavel Emelyanov02833282008-07-05 21:18:48 -07001025 UDP_INC_STATS_BH(sock_net(sk),
1026 UDP_MIB_INDATAGRAMS,
David S. Millerdb8dac22008-03-06 16:22:02 -08001027 is_udplite);
1028 return -ret;
1029 }
1030 }
1031
1032 /* FALLTHROUGH -- it's a UDP Packet */
1033 }
1034
1035 /*
1036 * UDP-Lite specific tests, ignored on UDP sockets
1037 */
1038 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
1039
1040 /*
1041 * MIB statistics other than incrementing the error count are
1042 * disabled for the following two types of errors: these depend
1043 * on the application settings, not on the functioning of the
1044 * protocol stack as such.
1045 *
1046 * RFC 3828 here recommends (sec 3.3): "There should also be a
1047 * way ... to ... at least let the receiving application block
1048 * delivery of packets with coverage values less than a value
1049 * provided by the application."
1050 */
1051 if (up->pcrlen == 0) { /* full coverage was set */
1052 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE: partial coverage "
1053 "%d while full coverage %d requested\n",
1054 UDP_SKB_CB(skb)->cscov, skb->len);
1055 goto drop;
1056 }
1057 /* The next case involves violating the min. coverage requested
1058 * by the receiver. This is subtle: if receiver wants x and x is
1059 * greater than the buffersize/MTU then receiver will complain
1060 * that it wants x while sender emits packets of smaller size y.
1061 * Therefore the above ...()->partial_cov statement is essential.
1062 */
1063 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
1064 LIMIT_NETDEBUG(KERN_WARNING
1065 "UDPLITE: coverage %d too small, need min %d\n",
1066 UDP_SKB_CB(skb)->cscov, up->pcrlen);
1067 goto drop;
1068 }
1069 }
1070
1071 if (sk->sk_filter) {
1072 if (udp_lib_checksum_complete(skb))
1073 goto drop;
1074 }
1075
Herbert Xu93821772008-09-15 11:48:46 -07001076 rc = 0;
David S. Millerdb8dac22008-03-06 16:22:02 -08001077
Herbert Xu93821772008-09-15 11:48:46 -07001078 bh_lock_sock(sk);
1079 if (!sock_owned_by_user(sk))
1080 rc = __udp_queue_rcv_skb(sk, skb);
1081 else
1082 sk_add_backlog(sk, skb);
1083 bh_unlock_sock(sk);
1084
1085 return rc;
David S. Millerdb8dac22008-03-06 16:22:02 -08001086
1087drop:
Pavel Emelyanov02833282008-07-05 21:18:48 -07001088 UDP_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
David S. Millerdb8dac22008-03-06 16:22:02 -08001089 kfree_skb(skb);
1090 return -1;
1091}
1092
1093/*
1094 * Multicasts and broadcasts go to each listener.
1095 *
1096 * Note: called only from the BH handler context,
1097 * so we don't need to lock the hashes.
1098 */
Pavel Emelyanove3163492008-06-16 17:12:11 -07001099static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
David S. Millerdb8dac22008-03-06 16:22:02 -08001100 struct udphdr *uh,
1101 __be32 saddr, __be32 daddr,
Eric Dumazet645ca702008-10-29 01:41:45 -07001102 struct udp_table *udptable)
David S. Millerdb8dac22008-03-06 16:22:02 -08001103{
1104 struct sock *sk;
Eric Dumazet645ca702008-10-29 01:41:45 -07001105 struct udp_hslot *hslot = &udptable->hash[udp_hashfn(net, ntohs(uh->dest))];
David S. Millerdb8dac22008-03-06 16:22:02 -08001106 int dif;
1107
Eric Dumazet645ca702008-10-29 01:41:45 -07001108 spin_lock(&hslot->lock);
1109 sk = sk_head(&hslot->head);
David S. Millerdb8dac22008-03-06 16:22:02 -08001110 dif = skb->dev->ifindex;
1111 sk = udp_v4_mcast_next(sk, uh->dest, daddr, uh->source, saddr, dif);
1112 if (sk) {
1113 struct sock *sknext = NULL;
1114
1115 do {
1116 struct sk_buff *skb1 = skb;
1117
1118 sknext = udp_v4_mcast_next(sk_next(sk), uh->dest, daddr,
1119 uh->source, saddr, dif);
1120 if (sknext)
1121 skb1 = skb_clone(skb, GFP_ATOMIC);
1122
1123 if (skb1) {
Herbert Xu93821772008-09-15 11:48:46 -07001124 int ret = udp_queue_rcv_skb(sk, skb1);
David S. Millerdb8dac22008-03-06 16:22:02 -08001125 if (ret > 0)
1126 /* we should probably re-process instead
1127 * of dropping packets here. */
1128 kfree_skb(skb1);
1129 }
1130 sk = sknext;
1131 } while (sknext);
1132 } else
1133 kfree_skb(skb);
Eric Dumazet645ca702008-10-29 01:41:45 -07001134 spin_unlock(&hslot->lock);
David S. Millerdb8dac22008-03-06 16:22:02 -08001135 return 0;
1136}
1137
1138/* Initialize UDP checksum. If exited with zero value (success),
1139 * CHECKSUM_UNNECESSARY means, that no more checks are required.
1140 * Otherwise, csum completion requires chacksumming packet body,
1141 * including udp header and folding it to skb->csum.
1142 */
1143static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh,
1144 int proto)
1145{
1146 const struct iphdr *iph;
1147 int err;
1148
1149 UDP_SKB_CB(skb)->partial_cov = 0;
1150 UDP_SKB_CB(skb)->cscov = skb->len;
1151
1152 if (proto == IPPROTO_UDPLITE) {
1153 err = udplite_checksum_init(skb, uh);
1154 if (err)
1155 return err;
1156 }
1157
1158 iph = ip_hdr(skb);
1159 if (uh->check == 0) {
1160 skb->ip_summed = CHECKSUM_UNNECESSARY;
1161 } else if (skb->ip_summed == CHECKSUM_COMPLETE) {
1162 if (!csum_tcpudp_magic(iph->saddr, iph->daddr, skb->len,
1163 proto, skb->csum))
1164 skb->ip_summed = CHECKSUM_UNNECESSARY;
1165 }
1166 if (!skb_csum_unnecessary(skb))
1167 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
1168 skb->len, proto, 0);
1169 /* Probably, we should checksum udp header (it should be in cache
1170 * in any case) and data in tiny packets (< rx copybreak).
1171 */
1172
1173 return 0;
1174}
1175
1176/*
1177 * All we need to do is get the socket, and then do a checksum.
1178 */
1179
Eric Dumazet645ca702008-10-29 01:41:45 -07001180int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
David S. Millerdb8dac22008-03-06 16:22:02 -08001181 int proto)
1182{
1183 struct sock *sk;
1184 struct udphdr *uh = udp_hdr(skb);
1185 unsigned short ulen;
1186 struct rtable *rt = (struct rtable*)skb->dst;
1187 __be32 saddr = ip_hdr(skb)->saddr;
1188 __be32 daddr = ip_hdr(skb)->daddr;
Pavel Emelyanov02833282008-07-05 21:18:48 -07001189 struct net *net = dev_net(skb->dev);
David S. Millerdb8dac22008-03-06 16:22:02 -08001190
1191 /*
1192 * Validate the packet.
1193 */
1194 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
1195 goto drop; /* No space for header. */
1196
1197 ulen = ntohs(uh->len);
1198 if (ulen > skb->len)
1199 goto short_packet;
1200
1201 if (proto == IPPROTO_UDP) {
1202 /* UDP validates ulen. */
1203 if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen))
1204 goto short_packet;
1205 uh = udp_hdr(skb);
1206 }
1207
1208 if (udp4_csum_init(skb, uh, proto))
1209 goto csum_error;
1210
1211 if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST))
Pavel Emelyanove3163492008-06-16 17:12:11 -07001212 return __udp4_lib_mcast_deliver(net, skb, uh,
1213 saddr, daddr, udptable);
David S. Millerdb8dac22008-03-06 16:22:02 -08001214
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -07001215 sk = __udp4_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
David S. Millerdb8dac22008-03-06 16:22:02 -08001216
1217 if (sk != NULL) {
Herbert Xu93821772008-09-15 11:48:46 -07001218 int ret = udp_queue_rcv_skb(sk, skb);
David S. Millerdb8dac22008-03-06 16:22:02 -08001219 sock_put(sk);
1220
1221 /* a return value > 0 means to resubmit the input, but
1222 * it wants the return to be -protocol, or 0
1223 */
1224 if (ret > 0)
1225 return -ret;
1226 return 0;
1227 }
1228
1229 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1230 goto drop;
1231 nf_reset(skb);
1232
1233 /* No socket. Drop packet silently, if checksum is wrong */
1234 if (udp_lib_checksum_complete(skb))
1235 goto csum_error;
1236
Pavel Emelyanov02833282008-07-05 21:18:48 -07001237 UDP_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
David S. Millerdb8dac22008-03-06 16:22:02 -08001238 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
1239
1240 /*
1241 * Hmm. We got an UDP packet to a port to which we
1242 * don't wanna listen. Ignore it.
1243 */
1244 kfree_skb(skb);
1245 return 0;
1246
1247short_packet:
YOSHIFUJI Hideakia7d632b2008-04-14 04:09:00 -07001248 LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: short packet: From " NIPQUAD_FMT ":%u %d/%d to " NIPQUAD_FMT ":%u\n",
David S. Millerdb8dac22008-03-06 16:22:02 -08001249 proto == IPPROTO_UDPLITE ? "-Lite" : "",
1250 NIPQUAD(saddr),
1251 ntohs(uh->source),
1252 ulen,
1253 skb->len,
1254 NIPQUAD(daddr),
1255 ntohs(uh->dest));
1256 goto drop;
1257
1258csum_error:
1259 /*
1260 * RFC1122: OK. Discards the bad packet silently (as far as
1261 * the network is concerned, anyway) as per 4.1.3.4 (MUST).
1262 */
YOSHIFUJI Hideakia7d632b2008-04-14 04:09:00 -07001263 LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: bad checksum. From " NIPQUAD_FMT ":%u to " NIPQUAD_FMT ":%u ulen %d\n",
David S. Millerdb8dac22008-03-06 16:22:02 -08001264 proto == IPPROTO_UDPLITE ? "-Lite" : "",
1265 NIPQUAD(saddr),
1266 ntohs(uh->source),
1267 NIPQUAD(daddr),
1268 ntohs(uh->dest),
1269 ulen);
1270drop:
Pavel Emelyanov02833282008-07-05 21:18:48 -07001271 UDP_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
David S. Millerdb8dac22008-03-06 16:22:02 -08001272 kfree_skb(skb);
1273 return 0;
1274}
1275
1276int udp_rcv(struct sk_buff *skb)
1277{
Eric Dumazet645ca702008-10-29 01:41:45 -07001278 return __udp4_lib_rcv(skb, &udp_table, IPPROTO_UDP);
David S. Millerdb8dac22008-03-06 16:22:02 -08001279}
1280
Brian Haley7d06b2e2008-06-14 17:04:49 -07001281void udp_destroy_sock(struct sock *sk)
David S. Millerdb8dac22008-03-06 16:22:02 -08001282{
1283 lock_sock(sk);
1284 udp_flush_pending_frames(sk);
1285 release_sock(sk);
David S. Millerdb8dac22008-03-06 16:22:02 -08001286}
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288/*
1289 * Socket option code for UDP
1290 */
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001291int udp_lib_setsockopt(struct sock *sk, int level, int optname,
1292 char __user *optval, int optlen,
1293 int (*push_pending_frames)(struct sock *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 struct udp_sock *up = udp_sk(sk);
1296 int val;
1297 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001298 int is_udplite = IS_UDPLITE(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Stephen Hemminger6516c652007-03-08 20:41:55 -08001300 if (optlen<sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return -EINVAL;
1302
1303 if (get_user(val, (int __user *)optval))
1304 return -EFAULT;
1305
Stephen Hemminger6516c652007-03-08 20:41:55 -08001306 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 case UDP_CORK:
1308 if (val != 0) {
1309 up->corkflag = 1;
1310 } else {
1311 up->corkflag = 0;
1312 lock_sock(sk);
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001313 (*push_pending_frames)(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 release_sock(sk);
1315 }
1316 break;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 case UDP_ENCAP:
1319 switch (val) {
1320 case 0:
1321 case UDP_ENCAP_ESPINUDP:
1322 case UDP_ENCAP_ESPINUDP_NON_IKE:
James Chapman067b2072007-07-05 17:08:05 -07001323 up->encap_rcv = xfrm4_udp_encap_rcv;
1324 /* FALLTHROUGH */
James Chapman342f0232007-06-27 15:37:46 -07001325 case UDP_ENCAP_L2TPINUDP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 up->encap_type = val;
1327 break;
1328 default:
1329 err = -ENOPROTOOPT;
1330 break;
1331 }
1332 break;
1333
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001334 /*
1335 * UDP-Lite's partial checksum coverage (RFC 3828).
1336 */
1337 /* The sender sets actual checksum coverage length via this option.
1338 * The case coverage > packet length is handled by send module. */
1339 case UDPLITE_SEND_CSCOV:
Wang Chenb2bf1e22007-12-03 22:34:16 +11001340 if (!is_udplite) /* Disable the option on UDP sockets */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001341 return -ENOPROTOOPT;
1342 if (val != 0 && val < 8) /* Illegal coverage: use default (8) */
1343 val = 8;
Gerrit Renker47112e22008-07-21 13:35:08 -07001344 else if (val > USHORT_MAX)
1345 val = USHORT_MAX;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001346 up->pcslen = val;
1347 up->pcflag |= UDPLITE_SEND_CC;
1348 break;
1349
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001350 /* The receiver specifies a minimum checksum coverage value. To make
1351 * sense, this should be set to at least 8 (as done below). If zero is
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001352 * used, this again means full checksum coverage. */
1353 case UDPLITE_RECV_CSCOV:
Wang Chenb2bf1e22007-12-03 22:34:16 +11001354 if (!is_udplite) /* Disable the option on UDP sockets */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001355 return -ENOPROTOOPT;
1356 if (val != 0 && val < 8) /* Avoid silly minimal values. */
1357 val = 8;
Gerrit Renker47112e22008-07-21 13:35:08 -07001358 else if (val > USHORT_MAX)
1359 val = USHORT_MAX;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001360 up->pcrlen = val;
1361 up->pcflag |= UDPLITE_RECV_CC;
1362 break;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 default:
1365 err = -ENOPROTOOPT;
1366 break;
Stephen Hemminger6516c652007-03-08 20:41:55 -08001367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 return err;
1370}
1371
David S. Millerdb8dac22008-03-06 16:22:02 -08001372int udp_setsockopt(struct sock *sk, int level, int optname,
1373 char __user *optval, int optlen)
1374{
1375 if (level == SOL_UDP || level == SOL_UDPLITE)
1376 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1377 udp_push_pending_frames);
1378 return ip_setsockopt(sk, level, optname, optval, optlen);
1379}
1380
1381#ifdef CONFIG_COMPAT
1382int compat_udp_setsockopt(struct sock *sk, int level, int optname,
1383 char __user *optval, int optlen)
1384{
1385 if (level == SOL_UDP || level == SOL_UDPLITE)
1386 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1387 udp_push_pending_frames);
1388 return compat_ip_setsockopt(sk, level, optname, optval, optlen);
1389}
1390#endif
1391
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001392int udp_lib_getsockopt(struct sock *sk, int level, int optname,
1393 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct udp_sock *up = udp_sk(sk);
1396 int val, len;
1397
Stephen Hemminger6516c652007-03-08 20:41:55 -08001398 if (get_user(len,optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EFAULT;
1400
1401 len = min_t(unsigned int, len, sizeof(int));
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001402
Stephen Hemminger6516c652007-03-08 20:41:55 -08001403 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -EINVAL;
1405
Stephen Hemminger6516c652007-03-08 20:41:55 -08001406 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 case UDP_CORK:
1408 val = up->corkflag;
1409 break;
1410
1411 case UDP_ENCAP:
1412 val = up->encap_type;
1413 break;
1414
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001415 /* The following two cannot be changed on UDP sockets, the return is
1416 * always 0 (which corresponds to the full checksum coverage of UDP). */
1417 case UDPLITE_SEND_CSCOV:
1418 val = up->pcslen;
1419 break;
1420
1421 case UDPLITE_RECV_CSCOV:
1422 val = up->pcrlen;
1423 break;
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 default:
1426 return -ENOPROTOOPT;
Stephen Hemminger6516c652007-03-08 20:41:55 -08001427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Stephen Hemminger6516c652007-03-08 20:41:55 -08001429 if (put_user(len, optlen))
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001430 return -EFAULT;
Stephen Hemminger6516c652007-03-08 20:41:55 -08001431 if (copy_to_user(optval, &val,len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return -EFAULT;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
David S. Millerdb8dac22008-03-06 16:22:02 -08001436int udp_getsockopt(struct sock *sk, int level, int optname,
1437 char __user *optval, int __user *optlen)
1438{
1439 if (level == SOL_UDP || level == SOL_UDPLITE)
1440 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1441 return ip_getsockopt(sk, level, optname, optval, optlen);
1442}
1443
1444#ifdef CONFIG_COMPAT
1445int compat_udp_getsockopt(struct sock *sk, int level, int optname,
1446 char __user *optval, int __user *optlen)
1447{
1448 if (level == SOL_UDP || level == SOL_UDPLITE)
1449 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1450 return compat_ip_getsockopt(sk, level, optname, optval, optlen);
1451}
1452#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453/**
1454 * udp_poll - wait for a UDP event.
1455 * @file - file struct
1456 * @sock - socket
1457 * @wait - poll table
1458 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001459 * This is same as datagram poll, except for the special case of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 * blocking sockets. If application is using a blocking fd
1461 * and a packet with checksum error is in the queue;
1462 * then it could get return from select indicating data available
1463 * but then block when reading it. Add special case code
1464 * to work around these arguably broken applications.
1465 */
1466unsigned int udp_poll(struct file *file, struct socket *sock, poll_table *wait)
1467{
1468 unsigned int mask = datagram_poll(file, sock, wait);
1469 struct sock *sk = sock->sk;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001470 int is_lite = IS_UDPLITE(sk);
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* Check for false positives due to checksum errors */
1473 if ( (mask & POLLRDNORM) &&
1474 !(file->f_flags & O_NONBLOCK) &&
1475 !(sk->sk_shutdown & RCV_SHUTDOWN)){
1476 struct sk_buff_head *rcvq = &sk->sk_receive_queue;
1477 struct sk_buff *skb;
1478
Herbert Xu208d8982005-05-30 15:50:15 -07001479 spin_lock_bh(&rcvq->lock);
Herbert Xu759e5d02007-03-25 20:10:56 -07001480 while ((skb = skb_peek(rcvq)) != NULL &&
1481 udp_lib_checksum_complete(skb)) {
Pavel Emelyanov02833282008-07-05 21:18:48 -07001482 UDP_INC_STATS_BH(sock_net(sk),
1483 UDP_MIB_INERRORS, is_lite);
Herbert Xu759e5d02007-03-25 20:10:56 -07001484 __skb_unlink(skb, rcvq);
1485 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Herbert Xu208d8982005-05-30 15:50:15 -07001487 spin_unlock_bh(&rcvq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 /* nothing to see, move along */
1490 if (skb == NULL)
1491 mask &= ~(POLLIN | POLLRDNORM);
1492 }
1493
1494 return mask;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
David S. Millerdb8dac22008-03-06 16:22:02 -08001498struct proto udp_prot = {
1499 .name = "UDP",
1500 .owner = THIS_MODULE,
1501 .close = udp_lib_close,
1502 .connect = ip4_datagram_connect,
1503 .disconnect = udp_disconnect,
1504 .ioctl = udp_ioctl,
1505 .destroy = udp_destroy_sock,
1506 .setsockopt = udp_setsockopt,
1507 .getsockopt = udp_getsockopt,
1508 .sendmsg = udp_sendmsg,
1509 .recvmsg = udp_recvmsg,
1510 .sendpage = udp_sendpage,
Herbert Xu93821772008-09-15 11:48:46 -07001511 .backlog_rcv = __udp_queue_rcv_skb,
David S. Millerdb8dac22008-03-06 16:22:02 -08001512 .hash = udp_lib_hash,
1513 .unhash = udp_lib_unhash,
1514 .get_port = udp_v4_get_port,
1515 .memory_allocated = &udp_memory_allocated,
1516 .sysctl_mem = sysctl_udp_mem,
1517 .sysctl_wmem = &sysctl_udp_wmem_min,
1518 .sysctl_rmem = &sysctl_udp_rmem_min,
1519 .obj_size = sizeof(struct udp_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001520 .h.udp_table = &udp_table,
David S. Millerdb8dac22008-03-06 16:22:02 -08001521#ifdef CONFIG_COMPAT
1522 .compat_setsockopt = compat_udp_setsockopt,
1523 .compat_getsockopt = compat_udp_getsockopt,
1524#endif
David S. Millerdb8dac22008-03-06 16:22:02 -08001525};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527/* ------------------------------------------------------------------------ */
1528#ifdef CONFIG_PROC_FS
1529
Eric Dumazet645ca702008-10-29 01:41:45 -07001530static struct sock *udp_get_first(struct seq_file *seq, int start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 struct sock *sk;
1533 struct udp_iter_state *state = seq->private;
Denis V. Lunev6f191ef2008-03-28 18:23:33 -07001534 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Eric Dumazet645ca702008-10-29 01:41:45 -07001536 for (state->bucket = start; state->bucket < UDP_HTABLE_SIZE; ++state->bucket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct hlist_node *node;
Eric Dumazet645ca702008-10-29 01:41:45 -07001538 struct udp_hslot *hslot = &state->udp_table->hash[state->bucket];
1539 spin_lock_bh(&hslot->lock);
1540 sk_for_each(sk, node, &hslot->head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001541 if (!net_eq(sock_net(sk), net))
Daniel Lezcanoa91275e2008-03-21 04:11:58 -07001542 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (sk->sk_family == state->family)
1544 goto found;
1545 }
Eric Dumazet645ca702008-10-29 01:41:45 -07001546 spin_unlock_bh(&hslot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
1548 sk = NULL;
1549found:
1550 return sk;
1551}
1552
1553static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk)
1554{
1555 struct udp_iter_state *state = seq->private;
Denis V. Lunev6f191ef2008-03-28 18:23:33 -07001556 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 do {
1559 sk = sk_next(sk);
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001560 } while (sk && (!net_eq(sock_net(sk), net) || sk->sk_family != state->family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Eric Dumazet645ca702008-10-29 01:41:45 -07001562 if (!sk) {
1563 spin_unlock(&state->udp_table->hash[state->bucket].lock);
1564 return udp_get_first(seq, state->bucket + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 return sk;
1567}
1568
1569static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos)
1570{
Eric Dumazet645ca702008-10-29 01:41:45 -07001571 struct sock *sk = udp_get_first(seq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 if (sk)
Stephen Hemminger6516c652007-03-08 20:41:55 -08001574 while (pos && (sk = udp_get_next(seq, sk)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 --pos;
1576 return pos ? NULL : sk;
1577}
1578
1579static void *udp_seq_start(struct seq_file *seq, loff_t *pos)
1580{
YOSHIFUJI Hideakib50660f2008-03-31 19:38:15 -07001581 return *pos ? udp_get_idx(seq, *pos-1) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1585{
1586 struct sock *sk;
1587
YOSHIFUJI Hideakib50660f2008-03-31 19:38:15 -07001588 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 sk = udp_get_idx(seq, 0);
1590 else
1591 sk = udp_get_next(seq, v);
1592
1593 ++*pos;
1594 return sk;
1595}
1596
1597static void udp_seq_stop(struct seq_file *seq, void *v)
1598{
Eric Dumazet645ca702008-10-29 01:41:45 -07001599 struct udp_iter_state *state = seq->private;
1600
1601 if (state->bucket < UDP_HTABLE_SIZE)
1602 spin_unlock_bh(&state->udp_table->hash[state->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605static int udp_seq_open(struct inode *inode, struct file *file)
1606{
1607 struct udp_seq_afinfo *afinfo = PDE(inode)->data;
Denis V. Luneva2be75c2008-03-28 18:25:06 -07001608 struct udp_iter_state *s;
1609 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Denis V. Luneva2be75c2008-03-28 18:25:06 -07001611 err = seq_open_net(inode, file, &afinfo->seq_ops,
1612 sizeof(struct udp_iter_state));
1613 if (err < 0)
1614 return err;
Daniel Lezcanoa91275e2008-03-21 04:11:58 -07001615
Denis V. Luneva2be75c2008-03-28 18:25:06 -07001616 s = ((struct seq_file *)file->private_data)->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 s->family = afinfo->family;
Eric Dumazet645ca702008-10-29 01:41:45 -07001618 s->udp_table = afinfo->udp_table;
Denis V. Luneva2be75c2008-03-28 18:25:06 -07001619 return err;
Daniel Lezcanoa91275e2008-03-21 04:11:58 -07001620}
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622/* ------------------------------------------------------------------------ */
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001623int udp_proc_register(struct net *net, struct udp_seq_afinfo *afinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 struct proc_dir_entry *p;
1626 int rc = 0;
1627
Denis V. Lunev3ba94412008-03-28 18:25:32 -07001628 afinfo->seq_fops.open = udp_seq_open;
1629 afinfo->seq_fops.read = seq_read;
1630 afinfo->seq_fops.llseek = seq_lseek;
1631 afinfo->seq_fops.release = seq_release_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Denis V. Lunevdda61922008-03-28 18:24:26 -07001633 afinfo->seq_ops.start = udp_seq_start;
1634 afinfo->seq_ops.next = udp_seq_next;
1635 afinfo->seq_ops.stop = udp_seq_stop;
1636
Denis V. Lunev84841c32008-05-02 04:10:08 -07001637 p = proc_create_data(afinfo->name, S_IRUGO, net->proc_net,
1638 &afinfo->seq_fops, afinfo);
1639 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 rc = -ENOMEM;
1641 return rc;
1642}
1643
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001644void udp_proc_unregister(struct net *net, struct udp_seq_afinfo *afinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001646 proc_net_remove(net, afinfo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
David S. Millerdb8dac22008-03-06 16:22:02 -08001648
1649/* ------------------------------------------------------------------------ */
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001650static void udp4_format_sock(struct sock *sp, struct seq_file *f,
1651 int bucket, int *len)
David S. Millerdb8dac22008-03-06 16:22:02 -08001652{
1653 struct inet_sock *inet = inet_sk(sp);
1654 __be32 dest = inet->daddr;
1655 __be32 src = inet->rcv_saddr;
1656 __u16 destp = ntohs(inet->dport);
1657 __u16 srcp = ntohs(inet->sport);
1658
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001659 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001660 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d%n",
David S. Millerdb8dac22008-03-06 16:22:02 -08001661 bucket, src, srcp, dest, destp, sp->sk_state,
1662 atomic_read(&sp->sk_wmem_alloc),
1663 atomic_read(&sp->sk_rmem_alloc),
1664 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001665 atomic_read(&sp->sk_refcnt), sp,
1666 atomic_read(&sp->sk_drops), len);
David S. Millerdb8dac22008-03-06 16:22:02 -08001667}
1668
1669int udp4_seq_show(struct seq_file *seq, void *v)
1670{
1671 if (v == SEQ_START_TOKEN)
1672 seq_printf(seq, "%-127s\n",
1673 " sl local_address rem_address st tx_queue "
1674 "rx_queue tr tm->when retrnsmt uid timeout "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001675 "inode ref pointer drops");
David S. Millerdb8dac22008-03-06 16:22:02 -08001676 else {
David S. Millerdb8dac22008-03-06 16:22:02 -08001677 struct udp_iter_state *state = seq->private;
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001678 int len;
David S. Millerdb8dac22008-03-06 16:22:02 -08001679
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07001680 udp4_format_sock(v, seq, state->bucket, &len);
1681 seq_printf(seq, "%*s\n", 127 - len ,"");
David S. Millerdb8dac22008-03-06 16:22:02 -08001682 }
1683 return 0;
1684}
1685
1686/* ------------------------------------------------------------------------ */
David S. Millerdb8dac22008-03-06 16:22:02 -08001687static struct udp_seq_afinfo udp4_seq_afinfo = {
David S. Millerdb8dac22008-03-06 16:22:02 -08001688 .name = "udp",
1689 .family = AF_INET,
Eric Dumazet645ca702008-10-29 01:41:45 -07001690 .udp_table = &udp_table,
Denis V. Lunev4ad96d32008-03-28 18:25:53 -07001691 .seq_fops = {
1692 .owner = THIS_MODULE,
1693 },
Denis V. Lunevdda61922008-03-28 18:24:26 -07001694 .seq_ops = {
1695 .show = udp4_seq_show,
1696 },
David S. Millerdb8dac22008-03-06 16:22:02 -08001697};
1698
Pavel Emelyanov15439fe2008-03-24 14:53:49 -07001699static int udp4_proc_init_net(struct net *net)
1700{
1701 return udp_proc_register(net, &udp4_seq_afinfo);
1702}
1703
1704static void udp4_proc_exit_net(struct net *net)
1705{
1706 udp_proc_unregister(net, &udp4_seq_afinfo);
1707}
1708
1709static struct pernet_operations udp4_net_ops = {
1710 .init = udp4_proc_init_net,
1711 .exit = udp4_proc_exit_net,
1712};
1713
David S. Millerdb8dac22008-03-06 16:22:02 -08001714int __init udp4_proc_init(void)
1715{
Pavel Emelyanov15439fe2008-03-24 14:53:49 -07001716 return register_pernet_subsys(&udp4_net_ops);
David S. Millerdb8dac22008-03-06 16:22:02 -08001717}
1718
1719void udp4_proc_exit(void)
1720{
Pavel Emelyanov15439fe2008-03-24 14:53:49 -07001721 unregister_pernet_subsys(&udp4_net_ops);
David S. Millerdb8dac22008-03-06 16:22:02 -08001722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723#endif /* CONFIG_PROC_FS */
1724
Eric Dumazet645ca702008-10-29 01:41:45 -07001725void __init udp_table_init(struct udp_table *table)
1726{
1727 int i;
1728
1729 for (i = 0; i < UDP_HTABLE_SIZE; i++) {
1730 INIT_HLIST_HEAD(&table->hash[i].head);
1731 spin_lock_init(&table->hash[i].lock);
1732 }
1733}
1734
Hideo Aoki95766ff2007-12-31 00:29:24 -08001735void __init udp_init(void)
1736{
1737 unsigned long limit;
1738
Eric Dumazet645ca702008-10-29 01:41:45 -07001739 udp_table_init(&udp_table);
Hideo Aoki95766ff2007-12-31 00:29:24 -08001740 /* Set the pressure threshold up by the same strategy of TCP. It is a
1741 * fraction of global memory that is up to 1/2 at 256 MB, decreasing
1742 * toward zero with the amount of memory, with a floor of 128 pages.
1743 */
1744 limit = min(nr_all_pages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT);
1745 limit = (limit * (nr_all_pages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11);
1746 limit = max(limit, 128UL);
1747 sysctl_udp_mem[0] = limit / 4 * 3;
1748 sysctl_udp_mem[1] = limit;
1749 sysctl_udp_mem[2] = sysctl_udp_mem[0] * 2;
1750
1751 sysctl_udp_rmem_min = SK_MEM_QUANTUM;
1752 sysctl_udp_wmem_min = SK_MEM_QUANTUM;
1753}
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755EXPORT_SYMBOL(udp_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756EXPORT_SYMBOL(udp_ioctl);
David S. Millerdb8dac22008-03-06 16:22:02 -08001757EXPORT_SYMBOL(udp_prot);
1758EXPORT_SYMBOL(udp_sendmsg);
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001759EXPORT_SYMBOL(udp_lib_getsockopt);
1760EXPORT_SYMBOL(udp_lib_setsockopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761EXPORT_SYMBOL(udp_poll);
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -07001762EXPORT_SYMBOL(udp_lib_get_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764#ifdef CONFIG_PROC_FS
1765EXPORT_SYMBOL(udp_proc_register);
1766EXPORT_SYMBOL(udp_proc_unregister);
1767#endif