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
];
162 struct tpacket_hdr
*h1
;
163 struct tpacket2_hdr
*h2
;
164 struct tpacket3_hdr
*h3
;
168 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
169 int closing
, int tx_ring
);
171 #define V3_ALIGNMENT (8)
173 #define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
175 #define BLK_PLUS_PRIV(sz_of_priv) \
176 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
178 #define PGV_FROM_VMALLOC 1
180 #define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
181 #define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
182 #define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
183 #define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
184 #define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
185 #define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
186 #define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
189 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
);
190 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
191 struct packet_type
*pt
, struct net_device
*orig_dev
);
193 static void *packet_previous_frame(struct packet_sock
*po
,
194 struct packet_ring_buffer
*rb
,
196 static void packet_increment_head(struct packet_ring_buffer
*buff
);
197 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*,
198 struct tpacket_block_desc
*);
199 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*,
200 struct packet_sock
*);
201 static void prb_retire_current_block(struct tpacket_kbdq_core
*,
202 struct packet_sock
*, unsigned int status
);
203 static int prb_queue_frozen(struct tpacket_kbdq_core
*);
204 static void prb_open_block(struct tpacket_kbdq_core
*,
205 struct tpacket_block_desc
*);
206 static void prb_retire_rx_blk_timer_expired(unsigned long);
207 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*);
208 static void prb_init_blk_timer(struct packet_sock
*,
209 struct tpacket_kbdq_core
*,
210 void (*func
) (unsigned long));
211 static void prb_fill_rxhash(struct tpacket_kbdq_core
*, struct tpacket3_hdr
*);
212 static void prb_clear_rxhash(struct tpacket_kbdq_core
*,
213 struct tpacket3_hdr
*);
214 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*,
215 struct tpacket3_hdr
*);
216 static void packet_flush_mclist(struct sock
*sk
);
218 struct packet_skb_cb
{
219 unsigned int origlen
;
221 struct sockaddr_pkt pkt
;
222 struct sockaddr_ll ll
;
226 #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
228 #define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
229 #define GET_PBLOCK_DESC(x, bid) \
230 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
231 #define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
232 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
233 #define GET_NEXT_PRB_BLK_NUM(x) \
234 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
235 ((x)->kactive_blk_num+1) : 0)
237 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
);
238 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
);
240 /* register_prot_hook must be invoked with the po->bind_lock held,
241 * or from a context in which asynchronous accesses to the packet
242 * socket is not possible (packet_create()).
244 static void register_prot_hook(struct sock
*sk
)
246 struct packet_sock
*po
= pkt_sk(sk
);
249 __fanout_link(sk
, po
);
251 dev_add_pack(&po
->prot_hook
);
257 /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
258 * held. If the sync parameter is true, we will temporarily drop
259 * the po->bind_lock and do a synchronize_net to make sure no
260 * asynchronous packet processing paths still refer to the elements
261 * of po->prot_hook. If the sync parameter is false, it is the
262 * callers responsibility to take care of this.
264 static void __unregister_prot_hook(struct sock
*sk
, bool sync
)
266 struct packet_sock
*po
= pkt_sk(sk
);
270 __fanout_unlink(sk
, po
);
272 __dev_remove_pack(&po
->prot_hook
);
276 spin_unlock(&po
->bind_lock
);
278 spin_lock(&po
->bind_lock
);
282 static void unregister_prot_hook(struct sock
*sk
, bool sync
)
284 struct packet_sock
*po
= pkt_sk(sk
);
287 __unregister_prot_hook(sk
, sync
);
290 static inline __pure
struct page
*pgv_to_page(void *addr
)
292 if (is_vmalloc_addr(addr
))
293 return vmalloc_to_page(addr
);
294 return virt_to_page(addr
);
297 static void __packet_set_status(struct packet_sock
*po
, void *frame
, int status
)
299 union tpacket_uhdr h
;
302 switch (po
->tp_version
) {
304 h
.h1
->tp_status
= status
;
305 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
308 h
.h2
->tp_status
= status
;
309 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
313 WARN(1, "TPACKET version not supported.\n");
320 static int __packet_get_status(struct packet_sock
*po
, void *frame
)
322 union tpacket_uhdr h
;
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 __u32
tpacket_get_timestamp(struct sk_buff
*skb
, struct timespec
*ts
,
345 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
348 if ((flags
& SOF_TIMESTAMPING_SYS_HARDWARE
) &&
349 ktime_to_timespec_cond(shhwtstamps
->syststamp
, ts
))
350 return TP_STATUS_TS_SYS_HARDWARE
;
351 if ((flags
& SOF_TIMESTAMPING_RAW_HARDWARE
) &&
352 ktime_to_timespec_cond(shhwtstamps
->hwtstamp
, ts
))
353 return TP_STATUS_TS_RAW_HARDWARE
;
356 if (ktime_to_timespec_cond(skb
->tstamp
, ts
))
357 return TP_STATUS_TS_SOFTWARE
;
362 static __u32
__packet_set_timestamp(struct packet_sock
*po
, void *frame
,
365 union tpacket_uhdr h
;
369 if (!(ts_status
= tpacket_get_timestamp(skb
, &ts
, po
->tp_tstamp
)))
373 switch (po
->tp_version
) {
375 h
.h1
->tp_sec
= ts
.tv_sec
;
376 h
.h1
->tp_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
379 h
.h2
->tp_sec
= ts
.tv_sec
;
380 h
.h2
->tp_nsec
= ts
.tv_nsec
;
384 WARN(1, "TPACKET version not supported.\n");
388 /* one flush is safe, as both fields always lie on the same cacheline */
389 flush_dcache_page(pgv_to_page(&h
.h1
->tp_sec
));
395 static void *packet_lookup_frame(struct packet_sock
*po
,
396 struct packet_ring_buffer
*rb
,
397 unsigned int position
,
400 unsigned int pg_vec_pos
, frame_offset
;
401 union tpacket_uhdr h
;
403 pg_vec_pos
= position
/ rb
->frames_per_block
;
404 frame_offset
= position
% rb
->frames_per_block
;
406 h
.raw
= rb
->pg_vec
[pg_vec_pos
].buffer
+
407 (frame_offset
* rb
->frame_size
);
409 if (status
!= __packet_get_status(po
, h
.raw
))
415 static void *packet_current_frame(struct packet_sock
*po
,
416 struct packet_ring_buffer
*rb
,
419 return packet_lookup_frame(po
, rb
, rb
->head
, status
);
422 static void prb_del_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
424 del_timer_sync(&pkc
->retire_blk_timer
);
427 static void prb_shutdown_retire_blk_timer(struct packet_sock
*po
,
429 struct sk_buff_head
*rb_queue
)
431 struct tpacket_kbdq_core
*pkc
;
433 pkc
= tx_ring
? &po
->tx_ring
.prb_bdqc
: &po
->rx_ring
.prb_bdqc
;
435 spin_lock(&rb_queue
->lock
);
436 pkc
->delete_blk_timer
= 1;
437 spin_unlock(&rb_queue
->lock
);
439 prb_del_retire_blk_timer(pkc
);
442 static void prb_init_blk_timer(struct packet_sock
*po
,
443 struct tpacket_kbdq_core
*pkc
,
444 void (*func
) (unsigned long))
446 init_timer(&pkc
->retire_blk_timer
);
447 pkc
->retire_blk_timer
.data
= (long)po
;
448 pkc
->retire_blk_timer
.function
= func
;
449 pkc
->retire_blk_timer
.expires
= jiffies
;
452 static void prb_setup_retire_blk_timer(struct packet_sock
*po
, int tx_ring
)
454 struct tpacket_kbdq_core
*pkc
;
459 pkc
= tx_ring
? &po
->tx_ring
.prb_bdqc
: &po
->rx_ring
.prb_bdqc
;
460 prb_init_blk_timer(po
, pkc
, prb_retire_rx_blk_timer_expired
);
463 static int prb_calc_retire_blk_tmo(struct packet_sock
*po
,
464 int blk_size_in_bytes
)
466 struct net_device
*dev
;
467 unsigned int mbits
= 0, msec
= 0, div
= 0, tmo
= 0;
468 struct ethtool_cmd ecmd
;
473 dev
= __dev_get_by_index(sock_net(&po
->sk
), po
->ifindex
);
474 if (unlikely(!dev
)) {
476 return DEFAULT_PRB_RETIRE_TOV
;
478 err
= __ethtool_get_settings(dev
, &ecmd
);
479 speed
= ethtool_cmd_speed(&ecmd
);
483 * If the link speed is so slow you don't really
484 * need to worry about perf anyways
486 if (speed
< SPEED_1000
|| speed
== SPEED_UNKNOWN
) {
487 return DEFAULT_PRB_RETIRE_TOV
;
494 mbits
= (blk_size_in_bytes
* 8) / (1024 * 1024);
506 static void prb_init_ft_ops(struct tpacket_kbdq_core
*p1
,
507 union tpacket_req_u
*req_u
)
509 p1
->feature_req_word
= req_u
->req3
.tp_feature_req_word
;
512 static void init_prb_bdqc(struct packet_sock
*po
,
513 struct packet_ring_buffer
*rb
,
515 union tpacket_req_u
*req_u
, int tx_ring
)
517 struct tpacket_kbdq_core
*p1
= &rb
->prb_bdqc
;
518 struct tpacket_block_desc
*pbd
;
520 memset(p1
, 0x0, sizeof(*p1
));
522 p1
->knxt_seq_num
= 1;
524 pbd
= (struct tpacket_block_desc
*)pg_vec
[0].buffer
;
525 p1
->pkblk_start
= pg_vec
[0].buffer
;
526 p1
->kblk_size
= req_u
->req3
.tp_block_size
;
527 p1
->knum_blocks
= req_u
->req3
.tp_block_nr
;
528 p1
->hdrlen
= po
->tp_hdrlen
;
529 p1
->version
= po
->tp_version
;
530 p1
->last_kactive_blk_num
= 0;
531 po
->stats
.stats3
.tp_freeze_q_cnt
= 0;
532 if (req_u
->req3
.tp_retire_blk_tov
)
533 p1
->retire_blk_tov
= req_u
->req3
.tp_retire_blk_tov
;
535 p1
->retire_blk_tov
= prb_calc_retire_blk_tmo(po
,
536 req_u
->req3
.tp_block_size
);
537 p1
->tov_in_jiffies
= msecs_to_jiffies(p1
->retire_blk_tov
);
538 p1
->blk_sizeof_priv
= req_u
->req3
.tp_sizeof_priv
;
540 prb_init_ft_ops(p1
, req_u
);
541 prb_setup_retire_blk_timer(po
, tx_ring
);
542 prb_open_block(p1
, pbd
);
545 /* Do NOT update the last_blk_num first.
546 * Assumes sk_buff_head lock is held.
548 static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core
*pkc
)
550 mod_timer(&pkc
->retire_blk_timer
,
551 jiffies
+ pkc
->tov_in_jiffies
);
552 pkc
->last_kactive_blk_num
= pkc
->kactive_blk_num
;
557 * 1) We refresh the timer only when we open a block.
558 * By doing this we don't waste cycles refreshing the timer
559 * on packet-by-packet basis.
561 * With a 1MB block-size, on a 1Gbps line, it will take
562 * i) ~8 ms to fill a block + ii) memcpy etc.
563 * In this cut we are not accounting for the memcpy time.
565 * So, if the user sets the 'tmo' to 10ms then the timer
566 * will never fire while the block is still getting filled
567 * (which is what we want). However, the user could choose
568 * to close a block early and that's fine.
570 * But when the timer does fire, we check whether or not to refresh it.
571 * Since the tmo granularity is in msecs, it is not too expensive
572 * to refresh the timer, lets say every '8' msecs.
573 * Either the user can set the 'tmo' or we can derive it based on
574 * a) line-speed and b) block-size.
575 * prb_calc_retire_blk_tmo() calculates the tmo.
578 static void prb_retire_rx_blk_timer_expired(unsigned long data
)
580 struct packet_sock
*po
= (struct packet_sock
*)data
;
581 struct tpacket_kbdq_core
*pkc
= &po
->rx_ring
.prb_bdqc
;
583 struct tpacket_block_desc
*pbd
;
585 spin_lock(&po
->sk
.sk_receive_queue
.lock
);
587 frozen
= prb_queue_frozen(pkc
);
588 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
590 if (unlikely(pkc
->delete_blk_timer
))
593 /* We only need to plug the race when the block is partially filled.
595 * lock(); increment BLOCK_NUM_PKTS; unlock()
596 * copy_bits() is in progress ...
597 * timer fires on other cpu:
598 * we can't retire the current block because copy_bits
602 if (BLOCK_NUM_PKTS(pbd
)) {
603 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
604 /* Waiting for skb_copy_bits to finish... */
609 if (pkc
->last_kactive_blk_num
== pkc
->kactive_blk_num
) {
611 prb_retire_current_block(pkc
, po
, TP_STATUS_BLK_TMO
);
612 if (!prb_dispatch_next_block(pkc
, po
))
617 /* Case 1. Queue was frozen because user-space was
620 if (prb_curr_blk_in_use(pkc
, pbd
)) {
622 * Ok, user-space is still behind.
623 * So just refresh the timer.
627 /* Case 2. queue was frozen,user-space caught up,
628 * now the link went idle && the timer fired.
629 * We don't have a block to close.So we open this
630 * block and restart the timer.
631 * opening a block thaws the queue,restarts timer
632 * Thawing/timer-refresh is a side effect.
634 prb_open_block(pkc
, pbd
);
641 _prb_refresh_rx_retire_blk_timer(pkc
);
644 spin_unlock(&po
->sk
.sk_receive_queue
.lock
);
647 static void prb_flush_block(struct tpacket_kbdq_core
*pkc1
,
648 struct tpacket_block_desc
*pbd1
, __u32 status
)
650 /* Flush everything minus the block header */
652 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
657 /* Skip the block header(we know header WILL fit in 4K) */
660 end
= (u8
*)PAGE_ALIGN((unsigned long)pkc1
->pkblk_end
);
661 for (; start
< end
; start
+= PAGE_SIZE
)
662 flush_dcache_page(pgv_to_page(start
));
667 /* Now update the block status. */
669 BLOCK_STATUS(pbd1
) = status
;
671 /* Flush the block header */
673 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
675 flush_dcache_page(pgv_to_page(start
));
685 * 2) Increment active_blk_num
687 * Note:We DONT refresh the timer on purpose.
688 * Because almost always the next block will be opened.
690 static void prb_close_block(struct tpacket_kbdq_core
*pkc1
,
691 struct tpacket_block_desc
*pbd1
,
692 struct packet_sock
*po
, unsigned int stat
)
694 __u32 status
= TP_STATUS_USER
| stat
;
696 struct tpacket3_hdr
*last_pkt
;
697 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
699 if (po
->stats
.stats3
.tp_drops
)
700 status
|= TP_STATUS_LOSING
;
702 last_pkt
= (struct tpacket3_hdr
*)pkc1
->prev
;
703 last_pkt
->tp_next_offset
= 0;
705 /* Get the ts of the last pkt */
706 if (BLOCK_NUM_PKTS(pbd1
)) {
707 h1
->ts_last_pkt
.ts_sec
= last_pkt
->tp_sec
;
708 h1
->ts_last_pkt
.ts_nsec
= last_pkt
->tp_nsec
;
710 /* Ok, we tmo'd - so get the current time */
713 h1
->ts_last_pkt
.ts_sec
= ts
.tv_sec
;
714 h1
->ts_last_pkt
.ts_nsec
= ts
.tv_nsec
;
719 /* Flush the block */
720 prb_flush_block(pkc1
, pbd1
, status
);
722 pkc1
->kactive_blk_num
= GET_NEXT_PRB_BLK_NUM(pkc1
);
725 static void prb_thaw_queue(struct tpacket_kbdq_core
*pkc
)
727 pkc
->reset_pending_on_curr_blk
= 0;
731 * Side effect of opening a block:
733 * 1) prb_queue is thawed.
734 * 2) retire_blk_timer is refreshed.
737 static void prb_open_block(struct tpacket_kbdq_core
*pkc1
,
738 struct tpacket_block_desc
*pbd1
)
741 struct tpacket_hdr_v1
*h1
= &pbd1
->hdr
.bh1
;
745 /* We could have just memset this but we will lose the
746 * flexibility of making the priv area sticky
749 BLOCK_SNUM(pbd1
) = pkc1
->knxt_seq_num
++;
750 BLOCK_NUM_PKTS(pbd1
) = 0;
751 BLOCK_LEN(pbd1
) = BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
755 h1
->ts_first_pkt
.ts_sec
= ts
.tv_sec
;
756 h1
->ts_first_pkt
.ts_nsec
= ts
.tv_nsec
;
758 pkc1
->pkblk_start
= (char *)pbd1
;
759 pkc1
->nxt_offset
= pkc1
->pkblk_start
+ BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
761 BLOCK_O2FP(pbd1
) = (__u32
)BLK_PLUS_PRIV(pkc1
->blk_sizeof_priv
);
762 BLOCK_O2PRIV(pbd1
) = BLK_HDR_LEN
;
764 pbd1
->version
= pkc1
->version
;
765 pkc1
->prev
= pkc1
->nxt_offset
;
766 pkc1
->pkblk_end
= pkc1
->pkblk_start
+ pkc1
->kblk_size
;
768 prb_thaw_queue(pkc1
);
769 _prb_refresh_rx_retire_blk_timer(pkc1
);
775 * Queue freeze logic:
776 * 1) Assume tp_block_nr = 8 blocks.
777 * 2) At time 't0', user opens Rx ring.
778 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
779 * 4) user-space is either sleeping or processing block '0'.
780 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
781 * it will close block-7,loop around and try to fill block '0'.
783 * __packet_lookup_frame_in_block
784 * prb_retire_current_block()
785 * prb_dispatch_next_block()
786 * |->(BLOCK_STATUS == USER) evaluates to true
787 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
788 * 6) Now there are two cases:
789 * 6.1) Link goes idle right after the queue is frozen.
790 * But remember, the last open_block() refreshed the timer.
791 * When this timer expires,it will refresh itself so that we can
792 * re-open block-0 in near future.
793 * 6.2) Link is busy and keeps on receiving packets. This is a simple
794 * case and __packet_lookup_frame_in_block will check if block-0
795 * is free and can now be re-used.
797 static void prb_freeze_queue(struct tpacket_kbdq_core
*pkc
,
798 struct packet_sock
*po
)
800 pkc
->reset_pending_on_curr_blk
= 1;
801 po
->stats
.stats3
.tp_freeze_q_cnt
++;
804 #define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
807 * If the next block is free then we will dispatch it
808 * and return a good offset.
809 * Else, we will freeze the queue.
810 * So, caller must check the return value.
812 static void *prb_dispatch_next_block(struct tpacket_kbdq_core
*pkc
,
813 struct packet_sock
*po
)
815 struct tpacket_block_desc
*pbd
;
819 /* 1. Get current block num */
820 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
822 /* 2. If this block is currently in_use then freeze the queue */
823 if (TP_STATUS_USER
& BLOCK_STATUS(pbd
)) {
824 prb_freeze_queue(pkc
, po
);
830 * open this block and return the offset where the first packet
831 * needs to get stored.
833 prb_open_block(pkc
, pbd
);
834 return (void *)pkc
->nxt_offset
;
837 static void prb_retire_current_block(struct tpacket_kbdq_core
*pkc
,
838 struct packet_sock
*po
, unsigned int status
)
840 struct tpacket_block_desc
*pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
842 /* retire/close the current block */
843 if (likely(TP_STATUS_KERNEL
== BLOCK_STATUS(pbd
))) {
845 * Plug the case where copy_bits() is in progress on
846 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
847 * have space to copy the pkt in the current block and
848 * called prb_retire_current_block()
850 * We don't need to worry about the TMO case because
851 * the timer-handler already handled this case.
853 if (!(status
& TP_STATUS_BLK_TMO
)) {
854 while (atomic_read(&pkc
->blk_fill_in_prog
)) {
855 /* Waiting for skb_copy_bits to finish... */
859 prb_close_block(pkc
, pbd
, po
, status
);
864 static int prb_curr_blk_in_use(struct tpacket_kbdq_core
*pkc
,
865 struct tpacket_block_desc
*pbd
)
867 return TP_STATUS_USER
& BLOCK_STATUS(pbd
);
870 static int prb_queue_frozen(struct tpacket_kbdq_core
*pkc
)
872 return pkc
->reset_pending_on_curr_blk
;
875 static void prb_clear_blk_fill_status(struct packet_ring_buffer
*rb
)
877 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
878 atomic_dec(&pkc
->blk_fill_in_prog
);
881 static void prb_fill_rxhash(struct tpacket_kbdq_core
*pkc
,
882 struct tpacket3_hdr
*ppd
)
884 ppd
->hv1
.tp_rxhash
= skb_get_rxhash(pkc
->skb
);
887 static void prb_clear_rxhash(struct tpacket_kbdq_core
*pkc
,
888 struct tpacket3_hdr
*ppd
)
890 ppd
->hv1
.tp_rxhash
= 0;
893 static void prb_fill_vlan_info(struct tpacket_kbdq_core
*pkc
,
894 struct tpacket3_hdr
*ppd
)
896 if (vlan_tx_tag_present(pkc
->skb
)) {
897 ppd
->hv1
.tp_vlan_tci
= vlan_tx_tag_get(pkc
->skb
);
898 ppd
->tp_status
= TP_STATUS_VLAN_VALID
;
900 ppd
->hv1
.tp_vlan_tci
= 0;
901 ppd
->tp_status
= TP_STATUS_AVAILABLE
;
905 static void prb_run_all_ft_ops(struct tpacket_kbdq_core
*pkc
,
906 struct tpacket3_hdr
*ppd
)
908 prb_fill_vlan_info(pkc
, ppd
);
910 if (pkc
->feature_req_word
& TP_FT_REQ_FILL_RXHASH
)
911 prb_fill_rxhash(pkc
, ppd
);
913 prb_clear_rxhash(pkc
, ppd
);
916 static void prb_fill_curr_block(char *curr
,
917 struct tpacket_kbdq_core
*pkc
,
918 struct tpacket_block_desc
*pbd
,
921 struct tpacket3_hdr
*ppd
;
923 ppd
= (struct tpacket3_hdr
*)curr
;
924 ppd
->tp_next_offset
= TOTAL_PKT_LEN_INCL_ALIGN(len
);
926 pkc
->nxt_offset
+= TOTAL_PKT_LEN_INCL_ALIGN(len
);
927 BLOCK_LEN(pbd
) += TOTAL_PKT_LEN_INCL_ALIGN(len
);
928 BLOCK_NUM_PKTS(pbd
) += 1;
929 atomic_inc(&pkc
->blk_fill_in_prog
);
930 prb_run_all_ft_ops(pkc
, ppd
);
933 /* Assumes caller has the sk->rx_queue.lock */
934 static void *__packet_lookup_frame_in_block(struct packet_sock
*po
,
940 struct tpacket_kbdq_core
*pkc
;
941 struct tpacket_block_desc
*pbd
;
944 pkc
= GET_PBDQC_FROM_RB(&po
->rx_ring
);
945 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
947 /* Queue is frozen when user space is lagging behind */
948 if (prb_queue_frozen(pkc
)) {
950 * Check if that last block which caused the queue to freeze,
951 * is still in_use by user-space.
953 if (prb_curr_blk_in_use(pkc
, pbd
)) {
954 /* Can't record this packet */
958 * Ok, the block was released by user-space.
959 * Now let's open that block.
960 * opening a block also thaws the queue.
961 * Thawing is a side effect.
963 prb_open_block(pkc
, pbd
);
968 curr
= pkc
->nxt_offset
;
970 end
= (char *)pbd
+ pkc
->kblk_size
;
972 /* first try the current block */
973 if (curr
+TOTAL_PKT_LEN_INCL_ALIGN(len
) < end
) {
974 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
978 /* Ok, close the current block */
979 prb_retire_current_block(pkc
, po
, 0);
981 /* Now, try to dispatch the next block */
982 curr
= (char *)prb_dispatch_next_block(pkc
, po
);
984 pbd
= GET_CURR_PBLOCK_DESC_FROM_CORE(pkc
);
985 prb_fill_curr_block(curr
, pkc
, pbd
, len
);
990 * No free blocks are available.user_space hasn't caught up yet.
991 * Queue was just frozen and now this packet will get dropped.
996 static void *packet_current_rx_frame(struct packet_sock
*po
,
998 int status
, unsigned int len
)
1001 switch (po
->tp_version
) {
1004 curr
= packet_lookup_frame(po
, &po
->rx_ring
,
1005 po
->rx_ring
.head
, status
);
1008 return __packet_lookup_frame_in_block(po
, skb
, status
, len
);
1010 WARN(1, "TPACKET version not supported\n");
1016 static void *prb_lookup_block(struct packet_sock
*po
,
1017 struct packet_ring_buffer
*rb
,
1021 struct tpacket_kbdq_core
*pkc
= GET_PBDQC_FROM_RB(rb
);
1022 struct tpacket_block_desc
*pbd
= GET_PBLOCK_DESC(pkc
, idx
);
1024 if (status
!= BLOCK_STATUS(pbd
))
1029 static int prb_previous_blk_num(struct packet_ring_buffer
*rb
)
1032 if (rb
->prb_bdqc
.kactive_blk_num
)
1033 prev
= rb
->prb_bdqc
.kactive_blk_num
-1;
1035 prev
= rb
->prb_bdqc
.knum_blocks
-1;
1039 /* Assumes caller has held the rx_queue.lock */
1040 static void *__prb_previous_block(struct packet_sock
*po
,
1041 struct packet_ring_buffer
*rb
,
1044 unsigned int previous
= prb_previous_blk_num(rb
);
1045 return prb_lookup_block(po
, rb
, previous
, status
);
1048 static void *packet_previous_rx_frame(struct packet_sock
*po
,
1049 struct packet_ring_buffer
*rb
,
1052 if (po
->tp_version
<= TPACKET_V2
)
1053 return packet_previous_frame(po
, rb
, status
);
1055 return __prb_previous_block(po
, rb
, status
);
1058 static void packet_increment_rx_head(struct packet_sock
*po
,
1059 struct packet_ring_buffer
*rb
)
1061 switch (po
->tp_version
) {
1064 return packet_increment_head(rb
);
1067 WARN(1, "TPACKET version not supported.\n");
1073 static void *packet_previous_frame(struct packet_sock
*po
,
1074 struct packet_ring_buffer
*rb
,
1077 unsigned int previous
= rb
->head
? rb
->head
- 1 : rb
->frame_max
;
1078 return packet_lookup_frame(po
, rb
, previous
, status
);
1081 static void packet_increment_head(struct packet_ring_buffer
*buff
)
1083 buff
->head
= buff
->head
!= buff
->frame_max
? buff
->head
+1 : 0;
1086 static bool packet_rcv_has_room(struct packet_sock
*po
, struct sk_buff
*skb
)
1088 struct sock
*sk
= &po
->sk
;
1091 if (po
->prot_hook
.func
!= tpacket_rcv
)
1092 return (atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
)
1095 spin_lock(&sk
->sk_receive_queue
.lock
);
1096 if (po
->tp_version
== TPACKET_V3
)
1097 has_room
= prb_lookup_block(po
, &po
->rx_ring
,
1098 po
->rx_ring
.prb_bdqc
.kactive_blk_num
,
1101 has_room
= packet_lookup_frame(po
, &po
->rx_ring
,
1104 spin_unlock(&sk
->sk_receive_queue
.lock
);
1109 static void packet_sock_destruct(struct sock
*sk
)
1111 skb_queue_purge(&sk
->sk_error_queue
);
1113 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
1114 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
1116 if (!sock_flag(sk
, SOCK_DEAD
)) {
1117 pr_err("Attempt to release alive packet socket: %p\n", sk
);
1121 sk_refcnt_debug_dec(sk
);
1124 static int fanout_rr_next(struct packet_fanout
*f
, unsigned int num
)
1126 int x
= atomic_read(&f
->rr_cur
) + 1;
1134 static unsigned int fanout_demux_hash(struct packet_fanout
*f
,
1135 struct sk_buff
*skb
,
1138 return (((u64
)skb
->rxhash
) * num
) >> 32;
1141 static unsigned int fanout_demux_lb(struct packet_fanout
*f
,
1142 struct sk_buff
*skb
,
1147 cur
= atomic_read(&f
->rr_cur
);
1148 while ((old
= atomic_cmpxchg(&f
->rr_cur
, cur
,
1149 fanout_rr_next(f
, num
))) != cur
)
1154 static unsigned int fanout_demux_cpu(struct packet_fanout
*f
,
1155 struct sk_buff
*skb
,
1158 return smp_processor_id() % num
;
1161 static unsigned int fanout_demux_rollover(struct packet_fanout
*f
,
1162 struct sk_buff
*skb
,
1163 unsigned int idx
, unsigned int skip
,
1168 i
= j
= min_t(int, f
->next
[idx
], num
- 1);
1170 if (i
!= skip
&& packet_rcv_has_room(pkt_sk(f
->arr
[i
]), skb
)) {
1182 static bool fanout_has_flag(struct packet_fanout
*f
, u16 flag
)
1184 return f
->flags
& (flag
>> 8);
1187 static int packet_rcv_fanout(struct sk_buff
*skb
, struct net_device
*dev
,
1188 struct packet_type
*pt
, struct net_device
*orig_dev
)
1190 struct packet_fanout
*f
= pt
->af_packet_priv
;
1191 unsigned int num
= f
->num_members
;
1192 struct packet_sock
*po
;
1195 if (!net_eq(dev_net(dev
), read_pnet(&f
->net
)) ||
1202 case PACKET_FANOUT_HASH
:
1204 if (fanout_has_flag(f
, PACKET_FANOUT_FLAG_DEFRAG
)) {
1205 skb
= ip_check_defrag(skb
, IP_DEFRAG_AF_PACKET
);
1209 skb_get_rxhash(skb
);
1210 idx
= fanout_demux_hash(f
, skb
, num
);
1212 case PACKET_FANOUT_LB
:
1213 idx
= fanout_demux_lb(f
, skb
, num
);
1215 case PACKET_FANOUT_CPU
:
1216 idx
= fanout_demux_cpu(f
, skb
, num
);
1218 case PACKET_FANOUT_ROLLOVER
:
1219 idx
= fanout_demux_rollover(f
, skb
, 0, (unsigned int) -1, num
);
1223 po
= pkt_sk(f
->arr
[idx
]);
1224 if (fanout_has_flag(f
, PACKET_FANOUT_FLAG_ROLLOVER
) &&
1225 unlikely(!packet_rcv_has_room(po
, skb
))) {
1226 idx
= fanout_demux_rollover(f
, skb
, idx
, idx
, num
);
1227 po
= pkt_sk(f
->arr
[idx
]);
1230 return po
->prot_hook
.func(skb
, dev
, &po
->prot_hook
, orig_dev
);
1233 DEFINE_MUTEX(fanout_mutex
);
1234 EXPORT_SYMBOL_GPL(fanout_mutex
);
1235 static LIST_HEAD(fanout_list
);
1237 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
)
1239 struct packet_fanout
*f
= po
->fanout
;
1241 spin_lock(&f
->lock
);
1242 f
->arr
[f
->num_members
] = sk
;
1245 spin_unlock(&f
->lock
);
1248 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
)
1250 struct packet_fanout
*f
= po
->fanout
;
1253 spin_lock(&f
->lock
);
1254 for (i
= 0; i
< f
->num_members
; i
++) {
1255 if (f
->arr
[i
] == sk
)
1258 BUG_ON(i
>= f
->num_members
);
1259 f
->arr
[i
] = f
->arr
[f
->num_members
- 1];
1261 spin_unlock(&f
->lock
);
1264 static bool match_fanout_group(struct packet_type
*ptype
, struct sock
* sk
)
1266 if (ptype
->af_packet_priv
== (void*)((struct packet_sock
*)sk
)->fanout
)
1272 static int fanout_add(struct sock
*sk
, u16 id
, u16 type_flags
)
1274 struct packet_sock
*po
= pkt_sk(sk
);
1275 struct packet_fanout
*f
, *match
;
1276 u8 type
= type_flags
& 0xff;
1277 u8 flags
= type_flags
>> 8;
1281 case PACKET_FANOUT_ROLLOVER
:
1282 if (type_flags
& PACKET_FANOUT_FLAG_ROLLOVER
)
1284 case PACKET_FANOUT_HASH
:
1285 case PACKET_FANOUT_LB
:
1286 case PACKET_FANOUT_CPU
:
1298 mutex_lock(&fanout_mutex
);
1300 list_for_each_entry(f
, &fanout_list
, list
) {
1302 read_pnet(&f
->net
) == sock_net(sk
)) {
1308 if (match
&& match
->flags
!= flags
)
1312 match
= kzalloc(sizeof(*match
), GFP_KERNEL
);
1315 write_pnet(&match
->net
, sock_net(sk
));
1318 match
->flags
= flags
;
1319 atomic_set(&match
->rr_cur
, 0);
1320 INIT_LIST_HEAD(&match
->list
);
1321 spin_lock_init(&match
->lock
);
1322 atomic_set(&match
->sk_ref
, 0);
1323 match
->prot_hook
.type
= po
->prot_hook
.type
;
1324 match
->prot_hook
.dev
= po
->prot_hook
.dev
;
1325 match
->prot_hook
.func
= packet_rcv_fanout
;
1326 match
->prot_hook
.af_packet_priv
= match
;
1327 match
->prot_hook
.id_match
= match_fanout_group
;
1328 dev_add_pack(&match
->prot_hook
);
1329 list_add(&match
->list
, &fanout_list
);
1332 if (match
->type
== type
&&
1333 match
->prot_hook
.type
== po
->prot_hook
.type
&&
1334 match
->prot_hook
.dev
== po
->prot_hook
.dev
) {
1336 if (atomic_read(&match
->sk_ref
) < PACKET_FANOUT_MAX
) {
1337 __dev_remove_pack(&po
->prot_hook
);
1339 atomic_inc(&match
->sk_ref
);
1340 __fanout_link(sk
, po
);
1345 mutex_unlock(&fanout_mutex
);
1349 static void fanout_release(struct sock
*sk
)
1351 struct packet_sock
*po
= pkt_sk(sk
);
1352 struct packet_fanout
*f
;
1358 mutex_lock(&fanout_mutex
);
1361 if (atomic_dec_and_test(&f
->sk_ref
)) {
1363 dev_remove_pack(&f
->prot_hook
);
1366 mutex_unlock(&fanout_mutex
);
1369 static const struct proto_ops packet_ops
;
1371 static const struct proto_ops packet_ops_spkt
;
1373 static int packet_rcv_spkt(struct sk_buff
*skb
, struct net_device
*dev
,
1374 struct packet_type
*pt
, struct net_device
*orig_dev
)
1377 struct sockaddr_pkt
*spkt
;
1380 * When we registered the protocol we saved the socket in the data
1381 * field for just this event.
1384 sk
= pt
->af_packet_priv
;
1387 * Yank back the headers [hope the device set this
1388 * right or kerboom...]
1390 * Incoming packets have ll header pulled,
1393 * For outgoing ones skb->data == skb_mac_header(skb)
1394 * so that this procedure is noop.
1397 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1400 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1403 skb
= skb_share_check(skb
, GFP_ATOMIC
);
1407 /* drop any routing info */
1410 /* drop conntrack reference */
1413 spkt
= &PACKET_SKB_CB(skb
)->sa
.pkt
;
1415 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1418 * The SOCK_PACKET socket receives _all_ frames.
1421 spkt
->spkt_family
= dev
->type
;
1422 strlcpy(spkt
->spkt_device
, dev
->name
, sizeof(spkt
->spkt_device
));
1423 spkt
->spkt_protocol
= skb
->protocol
;
1426 * Charge the memory to the socket. This is done specifically
1427 * to prevent sockets using all the memory up.
1430 if (sock_queue_rcv_skb(sk
, skb
) == 0)
1441 * Output a raw packet to a device layer. This bypasses all the other
1442 * protocol layers and you must therefore supply it with a complete frame
1445 static int packet_sendmsg_spkt(struct kiocb
*iocb
, struct socket
*sock
,
1446 struct msghdr
*msg
, size_t len
)
1448 struct sock
*sk
= sock
->sk
;
1449 struct sockaddr_pkt
*saddr
= (struct sockaddr_pkt
*)msg
->msg_name
;
1450 struct sk_buff
*skb
= NULL
;
1451 struct net_device
*dev
;
1457 * Get and verify the address.
1461 if (msg
->msg_namelen
< sizeof(struct sockaddr
))
1463 if (msg
->msg_namelen
== sizeof(struct sockaddr_pkt
))
1464 proto
= saddr
->spkt_protocol
;
1466 return -ENOTCONN
; /* SOCK_PACKET must be sent giving an address */
1469 * Find the device first to size check it
1472 saddr
->spkt_device
[sizeof(saddr
->spkt_device
) - 1] = 0;
1475 dev
= dev_get_by_name_rcu(sock_net(sk
), saddr
->spkt_device
);
1481 if (!(dev
->flags
& IFF_UP
))
1485 * You may not queue a frame bigger than the mtu. This is the lowest level
1486 * raw protocol and you must do your own fragmentation at this level.
1489 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
1490 if (!netif_supports_nofcs(dev
)) {
1491 err
= -EPROTONOSUPPORT
;
1494 extra_len
= 4; /* We're doing our own CRC */
1498 if (len
> dev
->mtu
+ dev
->hard_header_len
+ VLAN_HLEN
+ extra_len
)
1502 size_t reserved
= LL_RESERVED_SPACE(dev
);
1503 int tlen
= dev
->needed_tailroom
;
1504 unsigned int hhlen
= dev
->header_ops
? dev
->hard_header_len
: 0;
1507 skb
= sock_wmalloc(sk
, len
+ reserved
+ tlen
, 0, GFP_KERNEL
);
1510 /* FIXME: Save some space for broken drivers that write a hard
1511 * header at transmission time by themselves. PPP is the notable
1512 * one here. This should really be fixed at the driver level.
1514 skb_reserve(skb
, reserved
);
1515 skb_reset_network_header(skb
);
1517 /* Try to align data part correctly */
1522 skb_reset_network_header(skb
);
1524 err
= memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
);
1530 if (len
> (dev
->mtu
+ dev
->hard_header_len
+ extra_len
)) {
1531 /* Earlier code assumed this would be a VLAN pkt,
1532 * double-check this now that we have the actual
1535 struct ethhdr
*ehdr
;
1536 skb_reset_mac_header(skb
);
1537 ehdr
= eth_hdr(skb
);
1538 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
1544 skb
->protocol
= proto
;
1546 skb
->priority
= sk
->sk_priority
;
1547 skb
->mark
= sk
->sk_mark
;
1549 sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
1551 if (unlikely(extra_len
== 4))
1554 skb_probe_transport_header(skb
, 0);
1556 dev_queue_xmit(skb
);
1567 static unsigned int run_filter(const struct sk_buff
*skb
,
1568 const struct sock
*sk
,
1571 struct sk_filter
*filter
;
1574 filter
= rcu_dereference(sk
->sk_filter
);
1576 res
= SK_RUN_FILTER(filter
, skb
);
1583 * This function makes lazy skb cloning in hope that most of packets
1584 * are discarded by BPF.
1586 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1587 * and skb->cb are mangled. It works because (and until) packets
1588 * falling here are owned by current CPU. Output packets are cloned
1589 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1590 * sequencially, so that if we return skb to original state on exit,
1591 * we will not harm anyone.
1594 static int packet_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1595 struct packet_type
*pt
, struct net_device
*orig_dev
)
1598 struct sockaddr_ll
*sll
;
1599 struct packet_sock
*po
;
1600 u8
*skb_head
= skb
->data
;
1601 int skb_len
= skb
->len
;
1602 unsigned int snaplen
, res
;
1604 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1607 sk
= pt
->af_packet_priv
;
1610 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1615 if (dev
->header_ops
) {
1616 /* The device has an explicit notion of ll header,
1617 * exported to higher levels.
1619 * Otherwise, the device hides details of its frame
1620 * structure, so that corresponding packet head is
1621 * never delivered to user.
1623 if (sk
->sk_type
!= SOCK_DGRAM
)
1624 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1625 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1626 /* Special case: outgoing packets have ll header at head */
1627 skb_pull(skb
, skb_network_offset(skb
));
1633 res
= run_filter(skb
, sk
, snaplen
);
1635 goto drop_n_restore
;
1639 if (atomic_read(&sk
->sk_rmem_alloc
) >= sk
->sk_rcvbuf
)
1642 if (skb_shared(skb
)) {
1643 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
1647 if (skb_head
!= skb
->data
) {
1648 skb
->data
= skb_head
;
1655 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb
)) + MAX_ADDR_LEN
- 8 >
1658 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
1659 sll
->sll_family
= AF_PACKET
;
1660 sll
->sll_hatype
= dev
->type
;
1661 sll
->sll_protocol
= skb
->protocol
;
1662 sll
->sll_pkttype
= skb
->pkt_type
;
1663 if (unlikely(po
->origdev
))
1664 sll
->sll_ifindex
= orig_dev
->ifindex
;
1666 sll
->sll_ifindex
= dev
->ifindex
;
1668 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1670 PACKET_SKB_CB(skb
)->origlen
= skb
->len
;
1672 if (pskb_trim(skb
, snaplen
))
1675 skb_set_owner_r(skb
, sk
);
1679 /* drop conntrack reference */
1682 spin_lock(&sk
->sk_receive_queue
.lock
);
1683 po
->stats
.stats1
.tp_packets
++;
1684 skb
->dropcount
= atomic_read(&sk
->sk_drops
);
1685 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1686 spin_unlock(&sk
->sk_receive_queue
.lock
);
1687 sk
->sk_data_ready(sk
, skb
->len
);
1691 spin_lock(&sk
->sk_receive_queue
.lock
);
1692 po
->stats
.stats1
.tp_drops
++;
1693 atomic_inc(&sk
->sk_drops
);
1694 spin_unlock(&sk
->sk_receive_queue
.lock
);
1697 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1698 skb
->data
= skb_head
;
1706 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1707 struct packet_type
*pt
, struct net_device
*orig_dev
)
1710 struct packet_sock
*po
;
1711 struct sockaddr_ll
*sll
;
1712 union tpacket_uhdr h
;
1713 u8
*skb_head
= skb
->data
;
1714 int skb_len
= skb
->len
;
1715 unsigned int snaplen
, res
;
1716 unsigned long status
= TP_STATUS_USER
;
1717 unsigned short macoff
, netoff
, hdrlen
;
1718 struct sk_buff
*copy_skb
= NULL
;
1722 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1725 sk
= pt
->af_packet_priv
;
1728 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1731 if (dev
->header_ops
) {
1732 if (sk
->sk_type
!= SOCK_DGRAM
)
1733 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1734 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1735 /* Special case: outgoing packets have ll header at head */
1736 skb_pull(skb
, skb_network_offset(skb
));
1740 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
1741 status
|= TP_STATUS_CSUMNOTREADY
;
1745 res
= run_filter(skb
, sk
, snaplen
);
1747 goto drop_n_restore
;
1751 if (sk
->sk_type
== SOCK_DGRAM
) {
1752 macoff
= netoff
= TPACKET_ALIGN(po
->tp_hdrlen
) + 16 +
1755 unsigned int maclen
= skb_network_offset(skb
);
1756 netoff
= TPACKET_ALIGN(po
->tp_hdrlen
+
1757 (maclen
< 16 ? 16 : maclen
)) +
1759 macoff
= netoff
- maclen
;
1761 if (po
->tp_version
<= TPACKET_V2
) {
1762 if (macoff
+ snaplen
> po
->rx_ring
.frame_size
) {
1763 if (po
->copy_thresh
&&
1764 atomic_read(&sk
->sk_rmem_alloc
) < sk
->sk_rcvbuf
) {
1765 if (skb_shared(skb
)) {
1766 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
1768 copy_skb
= skb_get(skb
);
1769 skb_head
= skb
->data
;
1772 skb_set_owner_r(copy_skb
, sk
);
1774 snaplen
= po
->rx_ring
.frame_size
- macoff
;
1775 if ((int)snaplen
< 0)
1779 spin_lock(&sk
->sk_receive_queue
.lock
);
1780 h
.raw
= packet_current_rx_frame(po
, skb
,
1781 TP_STATUS_KERNEL
, (macoff
+snaplen
));
1784 if (po
->tp_version
<= TPACKET_V2
) {
1785 packet_increment_rx_head(po
, &po
->rx_ring
);
1787 * LOSING will be reported till you read the stats,
1788 * because it's COR - Clear On Read.
1789 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1792 if (po
->stats
.stats1
.tp_drops
)
1793 status
|= TP_STATUS_LOSING
;
1795 po
->stats
.stats1
.tp_packets
++;
1797 status
|= TP_STATUS_COPY
;
1798 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
1800 spin_unlock(&sk
->sk_receive_queue
.lock
);
1802 skb_copy_bits(skb
, 0, h
.raw
+ macoff
, snaplen
);
1804 if (!(ts_status
= tpacket_get_timestamp(skb
, &ts
, po
->tp_tstamp
)))
1805 getnstimeofday(&ts
);
1807 status
|= ts_status
;
1809 switch (po
->tp_version
) {
1811 h
.h1
->tp_len
= skb
->len
;
1812 h
.h1
->tp_snaplen
= snaplen
;
1813 h
.h1
->tp_mac
= macoff
;
1814 h
.h1
->tp_net
= netoff
;
1815 h
.h1
->tp_sec
= ts
.tv_sec
;
1816 h
.h1
->tp_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
1817 hdrlen
= sizeof(*h
.h1
);
1820 h
.h2
->tp_len
= skb
->len
;
1821 h
.h2
->tp_snaplen
= snaplen
;
1822 h
.h2
->tp_mac
= macoff
;
1823 h
.h2
->tp_net
= netoff
;
1824 h
.h2
->tp_sec
= ts
.tv_sec
;
1825 h
.h2
->tp_nsec
= ts
.tv_nsec
;
1826 if (vlan_tx_tag_present(skb
)) {
1827 h
.h2
->tp_vlan_tci
= vlan_tx_tag_get(skb
);
1828 status
|= TP_STATUS_VLAN_VALID
;
1830 h
.h2
->tp_vlan_tci
= 0;
1832 h
.h2
->tp_padding
= 0;
1833 hdrlen
= sizeof(*h
.h2
);
1836 /* tp_nxt_offset,vlan are already populated above.
1837 * So DONT clear those fields here
1839 h
.h3
->tp_status
|= status
;
1840 h
.h3
->tp_len
= skb
->len
;
1841 h
.h3
->tp_snaplen
= snaplen
;
1842 h
.h3
->tp_mac
= macoff
;
1843 h
.h3
->tp_net
= netoff
;
1844 h
.h3
->tp_sec
= ts
.tv_sec
;
1845 h
.h3
->tp_nsec
= ts
.tv_nsec
;
1846 hdrlen
= sizeof(*h
.h3
);
1852 sll
= h
.raw
+ TPACKET_ALIGN(hdrlen
);
1853 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1854 sll
->sll_family
= AF_PACKET
;
1855 sll
->sll_hatype
= dev
->type
;
1856 sll
->sll_protocol
= skb
->protocol
;
1857 sll
->sll_pkttype
= skb
->pkt_type
;
1858 if (unlikely(po
->origdev
))
1859 sll
->sll_ifindex
= orig_dev
->ifindex
;
1861 sll
->sll_ifindex
= dev
->ifindex
;
1864 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
1868 if (po
->tp_version
<= TPACKET_V2
) {
1869 end
= (u8
*)PAGE_ALIGN((unsigned long)h
.raw
1870 + macoff
+ snaplen
);
1871 for (start
= h
.raw
; start
< end
; start
+= PAGE_SIZE
)
1872 flush_dcache_page(pgv_to_page(start
));
1877 if (po
->tp_version
<= TPACKET_V2
)
1878 __packet_set_status(po
, h
.raw
, status
);
1880 prb_clear_blk_fill_status(&po
->rx_ring
);
1882 sk
->sk_data_ready(sk
, 0);
1885 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1886 skb
->data
= skb_head
;
1894 po
->stats
.stats1
.tp_drops
++;
1895 spin_unlock(&sk
->sk_receive_queue
.lock
);
1897 sk
->sk_data_ready(sk
, 0);
1898 kfree_skb(copy_skb
);
1899 goto drop_n_restore
;
1902 static void tpacket_destruct_skb(struct sk_buff
*skb
)
1904 struct packet_sock
*po
= pkt_sk(skb
->sk
);
1907 if (likely(po
->tx_ring
.pg_vec
)) {
1910 ph
= skb_shinfo(skb
)->destructor_arg
;
1911 BUG_ON(atomic_read(&po
->tx_ring
.pending
) == 0);
1912 atomic_dec(&po
->tx_ring
.pending
);
1914 ts
= __packet_set_timestamp(po
, ph
, skb
);
1915 __packet_set_status(po
, ph
, TP_STATUS_AVAILABLE
| ts
);
1921 static int tpacket_fill_skb(struct packet_sock
*po
, struct sk_buff
*skb
,
1922 void *frame
, struct net_device
*dev
, int size_max
,
1923 __be16 proto
, unsigned char *addr
, int hlen
)
1925 union tpacket_uhdr ph
;
1926 int to_write
, offset
, len
, tp_len
, nr_frags
, len_max
;
1927 struct socket
*sock
= po
->sk
.sk_socket
;
1934 skb
->protocol
= proto
;
1936 skb
->priority
= po
->sk
.sk_priority
;
1937 skb
->mark
= po
->sk
.sk_mark
;
1938 sock_tx_timestamp(&po
->sk
, &skb_shinfo(skb
)->tx_flags
);
1939 skb_shinfo(skb
)->destructor_arg
= ph
.raw
;
1941 switch (po
->tp_version
) {
1943 tp_len
= ph
.h2
->tp_len
;
1946 tp_len
= ph
.h1
->tp_len
;
1949 if (unlikely(tp_len
> size_max
)) {
1950 pr_err("packet size is too long (%d > %d)\n", tp_len
, size_max
);
1954 skb_reserve(skb
, hlen
);
1955 skb_reset_network_header(skb
);
1956 skb_probe_transport_header(skb
, 0);
1958 if (po
->tp_tx_has_off
) {
1959 int off_min
, off_max
, off
;
1960 off_min
= po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1961 off_max
= po
->tx_ring
.frame_size
- tp_len
;
1962 if (sock
->type
== SOCK_DGRAM
) {
1963 switch (po
->tp_version
) {
1965 off
= ph
.h2
->tp_net
;
1968 off
= ph
.h1
->tp_net
;
1972 switch (po
->tp_version
) {
1974 off
= ph
.h2
->tp_mac
;
1977 off
= ph
.h1
->tp_mac
;
1981 if (unlikely((off
< off_min
) || (off_max
< off
)))
1983 data
= ph
.raw
+ off
;
1985 data
= ph
.raw
+ po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1989 if (sock
->type
== SOCK_DGRAM
) {
1990 err
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
,
1992 if (unlikely(err
< 0))
1994 } else if (dev
->hard_header_len
) {
1995 /* net device doesn't like empty head */
1996 if (unlikely(tp_len
<= dev
->hard_header_len
)) {
1997 pr_err("packet size is too short (%d < %d)\n",
1998 tp_len
, dev
->hard_header_len
);
2002 skb_push(skb
, dev
->hard_header_len
);
2003 err
= skb_store_bits(skb
, 0, data
,
2004 dev
->hard_header_len
);
2008 data
+= dev
->hard_header_len
;
2009 to_write
-= dev
->hard_header_len
;
2012 offset
= offset_in_page(data
);
2013 len_max
= PAGE_SIZE
- offset
;
2014 len
= ((to_write
> len_max
) ? len_max
: to_write
);
2016 skb
->data_len
= to_write
;
2017 skb
->len
+= to_write
;
2018 skb
->truesize
+= to_write
;
2019 atomic_add(to_write
, &po
->sk
.sk_wmem_alloc
);
2021 while (likely(to_write
)) {
2022 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2024 if (unlikely(nr_frags
>= MAX_SKB_FRAGS
)) {
2025 pr_err("Packet exceed the number of skb frags(%lu)\n",
2030 page
= pgv_to_page(data
);
2032 flush_dcache_page(page
);
2034 skb_fill_page_desc(skb
, nr_frags
, page
, offset
, len
);
2037 len_max
= PAGE_SIZE
;
2038 len
= ((to_write
> len_max
) ? len_max
: to_write
);
2044 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
)
2046 struct sk_buff
*skb
;
2047 struct net_device
*dev
;
2049 bool need_rls_dev
= false;
2050 int err
, reserve
= 0;
2052 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
2053 int tp_len
, size_max
;
2054 unsigned char *addr
;
2056 int status
= TP_STATUS_AVAILABLE
;
2059 mutex_lock(&po
->pg_vec_lock
);
2061 if (saddr
== NULL
) {
2062 dev
= po
->prot_hook
.dev
;
2067 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
2069 if (msg
->msg_namelen
< (saddr
->sll_halen
2070 + offsetof(struct sockaddr_ll
,
2073 proto
= saddr
->sll_protocol
;
2074 addr
= saddr
->sll_addr
;
2075 dev
= dev_get_by_index(sock_net(&po
->sk
), saddr
->sll_ifindex
);
2076 need_rls_dev
= true;
2080 if (unlikely(dev
== NULL
))
2083 reserve
= dev
->hard_header_len
;
2086 if (unlikely(!(dev
->flags
& IFF_UP
)))
2089 size_max
= po
->tx_ring
.frame_size
2090 - (po
->tp_hdrlen
- sizeof(struct sockaddr_ll
));
2092 if (size_max
> dev
->mtu
+ reserve
)
2093 size_max
= dev
->mtu
+ reserve
;
2096 ph
= packet_current_frame(po
, &po
->tx_ring
,
2097 TP_STATUS_SEND_REQUEST
);
2099 if (unlikely(ph
== NULL
)) {
2104 status
= TP_STATUS_SEND_REQUEST
;
2105 hlen
= LL_RESERVED_SPACE(dev
);
2106 tlen
= dev
->needed_tailroom
;
2107 skb
= sock_alloc_send_skb(&po
->sk
,
2108 hlen
+ tlen
+ sizeof(struct sockaddr_ll
),
2111 if (unlikely(skb
== NULL
))
2114 tp_len
= tpacket_fill_skb(po
, skb
, ph
, dev
, size_max
, proto
,
2117 if (unlikely(tp_len
< 0)) {
2119 __packet_set_status(po
, ph
,
2120 TP_STATUS_AVAILABLE
);
2121 packet_increment_head(&po
->tx_ring
);
2125 status
= TP_STATUS_WRONG_FORMAT
;
2131 skb
->destructor
= tpacket_destruct_skb
;
2132 __packet_set_status(po
, ph
, TP_STATUS_SENDING
);
2133 atomic_inc(&po
->tx_ring
.pending
);
2135 status
= TP_STATUS_SEND_REQUEST
;
2136 err
= dev_queue_xmit(skb
);
2137 if (unlikely(err
> 0)) {
2138 err
= net_xmit_errno(err
);
2139 if (err
&& __packet_get_status(po
, ph
) ==
2140 TP_STATUS_AVAILABLE
) {
2141 /* skb was destructed already */
2146 * skb was dropped but not destructed yet;
2147 * let's treat it like congestion or err < 0
2151 packet_increment_head(&po
->tx_ring
);
2153 } while (likely((ph
!= NULL
) ||
2154 ((!(msg
->msg_flags
& MSG_DONTWAIT
)) &&
2155 (atomic_read(&po
->tx_ring
.pending
))))
2162 __packet_set_status(po
, ph
, status
);
2168 mutex_unlock(&po
->pg_vec_lock
);
2172 static struct sk_buff
*packet_alloc_skb(struct sock
*sk
, size_t prepad
,
2173 size_t reserve
, size_t len
,
2174 size_t linear
, int noblock
,
2177 struct sk_buff
*skb
;
2179 /* Under a page? Don't bother with paged skb. */
2180 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
2183 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
2188 skb_reserve(skb
, reserve
);
2189 skb_put(skb
, linear
);
2190 skb
->data_len
= len
- linear
;
2191 skb
->len
+= len
- linear
;
2196 static int packet_snd(struct socket
*sock
,
2197 struct msghdr
*msg
, size_t len
)
2199 struct sock
*sk
= sock
->sk
;
2200 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
2201 struct sk_buff
*skb
;
2202 struct net_device
*dev
;
2204 bool need_rls_dev
= false;
2205 unsigned char *addr
;
2206 int err
, reserve
= 0;
2207 struct virtio_net_hdr vnet_hdr
= { 0 };
2210 struct packet_sock
*po
= pkt_sk(sk
);
2211 unsigned short gso_type
= 0;
2216 * Get and verify the address.
2219 if (saddr
== NULL
) {
2220 dev
= po
->prot_hook
.dev
;
2225 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
2227 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
2229 proto
= saddr
->sll_protocol
;
2230 addr
= saddr
->sll_addr
;
2231 dev
= dev_get_by_index(sock_net(sk
), saddr
->sll_ifindex
);
2232 need_rls_dev
= true;
2238 if (sock
->type
== SOCK_RAW
)
2239 reserve
= dev
->hard_header_len
;
2242 if (!(dev
->flags
& IFF_UP
))
2245 if (po
->has_vnet_hdr
) {
2246 vnet_hdr_len
= sizeof(vnet_hdr
);
2249 if (len
< vnet_hdr_len
)
2252 len
-= vnet_hdr_len
;
2254 err
= memcpy_fromiovec((void *)&vnet_hdr
, msg
->msg_iov
,
2259 if ((vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
2260 (vnet_hdr
.csum_start
+ vnet_hdr
.csum_offset
+ 2 >
2262 vnet_hdr
.hdr_len
= vnet_hdr
.csum_start
+
2263 vnet_hdr
.csum_offset
+ 2;
2266 if (vnet_hdr
.hdr_len
> len
)
2269 if (vnet_hdr
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
2270 switch (vnet_hdr
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
2271 case VIRTIO_NET_HDR_GSO_TCPV4
:
2272 gso_type
= SKB_GSO_TCPV4
;
2274 case VIRTIO_NET_HDR_GSO_TCPV6
:
2275 gso_type
= SKB_GSO_TCPV6
;
2277 case VIRTIO_NET_HDR_GSO_UDP
:
2278 gso_type
= SKB_GSO_UDP
;
2284 if (vnet_hdr
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
2285 gso_type
|= SKB_GSO_TCP_ECN
;
2287 if (vnet_hdr
.gso_size
== 0)
2293 if (unlikely(sock_flag(sk
, SOCK_NOFCS
))) {
2294 if (!netif_supports_nofcs(dev
)) {
2295 err
= -EPROTONOSUPPORT
;
2298 extra_len
= 4; /* We're doing our own CRC */
2302 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ VLAN_HLEN
+ extra_len
))
2306 hlen
= LL_RESERVED_SPACE(dev
);
2307 tlen
= dev
->needed_tailroom
;
2308 skb
= packet_alloc_skb(sk
, hlen
+ tlen
, hlen
, len
, vnet_hdr
.hdr_len
,
2309 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
2313 skb_set_network_header(skb
, reserve
);
2316 if (sock
->type
== SOCK_DGRAM
&&
2317 (offset
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
)) < 0)
2320 /* Returns -EFAULT on error */
2321 err
= skb_copy_datagram_from_iovec(skb
, offset
, msg
->msg_iov
, 0, len
);
2325 sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
2327 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ extra_len
)) {
2328 /* Earlier code assumed this would be a VLAN pkt,
2329 * double-check this now that we have the actual
2332 struct ethhdr
*ehdr
;
2333 skb_reset_mac_header(skb
);
2334 ehdr
= eth_hdr(skb
);
2335 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
2341 skb
->protocol
= proto
;
2343 skb
->priority
= sk
->sk_priority
;
2344 skb
->mark
= sk
->sk_mark
;
2346 if (po
->has_vnet_hdr
) {
2347 if (vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
2348 if (!skb_partial_csum_set(skb
, vnet_hdr
.csum_start
,
2349 vnet_hdr
.csum_offset
)) {
2355 skb_shinfo(skb
)->gso_size
= vnet_hdr
.gso_size
;
2356 skb_shinfo(skb
)->gso_type
= gso_type
;
2358 /* Header must be checked, and gso_segs computed. */
2359 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
2360 skb_shinfo(skb
)->gso_segs
= 0;
2362 len
+= vnet_hdr_len
;
2365 skb_probe_transport_header(skb
, reserve
);
2367 if (unlikely(extra_len
== 4))
2374 err
= dev_queue_xmit(skb
);
2375 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
2386 if (dev
&& need_rls_dev
)
2392 static int packet_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
2393 struct msghdr
*msg
, size_t len
)
2395 struct sock
*sk
= sock
->sk
;
2396 struct packet_sock
*po
= pkt_sk(sk
);
2397 if (po
->tx_ring
.pg_vec
)
2398 return tpacket_snd(po
, msg
);
2400 return packet_snd(sock
, msg
, len
);
2404 * Close a PACKET socket. This is fairly simple. We immediately go
2405 * to 'closed' state and remove our protocol entry in the device list.
2408 static int packet_release(struct socket
*sock
)
2410 struct sock
*sk
= sock
->sk
;
2411 struct packet_sock
*po
;
2413 union tpacket_req_u req_u
;
2421 mutex_lock(&net
->packet
.sklist_lock
);
2422 sk_del_node_init_rcu(sk
);
2423 mutex_unlock(&net
->packet
.sklist_lock
);
2426 sock_prot_inuse_add(net
, sk
->sk_prot
, -1);
2429 spin_lock(&po
->bind_lock
);
2430 unregister_prot_hook(sk
, false);
2431 if (po
->prot_hook
.dev
) {
2432 dev_put(po
->prot_hook
.dev
);
2433 po
->prot_hook
.dev
= NULL
;
2435 spin_unlock(&po
->bind_lock
);
2437 packet_flush_mclist(sk
);
2439 if (po
->rx_ring
.pg_vec
) {
2440 memset(&req_u
, 0, sizeof(req_u
));
2441 packet_set_ring(sk
, &req_u
, 1, 0);
2444 if (po
->tx_ring
.pg_vec
) {
2445 memset(&req_u
, 0, sizeof(req_u
));
2446 packet_set_ring(sk
, &req_u
, 1, 1);
2453 * Now the socket is dead. No more input will appear.
2460 skb_queue_purge(&sk
->sk_receive_queue
);
2461 sk_refcnt_debug_release(sk
);
2468 * Attach a packet hook.
2471 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 protocol
)
2473 struct packet_sock
*po
= pkt_sk(sk
);
2484 spin_lock(&po
->bind_lock
);
2485 unregister_prot_hook(sk
, true);
2487 po
->prot_hook
.type
= protocol
;
2488 if (po
->prot_hook
.dev
)
2489 dev_put(po
->prot_hook
.dev
);
2490 po
->prot_hook
.dev
= dev
;
2492 po
->ifindex
= dev
? dev
->ifindex
: 0;
2497 if (!dev
|| (dev
->flags
& IFF_UP
)) {
2498 register_prot_hook(sk
);
2500 sk
->sk_err
= ENETDOWN
;
2501 if (!sock_flag(sk
, SOCK_DEAD
))
2502 sk
->sk_error_report(sk
);
2506 spin_unlock(&po
->bind_lock
);
2512 * Bind a packet socket to a device
2515 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2518 struct sock
*sk
= sock
->sk
;
2520 struct net_device
*dev
;
2527 if (addr_len
!= sizeof(struct sockaddr
))
2529 strlcpy(name
, uaddr
->sa_data
, sizeof(name
));
2531 dev
= dev_get_by_name(sock_net(sk
), name
);
2533 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
2537 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
2539 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
2540 struct sock
*sk
= sock
->sk
;
2541 struct net_device
*dev
= NULL
;
2549 if (addr_len
< sizeof(struct sockaddr_ll
))
2551 if (sll
->sll_family
!= AF_PACKET
)
2554 if (sll
->sll_ifindex
) {
2556 dev
= dev_get_by_index(sock_net(sk
), sll
->sll_ifindex
);
2560 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
2566 static struct proto packet_proto
= {
2568 .owner
= THIS_MODULE
,
2569 .obj_size
= sizeof(struct packet_sock
),
2573 * Create a packet of type SOCK_PACKET.
2576 static int packet_create(struct net
*net
, struct socket
*sock
, int protocol
,
2580 struct packet_sock
*po
;
2581 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
2584 if (!ns_capable(net
->user_ns
, CAP_NET_RAW
))
2586 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
&&
2587 sock
->type
!= SOCK_PACKET
)
2588 return -ESOCKTNOSUPPORT
;
2590 sock
->state
= SS_UNCONNECTED
;
2593 sk
= sk_alloc(net
, PF_PACKET
, GFP_KERNEL
, &packet_proto
);
2597 sock
->ops
= &packet_ops
;
2598 if (sock
->type
== SOCK_PACKET
)
2599 sock
->ops
= &packet_ops_spkt
;
2601 sock_init_data(sock
, sk
);
2604 sk
->sk_family
= PF_PACKET
;
2607 sk
->sk_destruct
= packet_sock_destruct
;
2608 sk_refcnt_debug_inc(sk
);
2611 * Attach a protocol block
2614 spin_lock_init(&po
->bind_lock
);
2615 mutex_init(&po
->pg_vec_lock
);
2616 po
->prot_hook
.func
= packet_rcv
;
2618 if (sock
->type
== SOCK_PACKET
)
2619 po
->prot_hook
.func
= packet_rcv_spkt
;
2621 po
->prot_hook
.af_packet_priv
= sk
;
2624 po
->prot_hook
.type
= proto
;
2625 register_prot_hook(sk
);
2628 mutex_lock(&net
->packet
.sklist_lock
);
2629 sk_add_node_rcu(sk
, &net
->packet
.sklist
);
2630 mutex_unlock(&net
->packet
.sklist_lock
);
2633 sock_prot_inuse_add(net
, &packet_proto
, 1);
2641 static int packet_recv_error(struct sock
*sk
, struct msghdr
*msg
, int len
)
2643 struct sock_exterr_skb
*serr
;
2644 struct sk_buff
*skb
, *skb2
;
2648 skb
= skb_dequeue(&sk
->sk_error_queue
);
2654 msg
->msg_flags
|= MSG_TRUNC
;
2657 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2661 sock_recv_timestamp(msg
, sk
, skb
);
2663 serr
= SKB_EXT_ERR(skb
);
2664 put_cmsg(msg
, SOL_PACKET
, PACKET_TX_TIMESTAMP
,
2665 sizeof(serr
->ee
), &serr
->ee
);
2667 msg
->msg_flags
|= MSG_ERRQUEUE
;
2670 /* Reset and regenerate socket error */
2671 spin_lock_bh(&sk
->sk_error_queue
.lock
);
2673 if ((skb2
= skb_peek(&sk
->sk_error_queue
)) != NULL
) {
2674 sk
->sk_err
= SKB_EXT_ERR(skb2
)->ee
.ee_errno
;
2675 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
2676 sk
->sk_error_report(sk
);
2678 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
2687 * Pull a packet from our receive queue and hand it to the user.
2688 * If necessary we block.
2691 static int packet_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
2692 struct msghdr
*msg
, size_t len
, int flags
)
2694 struct sock
*sk
= sock
->sk
;
2695 struct sk_buff
*skb
;
2697 struct sockaddr_ll
*sll
;
2698 int vnet_hdr_len
= 0;
2701 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
|MSG_ERRQUEUE
))
2705 /* What error should we return now? EUNATTACH? */
2706 if (pkt_sk(sk
)->ifindex
< 0)
2710 if (flags
& MSG_ERRQUEUE
) {
2711 err
= packet_recv_error(sk
, msg
, len
);
2716 * Call the generic datagram receiver. This handles all sorts
2717 * of horrible races and re-entrancy so we can forget about it
2718 * in the protocol layers.
2720 * Now it will return ENETDOWN, if device have just gone down,
2721 * but then it will block.
2724 skb
= skb_recv_datagram(sk
, flags
, flags
& MSG_DONTWAIT
, &err
);
2727 * An error occurred so return it. Because skb_recv_datagram()
2728 * handles the blocking we don't see and worry about blocking
2735 if (pkt_sk(sk
)->has_vnet_hdr
) {
2736 struct virtio_net_hdr vnet_hdr
= { 0 };
2739 vnet_hdr_len
= sizeof(vnet_hdr
);
2740 if (len
< vnet_hdr_len
)
2743 len
-= vnet_hdr_len
;
2745 if (skb_is_gso(skb
)) {
2746 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
2748 /* This is a hint as to how much should be linear. */
2749 vnet_hdr
.hdr_len
= skb_headlen(skb
);
2750 vnet_hdr
.gso_size
= sinfo
->gso_size
;
2751 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
2752 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
2753 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
2754 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
2755 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
2756 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
2757 else if (sinfo
->gso_type
& SKB_GSO_FCOE
)
2761 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
2762 vnet_hdr
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
2764 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
2766 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2767 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
2768 vnet_hdr
.csum_start
= skb_checksum_start_offset(skb
);
2769 vnet_hdr
.csum_offset
= skb
->csum_offset
;
2770 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
2771 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
2772 } /* else everything is zero */
2774 err
= memcpy_toiovec(msg
->msg_iov
, (void *)&vnet_hdr
,
2781 * If the address length field is there to be filled in, we fill
2785 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
2786 if (sock
->type
== SOCK_PACKET
)
2787 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
2789 msg
->msg_namelen
= sll
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
);
2792 * You lose any data beyond the buffer you gave. If it worries a
2793 * user program they can ask the device for its MTU anyway.
2799 msg
->msg_flags
|= MSG_TRUNC
;
2802 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2806 sock_recv_ts_and_drops(msg
, sk
, skb
);
2809 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
2812 if (pkt_sk(sk
)->auxdata
) {
2813 struct tpacket_auxdata aux
;
2815 aux
.tp_status
= TP_STATUS_USER
;
2816 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2817 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
2818 aux
.tp_len
= PACKET_SKB_CB(skb
)->origlen
;
2819 aux
.tp_snaplen
= skb
->len
;
2821 aux
.tp_net
= skb_network_offset(skb
);
2822 if (vlan_tx_tag_present(skb
)) {
2823 aux
.tp_vlan_tci
= vlan_tx_tag_get(skb
);
2824 aux
.tp_status
|= TP_STATUS_VLAN_VALID
;
2826 aux
.tp_vlan_tci
= 0;
2829 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
2833 * Free or return the buffer as appropriate. Again this
2834 * hides all the races and re-entrancy issues from us.
2836 err
= vnet_hdr_len
+ ((flags
&MSG_TRUNC
) ? skb
->len
: copied
);
2839 skb_free_datagram(sk
, skb
);
2844 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2845 int *uaddr_len
, int peer
)
2847 struct net_device
*dev
;
2848 struct sock
*sk
= sock
->sk
;
2853 uaddr
->sa_family
= AF_PACKET
;
2854 memset(uaddr
->sa_data
, 0, sizeof(uaddr
->sa_data
));
2856 dev
= dev_get_by_index_rcu(sock_net(sk
), pkt_sk(sk
)->ifindex
);
2858 strlcpy(uaddr
->sa_data
, dev
->name
, sizeof(uaddr
->sa_data
));
2860 *uaddr_len
= sizeof(*uaddr
);
2865 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
2866 int *uaddr_len
, int peer
)
2868 struct net_device
*dev
;
2869 struct sock
*sk
= sock
->sk
;
2870 struct packet_sock
*po
= pkt_sk(sk
);
2871 DECLARE_SOCKADDR(struct sockaddr_ll
*, sll
, uaddr
);
2876 sll
->sll_family
= AF_PACKET
;
2877 sll
->sll_ifindex
= po
->ifindex
;
2878 sll
->sll_protocol
= po
->num
;
2879 sll
->sll_pkttype
= 0;
2881 dev
= dev_get_by_index_rcu(sock_net(sk
), po
->ifindex
);
2883 sll
->sll_hatype
= dev
->type
;
2884 sll
->sll_halen
= dev
->addr_len
;
2885 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
2887 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
2891 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
2896 static int packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
,
2900 case PACKET_MR_MULTICAST
:
2901 if (i
->alen
!= dev
->addr_len
)
2904 return dev_mc_add(dev
, i
->addr
);
2906 return dev_mc_del(dev
, i
->addr
);
2908 case PACKET_MR_PROMISC
:
2909 return dev_set_promiscuity(dev
, what
);
2911 case PACKET_MR_ALLMULTI
:
2912 return dev_set_allmulti(dev
, what
);
2914 case PACKET_MR_UNICAST
:
2915 if (i
->alen
!= dev
->addr_len
)
2918 return dev_uc_add(dev
, i
->addr
);
2920 return dev_uc_del(dev
, i
->addr
);
2928 static void packet_dev_mclist(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
2930 for ( ; i
; i
= i
->next
) {
2931 if (i
->ifindex
== dev
->ifindex
)
2932 packet_dev_mc(dev
, i
, what
);
2936 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2938 struct packet_sock
*po
= pkt_sk(sk
);
2939 struct packet_mclist
*ml
, *i
;
2940 struct net_device
*dev
;
2946 dev
= __dev_get_by_index(sock_net(sk
), mreq
->mr_ifindex
);
2951 if (mreq
->mr_alen
> dev
->addr_len
)
2955 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
2960 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
2961 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2962 ml
->type
== mreq
->mr_type
&&
2963 ml
->alen
== mreq
->mr_alen
&&
2964 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2966 /* Free the new element ... */
2972 i
->type
= mreq
->mr_type
;
2973 i
->ifindex
= mreq
->mr_ifindex
;
2974 i
->alen
= mreq
->mr_alen
;
2975 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
2977 i
->next
= po
->mclist
;
2979 err
= packet_dev_mc(dev
, i
, 1);
2981 po
->mclist
= i
->next
;
2990 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2992 struct packet_mclist
*ml
, **mlp
;
2996 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
2997 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2998 ml
->type
== mreq
->mr_type
&&
2999 ml
->alen
== mreq
->mr_alen
&&
3000 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
3001 if (--ml
->count
== 0) {
3002 struct net_device
*dev
;
3004 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
3006 packet_dev_mc(dev
, ml
, -1);
3014 return -EADDRNOTAVAIL
;
3017 static void packet_flush_mclist(struct sock
*sk
)
3019 struct packet_sock
*po
= pkt_sk(sk
);
3020 struct packet_mclist
*ml
;
3026 while ((ml
= po
->mclist
) != NULL
) {
3027 struct net_device
*dev
;
3029 po
->mclist
= ml
->next
;
3030 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
3032 packet_dev_mc(dev
, ml
, -1);
3039 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, unsigned int optlen
)
3041 struct sock
*sk
= sock
->sk
;
3042 struct packet_sock
*po
= pkt_sk(sk
);
3045 if (level
!= SOL_PACKET
)
3046 return -ENOPROTOOPT
;
3049 case PACKET_ADD_MEMBERSHIP
:
3050 case PACKET_DROP_MEMBERSHIP
:
3052 struct packet_mreq_max mreq
;
3054 memset(&mreq
, 0, sizeof(mreq
));
3055 if (len
< sizeof(struct packet_mreq
))
3057 if (len
> sizeof(mreq
))
3059 if (copy_from_user(&mreq
, optval
, len
))
3061 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
3063 if (optname
== PACKET_ADD_MEMBERSHIP
)
3064 ret
= packet_mc_add(sk
, &mreq
);
3066 ret
= packet_mc_drop(sk
, &mreq
);
3070 case PACKET_RX_RING
:
3071 case PACKET_TX_RING
:
3073 union tpacket_req_u req_u
;
3076 switch (po
->tp_version
) {
3079 len
= sizeof(req_u
.req
);
3083 len
= sizeof(req_u
.req3
);
3088 if (pkt_sk(sk
)->has_vnet_hdr
)
3090 if (copy_from_user(&req_u
.req
, optval
, len
))
3092 return packet_set_ring(sk
, &req_u
, 0,
3093 optname
== PACKET_TX_RING
);
3095 case PACKET_COPY_THRESH
:
3099 if (optlen
!= sizeof(val
))
3101 if (copy_from_user(&val
, optval
, sizeof(val
)))
3104 pkt_sk(sk
)->copy_thresh
= val
;
3107 case PACKET_VERSION
:
3111 if (optlen
!= sizeof(val
))
3113 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3115 if (copy_from_user(&val
, optval
, sizeof(val
)))
3121 po
->tp_version
= val
;
3127 case PACKET_RESERVE
:
3131 if (optlen
!= sizeof(val
))
3133 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3135 if (copy_from_user(&val
, optval
, sizeof(val
)))
3137 po
->tp_reserve
= val
;
3144 if (optlen
!= sizeof(val
))
3146 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3148 if (copy_from_user(&val
, optval
, sizeof(val
)))
3150 po
->tp_loss
= !!val
;
3153 case PACKET_AUXDATA
:
3157 if (optlen
< sizeof(val
))
3159 if (copy_from_user(&val
, optval
, sizeof(val
)))
3162 po
->auxdata
= !!val
;
3165 case PACKET_ORIGDEV
:
3169 if (optlen
< sizeof(val
))
3171 if (copy_from_user(&val
, optval
, sizeof(val
)))
3174 po
->origdev
= !!val
;
3177 case PACKET_VNET_HDR
:
3181 if (sock
->type
!= SOCK_RAW
)
3183 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3185 if (optlen
< sizeof(val
))
3187 if (copy_from_user(&val
, optval
, sizeof(val
)))
3190 po
->has_vnet_hdr
= !!val
;
3193 case PACKET_TIMESTAMP
:
3197 if (optlen
!= sizeof(val
))
3199 if (copy_from_user(&val
, optval
, sizeof(val
)))
3202 po
->tp_tstamp
= val
;
3209 if (optlen
!= sizeof(val
))
3211 if (copy_from_user(&val
, optval
, sizeof(val
)))
3214 return fanout_add(sk
, val
& 0xffff, val
>> 16);
3216 case PACKET_TX_HAS_OFF
:
3220 if (optlen
!= sizeof(val
))
3222 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
3224 if (copy_from_user(&val
, optval
, sizeof(val
)))
3226 po
->tp_tx_has_off
= !!val
;
3230 return -ENOPROTOOPT
;
3234 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
3235 char __user
*optval
, int __user
*optlen
)
3238 int val
, lv
= sizeof(val
);
3239 struct sock
*sk
= sock
->sk
;
3240 struct packet_sock
*po
= pkt_sk(sk
);
3242 union tpacket_stats_u st
;
3244 if (level
!= SOL_PACKET
)
3245 return -ENOPROTOOPT
;
3247 if (get_user(len
, optlen
))
3254 case PACKET_STATISTICS
:
3255 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3256 memcpy(&st
, &po
->stats
, sizeof(st
));
3257 memset(&po
->stats
, 0, sizeof(po
->stats
));
3258 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3260 if (po
->tp_version
== TPACKET_V3
) {
3261 lv
= sizeof(struct tpacket_stats_v3
);
3264 lv
= sizeof(struct tpacket_stats
);
3269 case PACKET_AUXDATA
:
3272 case PACKET_ORIGDEV
:
3275 case PACKET_VNET_HDR
:
3276 val
= po
->has_vnet_hdr
;
3278 case PACKET_VERSION
:
3279 val
= po
->tp_version
;
3282 if (len
> sizeof(int))
3284 if (copy_from_user(&val
, optval
, len
))
3288 val
= sizeof(struct tpacket_hdr
);
3291 val
= sizeof(struct tpacket2_hdr
);
3294 val
= sizeof(struct tpacket3_hdr
);
3300 case PACKET_RESERVE
:
3301 val
= po
->tp_reserve
;
3306 case PACKET_TIMESTAMP
:
3307 val
= po
->tp_tstamp
;
3311 ((u32
)po
->fanout
->id
|
3312 ((u32
)po
->fanout
->type
<< 16) |
3313 ((u32
)po
->fanout
->flags
<< 24)) :
3316 case PACKET_TX_HAS_OFF
:
3317 val
= po
->tp_tx_has_off
;
3320 return -ENOPROTOOPT
;
3325 if (put_user(len
, optlen
))
3327 if (copy_to_user(optval
, data
, len
))
3333 static int packet_notifier(struct notifier_block
*this,
3334 unsigned long msg
, void *ptr
)
3337 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3338 struct net
*net
= dev_net(dev
);
3341 sk_for_each_rcu(sk
, &net
->packet
.sklist
) {
3342 struct packet_sock
*po
= pkt_sk(sk
);
3345 case NETDEV_UNREGISTER
:
3347 packet_dev_mclist(dev
, po
->mclist
, -1);
3351 if (dev
->ifindex
== po
->ifindex
) {
3352 spin_lock(&po
->bind_lock
);
3354 __unregister_prot_hook(sk
, false);
3355 sk
->sk_err
= ENETDOWN
;
3356 if (!sock_flag(sk
, SOCK_DEAD
))
3357 sk
->sk_error_report(sk
);
3359 if (msg
== NETDEV_UNREGISTER
) {
3361 if (po
->prot_hook
.dev
)
3362 dev_put(po
->prot_hook
.dev
);
3363 po
->prot_hook
.dev
= NULL
;
3365 spin_unlock(&po
->bind_lock
);
3369 if (dev
->ifindex
== po
->ifindex
) {
3370 spin_lock(&po
->bind_lock
);
3372 register_prot_hook(sk
);
3373 spin_unlock(&po
->bind_lock
);
3383 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
3386 struct sock
*sk
= sock
->sk
;
3391 int amount
= sk_wmem_alloc_get(sk
);
3393 return put_user(amount
, (int __user
*)arg
);
3397 struct sk_buff
*skb
;
3400 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3401 skb
= skb_peek(&sk
->sk_receive_queue
);
3404 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3405 return put_user(amount
, (int __user
*)arg
);
3408 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
3410 return sock_get_timestampns(sk
, (struct timespec __user
*)arg
);
3420 case SIOCGIFBRDADDR
:
3421 case SIOCSIFBRDADDR
:
3422 case SIOCGIFNETMASK
:
3423 case SIOCSIFNETMASK
:
3424 case SIOCGIFDSTADDR
:
3425 case SIOCSIFDSTADDR
:
3427 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
3431 return -ENOIOCTLCMD
;
3436 static unsigned int packet_poll(struct file
*file
, struct socket
*sock
,
3439 struct sock
*sk
= sock
->sk
;
3440 struct packet_sock
*po
= pkt_sk(sk
);
3441 unsigned int mask
= datagram_poll(file
, sock
, wait
);
3443 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
3444 if (po
->rx_ring
.pg_vec
) {
3445 if (!packet_previous_rx_frame(po
, &po
->rx_ring
,
3447 mask
|= POLLIN
| POLLRDNORM
;
3449 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
3450 spin_lock_bh(&sk
->sk_write_queue
.lock
);
3451 if (po
->tx_ring
.pg_vec
) {
3452 if (packet_current_frame(po
, &po
->tx_ring
, TP_STATUS_AVAILABLE
))
3453 mask
|= POLLOUT
| POLLWRNORM
;
3455 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
3460 /* Dirty? Well, I still did not learn better way to account
3464 static void packet_mm_open(struct vm_area_struct
*vma
)
3466 struct file
*file
= vma
->vm_file
;
3467 struct socket
*sock
= file
->private_data
;
3468 struct sock
*sk
= sock
->sk
;
3471 atomic_inc(&pkt_sk(sk
)->mapped
);
3474 static void packet_mm_close(struct vm_area_struct
*vma
)
3476 struct file
*file
= vma
->vm_file
;
3477 struct socket
*sock
= file
->private_data
;
3478 struct sock
*sk
= sock
->sk
;
3481 atomic_dec(&pkt_sk(sk
)->mapped
);
3484 static const struct vm_operations_struct packet_mmap_ops
= {
3485 .open
= packet_mm_open
,
3486 .close
= packet_mm_close
,
3489 static void free_pg_vec(struct pgv
*pg_vec
, unsigned int order
,
3494 for (i
= 0; i
< len
; i
++) {
3495 if (likely(pg_vec
[i
].buffer
)) {
3496 if (is_vmalloc_addr(pg_vec
[i
].buffer
))
3497 vfree(pg_vec
[i
].buffer
);
3499 free_pages((unsigned long)pg_vec
[i
].buffer
,
3501 pg_vec
[i
].buffer
= NULL
;
3507 static char *alloc_one_pg_vec_page(unsigned long order
)
3509 char *buffer
= NULL
;
3510 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
|
3511 __GFP_ZERO
| __GFP_NOWARN
| __GFP_NORETRY
;
3513 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
3519 * __get_free_pages failed, fall back to vmalloc
3521 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
3527 * vmalloc failed, lets dig into swap here
3529 gfp_flags
&= ~__GFP_NORETRY
;
3530 buffer
= (char *)__get_free_pages(gfp_flags
, order
);
3535 * complete and utter failure
3540 static struct pgv
*alloc_pg_vec(struct tpacket_req
*req
, int order
)
3542 unsigned int block_nr
= req
->tp_block_nr
;
3546 pg_vec
= kcalloc(block_nr
, sizeof(struct pgv
), GFP_KERNEL
);
3547 if (unlikely(!pg_vec
))
3550 for (i
= 0; i
< block_nr
; i
++) {
3551 pg_vec
[i
].buffer
= alloc_one_pg_vec_page(order
);
3552 if (unlikely(!pg_vec
[i
].buffer
))
3553 goto out_free_pgvec
;
3560 free_pg_vec(pg_vec
, order
, block_nr
);
3565 static int packet_set_ring(struct sock
*sk
, union tpacket_req_u
*req_u
,
3566 int closing
, int tx_ring
)
3568 struct pgv
*pg_vec
= NULL
;
3569 struct packet_sock
*po
= pkt_sk(sk
);
3570 int was_running
, order
= 0;
3571 struct packet_ring_buffer
*rb
;
3572 struct sk_buff_head
*rb_queue
;
3575 /* Added to avoid minimal code churn */
3576 struct tpacket_req
*req
= &req_u
->req
;
3578 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3579 if (!closing
&& tx_ring
&& (po
->tp_version
> TPACKET_V2
)) {
3580 WARN(1, "Tx-ring is not supported.\n");
3584 rb
= tx_ring
? &po
->tx_ring
: &po
->rx_ring
;
3585 rb_queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
3589 if (atomic_read(&po
->mapped
))
3591 if (atomic_read(&rb
->pending
))
3595 if (req
->tp_block_nr
) {
3596 /* Sanity tests and some calculations */
3598 if (unlikely(rb
->pg_vec
))
3601 switch (po
->tp_version
) {
3603 po
->tp_hdrlen
= TPACKET_HDRLEN
;
3606 po
->tp_hdrlen
= TPACKET2_HDRLEN
;
3609 po
->tp_hdrlen
= TPACKET3_HDRLEN
;
3614 if (unlikely((int)req
->tp_block_size
<= 0))
3616 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
3618 if (unlikely(req
->tp_frame_size
< po
->tp_hdrlen
+
3621 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
3624 rb
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
3625 if (unlikely(rb
->frames_per_block
<= 0))
3627 if (unlikely((rb
->frames_per_block
* req
->tp_block_nr
) !=
3632 order
= get_order(req
->tp_block_size
);
3633 pg_vec
= alloc_pg_vec(req
, order
);
3634 if (unlikely(!pg_vec
))
3636 switch (po
->tp_version
) {
3638 /* Transmit path is not supported. We checked
3639 * it above but just being paranoid
3642 init_prb_bdqc(po
, rb
, pg_vec
, req_u
, tx_ring
);
3651 if (unlikely(req
->tp_frame_nr
))
3657 /* Detach socket from network */
3658 spin_lock(&po
->bind_lock
);
3659 was_running
= po
->running
;
3663 __unregister_prot_hook(sk
, false);
3665 spin_unlock(&po
->bind_lock
);
3670 mutex_lock(&po
->pg_vec_lock
);
3671 if (closing
|| atomic_read(&po
->mapped
) == 0) {
3673 spin_lock_bh(&rb_queue
->lock
);
3674 swap(rb
->pg_vec
, pg_vec
);
3675 rb
->frame_max
= (req
->tp_frame_nr
- 1);
3677 rb
->frame_size
= req
->tp_frame_size
;
3678 spin_unlock_bh(&rb_queue
->lock
);
3680 swap(rb
->pg_vec_order
, order
);
3681 swap(rb
->pg_vec_len
, req
->tp_block_nr
);
3683 rb
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
3684 po
->prot_hook
.func
= (po
->rx_ring
.pg_vec
) ?
3685 tpacket_rcv
: packet_rcv
;
3686 skb_queue_purge(rb_queue
);
3687 if (atomic_read(&po
->mapped
))
3688 pr_err("packet_mmap: vma is busy: %d\n",
3689 atomic_read(&po
->mapped
));
3691 mutex_unlock(&po
->pg_vec_lock
);
3693 spin_lock(&po
->bind_lock
);
3696 register_prot_hook(sk
);
3698 spin_unlock(&po
->bind_lock
);
3699 if (closing
&& (po
->tp_version
> TPACKET_V2
)) {
3700 /* Because we don't support block-based V3 on tx-ring */
3702 prb_shutdown_retire_blk_timer(po
, tx_ring
, rb_queue
);
3707 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
3712 static int packet_mmap(struct file
*file
, struct socket
*sock
,
3713 struct vm_area_struct
*vma
)
3715 struct sock
*sk
= sock
->sk
;
3716 struct packet_sock
*po
= pkt_sk(sk
);
3717 unsigned long size
, expected_size
;
3718 struct packet_ring_buffer
*rb
;
3719 unsigned long start
;
3726 mutex_lock(&po
->pg_vec_lock
);
3729 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
3731 expected_size
+= rb
->pg_vec_len
3737 if (expected_size
== 0)
3740 size
= vma
->vm_end
- vma
->vm_start
;
3741 if (size
!= expected_size
)
3744 start
= vma
->vm_start
;
3745 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
3746 if (rb
->pg_vec
== NULL
)
3749 for (i
= 0; i
< rb
->pg_vec_len
; i
++) {
3751 void *kaddr
= rb
->pg_vec
[i
].buffer
;
3754 for (pg_num
= 0; pg_num
< rb
->pg_vec_pages
; pg_num
++) {
3755 page
= pgv_to_page(kaddr
);
3756 err
= vm_insert_page(vma
, start
, page
);
3765 atomic_inc(&po
->mapped
);
3766 vma
->vm_ops
= &packet_mmap_ops
;
3770 mutex_unlock(&po
->pg_vec_lock
);
3774 static const struct proto_ops packet_ops_spkt
= {
3775 .family
= PF_PACKET
,
3776 .owner
= THIS_MODULE
,
3777 .release
= packet_release
,
3778 .bind
= packet_bind_spkt
,
3779 .connect
= sock_no_connect
,
3780 .socketpair
= sock_no_socketpair
,
3781 .accept
= sock_no_accept
,
3782 .getname
= packet_getname_spkt
,
3783 .poll
= datagram_poll
,
3784 .ioctl
= packet_ioctl
,
3785 .listen
= sock_no_listen
,
3786 .shutdown
= sock_no_shutdown
,
3787 .setsockopt
= sock_no_setsockopt
,
3788 .getsockopt
= sock_no_getsockopt
,
3789 .sendmsg
= packet_sendmsg_spkt
,
3790 .recvmsg
= packet_recvmsg
,
3791 .mmap
= sock_no_mmap
,
3792 .sendpage
= sock_no_sendpage
,
3795 static const struct proto_ops packet_ops
= {
3796 .family
= PF_PACKET
,
3797 .owner
= THIS_MODULE
,
3798 .release
= packet_release
,
3799 .bind
= packet_bind
,
3800 .connect
= sock_no_connect
,
3801 .socketpair
= sock_no_socketpair
,
3802 .accept
= sock_no_accept
,
3803 .getname
= packet_getname
,
3804 .poll
= packet_poll
,
3805 .ioctl
= packet_ioctl
,
3806 .listen
= sock_no_listen
,
3807 .shutdown
= sock_no_shutdown
,
3808 .setsockopt
= packet_setsockopt
,
3809 .getsockopt
= packet_getsockopt
,
3810 .sendmsg
= packet_sendmsg
,
3811 .recvmsg
= packet_recvmsg
,
3812 .mmap
= packet_mmap
,
3813 .sendpage
= sock_no_sendpage
,
3816 static const struct net_proto_family packet_family_ops
= {
3817 .family
= PF_PACKET
,
3818 .create
= packet_create
,
3819 .owner
= THIS_MODULE
,
3822 static struct notifier_block packet_netdev_notifier
= {
3823 .notifier_call
= packet_notifier
,
3826 #ifdef CONFIG_PROC_FS
3828 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
3831 struct net
*net
= seq_file_net(seq
);
3834 return seq_hlist_start_head_rcu(&net
->packet
.sklist
, *pos
);
3837 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
3839 struct net
*net
= seq_file_net(seq
);
3840 return seq_hlist_next_rcu(v
, &net
->packet
.sklist
, pos
);
3843 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
3849 static int packet_seq_show(struct seq_file
*seq
, void *v
)
3851 if (v
== SEQ_START_TOKEN
)
3852 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3854 struct sock
*s
= sk_entry(v
);
3855 const struct packet_sock
*po
= pkt_sk(s
);
3858 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
3860 atomic_read(&s
->sk_refcnt
),
3865 atomic_read(&s
->sk_rmem_alloc
),
3866 from_kuid_munged(seq_user_ns(seq
), sock_i_uid(s
)),
3873 static const struct seq_operations packet_seq_ops
= {
3874 .start
= packet_seq_start
,
3875 .next
= packet_seq_next
,
3876 .stop
= packet_seq_stop
,
3877 .show
= packet_seq_show
,
3880 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
3882 return seq_open_net(inode
, file
, &packet_seq_ops
,
3883 sizeof(struct seq_net_private
));
3886 static const struct file_operations packet_seq_fops
= {
3887 .owner
= THIS_MODULE
,
3888 .open
= packet_seq_open
,
3890 .llseek
= seq_lseek
,
3891 .release
= seq_release_net
,
3896 static int __net_init
packet_net_init(struct net
*net
)
3898 mutex_init(&net
->packet
.sklist_lock
);
3899 INIT_HLIST_HEAD(&net
->packet
.sklist
);
3901 if (!proc_create("packet", 0, net
->proc_net
, &packet_seq_fops
))
3907 static void __net_exit
packet_net_exit(struct net
*net
)
3909 remove_proc_entry("packet", net
->proc_net
);
3912 static struct pernet_operations packet_net_ops
= {
3913 .init
= packet_net_init
,
3914 .exit
= packet_net_exit
,
3918 static void __exit
packet_exit(void)
3920 unregister_netdevice_notifier(&packet_netdev_notifier
);
3921 unregister_pernet_subsys(&packet_net_ops
);
3922 sock_unregister(PF_PACKET
);
3923 proto_unregister(&packet_proto
);
3926 static int __init
packet_init(void)
3928 int rc
= proto_register(&packet_proto
, 0);
3933 sock_register(&packet_family_ops
);
3934 register_pernet_subsys(&packet_net_ops
);
3935 register_netdevice_notifier(&packet_netdev_notifier
);
3940 module_init(packet_init
);
3941 module_exit(packet_exit
);
3942 MODULE_LICENSE("GPL");
3943 MODULE_ALIAS_NETPROTO(PF_PACKET
);