blob: 5574a5ddf90829683758be6cb0ef04647f26e232 [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...
180 * However, this function was corrent in any case. 8)
181 */
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}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
224{
Neil Hormanead2ceb2009-03-11 09:49:55 +0000225 consume_skb(skb);
Eric Dumazet270acef2008-11-05 01:38:06 -0800226 sk_mem_reclaim_partial(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Eric Dumazet9d410c72009-10-30 05:03:53 +0000228EXPORT_SYMBOL(skb_free_datagram);
229
230void skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb)
231{
232 lock_sock(sk);
233 skb_free_datagram(sk, skb);
234 release_sock(sk);
235}
236EXPORT_SYMBOL(skb_free_datagram_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238/**
Herbert Xu3305b802005-12-13 23:16:37 -0800239 * skb_kill_datagram - Free a datagram skbuff forcibly
240 * @sk: socket
241 * @skb: datagram skbuff
242 * @flags: MSG_ flags
243 *
244 * This function frees a datagram skbuff that was received by
245 * skb_recv_datagram. The flags argument must match the one
246 * used for skb_recv_datagram.
247 *
248 * If the MSG_PEEK flag is set, and the packet is still on the
249 * receive queue of the socket, it will be taken off the queue
250 * before it is freed.
251 *
252 * This function currently only disables BH when acquiring the
253 * sk_receive_queue lock. Therefore it must not be used in a
254 * context where that lock is acquired in an IRQ context.
Herbert Xu27ab2562007-12-05 01:51:58 -0800255 *
256 * It returns 0 if the packet was removed by us.
Herbert Xu3305b802005-12-13 23:16:37 -0800257 */
258
Herbert Xu27ab2562007-12-05 01:51:58 -0800259int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
Herbert Xu3305b802005-12-13 23:16:37 -0800260{
Herbert Xu27ab2562007-12-05 01:51:58 -0800261 int err = 0;
262
Herbert Xu3305b802005-12-13 23:16:37 -0800263 if (flags & MSG_PEEK) {
Herbert Xu27ab2562007-12-05 01:51:58 -0800264 err = -ENOENT;
Herbert Xu3305b802005-12-13 23:16:37 -0800265 spin_lock_bh(&sk->sk_receive_queue.lock);
266 if (skb == skb_peek(&sk->sk_receive_queue)) {
267 __skb_unlink(skb, &sk->sk_receive_queue);
268 atomic_dec(&skb->users);
Herbert Xu27ab2562007-12-05 01:51:58 -0800269 err = 0;
Herbert Xu3305b802005-12-13 23:16:37 -0800270 }
271 spin_unlock_bh(&sk->sk_receive_queue.lock);
272 }
273
John Dykstra61de71c2009-05-08 14:57:01 -0700274 kfree_skb(skb);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000275 atomic_inc(&sk->sk_drops);
John Dykstra61de71c2009-05-08 14:57:01 -0700276 sk_mem_reclaim_partial(sk);
277
Herbert Xu27ab2562007-12-05 01:51:58 -0800278 return err;
Herbert Xu3305b802005-12-13 23:16:37 -0800279}
280
281EXPORT_SYMBOL(skb_kill_datagram);
282
283/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * skb_copy_datagram_iovec - Copy a datagram to an iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700285 * @skb: buffer to copy
286 * @offset: offset in the buffer to start copying from
Martin Waitz67be2dd2005-05-01 08:59:26 -0700287 * @to: io vector to copy to
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700288 * @len: amount of data to copy from buffer to iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *
290 * Note: the iovec is modified during the copy.
291 */
292int skb_copy_datagram_iovec(const struct sk_buff *skb, int offset,
293 struct iovec *to, int len)
294{
David S. Miller1a028e52007-04-27 15:21:23 -0700295 int start = skb_headlen(skb);
296 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700297 struct sk_buff *frag_iter;
Herbert Xuc75d7212005-11-02 18:55:00 +1100298
Neil Hormane9b3cc12009-08-13 05:19:44 +0000299 trace_skb_copy_datagram_iovec(skb, len);
300
David S. Millerb4d9eda2006-02-13 16:06:10 -0800301 /* Copy header. */
302 if (copy > 0) {
303 if (copy > len)
304 copy = len;
305 if (memcpy_toiovec(to, skb->data + offset, copy))
306 goto fault;
307 if ((len -= copy) == 0)
308 return 0;
309 offset += copy;
310 }
Herbert Xuc75d7212005-11-02 18:55:00 +1100311
David S. Millerb4d9eda2006-02-13 16:06:10 -0800312 /* Copy paged appendix. Hmm... why does this look so complicated? */
313 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700314 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700316 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700317
318 end = start + skb_shinfo(skb)->frags[i].size;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800319 if ((copy = end - offset) > 0) {
320 int err;
321 u8 *vaddr;
322 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
323 struct page *page = frag->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (copy > len)
326 copy = len;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800327 vaddr = kmap(page);
David S. Miller1a028e52007-04-27 15:21:23 -0700328 err = memcpy_toiovec(to, vaddr + frag->page_offset +
329 offset - start, copy);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800330 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (err)
332 goto fault;
333 if (!(len -= copy))
334 return 0;
335 offset += copy;
336 }
David S. Miller1a028e52007-04-27 15:21:23 -0700337 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800339
David S. Miller5b1a0022009-06-09 00:18:15 -0700340 skb_walk_frags(skb, frag_iter) {
341 int end;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800342
David S. Miller5b1a0022009-06-09 00:18:15 -0700343 WARN_ON(start > offset + len);
David S. Millerb4d9eda2006-02-13 16:06:10 -0800344
David S. Miller5b1a0022009-06-09 00:18:15 -0700345 end = start + frag_iter->len;
346 if ((copy = end - offset) > 0) {
347 if (copy > len)
348 copy = len;
349 if (skb_copy_datagram_iovec(frag_iter,
350 offset - start,
351 to, copy))
352 goto fault;
353 if ((len -= copy) == 0)
354 return 0;
355 offset += copy;
David S. Millerb4d9eda2006-02-13 16:06:10 -0800356 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700357 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
David S. Millerb4d9eda2006-02-13 16:06:10 -0800359 if (!len)
360 return 0;
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362fault:
363 return -EFAULT;
364}
365
Rusty Russelldb543c12008-08-15 15:13:53 -0700366/**
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000367 * skb_copy_datagram_const_iovec - Copy a datagram to an iovec.
368 * @skb: buffer to copy
369 * @offset: offset in the buffer to start copying from
370 * @to: io vector to copy to
371 * @to_offset: offset in the io vector to start copying to
372 * @len: amount of data to copy from buffer to iovec
373 *
374 * Returns 0 or -EFAULT.
375 * Note: the iovec is not modified during the copy.
376 */
377int skb_copy_datagram_const_iovec(const struct sk_buff *skb, int offset,
378 const struct iovec *to, int to_offset,
379 int len)
380{
381 int start = skb_headlen(skb);
382 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700383 struct sk_buff *frag_iter;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000384
385 /* Copy header. */
386 if (copy > 0) {
387 if (copy > len)
388 copy = len;
389 if (memcpy_toiovecend(to, skb->data + offset, to_offset, copy))
390 goto fault;
391 if ((len -= copy) == 0)
392 return 0;
393 offset += copy;
394 to_offset += copy;
395 }
396
397 /* Copy paged appendix. Hmm... why does this look so complicated? */
398 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
399 int end;
400
401 WARN_ON(start > offset + len);
402
403 end = start + skb_shinfo(skb)->frags[i].size;
404 if ((copy = end - offset) > 0) {
405 int err;
406 u8 *vaddr;
407 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
408 struct page *page = frag->page;
409
410 if (copy > len)
411 copy = len;
412 vaddr = kmap(page);
413 err = memcpy_toiovecend(to, vaddr + frag->page_offset +
414 offset - start, to_offset, copy);
415 kunmap(page);
416 if (err)
417 goto fault;
418 if (!(len -= copy))
419 return 0;
420 offset += copy;
421 to_offset += copy;
422 }
423 start = end;
424 }
425
David S. Miller5b1a0022009-06-09 00:18:15 -0700426 skb_walk_frags(skb, frag_iter) {
427 int end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000428
David S. Miller5b1a0022009-06-09 00:18:15 -0700429 WARN_ON(start > offset + len);
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000430
David S. Miller5b1a0022009-06-09 00:18:15 -0700431 end = start + frag_iter->len;
432 if ((copy = end - offset) > 0) {
433 if (copy > len)
434 copy = len;
435 if (skb_copy_datagram_const_iovec(frag_iter,
436 offset - start,
437 to, to_offset,
438 copy))
439 goto fault;
440 if ((len -= copy) == 0)
441 return 0;
442 offset += copy;
443 to_offset += copy;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000444 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700445 start = end;
Michael S. Tsirkin0a1ec072009-04-20 01:25:46 +0000446 }
447 if (!len)
448 return 0;
449
450fault:
451 return -EFAULT;
452}
453EXPORT_SYMBOL(skb_copy_datagram_const_iovec);
454
455/**
Rusty Russelldb543c12008-08-15 15:13:53 -0700456 * skb_copy_datagram_from_iovec - Copy a datagram from an iovec.
457 * @skb: buffer to copy
458 * @offset: offset in the buffer to start copying to
459 * @from: io vector to copy to
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000460 * @from_offset: offset in the io vector to start copying from
Rusty Russelldb543c12008-08-15 15:13:53 -0700461 * @len: amount of data to copy to buffer from iovec
462 *
463 * Returns 0 or -EFAULT.
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000464 * Note: the iovec is not modified during the copy.
Rusty Russelldb543c12008-08-15 15:13:53 -0700465 */
466int skb_copy_datagram_from_iovec(struct sk_buff *skb, int offset,
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000467 const struct iovec *from, int from_offset,
468 int len)
Rusty Russelldb543c12008-08-15 15:13:53 -0700469{
470 int start = skb_headlen(skb);
471 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700472 struct sk_buff *frag_iter;
Rusty Russelldb543c12008-08-15 15:13:53 -0700473
474 /* Copy header. */
475 if (copy > 0) {
476 if (copy > len)
477 copy = len;
Sridhar Samudralad2d27bf2009-06-05 09:35:40 +0000478 if (memcpy_fromiovecend(skb->data + offset, from, from_offset,
479 copy))
Rusty Russelldb543c12008-08-15 15:13:53 -0700480 goto fault;
481 if ((len -= copy) == 0)
482 return 0;
483 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000484 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700485 }
486
487 /* Copy paged appendix. Hmm... why does this look so complicated? */
488 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
489 int end;
490
491 WARN_ON(start > offset + len);
492
493 end = start + skb_shinfo(skb)->frags[i].size;
494 if ((copy = end - offset) > 0) {
495 int err;
496 u8 *vaddr;
497 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
498 struct page *page = frag->page;
499
500 if (copy > len)
501 copy = len;
502 vaddr = kmap(page);
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000503 err = memcpy_fromiovecend(vaddr + frag->page_offset +
504 offset - start,
505 from, from_offset, copy);
Rusty Russelldb543c12008-08-15 15:13:53 -0700506 kunmap(page);
507 if (err)
508 goto fault;
509
510 if (!(len -= copy))
511 return 0;
512 offset += copy;
Michael S. Tsirkin6f26c9a2009-04-20 01:26:11 +0000513 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700514 }
515 start = end;
516 }
517
David S. Miller5b1a0022009-06-09 00:18:15 -0700518 skb_walk_frags(skb, frag_iter) {
519 int end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700520
David S. Miller5b1a0022009-06-09 00:18:15 -0700521 WARN_ON(start > offset + len);
Rusty Russelldb543c12008-08-15 15:13:53 -0700522
David S. Miller5b1a0022009-06-09 00:18:15 -0700523 end = start + frag_iter->len;
524 if ((copy = end - offset) > 0) {
525 if (copy > len)
526 copy = len;
527 if (skb_copy_datagram_from_iovec(frag_iter,
528 offset - start,
529 from,
530 from_offset,
531 copy))
532 goto fault;
533 if ((len -= copy) == 0)
534 return 0;
535 offset += copy;
536 from_offset += copy;
Rusty Russelldb543c12008-08-15 15:13:53 -0700537 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700538 start = end;
Rusty Russelldb543c12008-08-15 15:13:53 -0700539 }
540 if (!len)
541 return 0;
542
543fault:
544 return -EFAULT;
545}
546EXPORT_SYMBOL(skb_copy_datagram_from_iovec);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
549 u8 __user *to, int len,
Al Viro50842052006-11-14 21:36:34 -0800550 __wsum *csump)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
David S. Miller1a028e52007-04-27 15:21:23 -0700552 int start = skb_headlen(skb);
David S. Miller1a028e52007-04-27 15:21:23 -0700553 int i, copy = start - offset;
David S. Miller5b1a0022009-06-09 00:18:15 -0700554 struct sk_buff *frag_iter;
555 int pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /* Copy header. */
558 if (copy > 0) {
559 int err = 0;
560 if (copy > len)
561 copy = len;
562 *csump = csum_and_copy_to_user(skb->data + offset, to, copy,
563 *csump, &err);
564 if (err)
565 goto fault;
566 if ((len -= copy) == 0)
567 return 0;
568 offset += copy;
569 to += copy;
570 pos = copy;
571 }
572
573 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -0700574 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700576 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -0700577
578 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -0800580 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int err = 0;
582 u8 *vaddr;
583 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
584 struct page *page = frag->page;
585
586 if (copy > len)
587 copy = len;
588 vaddr = kmap(page);
589 csum2 = csum_and_copy_to_user(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -0700590 frag->page_offset +
591 offset - start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 to, copy, 0, &err);
593 kunmap(page);
594 if (err)
595 goto fault;
596 *csump = csum_block_add(*csump, csum2, pos);
597 if (!(len -= copy))
598 return 0;
599 offset += copy;
600 to += copy;
601 pos += copy;
602 }
David S. Miller1a028e52007-04-27 15:21:23 -0700603 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
David S. Miller5b1a0022009-06-09 00:18:15 -0700606 skb_walk_frags(skb, frag_iter) {
607 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
David S. Miller5b1a0022009-06-09 00:18:15 -0700609 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
David S. Miller5b1a0022009-06-09 00:18:15 -0700611 end = start + frag_iter->len;
612 if ((copy = end - offset) > 0) {
613 __wsum csum2 = 0;
614 if (copy > len)
615 copy = len;
616 if (skb_copy_and_csum_datagram(frag_iter,
617 offset - start,
618 to, copy,
619 &csum2))
620 goto fault;
621 *csump = csum_block_add(*csump, csum2, pos);
622 if ((len -= copy) == 0)
623 return 0;
624 offset += copy;
625 to += copy;
626 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
David S. Miller5b1a0022009-06-09 00:18:15 -0700628 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630 if (!len)
631 return 0;
632
633fault:
634 return -EFAULT;
635}
636
Herbert Xu759e5d02007-03-25 20:10:56 -0700637__sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
Herbert Xufb286bb2005-11-10 13:01:24 -0800638{
Al Virod3bc23e2006-11-14 21:24:49 -0800639 __sum16 sum;
Herbert Xufb286bb2005-11-10 13:01:24 -0800640
Herbert Xu759e5d02007-03-25 20:10:56 -0700641 sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
Herbert Xufb286bb2005-11-10 13:01:24 -0800642 if (likely(!sum)) {
Patrick McHardy84fa7932006-08-29 16:44:56 -0700643 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800644 netdev_rx_csum_fault(skb->dev);
645 skb->ip_summed = CHECKSUM_UNNECESSARY;
646 }
647 return sum;
648}
Herbert Xu759e5d02007-03-25 20:10:56 -0700649EXPORT_SYMBOL(__skb_checksum_complete_head);
650
651__sum16 __skb_checksum_complete(struct sk_buff *skb)
652{
653 return __skb_checksum_complete_head(skb, skb->len);
654}
Herbert Xufb286bb2005-11-10 13:01:24 -0800655EXPORT_SYMBOL(__skb_checksum_complete);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/**
658 * skb_copy_and_csum_datagram_iovec - Copy and checkum skb to user iovec.
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700659 * @skb: skbuff
660 * @hlen: hardware length
Martin Waitz67be2dd2005-05-01 08:59:26 -0700661 * @iov: io vector
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900662 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * Caller _must_ check that skb will fit to this iovec.
664 *
665 * Returns: 0 - success.
666 * -EINVAL - checksum failure.
667 * -EFAULT - fault during copy. Beware, in this case iovec
668 * can be modified!
669 */
Herbert Xufb286bb2005-11-10 13:01:24 -0800670int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int hlen, struct iovec *iov)
672{
Al Virod3bc23e2006-11-14 21:24:49 -0800673 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 int chunk = skb->len - hlen;
675
Herbert Xuef8aef52007-09-06 14:06:35 +0100676 if (!chunk)
677 return 0;
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* Skip filled elements.
680 * Pretty silly, look at memcpy_toiovec, though 8)
681 */
682 while (!iov->iov_len)
683 iov++;
684
685 if (iov->iov_len < chunk) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800686 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 goto csum_error;
688 if (skb_copy_datagram_iovec(skb, hlen, iov, chunk))
689 goto fault;
690 } else {
691 csum = csum_partial(skb->data, hlen, skb->csum);
692 if (skb_copy_and_csum_datagram(skb, hlen, iov->iov_base,
693 chunk, &csum))
694 goto fault;
Al Virod3bc23e2006-11-14 21:24:49 -0800695 if (csum_fold(csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto csum_error;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700697 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
Herbert Xufb286bb2005-11-10 13:01:24 -0800698 netdev_rx_csum_fault(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 iov->iov_len -= chunk;
700 iov->iov_base += chunk;
701 }
702 return 0;
703csum_error:
704 return -EINVAL;
705fault:
706 return -EFAULT;
707}
708
709/**
710 * datagram_poll - generic datagram poll
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700711 * @file: file struct
712 * @sock: socket
713 * @wait: poll table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
715 * Datagram poll: Again totally generic. This also handles
716 * sequenced packet sockets providing the socket receive queue
717 * is only ever holding data ready to receive.
718 *
719 * Note: when you _don't_ use this routine for this protocol,
720 * and you use a different write policy from sock_writeable()
721 * then please supply your own write_space callback.
722 */
723unsigned int datagram_poll(struct file *file, struct socket *sock,
724 poll_table *wait)
725{
726 struct sock *sk = sock->sk;
727 unsigned int mask;
728
Eric Dumazetaa395142010-04-20 13:03:51 +0000729 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 mask = 0;
731
732 /* exceptional events? */
733 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
734 mask |= POLLERR;
Davide Libenzif348d702006-03-25 03:07:39 -0800735 if (sk->sk_shutdown & RCV_SHUTDOWN)
736 mask |= POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (sk->sk_shutdown == SHUTDOWN_MASK)
738 mask |= POLLHUP;
739
740 /* readable? */
741 if (!skb_queue_empty(&sk->sk_receive_queue) ||
742 (sk->sk_shutdown & RCV_SHUTDOWN))
743 mask |= POLLIN | POLLRDNORM;
744
745 /* Connection-based need to check for termination and startup */
746 if (connection_based(sk)) {
747 if (sk->sk_state == TCP_CLOSE)
748 mask |= POLLHUP;
749 /* connection hasn't started yet? */
750 if (sk->sk_state == TCP_SYN_SENT)
751 return mask;
752 }
753
754 /* writable? */
755 if (sock_writeable(sk))
756 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
757 else
758 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
759
760 return mask;
761}
762
763EXPORT_SYMBOL(datagram_poll);
764EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec);
765EXPORT_SYMBOL(skb_copy_datagram_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766EXPORT_SYMBOL(skb_recv_datagram);