blob: b71423db77851eed9bd91f06a6ac0630f967a3e5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <net/protocol.h>
53#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070055#include <net/checksum.h>
56#include <net/sock.h>
57#include <net/tcp_states.h>
Neil Hormane9b3cc12009-08-13 05:19:44 +000058#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
61 * Is a socket 'connection oriented' ?
62 */
63static inline int connection_based(struct sock *sk)
64{
65 return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM;
66}
67
Eric Dumazet95c96172012-04-15 05:58:06 +000068static int receiver_wake_function(wait_queue_t *wait, unsigned int mode, int sync,
Eric Dumazetbf368e42009-04-28 02:24:21 -070069 void *key)
70{
71 unsigned long bits = (unsigned long)key;
72
73 /*
74 * Avoid a wakeup if event not interesting for us
75 */
76 if (bits && !(bits & (POLLIN | POLLERR)))
77 return 0;
78 return autoremove_wake_function(wait, mode, sync, key);
79}
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
Benjamin Poirier39cc8612013-04-29 11:42:13 +000081 * Wait for the last received packet to be different from skb
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
Benjamin Poirier39cc8612013-04-29 11:42:13 +000083static int wait_for_more_packets(struct sock *sk, int *err, long *timeo_p,
84 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
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
Benjamin Poirier39cc8612013-04-29 11:42:13 +000096 if (sk->sk_receive_queue.prev != skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 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
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000135 * @peeked: returns non-zero if this packet has been seen before
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000136 * @off: an offset in bytes to peek skb from. Returns an offset
137 * within an skb where data actually starts
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700138 * @err: error code returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 *
140 * Get a datagram skbuff, understands the peeking, nonblocking wakeups
141 * and possible races. This replaces identical code in packet, raw and
142 * udp, as well as the IPX AX.25 and Appletalk. It also finally fixes
143 * the long standing peek and read race for datagram sockets. If you
144 * alter this routine remember it must be re-entrant.
145 *
146 * This function will lock the socket if a skb is returned, so the caller
147 * needs to unlock the socket in that case (usually by calling
148 * skb_free_datagram)
149 *
150 * * It does not lock socket since today. This function is
151 * * free of race conditions. This measure should/can improve
152 * * significantly datagram socket latencies at high loads,
153 * * when data copying to user space takes lots of time.
154 * * (BTW I've just killed the last cli() in IP/IPv6/core/netlink/packet
155 * * 8) Great win.)
156 * * --ANK (980729)
157 *
158 * The order of the tests when we find no data waiting are specified
159 * quite explicitly by POSIX 1003.1g, don't change them without having
160 * the standard around please.
161 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000162struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000163 int *peeked, int *off, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000165 struct sk_buff *skb, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 long timeo;
167 /*
168 * Caller is allowed not to check sk->sk_err before skb_recv_datagram()
169 */
170 int error = sock_error(sk);
171
172 if (error)
173 goto no_packet;
174
Herbert Xua59322b2007-12-05 01:53:40 -0800175 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 do {
178 /* Again only user level code calls this function, so nothing
179 * interrupt level will suddenly eat the receive_queue.
180 *
181 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +0000182 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Herbert Xua59322b2007-12-05 01:53:40 -0800184 unsigned long cpu_flags;
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000185 struct sk_buff_head *queue = &sk->sk_receive_queue;
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000186 int _off = *off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000188 last = (struct sk_buff *)queue;
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000189 spin_lock_irqsave(&queue->lock, cpu_flags);
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000190 skb_queue_walk(queue, skb) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000191 last = skb;
Herbert Xua59322b2007-12-05 01:53:40 -0800192 *peeked = skb->peeked;
193 if (flags & MSG_PEEK) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000194 if (_off >= skb->len && (skb->len || _off ||
Benjamin Poirieradd05ad2013-04-29 11:42:12 +0000195 skb->peeked)) {
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000196 _off -= skb->len;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000197 continue;
198 }
Herbert Xua59322b2007-12-05 01:53:40 -0800199 skb->peeked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 atomic_inc(&skb->users);
Herbert Xua59322b2007-12-05 01:53:40 -0800201 } else
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000202 __skb_unlink(skb, queue);
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000203
204 spin_unlock_irqrestore(&queue->lock, cpu_flags);
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000205 *off = _off;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000206 return skb;
Herbert Xua59322b2007-12-05 01:53:40 -0800207 }
Pavel Emelyanov4934b032012-02-21 07:30:33 +0000208 spin_unlock_irqrestore(&queue->lock, cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* User doesn't want to wait */
211 error = -EAGAIN;
212 if (!timeo)
213 goto no_packet;
214
Benjamin Poirier39cc8612013-04-29 11:42:13 +0000215 } while (!wait_for_more_packets(sk, err, &timeo, last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return NULL;
218
219no_packet:
220 *err = error;
221 return NULL;
222}
Herbert Xua59322b2007-12-05 01:53:40 -0800223EXPORT_SYMBOL(__skb_recv_datagram);
224
Eric Dumazet95c96172012-04-15 05:58:06 +0000225struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned int flags,
Herbert Xua59322b2007-12-05 01:53:40 -0800226 int noblock, int *err)
227{
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000228 int peeked, off = 0;
Herbert Xua59322b2007-12-05 01:53:40 -0800229
230 return __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000231 &peeked, &off, err);
Herbert Xua59322b2007-12-05 01:53:40 -0800232}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000233EXPORT_SYMBOL(skb_recv_datagram);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
236{
Neil Hormanead2ceb2009-03-11 09:49:55 +0000237 consume_skb(skb);
Eric Dumazet270acef2008-11-05 01:38:06 -0800238 sk_mem_reclaim_partial(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
Eric Dumazet9d410c72009-10-30 05:03:53 +0000240EXPORT_SYMBOL(skb_free_datagram);
241
242void skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb)
243{
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000244 bool slow;
245
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700246 if (likely(atomic_read(&skb->users) == 1))
247 smp_rmb();
248 else if (likely(!atomic_dec_and_test(&skb->users)))
249 return;
250
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000251 slow = lock_sock_fast(sk);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700252 skb_orphan(skb);
253 sk_mem_reclaim_partial(sk);
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000254 unlock_sock_fast(sk, slow);
Eric Dumazet4b0b72f2010-04-28 14:35:48 -0700255
Eric Dumazet93bb64e2010-05-03 23:18:14 -0700256 /* skb is now orphaned, can be freed outside of locked section */
257 __kfree_skb(skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000258}
259EXPORT_SYMBOL(skb_free_datagram_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/**
Herbert Xu3305b802005-12-13 23:16:37 -0800262 * skb_kill_datagram - Free a datagram skbuff forcibly
263 * @sk: socket
264 * @skb: datagram skbuff
265 * @flags: MSG_ flags
266 *
267 * This function frees a datagram skbuff that was received by
268 * skb_recv_datagram. The flags argument must match the one
269 * used for skb_recv_datagram.
270 *
271 * If the MSG_PEEK flag is set, and the packet is still on the
272 * receive queue of the socket, it will be taken off the queue
273 * before it is freed.
274 *
275 * This function currently only disables BH when acquiring the
276 * sk_receive_queue lock. Therefore it must not be used in a
277 * context where that lock is acquired in an IRQ context.
Herbert Xu27ab2562007-12-05 01:51:58 -0800278 *
279 * It returns 0 if the packet was removed by us.
Herbert Xu3305b802005-12-13 23:16:37 -0800280 */
281
Herbert Xu27ab2562007-12-05 01:51:58 -0800282int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
Herbert Xu3305b802005-12-13 23:16:37 -0800283{
Herbert Xu27ab2562007-12-05 01:51:58 -0800284 int err = 0;
285
Herbert Xu3305b802005-12-13 23:16:37 -0800286 if (flags & MSG_PEEK) {
Herbert Xu27ab2562007-12-05 01:51:58 -0800287 err = -ENOENT;
Herbert Xu3305b802005-12-13 23:16:37 -0800288 spin_lock_bh(&sk->sk_receive_queue.lock);
289 if (skb == skb_peek(&sk->sk_receive_queue)) {
290 __skb_unlink(skb, &sk->sk_receive_queue);
291 atomic_dec(&skb->users);
Herbert Xu27ab2562007-12-05 01:51:58 -0800292 err = 0;
Herbert Xu3305b802005-12-13 23:16:37 -0800293 }
294 spin_unlock_bh(&sk->sk_receive_queue.lock);
295 }
296
John Dykstra61de71c2009-05-08 14:57:01 -0700297 kfree_skb(skb);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000298 atomic_inc(&sk->sk_drops);
John Dykstra61de71c2009-05-08 14:57:01 -0700299 sk_mem_reclaim_partial(sk);
300
Herbert Xu27ab2562007-12-05 01:51:58 -0800301 return err;
Herbert Xu3305b802005-12-13 23:16:37 -0800302}
Herbert Xu3305b802005-12-13 23:16:37 -0800303EXPORT_SYMBOL(skb_kill_datagram);
304
305/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * skb_copy_datagram_iovec - Copy a datagram to an iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700307 * @skb: buffer to copy
308 * @offset: offset in the buffer to start copying from
Martin Waitz67be2dd2005-05-01 08:59:26 -0700309 * @to: io vector to copy to
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700310 * @len: amount of data to copy from buffer to iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *
312 * Note: the iovec is modified during the copy.
313 */
314int skb_copy_datagram_iovec(const struct sk_buff *skb, int offset,
315 struct iovec *to, int len)
316{
David S. Miller1a028e52007-04-27 15:21:23 -0700317 int start = skb_headlen(skb);
318 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700319 struct sk_buff *frag_iter;
Herbert Xuc75d7212005-11-02 18:55:00 +1100320
Neil Hormane9b3cc12009-08-13 05:19:44 +0000321 trace_skb_copy_datagram_iovec(skb, len);
322
David S. Millerb4d9eda2006-02-13 16:06:10 -0800323 /* Copy header. */
324 if (copy > 0) {
325 if (copy > len)
326 copy = len;
327 if (memcpy_toiovec(to, skb->data + offset, copy))
328 goto fault;
329 if ((len -= copy) == 0)
330 return 0;
331 offset += copy;
332 }
Herbert Xuc75d7212005-11-02 18:55:00 +1100333
David S. Millerb4d9eda2006-02-13 16:06:10 -0800334 /* Copy paged appendix. Hmm... why does this look so complicated? */
335 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700336 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000337 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700339 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700340
Eric Dumazet9e903e02011-10-18 21:00:24 +0000341 end = start + skb_frag_size(frag);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800342 if ((copy = end - offset) > 0) {
343 int err;
344 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000345 struct page *page = skb_frag_page(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 if (copy > len)
348 copy = len;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800349 vaddr = kmap(page);
David S. Miller1a028e52007-04-27 15:21:23 -0700350 err = memcpy_toiovec(to, vaddr + frag->page_offset +
351 offset - start, copy);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800352 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (err)
354 goto fault;
355 if (!(len -= copy))
356 return 0;
357 offset += copy;
358 }
David S. Miller1a028e52007-04-27 15:21:23 -0700359 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800361
David S. Miller5b1a0022009-06-09 00:18:15 -0700362 skb_walk_frags(skb, frag_iter) {
363 int end;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800364
David S. Miller5b1a0022009-06-09 00:18:15 -0700365 WARN_ON(start > offset + len);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800366
David S. Miller5b1a0022009-06-09 00:18:15 -0700367 end = start + frag_iter->len;
368 if ((copy = end - offset) > 0) {
369 if (copy > len)
370 copy = len;
371 if (skb_copy_datagram_iovec(frag_iter,
372 offset - start,
373 to, copy))
374 goto fault;
375 if ((len -= copy) == 0)
376 return 0;
377 offset += copy;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800378 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700379 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800381 if (!len)
382 return 0;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384fault:
385 return -EFAULT;
386}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000387EXPORT_SYMBOL(skb_copy_datagram_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Rusty Russelldb543c12008-08-15 15:13:53 -0700389/**
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000390 * skb_copy_datagram_const_iovec - Copy a datagram to an iovec.
391 * @skb: buffer to copy
392 * @offset: offset in the buffer to start copying from
393 * @to: io vector to copy to
394 * @to_offset: offset in the io vector to start copying to
395 * @len: amount of data to copy from buffer to iovec
396 *
397 * Returns 0 or -EFAULT.
398 * Note: the iovec is not modified during the copy.
399 */
400int skb_copy_datagram_const_iovec(const struct sk_buff *skb, int offset,
401 const struct iovec *to, int to_offset,
402 int len)
403{
404 int start = skb_headlen(skb);
405 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700406 struct sk_buff *frag_iter;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000407
408 /* Copy header. */
409 if (copy > 0) {
410 if (copy > len)
411 copy = len;
412 if (memcpy_toiovecend(to, skb->data + offset, to_offset, copy))
413 goto fault;
414 if ((len -= copy) == 0)
415 return 0;
416 offset += copy;
417 to_offset += copy;
418 }
419
420 /* Copy paged appendix. Hmm... why does this look so complicated? */
421 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
422 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000423 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000424
425 WARN_ON(start > offset + len);
426
Eric Dumazet9e903e02011-10-18 21:00:24 +0000427 end = start + skb_frag_size(frag);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000428 if ((copy = end - offset) > 0) {
429 int err;
430 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000431 struct page *page = skb_frag_page(frag);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000432
433 if (copy > len)
434 copy = len;
435 vaddr = kmap(page);
436 err = memcpy_toiovecend(to, vaddr + frag->page_offset +
437 offset - start, to_offset, copy);
438 kunmap(page);
439 if (err)
440 goto fault;
441 if (!(len -= copy))
442 return 0;
443 offset += copy;
444 to_offset += copy;
445 }
446 start = end;
447 }
448
David S. Miller5b1a0022009-06-09 00:18:15 -0700449 skb_walk_frags(skb, frag_iter) {
450 int end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000451
David S. Miller5b1a0022009-06-09 00:18:15 -0700452 WARN_ON(start > offset + len);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000453
David S. Miller5b1a0022009-06-09 00:18:15 -0700454 end = start + frag_iter->len;
455 if ((copy = end - offset) > 0) {
456 if (copy > len)
457 copy = len;
458 if (skb_copy_datagram_const_iovec(frag_iter,
459 offset - start,
460 to, to_offset,
461 copy))
462 goto fault;
463 if ((len -= copy) == 0)
464 return 0;
465 offset += copy;
466 to_offset += copy;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000467 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700468 start = end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000469 }
470 if (!len)
471 return 0;
472
473fault:
474 return -EFAULT;
475}
476EXPORT_SYMBOL(skb_copy_datagram_const_iovec);
477
478/**
Rusty Russelldb543c12008-08-15 15:13:53 -0700479 * skb_copy_datagram_from_iovec - Copy a datagram from an iovec.
480 * @skb: buffer to copy
481 * @offset: offset in the buffer to start copying to
482 * @from: io vector to copy to
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000483 * @from_offset: offset in the io vector to start copying from
Rusty Russelldb543c12008-08-15 15:13:53 -0700484 * @len: amount of data to copy to buffer from iovec
485 *
486 * Returns 0 or -EFAULT.
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000487 * Note: the iovec is not modified during the copy.
Rusty Russelldb543c12008-08-15 15:13:53 -0700488 */
489int skb_copy_datagram_from_iovec(struct sk_buff *skb, int offset,
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000490 const struct iovec *from, int from_offset,
491 int len)
Rusty Russelldb543c12008-08-15 15:13:53 -0700492{
493 int start = skb_headlen(skb);
494 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700495 struct sk_buff *frag_iter;
Rusty Russelldb543c12008-08-15 15:13:53 -0700496
497 /* Copy header. */
498 if (copy > 0) {
499 if (copy > len)
500 copy = len;
Sridhar Samudralad2d27bf2009-06-05 09:35:40 +0000501 if (memcpy_fromiovecend(skb->data + offset, from, from_offset,
502 copy))
Rusty Russelldb543c12008-08-15 15:13:53 -0700503 goto fault;
504 if ((len -= copy) == 0)
505 return 0;
506 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000507 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700508 }
509
510 /* Copy paged appendix. Hmm... why does this look so complicated? */
511 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
512 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000513 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Rusty Russelldb543c12008-08-15 15:13:53 -0700514
515 WARN_ON(start > offset + len);
516
Eric Dumazet9e903e02011-10-18 21:00:24 +0000517 end = start + skb_frag_size(frag);
Rusty Russelldb543c12008-08-15 15:13:53 -0700518 if ((copy = end - offset) > 0) {
519 int err;
520 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000521 struct page *page = skb_frag_page(frag);
Rusty Russelldb543c12008-08-15 15:13:53 -0700522
523 if (copy > len)
524 copy = len;
525 vaddr = kmap(page);
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000526 err = memcpy_fromiovecend(vaddr + frag->page_offset +
527 offset - start,
528 from, from_offset, copy);
Rusty Russelldb543c12008-08-15 15:13:53 -0700529 kunmap(page);
530 if (err)
531 goto fault;
532
533 if (!(len -= copy))
534 return 0;
535 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000536 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700537 }
538 start = end;
539 }
540
David S. Miller5b1a0022009-06-09 00:18:15 -0700541 skb_walk_frags(skb, frag_iter) {
542 int end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700543
David S. Miller5b1a0022009-06-09 00:18:15 -0700544 WARN_ON(start > offset + len);
Rusty Russelldb543c12008-08-15 15:13:53 -0700545
David S. Miller5b1a0022009-06-09 00:18:15 -0700546 end = start + frag_iter->len;
547 if ((copy = end - offset) > 0) {
548 if (copy > len)
549 copy = len;
550 if (skb_copy_datagram_from_iovec(frag_iter,
551 offset - start,
552 from,
553 from_offset,
554 copy))
555 goto fault;
556 if ((len -= copy) == 0)
557 return 0;
558 offset += copy;
559 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700560 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700561 start = end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700562 }
563 if (!len)
564 return 0;
565
566fault:
567 return -EFAULT;
568}
569EXPORT_SYMBOL(skb_copy_datagram_from_iovec);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
572 u8 __user *to, int len,
Al Viro50842052006-11-14 21:36:34 -0800573 __wsum *csump)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
David S. Miller1a028e52007-04-27 15:21:23 -0700575 int start = skb_headlen(skb);
David S. Miller1a028e52007-04-27 15:21:23 -0700576 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700577 struct sk_buff *frag_iter;
578 int pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* Copy header. */
581 if (copy > 0) {
582 int err = 0;
583 if (copy > len)
584 copy = len;
585 *csump = csum_and_copy_to_user(skb->data + offset, to, copy,
586 *csump, &err);
587 if (err)
588 goto fault;
589 if ((len -= copy) == 0)
590 return 0;
591 offset += copy;
592 to += copy;
593 pos = copy;
594 }
595
596 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700597 int end;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000598 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700600 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700601
Eric Dumazet9e903e02011-10-18 21:00:24 +0000602 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -0800604 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int err = 0;
606 u8 *vaddr;
Ian Campbellea2ab692011-08-22 23:44:58 +0000607 struct page *page = skb_frag_page(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 if (copy > len)
610 copy = len;
611 vaddr = kmap(page);
612 csum2 = csum_and_copy_to_user(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -0700613 frag->page_offset +
614 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 to, copy, 0, &err);
616 kunmap(page);
617 if (err)
618 goto fault;
619 *csump = csum_block_add(*csump, csum2, pos);
620 if (!(len -= copy))
621 return 0;
622 offset += copy;
623 to += copy;
624 pos += copy;
625 }
David S. Miller1a028e52007-04-27 15:21:23 -0700626 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
David S. Miller5b1a0022009-06-09 00:18:15 -0700629 skb_walk_frags(skb, frag_iter) {
630 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
David S. Miller5b1a0022009-06-09 00:18:15 -0700632 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
David S. Miller5b1a0022009-06-09 00:18:15 -0700634 end = start + frag_iter->len;
635 if ((copy = end - offset) > 0) {
636 __wsum csum2 = 0;
637 if (copy > len)
638 copy = len;
639 if (skb_copy_and_csum_datagram(frag_iter,
640 offset - start,
641 to, copy,
642 &csum2))
643 goto fault;
644 *csump = csum_block_add(*csump, csum2, pos);
645 if ((len -= copy) == 0)
646 return 0;
647 offset += copy;
648 to += copy;
649 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700651 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 if (!len)
654 return 0;
655
656fault:
657 return -EFAULT;
658}
659
Herbert Xu759e5d02007-03-25 20:10:56 -0700660__sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
Herbert Xufb286bb2005-11-10 13:01:24 -0800661{
Al Virod3bc23e2006-11-14 21:24:49 -0800662 __sum16 sum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800663
Herbert Xu759e5d02007-03-25 20:10:56 -0700664 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
Herbert Xufb286bb2005-11-10 13:01:24 -0800665 if (likely(!sum)) {
Patrick McHardy84fa7932006-08-29 16:44:56 -0700666 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800667 netdev_rx_csum_fault(skb->dev);
668 skb->ip_summed = CHECKSUM_UNNECESSARY;
669 }
670 return sum;
671}
Herbert Xu759e5d02007-03-25 20:10:56 -0700672EXPORT_SYMBOL(__skb_checksum_complete_head);
673
674__sum16 __skb_checksum_complete(struct sk_buff *skb)
675{
676 return __skb_checksum_complete_head(skb, skb->len);
677}
Herbert Xufb286bb2005-11-10 13:01:24 -0800678EXPORT_SYMBOL(__skb_checksum_complete);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/**
681 * skb_copy_and_csum_datagram_iovec - Copy and checkum skb to user iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700682 * @skb: skbuff
683 * @hlen: hardware length
Martin Waitz67be2dd2005-05-01 08:59:26 -0700684 * @iov: io vector
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900685 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * Caller _must_ check that skb will fit to this iovec.
687 *
688 * Returns: 0 - success.
689 * -EINVAL - checksum failure.
690 * -EFAULT - fault during copy. Beware, in this case iovec
691 * can be modified!
692 */
Herbert Xufb286bb2005-11-10 13:01:24 -0800693int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int hlen, struct iovec *iov)
695{
Al Virod3bc23e2006-11-14 21:24:49 -0800696 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int chunk = skb->len - hlen;
698
Herbert Xuef8aef52007-09-06 14:06:35 +0100699 if (!chunk)
700 return 0;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* Skip filled elements.
703 * Pretty silly, look at memcpy_toiovec, though 8)
704 */
705 while (!iov->iov_len)
706 iov++;
707
708 if (iov->iov_len < chunk) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800709 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto csum_error;
711 if (skb_copy_datagram_iovec(skb, hlen, iov, chunk))
712 goto fault;
713 } else {
714 csum = csum_partial(skb->data, hlen, skb->csum);
715 if (skb_copy_and_csum_datagram(skb, hlen, iov->iov_base,
716 chunk, &csum))
717 goto fault;
Al Virod3bc23e2006-11-14 21:24:49 -0800718 if (csum_fold(csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto csum_error;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700720 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800721 netdev_rx_csum_fault(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 iov->iov_len -= chunk;
723 iov->iov_base += chunk;
724 }
725 return 0;
726csum_error:
727 return -EINVAL;
728fault:
729 return -EFAULT;
730}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000731EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733/**
734 * datagram_poll - generic datagram poll
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700735 * @file: file struct
736 * @sock: socket
737 * @wait: poll table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 *
739 * Datagram poll: Again totally generic. This also handles
740 * sequenced packet sockets providing the socket receive queue
741 * is only ever holding data ready to receive.
742 *
743 * Note: when you _don't_ use this routine for this protocol,
744 * and you use a different write policy from sock_writeable()
745 * then please supply your own write_space callback.
746 */
747unsigned int datagram_poll(struct file *file, struct socket *sock,
748 poll_table *wait)
749{
750 struct sock *sk = sock->sk;
751 unsigned int mask;
752
Eric Dumazetaa395142010-04-20 13:03:51 +0000753 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 mask = 0;
755
756 /* exceptional events? */
757 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +0000758 mask |= POLLERR |
Jacob Keller8facd5f2013-04-02 13:55:40 -0700759 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +0000760
Davide Libenzif348d702006-03-25 03:07:39 -0800761 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +0000762 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (sk->sk_shutdown == SHUTDOWN_MASK)
764 mask |= POLLHUP;
765
766 /* readable? */
Eric Dumazetdb409802010-09-06 11:13:50 +0000767 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 mask |= POLLIN | POLLRDNORM;
769
770 /* Connection-based need to check for termination and startup */
771 if (connection_based(sk)) {
772 if (sk->sk_state == TCP_CLOSE)
773 mask |= POLLHUP;
774 /* connection hasn't started yet? */
775 if (sk->sk_state == TCP_SYN_SENT)
776 return mask;
777 }
778
779 /* writable? */
780 if (sock_writeable(sk))
781 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
782 else
783 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
784
785 return mask;
786}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787EXPORT_SYMBOL(datagram_poll);