]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/core/datagram.c
ea633342ab0d046cbc49e55b679440ef9e015c2d
[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         } while (sk_can_busy_loop(sk) &&
260                  sk_busy_loop(sk, flags & MSG_DONTWAIT));
261
262         error = -EAGAIN;
263
264 no_packet:
265         *err = error;
266         return NULL;
267 }
268 EXPORT_SYMBOL(__skb_try_recv_datagram);
269
270 struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
271                                     void (*destructor)(struct sock *sk,
272                                                        struct sk_buff *skb),
273                                     int *peeked, int *off, int *err)
274 {
275         struct sk_buff *skb, *last;
276         long timeo;
277
278         timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
279
280         do {
281                 skb = __skb_try_recv_datagram(sk, flags, destructor, peeked,
282                                               off, err, &last);
283                 if (skb)
284                         return skb;
285
286                 if (*err != -EAGAIN)
287                         break;
288         } while (timeo &&
289                 !__skb_wait_for_more_packets(sk, err, &timeo, last));
290
291         return NULL;
292 }
293 EXPORT_SYMBOL(__skb_recv_datagram);
294
295 struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned int flags,
296                                   int noblock, int *err)
297 {
298         int peeked, off = 0;
299
300         return __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
301                                    NULL, &peeked, &off, err);
302 }
303 EXPORT_SYMBOL(skb_recv_datagram);
304
305 void skb_free_datagram(struct sock *sk, struct sk_buff *skb)
306 {
307         consume_skb(skb);
308         sk_mem_reclaim_partial(sk);
309 }
310 EXPORT_SYMBOL(skb_free_datagram);
311
312 void __skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb, int len)
313 {
314         bool slow;
315
316         if (likely(atomic_read(&skb->users) == 1))
317                 smp_rmb();
318         else if (likely(!atomic_dec_and_test(&skb->users))) {
319                 sk_peek_offset_bwd(sk, len);
320                 return;
321         }
322
323         slow = lock_sock_fast(sk);
324         sk_peek_offset_bwd(sk, len);
325         skb_orphan(skb);
326         sk_mem_reclaim_partial(sk);
327         unlock_sock_fast(sk, slow);
328
329         /* skb is now orphaned, can be freed outside of locked section */
330         __kfree_skb(skb);
331 }
332 EXPORT_SYMBOL(__skb_free_datagram_locked);
333
334 int __sk_queue_drop_skb(struct sock *sk, struct sk_buff *skb,
335                         unsigned int flags,
336                         void (*destructor)(struct sock *sk,
337                                            struct sk_buff *skb))
338 {
339         int err = 0;
340
341         if (flags & MSG_PEEK) {
342                 err = -ENOENT;
343                 spin_lock_bh(&sk->sk_receive_queue.lock);
344                 if (skb == skb_peek(&sk->sk_receive_queue)) {
345                         __skb_unlink(skb, &sk->sk_receive_queue);
346                         atomic_dec(&skb->users);
347                         if (destructor)
348                                 destructor(sk, skb);
349                         err = 0;
350                 }
351                 spin_unlock_bh(&sk->sk_receive_queue.lock);
352         }
353
354         atomic_inc(&sk->sk_drops);
355         return err;
356 }
357 EXPORT_SYMBOL(__sk_queue_drop_skb);
358
359 /**
360  *      skb_kill_datagram - Free a datagram skbuff forcibly
361  *      @sk: socket
362  *      @skb: datagram skbuff
363  *      @flags: MSG_ flags
364  *
365  *      This function frees a datagram skbuff that was received by
366  *      skb_recv_datagram.  The flags argument must match the one
367  *      used for skb_recv_datagram.
368  *
369  *      If the MSG_PEEK flag is set, and the packet is still on the
370  *      receive queue of the socket, it will be taken off the queue
371  *      before it is freed.
372  *
373  *      This function currently only disables BH when acquiring the
374  *      sk_receive_queue lock.  Therefore it must not be used in a
375  *      context where that lock is acquired in an IRQ context.
376  *
377  *      It returns 0 if the packet was removed by us.
378  */
379
380 int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
381 {
382         int err = __sk_queue_drop_skb(sk, skb, flags, NULL);
383
384         kfree_skb(skb);
385         sk_mem_reclaim_partial(sk);
386         return err;
387 }
388 EXPORT_SYMBOL(skb_kill_datagram);
389
390 /**
391  *      skb_copy_datagram_iter - Copy a datagram to an iovec iterator.
392  *      @skb: buffer to copy
393  *      @offset: offset in the buffer to start copying from
394  *      @to: iovec iterator to copy to
395  *      @len: amount of data to copy from buffer to iovec
396  */
397 int skb_copy_datagram_iter(const struct sk_buff *skb, int offset,
398                            struct iov_iter *to, int len)
399 {
400         int start = skb_headlen(skb);
401         int i, copy = start - offset;
402         struct sk_buff *frag_iter;
403
404         trace_skb_copy_datagram_iovec(skb, len);
405
406         /* Copy header. */
407         if (copy > 0) {
408                 if (copy > len)
409                         copy = len;
410                 if (copy_to_iter(skb->data + offset, copy, to) != copy)
411                         goto short_copy;
412                 if ((len -= copy) == 0)
413                         return 0;
414                 offset += copy;
415         }
416
417         /* Copy paged appendix. Hmm... why does this look so complicated? */
418         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
419                 int end;
420                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
421
422                 WARN_ON(start > offset + len);
423
424                 end = start + skb_frag_size(frag);
425                 if ((copy = end - offset) > 0) {
426                         if (copy > len)
427                                 copy = len;
428                         if (copy_page_to_iter(skb_frag_page(frag),
429                                               frag->page_offset + offset -
430                                               start, copy, to) != copy)
431                                 goto short_copy;
432                         if (!(len -= copy))
433                                 return 0;
434                         offset += copy;
435                 }
436                 start = end;
437         }
438
439         skb_walk_frags(skb, frag_iter) {
440                 int end;
441
442                 WARN_ON(start > offset + len);
443
444                 end = start + frag_iter->len;
445                 if ((copy = end - offset) > 0) {
446                         if (copy > len)
447                                 copy = len;
448                         if (skb_copy_datagram_iter(frag_iter, offset - start,
449                                                    to, copy))
450                                 goto fault;
451                         if ((len -= copy) == 0)
452                                 return 0;
453                         offset += copy;
454                 }
455                 start = end;
456         }
457         if (!len)
458                 return 0;
459
460         /* This is not really a user copy fault, but rather someone
461          * gave us a bogus length on the skb.  We should probably
462          * print a warning here as it may indicate a kernel bug.
463          */
464
465 fault:
466         return -EFAULT;
467
468 short_copy:
469         if (iov_iter_count(to))
470                 goto fault;
471
472         return 0;
473 }
474 EXPORT_SYMBOL(skb_copy_datagram_iter);
475
476 /**
477  *      skb_copy_datagram_from_iter - Copy a datagram from an iov_iter.
478  *      @skb: buffer to copy
479  *      @offset: offset in the buffer to start copying to
480  *      @from: the copy source
481  *      @len: amount of data to copy to buffer from iovec
482  *
483  *      Returns 0 or -EFAULT.
484  */
485 int skb_copy_datagram_from_iter(struct sk_buff *skb, int offset,
486                                  struct iov_iter *from,
487                                  int len)
488 {
489         int start = skb_headlen(skb);
490         int i, copy = start - offset;
491         struct sk_buff *frag_iter;
492
493         /* Copy header. */
494         if (copy > 0) {
495                 if (copy > len)
496                         copy = len;
497                 if (copy_from_iter(skb->data + offset, copy, from) != copy)
498                         goto fault;
499                 if ((len -= copy) == 0)
500                         return 0;
501                 offset += copy;
502         }
503
504         /* Copy paged appendix. Hmm... why does this look so complicated? */
505         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
506                 int end;
507                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
508
509                 WARN_ON(start > offset + len);
510
511                 end = start + skb_frag_size(frag);
512                 if ((copy = end - offset) > 0) {
513                         size_t copied;
514
515                         if (copy > len)
516                                 copy = len;
517                         copied = copy_page_from_iter(skb_frag_page(frag),
518                                           frag->page_offset + offset - start,
519                                           copy, from);
520                         if (copied != copy)
521                                 goto fault;
522
523                         if (!(len -= copy))
524                                 return 0;
525                         offset += copy;
526                 }
527                 start = end;
528         }
529
530         skb_walk_frags(skb, frag_iter) {
531                 int end;
532
533                 WARN_ON(start > offset + len);
534
535                 end = start + frag_iter->len;
536                 if ((copy = end - offset) > 0) {
537                         if (copy > len)
538                                 copy = len;
539                         if (skb_copy_datagram_from_iter(frag_iter,
540                                                         offset - start,
541                                                         from, copy))
542                                 goto fault;
543                         if ((len -= copy) == 0)
544                                 return 0;
545                         offset += copy;
546                 }
547                 start = end;
548         }
549         if (!len)
550                 return 0;
551
552 fault:
553         return -EFAULT;
554 }
555 EXPORT_SYMBOL(skb_copy_datagram_from_iter);
556
557 /**
558  *      zerocopy_sg_from_iter - Build a zerocopy datagram from an iov_iter
559  *      @skb: buffer to copy
560  *      @from: the source to copy from
561  *
562  *      The function will first copy up to headlen, and then pin the userspace
563  *      pages and build frags through them.
564  *
565  *      Returns 0, -EFAULT or -EMSGSIZE.
566  */
567 int zerocopy_sg_from_iter(struct sk_buff *skb, struct iov_iter *from)
568 {
569         int len = iov_iter_count(from);
570         int copy = min_t(int, skb_headlen(skb), len);
571         int frag = 0;
572
573         /* copy up to skb headlen */
574         if (skb_copy_datagram_from_iter(skb, 0, from, copy))
575                 return -EFAULT;
576
577         while (iov_iter_count(from)) {
578                 struct page *pages[MAX_SKB_FRAGS];
579                 size_t start;
580                 ssize_t copied;
581                 unsigned long truesize;
582                 int n = 0;
583
584                 if (frag == MAX_SKB_FRAGS)
585                         return -EMSGSIZE;
586
587                 copied = iov_iter_get_pages(from, pages, ~0U,
588                                             MAX_SKB_FRAGS - frag, &start);
589                 if (copied < 0)
590                         return -EFAULT;
591
592                 iov_iter_advance(from, copied);
593
594                 truesize = PAGE_ALIGN(copied + start);
595                 skb->data_len += copied;
596                 skb->len += copied;
597                 skb->truesize += truesize;
598                 atomic_add(truesize, &skb->sk->sk_wmem_alloc);
599                 while (copied) {
600                         int size = min_t(int, copied, PAGE_SIZE - start);
601                         skb_fill_page_desc(skb, frag++, pages[n], start, size);
602                         start = 0;
603                         copied -= size;
604                         n++;
605                 }
606         }
607         return 0;
608 }
609 EXPORT_SYMBOL(zerocopy_sg_from_iter);
610
611 static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
612                                       struct iov_iter *to, int len,
613                                       __wsum *csump)
614 {
615         int start = skb_headlen(skb);
616         int i, copy = start - offset;
617         struct sk_buff *frag_iter;
618         int pos = 0;
619         int n;
620
621         /* Copy header. */
622         if (copy > 0) {
623                 if (copy > len)
624                         copy = len;
625                 n = csum_and_copy_to_iter(skb->data + offset, copy, csump, to);
626                 if (n != copy)
627                         goto fault;
628                 if ((len -= copy) == 0)
629                         return 0;
630                 offset += copy;
631                 pos = copy;
632         }
633
634         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
635                 int end;
636                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
637
638                 WARN_ON(start > offset + len);
639
640                 end = start + skb_frag_size(frag);
641                 if ((copy = end - offset) > 0) {
642                         __wsum csum2 = 0;
643                         struct page *page = skb_frag_page(frag);
644                         u8  *vaddr = kmap(page);
645
646                         if (copy > len)
647                                 copy = len;
648                         n = csum_and_copy_to_iter(vaddr + frag->page_offset +
649                                                   offset - start, copy,
650                                                   &csum2, to);
651                         kunmap(page);
652                         if (n != copy)
653                                 goto fault;
654                         *csump = csum_block_add(*csump, csum2, pos);
655                         if (!(len -= copy))
656                                 return 0;
657                         offset += copy;
658                         pos += copy;
659                 }
660                 start = end;
661         }
662
663         skb_walk_frags(skb, frag_iter) {
664                 int end;
665
666                 WARN_ON(start > offset + len);
667
668                 end = start + frag_iter->len;
669                 if ((copy = end - offset) > 0) {
670                         __wsum csum2 = 0;
671                         if (copy > len)
672                                 copy = len;
673                         if (skb_copy_and_csum_datagram(frag_iter,
674                                                        offset - start,
675                                                        to, copy,
676                                                        &csum2))
677                                 goto fault;
678                         *csump = csum_block_add(*csump, csum2, pos);
679                         if ((len -= copy) == 0)
680                                 return 0;
681                         offset += copy;
682                         pos += copy;
683                 }
684                 start = end;
685         }
686         if (!len)
687                 return 0;
688
689 fault:
690         return -EFAULT;
691 }
692
693 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
694 {
695         __sum16 sum;
696
697         sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
698         if (likely(!sum)) {
699                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
700                     !skb->csum_complete_sw)
701                         netdev_rx_csum_fault(skb->dev);
702         }
703         if (!skb_shared(skb))
704                 skb->csum_valid = !sum;
705         return sum;
706 }
707 EXPORT_SYMBOL(__skb_checksum_complete_head);
708
709 __sum16 __skb_checksum_complete(struct sk_buff *skb)
710 {
711         __wsum csum;
712         __sum16 sum;
713
714         csum = skb_checksum(skb, 0, skb->len, 0);
715
716         /* skb->csum holds pseudo checksum */
717         sum = csum_fold(csum_add(skb->csum, csum));
718         if (likely(!sum)) {
719                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
720                     !skb->csum_complete_sw)
721                         netdev_rx_csum_fault(skb->dev);
722         }
723
724         if (!skb_shared(skb)) {
725                 /* Save full packet checksum */
726                 skb->csum = csum;
727                 skb->ip_summed = CHECKSUM_COMPLETE;
728                 skb->csum_complete_sw = 1;
729                 skb->csum_valid = !sum;
730         }
731
732         return sum;
733 }
734 EXPORT_SYMBOL(__skb_checksum_complete);
735
736 /**
737  *      skb_copy_and_csum_datagram_msg - Copy and checksum skb to user iovec.
738  *      @skb: skbuff
739  *      @hlen: hardware length
740  *      @msg: destination
741  *
742  *      Caller _must_ check that skb will fit to this iovec.
743  *
744  *      Returns: 0       - success.
745  *               -EINVAL - checksum failure.
746  *               -EFAULT - fault during copy.
747  */
748 int skb_copy_and_csum_datagram_msg(struct sk_buff *skb,
749                                    int hlen, struct msghdr *msg)
750 {
751         __wsum csum;
752         int chunk = skb->len - hlen;
753
754         if (!chunk)
755                 return 0;
756
757         if (msg_data_left(msg) < chunk) {
758                 if (__skb_checksum_complete(skb))
759                         goto csum_error;
760                 if (skb_copy_datagram_msg(skb, hlen, msg, chunk))
761                         goto fault;
762         } else {
763                 csum = csum_partial(skb->data, hlen, skb->csum);
764                 if (skb_copy_and_csum_datagram(skb, hlen, &msg->msg_iter,
765                                                chunk, &csum))
766                         goto fault;
767                 if (csum_fold(csum))
768                         goto csum_error;
769                 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE))
770                         netdev_rx_csum_fault(skb->dev);
771         }
772         return 0;
773 csum_error:
774         return -EINVAL;
775 fault:
776         return -EFAULT;
777 }
778 EXPORT_SYMBOL(skb_copy_and_csum_datagram_msg);
779
780 /**
781  *      datagram_poll - generic datagram poll
782  *      @file: file struct
783  *      @sock: socket
784  *      @wait: poll table
785  *
786  *      Datagram poll: Again totally generic. This also handles
787  *      sequenced packet sockets providing the socket receive queue
788  *      is only ever holding data ready to receive.
789  *
790  *      Note: when you _don't_ use this routine for this protocol,
791  *      and you use a different write policy from sock_writeable()
792  *      then please supply your own write_space callback.
793  */
794 unsigned int datagram_poll(struct file *file, struct socket *sock,
795                            poll_table *wait)
796 {
797         struct sock *sk = sock->sk;
798         unsigned int mask;
799
800         sock_poll_wait(file, sk_sleep(sk), wait);
801         mask = 0;
802
803         /* exceptional events? */
804         if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
805                 mask |= POLLERR |
806                         (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
807
808         if (sk->sk_shutdown & RCV_SHUTDOWN)
809                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
810         if (sk->sk_shutdown == SHUTDOWN_MASK)
811                 mask |= POLLHUP;
812
813         /* readable? */
814         if (!skb_queue_empty(&sk->sk_receive_queue))
815                 mask |= POLLIN | POLLRDNORM;
816
817         /* Connection-based need to check for termination and startup */
818         if (connection_based(sk)) {
819                 if (sk->sk_state == TCP_CLOSE)
820                         mask |= POLLHUP;
821                 /* connection hasn't started yet? */
822                 if (sk->sk_state == TCP_SYN_SENT)
823                         return mask;
824         }
825
826         /* writable? */
827         if (sock_writeable(sk))
828                 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
829         else
830                 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
831
832         return mask;
833 }
834 EXPORT_SYMBOL(datagram_poll);