2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * PACKET - implements raw packet sockets.
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
13 * Alan Cox : verify_area() now used correctly
14 * Alan Cox : new skbuff lists, look ma no backlogs!
15 * Alan Cox : tidied skbuff lists.
16 * Alan Cox : Now uses generic datagram routines I
17 * added. Also fixed the peek/read crash
18 * from all old Linux datagram code.
19 * Alan Cox : Uses the improved datagram code.
20 * Alan Cox : Added NULL's for socket options.
21 * Alan Cox : Re-commented the code.
22 * Alan Cox : Use new kernel side addressing
23 * Rob Janssen : Correct MTU usage.
24 * Dave Platt : Counter leaks caused by incorrect
25 * interrupt locking and some slightly
26 * dubious gcc output. Can you read
27 * compiler: it said _VOLATILE_
28 * Richard Kooijman : Timestamp fixes.
29 * Alan Cox : New buffers. Use sk->mac.raw.
30 * Alan Cox : sendmsg/recvmsg support.
31 * Alan Cox : Protocol setting support
32 * Alexey Kuznetsov : Untied from IPv4 stack.
33 * Cyrus Durgin : Fixed kerneld for kmod.
34 * Michal Ostrowski : Module initialization cleanup.
35 * Ulises Alonso : Frame number limit removal and
36 * packet_set_ring memory leak.
37 * Eric Biederman : Allow for > 8 byte hardware addresses.
38 * The convention is that longer addresses
39 * will simply extend the hardware address
40 * byte arrays at the end of sockaddr_ll
42 * Johann Baudy : Added TX RING.
43 * Chetan Loke : Implemented TPACKET_V3 block abstraction
45 * Copyright (C) 2011, <lokec@ccs.neu.edu>
48 * This program is free software; you can redistribute it and/or
49 * modify it under the terms of the GNU General Public License
50 * as published by the Free Software Foundation; either version
51 * 2 of the License, or (at your option) any later version.
55 #include <linux/types.h>
57 #include <linux/capability.h>
58 #include <linux/fcntl.h>
59 #include <linux/socket.h>
61 #include <linux/inet.h>
62 #include <linux/netdevice.h>
63 #include <linux/if_packet.h>
64 #include <linux/wireless.h>
65 #include <linux/kernel.h>
66 #include <linux/kmod.h>
67 #include <linux/slab.h>
68 #include <linux/vmalloc.h>
69 #include <net/net_namespace.h>
71 #include <net/protocol.h>
72 #include <linux/skbuff.h>
74 #include <linux/errno.h>
75 #include <linux/timer.h>
76 #include <asm/uaccess.h>
77 #include <asm/ioctls.h>
79 #include <asm/cacheflush.h>
81 #include <linux/proc_fs.h>
82 #include <linux/seq_file.h>
83 #include <linux/poll.h>
84 #include <linux/module.h>
85 #include <linux/init.h>
86 #include <linux/mutex.h>
87 #include <linux/if_vlan.h>
88 #include <linux/virtio_net.h>
89 #include <linux/errqueue.h>
90 #include <linux/net_tstamp.h>
91 #include <linux/percpu.h>
93 #include <net/inet_common.h>
95 #include <linux/bpf.h>
101 - if device has no dev->hard_header routine, it adds and removes ll header
102 inside itself. In this case ll header is invisible outside of device,
103 but higher levels still should reserve dev->hard_header_len.
104 Some devices are enough clever to reallocate skb, when header
105 will not fit to reserved space (tunnel), another ones are silly
107 - packet socket receives packets with pulled ll header,
108 so that SOCK_RAW should push it back.
113 Incoming, dev->hard_header!=NULL
114 mac_header -> ll header
117 Outgoing, dev->hard_header!=NULL
118 mac_header -> ll header
121 Incoming, dev->hard_header==NULL
122 mac_header -> UNKNOWN position. It is very likely, that it points to ll
123 header. PPP makes it, that is wrong, because introduce
124 assymetry between rx and tx paths.
127 Outgoing, dev->hard_header==NULL
128 mac_header -> data. ll header is still not built!
132 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
138 dev->hard_header != NULL
139 mac_header -> ll header
142 dev->hard_header == NULL (ll header is added by device, we cannot control it)
146 We should set nh.raw on output to correct posistion,
147 packet classifier depends on it.
150 /* Private packet socket structures. */
152 /* identical to struct packet_mreq except it has
153 * a longer address field.
155 struct packet_mreq_max
{
157 unsigned short mr_type
;
158 unsigned short mr_alen
;
159 unsigned char mr_address
[MAX_ADDR_LEN
];
163 struct tpacket_hdr
*h1
;
164 struct tpacket2_hdr
*h2
;
165 struct tpacket3_hdr
*h3
;
169 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
170 int closing
, int tx_ring
);
172 #define V3_ALIGNMENT (8)
174 #define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
176 #define BLK_PLUS_PRIV(sz_of_priv) \
177 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
179 #define PGV_FROM_VMALLOC 1
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 #define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
190 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
);
191 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
192 struct packet_type
*pt
, struct net_device
*orig_dev
);
194 static void *packet_previous_frame(struct packet_sock
*po
,
195 struct packet_ring_buffer
*rb
,
197 static void packet_increment_head(struct packet_ring_buffer
*buff
);
198 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*,
199 struct tpacket_block_desc
*);
200 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*,
201 struct packet_sock
*);
202 static void prb_retire_current_block(struct tpacket_kbdq_core
*,
203 struct packet_sock
*, unsigned int status
);
204 static int prb_queue_frozen(struct tpacket_kbdq_core
*);
205 static void prb_open_block(struct tpacket_kbdq_core
*,
206 struct tpacket_block_desc
*);
207 static void prb_retire_rx_blk_timer_expired(unsigned long);
208 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*);
209 static void prb_init_blk_timer(struct packet_sock
*,
210 struct tpacket_kbdq_core
*,
211 void (*func
) (unsigned long));
212 static void prb_fill_rxhash(struct tpacket_kbdq_core
*, struct tpacket3_hdr
*);
213 static void prb_clear_rxhash(struct tpacket_kbdq_core
*,
214 struct tpacket3_hdr
*);
215 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*,
216 struct tpacket3_hdr
*);
217 static void packet_flush_mclist(struct sock
*sk
);
219 struct packet_skb_cb
{
221 struct sockaddr_pkt pkt
;
223 /* Trick: alias skb original length with
224 * ll.sll_family and ll.protocol in order
227 unsigned int origlen
;
228 struct sockaddr_ll ll
;
233 #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
235 #define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
236 #define GET_PBLOCK_DESC(x, bid) \
237 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
238 #define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
239 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
240 #define GET_NEXT_PRB_BLK_NUM(x) \
241 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
242 ((x)->kactive_blk_num+1) : 0)
244 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
);
245 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
);
247 static int packet_direct_xmit(struct sk_buff
*skb
)
249 struct net_device
*dev
= skb
->dev
;
250 netdev_features_t features
;
251 struct netdev_queue
*txq
;
252 int ret
= NETDEV_TX_BUSY
;
254 if (unlikely(!netif_running(dev
) ||
255 !netif_carrier_ok(dev
)))
258 features
= netif_skb_features(skb
);
259 if (skb_needs_linearize(skb
, features
) &&
260 __skb_linearize(skb
))
263 txq
= skb_get_tx_queue(dev
, skb
);
267 HARD_TX_LOCK(dev
, txq
, smp_processor_id());
268 if (!netif_xmit_frozen_or_drv_stopped(txq
))
269 ret
= netdev_start_xmit(skb
, dev
, txq
, false);
270 HARD_TX_UNLOCK(dev
, txq
);
274 if (!dev_xmit_complete(ret
))
279 atomic_long_inc(&dev
->tx_dropped
);
281 return NET_XMIT_DROP
;
284 static struct net_device
*packet_cached_dev_get(struct packet_sock
*po
)
286 struct net_device
*dev
;
289 dev
= rcu_dereference(po
->cached_dev
);
297 static void packet_cached_dev_assign(struct packet_sock
*po
,
298 struct net_device
*dev
)
300 rcu_assign_pointer(po
->cached_dev
, dev
);
303 static void packet_cached_dev_reset(struct packet_sock
*po
)
305 RCU_INIT_POINTER(po
->cached_dev
, NULL
);
308 static bool packet_use_direct_xmit(const struct packet_sock
*po
)
310 return po
->xmit
== packet_direct_xmit
;
313 static u16
__packet_pick_tx_queue(struct net_device
*dev
, struct sk_buff
*skb
)
315 return (u16
) raw_smp_processor_id() % dev
->real_num_tx_queues
;
318 static void packet_pick_tx_queue(struct net_device
*dev
, struct sk_buff
*skb
)
320 const struct net_device_ops
*ops
= dev
->netdev_ops
;
323 if (ops
->ndo_select_queue
) {
324 queue_index
= ops
->ndo_select_queue(dev
, skb
, NULL
,
325 __packet_pick_tx_queue
);
326 queue_index
= netdev_cap_txqueue(dev
, queue_index
);
328 queue_index
= __packet_pick_tx_queue(dev
, skb
);
331 skb_set_queue_mapping(skb
, queue_index
);
334 /* register_prot_hook must be invoked with the po->bind_lock held,
335 * or from a context in which asynchronous accesses to the packet
336 * socket is not possible (packet_create()).
338 static void register_prot_hook(struct sock
*sk
)
340 struct packet_sock
*po
= pkt_sk(sk
);
344 __fanout_link(sk
, po
);
346 dev_add_pack(&po
->prot_hook
);
353 /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
354 * held. If the sync parameter is true, we will temporarily drop
355 * the po->bind_lock and do a synchronize_net to make sure no
356 * asynchronous packet processing paths still refer to the elements
357 * of po->prot_hook. If the sync parameter is false, it is the
358 * callers responsibility to take care of this.
360 static void __unregister_prot_hook(struct sock
*sk
, bool sync
)
362 struct packet_sock
*po
= pkt_sk(sk
);
367 __fanout_unlink(sk
, po
);
369 __dev_remove_pack(&po
->prot_hook
);
374 spin_unlock(&po
->bind_lock
);
376 spin_lock(&po
->bind_lock
);
380 static void unregister_prot_hook(struct sock
*sk
, bool sync
)
382 struct packet_sock
*po
= pkt_sk(sk
);
385 __unregister_prot_hook(sk
, sync
);
388 static inline struct page
* __pure
pgv_to_page(void *addr
)
390 if (is_vmalloc_addr(addr
))
391 return vmalloc_to_page(addr
);
392 return virt_to_page(addr
);
395 static void __packet_set_status(struct packet_sock
*po
, void *frame
, int status
)
397 union tpacket_uhdr h
;
400 switch (po
->tp_version
) {
402 h
.h1
->tp_status
= status
;
403 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
406 h
.h2
->tp_status
= status
;
407 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
411 WARN(1, "TPACKET version not supported.\n");
418 static int __packet_get_status(struct packet_sock
*po
, void *frame
)
420 union tpacket_uhdr h
;
425 switch (po
->tp_version
) {
427 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
428 return h
.h1
->tp_status
;
430 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
431 return h
.h2
->tp_status
;
434 WARN(1, "TPACKET version not supported.\n");
440 static __u32
tpacket_get_timestamp(struct sk_buff
*skb
, struct timespec
*ts
,
443 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
446 (flags
& SOF_TIMESTAMPING_RAW_HARDWARE
) &&
447 ktime_to_timespec_cond(shhwtstamps
->hwtstamp
, ts
))
448 return TP_STATUS_TS_RAW_HARDWARE
;
450 if (ktime_to_timespec_cond(skb
->tstamp
, ts
))
451 return TP_STATUS_TS_SOFTWARE
;
456 static __u32
__packet_set_timestamp(struct packet_sock
*po
, void *frame
,
459 union tpacket_uhdr h
;
463 if (!(ts_status
= tpacket_get_timestamp(skb
, &ts
, po
->tp_tstamp
)))
467 switch (po
->tp_version
) {
469 h
.h1
->tp_sec
= ts
.tv_sec
;
470 h
.h1
->tp_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
473 h
.h2
->tp_sec
= ts
.tv_sec
;
474 h
.h2
->tp_nsec
= ts
.tv_nsec
;
478 WARN(1, "TPACKET version not supported.\n");
482 /* one flush is safe, as both fields always lie on the same cacheline */
483 flush_dcache_page(pgv_to_page(&h
.h1
->tp_sec
));
489 static void *packet_lookup_frame(struct packet_sock
*po
,
490 struct packet_ring_buffer
*rb
,
491 unsigned int position
,
494 unsigned int pg_vec_pos
, frame_offset
;
495 union tpacket_uhdr h
;
497 pg_vec_pos
= position
/ rb
->frames_per_block
;
498 frame_offset
= position
% rb
->frames_per_block
;
500 h
.raw
= rb
->pg_vec
[pg_vec_pos
].buffer
+
501 (frame_offset
* rb
->frame_size
);
503 if (status
!= __packet_get_status(po
, h
.raw
))
509 static void *packet_current_frame(struct packet_sock
*po
,
510 struct packet_ring_buffer
*rb
,
513 return packet_lookup_frame(po
, rb
, rb
->head
, status
);
516 static void prb_del_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
518 del_timer_sync(&pkc
->retire_blk_timer
);
521 static void prb_shutdown_retire_blk_timer(struct packet_sock
*po
,
522 struct sk_buff_head
*rb_queue
)
524 struct tpacket_kbdq_core
*pkc
;
526 pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
528 spin_lock_bh(&rb_queue
->lock
);
529 pkc
->delete_blk_timer
= 1;
530 spin_unlock_bh(&rb_queue
->lock
);
532 prb_del_retire_blk_timer(pkc
);
535 static void prb_init_blk_timer(struct packet_sock
*po
,
536 struct tpacket_kbdq_core
*pkc
,
537 void (*func
) (unsigned long))
539 init_timer(&pkc
->retire_blk_timer
);
540 pkc
->retire_blk_timer
.data
= (long)po
;
541 pkc
->retire_blk_timer
.function
= func
;
542 pkc
->retire_blk_timer
.expires
= jiffies
;
545 static void prb_setup_retire_blk_timer(struct packet_sock
*po
)
547 struct tpacket_kbdq_core
*pkc
;
549 pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
550 prb_init_blk_timer(po
, pkc
, prb_retire_rx_blk_timer_expired
);
553 static int prb_calc_retire_blk_tmo(struct packet_sock
*po
,
554 int blk_size_in_bytes
)
556 struct net_device
*dev
;
557 unsigned int mbits
= 0, msec
= 0, div
= 0, tmo
= 0;
558 struct ethtool_cmd ecmd
;
563 dev
= __dev_get_by_index(sock_net(&po
->sk
), po
->ifindex
);
564 if (unlikely(!dev
)) {
566 return DEFAULT_PRB_RETIRE_TOV
;
568 err
= __ethtool_get_settings(dev
, &ecmd
);
569 speed
= ethtool_cmd_speed(&ecmd
);
573 * If the link speed is so slow you don't really
574 * need to worry about perf anyways
576 if (speed
< SPEED_1000
|| speed
== SPEED_UNKNOWN
) {
577 return DEFAULT_PRB_RETIRE_TOV
;
584 mbits
= (blk_size_in_bytes
* 8) / (1024 * 1024);
596 static void prb_init_ft_ops(struct tpacket_kbdq_core
*p1
,
597 union tpacket_req_u
*req_u
)
599 p1
->feature_req_word
= req_u
->req3
.tp_feature_req_word
;
602 static void init_prb_bdqc(struct packet_sock
*po
,
603 struct packet_ring_buffer
*rb
,
605 union tpacket_req_u
*req_u
)
607 struct tpacket_kbdq_core
*p1
= GET_PBDQC_FROM_RB(rb
);
608 struct tpacket_block_desc
*pbd
;
610 memset(p1
, 0x0, sizeof(*p1
));
612 p1
->knxt_seq_num
= 1;
614 pbd
= (struct tpacket_block_desc
*)pg_vec
[0].buffer
;
615 p1
->pkblk_start
= pg_vec
[0].buffer
;
616 p1
->kblk_size
= req_u
->req3
.tp_block_size
;
617 p1
->knum_blocks
= req_u
->req3
.tp_block_nr
;
618 p1
->hdrlen
= po
->tp_hdrlen
;
619 p1
->version
= po
->tp_version
;
620 p1
->last_kactive_blk_num
= 0;
621 po
->stats
.stats3
.tp_freeze_q_cnt
= 0;
622 if (req_u
->req3
.tp_retire_blk_tov
)
623 p1
->retire_blk_tov
= req_u
->req3
.tp_retire_blk_tov
;
625 p1
->retire_blk_tov
= prb_calc_retire_blk_tmo(po
,
626 req_u
->req3
.tp_block_size
);
627 p1
->tov_in_jiffies
= msecs_to_jiffies(p1
->retire_blk_tov
);
628 p1
->blk_sizeof_priv
= req_u
->req3
.tp_sizeof_priv
;
630 p1
->max_frame_len
= p1
->kblk_size
- BLK_PLUS_PRIV(p1
->blk_sizeof_priv
);
631 prb_init_ft_ops(p1
, req_u
);
632 prb_setup_retire_blk_timer(po
);
633 prb_open_block(p1
, pbd
);
636 /* Do NOT update the last_blk_num first.
637 * Assumes sk_buff_head lock is held.
639 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
641 mod_timer(&pkc
->retire_blk_timer
,
642 jiffies
+ pkc
->tov_in_jiffies
);
643 pkc
->last_kactive_blk_num
= pkc
->kactive_blk_num
;
648 * 1) We refresh the timer only when we open a block.
649 * By doing this we don't waste cycles refreshing the timer
650 * on packet-by-packet basis.
652 * With a 1MB block-size, on a 1Gbps line, it will take
653 * i) ~8 ms to fill a block + ii) memcpy etc.
654 * In this cut we are not accounting for the memcpy time.
656 * So, if the user sets the 'tmo' to 10ms then the timer
657 * will never fire while the block is still getting filled
658 * (which is what we want). However, the user could choose
659 * to close a block early and that's fine.
661 * But when the timer does fire, we check whether or not to refresh it.
662 * Since the tmo granularity is in msecs, it is not too expensive
663 * to refresh the timer, lets say every '8' msecs.
664 * Either the user can set the 'tmo' or we can derive it based on
665 * a) line-speed and b) block-size.
666 * prb_calc_retire_blk_tmo() calculates the tmo.
669 static void prb_retire_rx_blk_timer_expired(unsigned long data
)
671 struct packet_sock
*po
= (struct packet_sock
*)data
;
672 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
674 struct tpacket_block_desc
*pbd
;
676 spin_lock(&po
->sk
.sk_receive_queue
.lock
);
678 frozen
= prb_queue_frozen(pkc
);
679 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
681 if (unlikely(pkc
->delete_blk_timer
))
684 /* We only need to plug the race when the block is partially filled.
686 * lock(); increment BLOCK_NUM_PKTS; unlock()
687 * copy_bits() is in progress ...
688 * timer fires on other cpu:
689 * we can't retire the current block because copy_bits
693 if (BLOCK_NUM_PKTS(pbd
)) {
694 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
695 /* Waiting for skb_copy_bits to finish... */
700 if (pkc
->last_kactive_blk_num
== pkc
->kactive_blk_num
) {
702 if (!BLOCK_NUM_PKTS(pbd
)) {
703 /* An empty block. Just refresh the timer. */
706 prb_retire_current_block(pkc
, po
, TP_STATUS_BLK_TMO
);
707 if (!prb_dispatch_next_block(pkc
, po
))
712 /* Case 1. Queue was frozen because user-space was
715 if (prb_curr_blk_in_use(pkc
, pbd
)) {
717 * Ok, user-space is still behind.
718 * So just refresh the timer.
722 /* Case 2. queue was frozen,user-space caught up,
723 * now the link went idle && the timer fired.
724 * We don't have a block to close.So we open this
725 * block and restart the timer.
726 * opening a block thaws the queue,restarts timer
727 * Thawing/timer-refresh is a side effect.
729 prb_open_block(pkc
, pbd
);
736 _prb_refresh_rx_retire_blk_timer(pkc
);
739 spin_unlock(&po
->sk
.sk_receive_queue
.lock
);
742 static void prb_flush_block(struct tpacket_kbdq_core
*pkc1
,
743 struct tpacket_block_desc
*pbd1
, __u32 status
)
745 /* Flush everything minus the block header */
747 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
752 /* Skip the block header(we know header WILL fit in 4K) */
755 end
= (u8
*)PAGE_ALIGN((unsigned long)pkc1
->pkblk_end
);
756 for (; start
< end
; start
+= PAGE_SIZE
)
757 flush_dcache_page(pgv_to_page(start
));
762 /* Now update the block status. */
764 BLOCK_STATUS(pbd1
) = status
;
766 /* Flush the block header */
768 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
770 flush_dcache_page(pgv_to_page(start
));
780 * 2) Increment active_blk_num
782 * Note:We DONT refresh the timer on purpose.
783 * Because almost always the next block will be opened.
785 static void prb_close_block(struct tpacket_kbdq_core
*pkc1
,
786 struct tpacket_block_desc
*pbd1
,
787 struct packet_sock
*po
, unsigned int stat
)
789 __u32 status
= TP_STATUS_USER
| stat
;
791 struct tpacket3_hdr
*last_pkt
;
792 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
793 struct sock
*sk
= &po
->sk
;
795 if (po
->stats
.stats3
.tp_drops
)
796 status
|= TP_STATUS_LOSING
;
798 last_pkt
= (struct tpacket3_hdr
*)pkc1
->prev
;
799 last_pkt
->tp_next_offset
= 0;
801 /* Get the ts of the last pkt */
802 if (BLOCK_NUM_PKTS(pbd1
)) {
803 h1
->ts_last_pkt
.ts_sec
= last_pkt
->tp_sec
;
804 h1
->ts_last_pkt
.ts_nsec
= last_pkt
->tp_nsec
;
806 /* Ok, we tmo'd - so get the current time.
808 * It shouldn't really happen as we don't close empty
809 * blocks. See prb_retire_rx_blk_timer_expired().
813 h1
->ts_last_pkt
.ts_sec
= ts
.tv_sec
;
814 h1
->ts_last_pkt
.ts_nsec
= ts
.tv_nsec
;
819 /* Flush the block */
820 prb_flush_block(pkc1
, pbd1
, status
);
822 sk
->sk_data_ready(sk
);
824 pkc1
->kactive_blk_num
= GET_NEXT_PRB_BLK_NUM(pkc1
);
827 static void prb_thaw_queue(struct tpacket_kbdq_core
*pkc
)
829 pkc
->reset_pending_on_curr_blk
= 0;
833 * Side effect of opening a block:
835 * 1) prb_queue is thawed.
836 * 2) retire_blk_timer is refreshed.
839 static void prb_open_block(struct tpacket_kbdq_core
*pkc1
,
840 struct tpacket_block_desc
*pbd1
)
843 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
847 /* We could have just memset this but we will lose the
848 * flexibility of making the priv area sticky
851 BLOCK_SNUM(pbd1
) = pkc1
->knxt_seq_num
++;
852 BLOCK_NUM_PKTS(pbd1
) = 0;
853 BLOCK_LEN(pbd1
) = BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
857 h1
->ts_first_pkt
.ts_sec
= ts
.tv_sec
;
858 h1
->ts_first_pkt
.ts_nsec
= ts
.tv_nsec
;
860 pkc1
->pkblk_start
= (char *)pbd1
;
861 pkc1
->nxt_offset
= pkc1
->pkblk_start
+ BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
863 BLOCK_O2FP(pbd1
) = (__u32
)BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
864 BLOCK_O2PRIV(pbd1
) = BLK_HDR_LEN
;
866 pbd1
->version
= pkc1
->version
;
867 pkc1
->prev
= pkc1
->nxt_offset
;
868 pkc1
->pkblk_end
= pkc1
->pkblk_start
+ pkc1
->kblk_size
;
870 prb_thaw_queue(pkc1
);
871 _prb_refresh_rx_retire_blk_timer(pkc1
);
877 * Queue freeze logic:
878 * 1) Assume tp_block_nr = 8 blocks.
879 * 2) At time 't0', user opens Rx ring.
880 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
881 * 4) user-space is either sleeping or processing block '0'.
882 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
883 * it will close block-7,loop around and try to fill block '0'.
885 * __packet_lookup_frame_in_block
886 * prb_retire_current_block()
887 * prb_dispatch_next_block()
888 * |->(BLOCK_STATUS == USER) evaluates to true
889 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
890 * 6) Now there are two cases:
891 * 6.1) Link goes idle right after the queue is frozen.
892 * But remember, the last open_block() refreshed the timer.
893 * When this timer expires,it will refresh itself so that we can
894 * re-open block-0 in near future.
895 * 6.2) Link is busy and keeps on receiving packets. This is a simple
896 * case and __packet_lookup_frame_in_block will check if block-0
897 * is free and can now be re-used.
899 static void prb_freeze_queue(struct tpacket_kbdq_core
*pkc
,
900 struct packet_sock
*po
)
902 pkc
->reset_pending_on_curr_blk
= 1;
903 po
->stats
.stats3
.tp_freeze_q_cnt
++;
906 #define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
909 * If the next block is free then we will dispatch it
910 * and return a good offset.
911 * Else, we will freeze the queue.
912 * So, caller must check the return value.
914 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*pkc
,
915 struct packet_sock
*po
)
917 struct tpacket_block_desc
*pbd
;
921 /* 1. Get current block num */
922 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
924 /* 2. If this block is currently in_use then freeze the queue */
925 if (TP_STATUS_USER
& BLOCK_STATUS(pbd
)) {
926 prb_freeze_queue(pkc
, po
);
932 * open this block and return the offset where the first packet
933 * needs to get stored.
935 prb_open_block(pkc
, pbd
);
936 return (void *)pkc
->nxt_offset
;
939 static void prb_retire_current_block(struct tpacket_kbdq_core
*pkc
,
940 struct packet_sock
*po
, unsigned int status
)
942 struct tpacket_block_desc
*pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
944 /* retire/close the current block */
945 if (likely(TP_STATUS_KERNEL
== BLOCK_STATUS(pbd
))) {
947 * Plug the case where copy_bits() is in progress on
948 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
949 * have space to copy the pkt in the current block and
950 * called prb_retire_current_block()
952 * We don't need to worry about the TMO case because
953 * the timer-handler already handled this case.
955 if (!(status
& TP_STATUS_BLK_TMO
)) {
956 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
957 /* Waiting for skb_copy_bits to finish... */
961 prb_close_block(pkc
, pbd
, po
, status
);
966 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*pkc
,
967 struct tpacket_block_desc
*pbd
)
969 return TP_STATUS_USER
& BLOCK_STATUS(pbd
);
972 static int prb_queue_frozen(struct tpacket_kbdq_core
*pkc
)
974 return pkc
->reset_pending_on_curr_blk
;
977 static void prb_clear_blk_fill_status(struct packet_ring_buffer
*rb
)
979 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
980 atomic_dec(&pkc
->blk_fill_in_prog
);
983 static void prb_fill_rxhash(struct tpacket_kbdq_core
*pkc
,
984 struct tpacket3_hdr
*ppd
)
986 ppd
->hv1
.tp_rxhash
= skb_get_hash(pkc
->skb
);
989 static void prb_clear_rxhash(struct tpacket_kbdq_core
*pkc
,
990 struct tpacket3_hdr
*ppd
)
992 ppd
->hv1
.tp_rxhash
= 0;
995 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*pkc
,
996 struct tpacket3_hdr
*ppd
)
998 if (skb_vlan_tag_present(pkc
->skb
)) {
999 ppd
->hv1
.tp_vlan_tci
= skb_vlan_tag_get(pkc
->skb
);
1000 ppd
->hv1
.tp_vlan_tpid
= ntohs(pkc
->skb
->vlan_proto
);
1001 ppd
->tp_status
= TP_STATUS_VLAN_VALID
| TP_STATUS_VLAN_TPID_VALID
;
1003 ppd
->hv1
.tp_vlan_tci
= 0;
1004 ppd
->hv1
.tp_vlan_tpid
= 0;
1005 ppd
->tp_status
= TP_STATUS_AVAILABLE
;
1009 static void prb_run_all_ft_ops(struct tpacket_kbdq_core
*pkc
,
1010 struct tpacket3_hdr
*ppd
)
1012 ppd
->hv1
.tp_padding
= 0;
1013 prb_fill_vlan_info(pkc
, ppd
);
1015 if (pkc
->feature_req_word
& TP_FT_REQ_FILL_RXHASH
)
1016 prb_fill_rxhash(pkc
, ppd
);
1018 prb_clear_rxhash(pkc
, ppd
);
1021 static void prb_fill_curr_block(char *curr
,
1022 struct tpacket_kbdq_core
*pkc
,
1023 struct tpacket_block_desc
*pbd
,
1026 struct tpacket3_hdr
*ppd
;
1028 ppd
= (struct tpacket3_hdr
*)curr
;
1029 ppd
->tp_next_offset
= TOTAL_PKT_LEN_INCL_ALIGN(len
);
1031 pkc
->nxt_offset
+= TOTAL_PKT_LEN_INCL_ALIGN(len
);
1032 BLOCK_LEN(pbd
) += TOTAL_PKT_LEN_INCL_ALIGN(len
);
1033 BLOCK_NUM_PKTS(pbd
) += 1;
1034 atomic_inc(&pkc
->blk_fill_in_prog
);
1035 prb_run_all_ft_ops(pkc
, ppd
);
1038 /* Assumes caller has the sk->rx_queue.lock */
1039 static void *__packet_lookup_frame_in_block(struct packet_sock
*po
,
1040 struct sk_buff
*skb
,
1045 struct tpacket_kbdq_core
*pkc
;
1046 struct tpacket_block_desc
*pbd
;
1049 pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
1050 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
1052 /* Queue is frozen when user space is lagging behind */
1053 if (prb_queue_frozen(pkc
)) {
1055 * Check if that last block which caused the queue to freeze,
1056 * is still in_use by user-space.
1058 if (prb_curr_blk_in_use(pkc
, pbd
)) {
1059 /* Can't record this packet */
1063 * Ok, the block was released by user-space.
1064 * Now let's open that block.
1065 * opening a block also thaws the queue.
1066 * Thawing is a side effect.
1068 prb_open_block(pkc
, pbd
);
1073 curr
= pkc
->nxt_offset
;
1075 end
= (char *)pbd
+ pkc
->kblk_size
;
1077 /* first try the current block */
1078 if (curr
+TOTAL_PKT_LEN_INCL_ALIGN(len
) < end
) {
1079 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
1080 return (void *)curr
;
1083 /* Ok, close the current block */
1084 prb_retire_current_block(pkc
, po
, 0);
1086 /* Now, try to dispatch the next block */
1087 curr
= (char *)prb_dispatch_next_block(pkc
, po
);
1089 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
1090 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
1091 return (void *)curr
;
1095 * No free blocks are available.user_space hasn't caught up yet.
1096 * Queue was just frozen and now this packet will get dropped.
1101 static void *packet_current_rx_frame(struct packet_sock
*po
,
1102 struct sk_buff
*skb
,
1103 int status
, unsigned int len
)
1106 switch (po
->tp_version
) {
1109 curr
= packet_lookup_frame(po
, &po
->rx_ring
,
1110 po
->rx_ring
.head
, status
);
1113 return __packet_lookup_frame_in_block(po
, skb
, status
, len
);
1115 WARN(1, "TPACKET version not supported\n");
1121 static void *prb_lookup_block(struct packet_sock
*po
,
1122 struct packet_ring_buffer
*rb
,
1126 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
1127 struct tpacket_block_desc
*pbd
= GET_PBLOCK_DESC(pkc
, idx
);
1129 if (status
!= BLOCK_STATUS(pbd
))
1134 static int prb_previous_blk_num(struct packet_ring_buffer
*rb
)
1137 if (rb
->prb_bdqc
.kactive_blk_num
)
1138 prev
= rb
->prb_bdqc
.kactive_blk_num
-1;
1140 prev
= rb
->prb_bdqc
.knum_blocks
-1;
1144 /* Assumes caller has held the rx_queue.lock */
1145 static void *__prb_previous_block(struct packet_sock
*po
,
1146 struct packet_ring_buffer
*rb
,
1149 unsigned int previous
= prb_previous_blk_num(rb
);
1150 return prb_lookup_block(po
, rb
, previous
, status
);
1153 static void *packet_previous_rx_frame(struct packet_sock
*po
,
1154 struct packet_ring_buffer
*rb
,
1157 if (po
->tp_version
<= TPACKET_V2
)
1158 return packet_previous_frame(po
, rb
, status
);
1160 return __prb_previous_block(po
, rb
, status
);
1163 static void packet_increment_rx_head(struct packet_sock
*po
,
1164 struct packet_ring_buffer
*rb
)
1166 switch (po
->tp_version
) {
1169 return packet_increment_head(rb
);
1172 WARN(1, "TPACKET version not supported.\n");
1178 static void *packet_previous_frame(struct packet_sock
*po
,
1179 struct packet_ring_buffer
*rb
,
1182 unsigned int previous
= rb
->head
? rb
->head
- 1 : rb
->frame_max
;
1183 return packet_lookup_frame(po
, rb
, previous
, status
);
1186 static void packet_increment_head(struct packet_ring_buffer
*buff
)
1188 buff
->head
= buff
->head
!= buff
->frame_max
? buff
->head
+1 : 0;
1191 static void packet_inc_pending(struct packet_ring_buffer
*rb
)
1193 this_cpu_inc(*rb
->pending_refcnt
);
1196 static void packet_dec_pending(struct packet_ring_buffer
*rb
)
1198 this_cpu_dec(*rb
->pending_refcnt
);
1201 static unsigned int packet_read_pending(const struct packet_ring_buffer
*rb
)
1203 unsigned int refcnt
= 0;
1206 /* We don't use pending refcount in rx_ring. */
1207 if (rb
->pending_refcnt
== NULL
)
1210 for_each_possible_cpu(cpu
)
1211 refcnt
+= *per_cpu_ptr(rb
->pending_refcnt
, cpu
);
1216 static int packet_alloc_pending(struct packet_sock
*po
)
1218 po
->rx_ring
.pending_refcnt
= NULL
;
1220 po
->tx_ring
.pending_refcnt
= alloc_percpu(unsigned int);
1221 if (unlikely(po
->tx_ring
.pending_refcnt
== NULL
))
1227 static void packet_free_pending(struct packet_sock
*po
)
1229 free_percpu(po
->tx_ring
.pending_refcnt
);
1232 #define ROOM_POW_OFF 2
1233 #define ROOM_NONE 0x0
1234 #define ROOM_LOW 0x1
1235 #define ROOM_NORMAL 0x2
1237 static bool __tpacket_has_room(struct packet_sock
*po
, int pow_off
)
1241 len
= po
->rx_ring
.frame_max
+ 1;
1242 idx
= po
->rx_ring
.head
;
1244 idx
+= len
>> pow_off
;
1247 return packet_lookup_frame(po
, &po
->rx_ring
, idx
, TP_STATUS_KERNEL
);
1250 static bool __tpacket_v3_has_room(struct packet_sock
*po
, int pow_off
)
1254 len
= po
->rx_ring
.prb_bdqc
.knum_blocks
;
1255 idx
= po
->rx_ring
.prb_bdqc
.kactive_blk_num
;
1257 idx
+= len
>> pow_off
;
1260 return prb_lookup_block(po
, &po
->rx_ring
, idx
, TP_STATUS_KERNEL
);
1263 static int __packet_rcv_has_room(struct packet_sock
*po
, struct sk_buff
*skb
)
1265 struct sock
*sk
= &po
->sk
;
1266 int ret
= ROOM_NONE
;
1268 if (po
->prot_hook
.func
!= tpacket_rcv
) {
1269 int avail
= sk
->sk_rcvbuf
- atomic_read(&sk
->sk_rmem_alloc
)
1270 - (skb
? skb
->truesize
: 0);
1271 if (avail
> (sk
->sk_rcvbuf
>> ROOM_POW_OFF
))
1279 if (po
->tp_version
== TPACKET_V3
) {
1280 if (__tpacket_v3_has_room(po
, ROOM_POW_OFF
))
1282 else if (__tpacket_v3_has_room(po
, 0))
1285 if (__tpacket_has_room(po
, ROOM_POW_OFF
))
1287 else if (__tpacket_has_room(po
, 0))
1294 static int packet_rcv_has_room(struct packet_sock
*po
, struct sk_buff
*skb
)
1299 spin_lock_bh(&po
->sk
.sk_receive_queue
.lock
);
1300 ret
= __packet_rcv_has_room(po
, skb
);
1301 has_room
= ret
== ROOM_NORMAL
;
1302 if (po
->pressure
== has_room
)
1303 po
->pressure
= !has_room
;
1304 spin_unlock_bh(&po
->sk
.sk_receive_queue
.lock
);
1309 static void packet_sock_destruct(struct sock
*sk
)
1311 skb_queue_purge(&sk
->sk_error_queue
);
1313 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
1314 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
1316 if (!sock_flag(sk
, SOCK_DEAD
)) {
1317 pr_err("Attempt to release alive packet socket: %p\n", sk
);
1321 sk_refcnt_debug_dec(sk
);
1324 static bool fanout_flow_is_huge(struct packet_sock
*po
, struct sk_buff
*skb
)
1329 rxhash
= skb_get_hash(skb
);
1330 for (i
= 0; i
< ROLLOVER_HLEN
; i
++)
1331 if (po
->rollover
->history
[i
] == rxhash
)
1334 po
->rollover
->history
[prandom_u32() % ROLLOVER_HLEN
] = rxhash
;
1335 return count
> (ROLLOVER_HLEN
>> 1);
1338 static unsigned int fanout_demux_hash(struct packet_fanout
*f
,
1339 struct sk_buff
*skb
,
1342 return reciprocal_scale(skb_get_hash(skb
), num
);
1345 static unsigned int fanout_demux_lb(struct packet_fanout
*f
,
1346 struct sk_buff
*skb
,
1349 unsigned int val
= atomic_inc_return(&f
->rr_cur
);
1354 static unsigned int fanout_demux_cpu(struct packet_fanout
*f
,
1355 struct sk_buff
*skb
,
1358 return smp_processor_id() % num
;
1361 static unsigned int fanout_demux_rnd(struct packet_fanout
*f
,
1362 struct sk_buff
*skb
,
1365 return prandom_u32_max(num
);
1368 static unsigned int fanout_demux_rollover(struct packet_fanout
*f
,
1369 struct sk_buff
*skb
,
1370 unsigned int idx
, bool try_self
,
1373 struct packet_sock
*po
, *po_next
, *po_skip
= NULL
;
1374 unsigned int i
, j
, room
= ROOM_NONE
;
1376 po
= pkt_sk(f
->arr
[idx
]);
1379 room
= packet_rcv_has_room(po
, skb
);
1380 if (room
== ROOM_NORMAL
||
1381 (room
== ROOM_LOW
&& !fanout_flow_is_huge(po
, skb
)))
1386 i
= j
= min_t(int, po
->rollover
->sock
, num
- 1);
1388 po_next
= pkt_sk(f
->arr
[i
]);
1389 if (po_next
!= po_skip
&& !po_next
->pressure
&&
1390 packet_rcv_has_room(po_next
, skb
) == ROOM_NORMAL
) {
1392 po
->rollover
->sock
= i
;
1393 atomic_long_inc(&po
->rollover
->num
);
1394 if (room
== ROOM_LOW
)
1395 atomic_long_inc(&po
->rollover
->num_huge
);
1403 atomic_long_inc(&po
->rollover
->num_failed
);
1407 static unsigned int fanout_demux_qm(struct packet_fanout
*f
,
1408 struct sk_buff
*skb
,
1411 return skb_get_queue_mapping(skb
) % num
;
1414 static unsigned int fanout_demux_bpf(struct packet_fanout
*f
,
1415 struct sk_buff
*skb
,
1418 struct bpf_prog
*prog
;
1419 unsigned int ret
= 0;
1422 prog
= rcu_dereference(f
->bpf_prog
);
1424 ret
= BPF_PROG_RUN(prog
, skb
) % num
;
1430 static bool fanout_has_flag(struct packet_fanout
*f
, u16 flag
)
1432 return f
->flags
& (flag
>> 8);
1435 static int packet_rcv_fanout(struct sk_buff
*skb
, struct net_device
*dev
,
1436 struct packet_type
*pt
, struct net_device
*orig_dev
)
1438 struct packet_fanout
*f
= pt
->af_packet_priv
;
1439 unsigned int num
= READ_ONCE(f
->num_members
);
1440 struct packet_sock
*po
;
1443 if (!net_eq(dev_net(dev
), read_pnet(&f
->net
)) ||
1449 if (fanout_has_flag(f
, PACKET_FANOUT_FLAG_DEFRAG
)) {
1450 skb
= ip_check_defrag(skb
, IP_DEFRAG_AF_PACKET
);
1455 case PACKET_FANOUT_HASH
:
1457 idx
= fanout_demux_hash(f
, skb
, num
);
1459 case PACKET_FANOUT_LB
:
1460 idx
= fanout_demux_lb(f
, skb
, num
);
1462 case PACKET_FANOUT_CPU
:
1463 idx
= fanout_demux_cpu(f
, skb
, num
);
1465 case PACKET_FANOUT_RND
:
1466 idx
= fanout_demux_rnd(f
, skb
, num
);
1468 case PACKET_FANOUT_QM
:
1469 idx
= fanout_demux_qm(f
, skb
, num
);
1471 case PACKET_FANOUT_ROLLOVER
:
1472 idx
= fanout_demux_rollover(f
, skb
, 0, false, num
);
1474 case PACKET_FANOUT_CBPF
:
1475 case PACKET_FANOUT_EBPF
:
1476 idx
= fanout_demux_bpf(f
, skb
, num
);
1480 if (fanout_has_flag(f
, PACKET_FANOUT_FLAG_ROLLOVER
))
1481 idx
= fanout_demux_rollover(f
, skb
, idx
, true, num
);
1483 po
= pkt_sk(f
->arr
[idx
]);
1484 return po
->prot_hook
.func(skb
, dev
, &po
->prot_hook
, orig_dev
);
1487 DEFINE_MUTEX(fanout_mutex
);
1488 EXPORT_SYMBOL_GPL(fanout_mutex
);
1489 static LIST_HEAD(fanout_list
);
1491 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
)
1493 struct packet_fanout
*f
= po
->fanout
;
1495 spin_lock(&f
->lock
);
1496 f
->arr
[f
->num_members
] = sk
;
1499 spin_unlock(&f
->lock
);
1502 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
)
1504 struct packet_fanout
*f
= po
->fanout
;
1507 spin_lock(&f
->lock
);
1508 for (i
= 0; i
< f
->num_members
; i
++) {
1509 if (f
->arr
[i
] == sk
)
1512 BUG_ON(i
>= f
->num_members
);
1513 f
->arr
[i
] = f
->arr
[f
->num_members
- 1];
1515 spin_unlock(&f
->lock
);
1518 static bool match_fanout_group(struct packet_type
*ptype
, struct sock
*sk
)
1520 if (ptype
->af_packet_priv
== (void *)((struct packet_sock
*)sk
)->fanout
)
1526 static void fanout_init_data(struct packet_fanout
*f
)
1529 case PACKET_FANOUT_LB
:
1530 atomic_set(&f
->rr_cur
, 0);
1532 case PACKET_FANOUT_CBPF
:
1533 case PACKET_FANOUT_EBPF
:
1534 RCU_INIT_POINTER(f
->bpf_prog
, NULL
);
1539 static void __fanout_set_data_bpf(struct packet_fanout
*f
, struct bpf_prog
*new)
1541 struct bpf_prog
*old
;
1543 spin_lock(&f
->lock
);
1544 old
= rcu_dereference_protected(f
->bpf_prog
, lockdep_is_held(&f
->lock
));
1545 rcu_assign_pointer(f
->bpf_prog
, new);
1546 spin_unlock(&f
->lock
);
1550 bpf_prog_destroy(old
);
1554 static int fanout_set_data_cbpf(struct packet_sock
*po
, char __user
*data
,
1557 struct bpf_prog
*new;
1558 struct sock_fprog fprog
;
1561 if (sock_flag(&po
->sk
, SOCK_FILTER_LOCKED
))
1563 if (len
!= sizeof(fprog
))
1565 if (copy_from_user(&fprog
, data
, len
))
1568 ret
= bpf_prog_create_from_user(&new, &fprog
, NULL
);
1572 __fanout_set_data_bpf(po
->fanout
, new);
1576 static int fanout_set_data_ebpf(struct packet_sock
*po
, char __user
*data
,
1579 struct bpf_prog
*new;
1582 if (sock_flag(&po
->sk
, SOCK_FILTER_LOCKED
))
1584 if (len
!= sizeof(fd
))
1586 if (copy_from_user(&fd
, data
, len
))
1589 new = bpf_prog_get(fd
);
1591 return PTR_ERR(new);
1592 if (new->type
!= BPF_PROG_TYPE_SOCKET_FILTER
) {
1597 __fanout_set_data_bpf(po
->fanout
, new);
1601 static int fanout_set_data(struct packet_sock
*po
, char __user
*data
,
1604 switch (po
->fanout
->type
) {
1605 case PACKET_FANOUT_CBPF
:
1606 return fanout_set_data_cbpf(po
, data
, len
);
1607 case PACKET_FANOUT_EBPF
:
1608 return fanout_set_data_ebpf(po
, data
, len
);
1614 static void fanout_release_data(struct packet_fanout
*f
)
1617 case PACKET_FANOUT_CBPF
:
1618 case PACKET_FANOUT_EBPF
:
1619 __fanout_set_data_bpf(f
, NULL
);
1623 static int fanout_add(struct sock
*sk
, u16 id
, u16 type_flags
)
1625 struct packet_sock
*po
= pkt_sk(sk
);
1626 struct packet_fanout
*f
, *match
;
1627 u8 type
= type_flags
& 0xff;
1628 u8 flags
= type_flags
>> 8;
1632 case PACKET_FANOUT_ROLLOVER
:
1633 if (type_flags
& PACKET_FANOUT_FLAG_ROLLOVER
)
1635 case PACKET_FANOUT_HASH
:
1636 case PACKET_FANOUT_LB
:
1637 case PACKET_FANOUT_CPU
:
1638 case PACKET_FANOUT_RND
:
1639 case PACKET_FANOUT_QM
:
1640 case PACKET_FANOUT_CBPF
:
1641 case PACKET_FANOUT_EBPF
:
1653 if (type
== PACKET_FANOUT_ROLLOVER
||
1654 (type_flags
& PACKET_FANOUT_FLAG_ROLLOVER
)) {
1655 po
->rollover
= kzalloc(sizeof(*po
->rollover
), GFP_KERNEL
);
1658 atomic_long_set(&po
->rollover
->num
, 0);
1659 atomic_long_set(&po
->rollover
->num_huge
, 0);
1660 atomic_long_set(&po
->rollover
->num_failed
, 0);
1663 mutex_lock(&fanout_mutex
);
1665 list_for_each_entry(f
, &fanout_list
, list
) {
1667 read_pnet(&f
->net
) == sock_net(sk
)) {
1673 if (match
&& match
->flags
!= flags
)
1677 match
= kzalloc(sizeof(*match
), GFP_KERNEL
);
1680 write_pnet(&match
->net
, sock_net(sk
));
1683 match
->flags
= flags
;
1684 INIT_LIST_HEAD(&match
->list
);
1685 spin_lock_init(&match
->lock
);
1686 atomic_set(&match
->sk_ref
, 0);
1687 fanout_init_data(match
);
1688 match
->prot_hook
.type
= po
->prot_hook
.type
;
1689 match
->prot_hook
.dev
= po
->prot_hook
.dev
;
1690 match
->prot_hook
.func
= packet_rcv_fanout
;
1691 match
->prot_hook
.af_packet_priv
= match
;
1692 match
->prot_hook
.id_match
= match_fanout_group
;
1693 dev_add_pack(&match
->prot_hook
);
1694 list_add(&match
->list
, &fanout_list
);
1697 if (match
->type
== type
&&
1698 match
->prot_hook
.type
== po
->prot_hook
.type
&&
1699 match
->prot_hook
.dev
== po
->prot_hook
.dev
) {
1701 if (atomic_read(&match
->sk_ref
) < PACKET_FANOUT_MAX
) {
1702 __dev_remove_pack(&po
->prot_hook
);
1704 atomic_inc(&match
->sk_ref
);
1705 __fanout_link(sk
, po
);
1710 mutex_unlock(&fanout_mutex
);
1712 kfree(po
->rollover
);
1713 po
->rollover
= NULL
;
1718 static void fanout_release(struct sock
*sk
)
1720 struct packet_sock
*po
= pkt_sk(sk
);
1721 struct packet_fanout
*f
;
1727 mutex_lock(&fanout_mutex
);
1730 if (atomic_dec_and_test(&f
->sk_ref
)) {
1732 dev_remove_pack(&f
->prot_hook
);
1733 fanout_release_data(f
);
1736 mutex_unlock(&fanout_mutex
);
1739 kfree_rcu(po
->rollover
, rcu
);
1742 static const struct proto_ops packet_ops
;
1744 static const struct proto_ops packet_ops_spkt
;
1746 static int packet_rcv_spkt(struct sk_buff
*skb
, struct net_device
*dev
,
1747 struct packet_type
*pt
, struct net_device
*orig_dev
)
1750 struct sockaddr_pkt
*spkt
;
1753 * When we registered the protocol we saved the socket in the data
1754 * field for just this event.
1757 sk
= pt
->af_packet_priv
;
1760 * Yank back the headers [hope the device set this
1761 * right or kerboom...]
1763 * Incoming packets have ll header pulled,
1766 * For outgoing ones skb->data == skb_mac_header(skb)
1767 * so that this procedure is noop.
1770 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1773 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1776 skb
= skb_share_check(skb
, GFP_ATOMIC
);
1780 /* drop any routing info */
1783 /* drop conntrack reference */
1786 spkt
= &PACKET_SKB_CB(skb
)->sa
.pkt
;
1788 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1791 * The SOCK_PACKET socket receives _all_ frames.
1794 spkt
->spkt_family
= dev
->type
;
1795 strlcpy(spkt
->spkt_device
, dev
->name
, sizeof(spkt
->spkt_device
));
1796 spkt
->spkt_protocol
= skb
->protocol
;
1799 * Charge the memory to the socket. This is done specifically
1800 * to prevent sockets using all the memory up.
1803 if (sock_queue_rcv_skb(sk
, skb
) == 0)
1814 * Output a raw packet to a device layer. This bypasses all the other
1815 * protocol layers and you must therefore supply it with a complete frame
1818 static int packet_sendmsg_spkt(struct socket
*sock
, struct msghdr
*msg
,
1821 struct sock
*sk
= sock
->sk
;
1822 DECLARE_SOCKADDR(struct sockaddr_pkt
*, saddr
, msg
->msg_name
);
1823 struct sk_buff
*skb
= NULL
;
1824 struct net_device
*dev
;
1830 * Get and verify the address.
1834 if (msg
->msg_namelen
< sizeof(struct sockaddr
))
1836 if (msg
->msg_namelen
== sizeof(struct sockaddr_pkt
))
1837 proto
= saddr
->spkt_protocol
;
1839 return -ENOTCONN
; /* SOCK_PACKET must be sent giving an address */
1842 * Find the device first to size check it
1845 saddr
->spkt_device
[sizeof(saddr
->spkt_device
) - 1] = 0;
1848 dev
= dev_get_by_name_rcu(sock_net(sk
), saddr
->spkt_device
);
1854 if (!(dev
->flags
& IFF_UP
))
1858 * You may not queue a frame bigger than the mtu. This is the lowest level
1859 * raw protocol and you must do your own fragmentation at this level.
1862 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
1863 if (!netif_supports_nofcs(dev
)) {
1864 err
= -EPROTONOSUPPORT
;
1867 extra_len
= 4; /* We're doing our own CRC */
1871 if (len
> dev
->mtu
+ dev
->hard_header_len
+ VLAN_HLEN
+ extra_len
)
1875 size_t reserved
= LL_RESERVED_SPACE(dev
);
1876 int tlen
= dev
->needed_tailroom
;
1877 unsigned int hhlen
= dev
->header_ops
? dev
->hard_header_len
: 0;
1880 skb
= sock_wmalloc(sk
, len
+ reserved
+ tlen
, 0, GFP_KERNEL
);
1883 /* FIXME: Save some space for broken drivers that write a hard
1884 * header at transmission time by themselves. PPP is the notable
1885 * one here. This should really be fixed at the driver level.
1887 skb_reserve(skb
, reserved
);
1888 skb_reset_network_header(skb
);
1890 /* Try to align data part correctly */
1895 skb_reset_network_header(skb
);
1897 err
= memcpy_from_msg(skb_put(skb
, len
), msg
, len
);
1903 if (len
> (dev
->mtu
+ dev
->hard_header_len
+ extra_len
)) {
1904 /* Earlier code assumed this would be a VLAN pkt,
1905 * double-check this now that we have the actual
1908 struct ethhdr
*ehdr
;
1909 skb_reset_mac_header(skb
);
1910 ehdr
= eth_hdr(skb
);
1911 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
1917 skb
->protocol
= proto
;
1919 skb
->priority
= sk
->sk_priority
;
1920 skb
->mark
= sk
->sk_mark
;
1922 sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
1924 if (unlikely(extra_len
== 4))
1927 skb_probe_transport_header(skb
, 0);
1929 dev_queue_xmit(skb
);
1940 static unsigned int run_filter(const struct sk_buff
*skb
,
1941 const struct sock
*sk
,
1944 struct sk_filter
*filter
;
1947 filter
= rcu_dereference(sk
->sk_filter
);
1949 res
= SK_RUN_FILTER(filter
, skb
);
1956 * This function makes lazy skb cloning in hope that most of packets
1957 * are discarded by BPF.
1959 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1960 * and skb->cb are mangled. It works because (and until) packets
1961 * falling here are owned by current CPU. Output packets are cloned
1962 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1963 * sequencially, so that if we return skb to original state on exit,
1964 * we will not harm anyone.
1967 static int packet_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1968 struct packet_type
*pt
, struct net_device
*orig_dev
)
1971 struct sockaddr_ll
*sll
;
1972 struct packet_sock
*po
;
1973 u8
*skb_head
= skb
->data
;
1974 int skb_len
= skb
->len
;
1975 unsigned int snaplen
, res
;
1977 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1980 sk
= pt
->af_packet_priv
;
1983 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1988 if (dev
->header_ops
) {
1989 /* The device has an explicit notion of ll header,
1990 * exported to higher levels.
1992 * Otherwise, the device hides details of its frame
1993 * structure, so that corresponding packet head is
1994 * never delivered to user.
1996 if (sk
->sk_type
!= SOCK_DGRAM
)
1997 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1998 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1999 /* Special case: outgoing packets have ll header at head */
2000 skb_pull(skb
, skb_network_offset(skb
));
2006 res
= run_filter(skb
, sk
, snaplen
);
2008 goto drop_n_restore
;
2012 if (atomic_read(&sk
->sk_rmem_alloc
) >= sk
->sk_rcvbuf
)
2015 if (skb_shared(skb
)) {
2016 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
2020 if (skb_head
!= skb
->data
) {
2021 skb
->data
= skb_head
;
2028 sock_skb_cb_check_size(sizeof(*PACKET_SKB_CB(skb
)) + MAX_ADDR_LEN
- 8);
2030 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
2031 sll
->sll_hatype
= dev
->type
;
2032 sll
->sll_pkttype
= skb
->pkt_type
;
2033 if (unlikely(po
->origdev
))
2034 sll
->sll_ifindex
= orig_dev
->ifindex
;
2036 sll
->sll_ifindex
= dev
->ifindex
;
2038 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
2040 /* sll->sll_family and sll->sll_protocol are set in packet_recvmsg().
2041 * Use their space for storing the original skb length.
2043 PACKET_SKB_CB(skb
)->sa
.origlen
= skb
->len
;
2045 if (pskb_trim(skb
, snaplen
))
2048 skb_set_owner_r(skb
, sk
);
2052 /* drop conntrack reference */
2055 spin_lock(&sk
->sk_receive_queue
.lock
);
2056 po
->stats
.stats1
.tp_packets
++;
2057 sock_skb_set_dropcount(sk
, skb
);
2058 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
2059 spin_unlock(&sk
->sk_receive_queue
.lock
);
2060 sk
->sk_data_ready(sk
);
2064 spin_lock(&sk
->sk_receive_queue
.lock
);
2065 po
->stats
.stats1
.tp_drops
++;
2066 atomic_inc(&sk
->sk_drops
);
2067 spin_unlock(&sk
->sk_receive_queue
.lock
);
2070 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
2071 skb
->data
= skb_head
;
2079 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
2080 struct packet_type
*pt
, struct net_device
*orig_dev
)
2083 struct packet_sock
*po
;
2084 struct sockaddr_ll
*sll
;
2085 union tpacket_uhdr h
;
2086 u8
*skb_head
= skb
->data
;
2087 int skb_len
= skb
->len
;
2088 unsigned int snaplen
, res
;
2089 unsigned long status
= TP_STATUS_USER
;
2090 unsigned short macoff
, netoff
, hdrlen
;
2091 struct sk_buff
*copy_skb
= NULL
;
2095 /* struct tpacket{2,3}_hdr is aligned to a multiple of TPACKET_ALIGNMENT.
2096 * We may add members to them until current aligned size without forcing
2097 * userspace to call getsockopt(..., PACKET_HDRLEN, ...).
2099 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h
.h2
)) != 32);
2100 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h
.h3
)) != 48);
2102 if (skb
->pkt_type
== PACKET_LOOPBACK
)
2105 sk
= pt
->af_packet_priv
;
2108 if (!net_eq(dev_net(dev
), sock_net(sk
)))
2111 if (dev
->header_ops
) {
2112 if (sk
->sk_type
!= SOCK_DGRAM
)
2113 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
2114 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
2115 /* Special case: outgoing packets have ll header at head */
2116 skb_pull(skb
, skb_network_offset(skb
));
2122 res
= run_filter(skb
, sk
, snaplen
);
2124 goto drop_n_restore
;
2126 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2127 status
|= TP_STATUS_CSUMNOTREADY
;
2128 else if (skb
->pkt_type
!= PACKET_OUTGOING
&&
2129 (skb
->ip_summed
== CHECKSUM_COMPLETE
||
2130 skb_csum_unnecessary(skb
)))
2131 status
|= TP_STATUS_CSUM_VALID
;
2136 if (sk
->sk_type
== SOCK_DGRAM
) {
2137 macoff
= netoff
= TPACKET_ALIGN(po
->tp_hdrlen
) + 16 +
2140 unsigned int maclen
= skb_network_offset(skb
);
2141 netoff
= TPACKET_ALIGN(po
->tp_hdrlen
+
2142 (maclen
< 16 ? 16 : maclen
)) +
2144 macoff
= netoff
- maclen
;
2146 if (po
->tp_version
<= TPACKET_V2
) {
2147 if (macoff
+ snaplen
> po
->rx_ring
.frame_size
) {
2148 if (po
->copy_thresh
&&
2149 atomic_read(&sk
->sk_rmem_alloc
) < sk
->sk_rcvbuf
) {
2150 if (skb_shared(skb
)) {
2151 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
2153 copy_skb
= skb_get(skb
);
2154 skb_head
= skb
->data
;
2157 skb_set_owner_r(copy_skb
, sk
);
2159 snaplen
= po
->rx_ring
.frame_size
- macoff
;
2160 if ((int)snaplen
< 0)
2163 } else if (unlikely(macoff
+ snaplen
>
2164 GET_PBDQC_FROM_RB(&po
->rx_ring
)->max_frame_len
)) {
2167 nval
= GET_PBDQC_FROM_RB(&po
->rx_ring
)->max_frame_len
- macoff
;
2168 pr_err_once("tpacket_rcv: packet too big, clamped from %u to %u. macoff=%u\n",
2169 snaplen
, nval
, macoff
);
2171 if (unlikely((int)snaplen
< 0)) {
2173 macoff
= GET_PBDQC_FROM_RB(&po
->rx_ring
)->max_frame_len
;
2176 spin_lock(&sk
->sk_receive_queue
.lock
);
2177 h
.raw
= packet_current_rx_frame(po
, skb
,
2178 TP_STATUS_KERNEL
, (macoff
+snaplen
));
2181 if (po
->tp_version
<= TPACKET_V2
) {
2182 packet_increment_rx_head(po
, &po
->rx_ring
);
2184 * LOSING will be reported till you read the stats,
2185 * because it's COR - Clear On Read.
2186 * Anyways, moving it for V1/V2 only as V3 doesn't need this
2189 if (po
->stats
.stats1
.tp_drops
)
2190 status
|= TP_STATUS_LOSING
;
2192 po
->stats
.stats1
.tp_packets
++;
2194 status
|= TP_STATUS_COPY
;
2195 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
2197 spin_unlock(&sk
->sk_receive_queue
.lock
);
2199 skb_copy_bits(skb
, 0, h
.raw
+ macoff
, snaplen
);
2201 if (!(ts_status
= tpacket_get_timestamp(skb
, &ts
, po
->tp_tstamp
)))
2202 getnstimeofday(&ts
);
2204 status
|= ts_status
;
2206 switch (po
->tp_version
) {
2208 h
.h1
->tp_len
= skb
->len
;
2209 h
.h1
->tp_snaplen
= snaplen
;
2210 h
.h1
->tp_mac
= macoff
;
2211 h
.h1
->tp_net
= netoff
;
2212 h
.h1
->tp_sec
= ts
.tv_sec
;
2213 h
.h1
->tp_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
2214 hdrlen
= sizeof(*h
.h1
);
2217 h
.h2
->tp_len
= skb
->len
;
2218 h
.h2
->tp_snaplen
= snaplen
;
2219 h
.h2
->tp_mac
= macoff
;
2220 h
.h2
->tp_net
= netoff
;
2221 h
.h2
->tp_sec
= ts
.tv_sec
;
2222 h
.h2
->tp_nsec
= ts
.tv_nsec
;
2223 if (skb_vlan_tag_present(skb
)) {
2224 h
.h2
->tp_vlan_tci
= skb_vlan_tag_get(skb
);
2225 h
.h2
->tp_vlan_tpid
= ntohs(skb
->vlan_proto
);
2226 status
|= TP_STATUS_VLAN_VALID
| TP_STATUS_VLAN_TPID_VALID
;
2228 h
.h2
->tp_vlan_tci
= 0;
2229 h
.h2
->tp_vlan_tpid
= 0;
2231 memset(h
.h2
->tp_padding
, 0, sizeof(h
.h2
->tp_padding
));
2232 hdrlen
= sizeof(*h
.h2
);
2235 /* tp_nxt_offset,vlan are already populated above.
2236 * So DONT clear those fields here
2238 h
.h3
->tp_status
|= status
;
2239 h
.h3
->tp_len
= skb
->len
;
2240 h
.h3
->tp_snaplen
= snaplen
;
2241 h
.h3
->tp_mac
= macoff
;
2242 h
.h3
->tp_net
= netoff
;
2243 h
.h3
->tp_sec
= ts
.tv_sec
;
2244 h
.h3
->tp_nsec
= ts
.tv_nsec
;
2245 memset(h
.h3
->tp_padding
, 0, sizeof(h
.h3
->tp_padding
));
2246 hdrlen
= sizeof(*h
.h3
);
2252 sll
= h
.raw
+ TPACKET_ALIGN(hdrlen
);
2253 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
2254 sll
->sll_family
= AF_PACKET
;
2255 sll
->sll_hatype
= dev
->type
;
2256 sll
->sll_protocol
= skb
->protocol
;
2257 sll
->sll_pkttype
= skb
->pkt_type
;
2258 if (unlikely(po
->origdev
))
2259 sll
->sll_ifindex
= orig_dev
->ifindex
;
2261 sll
->sll_ifindex
= dev
->ifindex
;
2265 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
2266 if (po
->tp_version
<= TPACKET_V2
) {
2269 end
= (u8
*) PAGE_ALIGN((unsigned long) h
.raw
+
2272 for (start
= h
.raw
; start
< end
; start
+= PAGE_SIZE
)
2273 flush_dcache_page(pgv_to_page(start
));
2278 if (po
->tp_version
<= TPACKET_V2
) {
2279 __packet_set_status(po
, h
.raw
, status
);
2280 sk
->sk_data_ready(sk
);
2282 prb_clear_blk_fill_status(&po
->rx_ring
);
2286 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
2287 skb
->data
= skb_head
;
2295 po
->stats
.stats1
.tp_drops
++;
2296 spin_unlock(&sk
->sk_receive_queue
.lock
);
2298 sk
->sk_data_ready(sk
);
2299 kfree_skb(copy_skb
);
2300 goto drop_n_restore
;
2303 static void tpacket_destruct_skb(struct sk_buff
*skb
)
2305 struct packet_sock
*po
= pkt_sk(skb
->sk
);
2307 if (likely(po
->tx_ring
.pg_vec
)) {
2311 ph
= skb_shinfo(skb
)->destructor_arg
;
2312 packet_dec_pending(&po
->tx_ring
);
2314 ts
= __packet_set_timestamp(po
, ph
, skb
);
2315 __packet_set_status(po
, ph
, TP_STATUS_AVAILABLE
| ts
);
2321 static bool ll_header_truncated(const struct net_device
*dev
, int len
)
2323 /* net device doesn't like empty head */
2324 if (unlikely(len
<= dev
->hard_header_len
)) {
2325 net_warn_ratelimited("%s: packet size is too short (%d <= %d)\n",
2326 current
->comm
, len
, dev
->hard_header_len
);
2333 static int tpacket_fill_skb(struct packet_sock
*po
, struct sk_buff
*skb
,
2334 void *frame
, struct net_device
*dev
, int size_max
,
2335 __be16 proto
, unsigned char *addr
, int hlen
)
2337 union tpacket_uhdr ph
;
2338 int to_write
, offset
, len
, tp_len
, nr_frags
, len_max
;
2339 struct socket
*sock
= po
->sk
.sk_socket
;
2346 skb
->protocol
= proto
;
2348 skb
->priority
= po
->sk
.sk_priority
;
2349 skb
->mark
= po
->sk
.sk_mark
;
2350 sock_tx_timestamp(&po
->sk
, &skb_shinfo(skb
)->tx_flags
);
2351 skb_shinfo(skb
)->destructor_arg
= ph
.raw
;
2353 switch (po
->tp_version
) {
2355 tp_len
= ph
.h2
->tp_len
;
2358 tp_len
= ph
.h1
->tp_len
;
2361 if (unlikely(tp_len
> size_max
)) {
2362 pr_err("packet size is too long (%d > %d)\n", tp_len
, size_max
);
2366 skb_reserve(skb
, hlen
);
2367 skb_reset_network_header(skb
);
2369 if (!packet_use_direct_xmit(po
))
2370 skb_probe_transport_header(skb
, 0);
2371 if (unlikely(po
->tp_tx_has_off
)) {
2372 int off_min
, off_max
, off
;
2373 off_min
= po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
2374 off_max
= po
->tx_ring
.frame_size
- tp_len
;
2375 if (sock
->type
== SOCK_DGRAM
) {
2376 switch (po
->tp_version
) {
2378 off
= ph
.h2
->tp_net
;
2381 off
= ph
.h1
->tp_net
;
2385 switch (po
->tp_version
) {
2387 off
= ph
.h2
->tp_mac
;
2390 off
= ph
.h1
->tp_mac
;
2394 if (unlikely((off
< off_min
) || (off_max
< off
)))
2396 data
= ph
.raw
+ off
;
2398 data
= ph
.raw
+ po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
2402 if (sock
->type
== SOCK_DGRAM
) {
2403 err
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
,
2405 if (unlikely(err
< 0))
2407 } else if (dev
->hard_header_len
) {
2408 if (ll_header_truncated(dev
, tp_len
))
2411 skb_push(skb
, dev
->hard_header_len
);
2412 err
= skb_store_bits(skb
, 0, data
,
2413 dev
->hard_header_len
);
2417 data
+= dev
->hard_header_len
;
2418 to_write
-= dev
->hard_header_len
;
2421 offset
= offset_in_page(data
);
2422 len_max
= PAGE_SIZE
- offset
;
2423 len
= ((to_write
> len_max
) ? len_max
: to_write
);
2425 skb
->data_len
= to_write
;
2426 skb
->len
+= to_write
;
2427 skb
->truesize
+= to_write
;
2428 atomic_add(to_write
, &po
->sk
.sk_wmem_alloc
);
2430 while (likely(to_write
)) {
2431 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2433 if (unlikely(nr_frags
>= MAX_SKB_FRAGS
)) {
2434 pr_err("Packet exceed the number of skb frags(%lu)\n",
2439 page
= pgv_to_page(data
);
2441 flush_dcache_page(page
);
2443 skb_fill_page_desc(skb
, nr_frags
, page
, offset
, len
);
2446 len_max
= PAGE_SIZE
;
2447 len
= ((to_write
> len_max
) ? len_max
: to_write
);
2453 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
)
2455 struct sk_buff
*skb
;
2456 struct net_device
*dev
;
2458 int err
, reserve
= 0;
2460 DECLARE_SOCKADDR(struct sockaddr_ll
*, saddr
, msg
->msg_name
);
2461 bool need_wait
= !(msg
->msg_flags
& MSG_DONTWAIT
);
2462 int tp_len
, size_max
;
2463 unsigned char *addr
;
2465 int status
= TP_STATUS_AVAILABLE
;
2468 mutex_lock(&po
->pg_vec_lock
);
2470 if (likely(saddr
== NULL
)) {
2471 dev
= packet_cached_dev_get(po
);
2476 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
2478 if (msg
->msg_namelen
< (saddr
->sll_halen
2479 + offsetof(struct sockaddr_ll
,
2482 proto
= saddr
->sll_protocol
;
2483 addr
= saddr
->sll_addr
;
2484 dev
= dev_get_by_index(sock_net(&po
->sk
), saddr
->sll_ifindex
);
2488 if (unlikely(dev
== NULL
))
2491 if (unlikely(!(dev
->flags
& IFF_UP
)))
2494 reserve
= dev
->hard_header_len
+ VLAN_HLEN
;
2495 size_max
= po
->tx_ring
.frame_size
2496 - (po
->tp_hdrlen
- sizeof(struct sockaddr_ll
));
2498 if (size_max
> dev
->mtu
+ reserve
)
2499 size_max
= dev
->mtu
+ reserve
;
2502 ph
= packet_current_frame(po
, &po
->tx_ring
,
2503 TP_STATUS_SEND_REQUEST
);
2504 if (unlikely(ph
== NULL
)) {
2505 if (need_wait
&& need_resched())
2510 status
= TP_STATUS_SEND_REQUEST
;
2511 hlen
= LL_RESERVED_SPACE(dev
);
2512 tlen
= dev
->needed_tailroom
;
2513 skb
= sock_alloc_send_skb(&po
->sk
,
2514 hlen
+ tlen
+ sizeof(struct sockaddr_ll
),
2517 if (unlikely(skb
== NULL
)) {
2518 /* we assume the socket was initially writeable ... */
2519 if (likely(len_sum
> 0))
2523 tp_len
= tpacket_fill_skb(po
, skb
, ph
, dev
, size_max
, proto
,
2525 if (likely(tp_len
>= 0) &&
2526 tp_len
> dev
->mtu
+ dev
->hard_header_len
) {
2527 struct ethhdr
*ehdr
;
2528 /* Earlier code assumed this would be a VLAN pkt,
2529 * double-check this now that we have the actual
2533 skb_reset_mac_header(skb
);
2534 ehdr
= eth_hdr(skb
);
2535 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
))
2538 if (unlikely(tp_len
< 0)) {
2540 __packet_set_status(po
, ph
,
2541 TP_STATUS_AVAILABLE
);
2542 packet_increment_head(&po
->tx_ring
);
2546 status
= TP_STATUS_WRONG_FORMAT
;
2552 packet_pick_tx_queue(dev
, skb
);
2554 skb
->destructor
= tpacket_destruct_skb
;
2555 __packet_set_status(po
, ph
, TP_STATUS_SENDING
);
2556 packet_inc_pending(&po
->tx_ring
);
2558 status
= TP_STATUS_SEND_REQUEST
;
2559 err
= po
->xmit(skb
);
2560 if (unlikely(err
> 0)) {
2561 err
= net_xmit_errno(err
);
2562 if (err
&& __packet_get_status(po
, ph
) ==
2563 TP_STATUS_AVAILABLE
) {
2564 /* skb was destructed already */
2569 * skb was dropped but not destructed yet;
2570 * let's treat it like congestion or err < 0
2574 packet_increment_head(&po
->tx_ring
);
2576 } while (likely((ph
!= NULL
) ||
2577 /* Note: packet_read_pending() might be slow if we have
2578 * to call it as it's per_cpu variable, but in fast-path
2579 * we already short-circuit the loop with the first
2580 * condition, and luckily don't have to go that path
2583 (need_wait
&& packet_read_pending(&po
->tx_ring
))));
2589 __packet_set_status(po
, ph
, status
);
2594 mutex_unlock(&po
->pg_vec_lock
);
2598 static struct sk_buff
*packet_alloc_skb(struct sock
*sk
, size_t prepad
,
2599 size_t reserve
, size_t len
,
2600 size_t linear
, int noblock
,
2603 struct sk_buff
*skb
;
2605 /* Under a page? Don't bother with paged skb. */
2606 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
2609 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
2614 skb_reserve(skb
, reserve
);
2615 skb_put(skb
, linear
);
2616 skb
->data_len
= len
- linear
;
2617 skb
->len
+= len
- linear
;
2622 static int packet_snd(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
2624 struct sock
*sk
= sock
->sk
;
2625 DECLARE_SOCKADDR(struct sockaddr_ll
*, saddr
, msg
->msg_name
);
2626 struct sk_buff
*skb
;
2627 struct net_device
*dev
;
2629 unsigned char *addr
;
2630 int err
, reserve
= 0;
2631 struct virtio_net_hdr vnet_hdr
= { 0 };
2634 struct packet_sock
*po
= pkt_sk(sk
);
2635 unsigned short gso_type
= 0;
2641 * Get and verify the address.
2644 if (likely(saddr
== NULL
)) {
2645 dev
= packet_cached_dev_get(po
);
2650 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
2652 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
2654 proto
= saddr
->sll_protocol
;
2655 addr
= saddr
->sll_addr
;
2656 dev
= dev_get_by_index(sock_net(sk
), saddr
->sll_ifindex
);
2660 if (unlikely(dev
== NULL
))
2663 if (unlikely(!(dev
->flags
& IFF_UP
)))
2666 if (sock
->type
== SOCK_RAW
)
2667 reserve
= dev
->hard_header_len
;
2668 if (po
->has_vnet_hdr
) {
2669 vnet_hdr_len
= sizeof(vnet_hdr
);
2672 if (len
< vnet_hdr_len
)
2675 len
-= vnet_hdr_len
;
2678 n
= copy_from_iter(&vnet_hdr
, vnet_hdr_len
, &msg
->msg_iter
);
2679 if (n
!= vnet_hdr_len
)
2682 if ((vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
2683 (__virtio16_to_cpu(false, vnet_hdr
.csum_start
) +
2684 __virtio16_to_cpu(false, vnet_hdr
.csum_offset
) + 2 >
2685 __virtio16_to_cpu(false, vnet_hdr
.hdr_len
)))
2686 vnet_hdr
.hdr_len
= __cpu_to_virtio16(false,
2687 __virtio16_to_cpu(false, vnet_hdr
.csum_start
) +
2688 __virtio16_to_cpu(false, vnet_hdr
.csum_offset
) + 2);
2691 if (__virtio16_to_cpu(false, vnet_hdr
.hdr_len
) > len
)
2694 if (vnet_hdr
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
2695 switch (vnet_hdr
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
2696 case VIRTIO_NET_HDR_GSO_TCPV4
:
2697 gso_type
= SKB_GSO_TCPV4
;
2699 case VIRTIO_NET_HDR_GSO_TCPV6
:
2700 gso_type
= SKB_GSO_TCPV6
;
2702 case VIRTIO_NET_HDR_GSO_UDP
:
2703 gso_type
= SKB_GSO_UDP
;
2709 if (vnet_hdr
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
2710 gso_type
|= SKB_GSO_TCP_ECN
;
2712 if (vnet_hdr
.gso_size
== 0)
2718 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
2719 if (!netif_supports_nofcs(dev
)) {
2720 err
= -EPROTONOSUPPORT
;
2723 extra_len
= 4; /* We're doing our own CRC */
2727 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ VLAN_HLEN
+ extra_len
))
2731 hlen
= LL_RESERVED_SPACE(dev
);
2732 tlen
= dev
->needed_tailroom
;
2733 skb
= packet_alloc_skb(sk
, hlen
+ tlen
, hlen
, len
,
2734 __virtio16_to_cpu(false, vnet_hdr
.hdr_len
),
2735 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
2739 skb_set_network_header(skb
, reserve
);
2742 if (sock
->type
== SOCK_DGRAM
) {
2743 offset
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
);
2744 if (unlikely(offset
< 0))
2747 if (ll_header_truncated(dev
, len
))
2751 /* Returns -EFAULT on error */
2752 err
= skb_copy_datagram_from_iter(skb
, offset
, &msg
->msg_iter
, len
);
2756 sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
2758 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ extra_len
)) {
2759 /* Earlier code assumed this would be a VLAN pkt,
2760 * double-check this now that we have the actual
2763 struct ethhdr
*ehdr
;
2764 skb_reset_mac_header(skb
);
2765 ehdr
= eth_hdr(skb
);
2766 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
2772 skb
->protocol
= proto
;
2774 skb
->priority
= sk
->sk_priority
;
2775 skb
->mark
= sk
->sk_mark
;
2777 packet_pick_tx_queue(dev
, skb
);
2779 if (po
->has_vnet_hdr
) {
2780 if (vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
2781 u16 s
= __virtio16_to_cpu(false, vnet_hdr
.csum_start
);
2782 u16 o
= __virtio16_to_cpu(false, vnet_hdr
.csum_offset
);
2783 if (!skb_partial_csum_set(skb
, s
, o
)) {
2789 skb_shinfo(skb
)->gso_size
=
2790 __virtio16_to_cpu(false, vnet_hdr
.gso_size
);
2791 skb_shinfo(skb
)->gso_type
= gso_type
;
2793 /* Header must be checked, and gso_segs computed. */
2794 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
2795 skb_shinfo(skb
)->gso_segs
= 0;
2797 len
+= vnet_hdr_len
;
2800 if (!packet_use_direct_xmit(po
))
2801 skb_probe_transport_header(skb
, reserve
);
2802 if (unlikely(extra_len
== 4))
2805 err
= po
->xmit(skb
);
2806 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
2822 static int packet_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
2824 struct sock
*sk
= sock
->sk
;
2825 struct packet_sock
*po
= pkt_sk(sk
);
2827 if (po
->tx_ring
.pg_vec
)
2828 return tpacket_snd(po
, msg
);
2830 return packet_snd(sock
, msg
, len
);
2834 * Close a PACKET socket. This is fairly simple. We immediately go
2835 * to 'closed' state and remove our protocol entry in the device list.
2838 static int packet_release(struct socket
*sock
)
2840 struct sock
*sk
= sock
->sk
;
2841 struct packet_sock
*po
;
2843 union tpacket_req_u req_u
;
2851 mutex_lock(&net
->packet
.sklist_lock
);
2852 sk_del_node_init_rcu(sk
);
2853 mutex_unlock(&net
->packet
.sklist_lock
);
2856 sock_prot_inuse_add(net
, sk
->sk_prot
, -1);
2859 spin_lock(&po
->bind_lock
);
2860 unregister_prot_hook(sk
, false);
2861 packet_cached_dev_reset(po
);
2863 if (po
->prot_hook
.dev
) {
2864 dev_put(po
->prot_hook
.dev
);
2865 po
->prot_hook
.dev
= NULL
;
2867 spin_unlock(&po
->bind_lock
);
2869 packet_flush_mclist(sk
);
2871 if (po
->rx_ring
.pg_vec
) {
2872 memset(&req_u
, 0, sizeof(req_u
));
2873 packet_set_ring(sk
, &req_u
, 1, 0);
2876 if (po
->tx_ring
.pg_vec
) {
2877 memset(&req_u
, 0, sizeof(req_u
));
2878 packet_set_ring(sk
, &req_u
, 1, 1);
2885 * Now the socket is dead. No more input will appear.
2892 skb_queue_purge(&sk
->sk_receive_queue
);
2893 packet_free_pending(po
);
2894 sk_refcnt_debug_release(sk
);
2901 * Attach a packet hook.
2904 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 proto
)
2906 struct packet_sock
*po
= pkt_sk(sk
);
2907 struct net_device
*dev_curr
;
2919 spin_lock(&po
->bind_lock
);
2921 proto_curr
= po
->prot_hook
.type
;
2922 dev_curr
= po
->prot_hook
.dev
;
2924 need_rehook
= proto_curr
!= proto
|| dev_curr
!= dev
;
2927 unregister_prot_hook(sk
, true);
2930 po
->prot_hook
.type
= proto
;
2931 po
->prot_hook
.dev
= dev
;
2933 po
->ifindex
= dev
? dev
->ifindex
: 0;
2934 packet_cached_dev_assign(po
, dev
);
2939 if (proto
== 0 || !need_rehook
)
2942 if (!dev
|| (dev
->flags
& IFF_UP
)) {
2943 register_prot_hook(sk
);
2945 sk
->sk_err
= ENETDOWN
;
2946 if (!sock_flag(sk
, SOCK_DEAD
))
2947 sk
->sk_error_report(sk
);
2951 spin_unlock(&po
->bind_lock
);
2957 * Bind a packet socket to a device
2960 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2963 struct sock
*sk
= sock
->sk
;
2965 struct net_device
*dev
;
2972 if (addr_len
!= sizeof(struct sockaddr
))
2974 strlcpy(name
, uaddr
->sa_data
, sizeof(name
));
2976 dev
= dev_get_by_name(sock_net(sk
), name
);
2978 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
2982 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
2984 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
2985 struct sock
*sk
= sock
->sk
;
2986 struct net_device
*dev
= NULL
;
2994 if (addr_len
< sizeof(struct sockaddr_ll
))
2996 if (sll
->sll_family
!= AF_PACKET
)
2999 if (sll
->sll_ifindex
) {
3001 dev
= dev_get_by_index(sock_net(sk
), sll
->sll_ifindex
);
3005 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
3011 static struct proto packet_proto
= {
3013 .owner
= THIS_MODULE
,
3014 .obj_size
= sizeof(struct packet_sock
),
3018 * Create a packet of type SOCK_PACKET.
3021 static int packet_create(struct net
*net
, struct socket
*sock
, int protocol
,
3025 struct packet_sock
*po
;
3026 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
3029 if (!ns_capable(net
->user_ns
, CAP_NET_RAW
))
3031 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
&&
3032 sock
->type
!= SOCK_PACKET
)
3033 return -ESOCKTNOSUPPORT
;
3035 sock
->state
= SS_UNCONNECTED
;
3038 sk
= sk_alloc(net
, PF_PACKET
, GFP_KERNEL
, &packet_proto
, kern
);
3042 sock
->ops
= &packet_ops
;
3043 if (sock
->type
== SOCK_PACKET
)
3044 sock
->ops
= &packet_ops_spkt
;
3046 sock_init_data(sock
, sk
);
3049 sk
->sk_family
= PF_PACKET
;
3051 po
->xmit
= dev_queue_xmit
;
3053 err
= packet_alloc_pending(po
);
3057 packet_cached_dev_reset(po
);
3059 sk
->sk_destruct
= packet_sock_destruct
;
3060 sk_refcnt_debug_inc(sk
);
3063 * Attach a protocol block
3066 spin_lock_init(&po
->bind_lock
);
3067 mutex_init(&po
->pg_vec_lock
);
3068 po
->rollover
= NULL
;
3069 po
->prot_hook
.func
= packet_rcv
;
3071 if (sock
->type
== SOCK_PACKET
)
3072 po
->prot_hook
.func
= packet_rcv_spkt
;
3074 po
->prot_hook
.af_packet_priv
= sk
;
3077 po
->prot_hook
.type
= proto
;
3078 register_prot_hook(sk
);
3081 mutex_lock(&net
->packet
.sklist_lock
);
3082 sk_add_node_rcu(sk
, &net
->packet
.sklist
);
3083 mutex_unlock(&net
->packet
.sklist_lock
);
3086 sock_prot_inuse_add(net
, &packet_proto
, 1);
3097 * Pull a packet from our receive queue and hand it to the user.
3098 * If necessary we block.
3101 static int packet_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
,
3104 struct sock
*sk
= sock
->sk
;
3105 struct sk_buff
*skb
;
3107 int vnet_hdr_len
= 0;
3108 unsigned int origlen
= 0;
3111 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
|MSG_ERRQUEUE
))
3115 /* What error should we return now? EUNATTACH? */
3116 if (pkt_sk(sk
)->ifindex
< 0)
3120 if (flags
& MSG_ERRQUEUE
) {
3121 err
= sock_recv_errqueue(sk
, msg
, len
,
3122 SOL_PACKET
, PACKET_TX_TIMESTAMP
);
3127 * Call the generic datagram receiver. This handles all sorts
3128 * of horrible races and re-entrancy so we can forget about it
3129 * in the protocol layers.
3131 * Now it will return ENETDOWN, if device have just gone down,
3132 * but then it will block.
3135 skb
= skb_recv_datagram(sk
, flags
, flags
& MSG_DONTWAIT
, &err
);
3138 * An error occurred so return it. Because skb_recv_datagram()
3139 * handles the blocking we don't see and worry about blocking
3146 if (pkt_sk(sk
)->pressure
)
3147 packet_rcv_has_room(pkt_sk(sk
), NULL
);
3149 if (pkt_sk(sk
)->has_vnet_hdr
) {
3150 struct virtio_net_hdr vnet_hdr
= { 0 };
3153 vnet_hdr_len
= sizeof(vnet_hdr
);
3154 if (len
< vnet_hdr_len
)
3157 len
-= vnet_hdr_len
;
3159 if (skb_is_gso(skb
)) {
3160 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
3162 /* This is a hint as to how much should be linear. */
3164 __cpu_to_virtio16(false, skb_headlen(skb
));
3166 __cpu_to_virtio16(false, sinfo
->gso_size
);
3167 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
3168 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
3169 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
3170 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
3171 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
3172 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
3173 else if (sinfo
->gso_type
& SKB_GSO_FCOE
)
3177 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
3178 vnet_hdr
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
3180 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
3182 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
3183 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
3184 vnet_hdr
.csum_start
= __cpu_to_virtio16(false,
3185 skb_checksum_start_offset(skb
));
3186 vnet_hdr
.csum_offset
= __cpu_to_virtio16(false,
3188 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
3189 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
3190 } /* else everything is zero */
3192 err
= memcpy_to_msg(msg
, (void *)&vnet_hdr
, vnet_hdr_len
);
3197 /* You lose any data beyond the buffer you gave. If it worries
3198 * a user program they can ask the device for its MTU
3204 msg
->msg_flags
|= MSG_TRUNC
;
3207 err
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
3211 if (sock
->type
!= SOCK_PACKET
) {
3212 struct sockaddr_ll
*sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
3214 /* Original length was stored in sockaddr_ll fields */
3215 origlen
= PACKET_SKB_CB(skb
)->sa
.origlen
;
3216 sll
->sll_family
= AF_PACKET
;
3217 sll
->sll_protocol
= skb
->protocol
;
3220 sock_recv_ts_and_drops(msg
, sk
, skb
);
3222 if (msg
->msg_name
) {
3223 /* If the address length field is there to be filled
3224 * in, we fill it in now.
3226 if (sock
->type
== SOCK_PACKET
) {
3227 __sockaddr_check_size(sizeof(struct sockaddr_pkt
));
3228 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
3230 struct sockaddr_ll
*sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
3232 msg
->msg_namelen
= sll
->sll_halen
+
3233 offsetof(struct sockaddr_ll
, sll_addr
);
3235 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
3239 if (pkt_sk(sk
)->auxdata
) {
3240 struct tpacket_auxdata aux
;
3242 aux
.tp_status
= TP_STATUS_USER
;
3243 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
3244 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
3245 else if (skb
->pkt_type
!= PACKET_OUTGOING
&&
3246 (skb
->ip_summed
== CHECKSUM_COMPLETE
||
3247 skb_csum_unnecessary(skb
)))
3248 aux
.tp_status
|= TP_STATUS_CSUM_VALID
;
3250 aux
.tp_len
= origlen
;
3251 aux
.tp_snaplen
= skb
->len
;
3253 aux
.tp_net
= skb_network_offset(skb
);
3254 if (skb_vlan_tag_present(skb
)) {
3255 aux
.tp_vlan_tci
= skb_vlan_tag_get(skb
);
3256 aux
.tp_vlan_tpid
= ntohs(skb
->vlan_proto
);
3257 aux
.tp_status
|= TP_STATUS_VLAN_VALID
| TP_STATUS_VLAN_TPID_VALID
;
3259 aux
.tp_vlan_tci
= 0;
3260 aux
.tp_vlan_tpid
= 0;
3262 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
3266 * Free or return the buffer as appropriate. Again this
3267 * hides all the races and re-entrancy issues from us.
3269 err
= vnet_hdr_len
+ ((flags
&MSG_TRUNC
) ? skb
->len
: copied
);
3272 skb_free_datagram(sk
, skb
);
3277 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
3278 int *uaddr_len
, int peer
)
3280 struct net_device
*dev
;
3281 struct sock
*sk
= sock
->sk
;
3286 uaddr
->sa_family
= AF_PACKET
;
3287 memset(uaddr
->sa_data
, 0, sizeof(uaddr
->sa_data
));
3289 dev
= dev_get_by_index_rcu(sock_net(sk
), pkt_sk(sk
)->ifindex
);
3291 strlcpy(uaddr
->sa_data
, dev
->name
, sizeof(uaddr
->sa_data
));
3293 *uaddr_len
= sizeof(*uaddr
);
3298 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
3299 int *uaddr_len
, int peer
)
3301 struct net_device
*dev
;
3302 struct sock
*sk
= sock
->sk
;
3303 struct packet_sock
*po
= pkt_sk(sk
);
3304 DECLARE_SOCKADDR(struct sockaddr_ll
*, sll
, uaddr
);
3309 sll
->sll_family
= AF_PACKET
;
3310 sll
->sll_ifindex
= po
->ifindex
;
3311 sll
->sll_protocol
= po
->num
;
3312 sll
->sll_pkttype
= 0;
3314 dev
= dev_get_by_index_rcu(sock_net(sk
), po
->ifindex
);
3316 sll
->sll_hatype
= dev
->type
;
3317 sll
->sll_halen
= dev
->addr_len
;
3318 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
3320 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
3324 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
3329 static int packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
,
3333 case PACKET_MR_MULTICAST
:
3334 if (i
->alen
!= dev
->addr_len
)
3337 return dev_mc_add(dev
, i
->addr
);
3339 return dev_mc_del(dev
, i
->addr
);
3341 case PACKET_MR_PROMISC
:
3342 return dev_set_promiscuity(dev
, what
);
3343 case PACKET_MR_ALLMULTI
:
3344 return dev_set_allmulti(dev
, what
);
3345 case PACKET_MR_UNICAST
:
3346 if (i
->alen
!= dev
->addr_len
)
3349 return dev_uc_add(dev
, i
->addr
);
3351 return dev_uc_del(dev
, i
->addr
);
3359 static void packet_dev_mclist_delete(struct net_device
*dev
,
3360 struct packet_mclist
**mlp
)
3362 struct packet_mclist
*ml
;
3364 while ((ml
= *mlp
) != NULL
) {
3365 if (ml
->ifindex
== dev
->ifindex
) {
3366 packet_dev_mc(dev
, ml
, -1);
3374 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
3376 struct packet_sock
*po
= pkt_sk(sk
);
3377 struct packet_mclist
*ml
, *i
;
3378 struct net_device
*dev
;
3384 dev
= __dev_get_by_index(sock_net(sk
), mreq
->mr_ifindex
);
3389 if (mreq
->mr_alen
> dev
->addr_len
)
3393 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
3398 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
3399 if (ml
->ifindex
== mreq
->mr_ifindex
&&
3400 ml
->type
== mreq
->mr_type
&&
3401 ml
->alen
== mreq
->mr_alen
&&
3402 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
3404 /* Free the new element ... */
3410 i
->type
= mreq
->mr_type
;
3411 i
->ifindex
= mreq
->mr_ifindex
;
3412 i
->alen
= mreq
->mr_alen
;
3413 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
3415 i
->next
= po
->mclist
;
3417 err
= packet_dev_mc(dev
, i
, 1);
3419 po
->mclist
= i
->next
;
3428 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
3430 struct packet_mclist
*ml
, **mlp
;
3434 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
3435 if (ml
->ifindex
== mreq
->mr_ifindex
&&
3436 ml
->type
== mreq
->mr_type
&&
3437 ml
->alen
== mreq
->mr_alen
&&
3438 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
3439 if (--ml
->count
== 0) {
3440 struct net_device
*dev
;
3442 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
3444 packet_dev_mc(dev
, ml
, -1);
3454 static void packet_flush_mclist(struct sock
*sk
)
3456 struct packet_sock
*po
= pkt_sk(sk
);
3457 struct packet_mclist
*ml
;
3463 while ((ml
= po
->mclist
) != NULL
) {
3464 struct net_device
*dev
;
3466 po
->mclist
= ml
->next
;
3467 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
3469 packet_dev_mc(dev
, ml
, -1);
3476 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, unsigned int optlen
)
3478 struct sock
*sk
= sock
->sk
;
3479 struct packet_sock
*po
= pkt_sk(sk
);
3482 if (level
!= SOL_PACKET
)
3483 return -ENOPROTOOPT
;
3486 case PACKET_ADD_MEMBERSHIP
:
3487 case PACKET_DROP_MEMBERSHIP
:
3489 struct packet_mreq_max mreq
;
3491 memset(&mreq
, 0, sizeof(mreq
));
3492 if (len
< sizeof(struct packet_mreq
))
3494 if (len
> sizeof(mreq
))
3496 if (copy_from_user(&mreq
, optval
, len
))
3498 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
3500 if (optname
== PACKET_ADD_MEMBERSHIP
)
3501 ret
= packet_mc_add(sk
, &mreq
);
3503 ret
= packet_mc_drop(sk
, &mreq
);
3507 case PACKET_RX_RING
:
3508 case PACKET_TX_RING
:
3510 union tpacket_req_u req_u
;
3513 switch (po
->tp_version
) {
3516 len
= sizeof(req_u
.req
);
3520 len
= sizeof(req_u
.req3
);
3525 if (pkt_sk(sk
)->has_vnet_hdr
)
3527 if (copy_from_user(&req_u
.req
, optval
, len
))
3529 return packet_set_ring(sk
, &req_u
, 0,
3530 optname
== PACKET_TX_RING
);
3532 case PACKET_COPY_THRESH
:
3536 if (optlen
!= sizeof(val
))
3538 if (copy_from_user(&val
, optval
, sizeof(val
)))
3541 pkt_sk(sk
)->copy_thresh
= val
;
3544 case PACKET_VERSION
:
3548 if (optlen
!= sizeof(val
))
3550 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3552 if (copy_from_user(&val
, optval
, sizeof(val
)))
3558 po
->tp_version
= val
;
3564 case PACKET_RESERVE
:
3568 if (optlen
!= sizeof(val
))
3570 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3572 if (copy_from_user(&val
, optval
, sizeof(val
)))
3574 po
->tp_reserve
= val
;
3581 if (optlen
!= sizeof(val
))
3583 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3585 if (copy_from_user(&val
, optval
, sizeof(val
)))
3587 po
->tp_loss
= !!val
;
3590 case PACKET_AUXDATA
:
3594 if (optlen
< sizeof(val
))
3596 if (copy_from_user(&val
, optval
, sizeof(val
)))
3599 po
->auxdata
= !!val
;
3602 case PACKET_ORIGDEV
:
3606 if (optlen
< sizeof(val
))
3608 if (copy_from_user(&val
, optval
, sizeof(val
)))
3611 po
->origdev
= !!val
;
3614 case PACKET_VNET_HDR
:
3618 if (sock
->type
!= SOCK_RAW
)
3620 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3622 if (optlen
< sizeof(val
))
3624 if (copy_from_user(&val
, optval
, sizeof(val
)))
3627 po
->has_vnet_hdr
= !!val
;
3630 case PACKET_TIMESTAMP
:
3634 if (optlen
!= sizeof(val
))
3636 if (copy_from_user(&val
, optval
, sizeof(val
)))
3639 po
->tp_tstamp
= val
;
3646 if (optlen
!= sizeof(val
))
3648 if (copy_from_user(&val
, optval
, sizeof(val
)))
3651 return fanout_add(sk
, val
& 0xffff, val
>> 16);
3653 case PACKET_FANOUT_DATA
:
3658 return fanout_set_data(po
, optval
, optlen
);
3660 case PACKET_TX_HAS_OFF
:
3664 if (optlen
!= sizeof(val
))
3666 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3668 if (copy_from_user(&val
, optval
, sizeof(val
)))
3670 po
->tp_tx_has_off
= !!val
;
3673 case PACKET_QDISC_BYPASS
:
3677 if (optlen
!= sizeof(val
))
3679 if (copy_from_user(&val
, optval
, sizeof(val
)))
3682 po
->xmit
= val
? packet_direct_xmit
: dev_queue_xmit
;
3686 return -ENOPROTOOPT
;
3690 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
3691 char __user
*optval
, int __user
*optlen
)
3694 int val
, lv
= sizeof(val
);
3695 struct sock
*sk
= sock
->sk
;
3696 struct packet_sock
*po
= pkt_sk(sk
);
3698 union tpacket_stats_u st
;
3699 struct tpacket_rollover_stats rstats
;
3701 if (level
!= SOL_PACKET
)
3702 return -ENOPROTOOPT
;
3704 if (get_user(len
, optlen
))
3711 case PACKET_STATISTICS
:
3712 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3713 memcpy(&st
, &po
->stats
, sizeof(st
));
3714 memset(&po
->stats
, 0, sizeof(po
->stats
));
3715 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3717 if (po
->tp_version
== TPACKET_V3
) {
3718 lv
= sizeof(struct tpacket_stats_v3
);
3719 st
.stats3
.tp_packets
+= st
.stats3
.tp_drops
;
3722 lv
= sizeof(struct tpacket_stats
);
3723 st
.stats1
.tp_packets
+= st
.stats1
.tp_drops
;
3728 case PACKET_AUXDATA
:
3731 case PACKET_ORIGDEV
:
3734 case PACKET_VNET_HDR
:
3735 val
= po
->has_vnet_hdr
;
3737 case PACKET_VERSION
:
3738 val
= po
->tp_version
;
3741 if (len
> sizeof(int))
3743 if (copy_from_user(&val
, optval
, len
))
3747 val
= sizeof(struct tpacket_hdr
);
3750 val
= sizeof(struct tpacket2_hdr
);
3753 val
= sizeof(struct tpacket3_hdr
);
3759 case PACKET_RESERVE
:
3760 val
= po
->tp_reserve
;
3765 case PACKET_TIMESTAMP
:
3766 val
= po
->tp_tstamp
;
3770 ((u32
)po
->fanout
->id
|
3771 ((u32
)po
->fanout
->type
<< 16) |
3772 ((u32
)po
->fanout
->flags
<< 24)) :
3775 case PACKET_ROLLOVER_STATS
:
3778 rstats
.tp_all
= atomic_long_read(&po
->rollover
->num
);
3779 rstats
.tp_huge
= atomic_long_read(&po
->rollover
->num_huge
);
3780 rstats
.tp_failed
= atomic_long_read(&po
->rollover
->num_failed
);
3782 lv
= sizeof(rstats
);
3784 case PACKET_TX_HAS_OFF
:
3785 val
= po
->tp_tx_has_off
;
3787 case PACKET_QDISC_BYPASS
:
3788 val
= packet_use_direct_xmit(po
);
3791 return -ENOPROTOOPT
;
3796 if (put_user(len
, optlen
))
3798 if (copy_to_user(optval
, data
, len
))
3804 static int packet_notifier(struct notifier_block
*this,
3805 unsigned long msg
, void *ptr
)
3808 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3809 struct net
*net
= dev_net(dev
);
3812 sk_for_each_rcu(sk
, &net
->packet
.sklist
) {
3813 struct packet_sock
*po
= pkt_sk(sk
);
3816 case NETDEV_UNREGISTER
:
3818 packet_dev_mclist_delete(dev
, &po
->mclist
);
3822 if (dev
->ifindex
== po
->ifindex
) {
3823 spin_lock(&po
->bind_lock
);
3825 __unregister_prot_hook(sk
, false);
3826 sk
->sk_err
= ENETDOWN
;
3827 if (!sock_flag(sk
, SOCK_DEAD
))
3828 sk
->sk_error_report(sk
);
3830 if (msg
== NETDEV_UNREGISTER
) {
3831 packet_cached_dev_reset(po
);
3833 if (po
->prot_hook
.dev
)
3834 dev_put(po
->prot_hook
.dev
);
3835 po
->prot_hook
.dev
= NULL
;
3837 spin_unlock(&po
->bind_lock
);
3841 if (dev
->ifindex
== po
->ifindex
) {
3842 spin_lock(&po
->bind_lock
);
3844 register_prot_hook(sk
);
3845 spin_unlock(&po
->bind_lock
);
3855 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
3858 struct sock
*sk
= sock
->sk
;
3863 int amount
= sk_wmem_alloc_get(sk
);
3865 return put_user(amount
, (int __user
*)arg
);
3869 struct sk_buff
*skb
;
3872 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3873 skb
= skb_peek(&sk
->sk_receive_queue
);
3876 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3877 return put_user(amount
, (int __user
*)arg
);
3880 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
3882 return sock_get_timestampns(sk
, (struct timespec __user
*)arg
);
3892 case SIOCGIFBRDADDR
:
3893 case SIOCSIFBRDADDR
:
3894 case SIOCGIFNETMASK
:
3895 case SIOCSIFNETMASK
:
3896 case SIOCGIFDSTADDR
:
3897 case SIOCSIFDSTADDR
:
3899 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
3903 return -ENOIOCTLCMD
;
3908 static unsigned int packet_poll(struct file
*file
, struct socket
*sock
,
3911 struct sock
*sk
= sock
->sk
;
3912 struct packet_sock
*po
= pkt_sk(sk
);
3913 unsigned int mask
= datagram_poll(file
, sock
, wait
);
3915 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3916 if (po
->rx_ring
.pg_vec
) {
3917 if (!packet_previous_rx_frame(po
, &po
->rx_ring
,
3919 mask
|= POLLIN
| POLLRDNORM
;
3921 if (po
->pressure
&& __packet_rcv_has_room(po
, NULL
) == ROOM_NORMAL
)
3923 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3924 spin_lock_bh(&sk
->sk_write_queue
.lock
);
3925 if (po
->tx_ring
.pg_vec
) {
3926 if (packet_current_frame(po
, &po
->tx_ring
, TP_STATUS_AVAILABLE
))
3927 mask
|= POLLOUT
| POLLWRNORM
;
3929 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
3934 /* Dirty? Well, I still did not learn better way to account
3938 static void packet_mm_open(struct vm_area_struct
*vma
)
3940 struct file
*file
= vma
->vm_file
;
3941 struct socket
*sock
= file
->private_data
;
3942 struct sock
*sk
= sock
->sk
;
3945 atomic_inc(&pkt_sk(sk
)->mapped
);
3948 static void packet_mm_close(struct vm_area_struct
*vma
)
3950 struct file
*file
= vma
->vm_file
;
3951 struct socket
*sock
= file
->private_data
;
3952 struct sock
*sk
= sock
->sk
;
3955 atomic_dec(&pkt_sk(sk
)->mapped
);
3958 static const struct vm_operations_struct packet_mmap_ops
= {
3959 .open
= packet_mm_open
,
3960 .close
= packet_mm_close
,
3963 static void free_pg_vec(struct pgv
*pg_vec
, unsigned int order
,
3968 for (i
= 0; i
< len
; i
++) {
3969 if (likely(pg_vec
[i
].buffer
)) {
3970 if (is_vmalloc_addr(pg_vec
[i
].buffer
))
3971 vfree(pg_vec
[i
].buffer
);
3973 free_pages((unsigned long)pg_vec
[i
].buffer
,
3975 pg_vec
[i
].buffer
= NULL
;
3981 static char *alloc_one_pg_vec_page(unsigned long order
)
3984 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
|
3985 __GFP_ZERO
| __GFP_NOWARN
| __GFP_NORETRY
;
3987 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
3991 /* __get_free_pages failed, fall back to vmalloc */
3992 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
3996 /* vmalloc failed, lets dig into swap here */
3997 gfp_flags
&= ~__GFP_NORETRY
;
3998 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
4002 /* complete and utter failure */
4006 static struct pgv
*alloc_pg_vec(struct tpacket_req
*req
, int order
)
4008 unsigned int block_nr
= req
->tp_block_nr
;
4012 pg_vec
= kcalloc(block_nr
, sizeof(struct pgv
), GFP_KERNEL
);
4013 if (unlikely(!pg_vec
))
4016 for (i
= 0; i
< block_nr
; i
++) {
4017 pg_vec
[i
].buffer
= alloc_one_pg_vec_page(order
);
4018 if (unlikely(!pg_vec
[i
].buffer
))
4019 goto out_free_pgvec
;
4026 free_pg_vec(pg_vec
, order
, block_nr
);
4031 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
4032 int closing
, int tx_ring
)
4034 struct pgv
*pg_vec
= NULL
;
4035 struct packet_sock
*po
= pkt_sk(sk
);
4036 int was_running
, order
= 0;
4037 struct packet_ring_buffer
*rb
;
4038 struct sk_buff_head
*rb_queue
;
4041 /* Added to avoid minimal code churn */
4042 struct tpacket_req
*req
= &req_u
->req
;
4044 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
4045 if (!closing
&& tx_ring
&& (po
->tp_version
> TPACKET_V2
)) {
4046 WARN(1, "Tx-ring is not supported.\n");
4050 rb
= tx_ring
? &po
->tx_ring
: &po
->rx_ring
;
4051 rb_queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
4055 if (atomic_read(&po
->mapped
))
4057 if (packet_read_pending(rb
))
4061 if (req
->tp_block_nr
) {
4062 /* Sanity tests and some calculations */
4064 if (unlikely(rb
->pg_vec
))
4067 switch (po
->tp_version
) {
4069 po
->tp_hdrlen
= TPACKET_HDRLEN
;
4072 po
->tp_hdrlen
= TPACKET2_HDRLEN
;
4075 po
->tp_hdrlen
= TPACKET3_HDRLEN
;
4080 if (unlikely((int)req
->tp_block_size
<= 0))
4082 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
4084 if (po
->tp_version
>= TPACKET_V3
&&
4085 (int)(req
->tp_block_size
-
4086 BLK_PLUS_PRIV(req_u
->req3
.tp_sizeof_priv
)) <= 0)
4088 if (unlikely(req
->tp_frame_size
< po
->tp_hdrlen
+
4091 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
4094 rb
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
4095 if (unlikely(rb
->frames_per_block
<= 0))
4097 if (unlikely((rb
->frames_per_block
* req
->tp_block_nr
) !=
4102 order
= get_order(req
->tp_block_size
);
4103 pg_vec
= alloc_pg_vec(req
, order
);
4104 if (unlikely(!pg_vec
))
4106 switch (po
->tp_version
) {
4108 /* Transmit path is not supported. We checked
4109 * it above but just being paranoid
4112 init_prb_bdqc(po
, rb
, pg_vec
, req_u
);
4121 if (unlikely(req
->tp_frame_nr
))
4127 /* Detach socket from network */
4128 spin_lock(&po
->bind_lock
);
4129 was_running
= po
->running
;
4133 __unregister_prot_hook(sk
, false);
4135 spin_unlock(&po
->bind_lock
);
4140 mutex_lock(&po
->pg_vec_lock
);
4141 if (closing
|| atomic_read(&po
->mapped
) == 0) {
4143 spin_lock_bh(&rb_queue
->lock
);
4144 swap(rb
->pg_vec
, pg_vec
);
4145 rb
->frame_max
= (req
->tp_frame_nr
- 1);
4147 rb
->frame_size
= req
->tp_frame_size
;
4148 spin_unlock_bh(&rb_queue
->lock
);
4150 swap(rb
->pg_vec_order
, order
);
4151 swap(rb
->pg_vec_len
, req
->tp_block_nr
);
4153 rb
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
4154 po
->prot_hook
.func
= (po
->rx_ring
.pg_vec
) ?
4155 tpacket_rcv
: packet_rcv
;
4156 skb_queue_purge(rb_queue
);
4157 if (atomic_read(&po
->mapped
))
4158 pr_err("packet_mmap: vma is busy: %d\n",
4159 atomic_read(&po
->mapped
));
4161 mutex_unlock(&po
->pg_vec_lock
);
4163 spin_lock(&po
->bind_lock
);
4166 register_prot_hook(sk
);
4168 spin_unlock(&po
->bind_lock
);
4169 if (closing
&& (po
->tp_version
> TPACKET_V2
)) {
4170 /* Because we don't support block-based V3 on tx-ring */
4172 prb_shutdown_retire_blk_timer(po
, rb_queue
);
4177 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
4182 static int packet_mmap(struct file
*file
, struct socket
*sock
,
4183 struct vm_area_struct
*vma
)
4185 struct sock
*sk
= sock
->sk
;
4186 struct packet_sock
*po
= pkt_sk(sk
);
4187 unsigned long size
, expected_size
;
4188 struct packet_ring_buffer
*rb
;
4189 unsigned long start
;
4196 mutex_lock(&po
->pg_vec_lock
);
4199 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
4201 expected_size
+= rb
->pg_vec_len
4207 if (expected_size
== 0)
4210 size
= vma
->vm_end
- vma
->vm_start
;
4211 if (size
!= expected_size
)
4214 start
= vma
->vm_start
;
4215 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
4216 if (rb
->pg_vec
== NULL
)
4219 for (i
= 0; i
< rb
->pg_vec_len
; i
++) {
4221 void *kaddr
= rb
->pg_vec
[i
].buffer
;
4224 for (pg_num
= 0; pg_num
< rb
->pg_vec_pages
; pg_num
++) {
4225 page
= pgv_to_page(kaddr
);
4226 err
= vm_insert_page(vma
, start
, page
);
4235 atomic_inc(&po
->mapped
);
4236 vma
->vm_ops
= &packet_mmap_ops
;
4240 mutex_unlock(&po
->pg_vec_lock
);
4244 static const struct proto_ops packet_ops_spkt
= {
4245 .family
= PF_PACKET
,
4246 .owner
= THIS_MODULE
,
4247 .release
= packet_release
,
4248 .bind
= packet_bind_spkt
,
4249 .connect
= sock_no_connect
,
4250 .socketpair
= sock_no_socketpair
,
4251 .accept
= sock_no_accept
,
4252 .getname
= packet_getname_spkt
,
4253 .poll
= datagram_poll
,
4254 .ioctl
= packet_ioctl
,
4255 .listen
= sock_no_listen
,
4256 .shutdown
= sock_no_shutdown
,
4257 .setsockopt
= sock_no_setsockopt
,
4258 .getsockopt
= sock_no_getsockopt
,
4259 .sendmsg
= packet_sendmsg_spkt
,
4260 .recvmsg
= packet_recvmsg
,
4261 .mmap
= sock_no_mmap
,
4262 .sendpage
= sock_no_sendpage
,
4265 static const struct proto_ops packet_ops
= {
4266 .family
= PF_PACKET
,
4267 .owner
= THIS_MODULE
,
4268 .release
= packet_release
,
4269 .bind
= packet_bind
,
4270 .connect
= sock_no_connect
,
4271 .socketpair
= sock_no_socketpair
,
4272 .accept
= sock_no_accept
,
4273 .getname
= packet_getname
,
4274 .poll
= packet_poll
,
4275 .ioctl
= packet_ioctl
,
4276 .listen
= sock_no_listen
,
4277 .shutdown
= sock_no_shutdown
,
4278 .setsockopt
= packet_setsockopt
,
4279 .getsockopt
= packet_getsockopt
,
4280 .sendmsg
= packet_sendmsg
,
4281 .recvmsg
= packet_recvmsg
,
4282 .mmap
= packet_mmap
,
4283 .sendpage
= sock_no_sendpage
,
4286 static const struct net_proto_family packet_family_ops
= {
4287 .family
= PF_PACKET
,
4288 .create
= packet_create
,
4289 .owner
= THIS_MODULE
,
4292 static struct notifier_block packet_netdev_notifier
= {
4293 .notifier_call
= packet_notifier
,
4296 #ifdef CONFIG_PROC_FS
4298 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
4301 struct net
*net
= seq_file_net(seq
);
4304 return seq_hlist_start_head_rcu(&net
->packet
.sklist
, *pos
);
4307 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
4309 struct net
*net
= seq_file_net(seq
);
4310 return seq_hlist_next_rcu(v
, &net
->packet
.sklist
, pos
);
4313 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
4319 static int packet_seq_show(struct seq_file
*seq
, void *v
)
4321 if (v
== SEQ_START_TOKEN
)
4322 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
4324 struct sock
*s
= sk_entry(v
);
4325 const struct packet_sock
*po
= pkt_sk(s
);
4328 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
4330 atomic_read(&s
->sk_refcnt
),
4335 atomic_read(&s
->sk_rmem_alloc
),
4336 from_kuid_munged(seq_user_ns(seq
), sock_i_uid(s
)),
4343 static const struct seq_operations packet_seq_ops
= {
4344 .start
= packet_seq_start
,
4345 .next
= packet_seq_next
,
4346 .stop
= packet_seq_stop
,
4347 .show
= packet_seq_show
,
4350 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
4352 return seq_open_net(inode
, file
, &packet_seq_ops
,
4353 sizeof(struct seq_net_private
));
4356 static const struct file_operations packet_seq_fops
= {
4357 .owner
= THIS_MODULE
,
4358 .open
= packet_seq_open
,
4360 .llseek
= seq_lseek
,
4361 .release
= seq_release_net
,
4366 static int __net_init
packet_net_init(struct net
*net
)
4368 mutex_init(&net
->packet
.sklist_lock
);
4369 INIT_HLIST_HEAD(&net
->packet
.sklist
);
4371 if (!proc_create("packet", 0, net
->proc_net
, &packet_seq_fops
))
4377 static void __net_exit
packet_net_exit(struct net
*net
)
4379 remove_proc_entry("packet", net
->proc_net
);
4382 static struct pernet_operations packet_net_ops
= {
4383 .init
= packet_net_init
,
4384 .exit
= packet_net_exit
,
4388 static void __exit
packet_exit(void)
4390 unregister_netdevice_notifier(&packet_netdev_notifier
);
4391 unregister_pernet_subsys(&packet_net_ops
);
4392 sock_unregister(PF_PACKET
);
4393 proto_unregister(&packet_proto
);
4396 static int __init
packet_init(void)
4398 int rc
= proto_register(&packet_proto
, 0);
4403 sock_register(&packet_family_ops
);
4404 register_pernet_subsys(&packet_net_ops
);
4405 register_netdevice_notifier(&packet_netdev_notifier
);
4410 module_init(packet_init
);
4411 module_exit(packet_exit
);
4412 MODULE_LICENSE("GPL");
4413 MODULE_ALIAS_NETPROTO(PF_PACKET
);