GNU Linux-libre 4.19.281-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_csum_unnecessary(skb))
2213                 status |= TP_STATUS_CSUM_VALID;
2214
2215         if (snaplen > res)
2216                 snaplen = res;
2217
2218         if (sk->sk_type == SOCK_DGRAM) {
2219                 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
2220                                   po->tp_reserve;
2221         } else {
2222                 unsigned int maclen = skb_network_offset(skb);
2223                 netoff = TPACKET_ALIGN(po->tp_hdrlen +
2224                                        (maclen < 16 ? 16 : maclen)) +
2225                                        po->tp_reserve;
2226                 if (po->has_vnet_hdr) {
2227                         netoff += sizeof(struct virtio_net_hdr);
2228                         do_vnet = true;
2229                 }
2230                 macoff = netoff - maclen;
2231         }
2232         if (netoff > USHRT_MAX) {
2233                 spin_lock(&sk->sk_receive_queue.lock);
2234                 po->stats.stats1.tp_drops++;
2235                 spin_unlock(&sk->sk_receive_queue.lock);
2236                 goto drop_n_restore;
2237         }
2238         if (po->tp_version <= TPACKET_V2) {
2239                 if (macoff + snaplen > po->rx_ring.frame_size) {
2240                         if (po->copy_thresh &&
2241                             atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
2242                                 if (skb_shared(skb)) {
2243                                         copy_skb = skb_clone(skb, GFP_ATOMIC);
2244                                 } else {
2245                                         copy_skb = skb_get(skb);
2246                                         skb_head = skb->data;
2247                                 }
2248                                 if (copy_skb) {
2249                                         memset(&PACKET_SKB_CB(copy_skb)->sa.ll, 0,
2250                                                sizeof(PACKET_SKB_CB(copy_skb)->sa.ll));
2251                                         skb_set_owner_r(copy_skb, sk);
2252                                 }
2253                         }
2254                         snaplen = po->rx_ring.frame_size - macoff;
2255                         if ((int)snaplen < 0) {
2256                                 snaplen = 0;
2257                                 do_vnet = false;
2258                         }
2259                 }
2260         } else if (unlikely(macoff + snaplen >
2261                             GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len)) {
2262                 u32 nval;
2263
2264                 nval = GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len - macoff;
2265                 pr_err_once("tpacket_rcv: packet too big, clamped from %u to %u. macoff=%u\n",
2266                             snaplen, nval, macoff);
2267                 snaplen = nval;
2268                 if (unlikely((int)snaplen < 0)) {
2269                         snaplen = 0;
2270                         macoff = GET_PBDQC_FROM_RB(&po->rx_ring)->max_frame_len;
2271                         do_vnet = false;
2272                 }
2273         }
2274         spin_lock(&sk->sk_receive_queue.lock);
2275         h.raw = packet_current_rx_frame(po, skb,
2276                                         TP_STATUS_KERNEL, (macoff+snaplen));
2277         if (!h.raw)
2278                 goto drop_n_account;
2279
2280         if (po->tp_version <= TPACKET_V2) {
2281                 slot_id = po->rx_ring.head;
2282                 if (test_bit(slot_id, po->rx_ring.rx_owner_map))
2283                         goto drop_n_account;
2284                 __set_bit(slot_id, po->rx_ring.rx_owner_map);
2285         }
2286
2287         if (do_vnet &&
2288             virtio_net_hdr_from_skb(skb, h.raw + macoff -
2289                                     sizeof(struct virtio_net_hdr),
2290                                     vio_le(), true, 0)) {
2291                 if (po->tp_version == TPACKET_V3)
2292                         prb_clear_blk_fill_status(&po->rx_ring);
2293                 goto drop_n_account;
2294         }
2295
2296         if (po->tp_version <= TPACKET_V2) {
2297                 packet_increment_rx_head(po, &po->rx_ring);
2298         /*
2299          * LOSING will be reported till you read the stats,
2300          * because it's COR - Clear On Read.
2301          * Anyways, moving it for V1/V2 only as V3 doesn't need this
2302          * at packet level.
2303          */
2304                 if (po->stats.stats1.tp_drops)
2305                         status |= TP_STATUS_LOSING;
2306         }
2307
2308         po->stats.stats1.tp_packets++;
2309         if (copy_skb) {
2310                 status |= TP_STATUS_COPY;
2311                 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
2312         }
2313         spin_unlock(&sk->sk_receive_queue.lock);
2314
2315         skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
2316
2317         if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
2318                 getnstimeofday(&ts);
2319
2320         status |= ts_status;
2321
2322         switch (po->tp_version) {
2323         case TPACKET_V1:
2324                 h.h1->tp_len = skb->len;
2325                 h.h1->tp_snaplen = snaplen;
2326                 h.h1->tp_mac = macoff;
2327                 h.h1->tp_net = netoff;
2328                 h.h1->tp_sec = ts.tv_sec;
2329                 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
2330                 hdrlen = sizeof(*h.h1);
2331                 break;
2332         case TPACKET_V2:
2333                 h.h2->tp_len = skb->len;
2334                 h.h2->tp_snaplen = snaplen;
2335                 h.h2->tp_mac = macoff;
2336                 h.h2->tp_net = netoff;
2337                 h.h2->tp_sec = ts.tv_sec;
2338                 h.h2->tp_nsec = ts.tv_nsec;
2339                 if (skb_vlan_tag_present(skb)) {
2340                         h.h2->tp_vlan_tci = skb_vlan_tag_get(skb);
2341                         h.h2->tp_vlan_tpid = ntohs(skb->vlan_proto);
2342                         status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
2343                 } else {
2344                         h.h2->tp_vlan_tci = 0;
2345                         h.h2->tp_vlan_tpid = 0;
2346                 }
2347                 memset(h.h2->tp_padding, 0, sizeof(h.h2->tp_padding));
2348                 hdrlen = sizeof(*h.h2);
2349                 break;
2350         case TPACKET_V3:
2351                 /* tp_nxt_offset,vlan are already populated above.
2352                  * So DONT clear those fields here
2353                  */
2354                 h.h3->tp_status |= status;
2355                 h.h3->tp_len = skb->len;
2356                 h.h3->tp_snaplen = snaplen;
2357                 h.h3->tp_mac = macoff;
2358                 h.h3->tp_net = netoff;
2359                 h.h3->tp_sec  = ts.tv_sec;
2360                 h.h3->tp_nsec = ts.tv_nsec;
2361                 memset(h.h3->tp_padding, 0, sizeof(h.h3->tp_padding));
2362                 hdrlen = sizeof(*h.h3);
2363                 break;
2364         default:
2365                 BUG();
2366         }
2367
2368         sll = h.raw + TPACKET_ALIGN(hdrlen);
2369         sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
2370         sll->sll_family = AF_PACKET;
2371         sll->sll_hatype = dev->type;
2372         sll->sll_protocol = skb->protocol;
2373         sll->sll_pkttype = skb->pkt_type;
2374         if (unlikely(po->origdev))
2375                 sll->sll_ifindex = orig_dev->ifindex;
2376         else
2377                 sll->sll_ifindex = dev->ifindex;
2378
2379         smp_mb();
2380
2381 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
2382         if (po->tp_version <= TPACKET_V2) {
2383                 u8 *start, *end;
2384
2385                 end = (u8 *) PAGE_ALIGN((unsigned long) h.raw +
2386                                         macoff + snaplen);
2387
2388                 for (start = h.raw; start < end; start += PAGE_SIZE)
2389                         flush_dcache_page(pgv_to_page(start));
2390         }
2391         smp_wmb();
2392 #endif
2393
2394         if (po->tp_version <= TPACKET_V2) {
2395                 spin_lock(&sk->sk_receive_queue.lock);
2396                 __packet_set_status(po, h.raw, status);
2397                 __clear_bit(slot_id, po->rx_ring.rx_owner_map);
2398                 spin_unlock(&sk->sk_receive_queue.lock);
2399                 sk->sk_data_ready(sk);
2400         } else if (po->tp_version == TPACKET_V3) {
2401                 prb_clear_blk_fill_status(&po->rx_ring);
2402         }
2403
2404 drop_n_restore:
2405         if (skb_head != skb->data && skb_shared(skb)) {
2406                 skb->data = skb_head;
2407                 skb->len = skb_len;
2408         }
2409 drop:
2410         if (!is_drop_n_account)
2411                 consume_skb(skb);
2412         else
2413                 kfree_skb(skb);
2414         return 0;
2415
2416 drop_n_account:
2417         is_drop_n_account = true;
2418         po->stats.stats1.tp_drops++;
2419         spin_unlock(&sk->sk_receive_queue.lock);
2420
2421         sk->sk_data_ready(sk);
2422         kfree_skb(copy_skb);
2423         goto drop_n_restore;
2424 }
2425
2426 static void tpacket_destruct_skb(struct sk_buff *skb)
2427 {
2428         struct packet_sock *po = pkt_sk(skb->sk);
2429
2430         if (likely(po->tx_ring.pg_vec)) {
2431                 void *ph;
2432                 __u32 ts;
2433
2434                 ph = skb_zcopy_get_nouarg(skb);
2435                 packet_dec_pending(&po->tx_ring);
2436
2437                 ts = __packet_set_timestamp(po, ph, skb);
2438                 __packet_set_status(po, ph, TP_STATUS_AVAILABLE | ts);
2439
2440                 if (!packet_read_pending(&po->tx_ring))
2441                         complete(&po->skb_completion);
2442         }
2443
2444         sock_wfree(skb);
2445 }
2446
2447 static void tpacket_set_protocol(const struct net_device *dev,
2448                                  struct sk_buff *skb)
2449 {
2450         if (dev->type == ARPHRD_ETHER) {
2451                 skb_reset_mac_header(skb);
2452                 skb->protocol = eth_hdr(skb)->h_proto;
2453         }
2454 }
2455
2456 static int __packet_snd_vnet_parse(struct virtio_net_hdr *vnet_hdr, size_t len)
2457 {
2458         if ((vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2459             (__virtio16_to_cpu(vio_le(), vnet_hdr->csum_start) +
2460              __virtio16_to_cpu(vio_le(), vnet_hdr->csum_offset) + 2 >
2461               __virtio16_to_cpu(vio_le(), vnet_hdr->hdr_len)))
2462                 vnet_hdr->hdr_len = __cpu_to_virtio16(vio_le(),
2463                          __virtio16_to_cpu(vio_le(), vnet_hdr->csum_start) +
2464                         __virtio16_to_cpu(vio_le(), vnet_hdr->csum_offset) + 2);
2465
2466         if (__virtio16_to_cpu(vio_le(), vnet_hdr->hdr_len) > len)
2467                 return -EINVAL;
2468
2469         return 0;
2470 }
2471
2472 static int packet_snd_vnet_parse(struct msghdr *msg, size_t *len,
2473                                  struct virtio_net_hdr *vnet_hdr)
2474 {
2475         if (*len < sizeof(*vnet_hdr))
2476                 return -EINVAL;
2477         *len -= sizeof(*vnet_hdr);
2478
2479         if (!copy_from_iter_full(vnet_hdr, sizeof(*vnet_hdr), &msg->msg_iter))
2480                 return -EFAULT;
2481
2482         return __packet_snd_vnet_parse(vnet_hdr, *len);
2483 }
2484
2485 static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
2486                 void *frame, struct net_device *dev, void *data, int tp_len,
2487                 __be16 proto, unsigned char *addr, int hlen, int copylen,
2488                 const struct sockcm_cookie *sockc)
2489 {
2490         union tpacket_uhdr ph;
2491         int to_write, offset, len, nr_frags, len_max;
2492         struct socket *sock = po->sk.sk_socket;
2493         struct page *page;
2494         int err;
2495
2496         ph.raw = frame;
2497
2498         skb->protocol = proto;
2499         skb->dev = dev;
2500         skb->priority = po->sk.sk_priority;
2501         skb->mark = po->sk.sk_mark;
2502         skb->tstamp = sockc->transmit_time;
2503         skb_setup_tx_timestamp(skb, sockc->tsflags);
2504         skb_zcopy_set_nouarg(skb, ph.raw);
2505
2506         skb_reserve(skb, hlen);
2507         skb_reset_network_header(skb);
2508
2509         to_write = tp_len;
2510
2511         if (sock->type == SOCK_DGRAM) {
2512                 err = dev_hard_header(skb, dev, ntohs(proto), addr,
2513                                 NULL, tp_len);
2514                 if (unlikely(err < 0))
2515                         return -EINVAL;
2516         } else if (copylen) {
2517                 int hdrlen = min_t(int, copylen, tp_len);
2518
2519                 skb_push(skb, dev->hard_header_len);
2520                 skb_put(skb, copylen - dev->hard_header_len);
2521                 err = skb_store_bits(skb, 0, data, hdrlen);
2522                 if (unlikely(err))
2523                         return err;
2524                 if (!dev_validate_header(dev, skb->data, hdrlen))
2525                         return -EINVAL;
2526                 if (!skb->protocol)
2527                         tpacket_set_protocol(dev, skb);
2528
2529                 data += hdrlen;
2530                 to_write -= hdrlen;
2531         }
2532
2533         offset = offset_in_page(data);
2534         len_max = PAGE_SIZE - offset;
2535         len = ((to_write > len_max) ? len_max : to_write);
2536
2537         skb->data_len = to_write;
2538         skb->len += to_write;
2539         skb->truesize += to_write;
2540         refcount_add(to_write, &po->sk.sk_wmem_alloc);
2541
2542         while (likely(to_write)) {
2543                 nr_frags = skb_shinfo(skb)->nr_frags;
2544
2545                 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
2546                         pr_err("Packet exceed the number of skb frags(%lu)\n",
2547                                MAX_SKB_FRAGS);
2548                         return -EFAULT;
2549                 }
2550
2551                 page = pgv_to_page(data);
2552                 data += len;
2553                 flush_dcache_page(page);
2554                 get_page(page);
2555                 skb_fill_page_desc(skb, nr_frags, page, offset, len);
2556                 to_write -= len;
2557                 offset = 0;
2558                 len_max = PAGE_SIZE;
2559                 len = ((to_write > len_max) ? len_max : to_write);
2560         }
2561
2562         skb_probe_transport_header(skb, 0);
2563
2564         return tp_len;
2565 }
2566
2567 static int tpacket_parse_header(struct packet_sock *po, void *frame,
2568                                 int size_max, void **data)
2569 {
2570         union tpacket_uhdr ph;
2571         int tp_len, off;
2572
2573         ph.raw = frame;
2574
2575         switch (po->tp_version) {
2576         case TPACKET_V3:
2577                 if (ph.h3->tp_next_offset != 0) {
2578                         pr_warn_once("variable sized slot not supported");
2579                         return -EINVAL;
2580                 }
2581                 tp_len = ph.h3->tp_len;
2582                 break;
2583         case TPACKET_V2:
2584                 tp_len = ph.h2->tp_len;
2585                 break;
2586         default:
2587                 tp_len = ph.h1->tp_len;
2588                 break;
2589         }
2590         if (unlikely(tp_len > size_max)) {
2591                 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
2592                 return -EMSGSIZE;
2593         }
2594
2595         if (unlikely(po->tp_tx_has_off)) {
2596                 int off_min, off_max;
2597
2598                 off_min = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2599                 off_max = po->tx_ring.frame_size - tp_len;
2600                 if (po->sk.sk_type == SOCK_DGRAM) {
2601                         switch (po->tp_version) {
2602                         case TPACKET_V3:
2603                                 off = ph.h3->tp_net;
2604                                 break;
2605                         case TPACKET_V2:
2606                                 off = ph.h2->tp_net;
2607                                 break;
2608                         default:
2609                                 off = ph.h1->tp_net;
2610                                 break;
2611                         }
2612                 } else {
2613                         switch (po->tp_version) {
2614                         case TPACKET_V3:
2615                                 off = ph.h3->tp_mac;
2616                                 break;
2617                         case TPACKET_V2:
2618                                 off = ph.h2->tp_mac;
2619                                 break;
2620                         default:
2621                                 off = ph.h1->tp_mac;
2622                                 break;
2623                         }
2624                 }
2625                 if (unlikely((off < off_min) || (off_max < off)))
2626                         return -EINVAL;
2627         } else {
2628                 off = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2629         }
2630
2631         *data = frame + off;
2632         return tp_len;
2633 }
2634
2635 static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
2636 {
2637         struct sk_buff *skb = NULL;
2638         struct net_device *dev;
2639         struct virtio_net_hdr *vnet_hdr = NULL;
2640         struct sockcm_cookie sockc;
2641         __be16 proto;
2642         int err, reserve = 0;
2643         void *ph;
2644         DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
2645         bool need_wait = !(msg->msg_flags & MSG_DONTWAIT);
2646         unsigned char *addr = NULL;
2647         int tp_len, size_max;
2648         void *data;
2649         int len_sum = 0;
2650         int status = TP_STATUS_AVAILABLE;
2651         int hlen, tlen, copylen = 0;
2652         long timeo = 0;
2653
2654         mutex_lock(&po->pg_vec_lock);
2655
2656         /* packet_sendmsg() check on tx_ring.pg_vec was lockless,
2657          * we need to confirm it under protection of pg_vec_lock.
2658          */
2659         if (unlikely(!po->tx_ring.pg_vec)) {
2660                 err = -EBUSY;
2661                 goto out;
2662         }
2663         if (likely(saddr == NULL)) {
2664                 dev     = packet_cached_dev_get(po);
2665                 proto   = READ_ONCE(po->num);
2666         } else {
2667                 err = -EINVAL;
2668                 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2669                         goto out;
2670                 if (msg->msg_namelen < (saddr->sll_halen
2671                                         + offsetof(struct sockaddr_ll,
2672                                                 sll_addr)))
2673                         goto out;
2674                 proto   = saddr->sll_protocol;
2675                 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
2676                 if (po->sk.sk_socket->type == SOCK_DGRAM) {
2677                         if (dev && msg->msg_namelen < dev->addr_len +
2678                                    offsetof(struct sockaddr_ll, sll_addr))
2679                                 goto out_put;
2680                         addr = saddr->sll_addr;
2681                 }
2682         }
2683
2684         err = -ENXIO;
2685         if (unlikely(dev == NULL))
2686                 goto out;
2687         err = -ENETDOWN;
2688         if (unlikely(!(dev->flags & IFF_UP)))
2689                 goto out_put;
2690
2691         sockcm_init(&sockc, &po->sk);
2692         if (msg->msg_controllen) {
2693                 err = sock_cmsg_send(&po->sk, msg, &sockc);
2694                 if (unlikely(err))
2695                         goto out_put;
2696         }
2697
2698         if (po->sk.sk_socket->type == SOCK_RAW)
2699                 reserve = dev->hard_header_len;
2700         size_max = po->tx_ring.frame_size
2701                 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
2702
2703         if ((size_max > dev->mtu + reserve + VLAN_HLEN) && !po->has_vnet_hdr)
2704                 size_max = dev->mtu + reserve + VLAN_HLEN;
2705
2706         reinit_completion(&po->skb_completion);
2707
2708         do {
2709                 ph = packet_current_frame(po, &po->tx_ring,
2710                                           TP_STATUS_SEND_REQUEST);
2711                 if (unlikely(ph == NULL)) {
2712                         if (need_wait && skb) {
2713                                 timeo = sock_sndtimeo(&po->sk, msg->msg_flags & MSG_DONTWAIT);
2714                                 timeo = wait_for_completion_interruptible_timeout(&po->skb_completion, timeo);
2715                                 if (timeo <= 0) {
2716                                         err = !timeo ? -ETIMEDOUT : -ERESTARTSYS;
2717                                         goto out_put;
2718                                 }
2719                         }
2720                         /* check for additional frames */
2721                         continue;
2722                 }
2723
2724                 skb = NULL;
2725                 tp_len = tpacket_parse_header(po, ph, size_max, &data);
2726                 if (tp_len < 0)
2727                         goto tpacket_error;
2728
2729                 status = TP_STATUS_SEND_REQUEST;
2730                 hlen = LL_RESERVED_SPACE(dev);
2731                 tlen = dev->needed_tailroom;
2732                 if (po->has_vnet_hdr) {
2733                         vnet_hdr = data;
2734                         data += sizeof(*vnet_hdr);
2735                         tp_len -= sizeof(*vnet_hdr);
2736                         if (tp_len < 0 ||
2737                             __packet_snd_vnet_parse(vnet_hdr, tp_len)) {
2738                                 tp_len = -EINVAL;
2739                                 goto tpacket_error;
2740                         }
2741                         copylen = __virtio16_to_cpu(vio_le(),
2742                                                     vnet_hdr->hdr_len);
2743                 }
2744                 copylen = max_t(int, copylen, dev->hard_header_len);
2745                 skb = sock_alloc_send_skb(&po->sk,
2746                                 hlen + tlen + sizeof(struct sockaddr_ll) +
2747                                 (copylen - dev->hard_header_len),
2748                                 !need_wait, &err);
2749
2750                 if (unlikely(skb == NULL)) {
2751                         /* we assume the socket was initially writeable ... */
2752                         if (likely(len_sum > 0))
2753                                 err = len_sum;
2754                         goto out_status;
2755                 }
2756                 tp_len = tpacket_fill_skb(po, skb, ph, dev, data, tp_len, proto,
2757                                           addr, hlen, copylen, &sockc);
2758                 if (likely(tp_len >= 0) &&
2759                     tp_len > dev->mtu + reserve &&
2760                     !po->has_vnet_hdr &&
2761                     !packet_extra_vlan_len_allowed(dev, skb))
2762                         tp_len = -EMSGSIZE;
2763
2764                 if (unlikely(tp_len < 0)) {
2765 tpacket_error:
2766                         if (po->tp_loss) {
2767                                 __packet_set_status(po, ph,
2768                                                 TP_STATUS_AVAILABLE);
2769                                 packet_increment_head(&po->tx_ring);
2770                                 kfree_skb(skb);
2771                                 continue;
2772                         } else {
2773                                 status = TP_STATUS_WRONG_FORMAT;
2774                                 err = tp_len;
2775                                 goto out_status;
2776                         }
2777                 }
2778
2779                 if (po->has_vnet_hdr) {
2780                         if (virtio_net_hdr_to_skb(skb, vnet_hdr, vio_le())) {
2781                                 tp_len = -EINVAL;
2782                                 goto tpacket_error;
2783                         }
2784                         virtio_net_hdr_set_proto(skb, vnet_hdr);
2785                 }
2786
2787                 skb->destructor = tpacket_destruct_skb;
2788                 __packet_set_status(po, ph, TP_STATUS_SENDING);
2789                 packet_inc_pending(&po->tx_ring);
2790
2791                 status = TP_STATUS_SEND_REQUEST;
2792                 err = po->xmit(skb);
2793                 if (unlikely(err != 0)) {
2794                         if (err > 0)
2795                                 err = net_xmit_errno(err);
2796                         if (err && __packet_get_status(po, ph) ==
2797                                    TP_STATUS_AVAILABLE) {
2798                                 /* skb was destructed already */
2799                                 skb = NULL;
2800                                 goto out_status;
2801                         }
2802                         /*
2803                          * skb was dropped but not destructed yet;
2804                          * let's treat it like congestion or err < 0
2805                          */
2806                         err = 0;
2807                 }
2808                 packet_increment_head(&po->tx_ring);
2809                 len_sum += tp_len;
2810         } while (likely((ph != NULL) ||
2811                 /* Note: packet_read_pending() might be slow if we have
2812                  * to call it as it's per_cpu variable, but in fast-path
2813                  * we already short-circuit the loop with the first
2814                  * condition, and luckily don't have to go that path
2815                  * anyway.
2816                  */
2817                  (need_wait && packet_read_pending(&po->tx_ring))));
2818
2819         err = len_sum;
2820         goto out_put;
2821
2822 out_status:
2823         __packet_set_status(po, ph, status);
2824         kfree_skb(skb);
2825 out_put:
2826         dev_put(dev);
2827 out:
2828         mutex_unlock(&po->pg_vec_lock);
2829         return err;
2830 }
2831
2832 static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2833                                         size_t reserve, size_t len,
2834                                         size_t linear, int noblock,
2835                                         int *err)
2836 {
2837         struct sk_buff *skb;
2838
2839         /* Under a page?  Don't bother with paged skb. */
2840         if (prepad + len < PAGE_SIZE || !linear)
2841                 linear = len;
2842
2843         skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
2844                                    err, 0);
2845         if (!skb)
2846                 return NULL;
2847
2848         skb_reserve(skb, reserve);
2849         skb_put(skb, linear);
2850         skb->data_len = len - linear;
2851         skb->len += len - linear;
2852
2853         return skb;
2854 }
2855
2856 static int packet_snd(struct socket *sock, struct msghdr *msg, size_t len)
2857 {
2858         struct sock *sk = sock->sk;
2859         DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
2860         struct sk_buff *skb;
2861         struct net_device *dev;
2862         __be16 proto;
2863         unsigned char *addr = NULL;
2864         int err, reserve = 0;
2865         struct sockcm_cookie sockc;
2866         struct virtio_net_hdr vnet_hdr = { 0 };
2867         int offset = 0;
2868         struct packet_sock *po = pkt_sk(sk);
2869         bool has_vnet_hdr = false;
2870         int hlen, tlen, linear;
2871         int extra_len = 0;
2872
2873         /*
2874          *      Get and verify the address.
2875          */
2876
2877         if (likely(saddr == NULL)) {
2878                 dev     = packet_cached_dev_get(po);
2879                 proto   = READ_ONCE(po->num);
2880         } else {
2881                 err = -EINVAL;
2882                 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2883                         goto out;
2884                 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2885                         goto out;
2886                 proto   = saddr->sll_protocol;
2887                 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
2888                 if (sock->type == SOCK_DGRAM) {
2889                         if (dev && msg->msg_namelen < dev->addr_len +
2890                                    offsetof(struct sockaddr_ll, sll_addr))
2891                                 goto out_unlock;
2892                         addr = saddr->sll_addr;
2893                 }
2894         }
2895
2896         err = -ENXIO;
2897         if (unlikely(dev == NULL))
2898                 goto out_unlock;
2899         err = -ENETDOWN;
2900         if (unlikely(!(dev->flags & IFF_UP)))
2901                 goto out_unlock;
2902
2903         sockcm_init(&sockc, sk);
2904         sockc.mark = sk->sk_mark;
2905         if (msg->msg_controllen) {
2906                 err = sock_cmsg_send(sk, msg, &sockc);
2907                 if (unlikely(err))
2908                         goto out_unlock;
2909         }
2910
2911         if (sock->type == SOCK_RAW)
2912                 reserve = dev->hard_header_len;
2913         if (po->has_vnet_hdr) {
2914                 err = packet_snd_vnet_parse(msg, &len, &vnet_hdr);
2915                 if (err)
2916                         goto out_unlock;
2917                 has_vnet_hdr = true;
2918         }
2919
2920         if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2921                 if (!netif_supports_nofcs(dev)) {
2922                         err = -EPROTONOSUPPORT;
2923                         goto out_unlock;
2924                 }
2925                 extra_len = 4; /* We're doing our own CRC */
2926         }
2927
2928         err = -EMSGSIZE;
2929         if (!vnet_hdr.gso_type &&
2930             (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
2931                 goto out_unlock;
2932
2933         err = -ENOBUFS;
2934         hlen = LL_RESERVED_SPACE(dev);
2935         tlen = dev->needed_tailroom;
2936         linear = __virtio16_to_cpu(vio_le(), vnet_hdr.hdr_len);
2937         linear = max(linear, min_t(int, len, dev->hard_header_len));
2938         skb = packet_alloc_skb(sk, hlen + tlen, hlen, len, linear,
2939                                msg->msg_flags & MSG_DONTWAIT, &err);
2940         if (skb == NULL)
2941                 goto out_unlock;
2942
2943         skb_reset_network_header(skb);
2944
2945         err = -EINVAL;
2946         if (sock->type == SOCK_DGRAM) {
2947                 offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len);
2948                 if (unlikely(offset < 0))
2949                         goto out_free;
2950         } else if (reserve) {
2951                 skb_reserve(skb, -reserve);
2952                 if (len < reserve + sizeof(struct ipv6hdr) &&
2953                     dev->min_header_len != dev->hard_header_len)
2954                         skb_reset_network_header(skb);
2955         }
2956
2957         /* Returns -EFAULT on error */
2958         err = skb_copy_datagram_from_iter(skb, offset, &msg->msg_iter, len);
2959         if (err)
2960                 goto out_free;
2961
2962         if (sock->type == SOCK_RAW &&
2963             !dev_validate_header(dev, skb->data, len)) {
2964                 err = -EINVAL;
2965                 goto out_free;
2966         }
2967
2968         skb_setup_tx_timestamp(skb, sockc.tsflags);
2969
2970         if (!vnet_hdr.gso_type && (len > dev->mtu + reserve + extra_len) &&
2971             !packet_extra_vlan_len_allowed(dev, skb)) {
2972                 err = -EMSGSIZE;
2973                 goto out_free;
2974         }
2975
2976         skb->protocol = proto;
2977         skb->dev = dev;
2978         skb->priority = sk->sk_priority;
2979         skb->mark = sockc.mark;
2980         skb->tstamp = sockc.transmit_time;
2981
2982         if (has_vnet_hdr) {
2983                 err = virtio_net_hdr_to_skb(skb, &vnet_hdr, vio_le());
2984                 if (err)
2985                         goto out_free;
2986                 len += sizeof(vnet_hdr);
2987                 virtio_net_hdr_set_proto(skb, &vnet_hdr);
2988         }
2989
2990         skb_probe_transport_header(skb, reserve);
2991
2992         if (unlikely(extra_len == 4))
2993                 skb->no_fcs = 1;
2994
2995         err = po->xmit(skb);
2996         if (unlikely(err != 0)) {
2997                 if (err > 0)
2998                         err = net_xmit_errno(err);
2999                 if (err)
3000                         goto out_unlock;
3001         }
3002
3003         dev_put(dev);
3004
3005         return len;
3006
3007 out_free:
3008         kfree_skb(skb);
3009 out_unlock:
3010         if (dev)
3011                 dev_put(dev);
3012 out:
3013         return err;
3014 }
3015
3016 static int packet_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
3017 {
3018         struct sock *sk = sock->sk;
3019         struct packet_sock *po = pkt_sk(sk);
3020
3021         if (po->tx_ring.pg_vec)
3022                 return tpacket_snd(po, msg);
3023         else
3024                 return packet_snd(sock, msg, len);
3025 }
3026
3027 /*
3028  *      Close a PACKET socket. This is fairly simple. We immediately go
3029  *      to 'closed' state and remove our protocol entry in the device list.
3030  */
3031
3032 static int packet_release(struct socket *sock)
3033 {
3034         struct sock *sk = sock->sk;
3035         struct packet_sock *po;
3036         struct packet_fanout *f;
3037         struct net *net;
3038         union tpacket_req_u req_u;
3039
3040         if (!sk)
3041                 return 0;
3042
3043         net = sock_net(sk);
3044         po = pkt_sk(sk);
3045
3046         mutex_lock(&net->packet.sklist_lock);
3047         sk_del_node_init_rcu(sk);
3048         mutex_unlock(&net->packet.sklist_lock);
3049
3050         preempt_disable();
3051         sock_prot_inuse_add(net, sk->sk_prot, -1);
3052         preempt_enable();
3053
3054         spin_lock(&po->bind_lock);
3055         unregister_prot_hook(sk, false);
3056         packet_cached_dev_reset(po);
3057
3058         if (po->prot_hook.dev) {
3059                 dev_put(po->prot_hook.dev);
3060                 po->prot_hook.dev = NULL;
3061         }
3062         spin_unlock(&po->bind_lock);
3063
3064         packet_flush_mclist(sk);
3065
3066         lock_sock(sk);
3067         if (po->rx_ring.pg_vec) {
3068                 memset(&req_u, 0, sizeof(req_u));
3069                 packet_set_ring(sk, &req_u, 1, 0);
3070         }
3071
3072         if (po->tx_ring.pg_vec) {
3073                 memset(&req_u, 0, sizeof(req_u));
3074                 packet_set_ring(sk, &req_u, 1, 1);
3075         }
3076         release_sock(sk);
3077
3078         f = fanout_release(sk);
3079
3080         synchronize_net();
3081
3082         kfree(po->rollover);
3083         if (f) {
3084                 fanout_release_data(f);
3085                 kfree(f);
3086         }
3087         /*
3088          *      Now the socket is dead. No more input will appear.
3089          */
3090         sock_orphan(sk);
3091         sock->sk = NULL;
3092
3093         /* Purge queues */
3094
3095         skb_queue_purge(&sk->sk_receive_queue);
3096         packet_free_pending(po);
3097         sk_refcnt_debug_release(sk);
3098
3099         sock_put(sk);
3100         return 0;
3101 }
3102
3103 /*
3104  *      Attach a packet hook.
3105  */
3106
3107 static int packet_do_bind(struct sock *sk, const char *name, int ifindex,
3108                           __be16 proto)
3109 {
3110         struct packet_sock *po = pkt_sk(sk);
3111         struct net_device *dev_curr;
3112         __be16 proto_curr;
3113         bool need_rehook;
3114         struct net_device *dev = NULL;
3115         int ret = 0;
3116         bool unlisted = false;
3117
3118         lock_sock(sk);
3119         spin_lock(&po->bind_lock);
3120         rcu_read_lock();
3121
3122         if (po->fanout) {
3123                 ret = -EINVAL;
3124                 goto out_unlock;
3125         }
3126
3127         if (name) {
3128                 dev = dev_get_by_name_rcu(sock_net(sk), name);
3129                 if (!dev) {
3130                         ret = -ENODEV;
3131                         goto out_unlock;
3132                 }
3133         } else if (ifindex) {
3134                 dev = dev_get_by_index_rcu(sock_net(sk), ifindex);
3135                 if (!dev) {
3136                         ret = -ENODEV;
3137                         goto out_unlock;
3138                 }
3139         }
3140
3141         if (dev)
3142                 dev_hold(dev);
3143
3144         proto_curr = po->prot_hook.type;
3145         dev_curr = po->prot_hook.dev;
3146
3147         need_rehook = proto_curr != proto || dev_curr != dev;
3148
3149         if (need_rehook) {
3150                 if (po->running) {
3151                         rcu_read_unlock();
3152                         /* prevents packet_notifier() from calling
3153                          * register_prot_hook()
3154                          */
3155                         WRITE_ONCE(po->num, 0);
3156                         __unregister_prot_hook(sk, true);
3157                         rcu_read_lock();
3158                         dev_curr = po->prot_hook.dev;
3159                         if (dev)
3160                                 unlisted = !dev_get_by_index_rcu(sock_net(sk),
3161                                                                  dev->ifindex);
3162                 }
3163
3164                 BUG_ON(po->running);
3165                 WRITE_ONCE(po->num, proto);
3166                 po->prot_hook.type = proto;
3167
3168                 if (unlikely(unlisted)) {
3169                         dev_put(dev);
3170                         po->prot_hook.dev = NULL;
3171                         WRITE_ONCE(po->ifindex, -1);
3172                         packet_cached_dev_reset(po);
3173                 } else {
3174                         po->prot_hook.dev = dev;
3175                         WRITE_ONCE(po->ifindex, dev ? dev->ifindex : 0);
3176                         packet_cached_dev_assign(po, dev);
3177                 }
3178         }
3179         if (dev_curr)
3180                 dev_put(dev_curr);
3181
3182         if (proto == 0 || !need_rehook)
3183                 goto out_unlock;
3184
3185         if (!unlisted && (!dev || (dev->flags & IFF_UP))) {
3186                 register_prot_hook(sk);
3187         } else {
3188                 sk->sk_err = ENETDOWN;
3189                 if (!sock_flag(sk, SOCK_DEAD))
3190                         sk->sk_error_report(sk);
3191         }
3192
3193 out_unlock:
3194         rcu_read_unlock();
3195         spin_unlock(&po->bind_lock);
3196         release_sock(sk);
3197         return ret;
3198 }
3199
3200 /*
3201  *      Bind a packet socket to a device
3202  */
3203
3204 static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
3205                             int addr_len)
3206 {
3207         struct sock *sk = sock->sk;
3208         char name[sizeof(uaddr->sa_data) + 1];
3209
3210         /*
3211          *      Check legality
3212          */
3213
3214         if (addr_len != sizeof(struct sockaddr))
3215                 return -EINVAL;
3216         /* uaddr->sa_data comes from the userspace, it's not guaranteed to be
3217          * zero-terminated.
3218          */
3219         memcpy(name, uaddr->sa_data, sizeof(uaddr->sa_data));
3220         name[sizeof(uaddr->sa_data)] = 0;
3221
3222         return packet_do_bind(sk, name, 0, pkt_sk(sk)->num);
3223 }
3224
3225 static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
3226 {
3227         struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
3228         struct sock *sk = sock->sk;
3229
3230         /*
3231          *      Check legality
3232          */
3233
3234         if (addr_len < sizeof(struct sockaddr_ll))
3235                 return -EINVAL;
3236         if (sll->sll_family != AF_PACKET)
3237                 return -EINVAL;
3238
3239         return packet_do_bind(sk, NULL, sll->sll_ifindex,
3240                               sll->sll_protocol ? : pkt_sk(sk)->num);
3241 }
3242
3243 static struct proto packet_proto = {
3244         .name     = "PACKET",
3245         .owner    = THIS_MODULE,
3246         .obj_size = sizeof(struct packet_sock),
3247 };
3248
3249 /*
3250  *      Create a packet of type SOCK_PACKET.
3251  */
3252
3253 static int packet_create(struct net *net, struct socket *sock, int protocol,
3254                          int kern)
3255 {
3256         struct sock *sk;
3257         struct packet_sock *po;
3258         __be16 proto = (__force __be16)protocol; /* weird, but documented */
3259         int err;
3260
3261         if (!ns_capable(net->user_ns, CAP_NET_RAW))
3262                 return -EPERM;
3263         if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
3264             sock->type != SOCK_PACKET)
3265                 return -ESOCKTNOSUPPORT;
3266
3267         sock->state = SS_UNCONNECTED;
3268
3269         err = -ENOBUFS;
3270         sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto, kern);
3271         if (sk == NULL)
3272                 goto out;
3273
3274         sock->ops = &packet_ops;
3275         if (sock->type == SOCK_PACKET)
3276                 sock->ops = &packet_ops_spkt;
3277
3278         sock_init_data(sock, sk);
3279
3280         po = pkt_sk(sk);
3281         init_completion(&po->skb_completion);
3282         sk->sk_family = PF_PACKET;
3283         po->num = proto;
3284         po->xmit = dev_queue_xmit;
3285
3286         err = packet_alloc_pending(po);
3287         if (err)
3288                 goto out2;
3289
3290         packet_cached_dev_reset(po);
3291
3292         sk->sk_destruct = packet_sock_destruct;
3293         sk_refcnt_debug_inc(sk);
3294
3295         /*
3296          *      Attach a protocol block
3297          */
3298
3299         spin_lock_init(&po->bind_lock);
3300         mutex_init(&po->pg_vec_lock);
3301         po->rollover = NULL;
3302         po->prot_hook.func = packet_rcv;
3303
3304         if (sock->type == SOCK_PACKET)
3305                 po->prot_hook.func = packet_rcv_spkt;
3306
3307         po->prot_hook.af_packet_priv = sk;
3308         po->prot_hook.af_packet_net = sock_net(sk);
3309
3310         if (proto) {
3311                 po->prot_hook.type = proto;
3312                 __register_prot_hook(sk);
3313         }
3314
3315         mutex_lock(&net->packet.sklist_lock);
3316         sk_add_node_tail_rcu(sk, &net->packet.sklist);
3317         mutex_unlock(&net->packet.sklist_lock);
3318
3319         preempt_disable();
3320         sock_prot_inuse_add(net, &packet_proto, 1);
3321         preempt_enable();
3322
3323         return 0;
3324 out2:
3325         sk_free(sk);
3326 out:
3327         return err;
3328 }
3329
3330 /*
3331  *      Pull a packet from our receive queue and hand it to the user.
3332  *      If necessary we block.
3333  */
3334
3335 static int packet_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
3336                           int flags)
3337 {
3338         struct sock *sk = sock->sk;
3339         struct sk_buff *skb;
3340         int copied, err;
3341         int vnet_hdr_len = 0;
3342         unsigned int origlen = 0;
3343
3344         err = -EINVAL;
3345         if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
3346                 goto out;
3347
3348 #if 0
3349         /* What error should we return now? EUNATTACH? */
3350         if (pkt_sk(sk)->ifindex < 0)
3351                 return -ENODEV;
3352 #endif
3353
3354         if (flags & MSG_ERRQUEUE) {
3355                 err = sock_recv_errqueue(sk, msg, len,
3356                                          SOL_PACKET, PACKET_TX_TIMESTAMP);
3357                 goto out;
3358         }
3359
3360         /*
3361          *      Call the generic datagram receiver. This handles all sorts
3362          *      of horrible races and re-entrancy so we can forget about it
3363          *      in the protocol layers.
3364          *
3365          *      Now it will return ENETDOWN, if device have just gone down,
3366          *      but then it will block.
3367          */
3368
3369         skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
3370
3371         /*
3372          *      An error occurred so return it. Because skb_recv_datagram()
3373          *      handles the blocking we don't see and worry about blocking
3374          *      retries.
3375          */
3376
3377         if (skb == NULL)
3378                 goto out;
3379
3380         if (pkt_sk(sk)->pressure)
3381                 packet_rcv_has_room(pkt_sk(sk), NULL);
3382
3383         if (pkt_sk(sk)->has_vnet_hdr) {
3384                 err = packet_rcv_vnet(msg, skb, &len);
3385                 if (err)
3386                         goto out_free;
3387                 vnet_hdr_len = sizeof(struct virtio_net_hdr);
3388         }
3389
3390         /* You lose any data beyond the buffer you gave. If it worries
3391          * a user program they can ask the device for its MTU
3392          * anyway.
3393          */
3394         copied = skb->len;
3395         if (copied > len) {
3396                 copied = len;
3397                 msg->msg_flags |= MSG_TRUNC;
3398         }
3399
3400         err = skb_copy_datagram_msg(skb, 0, msg, copied);
3401         if (err)
3402                 goto out_free;
3403
3404         if (sock->type != SOCK_PACKET) {
3405                 struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
3406
3407                 /* Original length was stored in sockaddr_ll fields */
3408                 origlen = PACKET_SKB_CB(skb)->sa.origlen;
3409                 sll->sll_family = AF_PACKET;
3410                 sll->sll_protocol = skb->protocol;
3411         }
3412
3413         sock_recv_ts_and_drops(msg, sk, skb);
3414
3415         if (msg->msg_name) {
3416                 const size_t max_len = min(sizeof(skb->cb),
3417                                            sizeof(struct sockaddr_storage));
3418                 int copy_len;
3419
3420                 /* If the address length field is there to be filled
3421                  * in, we fill it in now.
3422                  */
3423                 if (sock->type == SOCK_PACKET) {
3424                         __sockaddr_check_size(sizeof(struct sockaddr_pkt));
3425                         msg->msg_namelen = sizeof(struct sockaddr_pkt);
3426                         copy_len = msg->msg_namelen;
3427                 } else {
3428                         struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
3429
3430                         msg->msg_namelen = sll->sll_halen +
3431                                 offsetof(struct sockaddr_ll, sll_addr);
3432                         copy_len = msg->msg_namelen;
3433                         if (msg->msg_namelen < sizeof(struct sockaddr_ll)) {
3434                                 memset(msg->msg_name +
3435                                        offsetof(struct sockaddr_ll, sll_addr),
3436                                        0, sizeof(sll->sll_addr));
3437                                 msg->msg_namelen = sizeof(struct sockaddr_ll);
3438                         }
3439                 }
3440                 if (WARN_ON_ONCE(copy_len > max_len)) {
3441                         copy_len = max_len;
3442                         msg->msg_namelen = copy_len;
3443                 }
3444                 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa, copy_len);
3445         }
3446
3447         if (pkt_sk(sk)->auxdata) {
3448                 struct tpacket_auxdata aux;
3449
3450                 aux.tp_status = TP_STATUS_USER;
3451                 if (skb->ip_summed == CHECKSUM_PARTIAL)
3452                         aux.tp_status |= TP_STATUS_CSUMNOTREADY;
3453                 else if (skb->pkt_type != PACKET_OUTGOING &&
3454                          skb_csum_unnecessary(skb))
3455                         aux.tp_status |= TP_STATUS_CSUM_VALID;
3456
3457                 aux.tp_len = origlen;
3458                 aux.tp_snaplen = skb->len;
3459                 aux.tp_mac = 0;
3460                 aux.tp_net = skb_network_offset(skb);
3461                 if (skb_vlan_tag_present(skb)) {
3462                         aux.tp_vlan_tci = skb_vlan_tag_get(skb);
3463                         aux.tp_vlan_tpid = ntohs(skb->vlan_proto);
3464                         aux.tp_status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
3465                 } else {
3466                         aux.tp_vlan_tci = 0;
3467                         aux.tp_vlan_tpid = 0;
3468                 }
3469                 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
3470         }
3471
3472         /*
3473          *      Free or return the buffer as appropriate. Again this
3474          *      hides all the races and re-entrancy issues from us.
3475          */
3476         err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
3477
3478 out_free:
3479         skb_free_datagram(sk, skb);
3480 out:
3481         return err;
3482 }
3483
3484 static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
3485                                int peer)
3486 {
3487         struct net_device *dev;
3488         struct sock *sk = sock->sk;
3489
3490         if (peer)
3491                 return -EOPNOTSUPP;
3492
3493         uaddr->sa_family = AF_PACKET;
3494         memset(uaddr->sa_data, 0, sizeof(uaddr->sa_data));
3495         rcu_read_lock();
3496         dev = dev_get_by_index_rcu(sock_net(sk), READ_ONCE(pkt_sk(sk)->ifindex));
3497         if (dev)
3498                 strlcpy(uaddr->sa_data, dev->name, sizeof(uaddr->sa_data));
3499         rcu_read_unlock();
3500
3501         return sizeof(*uaddr);
3502 }
3503
3504 static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
3505                           int peer)
3506 {
3507         struct net_device *dev;
3508         struct sock *sk = sock->sk;
3509         struct packet_sock *po = pkt_sk(sk);
3510         DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
3511         int ifindex;
3512
3513         if (peer)
3514                 return -EOPNOTSUPP;
3515
3516         ifindex = READ_ONCE(po->ifindex);
3517         sll->sll_family = AF_PACKET;
3518         sll->sll_ifindex = ifindex;
3519         sll->sll_protocol = READ_ONCE(po->num);
3520         sll->sll_pkttype = 0;
3521         rcu_read_lock();
3522         dev = dev_get_by_index_rcu(sock_net(sk), ifindex);
3523         if (dev) {
3524                 sll->sll_hatype = dev->type;
3525                 sll->sll_halen = dev->addr_len;
3526                 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
3527         } else {
3528                 sll->sll_hatype = 0;    /* Bad: we have no ARPHRD_UNSPEC */
3529                 sll->sll_halen = 0;
3530         }
3531         rcu_read_unlock();
3532
3533         return offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
3534 }
3535
3536 static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
3537                          int what)
3538 {
3539         switch (i->type) {
3540         case PACKET_MR_MULTICAST:
3541                 if (i->alen != dev->addr_len)
3542                         return -EINVAL;
3543                 if (what > 0)
3544                         return dev_mc_add(dev, i->addr);
3545                 else
3546                         return dev_mc_del(dev, i->addr);
3547                 break;
3548         case PACKET_MR_PROMISC:
3549                 return dev_set_promiscuity(dev, what);
3550         case PACKET_MR_ALLMULTI:
3551                 return dev_set_allmulti(dev, what);
3552         case PACKET_MR_UNICAST:
3553                 if (i->alen != dev->addr_len)
3554                         return -EINVAL;
3555                 if (what > 0)
3556                         return dev_uc_add(dev, i->addr);
3557                 else
3558                         return dev_uc_del(dev, i->addr);
3559                 break;
3560         default:
3561                 break;
3562         }
3563         return 0;
3564 }
3565
3566 static void packet_dev_mclist_delete(struct net_device *dev,
3567                                      struct packet_mclist **mlp)
3568 {
3569         struct packet_mclist *ml;
3570
3571         while ((ml = *mlp) != NULL) {
3572                 if (ml->ifindex == dev->ifindex) {
3573                         packet_dev_mc(dev, ml, -1);
3574                         *mlp = ml->next;
3575                         kfree(ml);
3576                 } else
3577                         mlp = &ml->next;
3578         }
3579 }
3580
3581 static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
3582 {
3583         struct packet_sock *po = pkt_sk(sk);
3584         struct packet_mclist *ml, *i;
3585         struct net_device *dev;
3586         int err;
3587
3588         rtnl_lock();
3589
3590         err = -ENODEV;
3591         dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
3592         if (!dev)
3593                 goto done;
3594
3595         err = -EINVAL;
3596         if (mreq->mr_alen > dev->addr_len)
3597                 goto done;
3598
3599         err = -ENOBUFS;
3600         i = kmalloc(sizeof(*i), GFP_KERNEL);
3601         if (i == NULL)
3602                 goto done;
3603
3604         err = 0;
3605         for (ml = po->mclist; ml; ml = ml->next) {
3606                 if (ml->ifindex == mreq->mr_ifindex &&
3607                     ml->type == mreq->mr_type &&
3608                     ml->alen == mreq->mr_alen &&
3609                     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3610                         ml->count++;
3611                         /* Free the new element ... */
3612                         kfree(i);
3613                         goto done;
3614                 }
3615         }
3616
3617         i->type = mreq->mr_type;
3618         i->ifindex = mreq->mr_ifindex;
3619         i->alen = mreq->mr_alen;
3620         memcpy(i->addr, mreq->mr_address, i->alen);
3621         memset(i->addr + i->alen, 0, sizeof(i->addr) - i->alen);
3622         i->count = 1;
3623         i->next = po->mclist;
3624         po->mclist = i;
3625         err = packet_dev_mc(dev, i, 1);
3626         if (err) {
3627                 po->mclist = i->next;
3628                 kfree(i);
3629         }
3630
3631 done:
3632         rtnl_unlock();
3633         return err;
3634 }
3635
3636 static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
3637 {
3638         struct packet_mclist *ml, **mlp;
3639
3640         rtnl_lock();
3641
3642         for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
3643                 if (ml->ifindex == mreq->mr_ifindex &&
3644                     ml->type == mreq->mr_type &&
3645                     ml->alen == mreq->mr_alen &&
3646                     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3647                         if (--ml->count == 0) {
3648                                 struct net_device *dev;
3649                                 *mlp = ml->next;
3650                                 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3651                                 if (dev)
3652                                         packet_dev_mc(dev, ml, -1);
3653                                 kfree(ml);
3654                         }
3655                         break;
3656                 }
3657         }
3658         rtnl_unlock();
3659         return 0;
3660 }
3661
3662 static void packet_flush_mclist(struct sock *sk)
3663 {
3664         struct packet_sock *po = pkt_sk(sk);
3665         struct packet_mclist *ml;
3666
3667         if (!po->mclist)
3668                 return;
3669
3670         rtnl_lock();
3671         while ((ml = po->mclist) != NULL) {
3672                 struct net_device *dev;
3673
3674                 po->mclist = ml->next;
3675                 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3676                 if (dev != NULL)
3677                         packet_dev_mc(dev, ml, -1);
3678                 kfree(ml);
3679         }
3680         rtnl_unlock();
3681 }
3682
3683 static int
3684 packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
3685 {
3686         struct sock *sk = sock->sk;
3687         struct packet_sock *po = pkt_sk(sk);
3688         int ret;
3689
3690         if (level != SOL_PACKET)
3691                 return -ENOPROTOOPT;
3692
3693         switch (optname) {
3694         case PACKET_ADD_MEMBERSHIP:
3695         case PACKET_DROP_MEMBERSHIP:
3696         {
3697                 struct packet_mreq_max mreq;
3698                 int len = optlen;
3699                 memset(&mreq, 0, sizeof(mreq));
3700                 if (len < sizeof(struct packet_mreq))
3701                         return -EINVAL;
3702                 if (len > sizeof(mreq))
3703                         len = sizeof(mreq);
3704                 if (copy_from_user(&mreq, optval, len))
3705                         return -EFAULT;
3706                 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
3707                         return -EINVAL;
3708                 if (optname == PACKET_ADD_MEMBERSHIP)
3709                         ret = packet_mc_add(sk, &mreq);
3710                 else
3711                         ret = packet_mc_drop(sk, &mreq);
3712                 return ret;
3713         }
3714
3715         case PACKET_RX_RING:
3716         case PACKET_TX_RING:
3717         {
3718                 union tpacket_req_u req_u;
3719                 int len;
3720
3721                 lock_sock(sk);
3722                 switch (po->tp_version) {
3723                 case TPACKET_V1:
3724                 case TPACKET_V2:
3725                         len = sizeof(req_u.req);
3726                         break;
3727                 case TPACKET_V3:
3728                 default:
3729                         len = sizeof(req_u.req3);
3730                         break;
3731                 }
3732                 if (optlen < len) {
3733                         ret = -EINVAL;
3734                 } else {
3735                         if (copy_from_user(&req_u.req, optval, len))
3736                                 ret = -EFAULT;
3737                         else
3738                                 ret = packet_set_ring(sk, &req_u, 0,
3739                                                     optname == PACKET_TX_RING);
3740                 }
3741                 release_sock(sk);
3742                 return ret;
3743         }
3744         case PACKET_COPY_THRESH:
3745         {
3746                 int val;
3747
3748                 if (optlen != sizeof(val))
3749                         return -EINVAL;
3750                 if (copy_from_user(&val, optval, sizeof(val)))
3751                         return -EFAULT;
3752
3753                 pkt_sk(sk)->copy_thresh = val;
3754                 return 0;
3755         }
3756         case PACKET_VERSION:
3757         {
3758                 int val;
3759
3760                 if (optlen != sizeof(val))
3761                         return -EINVAL;
3762                 if (copy_from_user(&val, optval, sizeof(val)))
3763                         return -EFAULT;
3764                 switch (val) {
3765                 case TPACKET_V1:
3766                 case TPACKET_V2:
3767                 case TPACKET_V3:
3768                         break;
3769                 default:
3770                         return -EINVAL;
3771                 }
3772                 lock_sock(sk);
3773                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3774                         ret = -EBUSY;
3775                 } else {
3776                         po->tp_version = val;
3777                         ret = 0;
3778                 }
3779                 release_sock(sk);
3780                 return ret;
3781         }
3782         case PACKET_RESERVE:
3783         {
3784                 unsigned int val;
3785
3786                 if (optlen != sizeof(val))
3787                         return -EINVAL;
3788                 if (copy_from_user(&val, optval, sizeof(val)))
3789                         return -EFAULT;
3790                 if (val > INT_MAX)
3791                         return -EINVAL;
3792                 lock_sock(sk);
3793                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3794                         ret = -EBUSY;
3795                 } else {
3796                         po->tp_reserve = val;
3797                         ret = 0;
3798                 }
3799                 release_sock(sk);
3800                 return ret;
3801         }
3802         case PACKET_LOSS:
3803         {
3804                 unsigned int val;
3805
3806                 if (optlen != sizeof(val))
3807                         return -EINVAL;
3808                 if (copy_from_user(&val, optval, sizeof(val)))
3809                         return -EFAULT;
3810
3811                 lock_sock(sk);
3812                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3813                         ret = -EBUSY;
3814                 } else {
3815                         po->tp_loss = !!val;
3816                         ret = 0;
3817                 }
3818                 release_sock(sk);
3819                 return ret;
3820         }
3821         case PACKET_AUXDATA:
3822         {
3823                 int val;
3824
3825                 if (optlen < sizeof(val))
3826                         return -EINVAL;
3827                 if (copy_from_user(&val, optval, sizeof(val)))
3828                         return -EFAULT;
3829
3830                 lock_sock(sk);
3831                 po->auxdata = !!val;
3832                 release_sock(sk);
3833                 return 0;
3834         }
3835         case PACKET_ORIGDEV:
3836         {
3837                 int val;
3838
3839                 if (optlen < sizeof(val))
3840                         return -EINVAL;
3841                 if (copy_from_user(&val, optval, sizeof(val)))
3842                         return -EFAULT;
3843
3844                 lock_sock(sk);
3845                 po->origdev = !!val;
3846                 release_sock(sk);
3847                 return 0;
3848         }
3849         case PACKET_VNET_HDR:
3850         {
3851                 int val;
3852
3853                 if (sock->type != SOCK_RAW)
3854                         return -EINVAL;
3855                 if (optlen < sizeof(val))
3856                         return -EINVAL;
3857                 if (copy_from_user(&val, optval, sizeof(val)))
3858                         return -EFAULT;
3859
3860                 lock_sock(sk);
3861                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3862                         ret = -EBUSY;
3863                 } else {
3864                         po->has_vnet_hdr = !!val;
3865                         ret = 0;
3866                 }
3867                 release_sock(sk);
3868                 return ret;
3869         }
3870         case PACKET_TIMESTAMP:
3871         {
3872                 int val;
3873
3874                 if (optlen != sizeof(val))
3875                         return -EINVAL;
3876                 if (copy_from_user(&val, optval, sizeof(val)))
3877                         return -EFAULT;
3878
3879                 po->tp_tstamp = val;
3880                 return 0;
3881         }
3882         case PACKET_FANOUT:
3883         {
3884                 int val;
3885
3886                 if (optlen != sizeof(val))
3887                         return -EINVAL;
3888                 if (copy_from_user(&val, optval, sizeof(val)))
3889                         return -EFAULT;
3890
3891                 return fanout_add(sk, val & 0xffff, val >> 16);
3892         }
3893         case PACKET_FANOUT_DATA:
3894         {
3895                 /* Paired with the WRITE_ONCE() in fanout_add() */
3896                 if (!READ_ONCE(po->fanout))
3897                         return -EINVAL;
3898
3899                 return fanout_set_data(po, optval, optlen);
3900         }
3901         case PACKET_TX_HAS_OFF:
3902         {
3903                 unsigned int val;
3904
3905                 if (optlen != sizeof(val))
3906                         return -EINVAL;
3907                 if (copy_from_user(&val, optval, sizeof(val)))
3908                         return -EFAULT;
3909
3910                 lock_sock(sk);
3911                 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3912                         ret = -EBUSY;
3913                 } else {
3914                         po->tp_tx_has_off = !!val;
3915                         ret = 0;
3916                 }
3917                 release_sock(sk);
3918                 return 0;
3919         }
3920         case PACKET_QDISC_BYPASS:
3921         {
3922                 int val;
3923
3924                 if (optlen != sizeof(val))
3925                         return -EINVAL;
3926                 if (copy_from_user(&val, optval, sizeof(val)))
3927                         return -EFAULT;
3928
3929                 po->xmit = val ? packet_direct_xmit : dev_queue_xmit;
3930                 return 0;
3931         }
3932         default:
3933                 return -ENOPROTOOPT;
3934         }
3935 }
3936
3937 static int packet_getsockopt(struct socket *sock, int level, int optname,
3938                              char __user *optval, int __user *optlen)
3939 {
3940         int len;
3941         int val, lv = sizeof(val);
3942         struct sock *sk = sock->sk;
3943         struct packet_sock *po = pkt_sk(sk);
3944         void *data = &val;
3945         union tpacket_stats_u st;
3946         struct tpacket_rollover_stats rstats;
3947
3948         if (level != SOL_PACKET)
3949                 return -ENOPROTOOPT;
3950
3951         if (get_user(len, optlen))
3952                 return -EFAULT;
3953
3954         if (len < 0)
3955                 return -EINVAL;
3956
3957         switch (optname) {
3958         case PACKET_STATISTICS:
3959                 spin_lock_bh(&sk->sk_receive_queue.lock);
3960                 memcpy(&st, &po->stats, sizeof(st));
3961                 memset(&po->stats, 0, sizeof(po->stats));
3962                 spin_unlock_bh(&sk->sk_receive_queue.lock);
3963
3964                 if (po->tp_version == TPACKET_V3) {
3965                         lv = sizeof(struct tpacket_stats_v3);
3966                         st.stats3.tp_packets += st.stats3.tp_drops;
3967                         data = &st.stats3;
3968                 } else {
3969                         lv = sizeof(struct tpacket_stats);
3970                         st.stats1.tp_packets += st.stats1.tp_drops;
3971                         data = &st.stats1;
3972                 }
3973
3974                 break;
3975         case PACKET_AUXDATA:
3976                 val = po->auxdata;
3977                 break;
3978         case PACKET_ORIGDEV:
3979                 val = po->origdev;
3980                 break;
3981         case PACKET_VNET_HDR:
3982                 val = po->has_vnet_hdr;
3983                 break;
3984         case PACKET_VERSION:
3985                 val = po->tp_version;
3986                 break;
3987         case PACKET_HDRLEN:
3988                 if (len > sizeof(int))
3989                         len = sizeof(int);
3990                 if (len < sizeof(int))
3991                         return -EINVAL;
3992                 if (copy_from_user(&val, optval, len))
3993                         return -EFAULT;
3994                 switch (val) {
3995                 case TPACKET_V1:
3996                         val = sizeof(struct tpacket_hdr);
3997                         break;
3998                 case TPACKET_V2:
3999                         val = sizeof(struct tpacket2_hdr);
4000                         break;
4001                 case TPACKET_V3:
4002                         val = sizeof(struct tpacket3_hdr);
4003                         break;
4004                 default:
4005                         return -EINVAL;
4006                 }
4007                 break;
4008         case PACKET_RESERVE:
4009                 val = po->tp_reserve;
4010                 break;
4011         case PACKET_LOSS:
4012                 val = po->tp_loss;
4013                 break;
4014         case PACKET_TIMESTAMP:
4015                 val = po->tp_tstamp;
4016                 break;
4017         case PACKET_FANOUT:
4018                 val = (po->fanout ?
4019                        ((u32)po->fanout->id |
4020                         ((u32)po->fanout->type << 16) |
4021                         ((u32)po->fanout->flags << 24)) :
4022                        0);
4023                 break;
4024         case PACKET_ROLLOVER_STATS:
4025                 if (!po->rollover)
4026                         return -EINVAL;
4027                 rstats.tp_all = atomic_long_read(&po->rollover->num);
4028                 rstats.tp_huge = atomic_long_read(&po->rollover->num_huge);
4029                 rstats.tp_failed = atomic_long_read(&po->rollover->num_failed);
4030                 data = &rstats;
4031                 lv = sizeof(rstats);
4032                 break;
4033         case PACKET_TX_HAS_OFF:
4034                 val = po->tp_tx_has_off;
4035                 break;
4036         case PACKET_QDISC_BYPASS:
4037                 val = packet_use_direct_xmit(po);
4038                 break;
4039         default:
4040                 return -ENOPROTOOPT;
4041         }
4042
4043         if (len > lv)
4044                 len = lv;
4045         if (put_user(len, optlen))
4046                 return -EFAULT;
4047         if (copy_to_user(optval, data, len))
4048                 return -EFAULT;
4049         return 0;
4050 }
4051
4052
4053 #ifdef CONFIG_COMPAT
4054 static int compat_packet_setsockopt(struct socket *sock, int level, int optname,
4055                                     char __user *optval, unsigned int optlen)
4056 {
4057         struct packet_sock *po = pkt_sk(sock->sk);
4058
4059         if (level != SOL_PACKET)
4060                 return -ENOPROTOOPT;
4061
4062         if (optname == PACKET_FANOUT_DATA &&
4063             po->fanout && po->fanout->type == PACKET_FANOUT_CBPF) {
4064                 optval = (char __user *)get_compat_bpf_fprog(optval);
4065                 if (!optval)
4066                         return -EFAULT;
4067                 optlen = sizeof(struct sock_fprog);
4068         }
4069
4070         return packet_setsockopt(sock, level, optname, optval, optlen);
4071 }
4072 #endif
4073
4074 static int packet_notifier(struct notifier_block *this,
4075                            unsigned long msg, void *ptr)
4076 {
4077         struct sock *sk;
4078         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
4079         struct net *net = dev_net(dev);
4080
4081         rcu_read_lock();
4082         sk_for_each_rcu(sk, &net->packet.sklist) {
4083                 struct packet_sock *po = pkt_sk(sk);
4084
4085                 switch (msg) {
4086                 case NETDEV_UNREGISTER:
4087                         if (po->mclist)
4088                                 packet_dev_mclist_delete(dev, &po->mclist);
4089                         /* fallthrough */
4090
4091                 case NETDEV_DOWN:
4092                         if (dev->ifindex == po->ifindex) {
4093                                 spin_lock(&po->bind_lock);
4094                                 if (po->running) {
4095                                         __unregister_prot_hook(sk, false);
4096                                         sk->sk_err = ENETDOWN;
4097                                         if (!sock_flag(sk, SOCK_DEAD))
4098                                                 sk->sk_error_report(sk);
4099                                 }
4100                                 if (msg == NETDEV_UNREGISTER) {
4101                                         packet_cached_dev_reset(po);
4102                                         WRITE_ONCE(po->ifindex, -1);
4103                                         if (po->prot_hook.dev)
4104                                                 dev_put(po->prot_hook.dev);
4105                                         po->prot_hook.dev = NULL;
4106                                 }
4107                                 spin_unlock(&po->bind_lock);
4108                         }
4109                         break;
4110                 case NETDEV_UP:
4111                         if (dev->ifindex == po->ifindex) {
4112                                 spin_lock(&po->bind_lock);
4113                                 if (po->num)
4114                                         register_prot_hook(sk);
4115                                 spin_unlock(&po->bind_lock);
4116                         }
4117                         break;
4118                 }
4119         }
4120         rcu_read_unlock();
4121         return NOTIFY_DONE;
4122 }
4123
4124
4125 static int packet_ioctl(struct socket *sock, unsigned int cmd,
4126                         unsigned long arg)
4127 {
4128         struct sock *sk = sock->sk;
4129
4130         switch (cmd) {
4131         case SIOCOUTQ:
4132         {
4133                 int amount = sk_wmem_alloc_get(sk);
4134
4135                 return put_user(amount, (int __user *)arg);
4136         }
4137         case SIOCINQ:
4138         {
4139                 struct sk_buff *skb;
4140                 int amount = 0;
4141
4142                 spin_lock_bh(&sk->sk_receive_queue.lock);
4143                 skb = skb_peek(&sk->sk_receive_queue);
4144                 if (skb)
4145                         amount = skb->len;
4146                 spin_unlock_bh(&sk->sk_receive_queue.lock);
4147                 return put_user(amount, (int __user *)arg);
4148         }
4149         case SIOCGSTAMP:
4150                 return sock_get_timestamp(sk, (struct timeval __user *)arg);
4151         case SIOCGSTAMPNS:
4152                 return sock_get_timestampns(sk, (struct timespec __user *)arg);
4153
4154 #ifdef CONFIG_INET
4155         case SIOCADDRT:
4156         case SIOCDELRT:
4157         case SIOCDARP:
4158         case SIOCGARP:
4159         case SIOCSARP:
4160         case SIOCGIFADDR:
4161         case SIOCSIFADDR:
4162         case SIOCGIFBRDADDR:
4163         case SIOCSIFBRDADDR:
4164         case SIOCGIFNETMASK:
4165         case SIOCSIFNETMASK:
4166         case SIOCGIFDSTADDR:
4167         case SIOCSIFDSTADDR:
4168         case SIOCSIFFLAGS:
4169                 return inet_dgram_ops.ioctl(sock, cmd, arg);
4170 #endif
4171
4172         default:
4173                 return -ENOIOCTLCMD;
4174         }
4175         return 0;
4176 }
4177
4178 static __poll_t packet_poll(struct file *file, struct socket *sock,
4179                                 poll_table *wait)
4180 {
4181         struct sock *sk = sock->sk;
4182         struct packet_sock *po = pkt_sk(sk);
4183         __poll_t mask = datagram_poll(file, sock, wait);
4184
4185         spin_lock_bh(&sk->sk_receive_queue.lock);
4186         if (po->rx_ring.pg_vec) {
4187                 if (!packet_previous_rx_frame(po, &po->rx_ring,
4188                         TP_STATUS_KERNEL))
4189                         mask |= EPOLLIN | EPOLLRDNORM;
4190         }
4191         if (po->pressure && __packet_rcv_has_room(po, NULL) == ROOM_NORMAL)
4192                 po->pressure = 0;
4193         spin_unlock_bh(&sk->sk_receive_queue.lock);
4194         spin_lock_bh(&sk->sk_write_queue.lock);
4195         if (po->tx_ring.pg_vec) {
4196                 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
4197                         mask |= EPOLLOUT | EPOLLWRNORM;
4198         }
4199         spin_unlock_bh(&sk->sk_write_queue.lock);
4200         return mask;
4201 }
4202
4203
4204 /* Dirty? Well, I still did not learn better way to account
4205  * for user mmaps.
4206  */
4207
4208 static void packet_mm_open(struct vm_area_struct *vma)
4209 {
4210         struct file *file = vma->vm_file;
4211         struct socket *sock = file->private_data;
4212         struct sock *sk = sock->sk;
4213
4214         if (sk)
4215                 atomic_inc(&pkt_sk(sk)->mapped);
4216 }
4217
4218 static void packet_mm_close(struct vm_area_struct *vma)
4219 {
4220         struct file *file = vma->vm_file;
4221         struct socket *sock = file->private_data;
4222         struct sock *sk = sock->sk;
4223
4224         if (sk)
4225                 atomic_dec(&pkt_sk(sk)->mapped);
4226 }
4227
4228 static const struct vm_operations_struct packet_mmap_ops = {
4229         .open   =       packet_mm_open,
4230         .close  =       packet_mm_close,
4231 };
4232
4233 static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
4234                         unsigned int len)
4235 {
4236         int i;
4237
4238         for (i = 0; i < len; i++) {
4239                 if (likely(pg_vec[i].buffer)) {
4240                         if (is_vmalloc_addr(pg_vec[i].buffer))
4241                                 vfree(pg_vec[i].buffer);
4242                         else
4243                                 free_pages((unsigned long)pg_vec[i].buffer,
4244                                            order);
4245                         pg_vec[i].buffer = NULL;
4246                 }
4247         }
4248         kfree(pg_vec);
4249 }
4250
4251 static char *alloc_one_pg_vec_page(unsigned long order)
4252 {
4253         char *buffer;
4254         gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
4255                           __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
4256
4257         buffer = (char *) __get_free_pages(gfp_flags, order);
4258         if (buffer)
4259                 return buffer;
4260
4261         /* __get_free_pages failed, fall back to vmalloc */
4262         buffer = vzalloc(array_size((1 << order), PAGE_SIZE));
4263         if (buffer)
4264                 return buffer;
4265
4266         /* vmalloc failed, lets dig into swap here */
4267         gfp_flags &= ~__GFP_NORETRY;
4268         buffer = (char *) __get_free_pages(gfp_flags, order);
4269         if (buffer)
4270                 return buffer;
4271
4272         /* complete and utter failure */
4273         return NULL;
4274 }
4275
4276 static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
4277 {
4278         unsigned int block_nr = req->tp_block_nr;
4279         struct pgv *pg_vec;
4280         int i;
4281
4282         pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL | __GFP_NOWARN);
4283         if (unlikely(!pg_vec))
4284                 goto out;
4285
4286         for (i = 0; i < block_nr; i++) {
4287                 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
4288                 if (unlikely(!pg_vec[i].buffer))
4289                         goto out_free_pgvec;
4290         }
4291
4292 out:
4293         return pg_vec;
4294
4295 out_free_pgvec:
4296         free_pg_vec(pg_vec, order, block_nr);
4297         pg_vec = NULL;
4298         goto out;
4299 }
4300
4301 static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
4302                 int closing, int tx_ring)
4303 {
4304         struct pgv *pg_vec = NULL;
4305         struct packet_sock *po = pkt_sk(sk);
4306         unsigned long *rx_owner_map = NULL;
4307         int was_running, order = 0;
4308         struct packet_ring_buffer *rb;
4309         struct sk_buff_head *rb_queue;
4310         __be16 num;
4311         int err = -EINVAL;
4312         /* Added to avoid minimal code churn */
4313         struct tpacket_req *req = &req_u->req;
4314
4315         rb = tx_ring ? &po->tx_ring : &po->rx_ring;
4316         rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
4317
4318         err = -EBUSY;
4319         if (!closing) {
4320                 if (atomic_read(&po->mapped))
4321                         goto out;
4322                 if (packet_read_pending(rb))
4323                         goto out;
4324         }
4325
4326         if (req->tp_block_nr) {
4327                 unsigned int min_frame_size;
4328
4329                 /* Sanity tests and some calculations */
4330                 err = -EBUSY;
4331                 if (unlikely(rb->pg_vec))
4332                         goto out;
4333
4334                 switch (po->tp_version) {
4335                 case TPACKET_V1:
4336                         po->tp_hdrlen = TPACKET_HDRLEN;
4337                         break;
4338                 case TPACKET_V2:
4339                         po->tp_hdrlen = TPACKET2_HDRLEN;
4340                         break;
4341                 case TPACKET_V3:
4342                         po->tp_hdrlen = TPACKET3_HDRLEN;
4343                         break;
4344                 }
4345
4346                 err = -EINVAL;
4347                 if (unlikely((int)req->tp_block_size <= 0))
4348                         goto out;
4349                 if (unlikely(!PAGE_ALIGNED(req->tp_block_size)))
4350                         goto out;
4351                 min_frame_size = po->tp_hdrlen + po->tp_reserve;
4352                 if (po->tp_version >= TPACKET_V3 &&
4353                     req->tp_block_size <
4354                     BLK_PLUS_PRIV((u64)req_u->req3.tp_sizeof_priv) + min_frame_size)
4355                         goto out;
4356                 if (unlikely(req->tp_frame_size < min_frame_size))
4357                         goto out;
4358                 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
4359                         goto out;
4360
4361                 rb->frames_per_block = req->tp_block_size / req->tp_frame_size;
4362                 if (unlikely(rb->frames_per_block == 0))
4363                         goto out;
4364                 if (unlikely(rb->frames_per_block > UINT_MAX / req->tp_block_nr))
4365                         goto out;
4366                 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
4367                                         req->tp_frame_nr))
4368                         goto out;
4369
4370                 err = -ENOMEM;
4371                 order = get_order(req->tp_block_size);
4372                 pg_vec = alloc_pg_vec(req, order);
4373                 if (unlikely(!pg_vec))
4374                         goto out;
4375                 switch (po->tp_version) {
4376                 case TPACKET_V3:
4377                         /* Block transmit is not supported yet */
4378                         if (!tx_ring) {
4379                                 init_prb_bdqc(po, rb, pg_vec, req_u);
4380                         } else {
4381                                 struct tpacket_req3 *req3 = &req_u->req3;
4382
4383                                 if (req3->tp_retire_blk_tov ||
4384                                     req3->tp_sizeof_priv ||
4385                                     req3->tp_feature_req_word) {
4386                                         err = -EINVAL;
4387                                         goto out_free_pg_vec;
4388                                 }
4389                         }
4390                         break;
4391                 default:
4392                         if (!tx_ring) {
4393                                 rx_owner_map = bitmap_alloc(req->tp_frame_nr,
4394                                         GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO);
4395                                 if (!rx_owner_map)
4396                                         goto out_free_pg_vec;
4397                         }
4398                         break;
4399                 }
4400         }
4401         /* Done */
4402         else {
4403                 err = -EINVAL;
4404                 if (unlikely(req->tp_frame_nr))
4405                         goto out;
4406         }
4407
4408
4409         /* Detach socket from network */
4410         spin_lock(&po->bind_lock);
4411         was_running = po->running;
4412         num = po->num;
4413         if (was_running) {
4414                 WRITE_ONCE(po->num, 0);
4415                 __unregister_prot_hook(sk, false);
4416         }
4417         spin_unlock(&po->bind_lock);
4418
4419         synchronize_net();
4420
4421         err = -EBUSY;
4422         mutex_lock(&po->pg_vec_lock);
4423         if (closing || atomic_read(&po->mapped) == 0) {
4424                 err = 0;
4425                 spin_lock_bh(&rb_queue->lock);
4426                 swap(rb->pg_vec, pg_vec);
4427                 if (po->tp_version <= TPACKET_V2)
4428                         swap(rb->rx_owner_map, rx_owner_map);
4429                 rb->frame_max = (req->tp_frame_nr - 1);
4430                 rb->head = 0;
4431                 rb->frame_size = req->tp_frame_size;
4432                 spin_unlock_bh(&rb_queue->lock);
4433
4434                 swap(rb->pg_vec_order, order);
4435                 swap(rb->pg_vec_len, req->tp_block_nr);
4436
4437                 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
4438                 po->prot_hook.func = (po->rx_ring.pg_vec) ?
4439                                                 tpacket_rcv : packet_rcv;
4440                 skb_queue_purge(rb_queue);
4441                 if (atomic_read(&po->mapped))
4442                         pr_err("packet_mmap: vma is busy: %d\n",
4443                                atomic_read(&po->mapped));
4444         }
4445         mutex_unlock(&po->pg_vec_lock);
4446
4447         spin_lock(&po->bind_lock);
4448         if (was_running) {
4449                 WRITE_ONCE(po->num, num);
4450                 register_prot_hook(sk);
4451         }
4452         spin_unlock(&po->bind_lock);
4453         if (pg_vec && (po->tp_version > TPACKET_V2)) {
4454                 /* Because we don't support block-based V3 on tx-ring */
4455                 if (!tx_ring)
4456                         prb_shutdown_retire_blk_timer(po, rb_queue);
4457         }
4458
4459 out_free_pg_vec:
4460         if (pg_vec) {
4461                 bitmap_free(rx_owner_map);
4462                 free_pg_vec(pg_vec, order, req->tp_block_nr);
4463         }
4464 out:
4465         return err;
4466 }
4467
4468 static int packet_mmap(struct file *file, struct socket *sock,
4469                 struct vm_area_struct *vma)
4470 {
4471         struct sock *sk = sock->sk;
4472         struct packet_sock *po = pkt_sk(sk);
4473         unsigned long size, expected_size;
4474         struct packet_ring_buffer *rb;
4475         unsigned long start;
4476         int err = -EINVAL;
4477         int i;
4478
4479         if (vma->vm_pgoff)
4480                 return -EINVAL;
4481
4482         mutex_lock(&po->pg_vec_lock);
4483
4484         expected_size = 0;
4485         for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
4486                 if (rb->pg_vec) {
4487                         expected_size += rb->pg_vec_len
4488                                                 * rb->pg_vec_pages
4489                                                 * PAGE_SIZE;
4490                 }
4491         }
4492
4493         if (expected_size == 0)
4494                 goto out;
4495
4496         size = vma->vm_end - vma->vm_start;
4497         if (size != expected_size)
4498                 goto out;
4499
4500         start = vma->vm_start;
4501         for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
4502                 if (rb->pg_vec == NULL)
4503                         continue;
4504
4505                 for (i = 0; i < rb->pg_vec_len; i++) {
4506                         struct page *page;
4507                         void *kaddr = rb->pg_vec[i].buffer;
4508                         int pg_num;
4509
4510                         for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
4511                                 page = pgv_to_page(kaddr);
4512                                 err = vm_insert_page(vma, start, page);
4513                                 if (unlikely(err))
4514                                         goto out;
4515                                 start += PAGE_SIZE;
4516                                 kaddr += PAGE_SIZE;
4517                         }
4518                 }
4519         }
4520
4521         atomic_inc(&po->mapped);
4522         vma->vm_ops = &packet_mmap_ops;
4523         err = 0;
4524
4525 out:
4526         mutex_unlock(&po->pg_vec_lock);
4527         return err;
4528 }
4529
4530 static const struct proto_ops packet_ops_spkt = {
4531         .family =       PF_PACKET,
4532         .owner =        THIS_MODULE,
4533         .release =      packet_release,
4534         .bind =         packet_bind_spkt,
4535         .connect =      sock_no_connect,
4536         .socketpair =   sock_no_socketpair,
4537         .accept =       sock_no_accept,
4538         .getname =      packet_getname_spkt,
4539         .poll =         datagram_poll,
4540         .ioctl =        packet_ioctl,
4541         .listen =       sock_no_listen,
4542         .shutdown =     sock_no_shutdown,
4543         .setsockopt =   sock_no_setsockopt,
4544         .getsockopt =   sock_no_getsockopt,
4545         .sendmsg =      packet_sendmsg_spkt,
4546         .recvmsg =      packet_recvmsg,
4547         .mmap =         sock_no_mmap,
4548         .sendpage =     sock_no_sendpage,
4549 };
4550
4551 static const struct proto_ops packet_ops = {
4552         .family =       PF_PACKET,
4553         .owner =        THIS_MODULE,
4554         .release =      packet_release,
4555         .bind =         packet_bind,
4556         .connect =      sock_no_connect,
4557         .socketpair =   sock_no_socketpair,
4558         .accept =       sock_no_accept,
4559         .getname =      packet_getname,
4560         .poll =         packet_poll,
4561         .ioctl =        packet_ioctl,
4562         .listen =       sock_no_listen,
4563         .shutdown =     sock_no_shutdown,
4564         .setsockopt =   packet_setsockopt,
4565         .getsockopt =   packet_getsockopt,
4566 #ifdef CONFIG_COMPAT
4567         .compat_setsockopt = compat_packet_setsockopt,
4568 #endif
4569         .sendmsg =      packet_sendmsg,
4570         .recvmsg =      packet_recvmsg,
4571         .mmap =         packet_mmap,
4572         .sendpage =     sock_no_sendpage,
4573 };
4574
4575 static const struct net_proto_family packet_family_ops = {
4576         .family =       PF_PACKET,
4577         .create =       packet_create,
4578         .owner  =       THIS_MODULE,
4579 };
4580
4581 static struct notifier_block packet_netdev_notifier = {
4582         .notifier_call =        packet_notifier,
4583 };
4584
4585 #ifdef CONFIG_PROC_FS
4586
4587 static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
4588         __acquires(RCU)
4589 {
4590         struct net *net = seq_file_net(seq);
4591
4592         rcu_read_lock();
4593         return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
4594 }
4595
4596 static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4597 {
4598         struct net *net = seq_file_net(seq);
4599         return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
4600 }
4601
4602 static void packet_seq_stop(struct seq_file *seq, void *v)
4603         __releases(RCU)
4604 {
4605         rcu_read_unlock();
4606 }
4607
4608 static int packet_seq_show(struct seq_file *seq, void *v)
4609 {
4610         if (v == SEQ_START_TOKEN)
4611                 seq_puts(seq, "sk       RefCnt Type Proto  Iface R Rmem   User   Inode\n");
4612         else {
4613                 struct sock *s = sk_entry(v);
4614                 const struct packet_sock *po = pkt_sk(s);
4615
4616                 seq_printf(seq,
4617                            "%pK %-6d %-4d %04x   %-5d %1d %-6u %-6u %-6lu\n",
4618                            s,
4619                            refcount_read(&s->sk_refcnt),
4620                            s->sk_type,
4621                            ntohs(READ_ONCE(po->num)),
4622                            READ_ONCE(po->ifindex),
4623                            po->running,
4624                            atomic_read(&s->sk_rmem_alloc),
4625                            from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)),
4626                            sock_i_ino(s));
4627         }
4628
4629         return 0;
4630 }
4631
4632 static const struct seq_operations packet_seq_ops = {
4633         .start  = packet_seq_start,
4634         .next   = packet_seq_next,
4635         .stop   = packet_seq_stop,
4636         .show   = packet_seq_show,
4637 };
4638 #endif
4639
4640 static int __net_init packet_net_init(struct net *net)
4641 {
4642         mutex_init(&net->packet.sklist_lock);
4643         INIT_HLIST_HEAD(&net->packet.sklist);
4644
4645         if (!proc_create_net("packet", 0, net->proc_net, &packet_seq_ops,
4646                         sizeof(struct seq_net_private)))
4647                 return -ENOMEM;
4648
4649         return 0;
4650 }
4651
4652 static void __net_exit packet_net_exit(struct net *net)
4653 {
4654         remove_proc_entry("packet", net->proc_net);
4655         WARN_ON_ONCE(!hlist_empty(&net->packet.sklist));
4656 }
4657
4658 static struct pernet_operations packet_net_ops = {
4659         .init = packet_net_init,
4660         .exit = packet_net_exit,
4661 };
4662
4663
4664 static void __exit packet_exit(void)
4665 {
4666         unregister_netdevice_notifier(&packet_netdev_notifier);
4667         unregister_pernet_subsys(&packet_net_ops);
4668         sock_unregister(PF_PACKET);
4669         proto_unregister(&packet_proto);
4670 }
4671
4672 static int __init packet_init(void)
4673 {
4674         int rc;
4675
4676         rc = proto_register(&packet_proto, 0);
4677         if (rc)
4678                 goto out;
4679         rc = sock_register(&packet_family_ops);
4680         if (rc)
4681                 goto out_proto;
4682         rc = register_pernet_subsys(&packet_net_ops);
4683         if (rc)
4684                 goto out_sock;
4685         rc = register_netdevice_notifier(&packet_netdev_notifier);
4686         if (rc)
4687                 goto out_pernet;
4688
4689         return 0;
4690
4691 out_pernet:
4692         unregister_pernet_subsys(&packet_net_ops);
4693 out_sock:
4694         sock_unregister(PF_PACKET);
4695 out_proto:
4696         proto_unregister(&packet_proto);
4697 out:
4698         return rc;
4699 }
4700
4701 module_init(packet_init);
4702 module_exit(packet_exit);
4703 MODULE_LICENSE("GPL");
4704 MODULE_ALIAS_NETPROTO(PF_PACKET);