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>
93 #include <net/inet_common.h>
100 - if device has no dev->hard_header routine, it adds and removes ll header
101 inside itself. In this case ll header is invisible outside of device,
102 but higher levels still should reserve dev->hard_header_len.
103 Some devices are enough clever to reallocate skb, when header
104 will not fit to reserved space (tunnel), another ones are silly
106 - packet socket receives packets with pulled ll header,
107 so that SOCK_RAW should push it back.
112 Incoming, dev->hard_header!=NULL
113 mac_header -> ll header
116 Outgoing, dev->hard_header!=NULL
117 mac_header -> ll header
120 Incoming, dev->hard_header==NULL
121 mac_header -> UNKNOWN position. It is very likely, that it points to ll
122 header. PPP makes it, that is wrong, because introduce
123 assymetry between rx and tx paths.
126 Outgoing, dev->hard_header==NULL
127 mac_header -> data. ll header is still not built!
131 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
137 dev->hard_header != NULL
138 mac_header -> ll header
141 dev->hard_header == NULL (ll header is added by device, we cannot control it)
145 We should set nh.raw on output to correct posistion,
146 packet classifier depends on it.
149 /* Private packet socket structures. */
151 /* identical to struct packet_mreq except it has
152 * a longer address field.
154 struct packet_mreq_max
{
156 unsigned short mr_type
;
157 unsigned short mr_alen
;
158 unsigned char mr_address
[MAX_ADDR_LEN
];
161 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
162 int closing
, int tx_ring
);
165 #define V3_ALIGNMENT (8)
167 #define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
169 #define BLK_PLUS_PRIV(sz_of_priv) \
170 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
172 #define PGV_FROM_VMALLOC 1
174 #define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
175 #define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
176 #define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
177 #define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
178 #define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
179 #define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
180 #define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
183 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
);
185 static void *packet_previous_frame(struct packet_sock
*po
,
186 struct packet_ring_buffer
*rb
,
188 static void packet_increment_head(struct packet_ring_buffer
*buff
);
189 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*,
190 struct tpacket_block_desc
*);
191 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*,
192 struct packet_sock
*);
193 static void prb_retire_current_block(struct tpacket_kbdq_core
*,
194 struct packet_sock
*, unsigned int status
);
195 static int prb_queue_frozen(struct tpacket_kbdq_core
*);
196 static void prb_open_block(struct tpacket_kbdq_core
*,
197 struct tpacket_block_desc
*);
198 static void prb_retire_rx_blk_timer_expired(unsigned long);
199 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*);
200 static void prb_init_blk_timer(struct packet_sock
*,
201 struct tpacket_kbdq_core
*,
202 void (*func
) (unsigned long));
203 static void prb_fill_rxhash(struct tpacket_kbdq_core
*, struct tpacket3_hdr
*);
204 static void prb_clear_rxhash(struct tpacket_kbdq_core
*,
205 struct tpacket3_hdr
*);
206 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*,
207 struct tpacket3_hdr
*);
208 static void packet_flush_mclist(struct sock
*sk
);
210 struct packet_skb_cb
{
211 unsigned int origlen
;
213 struct sockaddr_pkt pkt
;
214 struct sockaddr_ll ll
;
218 #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
220 #define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
221 #define GET_PBLOCK_DESC(x, bid) \
222 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
223 #define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
224 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
225 #define GET_NEXT_PRB_BLK_NUM(x) \
226 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
227 ((x)->kactive_blk_num+1) : 0)
229 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
);
230 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
);
232 /* register_prot_hook must be invoked with the po->bind_lock held,
233 * or from a context in which asynchronous accesses to the packet
234 * socket is not possible (packet_create()).
236 static void register_prot_hook(struct sock
*sk
)
238 struct packet_sock
*po
= pkt_sk(sk
);
241 __fanout_link(sk
, po
);
243 dev_add_pack(&po
->prot_hook
);
249 /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
250 * held. If the sync parameter is true, we will temporarily drop
251 * the po->bind_lock and do a synchronize_net to make sure no
252 * asynchronous packet processing paths still refer to the elements
253 * of po->prot_hook. If the sync parameter is false, it is the
254 * callers responsibility to take care of this.
256 static void __unregister_prot_hook(struct sock
*sk
, bool sync
)
258 struct packet_sock
*po
= pkt_sk(sk
);
262 __fanout_unlink(sk
, po
);
264 __dev_remove_pack(&po
->prot_hook
);
268 spin_unlock(&po
->bind_lock
);
270 spin_lock(&po
->bind_lock
);
274 static void unregister_prot_hook(struct sock
*sk
, bool sync
)
276 struct packet_sock
*po
= pkt_sk(sk
);
279 __unregister_prot_hook(sk
, sync
);
282 static inline __pure
struct page
*pgv_to_page(void *addr
)
284 if (is_vmalloc_addr(addr
))
285 return vmalloc_to_page(addr
);
286 return virt_to_page(addr
);
289 static void __packet_set_status(struct packet_sock
*po
, void *frame
, int status
)
292 struct tpacket_hdr
*h1
;
293 struct tpacket2_hdr
*h2
;
298 switch (po
->tp_version
) {
300 h
.h1
->tp_status
= status
;
301 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
304 h
.h2
->tp_status
= status
;
305 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
309 WARN(1, "TPACKET version not supported.\n");
316 static int __packet_get_status(struct packet_sock
*po
, void *frame
)
319 struct tpacket_hdr
*h1
;
320 struct tpacket2_hdr
*h2
;
327 switch (po
->tp_version
) {
329 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
330 return h
.h1
->tp_status
;
332 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
333 return h
.h2
->tp_status
;
336 WARN(1, "TPACKET version not supported.\n");
342 static void *packet_lookup_frame(struct packet_sock
*po
,
343 struct packet_ring_buffer
*rb
,
344 unsigned int position
,
347 unsigned int pg_vec_pos
, frame_offset
;
349 struct tpacket_hdr
*h1
;
350 struct tpacket2_hdr
*h2
;
354 pg_vec_pos
= position
/ rb
->frames_per_block
;
355 frame_offset
= position
% rb
->frames_per_block
;
357 h
.raw
= rb
->pg_vec
[pg_vec_pos
].buffer
+
358 (frame_offset
* rb
->frame_size
);
360 if (status
!= __packet_get_status(po
, h
.raw
))
366 static void *packet_current_frame(struct packet_sock
*po
,
367 struct packet_ring_buffer
*rb
,
370 return packet_lookup_frame(po
, rb
, rb
->head
, status
);
373 static void prb_del_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
375 del_timer_sync(&pkc
->retire_blk_timer
);
378 static void prb_shutdown_retire_blk_timer(struct packet_sock
*po
,
380 struct sk_buff_head
*rb_queue
)
382 struct tpacket_kbdq_core
*pkc
;
384 pkc
= tx_ring
? &po
->tx_ring
.prb_bdqc
: &po
->rx_ring
.prb_bdqc
;
386 spin_lock(&rb_queue
->lock
);
387 pkc
->delete_blk_timer
= 1;
388 spin_unlock(&rb_queue
->lock
);
390 prb_del_retire_blk_timer(pkc
);
393 static void prb_init_blk_timer(struct packet_sock
*po
,
394 struct tpacket_kbdq_core
*pkc
,
395 void (*func
) (unsigned long))
397 init_timer(&pkc
->retire_blk_timer
);
398 pkc
->retire_blk_timer
.data
= (long)po
;
399 pkc
->retire_blk_timer
.function
= func
;
400 pkc
->retire_blk_timer
.expires
= jiffies
;
403 static void prb_setup_retire_blk_timer(struct packet_sock
*po
, int tx_ring
)
405 struct tpacket_kbdq_core
*pkc
;
410 pkc
= tx_ring
? &po
->tx_ring
.prb_bdqc
: &po
->rx_ring
.prb_bdqc
;
411 prb_init_blk_timer(po
, pkc
, prb_retire_rx_blk_timer_expired
);
414 static int prb_calc_retire_blk_tmo(struct packet_sock
*po
,
415 int blk_size_in_bytes
)
417 struct net_device
*dev
;
418 unsigned int mbits
= 0, msec
= 0, div
= 0, tmo
= 0;
419 struct ethtool_cmd ecmd
;
424 dev
= __dev_get_by_index(sock_net(&po
->sk
), po
->ifindex
);
425 if (unlikely(!dev
)) {
427 return DEFAULT_PRB_RETIRE_TOV
;
429 err
= __ethtool_get_settings(dev
, &ecmd
);
430 speed
= ethtool_cmd_speed(&ecmd
);
434 * If the link speed is so slow you don't really
435 * need to worry about perf anyways
437 if (speed
< SPEED_1000
|| speed
== SPEED_UNKNOWN
) {
438 return DEFAULT_PRB_RETIRE_TOV
;
445 mbits
= (blk_size_in_bytes
* 8) / (1024 * 1024);
457 static void prb_init_ft_ops(struct tpacket_kbdq_core
*p1
,
458 union tpacket_req_u
*req_u
)
460 p1
->feature_req_word
= req_u
->req3
.tp_feature_req_word
;
463 static void init_prb_bdqc(struct packet_sock
*po
,
464 struct packet_ring_buffer
*rb
,
466 union tpacket_req_u
*req_u
, int tx_ring
)
468 struct tpacket_kbdq_core
*p1
= &rb
->prb_bdqc
;
469 struct tpacket_block_desc
*pbd
;
471 memset(p1
, 0x0, sizeof(*p1
));
473 p1
->knxt_seq_num
= 1;
475 pbd
= (struct tpacket_block_desc
*)pg_vec
[0].buffer
;
476 p1
->pkblk_start
= pg_vec
[0].buffer
;
477 p1
->kblk_size
= req_u
->req3
.tp_block_size
;
478 p1
->knum_blocks
= req_u
->req3
.tp_block_nr
;
479 p1
->hdrlen
= po
->tp_hdrlen
;
480 p1
->version
= po
->tp_version
;
481 p1
->last_kactive_blk_num
= 0;
482 po
->stats_u
.stats3
.tp_freeze_q_cnt
= 0;
483 if (req_u
->req3
.tp_retire_blk_tov
)
484 p1
->retire_blk_tov
= req_u
->req3
.tp_retire_blk_tov
;
486 p1
->retire_blk_tov
= prb_calc_retire_blk_tmo(po
,
487 req_u
->req3
.tp_block_size
);
488 p1
->tov_in_jiffies
= msecs_to_jiffies(p1
->retire_blk_tov
);
489 p1
->blk_sizeof_priv
= req_u
->req3
.tp_sizeof_priv
;
491 prb_init_ft_ops(p1
, req_u
);
492 prb_setup_retire_blk_timer(po
, tx_ring
);
493 prb_open_block(p1
, pbd
);
496 /* Do NOT update the last_blk_num first.
497 * Assumes sk_buff_head lock is held.
499 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
501 mod_timer(&pkc
->retire_blk_timer
,
502 jiffies
+ pkc
->tov_in_jiffies
);
503 pkc
->last_kactive_blk_num
= pkc
->kactive_blk_num
;
508 * 1) We refresh the timer only when we open a block.
509 * By doing this we don't waste cycles refreshing the timer
510 * on packet-by-packet basis.
512 * With a 1MB block-size, on a 1Gbps line, it will take
513 * i) ~8 ms to fill a block + ii) memcpy etc.
514 * In this cut we are not accounting for the memcpy time.
516 * So, if the user sets the 'tmo' to 10ms then the timer
517 * will never fire while the block is still getting filled
518 * (which is what we want). However, the user could choose
519 * to close a block early and that's fine.
521 * But when the timer does fire, we check whether or not to refresh it.
522 * Since the tmo granularity is in msecs, it is not too expensive
523 * to refresh the timer, lets say every '8' msecs.
524 * Either the user can set the 'tmo' or we can derive it based on
525 * a) line-speed and b) block-size.
526 * prb_calc_retire_blk_tmo() calculates the tmo.
529 static void prb_retire_rx_blk_timer_expired(unsigned long data
)
531 struct packet_sock
*po
= (struct packet_sock
*)data
;
532 struct tpacket_kbdq_core
*pkc
= &po
->rx_ring
.prb_bdqc
;
534 struct tpacket_block_desc
*pbd
;
536 spin_lock(&po
->sk
.sk_receive_queue
.lock
);
538 frozen
= prb_queue_frozen(pkc
);
539 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
541 if (unlikely(pkc
->delete_blk_timer
))
544 /* We only need to plug the race when the block is partially filled.
546 * lock(); increment BLOCK_NUM_PKTS; unlock()
547 * copy_bits() is in progress ...
548 * timer fires on other cpu:
549 * we can't retire the current block because copy_bits
553 if (BLOCK_NUM_PKTS(pbd
)) {
554 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
555 /* Waiting for skb_copy_bits to finish... */
560 if (pkc
->last_kactive_blk_num
== pkc
->kactive_blk_num
) {
562 prb_retire_current_block(pkc
, po
, TP_STATUS_BLK_TMO
);
563 if (!prb_dispatch_next_block(pkc
, po
))
568 /* Case 1. Queue was frozen because user-space was
571 if (prb_curr_blk_in_use(pkc
, pbd
)) {
573 * Ok, user-space is still behind.
574 * So just refresh the timer.
578 /* Case 2. queue was frozen,user-space caught up,
579 * now the link went idle && the timer fired.
580 * We don't have a block to close.So we open this
581 * block and restart the timer.
582 * opening a block thaws the queue,restarts timer
583 * Thawing/timer-refresh is a side effect.
585 prb_open_block(pkc
, pbd
);
592 _prb_refresh_rx_retire_blk_timer(pkc
);
595 spin_unlock(&po
->sk
.sk_receive_queue
.lock
);
598 static void prb_flush_block(struct tpacket_kbdq_core
*pkc1
,
599 struct tpacket_block_desc
*pbd1
, __u32 status
)
601 /* Flush everything minus the block header */
603 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
608 /* Skip the block header(we know header WILL fit in 4K) */
611 end
= (u8
*)PAGE_ALIGN((unsigned long)pkc1
->pkblk_end
);
612 for (; start
< end
; start
+= PAGE_SIZE
)
613 flush_dcache_page(pgv_to_page(start
));
618 /* Now update the block status. */
620 BLOCK_STATUS(pbd1
) = status
;
622 /* Flush the block header */
624 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
626 flush_dcache_page(pgv_to_page(start
));
636 * 2) Increment active_blk_num
638 * Note:We DONT refresh the timer on purpose.
639 * Because almost always the next block will be opened.
641 static void prb_close_block(struct tpacket_kbdq_core
*pkc1
,
642 struct tpacket_block_desc
*pbd1
,
643 struct packet_sock
*po
, unsigned int stat
)
645 __u32 status
= TP_STATUS_USER
| stat
;
647 struct tpacket3_hdr
*last_pkt
;
648 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
650 if (po
->stats
.tp_drops
)
651 status
|= TP_STATUS_LOSING
;
653 last_pkt
= (struct tpacket3_hdr
*)pkc1
->prev
;
654 last_pkt
->tp_next_offset
= 0;
656 /* Get the ts of the last pkt */
657 if (BLOCK_NUM_PKTS(pbd1
)) {
658 h1
->ts_last_pkt
.ts_sec
= last_pkt
->tp_sec
;
659 h1
->ts_last_pkt
.ts_nsec
= last_pkt
->tp_nsec
;
661 /* Ok, we tmo'd - so get the current time */
664 h1
->ts_last_pkt
.ts_sec
= ts
.tv_sec
;
665 h1
->ts_last_pkt
.ts_nsec
= ts
.tv_nsec
;
670 /* Flush the block */
671 prb_flush_block(pkc1
, pbd1
, status
);
673 pkc1
->kactive_blk_num
= GET_NEXT_PRB_BLK_NUM(pkc1
);
676 static void prb_thaw_queue(struct tpacket_kbdq_core
*pkc
)
678 pkc
->reset_pending_on_curr_blk
= 0;
682 * Side effect of opening a block:
684 * 1) prb_queue is thawed.
685 * 2) retire_blk_timer is refreshed.
688 static void prb_open_block(struct tpacket_kbdq_core
*pkc1
,
689 struct tpacket_block_desc
*pbd1
)
692 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
696 if (likely(TP_STATUS_KERNEL
== BLOCK_STATUS(pbd1
))) {
698 /* We could have just memset this but we will lose the
699 * flexibility of making the priv area sticky
701 BLOCK_SNUM(pbd1
) = pkc1
->knxt_seq_num
++;
702 BLOCK_NUM_PKTS(pbd1
) = 0;
703 BLOCK_LEN(pbd1
) = BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
705 h1
->ts_first_pkt
.ts_sec
= ts
.tv_sec
;
706 h1
->ts_first_pkt
.ts_nsec
= ts
.tv_nsec
;
707 pkc1
->pkblk_start
= (char *)pbd1
;
708 pkc1
->nxt_offset
= pkc1
->pkblk_start
+ BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
709 BLOCK_O2FP(pbd1
) = (__u32
)BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
710 BLOCK_O2PRIV(pbd1
) = BLK_HDR_LEN
;
711 pbd1
->version
= pkc1
->version
;
712 pkc1
->prev
= pkc1
->nxt_offset
;
713 pkc1
->pkblk_end
= pkc1
->pkblk_start
+ pkc1
->kblk_size
;
714 prb_thaw_queue(pkc1
);
715 _prb_refresh_rx_retire_blk_timer(pkc1
);
722 WARN(1, "ERROR block:%p is NOT FREE status:%d kactive_blk_num:%d\n",
723 pbd1
, BLOCK_STATUS(pbd1
), pkc1
->kactive_blk_num
);
729 * Queue freeze logic:
730 * 1) Assume tp_block_nr = 8 blocks.
731 * 2) At time 't0', user opens Rx ring.
732 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
733 * 4) user-space is either sleeping or processing block '0'.
734 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
735 * it will close block-7,loop around and try to fill block '0'.
737 * __packet_lookup_frame_in_block
738 * prb_retire_current_block()
739 * prb_dispatch_next_block()
740 * |->(BLOCK_STATUS == USER) evaluates to true
741 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
742 * 6) Now there are two cases:
743 * 6.1) Link goes idle right after the queue is frozen.
744 * But remember, the last open_block() refreshed the timer.
745 * When this timer expires,it will refresh itself so that we can
746 * re-open block-0 in near future.
747 * 6.2) Link is busy and keeps on receiving packets. This is a simple
748 * case and __packet_lookup_frame_in_block will check if block-0
749 * is free and can now be re-used.
751 static void prb_freeze_queue(struct tpacket_kbdq_core
*pkc
,
752 struct packet_sock
*po
)
754 pkc
->reset_pending_on_curr_blk
= 1;
755 po
->stats_u
.stats3
.tp_freeze_q_cnt
++;
758 #define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
761 * If the next block is free then we will dispatch it
762 * and return a good offset.
763 * Else, we will freeze the queue.
764 * So, caller must check the return value.
766 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*pkc
,
767 struct packet_sock
*po
)
769 struct tpacket_block_desc
*pbd
;
773 /* 1. Get current block num */
774 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
776 /* 2. If this block is currently in_use then freeze the queue */
777 if (TP_STATUS_USER
& BLOCK_STATUS(pbd
)) {
778 prb_freeze_queue(pkc
, po
);
784 * open this block and return the offset where the first packet
785 * needs to get stored.
787 prb_open_block(pkc
, pbd
);
788 return (void *)pkc
->nxt_offset
;
791 static void prb_retire_current_block(struct tpacket_kbdq_core
*pkc
,
792 struct packet_sock
*po
, unsigned int status
)
794 struct tpacket_block_desc
*pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
796 /* retire/close the current block */
797 if (likely(TP_STATUS_KERNEL
== BLOCK_STATUS(pbd
))) {
799 * Plug the case where copy_bits() is in progress on
800 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
801 * have space to copy the pkt in the current block and
802 * called prb_retire_current_block()
804 * We don't need to worry about the TMO case because
805 * the timer-handler already handled this case.
807 if (!(status
& TP_STATUS_BLK_TMO
)) {
808 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
809 /* Waiting for skb_copy_bits to finish... */
813 prb_close_block(pkc
, pbd
, po
, status
);
817 WARN(1, "ERROR-pbd[%d]:%p\n", pkc
->kactive_blk_num
, pbd
);
822 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*pkc
,
823 struct tpacket_block_desc
*pbd
)
825 return TP_STATUS_USER
& BLOCK_STATUS(pbd
);
828 static int prb_queue_frozen(struct tpacket_kbdq_core
*pkc
)
830 return pkc
->reset_pending_on_curr_blk
;
833 static void prb_clear_blk_fill_status(struct packet_ring_buffer
*rb
)
835 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
836 atomic_dec(&pkc
->blk_fill_in_prog
);
839 static void prb_fill_rxhash(struct tpacket_kbdq_core
*pkc
,
840 struct tpacket3_hdr
*ppd
)
842 ppd
->hv1
.tp_rxhash
= skb_get_rxhash(pkc
->skb
);
845 static void prb_clear_rxhash(struct tpacket_kbdq_core
*pkc
,
846 struct tpacket3_hdr
*ppd
)
848 ppd
->hv1
.tp_rxhash
= 0;
851 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*pkc
,
852 struct tpacket3_hdr
*ppd
)
854 if (vlan_tx_tag_present(pkc
->skb
)) {
855 ppd
->hv1
.tp_vlan_tci
= vlan_tx_tag_get(pkc
->skb
);
856 ppd
->tp_status
= TP_STATUS_VLAN_VALID
;
858 ppd
->hv1
.tp_vlan_tci
= 0;
859 ppd
->tp_status
= TP_STATUS_AVAILABLE
;
863 static void prb_run_all_ft_ops(struct tpacket_kbdq_core
*pkc
,
864 struct tpacket3_hdr
*ppd
)
866 prb_fill_vlan_info(pkc
, ppd
);
868 if (pkc
->feature_req_word
& TP_FT_REQ_FILL_RXHASH
)
869 prb_fill_rxhash(pkc
, ppd
);
871 prb_clear_rxhash(pkc
, ppd
);
874 static void prb_fill_curr_block(char *curr
,
875 struct tpacket_kbdq_core
*pkc
,
876 struct tpacket_block_desc
*pbd
,
879 struct tpacket3_hdr
*ppd
;
881 ppd
= (struct tpacket3_hdr
*)curr
;
882 ppd
->tp_next_offset
= TOTAL_PKT_LEN_INCL_ALIGN(len
);
884 pkc
->nxt_offset
+= TOTAL_PKT_LEN_INCL_ALIGN(len
);
885 BLOCK_LEN(pbd
) += TOTAL_PKT_LEN_INCL_ALIGN(len
);
886 BLOCK_NUM_PKTS(pbd
) += 1;
887 atomic_inc(&pkc
->blk_fill_in_prog
);
888 prb_run_all_ft_ops(pkc
, ppd
);
891 /* Assumes caller has the sk->rx_queue.lock */
892 static void *__packet_lookup_frame_in_block(struct packet_sock
*po
,
898 struct tpacket_kbdq_core
*pkc
;
899 struct tpacket_block_desc
*pbd
;
902 pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
903 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
905 /* Queue is frozen when user space is lagging behind */
906 if (prb_queue_frozen(pkc
)) {
908 * Check if that last block which caused the queue to freeze,
909 * is still in_use by user-space.
911 if (prb_curr_blk_in_use(pkc
, pbd
)) {
912 /* Can't record this packet */
916 * Ok, the block was released by user-space.
917 * Now let's open that block.
918 * opening a block also thaws the queue.
919 * Thawing is a side effect.
921 prb_open_block(pkc
, pbd
);
926 curr
= pkc
->nxt_offset
;
928 end
= (char *)pbd
+ pkc
->kblk_size
;
930 /* first try the current block */
931 if (curr
+TOTAL_PKT_LEN_INCL_ALIGN(len
) < end
) {
932 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
936 /* Ok, close the current block */
937 prb_retire_current_block(pkc
, po
, 0);
939 /* Now, try to dispatch the next block */
940 curr
= (char *)prb_dispatch_next_block(pkc
, po
);
942 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
943 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
948 * No free blocks are available.user_space hasn't caught up yet.
949 * Queue was just frozen and now this packet will get dropped.
954 static void *packet_current_rx_frame(struct packet_sock
*po
,
956 int status
, unsigned int len
)
959 switch (po
->tp_version
) {
962 curr
= packet_lookup_frame(po
, &po
->rx_ring
,
963 po
->rx_ring
.head
, status
);
966 return __packet_lookup_frame_in_block(po
, skb
, status
, len
);
968 WARN(1, "TPACKET version not supported\n");
974 static void *prb_lookup_block(struct packet_sock
*po
,
975 struct packet_ring_buffer
*rb
,
976 unsigned int previous
,
979 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
980 struct tpacket_block_desc
*pbd
= GET_PBLOCK_DESC(pkc
, previous
);
982 if (status
!= BLOCK_STATUS(pbd
))
987 static int prb_previous_blk_num(struct packet_ring_buffer
*rb
)
990 if (rb
->prb_bdqc
.kactive_blk_num
)
991 prev
= rb
->prb_bdqc
.kactive_blk_num
-1;
993 prev
= rb
->prb_bdqc
.knum_blocks
-1;
997 /* Assumes caller has held the rx_queue.lock */
998 static void *__prb_previous_block(struct packet_sock
*po
,
999 struct packet_ring_buffer
*rb
,
1002 unsigned int previous
= prb_previous_blk_num(rb
);
1003 return prb_lookup_block(po
, rb
, previous
, status
);
1006 static void *packet_previous_rx_frame(struct packet_sock
*po
,
1007 struct packet_ring_buffer
*rb
,
1010 if (po
->tp_version
<= TPACKET_V2
)
1011 return packet_previous_frame(po
, rb
, status
);
1013 return __prb_previous_block(po
, rb
, status
);
1016 static void packet_increment_rx_head(struct packet_sock
*po
,
1017 struct packet_ring_buffer
*rb
)
1019 switch (po
->tp_version
) {
1022 return packet_increment_head(rb
);
1025 WARN(1, "TPACKET version not supported.\n");
1031 static void *packet_previous_frame(struct packet_sock
*po
,
1032 struct packet_ring_buffer
*rb
,
1035 unsigned int previous
= rb
->head
? rb
->head
- 1 : rb
->frame_max
;
1036 return packet_lookup_frame(po
, rb
, previous
, status
);
1039 static void packet_increment_head(struct packet_ring_buffer
*buff
)
1041 buff
->head
= buff
->head
!= buff
->frame_max
? buff
->head
+1 : 0;
1044 static void packet_sock_destruct(struct sock
*sk
)
1046 skb_queue_purge(&sk
->sk_error_queue
);
1048 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
1049 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
1051 if (!sock_flag(sk
, SOCK_DEAD
)) {
1052 pr_err("Attempt to release alive packet socket: %p\n", sk
);
1056 sk_refcnt_debug_dec(sk
);
1059 static int fanout_rr_next(struct packet_fanout
*f
, unsigned int num
)
1061 int x
= atomic_read(&f
->rr_cur
) + 1;
1069 static struct sock
*fanout_demux_hash(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
1071 u32 idx
, hash
= skb
->rxhash
;
1073 idx
= ((u64
)hash
* num
) >> 32;
1078 static struct sock
*fanout_demux_lb(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
1082 cur
= atomic_read(&f
->rr_cur
);
1083 while ((old
= atomic_cmpxchg(&f
->rr_cur
, cur
,
1084 fanout_rr_next(f
, num
))) != cur
)
1089 static struct sock
*fanout_demux_cpu(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
1091 unsigned int cpu
= smp_processor_id();
1093 return f
->arr
[cpu
% num
];
1096 static int packet_rcv_fanout(struct sk_buff
*skb
, struct net_device
*dev
,
1097 struct packet_type
*pt
, struct net_device
*orig_dev
)
1099 struct packet_fanout
*f
= pt
->af_packet_priv
;
1100 unsigned int num
= f
->num_members
;
1101 struct packet_sock
*po
;
1104 if (!net_eq(dev_net(dev
), read_pnet(&f
->net
)) ||
1111 case PACKET_FANOUT_HASH
:
1114 skb
= ip_check_defrag(skb
, IP_DEFRAG_AF_PACKET
);
1118 skb_get_rxhash(skb
);
1119 sk
= fanout_demux_hash(f
, skb
, num
);
1121 case PACKET_FANOUT_LB
:
1122 sk
= fanout_demux_lb(f
, skb
, num
);
1124 case PACKET_FANOUT_CPU
:
1125 sk
= fanout_demux_cpu(f
, skb
, num
);
1131 return po
->prot_hook
.func(skb
, dev
, &po
->prot_hook
, orig_dev
);
1134 DEFINE_MUTEX(fanout_mutex
);
1135 EXPORT_SYMBOL_GPL(fanout_mutex
);
1136 static LIST_HEAD(fanout_list
);
1138 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
)
1140 struct packet_fanout
*f
= po
->fanout
;
1142 spin_lock(&f
->lock
);
1143 f
->arr
[f
->num_members
] = sk
;
1146 spin_unlock(&f
->lock
);
1149 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
)
1151 struct packet_fanout
*f
= po
->fanout
;
1154 spin_lock(&f
->lock
);
1155 for (i
= 0; i
< f
->num_members
; i
++) {
1156 if (f
->arr
[i
] == sk
)
1159 BUG_ON(i
>= f
->num_members
);
1160 f
->arr
[i
] = f
->arr
[f
->num_members
- 1];
1162 spin_unlock(&f
->lock
);
1165 static bool match_fanout_group(struct packet_type
*ptype
, struct sock
* sk
)
1167 if (ptype
->af_packet_priv
== (void*)((struct packet_sock
*)sk
)->fanout
)
1173 static int fanout_add(struct sock
*sk
, u16 id
, u16 type_flags
)
1175 struct packet_sock
*po
= pkt_sk(sk
);
1176 struct packet_fanout
*f
, *match
;
1177 u8 type
= type_flags
& 0xff;
1178 u8 defrag
= (type_flags
& PACKET_FANOUT_FLAG_DEFRAG
) ? 1 : 0;
1182 case PACKET_FANOUT_HASH
:
1183 case PACKET_FANOUT_LB
:
1184 case PACKET_FANOUT_CPU
:
1196 mutex_lock(&fanout_mutex
);
1198 list_for_each_entry(f
, &fanout_list
, list
) {
1200 read_pnet(&f
->net
) == sock_net(sk
)) {
1206 if (match
&& match
->defrag
!= defrag
)
1210 match
= kzalloc(sizeof(*match
), GFP_KERNEL
);
1213 write_pnet(&match
->net
, sock_net(sk
));
1216 match
->defrag
= defrag
;
1217 atomic_set(&match
->rr_cur
, 0);
1218 INIT_LIST_HEAD(&match
->list
);
1219 spin_lock_init(&match
->lock
);
1220 atomic_set(&match
->sk_ref
, 0);
1221 match
->prot_hook
.type
= po
->prot_hook
.type
;
1222 match
->prot_hook
.dev
= po
->prot_hook
.dev
;
1223 match
->prot_hook
.func
= packet_rcv_fanout
;
1224 match
->prot_hook
.af_packet_priv
= match
;
1225 match
->prot_hook
.id_match
= match_fanout_group
;
1226 dev_add_pack(&match
->prot_hook
);
1227 list_add(&match
->list
, &fanout_list
);
1230 if (match
->type
== type
&&
1231 match
->prot_hook
.type
== po
->prot_hook
.type
&&
1232 match
->prot_hook
.dev
== po
->prot_hook
.dev
) {
1234 if (atomic_read(&match
->sk_ref
) < PACKET_FANOUT_MAX
) {
1235 __dev_remove_pack(&po
->prot_hook
);
1237 atomic_inc(&match
->sk_ref
);
1238 __fanout_link(sk
, po
);
1243 mutex_unlock(&fanout_mutex
);
1247 static void fanout_release(struct sock
*sk
)
1249 struct packet_sock
*po
= pkt_sk(sk
);
1250 struct packet_fanout
*f
;
1256 mutex_lock(&fanout_mutex
);
1259 if (atomic_dec_and_test(&f
->sk_ref
)) {
1261 dev_remove_pack(&f
->prot_hook
);
1264 mutex_unlock(&fanout_mutex
);
1267 static const struct proto_ops packet_ops
;
1269 static const struct proto_ops packet_ops_spkt
;
1271 static int packet_rcv_spkt(struct sk_buff
*skb
, struct net_device
*dev
,
1272 struct packet_type
*pt
, struct net_device
*orig_dev
)
1275 struct sockaddr_pkt
*spkt
;
1278 * When we registered the protocol we saved the socket in the data
1279 * field for just this event.
1282 sk
= pt
->af_packet_priv
;
1285 * Yank back the headers [hope the device set this
1286 * right or kerboom...]
1288 * Incoming packets have ll header pulled,
1291 * For outgoing ones skb->data == skb_mac_header(skb)
1292 * so that this procedure is noop.
1295 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1298 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1301 skb
= skb_share_check(skb
, GFP_ATOMIC
);
1305 /* drop any routing info */
1308 /* drop conntrack reference */
1311 spkt
= &PACKET_SKB_CB(skb
)->sa
.pkt
;
1313 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1316 * The SOCK_PACKET socket receives _all_ frames.
1319 spkt
->spkt_family
= dev
->type
;
1320 strlcpy(spkt
->spkt_device
, dev
->name
, sizeof(spkt
->spkt_device
));
1321 spkt
->spkt_protocol
= skb
->protocol
;
1324 * Charge the memory to the socket. This is done specifically
1325 * to prevent sockets using all the memory up.
1328 if (sock_queue_rcv_skb(sk
, skb
) == 0)
1339 * Output a raw packet to a device layer. This bypasses all the other
1340 * protocol layers and you must therefore supply it with a complete frame
1343 static int packet_sendmsg_spkt(struct kiocb
*iocb
, struct socket
*sock
,
1344 struct msghdr
*msg
, size_t len
)
1346 struct sock
*sk
= sock
->sk
;
1347 struct sockaddr_pkt
*saddr
= (struct sockaddr_pkt
*)msg
->msg_name
;
1348 struct sk_buff
*skb
= NULL
;
1349 struct net_device
*dev
;
1355 * Get and verify the address.
1359 if (msg
->msg_namelen
< sizeof(struct sockaddr
))
1361 if (msg
->msg_namelen
== sizeof(struct sockaddr_pkt
))
1362 proto
= saddr
->spkt_protocol
;
1364 return -ENOTCONN
; /* SOCK_PACKET must be sent giving an address */
1367 * Find the device first to size check it
1370 saddr
->spkt_device
[sizeof(saddr
->spkt_device
) - 1] = 0;
1373 dev
= dev_get_by_name_rcu(sock_net(sk
), saddr
->spkt_device
);
1379 if (!(dev
->flags
& IFF_UP
))
1383 * You may not queue a frame bigger than the mtu. This is the lowest level
1384 * raw protocol and you must do your own fragmentation at this level.
1387 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
1388 if (!netif_supports_nofcs(dev
)) {
1389 err
= -EPROTONOSUPPORT
;
1392 extra_len
= 4; /* We're doing our own CRC */
1396 if (len
> dev
->mtu
+ dev
->hard_header_len
+ VLAN_HLEN
+ extra_len
)
1400 size_t reserved
= LL_RESERVED_SPACE(dev
);
1401 int tlen
= dev
->needed_tailroom
;
1402 unsigned int hhlen
= dev
->header_ops
? dev
->hard_header_len
: 0;
1405 skb
= sock_wmalloc(sk
, len
+ reserved
+ tlen
, 0, GFP_KERNEL
);
1408 /* FIXME: Save some space for broken drivers that write a hard
1409 * header at transmission time by themselves. PPP is the notable
1410 * one here. This should really be fixed at the driver level.
1412 skb_reserve(skb
, reserved
);
1413 skb_reset_network_header(skb
);
1415 /* Try to align data part correctly */
1420 skb_reset_network_header(skb
);
1422 err
= memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
);
1428 if (len
> (dev
->mtu
+ dev
->hard_header_len
+ extra_len
)) {
1429 /* Earlier code assumed this would be a VLAN pkt,
1430 * double-check this now that we have the actual
1433 struct ethhdr
*ehdr
;
1434 skb_reset_mac_header(skb
);
1435 ehdr
= eth_hdr(skb
);
1436 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
1442 skb
->protocol
= proto
;
1444 skb
->priority
= sk
->sk_priority
;
1445 skb
->mark
= sk
->sk_mark
;
1446 err
= sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
1450 if (unlikely(extra_len
== 4))
1453 dev_queue_xmit(skb
);
1464 static unsigned int run_filter(const struct sk_buff
*skb
,
1465 const struct sock
*sk
,
1468 struct sk_filter
*filter
;
1471 filter
= rcu_dereference(sk
->sk_filter
);
1473 res
= SK_RUN_FILTER(filter
, skb
);
1480 * This function makes lazy skb cloning in hope that most of packets
1481 * are discarded by BPF.
1483 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1484 * and skb->cb are mangled. It works because (and until) packets
1485 * falling here are owned by current CPU. Output packets are cloned
1486 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1487 * sequencially, so that if we return skb to original state on exit,
1488 * we will not harm anyone.
1491 static int packet_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1492 struct packet_type
*pt
, struct net_device
*orig_dev
)
1495 struct sockaddr_ll
*sll
;
1496 struct packet_sock
*po
;
1497 u8
*skb_head
= skb
->data
;
1498 int skb_len
= skb
->len
;
1499 unsigned int snaplen
, res
;
1501 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1504 sk
= pt
->af_packet_priv
;
1507 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1512 if (dev
->header_ops
) {
1513 /* The device has an explicit notion of ll header,
1514 * exported to higher levels.
1516 * Otherwise, the device hides details of its frame
1517 * structure, so that corresponding packet head is
1518 * never delivered to user.
1520 if (sk
->sk_type
!= SOCK_DGRAM
)
1521 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1522 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1523 /* Special case: outgoing packets have ll header at head */
1524 skb_pull(skb
, skb_network_offset(skb
));
1530 res
= run_filter(skb
, sk
, snaplen
);
1532 goto drop_n_restore
;
1536 if (atomic_read(&sk
->sk_rmem_alloc
) >= sk
->sk_rcvbuf
)
1539 if (skb_shared(skb
)) {
1540 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
1544 if (skb_head
!= skb
->data
) {
1545 skb
->data
= skb_head
;
1552 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb
)) + MAX_ADDR_LEN
- 8 >
1555 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
1556 sll
->sll_family
= AF_PACKET
;
1557 sll
->sll_hatype
= dev
->type
;
1558 sll
->sll_protocol
= skb
->protocol
;
1559 sll
->sll_pkttype
= skb
->pkt_type
;
1560 if (unlikely(po
->origdev
))
1561 sll
->sll_ifindex
= orig_dev
->ifindex
;
1563 sll
->sll_ifindex
= dev
->ifindex
;
1565 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1567 PACKET_SKB_CB(skb
)->origlen
= skb
->len
;
1569 if (pskb_trim(skb
, snaplen
))
1572 skb_set_owner_r(skb
, sk
);
1576 /* drop conntrack reference */
1579 spin_lock(&sk
->sk_receive_queue
.lock
);
1580 po
->stats
.tp_packets
++;
1581 skb
->dropcount
= atomic_read(&sk
->sk_drops
);
1582 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1583 spin_unlock(&sk
->sk_receive_queue
.lock
);
1584 sk
->sk_data_ready(sk
, skb
->len
);
1588 spin_lock(&sk
->sk_receive_queue
.lock
);
1589 po
->stats
.tp_drops
++;
1590 atomic_inc(&sk
->sk_drops
);
1591 spin_unlock(&sk
->sk_receive_queue
.lock
);
1594 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1595 skb
->data
= skb_head
;
1603 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1604 struct packet_type
*pt
, struct net_device
*orig_dev
)
1607 struct packet_sock
*po
;
1608 struct sockaddr_ll
*sll
;
1610 struct tpacket_hdr
*h1
;
1611 struct tpacket2_hdr
*h2
;
1612 struct tpacket3_hdr
*h3
;
1615 u8
*skb_head
= skb
->data
;
1616 int skb_len
= skb
->len
;
1617 unsigned int snaplen
, res
;
1618 unsigned long status
= TP_STATUS_USER
;
1619 unsigned short macoff
, netoff
, hdrlen
;
1620 struct sk_buff
*copy_skb
= NULL
;
1623 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
1625 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1628 sk
= pt
->af_packet_priv
;
1631 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1634 if (dev
->header_ops
) {
1635 if (sk
->sk_type
!= SOCK_DGRAM
)
1636 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1637 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1638 /* Special case: outgoing packets have ll header at head */
1639 skb_pull(skb
, skb_network_offset(skb
));
1643 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
1644 status
|= TP_STATUS_CSUMNOTREADY
;
1648 res
= run_filter(skb
, sk
, snaplen
);
1650 goto drop_n_restore
;
1654 if (sk
->sk_type
== SOCK_DGRAM
) {
1655 macoff
= netoff
= TPACKET_ALIGN(po
->tp_hdrlen
) + 16 +
1658 unsigned int maclen
= skb_network_offset(skb
);
1659 netoff
= TPACKET_ALIGN(po
->tp_hdrlen
+
1660 (maclen
< 16 ? 16 : maclen
)) +
1662 macoff
= netoff
- maclen
;
1664 if (po
->tp_version
<= TPACKET_V2
) {
1665 if (macoff
+ snaplen
> po
->rx_ring
.frame_size
) {
1666 if (po
->copy_thresh
&&
1667 atomic_read(&sk
->sk_rmem_alloc
) < sk
->sk_rcvbuf
) {
1668 if (skb_shared(skb
)) {
1669 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
1671 copy_skb
= skb_get(skb
);
1672 skb_head
= skb
->data
;
1675 skb_set_owner_r(copy_skb
, sk
);
1677 snaplen
= po
->rx_ring
.frame_size
- macoff
;
1678 if ((int)snaplen
< 0)
1682 spin_lock(&sk
->sk_receive_queue
.lock
);
1683 h
.raw
= packet_current_rx_frame(po
, skb
,
1684 TP_STATUS_KERNEL
, (macoff
+snaplen
));
1687 if (po
->tp_version
<= TPACKET_V2
) {
1688 packet_increment_rx_head(po
, &po
->rx_ring
);
1690 * LOSING will be reported till you read the stats,
1691 * because it's COR - Clear On Read.
1692 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1695 if (po
->stats
.tp_drops
)
1696 status
|= TP_STATUS_LOSING
;
1698 po
->stats
.tp_packets
++;
1700 status
|= TP_STATUS_COPY
;
1701 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
1703 spin_unlock(&sk
->sk_receive_queue
.lock
);
1705 skb_copy_bits(skb
, 0, h
.raw
+ macoff
, snaplen
);
1707 switch (po
->tp_version
) {
1709 h
.h1
->tp_len
= skb
->len
;
1710 h
.h1
->tp_snaplen
= snaplen
;
1711 h
.h1
->tp_mac
= macoff
;
1712 h
.h1
->tp_net
= netoff
;
1713 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1714 && shhwtstamps
->syststamp
.tv64
)
1715 tv
= ktime_to_timeval(shhwtstamps
->syststamp
);
1716 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1717 && shhwtstamps
->hwtstamp
.tv64
)
1718 tv
= ktime_to_timeval(shhwtstamps
->hwtstamp
);
1719 else if (skb
->tstamp
.tv64
)
1720 tv
= ktime_to_timeval(skb
->tstamp
);
1722 do_gettimeofday(&tv
);
1723 h
.h1
->tp_sec
= tv
.tv_sec
;
1724 h
.h1
->tp_usec
= tv
.tv_usec
;
1725 hdrlen
= sizeof(*h
.h1
);
1728 h
.h2
->tp_len
= skb
->len
;
1729 h
.h2
->tp_snaplen
= snaplen
;
1730 h
.h2
->tp_mac
= macoff
;
1731 h
.h2
->tp_net
= netoff
;
1732 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1733 && shhwtstamps
->syststamp
.tv64
)
1734 ts
= ktime_to_timespec(shhwtstamps
->syststamp
);
1735 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1736 && shhwtstamps
->hwtstamp
.tv64
)
1737 ts
= ktime_to_timespec(shhwtstamps
->hwtstamp
);
1738 else if (skb
->tstamp
.tv64
)
1739 ts
= ktime_to_timespec(skb
->tstamp
);
1741 getnstimeofday(&ts
);
1742 h
.h2
->tp_sec
= ts
.tv_sec
;
1743 h
.h2
->tp_nsec
= ts
.tv_nsec
;
1744 if (vlan_tx_tag_present(skb
)) {
1745 h
.h2
->tp_vlan_tci
= vlan_tx_tag_get(skb
);
1746 status
|= TP_STATUS_VLAN_VALID
;
1748 h
.h2
->tp_vlan_tci
= 0;
1750 h
.h2
->tp_padding
= 0;
1751 hdrlen
= sizeof(*h
.h2
);
1754 /* tp_nxt_offset,vlan are already populated above.
1755 * So DONT clear those fields here
1757 h
.h3
->tp_status
|= status
;
1758 h
.h3
->tp_len
= skb
->len
;
1759 h
.h3
->tp_snaplen
= snaplen
;
1760 h
.h3
->tp_mac
= macoff
;
1761 h
.h3
->tp_net
= netoff
;
1762 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1763 && shhwtstamps
->syststamp
.tv64
)
1764 ts
= ktime_to_timespec(shhwtstamps
->syststamp
);
1765 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1766 && shhwtstamps
->hwtstamp
.tv64
)
1767 ts
= ktime_to_timespec(shhwtstamps
->hwtstamp
);
1768 else if (skb
->tstamp
.tv64
)
1769 ts
= ktime_to_timespec(skb
->tstamp
);
1771 getnstimeofday(&ts
);
1772 h
.h3
->tp_sec
= ts
.tv_sec
;
1773 h
.h3
->tp_nsec
= ts
.tv_nsec
;
1774 hdrlen
= sizeof(*h
.h3
);
1780 sll
= h
.raw
+ TPACKET_ALIGN(hdrlen
);
1781 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1782 sll
->sll_family
= AF_PACKET
;
1783 sll
->sll_hatype
= dev
->type
;
1784 sll
->sll_protocol
= skb
->protocol
;
1785 sll
->sll_pkttype
= skb
->pkt_type
;
1786 if (unlikely(po
->origdev
))
1787 sll
->sll_ifindex
= orig_dev
->ifindex
;
1789 sll
->sll_ifindex
= dev
->ifindex
;
1792 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
1796 if (po
->tp_version
<= TPACKET_V2
) {
1797 end
= (u8
*)PAGE_ALIGN((unsigned long)h
.raw
1798 + macoff
+ snaplen
);
1799 for (start
= h
.raw
; start
< end
; start
+= PAGE_SIZE
)
1800 flush_dcache_page(pgv_to_page(start
));
1805 if (po
->tp_version
<= TPACKET_V2
)
1806 __packet_set_status(po
, h
.raw
, status
);
1808 prb_clear_blk_fill_status(&po
->rx_ring
);
1810 sk
->sk_data_ready(sk
, 0);
1813 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1814 skb
->data
= skb_head
;
1822 po
->stats
.tp_drops
++;
1823 spin_unlock(&sk
->sk_receive_queue
.lock
);
1825 sk
->sk_data_ready(sk
, 0);
1826 kfree_skb(copy_skb
);
1827 goto drop_n_restore
;
1830 static void tpacket_destruct_skb(struct sk_buff
*skb
)
1832 struct packet_sock
*po
= pkt_sk(skb
->sk
);
1835 if (likely(po
->tx_ring
.pg_vec
)) {
1836 ph
= skb_shinfo(skb
)->destructor_arg
;
1837 BUG_ON(atomic_read(&po
->tx_ring
.pending
) == 0);
1838 atomic_dec(&po
->tx_ring
.pending
);
1839 __packet_set_status(po
, ph
, TP_STATUS_AVAILABLE
);
1845 static int tpacket_fill_skb(struct packet_sock
*po
, struct sk_buff
*skb
,
1846 void *frame
, struct net_device
*dev
, int size_max
,
1847 __be16 proto
, unsigned char *addr
, int hlen
)
1850 struct tpacket_hdr
*h1
;
1851 struct tpacket2_hdr
*h2
;
1854 int to_write
, offset
, len
, tp_len
, nr_frags
, len_max
;
1855 struct socket
*sock
= po
->sk
.sk_socket
;
1862 skb
->protocol
= proto
;
1864 skb
->priority
= po
->sk
.sk_priority
;
1865 skb
->mark
= po
->sk
.sk_mark
;
1866 skb_shinfo(skb
)->destructor_arg
= ph
.raw
;
1868 switch (po
->tp_version
) {
1870 tp_len
= ph
.h2
->tp_len
;
1873 tp_len
= ph
.h1
->tp_len
;
1876 if (unlikely(tp_len
> size_max
)) {
1877 pr_err("packet size is too long (%d > %d)\n", tp_len
, size_max
);
1881 skb_reserve(skb
, hlen
);
1882 skb_reset_network_header(skb
);
1884 if (po
->tp_tx_has_off
) {
1885 int off_min
, off_max
, off
;
1886 off_min
= po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1887 off_max
= po
->tx_ring
.frame_size
- tp_len
;
1888 if (sock
->type
== SOCK_DGRAM
) {
1889 switch (po
->tp_version
) {
1891 off
= ph
.h2
->tp_net
;
1894 off
= ph
.h1
->tp_net
;
1898 switch (po
->tp_version
) {
1900 off
= ph
.h2
->tp_mac
;
1903 off
= ph
.h1
->tp_mac
;
1907 if (unlikely((off
< off_min
) || (off_max
< off
)))
1909 data
= ph
.raw
+ off
;
1911 data
= ph
.raw
+ po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1915 if (sock
->type
== SOCK_DGRAM
) {
1916 err
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
,
1918 if (unlikely(err
< 0))
1920 } else if (dev
->hard_header_len
) {
1921 /* net device doesn't like empty head */
1922 if (unlikely(tp_len
<= dev
->hard_header_len
)) {
1923 pr_err("packet size is too short (%d < %d)\n",
1924 tp_len
, dev
->hard_header_len
);
1928 skb_push(skb
, dev
->hard_header_len
);
1929 err
= skb_store_bits(skb
, 0, data
,
1930 dev
->hard_header_len
);
1934 data
+= dev
->hard_header_len
;
1935 to_write
-= dev
->hard_header_len
;
1938 offset
= offset_in_page(data
);
1939 len_max
= PAGE_SIZE
- offset
;
1940 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1942 skb
->data_len
= to_write
;
1943 skb
->len
+= to_write
;
1944 skb
->truesize
+= to_write
;
1945 atomic_add(to_write
, &po
->sk
.sk_wmem_alloc
);
1947 while (likely(to_write
)) {
1948 nr_frags
= skb_shinfo(skb
)->nr_frags
;
1950 if (unlikely(nr_frags
>= MAX_SKB_FRAGS
)) {
1951 pr_err("Packet exceed the number of skb frags(%lu)\n",
1956 page
= pgv_to_page(data
);
1958 flush_dcache_page(page
);
1960 skb_fill_page_desc(skb
, nr_frags
, page
, offset
, len
);
1963 len_max
= PAGE_SIZE
;
1964 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1970 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
)
1972 struct sk_buff
*skb
;
1973 struct net_device
*dev
;
1975 bool need_rls_dev
= false;
1976 int err
, reserve
= 0;
1978 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
1979 int tp_len
, size_max
;
1980 unsigned char *addr
;
1982 int status
= TP_STATUS_AVAILABLE
;
1985 mutex_lock(&po
->pg_vec_lock
);
1987 if (saddr
== NULL
) {
1988 dev
= po
->prot_hook
.dev
;
1993 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
1995 if (msg
->msg_namelen
< (saddr
->sll_halen
1996 + offsetof(struct sockaddr_ll
,
1999 proto
= saddr
->sll_protocol
;
2000 addr
= saddr
->sll_addr
;
2001 dev
= dev_get_by_index(sock_net(&po
->sk
), saddr
->sll_ifindex
);
2002 need_rls_dev
= true;
2006 if (unlikely(dev
== NULL
))
2009 reserve
= dev
->hard_header_len
;
2012 if (unlikely(!(dev
->flags
& IFF_UP
)))
2015 size_max
= po
->tx_ring
.frame_size
2016 - (po
->tp_hdrlen
- sizeof(struct sockaddr_ll
));
2018 if (size_max
> dev
->mtu
+ reserve
)
2019 size_max
= dev
->mtu
+ reserve
;
2022 ph
= packet_current_frame(po
, &po
->tx_ring
,
2023 TP_STATUS_SEND_REQUEST
);
2025 if (unlikely(ph
== NULL
)) {
2030 status
= TP_STATUS_SEND_REQUEST
;
2031 hlen
= LL_RESERVED_SPACE(dev
);
2032 tlen
= dev
->needed_tailroom
;
2033 skb
= sock_alloc_send_skb(&po
->sk
,
2034 hlen
+ tlen
+ sizeof(struct sockaddr_ll
),
2037 if (unlikely(skb
== NULL
))
2040 tp_len
= tpacket_fill_skb(po
, skb
, ph
, dev
, size_max
, proto
,
2043 if (unlikely(tp_len
< 0)) {
2045 __packet_set_status(po
, ph
,
2046 TP_STATUS_AVAILABLE
);
2047 packet_increment_head(&po
->tx_ring
);
2051 status
= TP_STATUS_WRONG_FORMAT
;
2057 skb
->destructor
= tpacket_destruct_skb
;
2058 __packet_set_status(po
, ph
, TP_STATUS_SENDING
);
2059 atomic_inc(&po
->tx_ring
.pending
);
2061 status
= TP_STATUS_SEND_REQUEST
;
2062 err
= dev_queue_xmit(skb
);
2063 if (unlikely(err
> 0)) {
2064 err
= net_xmit_errno(err
);
2065 if (err
&& __packet_get_status(po
, ph
) ==
2066 TP_STATUS_AVAILABLE
) {
2067 /* skb was destructed already */
2072 * skb was dropped but not destructed yet;
2073 * let's treat it like congestion or err < 0
2077 packet_increment_head(&po
->tx_ring
);
2079 } while (likely((ph
!= NULL
) ||
2080 ((!(msg
->msg_flags
& MSG_DONTWAIT
)) &&
2081 (atomic_read(&po
->tx_ring
.pending
))))
2088 __packet_set_status(po
, ph
, status
);
2094 mutex_unlock(&po
->pg_vec_lock
);
2098 static struct sk_buff
*packet_alloc_skb(struct sock
*sk
, size_t prepad
,
2099 size_t reserve
, size_t len
,
2100 size_t linear
, int noblock
,
2103 struct sk_buff
*skb
;
2105 /* Under a page? Don't bother with paged skb. */
2106 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
2109 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
2114 skb_reserve(skb
, reserve
);
2115 skb_put(skb
, linear
);
2116 skb
->data_len
= len
- linear
;
2117 skb
->len
+= len
- linear
;
2122 static int packet_snd(struct socket
*sock
,
2123 struct msghdr
*msg
, size_t len
)
2125 struct sock
*sk
= sock
->sk
;
2126 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
2127 struct sk_buff
*skb
;
2128 struct net_device
*dev
;
2130 bool need_rls_dev
= false;
2131 unsigned char *addr
;
2132 int err
, reserve
= 0;
2133 struct virtio_net_hdr vnet_hdr
= { 0 };
2136 struct packet_sock
*po
= pkt_sk(sk
);
2137 unsigned short gso_type
= 0;
2142 * Get and verify the address.
2145 if (saddr
== NULL
) {
2146 dev
= po
->prot_hook
.dev
;
2151 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
2153 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
2155 proto
= saddr
->sll_protocol
;
2156 addr
= saddr
->sll_addr
;
2157 dev
= dev_get_by_index(sock_net(sk
), saddr
->sll_ifindex
);
2158 need_rls_dev
= true;
2164 if (sock
->type
== SOCK_RAW
)
2165 reserve
= dev
->hard_header_len
;
2168 if (!(dev
->flags
& IFF_UP
))
2171 if (po
->has_vnet_hdr
) {
2172 vnet_hdr_len
= sizeof(vnet_hdr
);
2175 if (len
< vnet_hdr_len
)
2178 len
-= vnet_hdr_len
;
2180 err
= memcpy_fromiovec((void *)&vnet_hdr
, msg
->msg_iov
,
2185 if ((vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
2186 (vnet_hdr
.csum_start
+ vnet_hdr
.csum_offset
+ 2 >
2188 vnet_hdr
.hdr_len
= vnet_hdr
.csum_start
+
2189 vnet_hdr
.csum_offset
+ 2;
2192 if (vnet_hdr
.hdr_len
> len
)
2195 if (vnet_hdr
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
2196 switch (vnet_hdr
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
2197 case VIRTIO_NET_HDR_GSO_TCPV4
:
2198 gso_type
= SKB_GSO_TCPV4
;
2200 case VIRTIO_NET_HDR_GSO_TCPV6
:
2201 gso_type
= SKB_GSO_TCPV6
;
2203 case VIRTIO_NET_HDR_GSO_UDP
:
2204 gso_type
= SKB_GSO_UDP
;
2210 if (vnet_hdr
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
2211 gso_type
|= SKB_GSO_TCP_ECN
;
2213 if (vnet_hdr
.gso_size
== 0)
2219 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
2220 if (!netif_supports_nofcs(dev
)) {
2221 err
= -EPROTONOSUPPORT
;
2224 extra_len
= 4; /* We're doing our own CRC */
2228 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ VLAN_HLEN
+ extra_len
))
2232 hlen
= LL_RESERVED_SPACE(dev
);
2233 tlen
= dev
->needed_tailroom
;
2234 skb
= packet_alloc_skb(sk
, hlen
+ tlen
, hlen
, len
, vnet_hdr
.hdr_len
,
2235 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
2239 skb_set_network_header(skb
, reserve
);
2242 if (sock
->type
== SOCK_DGRAM
&&
2243 (offset
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
)) < 0)
2246 /* Returns -EFAULT on error */
2247 err
= skb_copy_datagram_from_iovec(skb
, offset
, msg
->msg_iov
, 0, len
);
2250 err
= sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
2254 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ extra_len
)) {
2255 /* Earlier code assumed this would be a VLAN pkt,
2256 * double-check this now that we have the actual
2259 struct ethhdr
*ehdr
;
2260 skb_reset_mac_header(skb
);
2261 ehdr
= eth_hdr(skb
);
2262 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
2268 skb
->protocol
= proto
;
2270 skb
->priority
= sk
->sk_priority
;
2271 skb
->mark
= sk
->sk_mark
;
2273 if (po
->has_vnet_hdr
) {
2274 if (vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
2275 if (!skb_partial_csum_set(skb
, vnet_hdr
.csum_start
,
2276 vnet_hdr
.csum_offset
)) {
2282 skb_shinfo(skb
)->gso_size
= vnet_hdr
.gso_size
;
2283 skb_shinfo(skb
)->gso_type
= gso_type
;
2285 /* Header must be checked, and gso_segs computed. */
2286 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
2287 skb_shinfo(skb
)->gso_segs
= 0;
2289 len
+= vnet_hdr_len
;
2292 if (unlikely(extra_len
== 4))
2299 err
= dev_queue_xmit(skb
);
2300 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
2311 if (dev
&& need_rls_dev
)
2317 static int packet_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
2318 struct msghdr
*msg
, size_t len
)
2320 struct sock
*sk
= sock
->sk
;
2321 struct packet_sock
*po
= pkt_sk(sk
);
2322 if (po
->tx_ring
.pg_vec
)
2323 return tpacket_snd(po
, msg
);
2325 return packet_snd(sock
, msg
, len
);
2329 * Close a PACKET socket. This is fairly simple. We immediately go
2330 * to 'closed' state and remove our protocol entry in the device list.
2333 static int packet_release(struct socket
*sock
)
2335 struct sock
*sk
= sock
->sk
;
2336 struct packet_sock
*po
;
2338 union tpacket_req_u req_u
;
2346 mutex_lock(&net
->packet
.sklist_lock
);
2347 sk_del_node_init_rcu(sk
);
2348 mutex_unlock(&net
->packet
.sklist_lock
);
2351 sock_prot_inuse_add(net
, sk
->sk_prot
, -1);
2354 spin_lock(&po
->bind_lock
);
2355 unregister_prot_hook(sk
, false);
2356 if (po
->prot_hook
.dev
) {
2357 dev_put(po
->prot_hook
.dev
);
2358 po
->prot_hook
.dev
= NULL
;
2360 spin_unlock(&po
->bind_lock
);
2362 packet_flush_mclist(sk
);
2364 if (po
->rx_ring
.pg_vec
) {
2365 memset(&req_u
, 0, sizeof(req_u
));
2366 packet_set_ring(sk
, &req_u
, 1, 0);
2369 if (po
->tx_ring
.pg_vec
) {
2370 memset(&req_u
, 0, sizeof(req_u
));
2371 packet_set_ring(sk
, &req_u
, 1, 1);
2378 * Now the socket is dead. No more input will appear.
2385 skb_queue_purge(&sk
->sk_receive_queue
);
2386 sk_refcnt_debug_release(sk
);
2393 * Attach a packet hook.
2396 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 protocol
)
2398 struct packet_sock
*po
= pkt_sk(sk
);
2409 spin_lock(&po
->bind_lock
);
2410 unregister_prot_hook(sk
, true);
2412 po
->prot_hook
.type
= protocol
;
2413 if (po
->prot_hook
.dev
)
2414 dev_put(po
->prot_hook
.dev
);
2415 po
->prot_hook
.dev
= dev
;
2417 po
->ifindex
= dev
? dev
->ifindex
: 0;
2422 if (!dev
|| (dev
->flags
& IFF_UP
)) {
2423 register_prot_hook(sk
);
2425 sk
->sk_err
= ENETDOWN
;
2426 if (!sock_flag(sk
, SOCK_DEAD
))
2427 sk
->sk_error_report(sk
);
2431 spin_unlock(&po
->bind_lock
);
2437 * Bind a packet socket to a device
2440 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2443 struct sock
*sk
= sock
->sk
;
2445 struct net_device
*dev
;
2452 if (addr_len
!= sizeof(struct sockaddr
))
2454 strlcpy(name
, uaddr
->sa_data
, sizeof(name
));
2456 dev
= dev_get_by_name(sock_net(sk
), name
);
2458 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
2462 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
2464 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
2465 struct sock
*sk
= sock
->sk
;
2466 struct net_device
*dev
= NULL
;
2474 if (addr_len
< sizeof(struct sockaddr_ll
))
2476 if (sll
->sll_family
!= AF_PACKET
)
2479 if (sll
->sll_ifindex
) {
2481 dev
= dev_get_by_index(sock_net(sk
), sll
->sll_ifindex
);
2485 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
2491 static struct proto packet_proto
= {
2493 .owner
= THIS_MODULE
,
2494 .obj_size
= sizeof(struct packet_sock
),
2498 * Create a packet of type SOCK_PACKET.
2501 static int packet_create(struct net
*net
, struct socket
*sock
, int protocol
,
2505 struct packet_sock
*po
;
2506 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
2509 if (!ns_capable(net
->user_ns
, CAP_NET_RAW
))
2511 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
&&
2512 sock
->type
!= SOCK_PACKET
)
2513 return -ESOCKTNOSUPPORT
;
2515 sock
->state
= SS_UNCONNECTED
;
2518 sk
= sk_alloc(net
, PF_PACKET
, GFP_KERNEL
, &packet_proto
);
2522 sock
->ops
= &packet_ops
;
2523 if (sock
->type
== SOCK_PACKET
)
2524 sock
->ops
= &packet_ops_spkt
;
2526 sock_init_data(sock
, sk
);
2529 sk
->sk_family
= PF_PACKET
;
2532 sk
->sk_destruct
= packet_sock_destruct
;
2533 sk_refcnt_debug_inc(sk
);
2536 * Attach a protocol block
2539 spin_lock_init(&po
->bind_lock
);
2540 mutex_init(&po
->pg_vec_lock
);
2541 po
->prot_hook
.func
= packet_rcv
;
2543 if (sock
->type
== SOCK_PACKET
)
2544 po
->prot_hook
.func
= packet_rcv_spkt
;
2546 po
->prot_hook
.af_packet_priv
= sk
;
2549 po
->prot_hook
.type
= proto
;
2550 register_prot_hook(sk
);
2553 mutex_lock(&net
->packet
.sklist_lock
);
2554 sk_add_node_rcu(sk
, &net
->packet
.sklist
);
2555 mutex_unlock(&net
->packet
.sklist_lock
);
2558 sock_prot_inuse_add(net
, &packet_proto
, 1);
2566 static int packet_recv_error(struct sock
*sk
, struct msghdr
*msg
, int len
)
2568 struct sock_exterr_skb
*serr
;
2569 struct sk_buff
*skb
, *skb2
;
2573 skb
= skb_dequeue(&sk
->sk_error_queue
);
2579 msg
->msg_flags
|= MSG_TRUNC
;
2582 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2586 sock_recv_timestamp(msg
, sk
, skb
);
2588 serr
= SKB_EXT_ERR(skb
);
2589 put_cmsg(msg
, SOL_PACKET
, PACKET_TX_TIMESTAMP
,
2590 sizeof(serr
->ee
), &serr
->ee
);
2592 msg
->msg_flags
|= MSG_ERRQUEUE
;
2595 /* Reset and regenerate socket error */
2596 spin_lock_bh(&sk
->sk_error_queue
.lock
);
2598 if ((skb2
= skb_peek(&sk
->sk_error_queue
)) != NULL
) {
2599 sk
->sk_err
= SKB_EXT_ERR(skb2
)->ee
.ee_errno
;
2600 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
2601 sk
->sk_error_report(sk
);
2603 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
2612 * Pull a packet from our receive queue and hand it to the user.
2613 * If necessary we block.
2616 static int packet_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
2617 struct msghdr
*msg
, size_t len
, int flags
)
2619 struct sock
*sk
= sock
->sk
;
2620 struct sk_buff
*skb
;
2622 struct sockaddr_ll
*sll
;
2623 int vnet_hdr_len
= 0;
2626 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
|MSG_ERRQUEUE
))
2630 /* What error should we return now? EUNATTACH? */
2631 if (pkt_sk(sk
)->ifindex
< 0)
2635 if (flags
& MSG_ERRQUEUE
) {
2636 err
= packet_recv_error(sk
, msg
, len
);
2641 * Call the generic datagram receiver. This handles all sorts
2642 * of horrible races and re-entrancy so we can forget about it
2643 * in the protocol layers.
2645 * Now it will return ENETDOWN, if device have just gone down,
2646 * but then it will block.
2649 skb
= skb_recv_datagram(sk
, flags
, flags
& MSG_DONTWAIT
, &err
);
2652 * An error occurred so return it. Because skb_recv_datagram()
2653 * handles the blocking we don't see and worry about blocking
2660 if (pkt_sk(sk
)->has_vnet_hdr
) {
2661 struct virtio_net_hdr vnet_hdr
= { 0 };
2664 vnet_hdr_len
= sizeof(vnet_hdr
);
2665 if (len
< vnet_hdr_len
)
2668 len
-= vnet_hdr_len
;
2670 if (skb_is_gso(skb
)) {
2671 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
2673 /* This is a hint as to how much should be linear. */
2674 vnet_hdr
.hdr_len
= skb_headlen(skb
);
2675 vnet_hdr
.gso_size
= sinfo
->gso_size
;
2676 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
2677 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
2678 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
2679 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
2680 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
2681 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
2682 else if (sinfo
->gso_type
& SKB_GSO_FCOE
)
2686 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
2687 vnet_hdr
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
2689 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
2691 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2692 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
2693 vnet_hdr
.csum_start
= skb_checksum_start_offset(skb
);
2694 vnet_hdr
.csum_offset
= skb
->csum_offset
;
2695 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
2696 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
2697 } /* else everything is zero */
2699 err
= memcpy_toiovec(msg
->msg_iov
, (void *)&vnet_hdr
,
2706 * If the address length field is there to be filled in, we fill
2710 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
2711 if (sock
->type
== SOCK_PACKET
)
2712 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
2714 msg
->msg_namelen
= sll
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
);
2717 * You lose any data beyond the buffer you gave. If it worries a
2718 * user program they can ask the device for its MTU anyway.
2724 msg
->msg_flags
|= MSG_TRUNC
;
2727 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2731 sock_recv_ts_and_drops(msg
, sk
, skb
);
2734 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
2737 if (pkt_sk(sk
)->auxdata
) {
2738 struct tpacket_auxdata aux
;
2740 aux
.tp_status
= TP_STATUS_USER
;
2741 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2742 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
2743 aux
.tp_len
= PACKET_SKB_CB(skb
)->origlen
;
2744 aux
.tp_snaplen
= skb
->len
;
2746 aux
.tp_net
= skb_network_offset(skb
);
2747 if (vlan_tx_tag_present(skb
)) {
2748 aux
.tp_vlan_tci
= vlan_tx_tag_get(skb
);
2749 aux
.tp_status
|= TP_STATUS_VLAN_VALID
;
2751 aux
.tp_vlan_tci
= 0;
2754 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
2758 * Free or return the buffer as appropriate. Again this
2759 * hides all the races and re-entrancy issues from us.
2761 err
= vnet_hdr_len
+ ((flags
&MSG_TRUNC
) ? skb
->len
: copied
);
2764 skb_free_datagram(sk
, skb
);
2769 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2770 int *uaddr_len
, int peer
)
2772 struct net_device
*dev
;
2773 struct sock
*sk
= sock
->sk
;
2778 uaddr
->sa_family
= AF_PACKET
;
2780 dev
= dev_get_by_index_rcu(sock_net(sk
), pkt_sk(sk
)->ifindex
);
2782 strncpy(uaddr
->sa_data
, dev
->name
, 14);
2784 memset(uaddr
->sa_data
, 0, 14);
2786 *uaddr_len
= sizeof(*uaddr
);
2791 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
2792 int *uaddr_len
, int peer
)
2794 struct net_device
*dev
;
2795 struct sock
*sk
= sock
->sk
;
2796 struct packet_sock
*po
= pkt_sk(sk
);
2797 DECLARE_SOCKADDR(struct sockaddr_ll
*, sll
, uaddr
);
2802 sll
->sll_family
= AF_PACKET
;
2803 sll
->sll_ifindex
= po
->ifindex
;
2804 sll
->sll_protocol
= po
->num
;
2805 sll
->sll_pkttype
= 0;
2807 dev
= dev_get_by_index_rcu(sock_net(sk
), po
->ifindex
);
2809 sll
->sll_hatype
= dev
->type
;
2810 sll
->sll_halen
= dev
->addr_len
;
2811 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
2813 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
2817 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
2822 static int packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
,
2826 case PACKET_MR_MULTICAST
:
2827 if (i
->alen
!= dev
->addr_len
)
2830 return dev_mc_add(dev
, i
->addr
);
2832 return dev_mc_del(dev
, i
->addr
);
2834 case PACKET_MR_PROMISC
:
2835 return dev_set_promiscuity(dev
, what
);
2837 case PACKET_MR_ALLMULTI
:
2838 return dev_set_allmulti(dev
, what
);
2840 case PACKET_MR_UNICAST
:
2841 if (i
->alen
!= dev
->addr_len
)
2844 return dev_uc_add(dev
, i
->addr
);
2846 return dev_uc_del(dev
, i
->addr
);
2854 static void packet_dev_mclist(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
2856 for ( ; i
; i
= i
->next
) {
2857 if (i
->ifindex
== dev
->ifindex
)
2858 packet_dev_mc(dev
, i
, what
);
2862 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2864 struct packet_sock
*po
= pkt_sk(sk
);
2865 struct packet_mclist
*ml
, *i
;
2866 struct net_device
*dev
;
2872 dev
= __dev_get_by_index(sock_net(sk
), mreq
->mr_ifindex
);
2877 if (mreq
->mr_alen
> dev
->addr_len
)
2881 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
2886 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
2887 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2888 ml
->type
== mreq
->mr_type
&&
2889 ml
->alen
== mreq
->mr_alen
&&
2890 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2892 /* Free the new element ... */
2898 i
->type
= mreq
->mr_type
;
2899 i
->ifindex
= mreq
->mr_ifindex
;
2900 i
->alen
= mreq
->mr_alen
;
2901 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
2903 i
->next
= po
->mclist
;
2905 err
= packet_dev_mc(dev
, i
, 1);
2907 po
->mclist
= i
->next
;
2916 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2918 struct packet_mclist
*ml
, **mlp
;
2922 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
2923 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2924 ml
->type
== mreq
->mr_type
&&
2925 ml
->alen
== mreq
->mr_alen
&&
2926 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2927 if (--ml
->count
== 0) {
2928 struct net_device
*dev
;
2930 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2932 packet_dev_mc(dev
, ml
, -1);
2940 return -EADDRNOTAVAIL
;
2943 static void packet_flush_mclist(struct sock
*sk
)
2945 struct packet_sock
*po
= pkt_sk(sk
);
2946 struct packet_mclist
*ml
;
2952 while ((ml
= po
->mclist
) != NULL
) {
2953 struct net_device
*dev
;
2955 po
->mclist
= ml
->next
;
2956 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2958 packet_dev_mc(dev
, ml
, -1);
2965 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, unsigned int optlen
)
2967 struct sock
*sk
= sock
->sk
;
2968 struct packet_sock
*po
= pkt_sk(sk
);
2971 if (level
!= SOL_PACKET
)
2972 return -ENOPROTOOPT
;
2975 case PACKET_ADD_MEMBERSHIP
:
2976 case PACKET_DROP_MEMBERSHIP
:
2978 struct packet_mreq_max mreq
;
2980 memset(&mreq
, 0, sizeof(mreq
));
2981 if (len
< sizeof(struct packet_mreq
))
2983 if (len
> sizeof(mreq
))
2985 if (copy_from_user(&mreq
, optval
, len
))
2987 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
2989 if (optname
== PACKET_ADD_MEMBERSHIP
)
2990 ret
= packet_mc_add(sk
, &mreq
);
2992 ret
= packet_mc_drop(sk
, &mreq
);
2996 case PACKET_RX_RING
:
2997 case PACKET_TX_RING
:
2999 union tpacket_req_u req_u
;
3002 switch (po
->tp_version
) {
3005 len
= sizeof(req_u
.req
);
3009 len
= sizeof(req_u
.req3
);
3014 if (pkt_sk(sk
)->has_vnet_hdr
)
3016 if (copy_from_user(&req_u
.req
, optval
, len
))
3018 return packet_set_ring(sk
, &req_u
, 0,
3019 optname
== PACKET_TX_RING
);
3021 case PACKET_COPY_THRESH
:
3025 if (optlen
!= sizeof(val
))
3027 if (copy_from_user(&val
, optval
, sizeof(val
)))
3030 pkt_sk(sk
)->copy_thresh
= val
;
3033 case PACKET_VERSION
:
3037 if (optlen
!= sizeof(val
))
3039 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3041 if (copy_from_user(&val
, optval
, sizeof(val
)))
3047 po
->tp_version
= val
;
3053 case PACKET_RESERVE
:
3057 if (optlen
!= sizeof(val
))
3059 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3061 if (copy_from_user(&val
, optval
, sizeof(val
)))
3063 po
->tp_reserve
= val
;
3070 if (optlen
!= sizeof(val
))
3072 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3074 if (copy_from_user(&val
, optval
, sizeof(val
)))
3076 po
->tp_loss
= !!val
;
3079 case PACKET_AUXDATA
:
3083 if (optlen
< sizeof(val
))
3085 if (copy_from_user(&val
, optval
, sizeof(val
)))
3088 po
->auxdata
= !!val
;
3091 case PACKET_ORIGDEV
:
3095 if (optlen
< sizeof(val
))
3097 if (copy_from_user(&val
, optval
, sizeof(val
)))
3100 po
->origdev
= !!val
;
3103 case PACKET_VNET_HDR
:
3107 if (sock
->type
!= SOCK_RAW
)
3109 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3111 if (optlen
< sizeof(val
))
3113 if (copy_from_user(&val
, optval
, sizeof(val
)))
3116 po
->has_vnet_hdr
= !!val
;
3119 case PACKET_TIMESTAMP
:
3123 if (optlen
!= sizeof(val
))
3125 if (copy_from_user(&val
, optval
, sizeof(val
)))
3128 po
->tp_tstamp
= val
;
3135 if (optlen
!= sizeof(val
))
3137 if (copy_from_user(&val
, optval
, sizeof(val
)))
3140 return fanout_add(sk
, val
& 0xffff, val
>> 16);
3142 case PACKET_TX_HAS_OFF
:
3146 if (optlen
!= sizeof(val
))
3148 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3150 if (copy_from_user(&val
, optval
, sizeof(val
)))
3152 po
->tp_tx_has_off
= !!val
;
3156 return -ENOPROTOOPT
;
3160 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
3161 char __user
*optval
, int __user
*optlen
)
3164 int val
, lv
= sizeof(val
);
3165 struct sock
*sk
= sock
->sk
;
3166 struct packet_sock
*po
= pkt_sk(sk
);
3168 struct tpacket_stats st
;
3169 union tpacket_stats_u st_u
;
3171 if (level
!= SOL_PACKET
)
3172 return -ENOPROTOOPT
;
3174 if (get_user(len
, optlen
))
3181 case PACKET_STATISTICS
:
3182 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3183 if (po
->tp_version
== TPACKET_V3
) {
3184 lv
= sizeof(struct tpacket_stats_v3
);
3185 memcpy(&st_u
.stats3
, &po
->stats
,
3186 sizeof(struct tpacket_stats
));
3187 st_u
.stats3
.tp_freeze_q_cnt
=
3188 po
->stats_u
.stats3
.tp_freeze_q_cnt
;
3189 st_u
.stats3
.tp_packets
+= po
->stats
.tp_drops
;
3190 data
= &st_u
.stats3
;
3192 lv
= sizeof(struct tpacket_stats
);
3194 st
.tp_packets
+= st
.tp_drops
;
3197 memset(&po
->stats
, 0, sizeof(st
));
3198 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3200 case PACKET_AUXDATA
:
3203 case PACKET_ORIGDEV
:
3206 case PACKET_VNET_HDR
:
3207 val
= po
->has_vnet_hdr
;
3209 case PACKET_VERSION
:
3210 val
= po
->tp_version
;
3213 if (len
> sizeof(int))
3215 if (copy_from_user(&val
, optval
, len
))
3219 val
= sizeof(struct tpacket_hdr
);
3222 val
= sizeof(struct tpacket2_hdr
);
3225 val
= sizeof(struct tpacket3_hdr
);
3231 case PACKET_RESERVE
:
3232 val
= po
->tp_reserve
;
3237 case PACKET_TIMESTAMP
:
3238 val
= po
->tp_tstamp
;
3242 ((u32
)po
->fanout
->id
|
3243 ((u32
)po
->fanout
->type
<< 16)) :
3246 case PACKET_TX_HAS_OFF
:
3247 val
= po
->tp_tx_has_off
;
3250 return -ENOPROTOOPT
;
3255 if (put_user(len
, optlen
))
3257 if (copy_to_user(optval
, data
, len
))
3263 static int packet_notifier(struct notifier_block
*this, unsigned long msg
, void *data
)
3266 struct hlist_node
*node
;
3267 struct net_device
*dev
= data
;
3268 struct net
*net
= dev_net(dev
);
3271 sk_for_each_rcu(sk
, node
, &net
->packet
.sklist
) {
3272 struct packet_sock
*po
= pkt_sk(sk
);
3275 case NETDEV_UNREGISTER
:
3277 packet_dev_mclist(dev
, po
->mclist
, -1);
3281 if (dev
->ifindex
== po
->ifindex
) {
3282 spin_lock(&po
->bind_lock
);
3284 __unregister_prot_hook(sk
, false);
3285 sk
->sk_err
= ENETDOWN
;
3286 if (!sock_flag(sk
, SOCK_DEAD
))
3287 sk
->sk_error_report(sk
);
3289 if (msg
== NETDEV_UNREGISTER
) {
3291 if (po
->prot_hook
.dev
)
3292 dev_put(po
->prot_hook
.dev
);
3293 po
->prot_hook
.dev
= NULL
;
3295 spin_unlock(&po
->bind_lock
);
3299 if (dev
->ifindex
== po
->ifindex
) {
3300 spin_lock(&po
->bind_lock
);
3302 register_prot_hook(sk
);
3303 spin_unlock(&po
->bind_lock
);
3313 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
3316 struct sock
*sk
= sock
->sk
;
3321 int amount
= sk_wmem_alloc_get(sk
);
3323 return put_user(amount
, (int __user
*)arg
);
3327 struct sk_buff
*skb
;
3330 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3331 skb
= skb_peek(&sk
->sk_receive_queue
);
3334 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3335 return put_user(amount
, (int __user
*)arg
);
3338 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
3340 return sock_get_timestampns(sk
, (struct timespec __user
*)arg
);
3350 case SIOCGIFBRDADDR
:
3351 case SIOCSIFBRDADDR
:
3352 case SIOCGIFNETMASK
:
3353 case SIOCSIFNETMASK
:
3354 case SIOCGIFDSTADDR
:
3355 case SIOCSIFDSTADDR
:
3357 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
3361 return -ENOIOCTLCMD
;
3366 static unsigned int packet_poll(struct file
*file
, struct socket
*sock
,
3369 struct sock
*sk
= sock
->sk
;
3370 struct packet_sock
*po
= pkt_sk(sk
);
3371 unsigned int mask
= datagram_poll(file
, sock
, wait
);
3373 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3374 if (po
->rx_ring
.pg_vec
) {
3375 if (!packet_previous_rx_frame(po
, &po
->rx_ring
,
3377 mask
|= POLLIN
| POLLRDNORM
;
3379 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3380 spin_lock_bh(&sk
->sk_write_queue
.lock
);
3381 if (po
->tx_ring
.pg_vec
) {
3382 if (packet_current_frame(po
, &po
->tx_ring
, TP_STATUS_AVAILABLE
))
3383 mask
|= POLLOUT
| POLLWRNORM
;
3385 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
3390 /* Dirty? Well, I still did not learn better way to account
3394 static void packet_mm_open(struct vm_area_struct
*vma
)
3396 struct file
*file
= vma
->vm_file
;
3397 struct socket
*sock
= file
->private_data
;
3398 struct sock
*sk
= sock
->sk
;
3401 atomic_inc(&pkt_sk(sk
)->mapped
);
3404 static void packet_mm_close(struct vm_area_struct
*vma
)
3406 struct file
*file
= vma
->vm_file
;
3407 struct socket
*sock
= file
->private_data
;
3408 struct sock
*sk
= sock
->sk
;
3411 atomic_dec(&pkt_sk(sk
)->mapped
);
3414 static const struct vm_operations_struct packet_mmap_ops
= {
3415 .open
= packet_mm_open
,
3416 .close
= packet_mm_close
,
3419 static void free_pg_vec(struct pgv
*pg_vec
, unsigned int order
,
3424 for (i
= 0; i
< len
; i
++) {
3425 if (likely(pg_vec
[i
].buffer
)) {
3426 if (is_vmalloc_addr(pg_vec
[i
].buffer
))
3427 vfree(pg_vec
[i
].buffer
);
3429 free_pages((unsigned long)pg_vec
[i
].buffer
,
3431 pg_vec
[i
].buffer
= NULL
;
3437 static char *alloc_one_pg_vec_page(unsigned long order
)
3439 char *buffer
= NULL
;
3440 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
|
3441 __GFP_ZERO
| __GFP_NOWARN
| __GFP_NORETRY
;
3443 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
3449 * __get_free_pages failed, fall back to vmalloc
3451 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
3457 * vmalloc failed, lets dig into swap here
3459 gfp_flags
&= ~__GFP_NORETRY
;
3460 buffer
= (char *)__get_free_pages(gfp_flags
, order
);
3465 * complete and utter failure
3470 static struct pgv
*alloc_pg_vec(struct tpacket_req
*req
, int order
)
3472 unsigned int block_nr
= req
->tp_block_nr
;
3476 pg_vec
= kcalloc(block_nr
, sizeof(struct pgv
), GFP_KERNEL
);
3477 if (unlikely(!pg_vec
))
3480 for (i
= 0; i
< block_nr
; i
++) {
3481 pg_vec
[i
].buffer
= alloc_one_pg_vec_page(order
);
3482 if (unlikely(!pg_vec
[i
].buffer
))
3483 goto out_free_pgvec
;
3490 free_pg_vec(pg_vec
, order
, block_nr
);
3495 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
3496 int closing
, int tx_ring
)
3498 struct pgv
*pg_vec
= NULL
;
3499 struct packet_sock
*po
= pkt_sk(sk
);
3500 int was_running
, order
= 0;
3501 struct packet_ring_buffer
*rb
;
3502 struct sk_buff_head
*rb_queue
;
3505 /* Added to avoid minimal code churn */
3506 struct tpacket_req
*req
= &req_u
->req
;
3508 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3509 if (!closing
&& tx_ring
&& (po
->tp_version
> TPACKET_V2
)) {
3510 WARN(1, "Tx-ring is not supported.\n");
3514 rb
= tx_ring
? &po
->tx_ring
: &po
->rx_ring
;
3515 rb_queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
3519 if (atomic_read(&po
->mapped
))
3521 if (atomic_read(&rb
->pending
))
3525 if (req
->tp_block_nr
) {
3526 /* Sanity tests and some calculations */
3528 if (unlikely(rb
->pg_vec
))
3531 switch (po
->tp_version
) {
3533 po
->tp_hdrlen
= TPACKET_HDRLEN
;
3536 po
->tp_hdrlen
= TPACKET2_HDRLEN
;
3539 po
->tp_hdrlen
= TPACKET3_HDRLEN
;
3544 if (unlikely((int)req
->tp_block_size
<= 0))
3546 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
3548 if (unlikely(req
->tp_frame_size
< po
->tp_hdrlen
+
3551 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
3554 rb
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
3555 if (unlikely(rb
->frames_per_block
<= 0))
3557 if (unlikely((rb
->frames_per_block
* req
->tp_block_nr
) !=
3562 order
= get_order(req
->tp_block_size
);
3563 pg_vec
= alloc_pg_vec(req
, order
);
3564 if (unlikely(!pg_vec
))
3566 switch (po
->tp_version
) {
3568 /* Transmit path is not supported. We checked
3569 * it above but just being paranoid
3572 init_prb_bdqc(po
, rb
, pg_vec
, req_u
, tx_ring
);
3581 if (unlikely(req
->tp_frame_nr
))
3587 /* Detach socket from network */
3588 spin_lock(&po
->bind_lock
);
3589 was_running
= po
->running
;
3593 __unregister_prot_hook(sk
, false);
3595 spin_unlock(&po
->bind_lock
);
3600 mutex_lock(&po
->pg_vec_lock
);
3601 if (closing
|| atomic_read(&po
->mapped
) == 0) {
3603 spin_lock_bh(&rb_queue
->lock
);
3604 swap(rb
->pg_vec
, pg_vec
);
3605 rb
->frame_max
= (req
->tp_frame_nr
- 1);
3607 rb
->frame_size
= req
->tp_frame_size
;
3608 spin_unlock_bh(&rb_queue
->lock
);
3610 swap(rb
->pg_vec_order
, order
);
3611 swap(rb
->pg_vec_len
, req
->tp_block_nr
);
3613 rb
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
3614 po
->prot_hook
.func
= (po
->rx_ring
.pg_vec
) ?
3615 tpacket_rcv
: packet_rcv
;
3616 skb_queue_purge(rb_queue
);
3617 if (atomic_read(&po
->mapped
))
3618 pr_err("packet_mmap: vma is busy: %d\n",
3619 atomic_read(&po
->mapped
));
3621 mutex_unlock(&po
->pg_vec_lock
);
3623 spin_lock(&po
->bind_lock
);
3626 register_prot_hook(sk
);
3628 spin_unlock(&po
->bind_lock
);
3629 if (closing
&& (po
->tp_version
> TPACKET_V2
)) {
3630 /* Because we don't support block-based V3 on tx-ring */
3632 prb_shutdown_retire_blk_timer(po
, tx_ring
, rb_queue
);
3637 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
3642 static int packet_mmap(struct file
*file
, struct socket
*sock
,
3643 struct vm_area_struct
*vma
)
3645 struct sock
*sk
= sock
->sk
;
3646 struct packet_sock
*po
= pkt_sk(sk
);
3647 unsigned long size
, expected_size
;
3648 struct packet_ring_buffer
*rb
;
3649 unsigned long start
;
3656 mutex_lock(&po
->pg_vec_lock
);
3659 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
3661 expected_size
+= rb
->pg_vec_len
3667 if (expected_size
== 0)
3670 size
= vma
->vm_end
- vma
->vm_start
;
3671 if (size
!= expected_size
)
3674 start
= vma
->vm_start
;
3675 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
3676 if (rb
->pg_vec
== NULL
)
3679 for (i
= 0; i
< rb
->pg_vec_len
; i
++) {
3681 void *kaddr
= rb
->pg_vec
[i
].buffer
;
3684 for (pg_num
= 0; pg_num
< rb
->pg_vec_pages
; pg_num
++) {
3685 page
= pgv_to_page(kaddr
);
3686 err
= vm_insert_page(vma
, start
, page
);
3695 atomic_inc(&po
->mapped
);
3696 vma
->vm_ops
= &packet_mmap_ops
;
3700 mutex_unlock(&po
->pg_vec_lock
);
3704 static const struct proto_ops packet_ops_spkt
= {
3705 .family
= PF_PACKET
,
3706 .owner
= THIS_MODULE
,
3707 .release
= packet_release
,
3708 .bind
= packet_bind_spkt
,
3709 .connect
= sock_no_connect
,
3710 .socketpair
= sock_no_socketpair
,
3711 .accept
= sock_no_accept
,
3712 .getname
= packet_getname_spkt
,
3713 .poll
= datagram_poll
,
3714 .ioctl
= packet_ioctl
,
3715 .listen
= sock_no_listen
,
3716 .shutdown
= sock_no_shutdown
,
3717 .setsockopt
= sock_no_setsockopt
,
3718 .getsockopt
= sock_no_getsockopt
,
3719 .sendmsg
= packet_sendmsg_spkt
,
3720 .recvmsg
= packet_recvmsg
,
3721 .mmap
= sock_no_mmap
,
3722 .sendpage
= sock_no_sendpage
,
3725 static const struct proto_ops packet_ops
= {
3726 .family
= PF_PACKET
,
3727 .owner
= THIS_MODULE
,
3728 .release
= packet_release
,
3729 .bind
= packet_bind
,
3730 .connect
= sock_no_connect
,
3731 .socketpair
= sock_no_socketpair
,
3732 .accept
= sock_no_accept
,
3733 .getname
= packet_getname
,
3734 .poll
= packet_poll
,
3735 .ioctl
= packet_ioctl
,
3736 .listen
= sock_no_listen
,
3737 .shutdown
= sock_no_shutdown
,
3738 .setsockopt
= packet_setsockopt
,
3739 .getsockopt
= packet_getsockopt
,
3740 .sendmsg
= packet_sendmsg
,
3741 .recvmsg
= packet_recvmsg
,
3742 .mmap
= packet_mmap
,
3743 .sendpage
= sock_no_sendpage
,
3746 static const struct net_proto_family packet_family_ops
= {
3747 .family
= PF_PACKET
,
3748 .create
= packet_create
,
3749 .owner
= THIS_MODULE
,
3752 static struct notifier_block packet_netdev_notifier
= {
3753 .notifier_call
= packet_notifier
,
3756 #ifdef CONFIG_PROC_FS
3758 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
3761 struct net
*net
= seq_file_net(seq
);
3764 return seq_hlist_start_head_rcu(&net
->packet
.sklist
, *pos
);
3767 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
3769 struct net
*net
= seq_file_net(seq
);
3770 return seq_hlist_next_rcu(v
, &net
->packet
.sklist
, pos
);
3773 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
3779 static int packet_seq_show(struct seq_file
*seq
, void *v
)
3781 if (v
== SEQ_START_TOKEN
)
3782 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3784 struct sock
*s
= sk_entry(v
);
3785 const struct packet_sock
*po
= pkt_sk(s
);
3788 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
3790 atomic_read(&s
->sk_refcnt
),
3795 atomic_read(&s
->sk_rmem_alloc
),
3796 from_kuid_munged(seq_user_ns(seq
), sock_i_uid(s
)),
3803 static const struct seq_operations packet_seq_ops
= {
3804 .start
= packet_seq_start
,
3805 .next
= packet_seq_next
,
3806 .stop
= packet_seq_stop
,
3807 .show
= packet_seq_show
,
3810 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
3812 return seq_open_net(inode
, file
, &packet_seq_ops
,
3813 sizeof(struct seq_net_private
));
3816 static const struct file_operations packet_seq_fops
= {
3817 .owner
= THIS_MODULE
,
3818 .open
= packet_seq_open
,
3820 .llseek
= seq_lseek
,
3821 .release
= seq_release_net
,
3826 static int __net_init
packet_net_init(struct net
*net
)
3828 mutex_init(&net
->packet
.sklist_lock
);
3829 INIT_HLIST_HEAD(&net
->packet
.sklist
);
3831 if (!proc_net_fops_create(net
, "packet", 0, &packet_seq_fops
))
3837 static void __net_exit
packet_net_exit(struct net
*net
)
3839 proc_net_remove(net
, "packet");
3842 static struct pernet_operations packet_net_ops
= {
3843 .init
= packet_net_init
,
3844 .exit
= packet_net_exit
,
3848 static void __exit
packet_exit(void)
3850 unregister_netdevice_notifier(&packet_netdev_notifier
);
3851 unregister_pernet_subsys(&packet_net_ops
);
3852 sock_unregister(PF_PACKET
);
3853 proto_unregister(&packet_proto
);
3856 static int __init
packet_init(void)
3858 int rc
= proto_register(&packet_proto
, 0);
3863 sock_register(&packet_family_ops
);
3864 register_pernet_subsys(&packet_net_ops
);
3865 register_netdevice_notifier(&packet_netdev_notifier
);
3870 module_init(packet_init
);
3871 module_exit(packet_exit
);
3872 MODULE_LICENSE("GPL");
3873 MODULE_ALIAS_NETPROTO(PF_PACKET
);