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