blob: 68bbf9f65cb08fac1ffc5a81cb6d69e76d631fae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * SUCS NET3:
3 *
4 * Generic datagram handling routines. These are generic for all
5 * protocols. Possibly a generic IP version on top of these would
6 * make sense. Not tonight however 8-).
7 * This is used because UDP, RAW, PACKET, DDP, IPX, AX.25 and
8 * NetROM layer all have identical poll code and mostly
9 * identical recvmsg() code. So we share it here. The poll was
10 * shared before but buried in udp.c so I moved it.
11 *
Alan Cox113aa832008-10-13 19:01:08 -070012 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>. (datagram_poll() from old
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * udp.c code)
14 *
15 * Fixes:
16 * Alan Cox : NULL return from skb_peek_copy()
17 * understood
18 * Alan Cox : Rewrote skb_read_datagram to avoid the
19 * skb_peek_copy stuff.
20 * Alan Cox : Added support for SOCK_SEQPACKET.
21 * IPX can no longer use the SO_TYPE hack
22 * but AX.25 now works right, and SPX is
23 * feasible.
24 * Alan Cox : Fixed write poll of non IP protocol
25 * crash.
26 * Florian La Roche: Changed for my new skbuff handling.
27 * Darryl Miles : Fixed non-blocking SOCK_SEQPACKET.
28 * Linus Torvalds : BSD semantic fixes.
29 * Alan Cox : Datagram iovec handling
30 * Darryl Miles : Fixed non-blocking SOCK_STREAM.
31 * Alan Cox : POSIXisms
32 * Pete Wyckoff : Unconnected accept() fix.
33 *
34 */
35
36#include <linux/module.h>
37#include <linux/types.h>
38#include <linux/kernel.h>
39#include <asm/uaccess.h>
40#include <asm/system.h>
41#include <linux/mm.h>
42#include <linux/interrupt.h>
43#include <linux/errno.h>
44#include <linux/sched.h>
45#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/netdevice.h>
47#include <linux/rtnetlink.h>
48#include <linux/poll.h>
49#include <linux/highmem.h>
Herbert Xu3305b802005-12-13 23:16:37 -080050#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <net/protocol.h>
54#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070056#include <net/checksum.h>
57#include <net/sock.h>
58#include <net/tcp_states.h>
Neil Hormane9b3cc12009-08-13 05:19:44 +000059#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*
62 * Is a socket 'connection oriented' ?
63 */
64static inline int connection_based(struct sock *sk)
65{
66 return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM;
67}
68
Eric Dumazetbf368e42009-04-28 02:24:21 -070069static int receiver_wake_function(wait_queue_t *wait, unsigned mode, int sync,
70 void *key)
71{
72 unsigned long bits = (unsigned long)key;
73
74 /*
75 * Avoid a wakeup if event not interesting for us
76 */
77 if (bits && !(bits & (POLLIN | POLLERR)))
78 return 0;
79 return autoremove_wake_function(wait, mode, sync, key);
80}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * Wait for a packet..
83 */
84static int wait_for_packet(struct sock *sk, int *err, long *timeo_p)
85{
86 int error;
Eric Dumazetbf368e42009-04-28 02:24:21 -070087 DEFINE_WAIT_FUNC(wait, receiver_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Eric Dumazetaa395142010-04-20 13:03:51 +000089 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* Socket errors? */
92 error = sock_error(sk);
93 if (error)
94 goto out_err;
95
96 if (!skb_queue_empty(&sk->sk_receive_queue))
97 goto out;
98
99 /* Socket shut down? */
100 if (sk->sk_shutdown & RCV_SHUTDOWN)
101 goto out_noerr;
102
103 /* Sequenced packets can come disconnected.
104 * If so we report the problem
105 */
106 error = -ENOTCONN;
107 if (connection_based(sk) &&
108 !(sk->sk_state == TCP_ESTABLISHED || sk->sk_state == TCP_LISTEN))
109 goto out_err;
110
111 /* handle signals */
112 if (signal_pending(current))
113 goto interrupted;
114
115 error = 0;
116 *timeo_p = schedule_timeout(*timeo_p);
117out:
Eric Dumazetaa395142010-04-20 13:03:51 +0000118 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return error;
120interrupted:
121 error = sock_intr_errno(*timeo_p);
122out_err:
123 *err = error;
124 goto out;
125out_noerr:
126 *err = 0;
127 error = 1;
128 goto out;
129}
130
131/**
Herbert Xua59322b2007-12-05 01:53:40 -0800132 * __skb_recv_datagram - Receive a datagram skbuff
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700133 * @sk: socket
134 * @flags: MSG_ flags
Herbert Xua59322b2007-12-05 01:53:40 -0800135 * @peeked: returns non-zero if this packet has been seen before
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700136 * @err: error code returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 *
138 * Get a datagram skbuff, understands the peeking, nonblocking wakeups
139 * and possible races. This replaces identical code in packet, raw and
140 * udp, as well as the IPX AX.25 and Appletalk. It also finally fixes
141 * the long standing peek and read race for datagram sockets. If you
142 * alter this routine remember it must be re-entrant.
143 *
144 * This function will lock the socket if a skb is returned, so the caller
145 * needs to unlock the socket in that case (usually by calling
146 * skb_free_datagram)
147 *
148 * * It does not lock socket since today. This function is
149 * * free of race conditions. This measure should/can improve
150 * * significantly datagram socket latencies at high loads,
151 * * when data copying to user space takes lots of time.
152 * * (BTW I've just killed the last cli() in IP/IPv6/core/netlink/packet
153 * * 8) Great win.)
154 * * --ANK (980729)
155 *
156 * The order of the tests when we find no data waiting are specified
157 * quite explicitly by POSIX 1003.1g, don't change them without having
158 * the standard around please.
159 */
Herbert Xua59322b2007-12-05 01:53:40 -0800160struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned flags,
161 int *peeked, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct sk_buff *skb;
164 long timeo;
165 /*
166 * Caller is allowed not to check sk->sk_err before skb_recv_datagram()
167 */
168 int error = sock_error(sk);
169
170 if (error)
171 goto no_packet;
172
Herbert Xua59322b2007-12-05 01:53:40 -0800173 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 do {
176 /* Again only user level code calls this function, so nothing
177 * interrupt level will suddenly eat the receive_queue.
178 *
179 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +0000180 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
Herbert Xua59322b2007-12-05 01:53:40 -0800182 unsigned long cpu_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Herbert Xua59322b2007-12-05 01:53:40 -0800184 spin_lock_irqsave(&sk->sk_receive_queue.lock, cpu_flags);
185 skb = skb_peek(&sk->sk_receive_queue);
186 if (skb) {
187 *peeked = skb->peeked;
188 if (flags & MSG_PEEK) {
189 skb->peeked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 atomic_inc(&skb->users);
Herbert Xua59322b2007-12-05 01:53:40 -0800191 } else
192 __skb_unlink(skb, &sk->sk_receive_queue);
193 }
194 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (skb)
197 return skb;
198
199 /* User doesn't want to wait */
200 error = -EAGAIN;
201 if (!timeo)
202 goto no_packet;
203
204 } while (!wait_for_packet(sk, err, &timeo));
205
206 return NULL;
207
208no_packet:
209 *err = error;
210 return NULL;
211}
Herbert Xua59322b2007-12-05 01:53:40 -0800212EXPORT_SYMBOL(__skb_recv_datagram);
213
214struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags,
215 int noblock, int *err)
216{
217 int peeked;
218
219 return __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
220 &peeked, err);
221}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000222EXPORT_SYMBOL(skb_recv_datagram);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
225{
Neil Hormanead2ceb2009-03-11 09:49:55 +0000226 consume_skb(skb);
Eric Dumazet270acef2008-11-05 01:38:06 -0800227 sk_mem_reclaim_partial(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Eric Dumazet9d410c72009-10-30 05:03:53 +0000229EXPORT_SYMBOL(skb_free_datagram);
230
231void skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb)
232{
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000233 bool slow;
234
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700235 if (likely(atomic_read(&skb->users) == 1))
236 smp_rmb();
237 else if (likely(!atomic_dec_and_test(&skb->users)))
238 return;
239
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000240 slow = lock_sock_fast(sk);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700241 skb_orphan(skb);
242 sk_mem_reclaim_partial(sk);
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000243 unlock_sock_fast(sk, slow);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700244
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700245 /* skb is now orphaned, can be freed outside of locked section */
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900246 trace_kfree_skb(skb, skb_free_datagram_locked);
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700247 __kfree_skb(skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000248}
249EXPORT_SYMBOL(skb_free_datagram_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/**
Herbert Xu3305b802005-12-13 23:16:37 -0800252 * skb_kill_datagram - Free a datagram skbuff forcibly
253 * @sk: socket
254 * @skb: datagram skbuff
255 * @flags: MSG_ flags
256 *
257 * This function frees a datagram skbuff that was received by
258 * skb_recv_datagram. The flags argument must match the one
259 * used for skb_recv_datagram.
260 *
261 * If the MSG_PEEK flag is set, and the packet is still on the
262 * receive queue of the socket, it will be taken off the queue
263 * before it is freed.
264 *
265 * This function currently only disables BH when acquiring the
266 * sk_receive_queue lock. Therefore it must not be used in a
267 * context where that lock is acquired in an IRQ context.
Herbert Xu27ab2562007-12-05 01:51:58 -0800268 *
269 * It returns 0 if the packet was removed by us.
Herbert Xu3305b802005-12-13 23:16:37 -0800270 */
271
Herbert Xu27ab2562007-12-05 01:51:58 -0800272int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
Herbert Xu3305b802005-12-13 23:16:37 -0800273{
Herbert Xu27ab2562007-12-05 01:51:58 -0800274 int err = 0;
275
Herbert Xu3305b802005-12-13 23:16:37 -0800276 if (flags & MSG_PEEK) {
Herbert Xu27ab2562007-12-05 01:51:58 -0800277 err = -ENOENT;
Herbert Xu3305b802005-12-13 23:16:37 -0800278 spin_lock_bh(&sk->sk_receive_queue.lock);
279 if (skb == skb_peek(&sk->sk_receive_queue)) {
280 __skb_unlink(skb, &sk->sk_receive_queue);
281 atomic_dec(&skb->users);
Herbert Xu27ab2562007-12-05 01:51:58 -0800282 err = 0;
Herbert Xu3305b802005-12-13 23:16:37 -0800283 }
284 spin_unlock_bh(&sk->sk_receive_queue.lock);
285 }
286
John Dykstra61de71c2009-05-08 14:57:01 -0700287 kfree_skb(skb);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000288 atomic_inc(&sk->sk_drops);
John Dykstra61de71c2009-05-08 14:57:01 -0700289 sk_mem_reclaim_partial(sk);
290
Herbert Xu27ab2562007-12-05 01:51:58 -0800291 return err;
Herbert Xu3305b802005-12-13 23:16:37 -0800292}
Herbert Xu3305b802005-12-13 23:16:37 -0800293EXPORT_SYMBOL(skb_kill_datagram);
294
295/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * skb_copy_datagram_iovec - Copy a datagram to an iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700297 * @skb: buffer to copy
298 * @offset: offset in the buffer to start copying from
Martin Waitz67be2dd2005-05-01 08:59:26 -0700299 * @to: io vector to copy to
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700300 * @len: amount of data to copy from buffer to iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 *
302 * Note: the iovec is modified during the copy.
303 */
304int skb_copy_datagram_iovec(const struct sk_buff *skb, int offset,
305 struct iovec *to, int len)
306{
David S. Miller1a028e52007-04-27 15:21:23 -0700307 int start = skb_headlen(skb);
308 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700309 struct sk_buff *frag_iter;
Herbert Xuc75d7212005-11-02 18:55:00 +1100310
Neil Hormane9b3cc12009-08-13 05:19:44 +0000311 trace_skb_copy_datagram_iovec(skb, len);
312
David S. Millerb4d9eda2006-02-13 16:06:10 -0800313 /* Copy header. */
314 if (copy > 0) {
315 if (copy > len)
316 copy = len;
317 if (memcpy_toiovec(to, skb->data + offset, copy))
318 goto fault;
319 if ((len -= copy) == 0)
320 return 0;
321 offset += copy;
322 }
Herbert Xuc75d7212005-11-02 18:55:00 +1100323
David S. Millerb4d9eda2006-02-13 16:06:10 -0800324 /* Copy paged appendix. Hmm... why does this look so complicated? */
325 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700326 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000327 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700329 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700330
Eric Dumazet9e903e02011-10-18 21:00:24 +0000331 end = start + skb_frag_size(frag);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800332 if ((copy = end - offset) > 0) {
333 int err;
334 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000335 struct page *page = skb_frag_page(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 if (copy > len)
338 copy = len;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800339 vaddr = kmap(page);
David S. Miller1a028e52007-04-27 15:21:23 -0700340 err = memcpy_toiovec(to, vaddr + frag->page_offset +
341 offset - start, copy);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800342 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (err)
344 goto fault;
345 if (!(len -= copy))
346 return 0;
347 offset += copy;
348 }
David S. Miller1a028e52007-04-27 15:21:23 -0700349 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800351
David S. Miller5b1a0022009-06-09 00:18:15 -0700352 skb_walk_frags(skb, frag_iter) {
353 int end;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800354
David S. Miller5b1a0022009-06-09 00:18:15 -0700355 WARN_ON(start > offset + len);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800356
David S. Miller5b1a0022009-06-09 00:18:15 -0700357 end = start + frag_iter->len;
358 if ((copy = end - offset) > 0) {
359 if (copy > len)
360 copy = len;
361 if (skb_copy_datagram_iovec(frag_iter,
362 offset - start,
363 to, copy))
364 goto fault;
365 if ((len -= copy) == 0)
366 return 0;
367 offset += copy;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800368 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700369 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800371 if (!len)
372 return 0;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374fault:
375 return -EFAULT;
376}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000377EXPORT_SYMBOL(skb_copy_datagram_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Rusty Russelldb543c12008-08-15 15:13:53 -0700379/**
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000380 * skb_copy_datagram_const_iovec - Copy a datagram to an iovec.
381 * @skb: buffer to copy
382 * @offset: offset in the buffer to start copying from
383 * @to: io vector to copy to
384 * @to_offset: offset in the io vector to start copying to
385 * @len: amount of data to copy from buffer to iovec
386 *
387 * Returns 0 or -EFAULT.
388 * Note: the iovec is not modified during the copy.
389 */
390int skb_copy_datagram_const_iovec(const struct sk_buff *skb, int offset,
391 const struct iovec *to, int to_offset,
392 int len)
393{
394 int start = skb_headlen(skb);
395 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700396 struct sk_buff *frag_iter;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000397
398 /* Copy header. */
399 if (copy > 0) {
400 if (copy > len)
401 copy = len;
402 if (memcpy_toiovecend(to, skb->data + offset, to_offset, copy))
403 goto fault;
404 if ((len -= copy) == 0)
405 return 0;
406 offset += copy;
407 to_offset += copy;
408 }
409
410 /* Copy paged appendix. Hmm... why does this look so complicated? */
411 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
412 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000413 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000414
415 WARN_ON(start > offset + len);
416
Eric Dumazet9e903e02011-10-18 21:00:24 +0000417 end = start + skb_frag_size(frag);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000418 if ((copy = end - offset) > 0) {
419 int err;
420 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000421 struct page *page = skb_frag_page(frag);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000422
423 if (copy > len)
424 copy = len;
425 vaddr = kmap(page);
426 err = memcpy_toiovecend(to, vaddr + frag->page_offset +
427 offset - start, to_offset, copy);
428 kunmap(page);
429 if (err)
430 goto fault;
431 if (!(len -= copy))
432 return 0;
433 offset += copy;
434 to_offset += copy;
435 }
436 start = end;
437 }
438
David S. Miller5b1a0022009-06-09 00:18:15 -0700439 skb_walk_frags(skb, frag_iter) {
440 int end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000441
David S. Miller5b1a0022009-06-09 00:18:15 -0700442 WARN_ON(start > offset + len);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000443
David S. Miller5b1a0022009-06-09 00:18:15 -0700444 end = start + frag_iter->len;
445 if ((copy = end - offset) > 0) {
446 if (copy > len)
447 copy = len;
448 if (skb_copy_datagram_const_iovec(frag_iter,
449 offset - start,
450 to, to_offset,
451 copy))
452 goto fault;
453 if ((len -= copy) == 0)
454 return 0;
455 offset += copy;
456 to_offset += copy;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000457 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700458 start = end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000459 }
460 if (!len)
461 return 0;
462
463fault:
464 return -EFAULT;
465}
466EXPORT_SYMBOL(skb_copy_datagram_const_iovec);
467
468/**
Rusty Russelldb543c12008-08-15 15:13:53 -0700469 * skb_copy_datagram_from_iovec - Copy a datagram from an iovec.
470 * @skb: buffer to copy
471 * @offset: offset in the buffer to start copying to
472 * @from: io vector to copy to
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000473 * @from_offset: offset in the io vector to start copying from
Rusty Russelldb543c12008-08-15 15:13:53 -0700474 * @len: amount of data to copy to buffer from iovec
475 *
476 * Returns 0 or -EFAULT.
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000477 * Note: the iovec is not modified during the copy.
Rusty Russelldb543c12008-08-15 15:13:53 -0700478 */
479int skb_copy_datagram_from_iovec(struct sk_buff *skb, int offset,
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000480 const struct iovec *from, int from_offset,
481 int len)
Rusty Russelldb543c12008-08-15 15:13:53 -0700482{
483 int start = skb_headlen(skb);
484 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700485 struct sk_buff *frag_iter;
Rusty Russelldb543c12008-08-15 15:13:53 -0700486
487 /* Copy header. */
488 if (copy > 0) {
489 if (copy > len)
490 copy = len;
Sridhar Samudralad2d27bf2009-06-05 09:35:40 +0000491 if (memcpy_fromiovecend(skb->data + offset, from, from_offset,
492 copy))
Rusty Russelldb543c12008-08-15 15:13:53 -0700493 goto fault;
494 if ((len -= copy) == 0)
495 return 0;
496 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000497 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700498 }
499
500 /* Copy paged appendix. Hmm... why does this look so complicated? */
501 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
502 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000503 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Rusty Russelldb543c12008-08-15 15:13:53 -0700504
505 WARN_ON(start > offset + len);
506
Eric Dumazet9e903e02011-10-18 21:00:24 +0000507 end = start + skb_frag_size(frag);
Rusty Russelldb543c12008-08-15 15:13:53 -0700508 if ((copy = end - offset) > 0) {
509 int err;
510 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000511 struct page *page = skb_frag_page(frag);
Rusty Russelldb543c12008-08-15 15:13:53 -0700512
513 if (copy > len)
514 copy = len;
515 vaddr = kmap(page);
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000516 err = memcpy_fromiovecend(vaddr + frag->page_offset +
517 offset - start,
518 from, from_offset, copy);
Rusty Russelldb543c12008-08-15 15:13:53 -0700519 kunmap(page);
520 if (err)
521 goto fault;
522
523 if (!(len -= copy))
524 return 0;
525 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000526 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700527 }
528 start = end;
529 }
530
David S. Miller5b1a0022009-06-09 00:18:15 -0700531 skb_walk_frags(skb, frag_iter) {
532 int end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700533
David S. Miller5b1a0022009-06-09 00:18:15 -0700534 WARN_ON(start > offset + len);
Rusty Russelldb543c12008-08-15 15:13:53 -0700535
David S. Miller5b1a0022009-06-09 00:18:15 -0700536 end = start + frag_iter->len;
537 if ((copy = end - offset) > 0) {
538 if (copy > len)
539 copy = len;
540 if (skb_copy_datagram_from_iovec(frag_iter,
541 offset - start,
542 from,
543 from_offset,
544 copy))
545 goto fault;
546 if ((len -= copy) == 0)
547 return 0;
548 offset += copy;
549 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700550 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700551 start = end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700552 }
553 if (!len)
554 return 0;
555
556fault:
557 return -EFAULT;
558}
559EXPORT_SYMBOL(skb_copy_datagram_from_iovec);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
562 u8 __user *to, int len,
Al Viro50842052006-11-14 21:36:34 -0800563 __wsum *csump)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
David S. Miller1a028e52007-04-27 15:21:23 -0700565 int start = skb_headlen(skb);
David S. Miller1a028e52007-04-27 15:21:23 -0700566 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700567 struct sk_buff *frag_iter;
568 int pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* Copy header. */
571 if (copy > 0) {
572 int err = 0;
573 if (copy > len)
574 copy = len;
575 *csump = csum_and_copy_to_user(skb->data + offset, to, copy,
576 *csump, &err);
577 if (err)
578 goto fault;
579 if ((len -= copy) == 0)
580 return 0;
581 offset += copy;
582 to += copy;
583 pos = copy;
584 }
585
586 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700587 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000588 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700590 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700591
Eric Dumazet9e903e02011-10-18 21:00:24 +0000592 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -0800594 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 int err = 0;
596 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000597 struct page *page = skb_frag_page(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (copy > len)
600 copy = len;
601 vaddr = kmap(page);
602 csum2 = csum_and_copy_to_user(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -0700603 frag->page_offset +
604 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 to, copy, 0, &err);
606 kunmap(page);
607 if (err)
608 goto fault;
609 *csump = csum_block_add(*csump, csum2, pos);
610 if (!(len -= copy))
611 return 0;
612 offset += copy;
613 to += copy;
614 pos += copy;
615 }
David S. Miller1a028e52007-04-27 15:21:23 -0700616 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
David S. Miller5b1a0022009-06-09 00:18:15 -0700619 skb_walk_frags(skb, frag_iter) {
620 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
David S. Miller5b1a0022009-06-09 00:18:15 -0700622 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
David S. Miller5b1a0022009-06-09 00:18:15 -0700624 end = start + frag_iter->len;
625 if ((copy = end - offset) > 0) {
626 __wsum csum2 = 0;
627 if (copy > len)
628 copy = len;
629 if (skb_copy_and_csum_datagram(frag_iter,
630 offset - start,
631 to, copy,
632 &csum2))
633 goto fault;
634 *csump = csum_block_add(*csump, csum2, pos);
635 if ((len -= copy) == 0)
636 return 0;
637 offset += copy;
638 to += copy;
639 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700641 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 if (!len)
644 return 0;
645
646fault:
647 return -EFAULT;
648}
649
Herbert Xu759e5d02007-03-25 20:10:56 -0700650__sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
Herbert Xufb286bb2005-11-10 13:01:24 -0800651{
Al Virod3bc23e2006-11-14 21:24:49 -0800652 __sum16 sum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800653
Herbert Xu759e5d02007-03-25 20:10:56 -0700654 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
Herbert Xufb286bb2005-11-10 13:01:24 -0800655 if (likely(!sum)) {
Patrick McHardy84fa7932006-08-29 16:44:56 -0700656 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800657 netdev_rx_csum_fault(skb->dev);
658 skb->ip_summed = CHECKSUM_UNNECESSARY;
659 }
660 return sum;
661}
Herbert Xu759e5d02007-03-25 20:10:56 -0700662EXPORT_SYMBOL(__skb_checksum_complete_head);
663
664__sum16 __skb_checksum_complete(struct sk_buff *skb)
665{
666 return __skb_checksum_complete_head(skb, skb->len);
667}
Herbert Xufb286bb2005-11-10 13:01:24 -0800668EXPORT_SYMBOL(__skb_checksum_complete);
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/**
671 * skb_copy_and_csum_datagram_iovec - Copy and checkum skb to user iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700672 * @skb: skbuff
673 * @hlen: hardware length
Martin Waitz67be2dd2005-05-01 08:59:26 -0700674 * @iov: io vector
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900675 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * Caller _must_ check that skb will fit to this iovec.
677 *
678 * Returns: 0 - success.
679 * -EINVAL - checksum failure.
680 * -EFAULT - fault during copy. Beware, in this case iovec
681 * can be modified!
682 */
Herbert Xufb286bb2005-11-10 13:01:24 -0800683int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int hlen, struct iovec *iov)
685{
Al Virod3bc23e2006-11-14 21:24:49 -0800686 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int chunk = skb->len - hlen;
688
Herbert Xuef8aef52007-09-06 14:06:35 +0100689 if (!chunk)
690 return 0;
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* Skip filled elements.
693 * Pretty silly, look at memcpy_toiovec, though 8)
694 */
695 while (!iov->iov_len)
696 iov++;
697
698 if (iov->iov_len < chunk) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800699 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 goto csum_error;
701 if (skb_copy_datagram_iovec(skb, hlen, iov, chunk))
702 goto fault;
703 } else {
704 csum = csum_partial(skb->data, hlen, skb->csum);
705 if (skb_copy_and_csum_datagram(skb, hlen, iov->iov_base,
706 chunk, &csum))
707 goto fault;
Al Virod3bc23e2006-11-14 21:24:49 -0800708 if (csum_fold(csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto csum_error;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700710 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800711 netdev_rx_csum_fault(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 iov->iov_len -= chunk;
713 iov->iov_base += chunk;
714 }
715 return 0;
716csum_error:
717 return -EINVAL;
718fault:
719 return -EFAULT;
720}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000721EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723/**
724 * datagram_poll - generic datagram poll
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700725 * @file: file struct
726 * @sock: socket
727 * @wait: poll table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 *
729 * Datagram poll: Again totally generic. This also handles
730 * sequenced packet sockets providing the socket receive queue
731 * is only ever holding data ready to receive.
732 *
733 * Note: when you _don't_ use this routine for this protocol,
734 * and you use a different write policy from sock_writeable()
735 * then please supply your own write_space callback.
736 */
737unsigned int datagram_poll(struct file *file, struct socket *sock,
738 poll_table *wait)
739{
740 struct sock *sk = sock->sk;
741 unsigned int mask;
742
Eric Dumazetaa395142010-04-20 13:03:51 +0000743 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 mask = 0;
745
746 /* exceptional events? */
747 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
748 mask |= POLLERR;
Davide Libenzif348d702006-03-25 03:07:39 -0800749 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +0000750 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (sk->sk_shutdown == SHUTDOWN_MASK)
752 mask |= POLLHUP;
753
754 /* readable? */
Eric Dumazetdb409802010-09-06 11:13:50 +0000755 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 mask |= POLLIN | POLLRDNORM;
757
758 /* Connection-based need to check for termination and startup */
759 if (connection_based(sk)) {
760 if (sk->sk_state == TCP_CLOSE)
761 mask |= POLLHUP;
762 /* connection hasn't started yet? */
763 if (sk->sk_state == TCP_SYN_SENT)
764 return mask;
765 }
766
767 /* writable? */
768 if (sock_writeable(sk))
769 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
770 else
771 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
772
773 return mask;
774}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775EXPORT_SYMBOL(datagram_poll);