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