blob: b80fb91bb3f7e8dc630663cb5e012dc97ac6924f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/mm.h>
41#include <linux/interrupt.h>
42#include <linux/errno.h>
43#include <linux/sched.h>
44#include <linux/inet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/netdevice.h>
46#include <linux/rtnetlink.h>
47#include <linux/poll.h>
48#include <linux/highmem.h>
Herbert Xu3305b802005-12-13 23:16:37 -080049#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Jason Wang04335472013-08-06 17:45:07 +080051#include <linux/pagemap.h>
Herbert Xua8f820aa2014-11-07 21:22:22 +080052#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <net/protocol.h>
55#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070057#include <net/checksum.h>
58#include <net/sock.h>
59#include <net/tcp_states.h>
Neil Hormane9b3cc12009-08-13 05:19:44 +000060#include <trace/events/skb.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030061#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Is a socket 'connection oriented' ?
65 */
66static inline int connection_based(struct sock *sk)
67{
68 return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM;
69}
70
Eric Dumazet95c96172012-04-15 05:58:06 +000071static int receiver_wake_function(wait_queue_t *wait, unsigned int mode, int sync,
Eric Dumazetbf368e42009-04-28 02:24:21 -070072 void *key)
73{
74 unsigned long bits = (unsigned long)key;
75
76 /*
77 * Avoid a wakeup if event not interesting for us
78 */
79 if (bits && !(bits & (POLLIN | POLLERR)))
80 return 0;
81 return autoremove_wake_function(wait, mode, sync, key);
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
Benjamin Poirier39cc8612013-04-29 11:42:13 +000084 * Wait for the last received packet to be different from skb
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 */
Benjamin Poirier39cc8612013-04-29 11:42:13 +000086static int wait_for_more_packets(struct sock *sk, int *err, long *timeo_p,
87 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 int error;
Eric Dumazetbf368e42009-04-28 02:24:21 -070090 DEFINE_WAIT_FUNC(wait, receiver_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Eric Dumazetaa395142010-04-20 13:03:51 +000092 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* Socket errors? */
95 error = sock_error(sk);
96 if (error)
97 goto out_err;
98
Benjamin Poirier39cc8612013-04-29 11:42:13 +000099 if (sk->sk_receive_queue.prev != skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 goto out;
101
102 /* Socket shut down? */
103 if (sk->sk_shutdown & RCV_SHUTDOWN)
104 goto out_noerr;
105
106 /* Sequenced packets can come disconnected.
107 * If so we report the problem
108 */
109 error = -ENOTCONN;
110 if (connection_based(sk) &&
111 !(sk->sk_state == TCP_ESTABLISHED || sk->sk_state == TCP_LISTEN))
112 goto out_err;
113
114 /* handle signals */
115 if (signal_pending(current))
116 goto interrupted;
117
118 error = 0;
119 *timeo_p = schedule_timeout(*timeo_p);
120out:
Eric Dumazetaa395142010-04-20 13:03:51 +0000121 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return error;
123interrupted:
124 error = sock_intr_errno(*timeo_p);
125out_err:
126 *err = error;
127 goto out;
128out_noerr:
129 *err = 0;
130 error = 1;
131 goto out;
132}
133
134/**
Herbert Xua59322b2007-12-05 01:53:40 -0800135 * __skb_recv_datagram - Receive a datagram skbuff
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700136 * @sk: socket
137 * @flags: MSG_ flags
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000138 * @peeked: returns non-zero if this packet has been seen before
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000139 * @off: an offset in bytes to peek skb from. Returns an offset
140 * within an skb where data actually starts
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700141 * @err: error code returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
143 * Get a datagram skbuff, understands the peeking, nonblocking wakeups
144 * and possible races. This replaces identical code in packet, raw and
145 * udp, as well as the IPX AX.25 and Appletalk. It also finally fixes
146 * the long standing peek and read race for datagram sockets. If you
147 * alter this routine remember it must be re-entrant.
148 *
149 * This function will lock the socket if a skb is returned, so the caller
150 * needs to unlock the socket in that case (usually by calling
151 * skb_free_datagram)
152 *
153 * * It does not lock socket since today. This function is
154 * * free of race conditions. This measure should/can improve
155 * * significantly datagram socket latencies at high loads,
156 * * when data copying to user space takes lots of time.
157 * * (BTW I've just killed the last cli() in IP/IPv6/core/netlink/packet
158 * * 8) Great win.)
159 * * --ANK (980729)
160 *
161 * The order of the tests when we find no data waiting are specified
162 * quite explicitly by POSIX 1003.1g, don't change them without having
163 * the standard around please.
164 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000165struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000166 int *peeked, int *off, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000168 struct sk_buff *skb, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 long timeo;
170 /*
171 * Caller is allowed not to check sk->sk_err before skb_recv_datagram()
172 */
173 int error = sock_error(sk);
174
175 if (error)
176 goto no_packet;
177
Herbert Xua59322b2007-12-05 01:53:40 -0800178 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 do {
181 /* Again only user level code calls this function, so nothing
182 * interrupt level will suddenly eat the receive_queue.
183 *
184 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +0000185 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Herbert Xua59322b2007-12-05 01:53:40 -0800187 unsigned long cpu_flags;
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000188 struct sk_buff_head *queue = &sk->sk_receive_queue;
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000189 int _off = *off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000191 last = (struct sk_buff *)queue;
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000192 spin_lock_irqsave(&queue->lock, cpu_flags);
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000193 skb_queue_walk(queue, skb) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000194 last = skb;
Herbert Xua59322b2007-12-05 01:53:40 -0800195 *peeked = skb->peeked;
196 if (flags & MSG_PEEK) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000197 if (_off >= skb->len && (skb->len || _off ||
Benjamin Poirieradd05ad2013-04-29 11:42:12 +0000198 skb->peeked)) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000199 _off -= skb->len;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000200 continue;
201 }
Herbert Xua59322b2007-12-05 01:53:40 -0800202 skb->peeked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 atomic_inc(&skb->users);
Herbert Xua59322b2007-12-05 01:53:40 -0800204 } else
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000205 __skb_unlink(skb, queue);
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000206
207 spin_unlock_irqrestore(&queue->lock, cpu_flags);
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000208 *off = _off;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000209 return skb;
Herbert Xua59322b2007-12-05 01:53:40 -0800210 }
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000211 spin_unlock_irqrestore(&queue->lock, cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Eliezer Tamircbf55002013-07-08 16:20:34 +0300213 if (sk_can_busy_loop(sk) &&
214 sk_busy_loop(sk, flags & MSG_DONTWAIT))
Eliezer Tamira5b50472013-06-10 11:40:00 +0300215 continue;
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* User doesn't want to wait */
218 error = -EAGAIN;
219 if (!timeo)
220 goto no_packet;
221
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000222 } while (!wait_for_more_packets(sk, err, &timeo, last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 return NULL;
225
226no_packet:
227 *err = error;
228 return NULL;
229}
Herbert Xua59322b2007-12-05 01:53:40 -0800230EXPORT_SYMBOL(__skb_recv_datagram);
231
Eric Dumazet95c96172012-04-15 05:58:06 +0000232struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned int flags,
Herbert Xua59322b2007-12-05 01:53:40 -0800233 int noblock, int *err)
234{
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000235 int peeked, off = 0;
Herbert Xua59322b2007-12-05 01:53:40 -0800236
237 return __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000238 &peeked, &off, err);
Herbert Xua59322b2007-12-05 01:53:40 -0800239}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000240EXPORT_SYMBOL(skb_recv_datagram);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
243{
Neil Hormanead2ceb2009-03-11 09:49:55 +0000244 consume_skb(skb);
Eric Dumazet270acef2008-11-05 01:38:06 -0800245 sk_mem_reclaim_partial(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
Eric Dumazet9d410c72009-10-30 05:03:53 +0000247EXPORT_SYMBOL(skb_free_datagram);
248
249void skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb)
250{
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000251 bool slow;
252
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700253 if (likely(atomic_read(&skb->users) == 1))
254 smp_rmb();
255 else if (likely(!atomic_dec_and_test(&skb->users)))
256 return;
257
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000258 slow = lock_sock_fast(sk);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700259 skb_orphan(skb);
260 sk_mem_reclaim_partial(sk);
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000261 unlock_sock_fast(sk, slow);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700262
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700263 /* skb is now orphaned, can be freed outside of locked section */
264 __kfree_skb(skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000265}
266EXPORT_SYMBOL(skb_free_datagram_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268/**
Herbert Xu3305b802005-12-13 23:16:37 -0800269 * skb_kill_datagram - Free a datagram skbuff forcibly
270 * @sk: socket
271 * @skb: datagram skbuff
272 * @flags: MSG_ flags
273 *
274 * This function frees a datagram skbuff that was received by
275 * skb_recv_datagram. The flags argument must match the one
276 * used for skb_recv_datagram.
277 *
278 * If the MSG_PEEK flag is set, and the packet is still on the
279 * receive queue of the socket, it will be taken off the queue
280 * before it is freed.
281 *
282 * This function currently only disables BH when acquiring the
283 * sk_receive_queue lock. Therefore it must not be used in a
284 * context where that lock is acquired in an IRQ context.
Herbert Xu27ab2562007-12-05 01:51:58 -0800285 *
286 * It returns 0 if the packet was removed by us.
Herbert Xu3305b802005-12-13 23:16:37 -0800287 */
288
Herbert Xu27ab2562007-12-05 01:51:58 -0800289int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
Herbert Xu3305b802005-12-13 23:16:37 -0800290{
Herbert Xu27ab2562007-12-05 01:51:58 -0800291 int err = 0;
292
Herbert Xu3305b802005-12-13 23:16:37 -0800293 if (flags & MSG_PEEK) {
Herbert Xu27ab2562007-12-05 01:51:58 -0800294 err = -ENOENT;
Herbert Xu3305b802005-12-13 23:16:37 -0800295 spin_lock_bh(&sk->sk_receive_queue.lock);
296 if (skb == skb_peek(&sk->sk_receive_queue)) {
297 __skb_unlink(skb, &sk->sk_receive_queue);
298 atomic_dec(&skb->users);
Herbert Xu27ab2562007-12-05 01:51:58 -0800299 err = 0;
Herbert Xu3305b802005-12-13 23:16:37 -0800300 }
301 spin_unlock_bh(&sk->sk_receive_queue.lock);
302 }
303
John Dykstra61de71c2009-05-08 14:57:01 -0700304 kfree_skb(skb);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000305 atomic_inc(&sk->sk_drops);
John Dykstra61de71c2009-05-08 14:57:01 -0700306 sk_mem_reclaim_partial(sk);
307
Herbert Xu27ab2562007-12-05 01:51:58 -0800308 return err;
Herbert Xu3305b802005-12-13 23:16:37 -0800309}
Herbert Xu3305b802005-12-13 23:16:37 -0800310EXPORT_SYMBOL(skb_kill_datagram);
311
312/**
Herbert Xua8f820aa2014-11-07 21:22:22 +0800313 * skb_copy_datagram_iter - Copy a datagram to an iovec iterator.
314 * @skb: buffer to copy
315 * @offset: offset in the buffer to start copying from
316 * @to: iovec iterator to copy to
317 * @len: amount of data to copy from buffer to iovec
318 */
319int skb_copy_datagram_iter(const struct sk_buff *skb, int offset,
320 struct iov_iter *to, int len)
321{
322 int start = skb_headlen(skb);
323 int i, copy = start - offset;
324 struct sk_buff *frag_iter;
325
326 trace_skb_copy_datagram_iovec(skb, len);
327
328 /* Copy header. */
329 if (copy > 0) {
330 if (copy > len)
331 copy = len;
332 if (copy_to_iter(skb->data + offset, copy, to) != copy)
333 goto short_copy;
334 if ((len -= copy) == 0)
335 return 0;
336 offset += copy;
337 }
338
339 /* Copy paged appendix. Hmm... why does this look so complicated? */
340 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
341 int end;
342 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
343
344 WARN_ON(start > offset + len);
345
346 end = start + skb_frag_size(frag);
347 if ((copy = end - offset) > 0) {
348 if (copy > len)
349 copy = len;
350 if (copy_page_to_iter(skb_frag_page(frag),
351 frag->page_offset + offset -
352 start, copy, to) != copy)
353 goto short_copy;
354 if (!(len -= copy))
355 return 0;
356 offset += copy;
357 }
358 start = end;
359 }
360
361 skb_walk_frags(skb, frag_iter) {
362 int end;
363
364 WARN_ON(start > offset + len);
365
366 end = start + frag_iter->len;
367 if ((copy = end - offset) > 0) {
368 if (copy > len)
369 copy = len;
370 if (skb_copy_datagram_iter(frag_iter, offset - start,
371 to, copy))
372 goto fault;
373 if ((len -= copy) == 0)
374 return 0;
375 offset += copy;
376 }
377 start = end;
378 }
379 if (!len)
380 return 0;
381
382 /* This is not really a user copy fault, but rather someone
383 * gave us a bogus length on the skb. We should probably
384 * print a warning here as it may indicate a kernel bug.
385 */
386
387fault:
388 return -EFAULT;
389
390short_copy:
391 if (iov_iter_count(to))
392 goto fault;
393
394 return 0;
395}
396EXPORT_SYMBOL(skb_copy_datagram_iter);
397
398/**
Al Viro8feb2fb2014-11-06 01:10:59 -0500399 * skb_copy_datagram_from_iter - Copy a datagram from an iov_iter.
Rusty Russelldb543c12008-08-15 15:13:53 -0700400 * @skb: buffer to copy
401 * @offset: offset in the buffer to start copying to
Al Viro8feb2fb2014-11-06 01:10:59 -0500402 * @from: the copy source
Rusty Russelldb543c12008-08-15 15:13:53 -0700403 * @len: amount of data to copy to buffer from iovec
404 *
405 * Returns 0 or -EFAULT.
Rusty Russelldb543c12008-08-15 15:13:53 -0700406 */
Al Viro3a654f92014-06-19 14:15:22 -0400407int skb_copy_datagram_from_iter(struct sk_buff *skb, int offset,
408 struct iov_iter *from,
409 int len)
410{
411 int start = skb_headlen(skb);
412 int i, copy = start - offset;
413 struct sk_buff *frag_iter;
414
415 /* Copy header. */
416 if (copy > 0) {
417 if (copy > len)
418 copy = len;
419 if (copy_from_iter(skb->data + offset, copy, from) != copy)
420 goto fault;
421 if ((len -= copy) == 0)
422 return 0;
423 offset += copy;
424 }
425
426 /* Copy paged appendix. Hmm... why does this look so complicated? */
427 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
428 int end;
429 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
430
431 WARN_ON(start > offset + len);
432
433 end = start + skb_frag_size(frag);
434 if ((copy = end - offset) > 0) {
435 size_t copied;
436
437 if (copy > len)
438 copy = len;
439 copied = copy_page_from_iter(skb_frag_page(frag),
440 frag->page_offset + offset - start,
441 copy, from);
442 if (copied != copy)
443 goto fault;
444
445 if (!(len -= copy))
446 return 0;
447 offset += copy;
448 }
449 start = end;
450 }
451
452 skb_walk_frags(skb, frag_iter) {
453 int end;
454
455 WARN_ON(start > offset + len);
456
457 end = start + frag_iter->len;
458 if ((copy = end - offset) > 0) {
459 if (copy > len)
460 copy = len;
461 if (skb_copy_datagram_from_iter(frag_iter,
462 offset - start,
463 from, copy))
464 goto fault;
465 if ((len -= copy) == 0)
466 return 0;
467 offset += copy;
468 }
469 start = end;
470 }
471 if (!len)
472 return 0;
473
474fault:
475 return -EFAULT;
476}
477EXPORT_SYMBOL(skb_copy_datagram_from_iter);
478
Jason Wangc3bdeb52013-08-06 17:45:04 +0800479/**
Al Viro195e9522014-11-06 00:56:48 -0500480 * zerocopy_sg_from_iter - Build a zerocopy datagram from an iov_iter
Jason Wangc3bdeb52013-08-06 17:45:04 +0800481 * @skb: buffer to copy
Al Viro195e9522014-11-06 00:56:48 -0500482 * @from: the source to copy from
Jason Wangc3bdeb52013-08-06 17:45:04 +0800483 *
484 * The function will first copy up to headlen, and then pin the userspace
485 * pages and build frags through them.
486 *
487 * Returns 0, -EFAULT or -EMSGSIZE.
Jason Wangc3bdeb52013-08-06 17:45:04 +0800488 */
Al Viro3a654f92014-06-19 14:15:22 -0400489int zerocopy_sg_from_iter(struct sk_buff *skb, struct iov_iter *from)
490{
491 int len = iov_iter_count(from);
492 int copy = min_t(int, skb_headlen(skb), len);
493 int frag = 0;
494
495 /* copy up to skb headlen */
496 if (skb_copy_datagram_from_iter(skb, 0, from, copy))
497 return -EFAULT;
498
499 while (iov_iter_count(from)) {
500 struct page *pages[MAX_SKB_FRAGS];
501 size_t start;
502 ssize_t copied;
503 unsigned long truesize;
504 int n = 0;
505
506 if (frag == MAX_SKB_FRAGS)
507 return -EMSGSIZE;
508
509 copied = iov_iter_get_pages(from, pages, ~0U,
510 MAX_SKB_FRAGS - frag, &start);
511 if (copied < 0)
512 return -EFAULT;
513
514 iov_iter_advance(from, copied);
515
516 truesize = PAGE_ALIGN(copied + start);
517 skb->data_len += copied;
518 skb->len += copied;
519 skb->truesize += truesize;
520 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
521 while (copied) {
522 int size = min_t(int, copied, PAGE_SIZE - start);
523 skb_fill_page_desc(skb, frag++, pages[n], start, size);
524 start = 0;
525 copied -= size;
526 n++;
527 }
528 }
529 return 0;
530}
531EXPORT_SYMBOL(zerocopy_sg_from_iter);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
Al Viroe5a4b0b2014-11-24 18:17:55 -0500534 struct iov_iter *to, int len,
Al Viro50842052006-11-14 21:36:34 -0800535 __wsum *csump)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
David S. Miller1a028e52007-04-27 15:21:23 -0700537 int start = skb_headlen(skb);
David S. Miller1a028e52007-04-27 15:21:23 -0700538 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700539 struct sk_buff *frag_iter;
540 int pos = 0;
Al Viroe5a4b0b2014-11-24 18:17:55 -0500541 int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* Copy header. */
544 if (copy > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (copy > len)
546 copy = len;
Al Viroe5a4b0b2014-11-24 18:17:55 -0500547 n = csum_and_copy_to_iter(skb->data + offset, copy, csump, to);
548 if (n != copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 goto fault;
550 if ((len -= copy) == 0)
551 return 0;
552 offset += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 pos = copy;
554 }
555
556 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700557 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000558 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700560 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700561
Eric Dumazet9e903e02011-10-18 21:00:24 +0000562 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if ((copy = end - offset) > 0) {
Al Viroe5a4b0b2014-11-24 18:17:55 -0500564 __wsum csum2 = 0;
Ian Campbellea2ab692011-08-22 23:44:58 +0000565 struct page *page = skb_frag_page(frag);
Al Viroe5a4b0b2014-11-24 18:17:55 -0500566 u8 *vaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (copy > len)
569 copy = len;
Al Viroe5a4b0b2014-11-24 18:17:55 -0500570 n = csum_and_copy_to_iter(vaddr + frag->page_offset +
571 offset - start, copy,
572 &csum2, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 kunmap(page);
Al Viroe5a4b0b2014-11-24 18:17:55 -0500574 if (n != copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto fault;
576 *csump = csum_block_add(*csump, csum2, pos);
577 if (!(len -= copy))
578 return 0;
579 offset += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 pos += copy;
581 }
David S. Miller1a028e52007-04-27 15:21:23 -0700582 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
David S. Miller5b1a0022009-06-09 00:18:15 -0700585 skb_walk_frags(skb, frag_iter) {
586 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
David S. Miller5b1a0022009-06-09 00:18:15 -0700588 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
David S. Miller5b1a0022009-06-09 00:18:15 -0700590 end = start + frag_iter->len;
591 if ((copy = end - offset) > 0) {
592 __wsum csum2 = 0;
593 if (copy > len)
594 copy = len;
595 if (skb_copy_and_csum_datagram(frag_iter,
596 offset - start,
597 to, copy,
598 &csum2))
599 goto fault;
600 *csump = csum_block_add(*csump, csum2, pos);
601 if ((len -= copy) == 0)
602 return 0;
603 offset += copy;
David S. Miller5b1a0022009-06-09 00:18:15 -0700604 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700606 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 if (!len)
609 return 0;
610
611fault:
612 return -EFAULT;
613}
614
Herbert Xu759e5d02007-03-25 20:10:56 -0700615__sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
Herbert Xufb286bb2005-11-10 13:01:24 -0800616{
Al Virod3bc23e2006-11-14 21:24:49 -0800617 __sum16 sum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800618
Herbert Xu759e5d02007-03-25 20:10:56 -0700619 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
Tom Herbert46fb51e2014-06-14 23:24:03 -0700620 if (likely(!sum)) {
621 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
622 !skb->csum_complete_sw)
623 netdev_rx_csum_fault(skb->dev);
624 }
625 skb->csum_valid = !sum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800626 return sum;
627}
Herbert Xu759e5d02007-03-25 20:10:56 -0700628EXPORT_SYMBOL(__skb_checksum_complete_head);
629
630__sum16 __skb_checksum_complete(struct sk_buff *skb)
631{
Tom Herbert46fb51e2014-06-14 23:24:03 -0700632 __wsum csum;
633 __sum16 sum;
634
635 csum = skb_checksum(skb, 0, skb->len, 0);
636
637 /* skb->csum holds pseudo checksum */
638 sum = csum_fold(csum_add(skb->csum, csum));
639 if (likely(!sum)) {
640 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
641 !skb->csum_complete_sw)
642 netdev_rx_csum_fault(skb->dev);
643 }
644
645 /* Save full packet checksum */
646 skb->csum = csum;
647 skb->ip_summed = CHECKSUM_COMPLETE;
648 skb->csum_complete_sw = 1;
649 skb->csum_valid = !sum;
650
651 return sum;
Herbert Xu759e5d02007-03-25 20:10:56 -0700652}
Herbert Xufb286bb2005-11-10 13:01:24 -0800653EXPORT_SYMBOL(__skb_checksum_complete);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/**
Al Viroe5a4b0b2014-11-24 18:17:55 -0500656 * skb_copy_and_csum_datagram_msg - Copy and checksum skb to user iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700657 * @skb: skbuff
658 * @hlen: hardware length
Al Viroe5a4b0b2014-11-24 18:17:55 -0500659 * @msg: destination
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900660 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * Caller _must_ check that skb will fit to this iovec.
662 *
663 * Returns: 0 - success.
664 * -EINVAL - checksum failure.
Al Viroe5a4b0b2014-11-24 18:17:55 -0500665 * -EFAULT - fault during copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Al Viroe5a4b0b2014-11-24 18:17:55 -0500667int skb_copy_and_csum_datagram_msg(struct sk_buff *skb,
668 int hlen, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Al Virod3bc23e2006-11-14 21:24:49 -0800670 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int chunk = skb->len - hlen;
672
Herbert Xuef8aef52007-09-06 14:06:35 +0100673 if (!chunk)
674 return 0;
675
Al Viro01e97e62014-12-15 21:39:31 -0500676 if (msg_data_left(msg) < chunk) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800677 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto csum_error;
Al Viroe5a4b0b2014-11-24 18:17:55 -0500679 if (skb_copy_datagram_msg(skb, hlen, msg, chunk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto fault;
681 } else {
682 csum = csum_partial(skb->data, hlen, skb->csum);
Al Viroe5a4b0b2014-11-24 18:17:55 -0500683 if (skb_copy_and_csum_datagram(skb, hlen, &msg->msg_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 chunk, &csum))
685 goto fault;
Al Virod3bc23e2006-11-14 21:24:49 -0800686 if (csum_fold(csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 goto csum_error;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700688 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800689 netdev_rx_csum_fault(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691 return 0;
692csum_error:
693 return -EINVAL;
694fault:
695 return -EFAULT;
696}
Al Viroe5a4b0b2014-11-24 18:17:55 -0500697EXPORT_SYMBOL(skb_copy_and_csum_datagram_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699/**
700 * datagram_poll - generic datagram poll
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700701 * @file: file struct
702 * @sock: socket
703 * @wait: poll table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 *
705 * Datagram poll: Again totally generic. This also handles
706 * sequenced packet sockets providing the socket receive queue
707 * is only ever holding data ready to receive.
708 *
709 * Note: when you _don't_ use this routine for this protocol,
710 * and you use a different write policy from sock_writeable()
711 * then please supply your own write_space callback.
712 */
713unsigned int datagram_poll(struct file *file, struct socket *sock,
714 poll_table *wait)
715{
716 struct sock *sk = sock->sk;
717 unsigned int mask;
718
Eric Dumazetaa395142010-04-20 13:03:51 +0000719 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 mask = 0;
721
722 /* exceptional events? */
723 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +0000724 mask |= POLLERR |
Jacob Keller8facd5f2013-04-02 13:55:40 -0700725 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +0000726
Davide Libenzif348d702006-03-25 03:07:39 -0800727 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +0000728 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (sk->sk_shutdown == SHUTDOWN_MASK)
730 mask |= POLLHUP;
731
732 /* readable? */
Eric Dumazetdb409802010-09-06 11:13:50 +0000733 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 mask |= POLLIN | POLLRDNORM;
735
736 /* Connection-based need to check for termination and startup */
737 if (connection_based(sk)) {
738 if (sk->sk_state == TCP_CLOSE)
739 mask |= POLLHUP;
740 /* connection hasn't started yet? */
741 if (sk->sk_state == TCP_SYN_SENT)
742 return mask;
743 }
744
745 /* writable? */
746 if (sock_writeable(sk))
747 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
748 else
749 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
750
751 return mask;
752}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753EXPORT_SYMBOL(datagram_poll);