]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/packet/af_packet.c
7e39087d519b85105077ec265cbcf4c2ef906938
[karo-tx-linux.git] / net / packet / af_packet.c
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              PACKET - implements raw packet sockets.
7  *
8  * Authors:     Ross Biro
9  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10  *              Alan Cox, <gw4pts@gw4pts.ampr.org>
11  *
12  * Fixes:
13  *              Alan Cox        :       verify_area() now used correctly
14  *              Alan Cox        :       new skbuff lists, look ma no backlogs!
15  *              Alan Cox        :       tidied skbuff lists.
16  *              Alan Cox        :       Now uses generic datagram routines I
17  *                                      added. Also fixed the peek/read crash
18  *                                      from all old Linux datagram code.
19  *              Alan Cox        :       Uses the improved datagram code.
20  *              Alan Cox        :       Added NULL's for socket options.
21  *              Alan Cox        :       Re-commented the code.
22  *              Alan Cox        :       Use new kernel side addressing
23  *              Rob Janssen     :       Correct MTU usage.
24  *              Dave Platt      :       Counter leaks caused by incorrect
25  *                                      interrupt locking and some slightly
26  *                                      dubious gcc output. Can you read
27  *                                      compiler: it said _VOLATILE_
28  *      Richard Kooijman        :       Timestamp fixes.
29  *              Alan Cox        :       New buffers. Use sk->mac.raw.
30  *              Alan Cox        :       sendmsg/recvmsg support.
31  *              Alan Cox        :       Protocol setting support
32  *      Alexey Kuznetsov        :       Untied from IPv4 stack.
33  *      Cyrus Durgin            :       Fixed kerneld for kmod.
34  *      Michal Ostrowski        :       Module initialization cleanup.
35  *         Ulises Alonso        :       Frame number limit removal and
36  *                                      packet_set_ring memory leak.
37  *              Eric Biederman  :       Allow for > 8 byte hardware addresses.
38  *                                      The convention is that longer addresses
39  *                                      will simply extend the hardware address
40  *                                      byte arrays at the end of sockaddr_ll
41  *                                      and packet_mreq.
42  *              Johann Baudy    :       Added TX RING.
43  *              Chetan Loke     :       Implemented TPACKET_V3 block abstraction
44  *                                      layer.
45  *                                      Copyright (C) 2011, <lokec@ccs.neu.edu>
46  *
47  *
48  *              This program is free software; you can redistribute it and/or
49  *              modify it under the terms of the GNU General Public License
50  *              as published by the Free Software Foundation; either version
51  *              2 of the License, or (at your option) any later version.
52  *
53  */
54
55 #include <linux/types.h>
56 #include <linux/mm.h>
57 #include <linux/capability.h>
58 #include <linux/fcntl.h>
59 #include <linux/socket.h>
60 #include <linux/in.h>
61 #include <linux/inet.h>
62 #include <linux/netdevice.h>
63 #include <linux/if_packet.h>
64 #include <linux/wireless.h>
65 #include <linux/kernel.h>
66 #include <linux/kmod.h>
67 #include <linux/slab.h>
68 #include <linux/vmalloc.h>
69 #include <net/net_namespace.h>
70 #include <net/ip.h>
71 #include <net/protocol.h>
72 #include <linux/skbuff.h>
73 #include <net/sock.h>
74 #include <linux/errno.h>
75 #include <linux/timer.h>
76 #include <linux/uaccess.h>
77 #include <asm/ioctls.h>
78 #include <asm/page.h>
79 #include <asm/cacheflush.h>
80 #include <asm/io.h>
81 #include <linux/proc_fs.h>
82 #include <linux/seq_file.h>
83 #include <linux/poll.h>
84 #include <linux/module.h>
85 #include <linux/init.h>
86 #include <linux/mutex.h>
87 #include <linux/if_vlan.h>
88 #include <linux/virtio_net.h>
89 #include <linux/errqueue.h>
90 #include <linux/net_tstamp.h>
91 #include <linux/percpu.h>
92 #ifdef CONFIG_INET
93 #include <net/inet_common.h>
94 #endif
95 #include <linux/bpf.h>
96 #include <net/compat.h>
97
98 #include "internal.h"
99
100 /*
101    Assumptions:
102    - if device has no dev->hard_header routine, it adds and removes ll header
103      inside itself. In this case ll header is invisible outside of device,
104      but higher levels still should reserve dev->hard_header_len.
105      Some devices are enough clever to reallocate skb, when header
106      will not fit to reserved space (tunnel), another ones are silly
107      (PPP).
108    - packet socket receives packets with pulled ll header,
109      so that SOCK_RAW should push it back.
110
111 On receive:
112 -----------
113
114 Incoming, dev->hard_header!=NULL
115    mac_header -> ll header
116    data       -> data
117
118 Outgoing, dev->hard_header!=NULL
119    mac_header -> ll header
120    data       -> ll header
121
122 Incoming, dev->hard_header==NULL
123    mac_header -> UNKNOWN position. It is very likely, that it points to ll
124                  header.  PPP makes it, that is wrong, because introduce
125                  assymetry between rx and tx paths.
126    data       -> data
127
128 Outgoing, dev->hard_header==NULL
129    mac_header -> data. ll header is still not built!
130    data       -> data
131
132 Resume
133   If dev->hard_header==NULL we are unlikely to restore sensible ll header.
134
135
136 On transmit:
137 ------------
138
139 dev->hard_header != NULL
140    mac_header -> ll header
141    data       -> ll header
142
143 dev->hard_header == NULL (ll header is added by device, we cannot control it)
144    mac_header -> data
145    data       -> data
146
147    We should set nh.raw on output to correct posistion,
148    packet classifier depends on it.
149  */
150
151 /* Private packet socket structures. */
152
153 /* identical to struct packet_mreq except it has
154  * a longer address field.
155  */
156 struct packet_mreq_max {
157         int             mr_ifindex;
158         unsigned short  mr_type;
159         unsigned short  mr_alen;
160         unsigned char   mr_address[MAX_ADDR_LEN];
161 };
162
163 union tpacket_uhdr {
164         struct tpacket_hdr  *h1;
165         struct tpacket2_hdr *h2;
166         struct tpacket3_hdr *h3;
167         void *raw;
168 };
169
170 static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
171                 int closing, int tx_ring);
172
173 #define V3_ALIGNMENT    (8)
174
175 #define BLK_HDR_LEN     (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
176
177 #define BLK_PLUS_PRIV(sz_of_priv) \
178         (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
179
180 #define PGV_FROM_VMALLOC 1
181
182 #define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
183 #define BLOCK_NUM_PKTS(x)       ((x)->hdr.bh1.num_pkts)
184 #define BLOCK_O2FP(x)           ((x)->hdr.bh1.offset_to_first_pkt)
185 #define BLOCK_LEN(x)            ((x)->hdr.bh1.blk_len)
186 #define BLOCK_SNUM(x)           ((x)->hdr.bh1.seq_num)
187 #define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
188 #define BLOCK_PRIV(x)           ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
189
190 struct packet_sock;
191 static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
192 static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
193                        struct packet_type *pt, struct net_device *orig_dev);
194
195 static void *packet_previous_frame(struct packet_sock *po,
196                 struct packet_ring_buffer *rb,
197                 int status);
198 static void packet_increment_head(struct packet_ring_buffer *buff);
199 static int prb_curr_blk_in_use(struct tpacket_kbdq_core *,
200                         struct tpacket_block_desc *);
201 static void *prb_dispatch_next_block(struct tpacket_kbdq_core *,
202                         struct packet_sock *);
203 static void prb_retire_current_block(struct tpacket_kbdq_core *,
204                 struct packet_sock *, unsigned int status);
205 static int prb_queue_frozen(struct tpacket_kbdq_core *);
206 static void prb_open_block(struct tpacket_kbdq_core *,
207                 struct tpacket_block_desc *);
208 static void prb_retire_rx_blk_timer_expired(unsigned long);
209 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *);
210 static void prb_init_blk_timer(struct packet_sock *,
211                 struct tpacket_kbdq_core *,
212                 void (*func) (unsigned long));
213 static void prb_fill_rxhash(struct tpacket_kbdq_core *, struct tpacket3_hdr *);
214 static void prb_clear_rxhash(struct tpacket_kbdq_core *,
215                 struct tpacket3_hdr *);
216 static void prb_fill_vlan_info(struct tpacket_kbdq_core *,
217                 struct tpacket3_hdr *);
218 static void packet_flush_mclist(struct sock *sk);
219
220 struct packet_skb_cb {
221         union {
222                 struct sockaddr_pkt pkt;
223                 union {
224                         /* Trick: alias skb original length with
225                          * ll.sll_family and ll.protocol in order
226                          * to save room.
227                          */
228                         unsigned int origlen;
229                         struct sockaddr_ll ll;
230                 };
231         } sa;
232 };
233
234 #define vio_le() virtio_legacy_is_little_endian()
235
236 #define PACKET_SKB_CB(__skb)    ((struct packet_skb_cb *)((__skb)->cb))
237
238 #define GET_PBDQC_FROM_RB(x)    ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
239 #define GET_PBLOCK_DESC(x, bid) \
240         ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
241 #define GET_CURR_PBLOCK_DESC_FROM_CORE(x)       \
242         ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
243 #define GET_NEXT_PRB_BLK_NUM(x) \
244         (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
245         ((x)->kactive_blk_num+1) : 0)
246
247 static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
248 static void __fanout_link(struct sock *sk, struct packet_sock *po);
249
250 static int packet_direct_xmit(struct sk_buff *skb)
251 {
252         struct net_device *dev = skb->dev;
253         struct sk_buff *orig_skb = skb;
254         struct netdev_queue *txq;
255         int ret = NETDEV_TX_BUSY;
256
257         if (unlikely(!netif_running(dev) ||
258                      !netif_carrier_ok(dev)))
259                 goto drop;
260
261         skb = validate_xmit_skb_list(skb, dev);
262         if (skb != orig_skb)
263                 goto drop;
264
265         txq = skb_get_tx_queue(dev, skb);
266
267         local_bh_disable();
268
269         HARD_TX_LOCK(dev, txq, smp_processor_id());
270         if (!netif_xmit_frozen_or_drv_stopped(txq))
271                 ret = netdev_start_xmit(skb, dev, txq, false);
272         HARD_TX_UNLOCK(dev, txq);
273
274         local_bh_enable();
275
276         if (!dev_xmit_complete(ret))
277                 kfree_skb(skb);
278
279         return ret;
280 drop:
281         atomic_long_inc(&dev->tx_dropped);
282         kfree_skb_list(skb);
283         return NET_XMIT_DROP;
284 }
285
286 static struct net_device *packet_cached_dev_get(struct packet_sock *po)
287 {
288         struct net_device *dev;
289
290         rcu_read_lock();
291         dev = rcu_dereference(po->cached_dev);
292         if (likely(dev))
293                 dev_hold(dev);
294         rcu_read_unlock();
295
296         return dev;
297 }
298
299 static void packet_cached_dev_assign(struct packet_sock *po,
300                                      struct net_device *dev)
301 {
302         rcu_assign_pointer(po->cached_dev, dev);
303 }
304
305 static void packet_cached_dev_reset(struct packet_sock *po)
306 {
307         RCU_INIT_POINTER(po->cached_dev, NULL);
308 }
309
310 static bool packet_use_direct_xmit(const struct packet_sock *po)
311 {
312         return po->xmit == packet_direct_xmit;
313 }
314
315 static u16 __packet_pick_tx_queue(struct net_device *dev, struct sk_buff *skb)
316 {
317         return (u16) raw_smp_processor_id() % dev->real_num_tx_queues;
318 }
319
320 static void packet_pick_tx_queue(struct net_device *dev, struct sk_buff *skb)
321 {
322         const struct net_device_ops *ops = dev->netdev_ops;
323         u16 queue_index;
324
325         if (ops->ndo_select_queue) {
326                 queue_index = ops->ndo_select_queue(dev, skb, NULL,
327                                                     __packet_pick_tx_queue);
328                 queue_index = netdev_cap_txqueue(dev, queue_index);
329         } else {
330                 queue_index = __packet_pick_tx_queue(dev, skb);
331         }
332
333         skb_set_queue_mapping(skb, queue_index);
334 }
335
336 /* register_prot_hook must be invoked with the po->bind_lock held,
337  * or from a context in which asynchronous accesses to the packet
338  * socket is not possible (packet_create()).
339  */
340 static void register_prot_hook(struct sock *sk)
341 {
342         struct packet_sock *po = pkt_sk(sk);
343
344         if (!po->running) {
345                 if (po->fanout)
346                         __fanout_link(sk, po);
347                 else
348                         dev_add_pack(&po->prot_hook);
349
350                 sock_hold(sk);
351                 po->running = 1;
352         }
353 }
354
355 /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
356  * held.   If the sync parameter is true, we will temporarily drop
357  * the po->bind_lock and do a synchronize_net to make sure no
358  * asynchronous packet processing paths still refer to the elements
359  * of po->prot_hook.  If the sync parameter is false, it is the
360  * callers responsibility to take care of this.
361  */
362 static void __unregister_prot_hook(struct sock *sk, bool sync)
363 {
364         struct packet_sock *po = pkt_sk(sk);
365
366         po->running = 0;
367
368         if (po->fanout)
369                 __fanout_unlink(sk, po);
370         else
371                 __dev_remove_pack(&po->prot_hook);
372
373         __sock_put(sk);
374
375         if (sync) {
376                 spin_unlock(&po->bind_lock);
377                 synchronize_net();
378                 spin_lock(&po->bind_lock);
379         }
380 }
381
382 static void unregister_prot_hook(struct sock *sk, bool sync)
383 {
384         struct packet_sock *po = pkt_sk(sk);
385
386         if (po->running)
387                 __unregister_prot_hook(sk, sync);
388 }
389
390 static inline struct page * __pure pgv_to_page(void *addr)
391 {
392         if (is_vmalloc_addr(addr))
393                 return vmalloc_to_page(addr);
394         return virt_to_page(addr);
395 }
396
397 static void __packet_set_status(struct packet_sock *po, void *frame, int status)
398 {
399         union tpacket_uhdr h;
400
401         h.raw = frame;
402         switch (po->tp_version) {
403         case TPACKET_V1:
404                 h.h1->tp_status = status;
405                 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
406                 break;
407         case TPACKET_V2:
408                 h.h2->tp_status = status;
409                 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
410                 break;
411         case TPACKET_V3:
412                 h.h3->tp_status = status;
413                 flush_dcache_page(pgv_to_page(&h.h3->tp_status));
414                 break;
415         default:
416                 WARN(1, "TPACKET version not supported.\n");
417                 BUG();
418         }
419
420         smp_wmb();
421 }
422
423 static int __packet_get_status(struct packet_sock *po, void *frame)
424 {
425         union tpacket_uhdr h;
426
427         smp_rmb();
428
429         h.raw = frame;
430         switch (po->tp_version) {
431         case TPACKET_V1:
432                 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
433                 return h.h1->tp_status;
434         case TPACKET_V2:
435                 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
436                 return h.h2->tp_status;
437         case TPACKET_V3:
438                 flush_dcache_page(pgv_to_page(&h.h3->tp_status));
439                 return h.h3->tp_status;
440         default:
441                 WARN(1, "TPACKET version not supported.\n");
442                 BUG();
443                 return 0;
444         }
445 }
446
447 static __u32 tpacket_get_timestamp(struct sk_buff *skb, struct timespec *ts,
448                                    unsigned int flags)
449 {
450         struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
451
452         if (shhwtstamps &&
453             (flags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
454             ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts))
455                 return TP_STATUS_TS_RAW_HARDWARE;
456
457         if (ktime_to_timespec_cond(skb->tstamp, ts))
458                 return TP_STATUS_TS_SOFTWARE;
459
460         return 0;
461 }
462
463 static __u32 __packet_set_timestamp(struct packet_sock *po, void *frame,
464                                     struct sk_buff *skb)
465 {
466         union tpacket_uhdr h;
467         struct timespec ts;
468         __u32 ts_status;
469
470         if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
471                 return 0;
472
473         h.raw = frame;
474         switch (po->tp_version) {
475         case TPACKET_V1:
476                 h.h1->tp_sec = ts.tv_sec;
477                 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
478                 break;
479         case TPACKET_V2:
480                 h.h2->tp_sec = ts.tv_sec;
481                 h.h2->tp_nsec = ts.tv_nsec;
482                 break;
483         case TPACKET_V3:
484         default:
485                 WARN(1, "TPACKET version not supported.\n");
486                 BUG();
487         }
488
489         /* one flush is safe, as both fields always lie on the same cacheline */
490         flush_dcache_page(pgv_to_page(&h.h1->tp_sec));
491         smp_wmb();
492
493         return ts_status;
494 }
495
496 static void *packet_lookup_frame(struct packet_sock *po,
497                 struct packet_ring_buffer *rb,
498                 unsigned int position,
499                 int status)
500 {
501         unsigned int pg_vec_pos, frame_offset;
502         union tpacket_uhdr h;
503
504         pg_vec_pos = position / rb->frames_per_block;
505         frame_offset = position % rb->frames_per_block;
506
507         h.raw = rb->pg_vec[pg_vec_pos].buffer +
508                 (frame_offset * rb->frame_size);
509
510         if (status != __packet_get_status(po, h.raw))
511                 return NULL;
512
513         return h.raw;
514 }
515
516 static void *packet_current_frame(struct packet_sock *po,
517                 struct packet_ring_buffer *rb,
518                 int status)
519 {
520         return packet_lookup_frame(po, rb, rb->head, status);
521 }
522
523 static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
524 {
525         del_timer_sync(&pkc->retire_blk_timer);
526 }
527
528 static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
529                 struct sk_buff_head *rb_queue)
530 {
531         struct tpacket_kbdq_core *pkc;
532
533         pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
534
535         spin_lock_bh(&rb_queue->lock);
536         pkc->delete_blk_timer = 1;
537         spin_unlock_bh(&rb_queue->lock);
538
539         prb_del_retire_blk_timer(pkc);
540 }
541
542 static void prb_init_blk_timer(struct packet_sock *po,
543                 struct tpacket_kbdq_core *pkc,
544                 void (*func) (unsigned long))
545 {
546         init_timer(&pkc->retire_blk_timer);
547         pkc->retire_blk_timer.data = (long)po;
548         pkc->retire_blk_timer.function = func;
549         pkc->retire_blk_timer.expires = jiffies;
550 }
551
552 static void prb_setup_retire_blk_timer(struct packet_sock *po)
553 {
554         struct tpacket_kbdq_core *pkc;
555
556         pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
557         prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
558 }
559
560 static int prb_calc_retire_blk_tmo(struct packet_sock *po,
561                                 int blk_size_in_bytes)
562 {
563         struct net_device *dev;
564         unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
565         struct ethtool_link_ksettings ecmd;
566         int err;
567
568         rtnl_lock();
569         dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
570         if (unlikely(!dev)) {
571                 rtnl_unlock();
572                 return DEFAULT_PRB_RETIRE_TOV;
573         }
574         err = __ethtool_get_link_ksettings(dev, &ecmd);
575         rtnl_unlock();
576         if (!err) {
577                 /*
578                  * If the link speed is so slow you don't really
579                  * need to worry about perf anyways
580                  */
581                 if (ecmd.base.speed < SPEED_1000 ||
582                     ecmd.base.speed == SPEED_UNKNOWN) {
583                         return DEFAULT_PRB_RETIRE_TOV;
584                 } else {
585                         msec = 1;
586                         div = ecmd.base.speed / 1000;
587                 }
588         }
589
590         mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
591
592         if (div)
593                 mbits /= div;
594
595         tmo = mbits * msec;
596
597         if (div)
598                 return tmo+1;
599         return tmo;
600 }
601
602 static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
603                         union tpacket_req_u *req_u)
604 {
605         p1->feature_req_word = req_u->req3.tp_feature_req_word;
606 }
607
608 static void init_prb_bdqc(struct packet_sock *po,
609                         struct packet_ring_buffer *rb,
610                         struct pgv *pg_vec,
611                         union tpacket_req_u *req_u)
612 {
613         struct tpacket_kbdq_core *p1 = GET_PBDQC_FROM_RB(rb);
614         struct tpacket_block_desc *pbd;
615
616         memset(p1, 0x0, sizeof(*p1));
617
618         p1->knxt_seq_num = 1;
619         p1->pkbdq = pg_vec;
620         pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
621         p1->pkblk_start = pg_vec[0].buffer;
622         p1->kblk_size = req_u->req3.tp_block_size;
623         p1->knum_blocks = req_u->req3.tp_block_nr;
624         p1->hdrlen = po->tp_hdrlen;
625         p1->version = po->tp_version;
626         p1->last_kactive_blk_num = 0;
627         po->stats.stats3.tp_freeze_q_cnt = 0;
628         if (req_u->req3.tp_retire_blk_tov)
629                 p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
630         else
631                 p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
632                                                 req_u->req3.tp_block_size);
633         p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
634         p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
635
636         p1->max_frame_len = p1->kblk_size - BLK_PLUS_PRIV(p1->blk_sizeof_priv);
637         prb_init_ft_ops(p1, req_u);
638         prb_setup_retire_blk_timer(po);
639         prb_open_block(p1, pbd);
640 }
641
642 /*  Do NOT update the last_blk_num first.
643  *  Assumes sk_buff_head lock is held.
644  */
645 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
646 {
647         mod_timer(&pkc->retire_blk_timer,
648                         jiffies + pkc->tov_in_jiffies);
649         pkc->last_kactive_blk_num = pkc->kactive_blk_num;
650 }
651
652 /*
653  * Timer logic:
654  * 1) We refresh the timer only when we open a block.
655  *    By doing this we don't waste cycles refreshing the timer
656  *        on packet-by-packet basis.
657  *
658  * With a 1MB block-size, on a 1Gbps line, it will take
659  * i) ~8 ms to fill a block + ii) memcpy etc.
660  * In this cut we are not accounting for the memcpy time.
661  *
662  * So, if the user sets the 'tmo' to 10ms then the timer
663  * will never fire while the block is still getting filled
664  * (which is what we want). However, the user could choose
665  * to close a block early and that's fine.
666  *
667  * But when the timer does fire, we check whether or not to refresh it.
668  * Since the tmo granularity is in msecs, it is not too expensive
669  * to refresh the timer, lets say every '8' msecs.
670  * Either the user can set the 'tmo' or we can derive it based on
671  * a) line-speed and b) block-size.
672  * prb_calc_retire_blk_tmo() calculates the tmo.
673  *
674  */
675 static void prb_retire_rx_blk_timer_expired(unsigned long data)
676 {
677         struct packet_sock *po = (struct packet_sock *)data;
678         struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
679         unsigned int frozen;
680         struct tpacket_block_desc *pbd;
681
682         spin_lock(&po->sk.sk_receive_queue.lock);
683
684         frozen = prb_queue_frozen(pkc);
685         pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
686
687         if (unlikely(pkc->delete_blk_timer))
688                 goto out;
689
690         /* We only need to plug the race when the block is partially filled.
691          * tpacket_rcv:
692          *              lock(); increment BLOCK_NUM_PKTS; unlock()
693          *              copy_bits() is in progress ...
694          *              timer fires on other cpu:
695          *              we can't retire the current block because copy_bits
696          *              is in progress.
697          *
698          */
699         if (BLOCK_NUM_PKTS(pbd)) {
700                 while (atomic_read(&pkc->blk_fill_in_prog)) {
701                         /* Waiting for skb_copy_bits to finish... */
702                         cpu_relax();
703                 }
704         }
705
706         if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
707                 if (!frozen) {
708                         if (!BLOCK_NUM_PKTS(pbd)) {
709                                 /* An empty block. Just refresh the timer. */
710                                 goto refresh_timer;
711                         }
712                         prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
713                         if (!prb_dispatch_next_block(pkc, po))
714                                 goto refresh_timer;
715                         else
716                                 goto out;
717                 } else {
718                         /* Case 1. Queue was frozen because user-space was
719                          *         lagging behind.
720                          */
721                         if (prb_curr_blk_in_use(pkc, pbd)) {
722                                 /*
723                                  * Ok, user-space is still behind.
724                                  * So just refresh the timer.
725                                  */
726                                 goto refresh_timer;
727                         } else {
728                                /* Case 2. queue was frozen,user-space caught up,
729                                 * now the link went idle && the timer fired.
730                                 * We don't have a block to close.So we open this
731                                 * block and restart the timer.
732                                 * opening a block thaws the queue,restarts timer
733                                 * Thawing/timer-refresh is a side effect.
734                                 */
735                                 prb_open_block(pkc, pbd);
736                                 goto out;
737                         }
738                 }
739         }
740
741 refresh_timer:
742         _prb_refresh_rx_retire_blk_timer(pkc);
743
744 out:
745         spin_unlock(&po->sk.sk_receive_queue.lock);
746 }
747
748 static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
749                 struct tpacket_block_desc *pbd1, __u32 status)
750 {
751         /* Flush everything minus the block header */
752
753 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
754         u8 *start, *end;
755
756         start = (u8 *)pbd1;
757
758         /* Skip the block header(we know header WILL fit in 4K) */
759         start += PAGE_SIZE;
760
761         end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
762         for (; start < end; start += PAGE_SIZE)
763                 flush_dcache_page(pgv_to_page(start));
764
765         smp_wmb();
766 #endif
767
768         /* Now update the block status. */
769
770         BLOCK_STATUS(pbd1) = status;
771
772         /* Flush the block header */
773
774 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
775         start = (u8 *)pbd1;
776         flush_dcache_page(pgv_to_page(start));
777
778         smp_wmb();
779 #endif
780 }
781
782 /*
783  * Side effect:
784  *
785  * 1) flush the block
786  * 2) Increment active_blk_num
787  *
788  * Note:We DONT refresh the timer on purpose.
789  *      Because almost always the next block will be opened.
790  */
791 static void prb_close_block(struct tpacket_kbdq_core *pkc1,
792                 struct tpacket_block_desc *pbd1,
793                 struct packet_sock *po, unsigned int stat)
794 {
795         __u32 status = TP_STATUS_USER | stat;
796
797         struct tpacket3_hdr *last_pkt;
798         struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
799         struct sock *sk = &po->sk;
800
801         if (po->stats.stats3.tp_drops)
802                 status |= TP_STATUS_LOSING;
803
804         last_pkt = (struct tpacket3_hdr *)pkc1->prev;
805         last_pkt->tp_next_offset = 0;
806
807         /* Get the ts of the last pkt */
808         if (BLOCK_NUM_PKTS(pbd1)) {
809                 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
810                 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
811         } else {
812                 /* Ok, we tmo'd - so get the current time.
813                  *
814                  * It shouldn't really happen as we don't close empty
815                  * blocks. See prb_retire_rx_blk_timer_expired().
816                  */
817                 struct timespec ts;
818                 getnstimeofday(&ts);
819                 h1->ts_last_pkt.ts_sec = ts.tv_sec;
820                 h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
821         }
822
823         smp_wmb();
824
825         /* Flush the block */
826         prb_flush_block(pkc1, pbd1, status);
827
828         sk->sk_data_ready(sk);
829
830         pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
831 }
832
833 static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
834 {
835         pkc->reset_pending_on_curr_blk = 0;
836 }
837
838 /*
839  * Side effect of opening a block:
840  *
841  * 1) prb_queue is thawed.
842  * 2) retire_blk_timer is refreshed.
843  *
844  */
845 static void prb_open_block(struct tpacket_kbdq_core *pkc1,
846         struct tpacket_block_desc *pbd1)
847 {
848         struct timespec ts;
849         struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
850
851         smp_rmb();
852
853         /* We could have just memset this but we will lose the
854          * flexibility of making the priv area sticky
855          */
856
857         BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
858         BLOCK_NUM_PKTS(pbd1) = 0;
859         BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
860
861         getnstimeofday(&ts);
862
863         h1->ts_first_pkt.ts_sec = ts.tv_sec;
864         h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
865
866         pkc1->pkblk_start = (char *)pbd1;
867         pkc1->nxt_offset = pkc1->pkblk_start + BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
868
869         BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
870         BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
871
872         pbd1->version = pkc1->version;
873         pkc1->prev = pkc1->nxt_offset;
874         pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
875
876         prb_thaw_queue(pkc1);
877         _prb_refresh_rx_retire_blk_timer(pkc1);
878
879         smp_wmb();
880 }
881
882 /*
883  * Queue freeze logic:
884  * 1) Assume tp_block_nr = 8 blocks.
885  * 2) At time 't0', user opens Rx ring.
886  * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
887  * 4) user-space is either sleeping or processing block '0'.
888  * 5) tpacket_rcv is currently filling block '7', since there is no space left,
889  *    it will close block-7,loop around and try to fill block '0'.
890  *    call-flow:
891  *    __packet_lookup_frame_in_block
892  *      prb_retire_current_block()
893  *      prb_dispatch_next_block()
894  *        |->(BLOCK_STATUS == USER) evaluates to true
895  *    5.1) Since block-0 is currently in-use, we just freeze the queue.
896  * 6) Now there are two cases:
897  *    6.1) Link goes idle right after the queue is frozen.
898  *         But remember, the last open_block() refreshed the timer.
899  *         When this timer expires,it will refresh itself so that we can
900  *         re-open block-0 in near future.
901  *    6.2) Link is busy and keeps on receiving packets. This is a simple
902  *         case and __packet_lookup_frame_in_block will check if block-0
903  *         is free and can now be re-used.
904  */
905 static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
906                                   struct packet_sock *po)
907 {
908         pkc->reset_pending_on_curr_blk = 1;
909         po->stats.stats3.tp_freeze_q_cnt++;
910 }
911
912 #define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
913
914 /*
915  * If the next block is free then we will dispatch it
916  * and return a good offset.
917  * Else, we will freeze the queue.
918  * So, caller must check the return value.
919  */
920 static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
921                 struct packet_sock *po)
922 {
923         struct tpacket_block_desc *pbd;
924
925         smp_rmb();
926
927         /* 1. Get current block num */
928         pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
929
930         /* 2. If this block is currently in_use then freeze the queue */
931         if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
932                 prb_freeze_queue(pkc, po);
933                 return NULL;
934         }
935
936         /*
937          * 3.
938          * open this block and return the offset where the first packet
939          * needs to get stored.
940          */
941         prb_open_block(pkc, pbd);
942         return (void *)pkc->nxt_offset;
943 }
944
945 static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
946                 struct packet_sock *po, unsigned int status)
947 {
948         struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
949
950         /* retire/close the current block */
951         if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
952                 /*
953                  * Plug the case where copy_bits() is in progress on
954                  * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
955                  * have space to copy the pkt in the current block and
956                  * called prb_retire_current_block()
957                  *
958                  * We don't need to worry about the TMO case because
959                  * the timer-handler already handled this case.
960                  */
961                 if (!(status & TP_STATUS_BLK_TMO)) {
962                         while (atomic_read(&pkc->blk_fill_in_prog)) {
963                                 /* Waiting for skb_copy_bits to finish... */
964                                 cpu_relax();
965                         }
966                 }
967                 prb_close_block(pkc, pbd, po, status);
968                 return;
969         }
970 }
971
972 static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
973                                       struct tpacket_block_desc *pbd)
974 {
975         return TP_STATUS_USER & BLOCK_STATUS(pbd);
976 }
977
978 static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
979 {
980         return pkc->reset_pending_on_curr_blk;
981 }
982
983 static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
984 {
985         struct tpacket_kbdq_core *pkc  = GET_PBDQC_FROM_RB(rb);
986         atomic_dec(&pkc->blk_fill_in_prog);
987 }
988
989 static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
990                         struct tpacket3_hdr *ppd)
991 {
992         ppd->hv1.tp_rxhash = skb_get_hash(pkc->skb);
993 }
994
995 static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
996                         struct tpacket3_hdr *ppd)
997 {
998         ppd->hv1.tp_rxhash = 0;
999 }
1000
1001 static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
1002                         struct tpacket3_hdr *ppd)
1003 {
1004         if (skb_vlan_tag_present(pkc->skb)) {
1005                 ppd->hv1.tp_vlan_tci = skb_vlan_tag_get(pkc->skb);
1006                 ppd->hv1.tp_vlan_tpid = ntohs(pkc->skb->vlan_proto);
1007                 ppd->tp_status = TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
1008         } else {
1009                 ppd->hv1.tp_vlan_tci = 0;
1010                 ppd->hv1.tp_vlan_tpid = 0;
1011                 ppd->tp_status = TP_STATUS_AVAILABLE;
1012         }
1013 }
1014
1015 static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
1016                         struct tpacket3_hdr *ppd)
1017 {
1018         ppd->hv1.tp_padding = 0;
1019         prb_fill_vlan_info(pkc, ppd);
1020
1021         if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
1022                 prb_fill_rxhash(pkc, ppd);
1023         else
1024                 prb_clear_rxhash(pkc, ppd);
1025 }
1026
1027 static void prb_fill_curr_block(char *curr,
1028                                 struct tpacket_kbdq_core *pkc,
1029                                 struct tpacket_block_desc *pbd,
1030                                 unsigned int len)
1031 {
1032         struct tpacket3_hdr *ppd;
1033
1034         ppd  = (struct tpacket3_hdr *)curr;
1035         ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
1036         pkc->prev = curr;
1037         pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
1038         BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
1039         BLOCK_NUM_PKTS(pbd) += 1;
1040         atomic_inc(&pkc->blk_fill_in_prog);
1041         prb_run_all_ft_ops(pkc, ppd);
1042 }
1043
1044 /* Assumes caller has the sk->rx_queue.lock */
1045 static void *__packet_lookup_frame_in_block(struct packet_sock *po,
1046                                             struct sk_buff *skb,
1047                                                 int status,
1048                                             unsigned int len
1049                                             )
1050 {
1051         struct tpacket_kbdq_core *pkc;
1052         struct tpacket_block_desc *pbd;
1053         char *curr, *end;
1054
1055         pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
1056         pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1057
1058         /* Queue is frozen when user space is lagging behind */
1059         if (prb_queue_frozen(pkc)) {
1060                 /*
1061                  * Check if that last block which caused the queue to freeze,
1062                  * is still in_use by user-space.
1063                  */
1064                 if (prb_curr_blk_in_use(pkc, pbd)) {
1065                         /* Can't record this packet */
1066                         return NULL;
1067                 } else {
1068                         /*
1069                          * Ok, the block was released by user-space.
1070                          * Now let's open that block.
1071                          * opening a block also thaws the queue.
1072                          * Thawing is a side effect.
1073                          */
1074                         prb_open_block(pkc, pbd);
1075                 }
1076         }
1077
1078         smp_mb();
1079         curr = pkc->nxt_offset;
1080         pkc->skb = skb;
1081         end = (char *)pbd + pkc->kblk_size;
1082
1083         /* first try the current block */
1084         if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
1085                 prb_fill_curr_block(curr, pkc, pbd, len);
1086                 return (void *)curr;
1087         }
1088
1089         /* Ok, close the current block */
1090         prb_retire_current_block(pkc, po, 0);
1091
1092         /* Now, try to dispatch the next block */
1093         curr = (char *)prb_dispatch_next_block(pkc, po);
1094         if (curr) {
1095                 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1096                 prb_fill_curr_block(curr, pkc, pbd, len);
1097                 return (void *)curr;
1098         }
1099
1100         /*
1101          * No free blocks are available.user_space hasn't caught up yet.
1102          * Queue was just frozen and now this packet will get dropped.
1103          */
1104         return NULL;
1105 }
1106
1107 static void *packet_current_rx_frame(struct packet_sock *po,
1108                                             struct sk_buff *skb,
1109                                             int status, unsigned int len)
1110 {
1111         char *curr = NULL;
1112         switch (po->tp_version) {
1113         case TPACKET_V1:
1114         case TPACKET_V2:
1115                 curr = packet_lookup_frame(po, &po->rx_ring,
1116                                         po->rx_ring.head, status);
1117                 return curr;
1118         case TPACKET_V3:
1119                 return __packet_lookup_frame_in_block(po, skb, status, len);
1120         default:
1121                 WARN(1, "TPACKET version not supported\n");
1122                 BUG();
1123                 return NULL;
1124         }
1125 }
1126
1127 static void *prb_lookup_block(struct packet_sock *po,
1128                                      struct packet_ring_buffer *rb,
1129                                      unsigned int idx,
1130                                      int status)
1131 {
1132         struct tpacket_kbdq_core *pkc  = GET_PBDQC_FROM_RB(rb);
1133         struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, idx);
1134
1135         if (status != BLOCK_STATUS(pbd))
1136                 return NULL;
1137         return pbd;
1138 }
1139
1140 static int prb_previous_blk_num(struct packet_ring_buffer *rb)
1141 {
1142         unsigned int prev;
1143         if (rb->prb_bdqc.kactive_blk_num)
1144                 prev = rb->prb_bdqc.kactive_blk_num-1;
1145         else
1146                 prev = rb->prb_bdqc.knum_blocks-1;
1147         return prev;
1148 }
1149
1150 /* Assumes caller has held the rx_queue.lock */
1151 static void *__prb_previous_block(struct packet_sock *po,
1152                                          struct packet_ring_buffer *rb,
1153                                          int status)
1154 {
1155         unsigned int previous = prb_previous_blk_num(rb);
1156         return prb_lookup_block(po, rb, previous, status);
1157 }
1158
1159 static void *packet_previous_rx_frame(struct packet_sock *po,
1160                                              struct packet_ring_buffer *rb,
1161                                              int status)
1162 {
1163         if (po->tp_version <= TPACKET_V2)
1164                 return packet_previous_frame(po, rb, status);
1165
1166         return __prb_previous_block(po, rb, status);
1167 }
1168
1169 static void packet_increment_rx_head(struct packet_sock *po,
1170                                             struct packet_ring_buffer *rb)
1171 {
1172         switch (po->tp_version) {
1173         case TPACKET_V1:
1174         case TPACKET_V2:
1175                 return packet_increment_head(rb);
1176         case TPACKET_V3:
1177         default:
1178                 WARN(1, "TPACKET version not supported.\n");
1179                 BUG();
1180                 return;
1181         }
1182 }
1183
1184 static void *packet_previous_frame(struct packet_sock *po,
1185                 struct packet_ring_buffer *rb,
1186                 int status)
1187 {
1188         unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
1189         return packet_lookup_frame(po, rb, previous, status);
1190 }
1191
1192 static void packet_increment_head(struct packet_ring_buffer *buff)
1193 {
1194         buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
1195 }
1196
1197 static void packet_inc_pending(struct packet_ring_buffer *rb)
1198 {
1199         this_cpu_inc(*rb->pending_refcnt);
1200 }
1201
1202 static void packet_dec_pending(struct packet_ring_buffer *rb)
1203 {
1204         this_cpu_dec(*rb->pending_refcnt);
1205 }
1206
1207 static unsigned int packet_read_pending(const struct packet_ring_buffer *rb)
1208 {
1209         unsigned int refcnt = 0;
1210         int cpu;
1211
1212         /* We don't use pending refcount in rx_ring. */
1213         if (rb->pending_refcnt == NULL)
1214                 return 0;
1215
1216         for_each_possible_cpu(cpu)
1217                 refcnt += *per_cpu_ptr(rb->pending_refcnt, cpu);
1218
1219         return refcnt;
1220 }
1221
1222 static int packet_alloc_pending(struct packet_sock *po)
1223 {
1224         po->rx_ring.pending_refcnt = NULL;
1225
1226         po->tx_ring.pending_refcnt = alloc_percpu(unsigned int);
1227         if (unlikely(po->tx_ring.pending_refcnt == NULL))
1228                 return -ENOBUFS;
1229
1230         return 0;
1231 }
1232
1233 static void packet_free_pending(struct packet_sock *po)
1234 {
1235         free_percpu(po->tx_ring.pending_refcnt);
1236 }
1237
1238 #define ROOM_POW_OFF    2
1239 #define ROOM_NONE       0x0
1240 #define ROOM_LOW        0x1
1241 #define ROOM_NORMAL     0x2
1242
1243 static bool __tpacket_has_room(struct packet_sock *po, int pow_off)
1244 {
1245         int idx, len;
1246
1247         len = po->rx_ring.frame_max + 1;
1248         idx = po->rx_ring.head;
1249         if (pow_off)
1250                 idx += len >> pow_off;
1251         if (idx >= len)
1252                 idx -= len;
1253         return packet_lookup_frame(po, &po->rx_ring, idx, TP_STATUS_KERNEL);
1254 }
1255
1256 static bool __tpacket_v3_has_room(struct packet_sock *po, int pow_off)
1257 {
1258         int idx, len;
1259
1260         len = po->rx_ring.prb_bdqc.knum_blocks;
1261         idx = po->rx_ring.prb_bdqc.kactive_blk_num;
1262         if (pow_off)
1263                 idx += len >> pow_off;
1264         if (idx >= len)
1265                 idx -= len;
1266         return prb_lookup_block(po, &po->rx_ring, idx, TP_STATUS_KERNEL);
1267 }
1268
1269 static int __packet_rcv_has_room(struct packet_sock *po, struct sk_buff *skb)
1270 {
1271         struct sock *sk = &po->sk;
1272         int ret = ROOM_NONE;
1273
1274         if (po->prot_hook.func != tpacket_rcv) {
1275                 int avail = sk->sk_rcvbuf - atomic_read(&sk->sk_rmem_alloc)
1276                                           - (skb ? skb->truesize : 0);
1277                 if (avail > (sk->sk_rcvbuf >> ROOM_POW_OFF))
1278                         return ROOM_NORMAL;
1279                 else if (avail > 0)
1280                         return ROOM_LOW;
1281                 else
1282                         return ROOM_NONE;
1283         }
1284
1285         if (po->tp_version == TPACKET_V3) {
1286                 if (__tpacket_v3_has_room(po, ROOM_POW_OFF))
1287                         ret = ROOM_NORMAL;
1288                 else if (__tpacket_v3_has_room(po, 0))
1289                         ret = ROOM_LOW;
1290         } else {
1291                 if (__tpacket_has_room(po, ROOM_POW_OFF))
1292                         ret = ROOM_NORMAL;
1293                 else if (__tpacket_has_room(po, 0))
1294                         ret = ROOM_LOW;
1295         }
1296
1297         return ret;
1298 }
1299
1300 static int packet_rcv_has_room(struct packet_sock *po, struct sk_buff *skb)
1301 {
1302         int ret;
1303         bool has_room;
1304
1305         spin_lock_bh(&po->sk.sk_receive_queue.lock);
1306         ret = __packet_rcv_has_room(po, skb);
1307         has_room = ret == ROOM_NORMAL;
1308         if (po->pressure == has_room)
1309                 po->pressure = !has_room;
1310         spin_unlock_bh(&po->sk.sk_receive_queue.lock);
1311
1312         return ret;
1313 }
1314
1315 static void packet_sock_destruct(struct sock *sk)
1316 {
1317         skb_queue_purge(&sk->sk_error_queue);
1318
1319         WARN_ON(atomic_read(&sk->sk_rmem_alloc));
1320         WARN_ON(atomic_read(&sk->sk_wmem_alloc));
1321
1322         if (!sock_flag(sk, SOCK_DEAD)) {
1323                 pr_err("Attempt to release alive packet socket: %p\n", sk);
1324                 return;
1325         }
1326
1327         sk_refcnt_debug_dec(sk);
1328 }
1329
1330 static bool fanout_flow_is_huge(struct packet_sock *po, struct sk_buff *skb)
1331 {
1332         u32 rxhash;
1333         int i, count = 0;
1334
1335         rxhash = skb_get_hash(skb);
1336         for (i = 0; i < ROLLOVER_HLEN; i++)
1337                 if (po->rollover->history[i] == rxhash)
1338                         count++;
1339
1340         po->rollover->history[prandom_u32() % ROLLOVER_HLEN] = rxhash;
1341         return count > (ROLLOVER_HLEN >> 1);
1342 }
1343
1344 static unsigned int fanout_demux_hash(struct packet_fanout *f,
1345                                       struct sk_buff *skb,
1346                                       unsigned int num)
1347 {
1348         return reciprocal_scale(__skb_get_hash_symmetric(skb), num);
1349 }
1350
1351 static unsigned int fanout_demux_lb(struct packet_fanout *f,
1352                                     struct sk_buff *skb,
1353                                     unsigned int num)
1354 {
1355         unsigned int val = atomic_inc_return(&f->rr_cur);
1356
1357         return val % num;
1358 }
1359
1360 static unsigned int fanout_demux_cpu(struct packet_fanout *f,
1361                                      struct sk_buff *skb,
1362                                      unsigned int num)
1363 {
1364         return smp_processor_id() % num;
1365 }
1366
1367 static unsigned int fanout_demux_rnd(struct packet_fanout *f,
1368                                      struct sk_buff *skb,
1369                                      unsigned int num)
1370 {
1371         return prandom_u32_max(num);
1372 }
1373
1374 static unsigned int fanout_demux_rollover(struct packet_fanout *f,
1375                                           struct sk_buff *skb,
1376                                           unsigned int idx, bool try_self,
1377                                           unsigned int num)
1378 {
1379         struct packet_sock *po, *po_next, *po_skip = NULL;
1380         unsigned int i, j, room = ROOM_NONE;
1381
1382         po = pkt_sk(f->arr[idx]);
1383
1384         if (try_self) {
1385                 room = packet_rcv_has_room(po, skb);
1386                 if (room == ROOM_NORMAL ||
1387                     (room == ROOM_LOW && !fanout_flow_is_huge(po, skb)))
1388                         return idx;
1389                 po_skip = po;
1390         }
1391
1392         i = j = min_t(int, po->rollover->sock, num - 1);
1393         do {
1394                 po_next = pkt_sk(f->arr[i]);
1395                 if (po_next != po_skip && !po_next->pressure &&
1396                     packet_rcv_has_room(po_next, skb) == ROOM_NORMAL) {
1397                         if (i != j)
1398                                 po->rollover->sock = i;
1399                         atomic_long_inc(&po->rollover->num);
1400                         if (room == ROOM_LOW)
1401                                 atomic_long_inc(&po->rollover->num_huge);
1402                         return i;
1403                 }
1404
1405                 if (++i == num)
1406                         i = 0;
1407         } while (i != j);
1408
1409         atomic_long_inc(&po->rollover->num_failed);
1410         return idx;
1411 }
1412
1413 static unsigned int fanout_demux_qm(struct packet_fanout *f,
1414                                     struct sk_buff *skb,
1415                                     unsigned int num)
1416 {
1417         return skb_get_queue_mapping(skb) % num;
1418 }
1419
1420 static unsigned int fanout_demux_bpf(struct packet_fanout *f,
1421                                      struct sk_buff *skb,
1422                                      unsigned int num)
1423 {
1424         struct bpf_prog *prog;
1425         unsigned int ret = 0;
1426
1427         rcu_read_lock();
1428         prog = rcu_dereference(f->bpf_prog);
1429         if (prog)
1430                 ret = bpf_prog_run_clear_cb(prog, skb) % num;
1431         rcu_read_unlock();
1432
1433         return ret;
1434 }
1435
1436 static bool fanout_has_flag(struct packet_fanout *f, u16 flag)
1437 {
1438         return f->flags & (flag >> 8);
1439 }
1440
1441 static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
1442                              struct packet_type *pt, struct net_device *orig_dev)
1443 {
1444         struct packet_fanout *f = pt->af_packet_priv;
1445         unsigned int num = READ_ONCE(f->num_members);
1446         struct net *net = read_pnet(&f->net);
1447         struct packet_sock *po;
1448         unsigned int idx;
1449
1450         if (!net_eq(dev_net(dev), net) || !num) {
1451                 kfree_skb(skb);
1452                 return 0;
1453         }
1454
1455         if (fanout_has_flag(f, PACKET_FANOUT_FLAG_DEFRAG)) {
1456                 skb = ip_check_defrag(net, skb, IP_DEFRAG_AF_PACKET);
1457                 if (!skb)
1458                         return 0;
1459         }
1460         switch (f->type) {
1461         case PACKET_FANOUT_HASH:
1462         default:
1463                 idx = fanout_demux_hash(f, skb, num);
1464                 break;
1465         case PACKET_FANOUT_LB:
1466                 idx = fanout_demux_lb(f, skb, num);
1467                 break;
1468         case PACKET_FANOUT_CPU:
1469                 idx = fanout_demux_cpu(f, skb, num);
1470                 break;
1471         case PACKET_FANOUT_RND:
1472                 idx = fanout_demux_rnd(f, skb, num);
1473                 break;
1474         case PACKET_FANOUT_QM:
1475                 idx = fanout_demux_qm(f, skb, num);
1476                 break;
1477         case PACKET_FANOUT_ROLLOVER:
1478                 idx = fanout_demux_rollover(f, skb, 0, false, num);
1479                 break;
1480         case PACKET_FANOUT_CBPF:
1481         case PACKET_FANOUT_EBPF:
1482                 idx = fanout_demux_bpf(f, skb, num);
1483                 break;
1484         }
1485
1486         if (fanout_has_flag(f, PACKET_FANOUT_FLAG_ROLLOVER))
1487                 idx = fanout_demux_rollover(f, skb, idx, true, num);
1488
1489         po = pkt_sk(f->arr[idx]);
1490         return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
1491 }
1492
1493 DEFINE_MUTEX(fanout_mutex);
1494 EXPORT_SYMBOL_GPL(fanout_mutex);
1495 static LIST_HEAD(fanout_list);
1496
1497 static void __fanout_link(struct sock *sk, struct packet_sock *po)
1498 {
1499         struct packet_fanout *f = po->fanout;
1500
1501         spin_lock(&f->lock);
1502         f->arr[f->num_members] = sk;
1503         smp_wmb();
1504         f->num_members++;
1505         spin_unlock(&f->lock);
1506 }
1507
1508 static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
1509 {
1510         struct packet_fanout *f = po->fanout;
1511         int i;
1512
1513         spin_lock(&f->lock);
1514         for (i = 0; i < f->num_members; i++) {
1515                 if (f->arr[i] == sk)
1516                         break;
1517         }
1518         BUG_ON(i >= f->num_members);
1519         f->arr[i] = f->arr[f->num_members - 1];
1520         f->num_members--;
1521         spin_unlock(&f->lock);
1522 }
1523
1524 static bool match_fanout_group(struct packet_type *ptype, struct sock *sk)
1525 {
1526         if (sk->sk_family != PF_PACKET)
1527                 return false;
1528
1529         return ptype->af_packet_priv == pkt_sk(sk)->fanout;
1530 }
1531
1532 static void fanout_init_data(struct packet_fanout *f)
1533 {
1534         switch (f->type) {
1535         case PACKET_FANOUT_LB:
1536                 atomic_set(&f->rr_cur, 0);
1537                 break;
1538         case PACKET_FANOUT_CBPF:
1539         case PACKET_FANOUT_EBPF:
1540                 RCU_INIT_POINTER(f->bpf_prog, NULL);
1541                 break;
1542         }
1543 }
1544
1545 static void __fanout_set_data_bpf(struct packet_fanout *f, struct bpf_prog *new)
1546 {
1547         struct bpf_prog *old;
1548
1549         spin_lock(&f->lock);
1550         old = rcu_dereference_protected(f->bpf_prog, lockdep_is_held(&f->lock));
1551         rcu_assign_pointer(f->bpf_prog, new);
1552         spin_unlock(&f->lock);
1553
1554         if (old) {
1555                 synchronize_net();
1556                 bpf_prog_destroy(old);
1557         }
1558 }
1559
1560 static int fanout_set_data_cbpf(struct packet_sock *po, char __user *data,
1561                                 unsigned int len)
1562 {
1563         struct bpf_prog *new;
1564         struct sock_fprog fprog;
1565         int ret;
1566
1567         if (sock_flag(&po->sk, SOCK_FILTER_LOCKED))
1568                 return -EPERM;
1569         if (len != sizeof(fprog))
1570                 return -EINVAL;
1571         if (copy_from_user(&fprog, data, len))
1572                 return -EFAULT;
1573
1574         ret = bpf_prog_create_from_user(&new, &fprog, NULL, false);
1575         if (ret)
1576                 return ret;
1577
1578         __fanout_set_data_bpf(po->fanout, new);
1579         return 0;
1580 }
1581
1582 static int fanout_set_data_ebpf(struct packet_sock *po, char __user *data,
1583                                 unsigned int len)
1584 {
1585         struct bpf_prog *new;
1586         u32 fd;
1587
1588         if (sock_flag(&po->sk, SOCK_FILTER_LOCKED))
1589                 return -EPERM;
1590         if (len != sizeof(fd))
1591                 return -EINVAL;
1592         if (copy_from_user(&fd, data, len))
1593                 return -EFAULT;
1594
1595         new = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
1596         if (IS_ERR(new))
1597                 return PTR_ERR(new);
1598
1599         __fanout_set_data_bpf(po->fanout, new);
1600         return 0;
1601 }
1602
1603 static int fanout_set_data(struct packet_sock *po, char __user *data,
1604                            unsigned int len)
1605 {
1606         switch (po->fanout->type) {
1607         case PACKET_FANOUT_CBPF:
1608                 return fanout_set_data_cbpf(po, data, len);
1609         case PACKET_FANOUT_EBPF:
1610                 return fanout_set_data_ebpf(po, data, len);
1611         default:
1612                 return -EINVAL;
1613         };
1614 }
1615
1616 static void fanout_release_data(struct packet_fanout *f)
1617 {
1618         switch (f->type) {
1619         case PACKET_FANOUT_CBPF:
1620         case PACKET_FANOUT_EBPF:
1621                 __fanout_set_data_bpf(f, NULL);
1622         };
1623 }
1624
1625 static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
1626 {
1627         struct packet_sock *po = pkt_sk(sk);
1628         struct packet_fanout *f, *match;
1629         u8 type = type_flags & 0xff;
1630         u8 flags = type_flags >> 8;
1631         int err;
1632
1633         switch (type) {
1634         case PACKET_FANOUT_ROLLOVER:
1635                 if (type_flags & PACKET_FANOUT_FLAG_ROLLOVER)
1636                         return -EINVAL;
1637         case PACKET_FANOUT_HASH:
1638         case PACKET_FANOUT_LB:
1639         case PACKET_FANOUT_CPU:
1640         case PACKET_FANOUT_RND:
1641         case PACKET_FANOUT_QM:
1642         case PACKET_FANOUT_CBPF:
1643         case PACKET_FANOUT_EBPF:
1644                 break;
1645         default:
1646                 return -EINVAL;
1647         }
1648
1649         if (!po->running)
1650                 return -EINVAL;
1651
1652         if (po->fanout)
1653                 return -EALREADY;
1654
1655         if (type == PACKET_FANOUT_ROLLOVER ||
1656             (type_flags & PACKET_FANOUT_FLAG_ROLLOVER)) {
1657                 po->rollover = kzalloc(sizeof(*po->rollover), GFP_KERNEL);
1658                 if (!po->rollover)
1659                         return -ENOMEM;
1660                 atomic_long_set(&po->rollover->num, 0);
1661                 atomic_long_set(&po->rollover->num_huge, 0);
1662                 atomic_long_set(&po->rollover->num_failed, 0);
1663         }
1664
1665         mutex_lock(&fanout_mutex);
1666         match = NULL;
1667         list_for_each_entry(f, &fanout_list, list) {
1668                 if (f->id == id &&
1669                     read_pnet(&f->net) == sock_net(sk)) {
1670                         match = f;
1671                         break;
1672                 }
1673         }
1674         err = -EINVAL;
1675         if (match && match->flags != flags)
1676                 goto out;
1677         if (!match) {
1678                 err = -ENOMEM;
1679                 match = kzalloc(sizeof(*match), GFP_KERNEL);
1680                 if (!match)
1681                         goto out;
1682                 write_pnet(&match->net, sock_net(sk));
1683                 match->id = id;
1684                 match->type = type;
1685                 match->flags = flags;
1686                 INIT_LIST_HEAD(&match->list);
1687                 spin_lock_init(&match->lock);
1688                 atomic_set(&match->sk_ref, 0);
1689                 fanout_init_data(match);
1690                 match->prot_hook.type = po->prot_hook.type;
1691                 match->prot_hook.dev = po->prot_hook.dev;
1692                 match->prot_hook.func = packet_rcv_fanout;
1693                 match->prot_hook.af_packet_priv = match;
1694                 match->prot_hook.id_match = match_fanout_group;
1695                 dev_add_pack(&match->prot_hook);
1696                 list_add(&match->list, &fanout_list);
1697         }
1698         err = -EINVAL;
1699         if (match->type == type &&
1700             match->prot_hook.type == po->prot_hook.type &&
1701             match->prot_hook.dev == po->prot_hook.dev) {
1702                 err = -ENOSPC;
1703                 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
1704                         __dev_remove_pack(&po->prot_hook);
1705                         po->fanout = match;
1706                         atomic_inc(&match->sk_ref);
1707                         __fanout_link(sk, po);
1708                         err = 0;
1709                 }
1710         }
1711 out:
1712         mutex_unlock(&fanout_mutex);
1713         if (err) {
1714                 kfree(po->rollover);
1715                 po->rollover = NULL;
1716         }
1717         return err;
1718 }
1719
1720 static void fanout_release(struct sock *sk)
1721 {
1722         struct packet_sock *po = pkt_sk(sk);
1723         struct packet_fanout *f;
1724
1725         f = po->fanout;
1726         if (!f)
1727                 return;
1728
1729         mutex_lock(&fanout_mutex);
1730         po->fanout = NULL;
1731
1732         if (atomic_dec_and_test(&f->sk_ref)) {
1733                 list_del(&f->list);
1734                 dev_remove_pack(&f->prot_hook);
1735                 fanout_release_data(f);
1736                 kfree(f);
1737         }
1738         mutex_unlock(&fanout_mutex);
1739
1740         if (po->rollover)
1741                 kfree_rcu(po->rollover, rcu);
1742 }
1743
1744 static bool packet_extra_vlan_len_allowed(const struct net_device *dev,
1745                                           struct sk_buff *skb)
1746 {
1747         /* Earlier code assumed this would be a VLAN pkt, double-check
1748          * this now that we have the actual packet in hand. We can only
1749          * do this check on Ethernet devices.
1750          */
1751         if (unlikely(dev->type != ARPHRD_ETHER))
1752                 return false;
1753
1754         skb_reset_mac_header(skb);
1755         return likely(eth_hdr(skb)->h_proto == htons(ETH_P_8021Q));
1756 }
1757
1758 static const struct proto_ops packet_ops;
1759
1760 static const struct proto_ops packet_ops_spkt;
1761
1762 static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
1763                            struct packet_type *pt, struct net_device *orig_dev)
1764 {
1765         struct sock *sk;
1766         struct sockaddr_pkt *spkt;
1767
1768         /*
1769          *      When we registered the protocol we saved the socket in the data
1770          *      field for just this event.
1771          */
1772
1773         sk = pt->af_packet_priv;
1774
1775         /*
1776          *      Yank back the headers [hope the device set this
1777          *      right or kerboom...]
1778          *
1779          *      Incoming packets have ll header pulled,
1780          *      push it back.
1781          *
1782          *      For outgoing ones skb->data == skb_mac_header(skb)
1783          *      so that this procedure is noop.
1784          */
1785
1786         if (skb->pkt_type == PACKET_LOOPBACK)
1787                 goto out;
1788
1789         if (!net_eq(dev_net(dev), sock_net(sk)))
1790                 goto out;
1791
1792         skb = skb_share_check(skb, GFP_ATOMIC);
1793         if (skb == NULL)
1794                 goto oom;
1795
1796         /* drop any routing info */
1797         skb_dst_drop(skb);
1798
1799         /* drop conntrack reference */
1800         nf_reset(skb);
1801
1802         spkt = &PACKET_SKB_CB(skb)->sa.pkt;
1803
1804         skb_push(skb, skb->data - skb_mac_header(skb));
1805
1806         /*
1807          *      The SOCK_PACKET socket receives _all_ frames.
1808          */
1809
1810         spkt->spkt_family = dev->type;
1811         strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
1812         spkt->spkt_protocol = skb->protocol;
1813
1814         /*
1815          *      Charge the memory to the socket. This is done specifically
1816          *      to prevent sockets using all the memory up.
1817          */
1818
1819         if (sock_queue_rcv_skb(sk, skb) == 0)
1820                 return 0;
1821
1822 out:
1823         kfree_skb(skb);
1824 oom:
1825         return 0;
1826 }
1827
1828
1829 /*
1830  *      Output a raw packet to a device layer. This bypasses all the other
1831  *      protocol layers and you must therefore supply it with a complete frame
1832  */
1833
1834 static int packet_sendmsg_spkt(struct socket *sock, struct msghdr *msg,
1835                                size_t len)
1836 {
1837         struct sock *sk = sock->sk;
1838         DECLARE_SOCKADDR(struct sockaddr_pkt *, saddr, msg->msg_name);
1839         struct sk_buff *skb = NULL;
1840         struct net_device *dev;
1841         struct sockcm_cookie sockc;
1842         __be16 proto = 0;
1843         int err;
1844         int extra_len = 0;
1845
1846         /*
1847          *      Get and verify the address.
1848          */
1849
1850         if (saddr) {
1851                 if (msg->msg_namelen < sizeof(struct sockaddr))
1852                         return -EINVAL;
1853                 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
1854                         proto = saddr->spkt_protocol;
1855         } else
1856                 return -ENOTCONN;       /* SOCK_PACKET must be sent giving an address */
1857
1858         /*
1859          *      Find the device first to size check it
1860          */
1861
1862         saddr->spkt_device[sizeof(saddr->spkt_device) - 1] = 0;
1863 retry:
1864         rcu_read_lock();
1865         dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
1866         err = -ENODEV;
1867         if (dev == NULL)
1868                 goto out_unlock;
1869
1870         err = -ENETDOWN;
1871         if (!(dev->flags & IFF_UP))
1872                 goto out_unlock;
1873
1874         /*
1875          * You may not queue a frame bigger than the mtu. This is the lowest level
1876          * raw protocol and you must do your own fragmentation at this level.
1877          */
1878
1879         if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
1880                 if (!netif_supports_nofcs(dev)) {
1881                         err = -EPROTONOSUPPORT;
1882                         goto out_unlock;
1883                 }
1884                 extra_len = 4; /* We're doing our own CRC */
1885         }
1886
1887         err = -EMSGSIZE;
1888         if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN + extra_len)
1889                 goto out_unlock;
1890
1891         if (!skb) {
1892                 size_t reserved = LL_RESERVED_SPACE(dev);
1893                 int tlen = dev->needed_tailroom;
1894                 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
1895
1896                 rcu_read_unlock();
1897                 skb = sock_wmalloc(sk, len + reserved + tlen, 0, GFP_KERNEL);
1898                 if (skb == NULL)
1899                         return -ENOBUFS;
1900                 /* FIXME: Save some space for broken drivers that write a hard
1901                  * header at transmission time by themselves. PPP is the notable
1902                  * one here. This should really be fixed at the driver level.
1903                  */
1904                 skb_reserve(skb, reserved);
1905                 skb_reset_network_header(skb);
1906
1907                 /* Try to align data part correctly */
1908                 if (hhlen) {
1909                         skb->data -= hhlen;
1910                         skb->tail -= hhlen;
1911                         if (len < hhlen)
1912                                 skb_reset_network_header(skb);
1913                 }
1914                 err = memcpy_from_msg(skb_put(skb, len), msg, len);
1915                 if (err)
1916                         goto out_free;
1917                 goto retry;
1918         }
1919
1920         if (!dev_validate_header(dev, skb->data, len)) {
1921                 err = -EINVAL;
1922                 goto out_unlock;
1923         }
1924         if (len > (dev->mtu + dev->hard_header_len + extra_len) &&
1925             !packet_extra_vlan_len_allowed(dev, skb)) {
1926                 err = -EMSGSIZE;
1927                 goto out_unlock;
1928         }
1929
1930         sockc.tsflags = sk->sk_tsflags;
1931         if (msg->msg_controllen) {
1932                 err = sock_cmsg_send(sk, msg, &sockc);
1933                 if (unlikely(err))
1934                         goto out_unlock;
1935         }
1936
1937         skb->protocol = proto;
1938         skb->dev = dev;
1939         skb->priority = sk->sk_priority;
1940         skb->mark = sk->sk_mark;
1941
1942         sock_tx_timestamp(sk, sockc.tsflags, &skb_shinfo(skb)->tx_flags);
1943
1944         if (unlikely(extra_len == 4))
1945                 skb->no_fcs = 1;
1946
1947         skb_probe_transport_header(skb, 0);
1948
1949         dev_queue_xmit(skb);
1950         rcu_read_unlock();
1951         return len;
1952
1953 out_unlock:
1954         rcu_read_unlock();
1955 out_free:
1956         kfree_skb(skb);
1957         return err;
1958 }
1959
1960 static unsigned int run_filter(struct sk_buff *skb,
1961                                const struct sock *sk,
1962                                unsigned int res)
1963 {
1964         struct sk_filter *filter;
1965
1966         rcu_read_lock();
1967         filter = rcu_dereference(sk->sk_filter);
1968         if (filter != NULL)
1969                 res = bpf_prog_run_clear_cb(filter->prog, skb);
1970         rcu_read_unlock();
1971
1972         return res;
1973 }
1974
1975 static int packet_rcv_vnet(struct msghdr *msg, const struct sk_buff *skb,
1976                            size_t *len)
1977 {
1978         struct virtio_net_hdr vnet_hdr;
1979
1980         if (*len < sizeof(vnet_hdr))
1981                 return -EINVAL;
1982         *len -= sizeof(vnet_hdr);
1983
1984         if (virtio_net_hdr_from_skb(skb, &vnet_hdr, vio_le()))
1985                 return -EINVAL;
1986
1987         return memcpy_to_msg(msg, (void *)&vnet_hdr, sizeof(vnet_hdr));
1988 }
1989
1990 /*
1991  * This function makes lazy skb cloning in hope that most of packets
1992  * are discarded by BPF.
1993  *
1994  * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1995  * and skb->cb are mangled. It works because (and until) packets
1996  * falling here are owned by current CPU. Output packets are cloned
1997  * by dev_queue_xmit_nit(), input packets are processed by net_bh
1998  * sequencially, so that if we return skb to original state on exit,
1999  * we will not harm anyone.
2000  */
2001
2002 static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
2003                       struct packet_type *pt, struct net_device *orig_dev)
2004 {
2005         struct sock *sk;
2006         struct sockaddr_ll *sll;
2007         struct packet_sock *po;
2008         u8 *skb_head = skb->data;
2009         int skb_len = skb->len;
2010         unsigned int snaplen, res;
2011         bool is_drop_n_account = false;
2012
2013         if (skb->pkt_type == PACKET_LOOPBACK)
2014                 goto drop;
2015
2016         sk = pt->af_packet_priv;
2017         po = pkt_sk(sk);
2018
2019         if (!net_eq(dev_net(dev), sock_net(sk)))
2020                 goto drop;
2021
2022         skb->dev = dev;
2023
2024         if (dev->header_ops) {
2025                 /* The device has an explicit notion of ll header,
2026                  * exported to higher levels.
2027                  *
2028                  * Otherwise, the device hides details of its frame
2029                  * structure, so that corresponding packet head is
2030                  * never delivered to user.
2031                  */
2032                 if (sk->sk_type != SOCK_DGRAM)
2033                         skb_push(skb, skb->data - skb_mac_header(skb));
2034                 else if (skb->pkt_type == PACKET_OUTGOING) {
2035                         /* Special case: outgoing packets have ll header at head */
2036                         skb_pull(skb, skb_network_offset(skb));
2037                 }
2038         }
2039
2040         snaplen = skb->len;
2041
2042         res = run_filter(skb, sk, snaplen);
2043         if (!res)
2044                 goto drop_n_restore;
2045         if (snaplen > res)
2046                 snaplen = res;
2047
2048         if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2049                 goto drop_n_acct;
2050
2051         if (skb_shared(skb)) {
2052                 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
2053                 if (nskb == NULL)
2054                         goto drop_n_acct;
2055
2056                 if (skb_head != skb->data) {
2057                         skb->data = skb_head;
2058                         skb->len = skb_len;
2059                 }
2060                 consume_skb(skb);
2061                 skb = nskb;
2062         }
2063
2064         sock_skb_cb_check_size(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8);
2065
2066         sll = &PACKET_SKB_CB(skb)->sa.ll;
2067         sll->sll_hatype = dev->type;
2068         sll->sll_pkttype = skb->pkt_type;
2069         if (unlikely(po->origdev))
2070                 sll->sll_ifindex = orig_dev->ifindex;
2071         else
2072                 sll->sll_ifindex = dev->ifindex;
2073
2074         sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
2075
2076         /* sll->sll_family and sll->sll_protocol are set in packet_recvmsg().
2077          * Use their space for storing the original skb length.
2078          */
2079         PACKET_SKB_CB(skb)->sa.origlen = skb->len;
2080
2081         if (pskb_trim(skb, snaplen))
2082                 goto drop_n_acct;
2083
2084         skb_set_owner_r(skb, sk);
2085         skb->dev = NULL;
2086         skb_dst_drop(skb);
2087
2088         /* drop conntrack reference */
2089         nf_reset(skb);
2090
2091         spin_lock(&sk->sk_receive_queue.lock);
2092         po->stats.stats1.tp_packets++;
2093         sock_skb_set_dropcount(sk, skb);
2094         __skb_queue_tail(&sk->sk_receive_queue, skb);
2095         spin_unlock(&sk->sk_receive_queue.lock);
2096         sk->sk_data_ready(sk);
2097         return 0;
2098
2099 drop_n_acct:
2100         is_drop_n_account = true;
2101         spin_lock(&sk->sk_receive_queue.lock);
2102         po->stats.stats1.tp_drops++;
2103         atomic_inc(&sk->sk_drops);
2104         spin_unlock(&sk->sk_receive_queue.lock);
2105
2106 drop_n_restore:
2107         if (skb_head != skb->data && skb_shared(skb)) {
2108                 skb->data = skb_head;
2109                 skb->len = skb_len;
2110         }
2111 drop:
2112         if (!is_drop_n_account)
2113                 consume_skb(skb);
2114         else
2115                 kfree_skb(skb);
2116         return 0;
2117 }
2118
2119 static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
2120                        struct packet_type *pt, struct net_device *orig_dev)
2121 {
2122         struct sock *sk;
2123         struct packet_sock *po;
2124         struct sockaddr_ll *sll;
2125         union tpacket_uhdr h;
2126         u8 *skb_head = skb->data;
2127         int skb_len = skb->len;
2128         unsigned int snaplen, res;
2129         unsigned long status = TP_STATUS_USER;
2130         unsigned short macoff, netoff, hdrlen;
2131         struct sk_buff *copy_skb = NULL;
2132         struct timespec ts;
2133         __u32 ts_status;
2134         bool is_drop_n_account = false;
2135
2136         /* struct tpacket{2,3}_hdr is aligned to a multiple of TPACKET_ALIGNMENT.
2137          * We may add members to them until current aligned size without forcing
2138          * userspace to call getsockopt(..., PACKET_HDRLEN, ...).
2139          */
2140         BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h2)) != 32);
2141         BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h3)) != 48);
2142
2143         if (skb->pkt_type == PACKET_LOOPBACK)
2144                 goto drop;
2145
2146         sk = pt->af_packet_priv;
2147         po = pkt_sk(sk);
2148
2149         if (!net_eq(dev_net(dev), sock_net(sk)))
2150                 goto drop;
2151
2152         if (dev->header_ops) {
2153                 if (sk->sk_type != SOCK_DGRAM)
2154                         skb_push(skb, skb->data - skb_mac_header(skb));
2155                 else if (skb->pkt_type == PACKET_OUTGOING) {
2156                         /* Special case: outgoing packets have ll header at head */
2157                         skb_pull(skb, skb_network_offset(skb));
2158                 }
2159         }
2160
2161         snaplen = skb->len;
2162
2163         res = run_filter(skb, sk, snaplen);
2164         if (!res)
2165                 goto drop_n_restore;
2166
2167         if (skb->ip_summed == CHECKSUM_PARTIAL)
2168                 status |= TP_STATUS_CSUMNOTREADY;
2169         else if (skb->pkt_type != PACKET_OUTGOING &&
2170                  (skb->ip_summed == CHECKSUM_COMPLETE ||
2171                   skb_csum_unnecessary(skb)))
2172                 status |= TP_STATUS_CSUM_VALID;
2173
2174         if (snaplen > res)
2175                 snaplen = res;
2176
2177         if (sk->sk_type == SOCK_DGRAM) {
2178                 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
2179                                   po->tp_reserve;
2180         } else {
2181                 unsigned int maclen = skb_network_offset(skb);
2182                 netoff = TPACKET_ALIGN(po->tp_hdrlen +
2183                                        (maclen < 16 ? 16 : maclen)) +
2184                                        po->tp_reserve;
2185                 if (po->has_vnet_hdr)
2186                         netoff += sizeof(struct virtio_net_hdr);
2187                 macoff = netoff - maclen;
2188         }
2189         if (po->tp_version <= TPACKET_V2) {
2190                 if (macoff + snaplen > po->rx_ring.frame_size) {
2191                         if (po->copy_thresh &&
2192                             atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
2193                                 if (skb_shared(skb)) {
2194                                         copy_skb = skb_clone(skb, GFP_ATOMIC);
2195                                 } else {
2196                                         copy_skb = skb_get(skb);
2197                                         skb_head = skb->data;
2198                                 }
2199                                 if (copy_skb)
2200                                         skb_set_owner_r(copy_skb, sk);
2201                         }
2202                         snaplen = po->rx_ring.frame_size - macoff;
2203                         if ((int)snaplen < 0)
2204                                 snaplen = 0;
2205                 }
2206         } else if (unlikely(macoff + snaplen >
2207                             GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len)) {
2208                 u32 nval;
2209
2210                 nval = GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len - macoff;
2211                 pr_err_once("tpacket_rcv: packet too big, clamped from %u to %u. macoff=%u\n",
2212                             snaplen, nval, macoff);
2213                 snaplen = nval;
2214                 if (unlikely((int)snaplen < 0)) {
2215                         snaplen = 0;
2216                         macoff = GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len;
2217                 }
2218         }
2219         spin_lock(&sk->sk_receive_queue.lock);
2220         h.raw = packet_current_rx_frame(po, skb,
2221                                         TP_STATUS_KERNEL, (macoff+snaplen));
2222         if (!h.raw)
2223                 goto drop_n_account;
2224         if (po->tp_version <= TPACKET_V2) {
2225                 packet_increment_rx_head(po, &po->rx_ring);
2226         /*
2227          * LOSING will be reported till you read the stats,
2228          * because it's COR - Clear On Read.
2229          * Anyways, moving it for V1/V2 only as V3 doesn't need this
2230          * at packet level.
2231          */
2232                 if (po->stats.stats1.tp_drops)
2233                         status |= TP_STATUS_LOSING;
2234         }
2235         po->stats.stats1.tp_packets++;
2236         if (copy_skb) {
2237                 status |= TP_STATUS_COPY;
2238                 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
2239         }
2240         spin_unlock(&sk->sk_receive_queue.lock);
2241
2242         if (po->has_vnet_hdr) {
2243                 if (virtio_net_hdr_from_skb(skb, h.raw + macoff -
2244                                             sizeof(struct virtio_net_hdr),
2245                                             vio_le())) {
2246                         spin_lock(&sk->sk_receive_queue.lock);
2247                         goto drop_n_account;
2248                 }
2249         }
2250
2251         skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
2252
2253         if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
2254                 getnstimeofday(&ts);
2255
2256         status |= ts_status;
2257
2258         switch (po->tp_version) {
2259         case TPACKET_V1:
2260                 h.h1->tp_len = skb->len;
2261                 h.h1->tp_snaplen = snaplen;
2262                 h.h1->tp_mac = macoff;
2263                 h.h1->tp_net = netoff;
2264                 h.h1->tp_sec = ts.tv_sec;
2265                 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
2266                 hdrlen = sizeof(*h.h1);
2267                 break;
2268         case TPACKET_V2:
2269                 h.h2->tp_len = skb->len;
2270                 h.h2->tp_snaplen = snaplen;
2271                 h.h2->tp_mac = macoff;
2272                 h.h2->tp_net = netoff;
2273                 h.h2->tp_sec = ts.tv_sec;
2274                 h.h2->tp_nsec = ts.tv_nsec;
2275                 if (skb_vlan_tag_present(skb)) {
2276                         h.h2->tp_vlan_tci = skb_vlan_tag_get(skb);
2277                         h.h2->tp_vlan_tpid = ntohs(skb->vlan_proto);
2278                         status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
2279                 } else {
2280                         h.h2->tp_vlan_tci = 0;
2281                         h.h2->tp_vlan_tpid = 0;
2282                 }
2283                 memset(h.h2->tp_padding, 0, sizeof(h.h2->tp_padding));
2284                 hdrlen = sizeof(*h.h2);
2285                 break;
2286         case TPACKET_V3:
2287                 /* tp_nxt_offset,vlan are already populated above.
2288                  * So DONT clear those fields here
2289                  */
2290                 h.h3->tp_status |= status;
2291                 h.h3->tp_len = skb->len;
2292                 h.h3->tp_snaplen = snaplen;
2293                 h.h3->tp_mac = macoff;
2294                 h.h3->tp_net = netoff;
2295                 h.h3->tp_sec  = ts.tv_sec;
2296                 h.h3->tp_nsec = ts.tv_nsec;
2297                 memset(h.h3->tp_padding, 0, sizeof(h.h3->tp_padding));
2298                 hdrlen = sizeof(*h.h3);
2299                 break;
2300         default:
2301                 BUG();
2302         }
2303
2304         sll = h.raw + TPACKET_ALIGN(hdrlen);
2305         sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
2306         sll->sll_family = AF_PACKET;
2307         sll->sll_hatype = dev->type;
2308         sll->sll_protocol = skb->protocol;
2309         sll->sll_pkttype = skb->pkt_type;
2310         if (unlikely(po->origdev))
2311                 sll->sll_ifindex = orig_dev->ifindex;
2312         else
2313                 sll->sll_ifindex = dev->ifindex;
2314
2315         smp_mb();
2316
2317 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
2318         if (po->tp_version <= TPACKET_V2) {
2319                 u8 *start, *end;
2320
2321                 end = (u8 *) PAGE_ALIGN((unsigned long) h.raw +
2322                                         macoff + snaplen);
2323
2324                 for (start = h.raw; start < end; start += PAGE_SIZE)
2325                         flush_dcache_page(pgv_to_page(start));
2326         }
2327         smp_wmb();
2328 #endif
2329
2330         if (po->tp_version <= TPACKET_V2) {
2331                 __packet_set_status(po, h.raw, status);
2332                 sk->sk_data_ready(sk);
2333         } else {
2334                 prb_clear_blk_fill_status(&po->rx_ring);
2335         }
2336
2337 drop_n_restore:
2338         if (skb_head != skb->data && skb_shared(skb)) {
2339                 skb->data = skb_head;
2340                 skb->len = skb_len;
2341         }
2342 drop:
2343         if (!is_drop_n_account)
2344                 consume_skb(skb);
2345         else
2346                 kfree_skb(skb);
2347         return 0;
2348
2349 drop_n_account:
2350         is_drop_n_account = true;
2351         po->stats.stats1.tp_drops++;
2352         spin_unlock(&sk->sk_receive_queue.lock);
2353
2354         sk->sk_data_ready(sk);
2355         kfree_skb(copy_skb);
2356         goto drop_n_restore;
2357 }
2358
2359 static void tpacket_destruct_skb(struct sk_buff *skb)
2360 {
2361         struct packet_sock *po = pkt_sk(skb->sk);
2362
2363         if (likely(po->tx_ring.pg_vec)) {
2364                 void *ph;
2365                 __u32 ts;
2366
2367                 ph = skb_shinfo(skb)->destructor_arg;
2368                 packet_dec_pending(&po->tx_ring);
2369
2370                 ts = __packet_set_timestamp(po, ph, skb);
2371                 __packet_set_status(po, ph, TP_STATUS_AVAILABLE | ts);
2372         }
2373
2374         sock_wfree(skb);
2375 }
2376
2377 static void tpacket_set_protocol(const struct net_device *dev,
2378                                  struct sk_buff *skb)
2379 {
2380         if (dev->type == ARPHRD_ETHER) {
2381                 skb_reset_mac_header(skb);
2382                 skb->protocol = eth_hdr(skb)->h_proto;
2383         }
2384 }
2385
2386 static int __packet_snd_vnet_parse(struct virtio_net_hdr *vnet_hdr, size_t len)
2387 {
2388         if ((vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2389             (__virtio16_to_cpu(vio_le(), vnet_hdr->csum_start) +
2390              __virtio16_to_cpu(vio_le(), vnet_hdr->csum_offset) + 2 >
2391               __virtio16_to_cpu(vio_le(), vnet_hdr->hdr_len)))
2392                 vnet_hdr->hdr_len = __cpu_to_virtio16(vio_le(),
2393                          __virtio16_to_cpu(vio_le(), vnet_hdr->csum_start) +
2394                         __virtio16_to_cpu(vio_le(), vnet_hdr->csum_offset) + 2);
2395
2396         if (__virtio16_to_cpu(vio_le(), vnet_hdr->hdr_len) > len)
2397                 return -EINVAL;
2398
2399         return 0;
2400 }
2401
2402 static int packet_snd_vnet_parse(struct msghdr *msg, size_t *len,
2403                                  struct virtio_net_hdr *vnet_hdr)
2404 {
2405         if (*len < sizeof(*vnet_hdr))
2406                 return -EINVAL;
2407         *len -= sizeof(*vnet_hdr);
2408
2409         if (!copy_from_iter_full(vnet_hdr, sizeof(*vnet_hdr), &msg->msg_iter))
2410                 return -EFAULT;
2411
2412         return __packet_snd_vnet_parse(vnet_hdr, *len);
2413 }
2414
2415 static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
2416                 void *frame, struct net_device *dev, void *data, int tp_len,
2417                 __be16 proto, unsigned char *addr, int hlen, int copylen,
2418                 const struct sockcm_cookie *sockc)
2419 {
2420         union tpacket_uhdr ph;
2421         int to_write, offset, len, nr_frags, len_max;
2422         struct socket *sock = po->sk.sk_socket;
2423         struct page *page;
2424         int err;
2425
2426         ph.raw = frame;
2427
2428         skb->protocol = proto;
2429         skb->dev = dev;
2430         skb->priority = po->sk.sk_priority;
2431         skb->mark = po->sk.sk_mark;
2432         sock_tx_timestamp(&po->sk, sockc->tsflags, &skb_shinfo(skb)->tx_flags);
2433         skb_shinfo(skb)->destructor_arg = ph.raw;
2434
2435         skb_reserve(skb, hlen);
2436         skb_reset_network_header(skb);
2437
2438         to_write = tp_len;
2439
2440         if (sock->type == SOCK_DGRAM) {
2441                 err = dev_hard_header(skb, dev, ntohs(proto), addr,
2442                                 NULL, tp_len);
2443                 if (unlikely(err < 0))
2444                         return -EINVAL;
2445         } else if (copylen) {
2446                 int hdrlen = min_t(int, copylen, tp_len);
2447
2448                 skb_push(skb, dev->hard_header_len);
2449                 skb_put(skb, copylen - dev->hard_header_len);
2450                 err = skb_store_bits(skb, 0, data, hdrlen);
2451                 if (unlikely(err))
2452                         return err;
2453                 if (!dev_validate_header(dev, skb->data, hdrlen))
2454                         return -EINVAL;
2455                 if (!skb->protocol)
2456                         tpacket_set_protocol(dev, skb);
2457
2458                 data += hdrlen;
2459                 to_write -= hdrlen;
2460         }
2461
2462         offset = offset_in_page(data);
2463         len_max = PAGE_SIZE - offset;
2464         len = ((to_write > len_max) ? len_max : to_write);
2465
2466         skb->data_len = to_write;
2467         skb->len += to_write;
2468         skb->truesize += to_write;
2469         atomic_add(to_write, &po->sk.sk_wmem_alloc);
2470
2471         while (likely(to_write)) {
2472                 nr_frags = skb_shinfo(skb)->nr_frags;
2473
2474                 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
2475                         pr_err("Packet exceed the number of skb frags(%lu)\n",
2476                                MAX_SKB_FRAGS);
2477                         return -EFAULT;
2478                 }
2479
2480                 page = pgv_to_page(data);
2481                 data += len;
2482                 flush_dcache_page(page);
2483                 get_page(page);
2484                 skb_fill_page_desc(skb, nr_frags, page, offset, len);
2485                 to_write -= len;
2486                 offset = 0;
2487                 len_max = PAGE_SIZE;
2488                 len = ((to_write > len_max) ? len_max : to_write);
2489         }
2490
2491         skb_probe_transport_header(skb, 0);
2492
2493         return tp_len;
2494 }
2495
2496 static int tpacket_parse_header(struct packet_sock *po, void *frame,
2497                                 int size_max, void **data)
2498 {
2499         union tpacket_uhdr ph;
2500         int tp_len, off;
2501
2502         ph.raw = frame;
2503
2504         switch (po->tp_version) {
2505         case TPACKET_V3:
2506                 if (ph.h3->tp_next_offset != 0) {
2507                         pr_warn_once("variable sized slot not supported");
2508                         return -EINVAL;
2509                 }
2510                 tp_len = ph.h3->tp_len;
2511                 break;
2512         case TPACKET_V2:
2513                 tp_len = ph.h2->tp_len;
2514                 break;
2515         default:
2516                 tp_len = ph.h1->tp_len;
2517                 break;
2518         }
2519         if (unlikely(tp_len > size_max)) {
2520                 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
2521                 return -EMSGSIZE;
2522         }
2523
2524         if (unlikely(po->tp_tx_has_off)) {
2525                 int off_min, off_max;
2526
2527                 off_min = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2528                 off_max = po->tx_ring.frame_size - tp_len;
2529                 if (po->sk.sk_type == SOCK_DGRAM) {
2530                         switch (po->tp_version) {
2531                         case TPACKET_V3:
2532                                 off = ph.h3->tp_net;
2533                                 break;
2534                         case TPACKET_V2:
2535                                 off = ph.h2->tp_net;
2536                                 break;
2537                         default:
2538                                 off = ph.h1->tp_net;
2539                                 break;
2540                         }
2541                 } else {
2542                         switch (po->tp_version) {
2543                         case TPACKET_V3:
2544                                 off = ph.h3->tp_mac;
2545                                 break;
2546                         case TPACKET_V2:
2547                                 off = ph.h2->tp_mac;
2548                                 break;
2549                         default:
2550                                 off = ph.h1->tp_mac;
2551                                 break;
2552                         }
2553                 }
2554                 if (unlikely((off < off_min) || (off_max < off)))
2555                         return -EINVAL;
2556         } else {
2557                 off = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2558         }
2559
2560         *data = frame + off;
2561         return tp_len;
2562 }
2563
2564 static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
2565 {
2566         struct sk_buff *skb;
2567         struct net_device *dev;
2568         struct virtio_net_hdr *vnet_hdr = NULL;
2569         struct sockcm_cookie sockc;
2570         __be16 proto;
2571         int err, reserve = 0;
2572         void *ph;
2573         DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
2574         bool need_wait = !(msg->msg_flags & MSG_DONTWAIT);
2575         int tp_len, size_max;
2576         unsigned char *addr;
2577         void *data;
2578         int len_sum = 0;
2579         int status = TP_STATUS_AVAILABLE;
2580         int hlen, tlen, copylen = 0;
2581
2582         mutex_lock(&po->pg_vec_lock);
2583
2584         if (likely(saddr == NULL)) {
2585                 dev     = packet_cached_dev_get(po);
2586                 proto   = po->num;
2587                 addr    = NULL;
2588         } else {
2589                 err = -EINVAL;
2590                 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2591                         goto out;
2592                 if (msg->msg_namelen < (saddr->sll_halen
2593                                         + offsetof(struct sockaddr_ll,
2594                                                 sll_addr)))
2595                         goto out;
2596                 proto   = saddr->sll_protocol;
2597                 addr    = saddr->sll_addr;
2598                 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
2599         }
2600
2601         sockc.tsflags = po->sk.sk_tsflags;
2602         if (msg->msg_controllen) {
2603                 err = sock_cmsg_send(&po->sk, msg, &sockc);
2604                 if (unlikely(err))
2605                         goto out;
2606         }
2607
2608         err = -ENXIO;
2609         if (unlikely(dev == NULL))
2610                 goto out;
2611         err = -ENETDOWN;
2612         if (unlikely(!(dev->flags & IFF_UP)))
2613                 goto out_put;
2614
2615         if (po->sk.sk_socket->type == SOCK_RAW)
2616                 reserve = dev->hard_header_len;
2617         size_max = po->tx_ring.frame_size
2618                 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
2619
2620         if ((size_max > dev->mtu + reserve + VLAN_HLEN) && !po->has_vnet_hdr)
2621                 size_max = dev->mtu + reserve + VLAN_HLEN;
2622
2623         do {
2624                 ph = packet_current_frame(po, &po->tx_ring,
2625                                           TP_STATUS_SEND_REQUEST);
2626                 if (unlikely(ph == NULL)) {
2627                         if (need_wait && need_resched())
2628                                 schedule();
2629                         continue;
2630                 }
2631
2632                 skb = NULL;
2633                 tp_len = tpacket_parse_header(po, ph, size_max, &data);
2634                 if (tp_len < 0)
2635                         goto tpacket_error;
2636
2637                 status = TP_STATUS_SEND_REQUEST;
2638                 hlen = LL_RESERVED_SPACE(dev);
2639                 tlen = dev->needed_tailroom;
2640                 if (po->has_vnet_hdr) {
2641                         vnet_hdr = data;
2642                         data += sizeof(*vnet_hdr);
2643                         tp_len -= sizeof(*vnet_hdr);
2644                         if (tp_len < 0 ||
2645                             __packet_snd_vnet_parse(vnet_hdr, tp_len)) {
2646                                 tp_len = -EINVAL;
2647                                 goto tpacket_error;
2648                         }
2649                         copylen = __virtio16_to_cpu(vio_le(),
2650                                                     vnet_hdr->hdr_len);
2651                 }
2652                 copylen = max_t(int, copylen, dev->hard_header_len);
2653                 skb = sock_alloc_send_skb(&po->sk,
2654                                 hlen + tlen + sizeof(struct sockaddr_ll) +
2655                                 (copylen - dev->hard_header_len),
2656                                 !need_wait, &err);
2657
2658                 if (unlikely(skb == NULL)) {
2659                         /* we assume the socket was initially writeable ... */
2660                         if (likely(len_sum > 0))
2661                                 err = len_sum;
2662                         goto out_status;
2663                 }
2664                 tp_len = tpacket_fill_skb(po, skb, ph, dev, data, tp_len, proto,
2665                                           addr, hlen, copylen, &sockc);
2666                 if (likely(tp_len >= 0) &&
2667                     tp_len > dev->mtu + reserve &&
2668                     !po->has_vnet_hdr &&
2669                     !packet_extra_vlan_len_allowed(dev, skb))
2670                         tp_len = -EMSGSIZE;
2671
2672                 if (unlikely(tp_len < 0)) {
2673 tpacket_error:
2674                         if (po->tp_loss) {
2675                                 __packet_set_status(po, ph,
2676                                                 TP_STATUS_AVAILABLE);
2677                                 packet_increment_head(&po->tx_ring);
2678                                 kfree_skb(skb);
2679                                 continue;
2680                         } else {
2681                                 status = TP_STATUS_WRONG_FORMAT;
2682                                 err = tp_len;
2683                                 goto out_status;
2684                         }
2685                 }
2686
2687                 if (po->has_vnet_hdr && virtio_net_hdr_to_skb(skb, vnet_hdr,
2688                                                               vio_le())) {
2689                         tp_len = -EINVAL;
2690                         goto tpacket_error;
2691                 }
2692
2693                 packet_pick_tx_queue(dev, skb);
2694
2695                 skb->destructor = tpacket_destruct_skb;
2696                 __packet_set_status(po, ph, TP_STATUS_SENDING);
2697                 packet_inc_pending(&po->tx_ring);
2698
2699                 status = TP_STATUS_SEND_REQUEST;
2700                 err = po->xmit(skb);
2701                 if (unlikely(err > 0)) {
2702                         err = net_xmit_errno(err);
2703                         if (err && __packet_get_status(po, ph) ==
2704                                    TP_STATUS_AVAILABLE) {
2705                                 /* skb was destructed already */
2706                                 skb = NULL;
2707                                 goto out_status;
2708                         }
2709                         /*
2710                          * skb was dropped but not destructed yet;
2711                          * let's treat it like congestion or err < 0
2712                          */
2713                         err = 0;
2714                 }
2715                 packet_increment_head(&po->tx_ring);
2716                 len_sum += tp_len;
2717         } while (likely((ph != NULL) ||
2718                 /* Note: packet_read_pending() might be slow if we have
2719                  * to call it as it's per_cpu variable, but in fast-path
2720                  * we already short-circuit the loop with the first
2721                  * condition, and luckily don't have to go that path
2722                  * anyway.
2723                  */
2724                  (need_wait && packet_read_pending(&po->tx_ring))));
2725
2726         err = len_sum;
2727         goto out_put;
2728
2729 out_status:
2730         __packet_set_status(po, ph, status);
2731         kfree_skb(skb);
2732 out_put:
2733         dev_put(dev);
2734 out:
2735         mutex_unlock(&po->pg_vec_lock);
2736         return err;
2737 }
2738
2739 static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2740                                         size_t reserve, size_t len,
2741                                         size_t linear, int noblock,
2742                                         int *err)
2743 {
2744         struct sk_buff *skb;
2745
2746         /* Under a page?  Don't bother with paged skb. */
2747         if (prepad + len < PAGE_SIZE || !linear)
2748                 linear = len;
2749
2750         skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
2751                                    err, 0);
2752         if (!skb)
2753                 return NULL;
2754
2755         skb_reserve(skb, reserve);
2756         skb_put(skb, linear);
2757         skb->data_len = len - linear;
2758         skb->len += len - linear;
2759
2760         return skb;
2761 }
2762
2763 static int packet_snd(struct socket *sock, struct msghdr *msg, size_t len)
2764 {
2765         struct sock *sk = sock->sk;
2766         DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
2767         struct sk_buff *skb;
2768         struct net_device *dev;
2769         __be16 proto;
2770         unsigned char *addr;
2771         int err, reserve = 0;
2772         struct sockcm_cookie sockc;
2773         struct virtio_net_hdr vnet_hdr = { 0 };
2774         int offset = 0;
2775         struct packet_sock *po = pkt_sk(sk);
2776         int hlen, tlen;
2777         int extra_len = 0;
2778
2779         /*
2780          *      Get and verify the address.
2781          */
2782
2783         if (likely(saddr == NULL)) {
2784                 dev     = packet_cached_dev_get(po);
2785                 proto   = po->num;
2786                 addr    = NULL;
2787         } else {
2788                 err = -EINVAL;
2789                 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2790                         goto out;
2791                 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2792                         goto out;
2793                 proto   = saddr->sll_protocol;
2794                 addr    = saddr->sll_addr;
2795                 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
2796         }
2797
2798         err = -ENXIO;
2799         if (unlikely(dev == NULL))
2800                 goto out_unlock;
2801         err = -ENETDOWN;
2802         if (unlikely(!(dev->flags & IFF_UP)))
2803                 goto out_unlock;
2804
2805         sockc.tsflags = sk->sk_tsflags;
2806         sockc.mark = sk->sk_mark;
2807         if (msg->msg_controllen) {
2808                 err = sock_cmsg_send(sk, msg, &sockc);
2809                 if (unlikely(err))
2810                         goto out_unlock;
2811         }
2812
2813         if (sock->type == SOCK_RAW)
2814                 reserve = dev->hard_header_len;
2815         if (po->has_vnet_hdr) {
2816                 err = packet_snd_vnet_parse(msg, &len, &vnet_hdr);
2817                 if (err)
2818                         goto out_unlock;
2819         }
2820
2821         if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2822                 if (!netif_supports_nofcs(dev)) {
2823                         err = -EPROTONOSUPPORT;
2824                         goto out_unlock;
2825                 }
2826                 extra_len = 4; /* We're doing our own CRC */
2827         }
2828
2829         err = -EMSGSIZE;
2830         if (!vnet_hdr.gso_type &&
2831             (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
2832                 goto out_unlock;
2833
2834         err = -ENOBUFS;
2835         hlen = LL_RESERVED_SPACE(dev);
2836         tlen = dev->needed_tailroom;
2837         skb = packet_alloc_skb(sk, hlen + tlen, hlen, len,
2838                                __virtio16_to_cpu(vio_le(), vnet_hdr.hdr_len),
2839                                msg->msg_flags & MSG_DONTWAIT, &err);
2840         if (skb == NULL)
2841                 goto out_unlock;
2842
2843         skb_set_network_header(skb, reserve);
2844
2845         err = -EINVAL;
2846         if (sock->type == SOCK_DGRAM) {
2847                 offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len);
2848                 if (unlikely(offset < 0))
2849                         goto out_free;
2850         }
2851
2852         /* Returns -EFAULT on error */
2853         err = skb_copy_datagram_from_iter(skb, offset, &msg->msg_iter, len);
2854         if (err)
2855                 goto out_free;
2856
2857         if (sock->type == SOCK_RAW &&
2858             !dev_validate_header(dev, skb->data, len)) {
2859                 err = -EINVAL;
2860                 goto out_free;
2861         }
2862
2863         sock_tx_timestamp(sk, sockc.tsflags, &skb_shinfo(skb)->tx_flags);
2864
2865         if (!vnet_hdr.gso_type && (len > dev->mtu + reserve + extra_len) &&
2866             !packet_extra_vlan_len_allowed(dev, skb)) {
2867                 err = -EMSGSIZE;
2868                 goto out_free;
2869         }
2870
2871         skb->protocol = proto;
2872         skb->dev = dev;
2873         skb->priority = sk->sk_priority;
2874         skb->mark = sockc.mark;
2875
2876         packet_pick_tx_queue(dev, skb);
2877
2878         if (po->has_vnet_hdr) {
2879                 err = virtio_net_hdr_to_skb(skb, &vnet_hdr, vio_le());
2880                 if (err)
2881                         goto out_free;
2882                 len += sizeof(vnet_hdr);
2883         }
2884
2885         skb_probe_transport_header(skb, reserve);
2886
2887         if (unlikely(extra_len == 4))
2888                 skb->no_fcs = 1;
2889
2890         err = po->xmit(skb);
2891         if (err > 0 && (err = net_xmit_errno(err)) != 0)
2892                 goto out_unlock;
2893
2894         dev_put(dev);
2895
2896         return len;
2897
2898 out_free:
2899         kfree_skb(skb);
2900 out_unlock:
2901         if (dev)
2902                 dev_put(dev);
2903 out:
2904         return err;
2905 }
2906
2907 static int packet_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
2908 {
2909         struct sock *sk = sock->sk;
2910         struct packet_sock *po = pkt_sk(sk);
2911
2912         if (po->tx_ring.pg_vec)
2913                 return tpacket_snd(po, msg);
2914         else
2915                 return packet_snd(sock, msg, len);
2916 }
2917
2918 /*
2919  *      Close a PACKET socket. This is fairly simple. We immediately go
2920  *      to 'closed' state and remove our protocol entry in the device list.
2921  */
2922
2923 static int packet_release(struct socket *sock)
2924 {
2925         struct sock *sk = sock->sk;
2926         struct packet_sock *po;
2927         struct net *net;
2928         union tpacket_req_u req_u;
2929
2930         if (!sk)
2931                 return 0;
2932
2933         net = sock_net(sk);
2934         po = pkt_sk(sk);
2935
2936         mutex_lock(&net->packet.sklist_lock);
2937         sk_del_node_init_rcu(sk);
2938         mutex_unlock(&net->packet.sklist_lock);
2939
2940         preempt_disable();
2941         sock_prot_inuse_add(net, sk->sk_prot, -1);
2942         preempt_enable();
2943
2944         spin_lock(&po->bind_lock);
2945         unregister_prot_hook(sk, false);
2946         packet_cached_dev_reset(po);
2947
2948         if (po->prot_hook.dev) {
2949                 dev_put(po->prot_hook.dev);
2950                 po->prot_hook.dev = NULL;
2951         }
2952         spin_unlock(&po->bind_lock);
2953
2954         packet_flush_mclist(sk);
2955
2956         if (po->rx_ring.pg_vec) {
2957                 memset(&req_u, 0, sizeof(req_u));
2958                 packet_set_ring(sk, &req_u, 1, 0);
2959         }
2960
2961         if (po->tx_ring.pg_vec) {
2962                 memset(&req_u, 0, sizeof(req_u));
2963                 packet_set_ring(sk, &req_u, 1, 1);
2964         }
2965
2966         fanout_release(sk);
2967
2968         synchronize_net();
2969         /*
2970          *      Now the socket is dead. No more input will appear.
2971          */
2972         sock_orphan(sk);
2973         sock->sk = NULL;
2974
2975         /* Purge queues */
2976
2977         skb_queue_purge(&sk->sk_receive_queue);
2978         packet_free_pending(po);
2979         sk_refcnt_debug_release(sk);
2980
2981         sock_put(sk);
2982         return 0;
2983 }
2984
2985 /*
2986  *      Attach a packet hook.
2987  */
2988
2989 static int packet_do_bind(struct sock *sk, const char *name, int ifindex,
2990                           __be16 proto)
2991 {
2992         struct packet_sock *po = pkt_sk(sk);
2993         struct net_device *dev_curr;
2994         __be16 proto_curr;
2995         bool need_rehook;
2996         struct net_device *dev = NULL;
2997         int ret = 0;
2998         bool unlisted = false;
2999
3000         if (po->fanout)
3001                 return -EINVAL;
3002
3003         lock_sock(sk);
3004         spin_lock(&po->bind_lock);
3005         rcu_read_lock();
3006
3007         if (name) {
3008                 dev = dev_get_by_name_rcu(sock_net(sk), name);
3009                 if (!dev) {
3010                         ret = -ENODEV;
3011                         goto out_unlock;
3012                 }
3013         } else if (ifindex) {
3014                 dev = dev_get_by_index_rcu(sock_net(sk), ifindex);
3015                 if (!dev) {
3016                         ret = -ENODEV;
3017                         goto out_unlock;
3018                 }
3019         }
3020
3021         if (dev)
3022                 dev_hold(dev);
3023
3024         proto_curr = po->prot_hook.type;
3025         dev_curr = po->prot_hook.dev;
3026
3027         need_rehook = proto_curr != proto || dev_curr != dev;
3028
3029         if (need_rehook) {
3030                 if (po->running) {
3031                         rcu_read_unlock();
3032                         __unregister_prot_hook(sk, true);
3033                         rcu_read_lock();
3034                         dev_curr = po->prot_hook.dev;
3035                         if (dev)
3036                                 unlisted = !dev_get_by_index_rcu(sock_net(sk),
3037                                                                  dev->ifindex);
3038                 }
3039
3040                 po->num = proto;
3041                 po->prot_hook.type = proto;
3042
3043                 if (unlikely(unlisted)) {
3044                         dev_put(dev);
3045                         po->prot_hook.dev = NULL;
3046                         po->ifindex = -1;
3047                         packet_cached_dev_reset(po);
3048                 } else {
3049                         po->prot_hook.dev = dev;
3050                         po->ifindex = dev ? dev->ifindex : 0;
3051                         packet_cached_dev_assign(po, dev);
3052                 }
3053         }
3054         if (dev_curr)
3055                 dev_put(dev_curr);
3056
3057         if (proto == 0 || !need_rehook)
3058                 goto out_unlock;
3059
3060         if (!unlisted && (!dev || (dev->flags & IFF_UP))) {
3061                 register_prot_hook(sk);
3062         } else {
3063                 sk->sk_err = ENETDOWN;
3064                 if (!sock_flag(sk, SOCK_DEAD))
3065                         sk->sk_error_report(sk);
3066         }
3067
3068 out_unlock:
3069         rcu_read_unlock();
3070         spin_unlock(&po->bind_lock);
3071         release_sock(sk);
3072         return ret;
3073 }
3074
3075 /*
3076  *      Bind a packet socket to a device
3077  */
3078
3079 static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
3080                             int addr_len)
3081 {
3082         struct sock *sk = sock->sk;
3083         char name[15];
3084
3085         /*
3086          *      Check legality
3087          */
3088
3089         if (addr_len != sizeof(struct sockaddr))
3090                 return -EINVAL;
3091         strlcpy(name, uaddr->sa_data, sizeof(name));
3092
3093         return packet_do_bind(sk, name, 0, pkt_sk(sk)->num);
3094 }
3095
3096 static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
3097 {
3098         struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
3099         struct sock *sk = sock->sk;
3100
3101         /*
3102          *      Check legality
3103          */
3104
3105         if (addr_len < sizeof(struct sockaddr_ll))
3106                 return -EINVAL;
3107         if (sll->sll_family != AF_PACKET)
3108                 return -EINVAL;
3109
3110         return packet_do_bind(sk, NULL, sll->sll_ifindex,
3111                               sll->sll_protocol ? : pkt_sk(sk)->num);
3112 }
3113
3114 static struct proto packet_proto = {
3115         .name     = "PACKET",
3116         .owner    = THIS_MODULE,
3117         .obj_size = sizeof(struct packet_sock),
3118 };
3119
3120 /*
3121  *      Create a packet of type SOCK_PACKET.
3122  */
3123
3124 static int packet_create(struct net *net, struct socket *sock, int protocol,
3125                          int kern)
3126 {
3127         struct sock *sk;
3128         struct packet_sock *po;
3129         __be16 proto = (__force __be16)protocol; /* weird, but documented */
3130         int err;
3131
3132         if (!ns_capable(net->user_ns, CAP_NET_RAW))
3133                 return -EPERM;
3134         if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
3135             sock->type != SOCK_PACKET)
3136                 return -ESOCKTNOSUPPORT;
3137
3138         sock->state = SS_UNCONNECTED;
3139
3140         err = -ENOBUFS;
3141         sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto, kern);
3142         if (sk == NULL)
3143                 goto out;
3144
3145         sock->ops = &packet_ops;
3146         if (sock->type == SOCK_PACKET)
3147                 sock->ops = &packet_ops_spkt;
3148
3149         sock_init_data(sock, sk);
3150
3151         po = pkt_sk(sk);
3152         sk->sk_family = PF_PACKET;
3153         po->num = proto;
3154         po->xmit = dev_queue_xmit;
3155
3156         err = packet_alloc_pending(po);
3157         if (err)
3158                 goto out2;
3159
3160         packet_cached_dev_reset(po);
3161
3162         sk->sk_destruct = packet_sock_destruct;
3163         sk_refcnt_debug_inc(sk);
3164
3165         /*
3166          *      Attach a protocol block
3167          */
3168
3169         spin_lock_init(&po->bind_lock);
3170         mutex_init(&po->pg_vec_lock);
3171         po->rollover = NULL;
3172         po->prot_hook.func = packet_rcv;
3173
3174         if (sock->type == SOCK_PACKET)
3175                 po->prot_hook.func = packet_rcv_spkt;
3176
3177         po->prot_hook.af_packet_priv = sk;
3178
3179         if (proto) {
3180                 po->prot_hook.type = proto;
3181                 register_prot_hook(sk);
3182         }
3183
3184         mutex_lock(&net->packet.sklist_lock);
3185         sk_add_node_rcu(sk, &net->packet.sklist);
3186         mutex_unlock(&net->packet.sklist_lock);
3187
3188         preempt_disable();
3189         sock_prot_inuse_add(net, &packet_proto, 1);
3190         preempt_enable();
3191
3192         return 0;
3193 out2:
3194         sk_free(sk);
3195 out:
3196         return err;
3197 }
3198
3199 /*
3200  *      Pull a packet from our receive queue and hand it to the user.
3201  *      If necessary we block.
3202  */
3203
3204 static int packet_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
3205                           int flags)
3206 {
3207         struct sock *sk = sock->sk;
3208         struct sk_buff *skb;
3209         int copied, err;
3210         int vnet_hdr_len = 0;
3211         unsigned int origlen = 0;
3212
3213         err = -EINVAL;
3214         if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
3215                 goto out;
3216
3217 #if 0
3218         /* What error should we return now? EUNATTACH? */
3219         if (pkt_sk(sk)->ifindex < 0)
3220                 return -ENODEV;
3221 #endif
3222
3223         if (flags & MSG_ERRQUEUE) {
3224                 err = sock_recv_errqueue(sk, msg, len,
3225                                          SOL_PACKET, PACKET_TX_TIMESTAMP);
3226                 goto out;
3227         }
3228
3229         /*
3230          *      Call the generic datagram receiver. This handles all sorts
3231          *      of horrible races and re-entrancy so we can forget about it
3232          *      in the protocol layers.
3233          *
3234          *      Now it will return ENETDOWN, if device have just gone down,
3235          *      but then it will block.
3236          */
3237
3238         skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
3239
3240         /*
3241          *      An error occurred so return it. Because skb_recv_datagram()
3242          *      handles the blocking we don't see and worry about blocking
3243          *      retries.
3244          */
3245
3246         if (skb == NULL)
3247                 goto out;
3248
3249         if (pkt_sk(sk)->pressure)
3250                 packet_rcv_has_room(pkt_sk(sk), NULL);
3251
3252         if (pkt_sk(sk)->has_vnet_hdr) {
3253                 err = packet_rcv_vnet(msg, skb, &len);
3254                 if (err)
3255                         goto out_free;
3256                 vnet_hdr_len = sizeof(struct virtio_net_hdr);
3257         }
3258
3259         /* You lose any data beyond the buffer you gave. If it worries
3260          * a user program they can ask the device for its MTU
3261          * anyway.
3262          */
3263         copied = skb->len;
3264         if (copied > len) {
3265                 copied = len;
3266                 msg->msg_flags |= MSG_TRUNC;
3267         }
3268
3269         err = skb_copy_datagram_msg(skb, 0, msg, copied);
3270         if (err)
3271                 goto out_free;
3272
3273         if (sock->type != SOCK_PACKET) {
3274                 struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
3275
3276                 /* Original length was stored in sockaddr_ll fields */
3277                 origlen = PACKET_SKB_CB(skb)->sa.origlen;
3278                 sll->sll_family = AF_PACKET;
3279                 sll->sll_protocol = skb->protocol;
3280         }
3281
3282         sock_recv_ts_and_drops(msg, sk, skb);
3283
3284         if (msg->msg_name) {
3285                 /* If the address length field is there to be filled
3286                  * in, we fill it in now.
3287                  */
3288                 if (sock->type == SOCK_PACKET) {
3289                         __sockaddr_check_size(sizeof(struct sockaddr_pkt));
3290                         msg->msg_namelen = sizeof(struct sockaddr_pkt);
3291                 } else {
3292                         struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
3293
3294                         msg->msg_namelen = sll->sll_halen +
3295                                 offsetof(struct sockaddr_ll, sll_addr);
3296                 }
3297                 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
3298                        msg->msg_namelen);
3299         }
3300
3301         if (pkt_sk(sk)->auxdata) {
3302                 struct tpacket_auxdata aux;
3303
3304                 aux.tp_status = TP_STATUS_USER;
3305                 if (skb->ip_summed == CHECKSUM_PARTIAL)
3306                         aux.tp_status |= TP_STATUS_CSUMNOTREADY;
3307                 else if (skb->pkt_type != PACKET_OUTGOING &&
3308                          (skb->ip_summed == CHECKSUM_COMPLETE ||
3309                           skb_csum_unnecessary(skb)))
3310                         aux.tp_status |= TP_STATUS_CSUM_VALID;
3311
3312                 aux.tp_len = origlen;
3313                 aux.tp_snaplen = skb->len;
3314                 aux.tp_mac = 0;
3315                 aux.tp_net = skb_network_offset(skb);
3316                 if (skb_vlan_tag_present(skb)) {
3317                         aux.tp_vlan_tci = skb_vlan_tag_get(skb);
3318                         aux.tp_vlan_tpid = ntohs(skb->vlan_proto);
3319                         aux.tp_status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
3320                 } else {
3321                         aux.tp_vlan_tci = 0;
3322                         aux.tp_vlan_tpid = 0;
3323                 }
3324                 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
3325         }
3326
3327         /*
3328          *      Free or return the buffer as appropriate. Again this
3329          *      hides all the races and re-entrancy issues from us.
3330          */
3331         err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
3332
3333 out_free:
3334         skb_free_datagram(sk, skb);
3335 out:
3336         return err;
3337 }
3338
3339 static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
3340                                int *uaddr_len, int peer)
3341 {
3342         struct net_device *dev;
3343         struct sock *sk = sock->sk;
3344
3345         if (peer)
3346                 return -EOPNOTSUPP;
3347
3348         uaddr->sa_family = AF_PACKET;
3349         memset(uaddr->sa_data, 0, sizeof(uaddr->sa_data));
3350         rcu_read_lock();
3351         dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
3352         if (dev)
3353                 strlcpy(uaddr->sa_data, dev->name, sizeof(uaddr->sa_data));
3354         rcu_read_unlock();
3355         *uaddr_len = sizeof(*uaddr);
3356
3357         return 0;
3358 }
3359
3360 static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
3361                           int *uaddr_len, int peer)
3362 {
3363         struct net_device *dev;
3364         struct sock *sk = sock->sk;
3365         struct packet_sock *po = pkt_sk(sk);
3366         DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
3367
3368         if (peer)
3369                 return -EOPNOTSUPP;
3370
3371         sll->sll_family = AF_PACKET;
3372         sll->sll_ifindex = po->ifindex;
3373         sll->sll_protocol = po->num;
3374         sll->sll_pkttype = 0;
3375         rcu_read_lock();
3376         dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
3377         if (dev) {
3378                 sll->sll_hatype = dev->type;
3379                 sll->sll_halen = dev->addr_len;
3380                 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
3381         } else {
3382                 sll->sll_hatype = 0;    /* Bad: we have no ARPHRD_UNSPEC */
3383                 sll->sll_halen = 0;
3384         }
3385         rcu_read_unlock();
3386         *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
3387
3388         return 0;
3389 }
3390
3391 static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
3392                          int what)
3393 {
3394         switch (i->type) {
3395         case PACKET_MR_MULTICAST:
3396                 if (i->alen != dev->addr_len)
3397                         return -EINVAL;
3398                 if (what > 0)
3399                         return dev_mc_add(dev, i->addr);
3400                 else
3401                         return dev_mc_del(dev, i->addr);
3402                 break;
3403         case PACKET_MR_PROMISC:
3404                 return dev_set_promiscuity(dev, what);
3405         case PACKET_MR_ALLMULTI:
3406                 return dev_set_allmulti(dev, what);
3407         case PACKET_MR_UNICAST:
3408                 if (i->alen != dev->addr_len)
3409                         return -EINVAL;
3410                 if (what > 0)
3411                         return dev_uc_add(dev, i->addr);
3412                 else
3413                         return dev_uc_del(dev, i->addr);
3414                 break;
3415         default:
3416                 break;
3417         }
3418         return 0;
3419 }
3420
3421 static void packet_dev_mclist_delete(struct net_device *dev,
3422                                      struct packet_mclist **mlp)
3423 {
3424         struct packet_mclist *ml;
3425
3426         while ((ml = *mlp) != NULL) {
3427                 if (ml->ifindex == dev->ifindex) {
3428                         packet_dev_mc(dev, ml, -1);
3429                         *mlp = ml->next;
3430                         kfree(ml);
3431                 } else
3432                         mlp = &ml->next;
3433         }
3434 }
3435
3436 static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
3437 {
3438         struct packet_sock *po = pkt_sk(sk);
3439         struct packet_mclist *ml, *i;
3440         struct net_device *dev;
3441         int err;
3442
3443         rtnl_lock();
3444
3445         err = -ENODEV;
3446         dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
3447         if (!dev)
3448                 goto done;
3449
3450         err = -EINVAL;
3451         if (mreq->mr_alen > dev->addr_len)
3452                 goto done;
3453
3454         err = -ENOBUFS;
3455         i = kmalloc(sizeof(*i), GFP_KERNEL);
3456         if (i == NULL)
3457                 goto done;
3458
3459         err = 0;
3460         for (ml = po->mclist; ml; ml = ml->next) {
3461                 if (ml->ifindex == mreq->mr_ifindex &&
3462                     ml->type == mreq->mr_type &&
3463                     ml->alen == mreq->mr_alen &&
3464                     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3465                         ml->count++;
3466                         /* Free the new element ... */
3467                         kfree(i);
3468                         goto done;
3469                 }
3470         }
3471
3472         i->type = mreq->mr_type;
3473         i->ifindex = mreq->mr_ifindex;
3474         i->alen = mreq->mr_alen;
3475         memcpy(i->addr, mreq->mr_address, i->alen);
3476         memset(i->addr + i->alen, 0, sizeof(i->addr) - i->alen);
3477         i->count = 1;
3478         i->next = po->mclist;
3479         po->mclist = i;
3480         err = packet_dev_mc(dev, i, 1);
3481         if (err) {
3482                 po->mclist = i->next;
3483                 kfree(i);
3484         }
3485
3486 done:
3487         rtnl_unlock();
3488         return err;
3489 }
3490
3491 static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
3492 {
3493         struct packet_mclist *ml, **mlp;
3494
3495         rtnl_lock();
3496
3497         for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
3498                 if (ml->ifindex == mreq->mr_ifindex &&
3499                     ml->type == mreq->mr_type &&
3500                     ml->alen == mreq->mr_alen &&
3501                     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3502                         if (--ml->count == 0) {
3503                                 struct net_device *dev;
3504                                 *mlp = ml->next;
3505                                 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3506                                 if (dev)
3507                                         packet_dev_mc(dev, ml, -1);
3508                                 kfree(ml);
3509                         }
3510                         break;
3511                 }
3512         }
3513         rtnl_unlock();
3514         return 0;
3515 }
3516
3517 static void packet_flush_mclist(struct sock *sk)
3518 {
3519         struct packet_sock *po = pkt_sk(sk);
3520         struct packet_mclist *ml;
3521
3522         if (!po->mclist)
3523                 return;
3524
3525         rtnl_lock();
3526         while ((ml = po->mclist) != NULL) {
3527                 struct net_device *dev;
3528
3529                 po->mclist = ml->next;
3530                 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3531                 if (dev != NULL)
3532                         packet_dev_mc(dev, ml, -1);
3533                 kfree(ml);
3534         }
3535         rtnl_unlock();
3536 }
3537
3538 static int
3539 packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
3540 {
3541         struct sock *sk = sock->sk;
3542         struct packet_sock *po = pkt_sk(sk);
3543         int ret;
3544
3545         if (level != SOL_PACKET)
3546                 return -ENOPROTOOPT;
3547
3548         switch (optname) {
3549         case PACKET_ADD_MEMBERSHIP:
3550         case PACKET_DROP_MEMBERSHIP:
3551         {
3552                 struct packet_mreq_max mreq;
3553                 int len = optlen;
3554                 memset(&mreq, 0, sizeof(mreq));
3555                 if (len < sizeof(struct packet_mreq))
3556                         return -EINVAL;
3557                 if (len > sizeof(mreq))
3558                         len = sizeof(mreq);
3559                 if (copy_from_user(&mreq, optval, len))
3560                         return -EFAULT;
3561                 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
3562                         return -EINVAL;
3563                 if (optname == PACKET_ADD_MEMBERSHIP)
3564                         ret = packet_mc_add(sk, &mreq);
3565                 else
3566                         ret = packet_mc_drop(sk, &mreq);
3567                 return ret;
3568         }
3569
3570         case PACKET_RX_RING:
3571         case PACKET_TX_RING:
3572         {
3573                 union tpacket_req_u req_u;
3574                 int len;
3575
3576                 switch (po->tp_version) {
3577                 case TPACKET_V1:
3578                 case TPACKET_V2:
3579                         len = sizeof(req_u.req);
3580                         break;
3581                 case TPACKET_V3:
3582                 default:
3583                         len = sizeof(req_u.req3);
3584                         break;
3585                 }
3586                 if (optlen < len)
3587                         return -EINVAL;
3588                 if (copy_from_user(&req_u.req, optval, len))
3589                         return -EFAULT;
3590                 return packet_set_ring(sk, &req_u, 0,
3591                         optname == PACKET_TX_RING);
3592         }
3593         case PACKET_COPY_THRESH:
3594         {
3595                 int val;
3596
3597                 if (optlen != sizeof(val))
3598                         return -EINVAL;
3599                 if (copy_from_user(&val, optval, sizeof(val)))
3600                         return -EFAULT;
3601
3602                 pkt_sk(sk)->copy_thresh = val;
3603                 return 0;
3604         }
3605         case PACKET_VERSION:
3606         {
3607                 int val;
3608
3609                 if (optlen != sizeof(val))
3610                         return -EINVAL;
3611                 if (copy_from_user(&val, optval, sizeof(val)))
3612                         return -EFAULT;
3613                 switch (val) {
3614                 case TPACKET_V1:
3615                 case TPACKET_V2:
3616                 case TPACKET_V3:
3617                         break;
3618                 default:
3619                         return -EINVAL;
3620                 }
3621                 lock_sock(sk);
3622                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3623                         ret = -EBUSY;
3624                 } else {
3625                         po->tp_version = val;
3626                         ret = 0;
3627                 }
3628                 release_sock(sk);
3629                 return ret;
3630         }
3631         case PACKET_RESERVE:
3632         {
3633                 unsigned int val;
3634
3635                 if (optlen != sizeof(val))
3636                         return -EINVAL;
3637                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3638                         return -EBUSY;
3639                 if (copy_from_user(&val, optval, sizeof(val)))
3640                         return -EFAULT;
3641                 po->tp_reserve = val;
3642                 return 0;
3643         }
3644         case PACKET_LOSS:
3645         {
3646                 unsigned int val;
3647
3648                 if (optlen != sizeof(val))
3649                         return -EINVAL;
3650                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3651                         return -EBUSY;
3652                 if (copy_from_user(&val, optval, sizeof(val)))
3653                         return -EFAULT;
3654                 po->tp_loss = !!val;
3655                 return 0;
3656         }
3657         case PACKET_AUXDATA:
3658         {
3659                 int val;
3660
3661                 if (optlen < sizeof(val))
3662                         return -EINVAL;
3663                 if (copy_from_user(&val, optval, sizeof(val)))
3664                         return -EFAULT;
3665
3666                 po->auxdata = !!val;
3667                 return 0;
3668         }
3669         case PACKET_ORIGDEV:
3670         {
3671                 int val;
3672
3673                 if (optlen < sizeof(val))
3674                         return -EINVAL;
3675                 if (copy_from_user(&val, optval, sizeof(val)))
3676                         return -EFAULT;
3677
3678                 po->origdev = !!val;
3679                 return 0;
3680         }
3681         case PACKET_VNET_HDR:
3682         {
3683                 int val;
3684
3685                 if (sock->type != SOCK_RAW)
3686                         return -EINVAL;
3687                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3688                         return -EBUSY;
3689                 if (optlen < sizeof(val))
3690                         return -EINVAL;
3691                 if (copy_from_user(&val, optval, sizeof(val)))
3692                         return -EFAULT;
3693
3694                 po->has_vnet_hdr = !!val;
3695                 return 0;
3696         }
3697         case PACKET_TIMESTAMP:
3698         {
3699                 int val;
3700
3701                 if (optlen != sizeof(val))
3702                         return -EINVAL;
3703                 if (copy_from_user(&val, optval, sizeof(val)))
3704                         return -EFAULT;
3705
3706                 po->tp_tstamp = val;
3707                 return 0;
3708         }
3709         case PACKET_FANOUT:
3710         {
3711                 int val;
3712
3713                 if (optlen != sizeof(val))
3714                         return -EINVAL;
3715                 if (copy_from_user(&val, optval, sizeof(val)))
3716                         return -EFAULT;
3717
3718                 return fanout_add(sk, val & 0xffff, val >> 16);
3719         }
3720         case PACKET_FANOUT_DATA:
3721         {
3722                 if (!po->fanout)
3723                         return -EINVAL;
3724
3725                 return fanout_set_data(po, optval, optlen);
3726         }
3727         case PACKET_TX_HAS_OFF:
3728         {
3729                 unsigned int val;
3730
3731                 if (optlen != sizeof(val))
3732                         return -EINVAL;
3733                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3734                         return -EBUSY;
3735                 if (copy_from_user(&val, optval, sizeof(val)))
3736                         return -EFAULT;
3737                 po->tp_tx_has_off = !!val;
3738                 return 0;
3739         }
3740         case PACKET_QDISC_BYPASS:
3741         {
3742                 int val;
3743
3744                 if (optlen != sizeof(val))
3745                         return -EINVAL;
3746                 if (copy_from_user(&val, optval, sizeof(val)))
3747                         return -EFAULT;
3748
3749                 po->xmit = val ? packet_direct_xmit : dev_queue_xmit;
3750                 return 0;
3751         }
3752         default:
3753                 return -ENOPROTOOPT;
3754         }
3755 }
3756
3757 static int packet_getsockopt(struct socket *sock, int level, int optname,
3758                              char __user *optval, int __user *optlen)
3759 {
3760         int len;
3761         int val, lv = sizeof(val);
3762         struct sock *sk = sock->sk;
3763         struct packet_sock *po = pkt_sk(sk);
3764         void *data = &val;
3765         union tpacket_stats_u st;
3766         struct tpacket_rollover_stats rstats;
3767
3768         if (level != SOL_PACKET)
3769                 return -ENOPROTOOPT;
3770
3771         if (get_user(len, optlen))
3772                 return -EFAULT;
3773
3774         if (len < 0)
3775                 return -EINVAL;
3776
3777         switch (optname) {
3778         case PACKET_STATISTICS:
3779                 spin_lock_bh(&sk->sk_receive_queue.lock);
3780                 memcpy(&st, &po->stats, sizeof(st));
3781                 memset(&po->stats, 0, sizeof(po->stats));
3782                 spin_unlock_bh(&sk->sk_receive_queue.lock);
3783
3784                 if (po->tp_version == TPACKET_V3) {
3785                         lv = sizeof(struct tpacket_stats_v3);
3786                         st.stats3.tp_packets += st.stats3.tp_drops;
3787                         data = &st.stats3;
3788                 } else {
3789                         lv = sizeof(struct tpacket_stats);
3790                         st.stats1.tp_packets += st.stats1.tp_drops;
3791                         data = &st.stats1;
3792                 }
3793
3794                 break;
3795         case PACKET_AUXDATA:
3796                 val = po->auxdata;
3797                 break;
3798         case PACKET_ORIGDEV:
3799                 val = po->origdev;
3800                 break;
3801         case PACKET_VNET_HDR:
3802                 val = po->has_vnet_hdr;
3803                 break;
3804         case PACKET_VERSION:
3805                 val = po->tp_version;
3806                 break;
3807         case PACKET_HDRLEN:
3808                 if (len > sizeof(int))
3809                         len = sizeof(int);
3810                 if (copy_from_user(&val, optval, len))
3811                         return -EFAULT;
3812                 switch (val) {
3813                 case TPACKET_V1:
3814                         val = sizeof(struct tpacket_hdr);
3815                         break;
3816                 case TPACKET_V2:
3817                         val = sizeof(struct tpacket2_hdr);
3818                         break;
3819                 case TPACKET_V3:
3820                         val = sizeof(struct tpacket3_hdr);
3821                         break;
3822                 default:
3823                         return -EINVAL;
3824                 }
3825                 break;
3826         case PACKET_RESERVE:
3827                 val = po->tp_reserve;
3828                 break;
3829         case PACKET_LOSS:
3830                 val = po->tp_loss;
3831                 break;
3832         case PACKET_TIMESTAMP:
3833                 val = po->tp_tstamp;
3834                 break;
3835         case PACKET_FANOUT:
3836                 val = (po->fanout ?
3837                        ((u32)po->fanout->id |
3838                         ((u32)po->fanout->type << 16) |
3839                         ((u32)po->fanout->flags << 24)) :
3840                        0);
3841                 break;
3842         case PACKET_ROLLOVER_STATS:
3843                 if (!po->rollover)
3844                         return -EINVAL;
3845                 rstats.tp_all = atomic_long_read(&po->rollover->num);
3846                 rstats.tp_huge = atomic_long_read(&po->rollover->num_huge);
3847                 rstats.tp_failed = atomic_long_read(&po->rollover->num_failed);
3848                 data = &rstats;
3849                 lv = sizeof(rstats);
3850                 break;
3851         case PACKET_TX_HAS_OFF:
3852                 val = po->tp_tx_has_off;
3853                 break;
3854         case PACKET_QDISC_BYPASS:
3855                 val = packet_use_direct_xmit(po);
3856                 break;
3857         default:
3858                 return -ENOPROTOOPT;
3859         }
3860
3861         if (len > lv)
3862                 len = lv;
3863         if (put_user(len, optlen))
3864                 return -EFAULT;
3865         if (copy_to_user(optval, data, len))
3866                 return -EFAULT;
3867         return 0;
3868 }
3869
3870
3871 #ifdef CONFIG_COMPAT
3872 static int compat_packet_setsockopt(struct socket *sock, int level, int optname,
3873                                     char __user *optval, unsigned int optlen)
3874 {
3875         struct packet_sock *po = pkt_sk(sock->sk);
3876
3877         if (level != SOL_PACKET)
3878                 return -ENOPROTOOPT;
3879
3880         if (optname == PACKET_FANOUT_DATA &&
3881             po->fanout && po->fanout->type == PACKET_FANOUT_CBPF) {
3882                 optval = (char __user *)get_compat_bpf_fprog(optval);
3883                 if (!optval)
3884                         return -EFAULT;
3885                 optlen = sizeof(struct sock_fprog);
3886         }
3887
3888         return packet_setsockopt(sock, level, optname, optval, optlen);
3889 }
3890 #endif
3891
3892 static int packet_notifier(struct notifier_block *this,
3893                            unsigned long msg, void *ptr)
3894 {
3895         struct sock *sk;
3896         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
3897         struct net *net = dev_net(dev);
3898
3899         rcu_read_lock();
3900         sk_for_each_rcu(sk, &net->packet.sklist) {
3901                 struct packet_sock *po = pkt_sk(sk);
3902
3903                 switch (msg) {
3904                 case NETDEV_UNREGISTER:
3905                         if (po->mclist)
3906                                 packet_dev_mclist_delete(dev, &po->mclist);
3907                         /* fallthrough */
3908
3909                 case NETDEV_DOWN:
3910                         if (dev->ifindex == po->ifindex) {
3911                                 spin_lock(&po->bind_lock);
3912                                 if (po->running) {
3913                                         __unregister_prot_hook(sk, false);
3914                                         sk->sk_err = ENETDOWN;
3915                                         if (!sock_flag(sk, SOCK_DEAD))
3916                                                 sk->sk_error_report(sk);
3917                                 }
3918                                 if (msg == NETDEV_UNREGISTER) {
3919                                         packet_cached_dev_reset(po);
3920                                         fanout_release(sk);
3921                                         po->ifindex = -1;
3922                                         if (po->prot_hook.dev)
3923                                                 dev_put(po->prot_hook.dev);
3924                                         po->prot_hook.dev = NULL;
3925                                 }
3926                                 spin_unlock(&po->bind_lock);
3927                         }
3928                         break;
3929                 case NETDEV_UP:
3930                         if (dev->ifindex == po->ifindex) {
3931                                 spin_lock(&po->bind_lock);
3932                                 if (po->num)
3933                                         register_prot_hook(sk);
3934                                 spin_unlock(&po->bind_lock);
3935                         }
3936                         break;
3937                 }
3938         }
3939         rcu_read_unlock();
3940         return NOTIFY_DONE;
3941 }
3942
3943
3944 static int packet_ioctl(struct socket *sock, unsigned int cmd,
3945                         unsigned long arg)
3946 {
3947         struct sock *sk = sock->sk;
3948
3949         switch (cmd) {
3950         case SIOCOUTQ:
3951         {
3952                 int amount = sk_wmem_alloc_get(sk);
3953
3954                 return put_user(amount, (int __user *)arg);
3955         }
3956         case SIOCINQ:
3957         {
3958                 struct sk_buff *skb;
3959                 int amount = 0;
3960
3961                 spin_lock_bh(&sk->sk_receive_queue.lock);
3962                 skb = skb_peek(&sk->sk_receive_queue);
3963                 if (skb)
3964                         amount = skb->len;
3965                 spin_unlock_bh(&sk->sk_receive_queue.lock);
3966                 return put_user(amount, (int __user *)arg);
3967         }
3968         case SIOCGSTAMP:
3969                 return sock_get_timestamp(sk, (struct timeval __user *)arg);
3970         case SIOCGSTAMPNS:
3971                 return sock_get_timestampns(sk, (struct timespec __user *)arg);
3972
3973 #ifdef CONFIG_INET
3974         case SIOCADDRT:
3975         case SIOCDELRT:
3976         case SIOCDARP:
3977         case SIOCGARP:
3978         case SIOCSARP:
3979         case SIOCGIFADDR:
3980         case SIOCSIFADDR:
3981         case SIOCGIFBRDADDR:
3982         case SIOCSIFBRDADDR:
3983         case SIOCGIFNETMASK:
3984         case SIOCSIFNETMASK:
3985         case SIOCGIFDSTADDR:
3986         case SIOCSIFDSTADDR:
3987         case SIOCSIFFLAGS:
3988                 return inet_dgram_ops.ioctl(sock, cmd, arg);
3989 #endif
3990
3991         default:
3992                 return -ENOIOCTLCMD;
3993         }
3994         return 0;
3995 }
3996
3997 static unsigned int packet_poll(struct file *file, struct socket *sock,
3998                                 poll_table *wait)
3999 {
4000         struct sock *sk = sock->sk;
4001         struct packet_sock *po = pkt_sk(sk);
4002         unsigned int mask = datagram_poll(file, sock, wait);
4003
4004         spin_lock_bh(&sk->sk_receive_queue.lock);
4005         if (po->rx_ring.pg_vec) {
4006                 if (!packet_previous_rx_frame(po, &po->rx_ring,
4007                         TP_STATUS_KERNEL))
4008                         mask |= POLLIN | POLLRDNORM;
4009         }
4010         if (po->pressure && __packet_rcv_has_room(po, NULL) == ROOM_NORMAL)
4011                 po->pressure = 0;
4012         spin_unlock_bh(&sk->sk_receive_queue.lock);
4013         spin_lock_bh(&sk->sk_write_queue.lock);
4014         if (po->tx_ring.pg_vec) {
4015                 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
4016                         mask |= POLLOUT | POLLWRNORM;
4017         }
4018         spin_unlock_bh(&sk->sk_write_queue.lock);
4019         return mask;
4020 }
4021
4022
4023 /* Dirty? Well, I still did not learn better way to account
4024  * for user mmaps.
4025  */
4026
4027 static void packet_mm_open(struct vm_area_struct *vma)
4028 {
4029         struct file *file = vma->vm_file;
4030         struct socket *sock = file->private_data;
4031         struct sock *sk = sock->sk;
4032
4033         if (sk)
4034                 atomic_inc(&pkt_sk(sk)->mapped);
4035 }
4036
4037 static void packet_mm_close(struct vm_area_struct *vma)
4038 {
4039         struct file *file = vma->vm_file;
4040         struct socket *sock = file->private_data;
4041         struct sock *sk = sock->sk;
4042
4043         if (sk)
4044                 atomic_dec(&pkt_sk(sk)->mapped);
4045 }
4046
4047 static const struct vm_operations_struct packet_mmap_ops = {
4048         .open   =       packet_mm_open,
4049         .close  =       packet_mm_close,
4050 };
4051
4052 static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
4053                         unsigned int len)
4054 {
4055         int i;
4056
4057         for (i = 0; i < len; i++) {
4058                 if (likely(pg_vec[i].buffer)) {
4059                         if (is_vmalloc_addr(pg_vec[i].buffer))
4060                                 vfree(pg_vec[i].buffer);
4061                         else
4062                                 free_pages((unsigned long)pg_vec[i].buffer,
4063                                            order);
4064                         pg_vec[i].buffer = NULL;
4065                 }
4066         }
4067         kfree(pg_vec);
4068 }
4069
4070 static char *alloc_one_pg_vec_page(unsigned long order)
4071 {
4072         char *buffer;
4073         gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
4074                           __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
4075
4076         buffer = (char *) __get_free_pages(gfp_flags, order);
4077         if (buffer)
4078                 return buffer;
4079
4080         /* __get_free_pages failed, fall back to vmalloc */
4081         buffer = vzalloc((1 << order) * PAGE_SIZE);
4082         if (buffer)
4083                 return buffer;
4084
4085         /* vmalloc failed, lets dig into swap here */
4086         gfp_flags &= ~__GFP_NORETRY;
4087         buffer = (char *) __get_free_pages(gfp_flags, order);
4088         if (buffer)
4089                 return buffer;
4090
4091         /* complete and utter failure */
4092         return NULL;
4093 }
4094
4095 static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
4096 {
4097         unsigned int block_nr = req->tp_block_nr;
4098         struct pgv *pg_vec;
4099         int i;
4100
4101         pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
4102         if (unlikely(!pg_vec))
4103                 goto out;
4104
4105         for (i = 0; i < block_nr; i++) {
4106                 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
4107                 if (unlikely(!pg_vec[i].buffer))
4108                         goto out_free_pgvec;
4109         }
4110
4111 out:
4112         return pg_vec;
4113
4114 out_free_pgvec:
4115         free_pg_vec(pg_vec, order, block_nr);
4116         pg_vec = NULL;
4117         goto out;
4118 }
4119
4120 static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
4121                 int closing, int tx_ring)
4122 {
4123         struct pgv *pg_vec = NULL;
4124         struct packet_sock *po = pkt_sk(sk);
4125         int was_running, order = 0;
4126         struct packet_ring_buffer *rb;
4127         struct sk_buff_head *rb_queue;
4128         __be16 num;
4129         int err = -EINVAL;
4130         /* Added to avoid minimal code churn */
4131         struct tpacket_req *req = &req_u->req;
4132
4133         lock_sock(sk);
4134
4135         rb = tx_ring ? &po->tx_ring : &po->rx_ring;
4136         rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
4137
4138         err = -EBUSY;
4139         if (!closing) {
4140                 if (atomic_read(&po->mapped))
4141                         goto out;
4142                 if (packet_read_pending(rb))
4143                         goto out;
4144         }
4145
4146         if (req->tp_block_nr) {
4147                 /* Sanity tests and some calculations */
4148                 err = -EBUSY;
4149                 if (unlikely(rb->pg_vec))
4150                         goto out;
4151
4152                 switch (po->tp_version) {
4153                 case TPACKET_V1:
4154                         po->tp_hdrlen = TPACKET_HDRLEN;
4155                         break;
4156                 case TPACKET_V2:
4157                         po->tp_hdrlen = TPACKET2_HDRLEN;
4158                         break;
4159                 case TPACKET_V3:
4160                         po->tp_hdrlen = TPACKET3_HDRLEN;
4161                         break;
4162                 }
4163
4164                 err = -EINVAL;
4165                 if (unlikely((int)req->tp_block_size <= 0))
4166                         goto out;
4167                 if (unlikely(!PAGE_ALIGNED(req->tp_block_size)))
4168                         goto out;
4169                 if (po->tp_version >= TPACKET_V3 &&
4170                     (int)(req->tp_block_size -
4171                           BLK_PLUS_PRIV(req_u->req3.tp_sizeof_priv)) <= 0)
4172                         goto out;
4173                 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
4174                                         po->tp_reserve))
4175                         goto out;
4176                 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
4177                         goto out;
4178
4179                 rb->frames_per_block = req->tp_block_size / req->tp_frame_size;
4180                 if (unlikely(rb->frames_per_block == 0))
4181                         goto out;
4182                 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
4183                                         req->tp_frame_nr))
4184                         goto out;
4185
4186                 err = -ENOMEM;
4187                 order = get_order(req->tp_block_size);
4188                 pg_vec = alloc_pg_vec(req, order);
4189                 if (unlikely(!pg_vec))
4190                         goto out;
4191                 switch (po->tp_version) {
4192                 case TPACKET_V3:
4193                         /* Block transmit is not supported yet */
4194                         if (!tx_ring) {
4195                                 init_prb_bdqc(po, rb, pg_vec, req_u);
4196                         } else {
4197                                 struct tpacket_req3 *req3 = &req_u->req3;
4198
4199                                 if (req3->tp_retire_blk_tov ||
4200                                     req3->tp_sizeof_priv ||
4201                                     req3->tp_feature_req_word) {
4202                                         err = -EINVAL;
4203                                         goto out;
4204                                 }
4205                         }
4206                         break;
4207                 default:
4208                         break;
4209                 }
4210         }
4211         /* Done */
4212         else {
4213                 err = -EINVAL;
4214                 if (unlikely(req->tp_frame_nr))
4215                         goto out;
4216         }
4217
4218
4219         /* Detach socket from network */
4220         spin_lock(&po->bind_lock);
4221         was_running = po->running;
4222         num = po->num;
4223         if (was_running) {
4224                 po->num = 0;
4225                 __unregister_prot_hook(sk, false);
4226         }
4227         spin_unlock(&po->bind_lock);
4228
4229         synchronize_net();
4230
4231         err = -EBUSY;
4232         mutex_lock(&po->pg_vec_lock);
4233         if (closing || atomic_read(&po->mapped) == 0) {
4234                 err = 0;
4235                 spin_lock_bh(&rb_queue->lock);
4236                 swap(rb->pg_vec, pg_vec);
4237                 rb->frame_max = (req->tp_frame_nr - 1);
4238                 rb->head = 0;
4239                 rb->frame_size = req->tp_frame_size;
4240                 spin_unlock_bh(&rb_queue->lock);
4241
4242                 swap(rb->pg_vec_order, order);
4243                 swap(rb->pg_vec_len, req->tp_block_nr);
4244
4245                 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
4246                 po->prot_hook.func = (po->rx_ring.pg_vec) ?
4247                                                 tpacket_rcv : packet_rcv;
4248                 skb_queue_purge(rb_queue);
4249                 if (atomic_read(&po->mapped))
4250                         pr_err("packet_mmap: vma is busy: %d\n",
4251                                atomic_read(&po->mapped));
4252         }
4253         mutex_unlock(&po->pg_vec_lock);
4254
4255         spin_lock(&po->bind_lock);
4256         if (was_running) {
4257                 po->num = num;
4258                 register_prot_hook(sk);
4259         }
4260         spin_unlock(&po->bind_lock);
4261         if (closing && (po->tp_version > TPACKET_V2)) {
4262                 /* Because we don't support block-based V3 on tx-ring */
4263                 if (!tx_ring)
4264                         prb_shutdown_retire_blk_timer(po, rb_queue);
4265         }
4266
4267         if (pg_vec)
4268                 free_pg_vec(pg_vec, order, req->tp_block_nr);
4269 out:
4270         release_sock(sk);
4271         return err;
4272 }
4273
4274 static int packet_mmap(struct file *file, struct socket *sock,
4275                 struct vm_area_struct *vma)
4276 {
4277         struct sock *sk = sock->sk;
4278         struct packet_sock *po = pkt_sk(sk);
4279         unsigned long size, expected_size;
4280         struct packet_ring_buffer *rb;
4281         unsigned long start;
4282         int err = -EINVAL;
4283         int i;
4284
4285         if (vma->vm_pgoff)
4286                 return -EINVAL;
4287
4288         mutex_lock(&po->pg_vec_lock);
4289
4290         expected_size = 0;
4291         for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
4292                 if (rb->pg_vec) {
4293                         expected_size += rb->pg_vec_len
4294                                                 * rb->pg_vec_pages
4295                                                 * PAGE_SIZE;
4296                 }
4297         }
4298
4299         if (expected_size == 0)
4300                 goto out;
4301
4302         size = vma->vm_end - vma->vm_start;
4303         if (size != expected_size)
4304                 goto out;
4305
4306         start = vma->vm_start;
4307         for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
4308                 if (rb->pg_vec == NULL)
4309                         continue;
4310
4311                 for (i = 0; i < rb->pg_vec_len; i++) {
4312                         struct page *page;
4313                         void *kaddr = rb->pg_vec[i].buffer;
4314                         int pg_num;
4315
4316                         for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
4317                                 page = pgv_to_page(kaddr);
4318                                 err = vm_insert_page(vma, start, page);
4319                                 if (unlikely(err))
4320                                         goto out;
4321                                 start += PAGE_SIZE;
4322                                 kaddr += PAGE_SIZE;
4323                         }
4324                 }
4325         }
4326
4327         atomic_inc(&po->mapped);
4328         vma->vm_ops = &packet_mmap_ops;
4329         err = 0;
4330
4331 out:
4332         mutex_unlock(&po->pg_vec_lock);
4333         return err;
4334 }
4335
4336 static const struct proto_ops packet_ops_spkt = {
4337         .family =       PF_PACKET,
4338         .owner =        THIS_MODULE,
4339         .release =      packet_release,
4340         .bind =         packet_bind_spkt,
4341         .connect =      sock_no_connect,
4342         .socketpair =   sock_no_socketpair,
4343         .accept =       sock_no_accept,
4344         .getname =      packet_getname_spkt,
4345         .poll =         datagram_poll,
4346         .ioctl =        packet_ioctl,
4347         .listen =       sock_no_listen,
4348         .shutdown =     sock_no_shutdown,
4349         .setsockopt =   sock_no_setsockopt,
4350         .getsockopt =   sock_no_getsockopt,
4351         .sendmsg =      packet_sendmsg_spkt,
4352         .recvmsg =      packet_recvmsg,
4353         .mmap =         sock_no_mmap,
4354         .sendpage =     sock_no_sendpage,
4355 };
4356
4357 static const struct proto_ops packet_ops = {
4358         .family =       PF_PACKET,
4359         .owner =        THIS_MODULE,
4360         .release =      packet_release,
4361         .bind =         packet_bind,
4362         .connect =      sock_no_connect,
4363         .socketpair =   sock_no_socketpair,
4364         .accept =       sock_no_accept,
4365         .getname =      packet_getname,
4366         .poll =         packet_poll,
4367         .ioctl =        packet_ioctl,
4368         .listen =       sock_no_listen,
4369         .shutdown =     sock_no_shutdown,
4370         .setsockopt =   packet_setsockopt,
4371         .getsockopt =   packet_getsockopt,
4372 #ifdef CONFIG_COMPAT
4373         .compat_setsockopt = compat_packet_setsockopt,
4374 #endif
4375         .sendmsg =      packet_sendmsg,
4376         .recvmsg =      packet_recvmsg,
4377         .mmap =         packet_mmap,
4378         .sendpage =     sock_no_sendpage,
4379 };
4380
4381 static const struct net_proto_family packet_family_ops = {
4382         .family =       PF_PACKET,
4383         .create =       packet_create,
4384         .owner  =       THIS_MODULE,
4385 };
4386
4387 static struct notifier_block packet_netdev_notifier = {
4388         .notifier_call =        packet_notifier,
4389 };
4390
4391 #ifdef CONFIG_PROC_FS
4392
4393 static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
4394         __acquires(RCU)
4395 {
4396         struct net *net = seq_file_net(seq);
4397
4398         rcu_read_lock();
4399         return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
4400 }
4401
4402 static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4403 {
4404         struct net *net = seq_file_net(seq);
4405         return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
4406 }
4407
4408 static void packet_seq_stop(struct seq_file *seq, void *v)
4409         __releases(RCU)
4410 {
4411         rcu_read_unlock();
4412 }
4413
4414 static int packet_seq_show(struct seq_file *seq, void *v)
4415 {
4416         if (v == SEQ_START_TOKEN)
4417                 seq_puts(seq, "sk       RefCnt Type Proto  Iface R Rmem   User   Inode\n");
4418         else {
4419                 struct sock *s = sk_entry(v);
4420                 const struct packet_sock *po = pkt_sk(s);
4421
4422                 seq_printf(seq,
4423                            "%pK %-6d %-4d %04x   %-5d %1d %-6u %-6u %-6lu\n",
4424                            s,
4425                            atomic_read(&s->sk_refcnt),
4426                            s->sk_type,
4427                            ntohs(po->num),
4428                            po->ifindex,
4429                            po->running,
4430                            atomic_read(&s->sk_rmem_alloc),
4431                            from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)),
4432                            sock_i_ino(s));
4433         }
4434
4435         return 0;
4436 }
4437
4438 static const struct seq_operations packet_seq_ops = {
4439         .start  = packet_seq_start,
4440         .next   = packet_seq_next,
4441         .stop   = packet_seq_stop,
4442         .show   = packet_seq_show,
4443 };
4444
4445 static int packet_seq_open(struct inode *inode, struct file *file)
4446 {
4447         return seq_open_net(inode, file, &packet_seq_ops,
4448                             sizeof(struct seq_net_private));
4449 }
4450
4451 static const struct file_operations packet_seq_fops = {
4452         .owner          = THIS_MODULE,
4453         .open           = packet_seq_open,
4454         .read           = seq_read,
4455         .llseek         = seq_lseek,
4456         .release        = seq_release_net,
4457 };
4458
4459 #endif
4460
4461 static int __net_init packet_net_init(struct net *net)
4462 {
4463         mutex_init(&net->packet.sklist_lock);
4464         INIT_HLIST_HEAD(&net->packet.sklist);
4465
4466         if (!proc_create("packet", 0, net->proc_net, &packet_seq_fops))
4467                 return -ENOMEM;
4468
4469         return 0;
4470 }
4471
4472 static void __net_exit packet_net_exit(struct net *net)
4473 {
4474         remove_proc_entry("packet", net->proc_net);
4475 }
4476
4477 static struct pernet_operations packet_net_ops = {
4478         .init = packet_net_init,
4479         .exit = packet_net_exit,
4480 };
4481
4482
4483 static void __exit packet_exit(void)
4484 {
4485         unregister_netdevice_notifier(&packet_netdev_notifier);
4486         unregister_pernet_subsys(&packet_net_ops);
4487         sock_unregister(PF_PACKET);
4488         proto_unregister(&packet_proto);
4489 }
4490
4491 static int __init packet_init(void)
4492 {
4493         int rc = proto_register(&packet_proto, 0);
4494
4495         if (rc != 0)
4496                 goto out;
4497
4498         sock_register(&packet_family_ops);
4499         register_pernet_subsys(&packet_net_ops);
4500         register_netdevice_notifier(&packet_netdev_notifier);
4501 out:
4502         return rc;
4503 }
4504
4505 module_init(packet_init);
4506 module_exit(packet_exit);
4507 MODULE_LICENSE("GPL");
4508 MODULE_ALIAS_NETPROTO(PF_PACKET);