]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/core/datagram.c
net: Change return type of sk_busy_loop from bool to void
[karo-tx-linux.git] / net / core / datagram.c
1 /*
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  *
12  *      Authors:        Alan Cox <alan@lxorguk.ukuu.org.uk>. (datagram_poll() from old
13  *                                                   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 <linux/uaccess.h>
40 #include <linux/mm.h>
41 #include <linux/interrupt.h>
42 #include <linux/errno.h>
43 #include <linux/sched.h>
44 #include <linux/inet.h>
45 #include <linux/netdevice.h>
46 #include <linux/rtnetlink.h>
47 #include <linux/poll.h>
48 #include <linux/highmem.h>
49 #include <linux/spinlock.h>
50 #include <linux/slab.h>
51 #include <linux/pagemap.h>
52 #include <linux/uio.h>
53
54 #include <net/protocol.h>
55 #include <linux/skbuff.h>
56
57 #include <net/checksum.h>
58 #include <net/sock.h>
59 #include <net/tcp_states.h>
60 #include <trace/events/skb.h>
61 #include <net/busy_poll.h>
62
63 /*
64  *      Is a socket 'connection oriented' ?
65  */
66 static inline int connection_based(struct sock *sk)
67 {
68         return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM;
69 }
70
71 static int receiver_wake_function(wait_queue_t *wait, unsigned int mode, int sync,
72                                   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 }
83 /*
84  * Wait for the last received packet to be different from skb
85  */
86 int __skb_wait_for_more_packets(struct sock *sk, int *err, long *timeo_p,
87                                 const struct sk_buff *skb)
88 {
89         int error;
90         DEFINE_WAIT_FUNC(wait, receiver_wake_function);
91
92         prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
93
94         /* Socket errors? */
95         error = sock_error(sk);
96         if (error)
97                 goto out_err;
98
99         if (sk->sk_receive_queue.prev != skb)
100                 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);
120 out:
121         finish_wait(sk_sleep(sk), &wait);
122         return error;
123 interrupted:
124         error = sock_intr_errno(*timeo_p);
125 out_err:
126         *err = error;
127         goto out;
128 out_noerr:
129         *err = 0;
130         error = 1;
131         goto out;
132 }
133 EXPORT_SYMBOL(__skb_wait_for_more_packets);
134
135 static struct sk_buff *skb_set_peeked(struct sk_buff *skb)
136 {
137         struct sk_buff *nskb;
138
139         if (skb->peeked)
140                 return skb;
141
142         /* We have to unshare an skb before modifying it. */
143         if (!skb_shared(skb))
144                 goto done;
145
146         nskb = skb_clone(skb, GFP_ATOMIC);
147         if (!nskb)
148                 return ERR_PTR(-ENOMEM);
149
150         skb->prev->next = nskb;
151         skb->next->prev = nskb;
152         nskb->prev = skb->prev;
153         nskb->next = skb->next;
154
155         consume_skb(skb);
156         skb = nskb;
157
158 done:
159         skb->peeked = 1;
160
161         return skb;
162 }
163
164 /**
165  *      __skb_try_recv_datagram - Receive a datagram skbuff
166  *      @sk: socket
167  *      @flags: MSG_ flags
168  *      @destructor: invoked under the receive lock on successful dequeue
169  *      @peeked: returns non-zero if this packet has been seen before
170  *      @off: an offset in bytes to peek skb from. Returns an offset
171  *            within an skb where data actually starts
172  *      @err: error code returned
173  *      @last: set to last peeked message to inform the wait function
174  *             what to look for when peeking
175  *
176  *      Get a datagram skbuff, understands the peeking, nonblocking wakeups
177  *      and possible races. This replaces identical code in packet, raw and
178  *      udp, as well as the IPX AX.25 and Appletalk. It also finally fixes
179  *      the long standing peek and read race for datagram sockets. If you
180  *      alter this routine remember it must be re-entrant.
181  *
182  *      This function will lock the socket if a skb is returned, so
183  *      the caller needs to unlock the socket in that case (usually by
184  *      calling skb_free_datagram). Returns NULL with *err set to
185  *      -EAGAIN if no data was available or to some other value if an
186  *      error was detected.
187  *
188  *      * It does not lock socket since today. This function is
189  *      * free of race conditions. This measure should/can improve
190  *      * significantly datagram socket latencies at high loads,
191  *      * when data copying to user space takes lots of time.
192  *      * (BTW I've just killed the last cli() in IP/IPv6/core/netlink/packet
193  *      *  8) Great win.)
194  *      *                                           --ANK (980729)
195  *
196  *      The order of the tests when we find no data waiting are specified
197  *      quite explicitly by POSIX 1003.1g, don't change them without having
198  *      the standard around please.
199  */
200 struct sk_buff *__skb_try_recv_datagram(struct sock *sk, unsigned int flags,
201                                         void (*destructor)(struct sock *sk,
202                                                            struct sk_buff *skb),
203                                         int *peeked, int *off, int *err,
204                                         struct sk_buff **last)
205 {
206         struct sk_buff_head *queue = &sk->sk_receive_queue;
207         struct sk_buff *skb;
208         unsigned long cpu_flags;
209         /*
210          * Caller is allowed not to check sk->sk_err before skb_recv_datagram()
211          */
212         int error = sock_error(sk);
213
214         if (error)
215                 goto no_packet;
216
217         *peeked = 0;
218         do {
219                 /* Again only user level code calls this function, so nothing
220                  * interrupt level will suddenly eat the receive_queue.
221                  *
222                  * Look at current nfs client by the way...
223                  * However, this function was correct in any case. 8)
224                  */
225                 int _off = *off;
226
227                 *last = (struct sk_buff *)queue;
228                 spin_lock_irqsave(&queue->lock, cpu_flags);
229                 skb_queue_walk(queue, skb) {
230                         *last = skb;
231                         if (flags & MSG_PEEK) {
232                                 if (_off >= skb->len && (skb->len || _off ||
233                                                          skb->peeked)) {
234                                         _off -= skb->len;
235                                         continue;
236                                 }
237                                 if (!skb->len) {
238                                         skb = skb_set_peeked(skb);
239                                         if (IS_ERR(skb)) {
240                                                 error = PTR_ERR(skb);
241                                                 spin_unlock_irqrestore(&queue->lock,
242                                                                        cpu_flags);
243                                                 goto no_packet;
244                                         }
245                                 }
246                                 *peeked = 1;
247                                 atomic_inc(&skb->users);
248                         } else {
249                                 __skb_unlink(skb, queue);
250                                 if (destructor)
251                                         destructor(sk, skb);
252                         }
253                         spin_unlock_irqrestore(&queue->lock, cpu_flags);
254                         *off = _off;
255                         return skb;
256                 }
257
258                 spin_unlock_irqrestore(&queue->lock, cpu_flags);
259
260                 if (!sk_can_busy_loop(sk))
261                         break;
262
263                 sk_busy_loop(sk, flags & MSG_DONTWAIT);
264         } while (!skb_queue_empty(&sk->sk_receive_queue));
265
266         error = -EAGAIN;
267
268 no_packet:
269         *err = error;
270         return NULL;
271 }
272 EXPORT_SYMBOL(__skb_try_recv_datagram);
273
274 struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
275                                     void (*destructor)(struct sock *sk,
276                                                        struct sk_buff *skb),
277                                     int *peeked, int *off, int *err)
278 {
279         struct sk_buff *skb, *last;
280         long timeo;
281
282         timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
283
284         do {
285                 skb = __skb_try_recv_datagram(sk, flags, destructor, peeked,
286                                               off, err, &last);
287                 if (skb)
288                         return skb;
289
290                 if (*err != -EAGAIN)
291                         break;
292         } while (timeo &&
293                 !__skb_wait_for_more_packets(sk, err, &timeo, last));
294
295         return NULL;
296 }
297 EXPORT_SYMBOL(__skb_recv_datagram);
298
299 struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned int flags,
300                                   int noblock, int *err)
301 {
302         int peeked, off = 0;
303
304         return __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
305                                    NULL, &peeked, &off, err);
306 }
307 EXPORT_SYMBOL(skb_recv_datagram);
308
309 void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
310 {
311         consume_skb(skb);
312         sk_mem_reclaim_partial(sk);
313 }
314 EXPORT_SYMBOL(skb_free_datagram);
315
316 void __skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb, int len)
317 {
318         bool slow;
319
320         if (likely(atomic_read(&skb->users) == 1))
321                 smp_rmb();
322         else if (likely(!atomic_dec_and_test(&skb->users))) {
323                 sk_peek_offset_bwd(sk, len);
324                 return;
325         }
326
327         slow = lock_sock_fast(sk);
328         sk_peek_offset_bwd(sk, len);
329         skb_orphan(skb);
330         sk_mem_reclaim_partial(sk);
331         unlock_sock_fast(sk, slow);
332
333         /* skb is now orphaned, can be freed outside of locked section */
334         __kfree_skb(skb);
335 }
336 EXPORT_SYMBOL(__skb_free_datagram_locked);
337
338 int __sk_queue_drop_skb(struct sock *sk, struct sk_buff *skb,
339                         unsigned int flags,
340                         void (*destructor)(struct sock *sk,
341                                            struct sk_buff *skb))
342 {
343         int err = 0;
344
345         if (flags & MSG_PEEK) {
346                 err = -ENOENT;
347                 spin_lock_bh(&sk->sk_receive_queue.lock);
348                 if (skb == skb_peek(&sk->sk_receive_queue)) {
349                         __skb_unlink(skb, &sk->sk_receive_queue);
350                         atomic_dec(&skb->users);
351                         if (destructor)
352                                 destructor(sk, skb);
353                         err = 0;
354                 }
355                 spin_unlock_bh(&sk->sk_receive_queue.lock);
356         }
357
358         atomic_inc(&sk->sk_drops);
359         return err;
360 }
361 EXPORT_SYMBOL(__sk_queue_drop_skb);
362
363 /**
364  *      skb_kill_datagram - Free a datagram skbuff forcibly
365  *      @sk: socket
366  *      @skb: datagram skbuff
367  *      @flags: MSG_ flags
368  *
369  *      This function frees a datagram skbuff that was received by
370  *      skb_recv_datagram.  The flags argument must match the one
371  *      used for skb_recv_datagram.
372  *
373  *      If the MSG_PEEK flag is set, and the packet is still on the
374  *      receive queue of the socket, it will be taken off the queue
375  *      before it is freed.
376  *
377  *      This function currently only disables BH when acquiring the
378  *      sk_receive_queue lock.  Therefore it must not be used in a
379  *      context where that lock is acquired in an IRQ context.
380  *
381  *      It returns 0 if the packet was removed by us.
382  */
383
384 int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
385 {
386         int err = __sk_queue_drop_skb(sk, skb, flags, NULL);
387
388         kfree_skb(skb);
389         sk_mem_reclaim_partial(sk);
390         return err;
391 }
392 EXPORT_SYMBOL(skb_kill_datagram);
393
394 /**
395  *      skb_copy_datagram_iter - Copy a datagram to an iovec iterator.
396  *      @skb: buffer to copy
397  *      @offset: offset in the buffer to start copying from
398  *      @to: iovec iterator to copy to
399  *      @len: amount of data to copy from buffer to iovec
400  */
401 int skb_copy_datagram_iter(const struct sk_buff *skb, int offset,
402                            struct iov_iter *to, int len)
403 {
404         int start = skb_headlen(skb);
405         int i, copy = start - offset;
406         struct sk_buff *frag_iter;
407
408         trace_skb_copy_datagram_iovec(skb, len);
409
410         /* Copy header. */
411         if (copy > 0) {
412                 if (copy > len)
413                         copy = len;
414                 if (copy_to_iter(skb->data + offset, copy, to) != copy)
415                         goto short_copy;
416                 if ((len -= copy) == 0)
417                         return 0;
418                 offset += copy;
419         }
420
421         /* Copy paged appendix. Hmm... why does this look so complicated? */
422         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
423                 int end;
424                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
425
426                 WARN_ON(start > offset + len);
427
428                 end = start + skb_frag_size(frag);
429                 if ((copy = end - offset) > 0) {
430                         if (copy > len)
431                                 copy = len;
432                         if (copy_page_to_iter(skb_frag_page(frag),
433                                               frag->page_offset + offset -
434                                               start, copy, to) != copy)
435                                 goto short_copy;
436                         if (!(len -= copy))
437                                 return 0;
438                         offset += copy;
439                 }
440                 start = end;
441         }
442
443         skb_walk_frags(skb, frag_iter) {
444                 int end;
445
446                 WARN_ON(start > offset + len);
447
448                 end = start + frag_iter->len;
449                 if ((copy = end - offset) > 0) {
450                         if (copy > len)
451                                 copy = len;
452                         if (skb_copy_datagram_iter(frag_iter, offset - start,
453                                                    to, copy))
454                                 goto fault;
455                         if ((len -= copy) == 0)
456                                 return 0;
457                         offset += copy;
458                 }
459                 start = end;
460         }
461         if (!len)
462                 return 0;
463
464         /* This is not really a user copy fault, but rather someone
465          * gave us a bogus length on the skb.  We should probably
466          * print a warning here as it may indicate a kernel bug.
467          */
468
469 fault:
470         return -EFAULT;
471
472 short_copy:
473         if (iov_iter_count(to))
474                 goto fault;
475
476         return 0;
477 }
478 EXPORT_SYMBOL(skb_copy_datagram_iter);
479
480 /**
481  *      skb_copy_datagram_from_iter - Copy a datagram from an iov_iter.
482  *      @skb: buffer to copy
483  *      @offset: offset in the buffer to start copying to
484  *      @from: the copy source
485  *      @len: amount of data to copy to buffer from iovec
486  *
487  *      Returns 0 or -EFAULT.
488  */
489 int skb_copy_datagram_from_iter(struct sk_buff *skb, int offset,
490                                  struct iov_iter *from,
491                                  int len)
492 {
493         int start = skb_headlen(skb);
494         int i, copy = start - offset;
495         struct sk_buff *frag_iter;
496
497         /* Copy header. */
498         if (copy > 0) {
499                 if (copy > len)
500                         copy = len;
501                 if (copy_from_iter(skb->data + offset, copy, from) != copy)
502                         goto fault;
503                 if ((len -= copy) == 0)
504                         return 0;
505                 offset += copy;
506         }
507
508         /* Copy paged appendix. Hmm... why does this look so complicated? */
509         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
510                 int end;
511                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
512
513                 WARN_ON(start > offset + len);
514
515                 end = start + skb_frag_size(frag);
516                 if ((copy = end - offset) > 0) {
517                         size_t copied;
518
519                         if (copy > len)
520                                 copy = len;
521                         copied = copy_page_from_iter(skb_frag_page(frag),
522                                           frag->page_offset + offset - start,
523                                           copy, from);
524                         if (copied != copy)
525                                 goto fault;
526
527                         if (!(len -= copy))
528                                 return 0;
529                         offset += copy;
530                 }
531                 start = end;
532         }
533
534         skb_walk_frags(skb, frag_iter) {
535                 int end;
536
537                 WARN_ON(start > offset + len);
538
539                 end = start + frag_iter->len;
540                 if ((copy = end - offset) > 0) {
541                         if (copy > len)
542                                 copy = len;
543                         if (skb_copy_datagram_from_iter(frag_iter,
544                                                         offset - start,
545                                                         from, copy))
546                                 goto fault;
547                         if ((len -= copy) == 0)
548                                 return 0;
549                         offset += copy;
550                 }
551                 start = end;
552         }
553         if (!len)
554                 return 0;
555
556 fault:
557         return -EFAULT;
558 }
559 EXPORT_SYMBOL(skb_copy_datagram_from_iter);
560
561 /**
562  *      zerocopy_sg_from_iter - Build a zerocopy datagram from an iov_iter
563  *      @skb: buffer to copy
564  *      @from: the source to copy from
565  *
566  *      The function will first copy up to headlen, and then pin the userspace
567  *      pages and build frags through them.
568  *
569  *      Returns 0, -EFAULT or -EMSGSIZE.
570  */
571 int zerocopy_sg_from_iter(struct sk_buff *skb, struct iov_iter *from)
572 {
573         int len = iov_iter_count(from);
574         int copy = min_t(int, skb_headlen(skb), len);
575         int frag = 0;
576
577         /* copy up to skb headlen */
578         if (skb_copy_datagram_from_iter(skb, 0, from, copy))
579                 return -EFAULT;
580
581         while (iov_iter_count(from)) {
582                 struct page *pages[MAX_SKB_FRAGS];
583                 size_t start;
584                 ssize_t copied;
585                 unsigned long truesize;
586                 int n = 0;
587
588                 if (frag == MAX_SKB_FRAGS)
589                         return -EMSGSIZE;
590
591                 copied = iov_iter_get_pages(from, pages, ~0U,
592                                             MAX_SKB_FRAGS - frag, &start);
593                 if (copied < 0)
594                         return -EFAULT;
595
596                 iov_iter_advance(from, copied);
597
598                 truesize = PAGE_ALIGN(copied + start);
599                 skb->data_len += copied;
600                 skb->len += copied;
601                 skb->truesize += truesize;
602                 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
603                 while (copied) {
604                         int size = min_t(int, copied, PAGE_SIZE - start);
605                         skb_fill_page_desc(skb, frag++, pages[n], start, size);
606                         start = 0;
607                         copied -= size;
608                         n++;
609                 }
610         }
611         return 0;
612 }
613 EXPORT_SYMBOL(zerocopy_sg_from_iter);
614
615 static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
616                                       struct iov_iter *to, int len,
617                                       __wsum *csump)
618 {
619         int start = skb_headlen(skb);
620         int i, copy = start - offset;
621         struct sk_buff *frag_iter;
622         int pos = 0;
623         int n;
624
625         /* Copy header. */
626         if (copy > 0) {
627                 if (copy > len)
628                         copy = len;
629                 n = csum_and_copy_to_iter(skb->data + offset, copy, csump, to);
630                 if (n != copy)
631                         goto fault;
632                 if ((len -= copy) == 0)
633                         return 0;
634                 offset += copy;
635                 pos = copy;
636         }
637
638         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
639                 int end;
640                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
641
642                 WARN_ON(start > offset + len);
643
644                 end = start + skb_frag_size(frag);
645                 if ((copy = end - offset) > 0) {
646                         __wsum csum2 = 0;
647                         struct page *page = skb_frag_page(frag);
648                         u8  *vaddr = kmap(page);
649
650                         if (copy > len)
651                                 copy = len;
652                         n = csum_and_copy_to_iter(vaddr + frag->page_offset +
653                                                   offset - start, copy,
654                                                   &csum2, to);
655                         kunmap(page);
656                         if (n != copy)
657                                 goto fault;
658                         *csump = csum_block_add(*csump, csum2, pos);
659                         if (!(len -= copy))
660                                 return 0;
661                         offset += copy;
662                         pos += copy;
663                 }
664                 start = end;
665         }
666
667         skb_walk_frags(skb, frag_iter) {
668                 int end;
669
670                 WARN_ON(start > offset + len);
671
672                 end = start + frag_iter->len;
673                 if ((copy = end - offset) > 0) {
674                         __wsum csum2 = 0;
675                         if (copy > len)
676                                 copy = len;
677                         if (skb_copy_and_csum_datagram(frag_iter,
678                                                        offset - start,
679                                                        to, copy,
680                                                        &csum2))
681                                 goto fault;
682                         *csump = csum_block_add(*csump, csum2, pos);
683                         if ((len -= copy) == 0)
684                                 return 0;
685                         offset += copy;
686                         pos += copy;
687                 }
688                 start = end;
689         }
690         if (!len)
691                 return 0;
692
693 fault:
694         return -EFAULT;
695 }
696
697 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
698 {
699         __sum16 sum;
700
701         sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
702         if (likely(!sum)) {
703                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
704                     !skb->csum_complete_sw)
705                         netdev_rx_csum_fault(skb->dev);
706         }
707         if (!skb_shared(skb))
708                 skb->csum_valid = !sum;
709         return sum;
710 }
711 EXPORT_SYMBOL(__skb_checksum_complete_head);
712
713 __sum16 __skb_checksum_complete(struct sk_buff *skb)
714 {
715         __wsum csum;
716         __sum16 sum;
717
718         csum = skb_checksum(skb, 0, skb->len, 0);
719
720         /* skb->csum holds pseudo checksum */
721         sum = csum_fold(csum_add(skb->csum, csum));
722         if (likely(!sum)) {
723                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
724                     !skb->csum_complete_sw)
725                         netdev_rx_csum_fault(skb->dev);
726         }
727
728         if (!skb_shared(skb)) {
729                 /* Save full packet checksum */
730                 skb->csum = csum;
731                 skb->ip_summed = CHECKSUM_COMPLETE;
732                 skb->csum_complete_sw = 1;
733                 skb->csum_valid = !sum;
734         }
735
736         return sum;
737 }
738 EXPORT_SYMBOL(__skb_checksum_complete);
739
740 /**
741  *      skb_copy_and_csum_datagram_msg - Copy and checksum skb to user iovec.
742  *      @skb: skbuff
743  *      @hlen: hardware length
744  *      @msg: destination
745  *
746  *      Caller _must_ check that skb will fit to this iovec.
747  *
748  *      Returns: 0       - success.
749  *               -EINVAL - checksum failure.
750  *               -EFAULT - fault during copy.
751  */
752 int skb_copy_and_csum_datagram_msg(struct sk_buff *skb,
753                                    int hlen, struct msghdr *msg)
754 {
755         __wsum csum;
756         int chunk = skb->len - hlen;
757
758         if (!chunk)
759                 return 0;
760
761         if (msg_data_left(msg) < chunk) {
762                 if (__skb_checksum_complete(skb))
763                         goto csum_error;
764                 if (skb_copy_datagram_msg(skb, hlen, msg, chunk))
765                         goto fault;
766         } else {
767                 csum = csum_partial(skb->data, hlen, skb->csum);
768                 if (skb_copy_and_csum_datagram(skb, hlen, &msg->msg_iter,
769                                                chunk, &csum))
770                         goto fault;
771                 if (csum_fold(csum))
772                         goto csum_error;
773                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
774                         netdev_rx_csum_fault(skb->dev);
775         }
776         return 0;
777 csum_error:
778         return -EINVAL;
779 fault:
780         return -EFAULT;
781 }
782 EXPORT_SYMBOL(skb_copy_and_csum_datagram_msg);
783
784 /**
785  *      datagram_poll - generic datagram poll
786  *      @file: file struct
787  *      @sock: socket
788  *      @wait: poll table
789  *
790  *      Datagram poll: Again totally generic. This also handles
791  *      sequenced packet sockets providing the socket receive queue
792  *      is only ever holding data ready to receive.
793  *
794  *      Note: when you _don't_ use this routine for this protocol,
795  *      and you use a different write policy from sock_writeable()
796  *      then please supply your own write_space callback.
797  */
798 unsigned int datagram_poll(struct file *file, struct socket *sock,
799                            poll_table *wait)
800 {
801         struct sock *sk = sock->sk;
802         unsigned int mask;
803
804         sock_poll_wait(file, sk_sleep(sk), wait);
805         mask = 0;
806
807         /* exceptional events? */
808         if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
809                 mask |= POLLERR |
810                         (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
811
812         if (sk->sk_shutdown & RCV_SHUTDOWN)
813                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
814         if (sk->sk_shutdown == SHUTDOWN_MASK)
815                 mask |= POLLHUP;
816
817         /* readable? */
818         if (!skb_queue_empty(&sk->sk_receive_queue))
819                 mask |= POLLIN | POLLRDNORM;
820
821         /* Connection-based need to check for termination and startup */
822         if (connection_based(sk)) {
823                 if (sk->sk_state == TCP_CLOSE)
824                         mask |= POLLHUP;
825                 /* connection hasn't started yet? */
826                 if (sk->sk_state == TCP_SYN_SENT)
827                         return mask;
828         }
829
830         /* writable? */
831         if (sock_writeable(sk))
832                 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
833         else
834                 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
835
836         return mask;
837 }
838 EXPORT_SYMBOL(datagram_poll);