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