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.
44 * This program is free software; you can redistribute it and/or
45 * modify it under the terms of the GNU General Public License
46 * as published by the Free Software Foundation; either version
47 * 2 of the License, or (at your option) any later version.
51 #include <linux/types.h>
53 #include <linux/capability.h>
54 #include <linux/fcntl.h>
55 #include <linux/socket.h>
57 #include <linux/inet.h>
58 #include <linux/netdevice.h>
59 #include <linux/if_packet.h>
60 #include <linux/wireless.h>
61 #include <linux/kernel.h>
62 #include <linux/kmod.h>
63 #include <linux/slab.h>
64 #include <linux/vmalloc.h>
65 #include <net/net_namespace.h>
67 #include <net/protocol.h>
68 #include <linux/skbuff.h>
70 #include <linux/errno.h>
71 #include <linux/timer.h>
72 #include <asm/system.h>
73 #include <asm/uaccess.h>
74 #include <asm/ioctls.h>
76 #include <asm/cacheflush.h>
78 #include <linux/proc_fs.h>
79 #include <linux/seq_file.h>
80 #include <linux/poll.h>
81 #include <linux/module.h>
82 #include <linux/init.h>
83 #include <linux/mutex.h>
84 #include <linux/if_vlan.h>
85 #include <linux/virtio_net.h>
86 #include <linux/errqueue.h>
87 #include <linux/net_tstamp.h>
90 #include <net/inet_common.h>
95 - if device has no dev->hard_header routine, it adds and removes ll header
96 inside itself. In this case ll header is invisible outside of device,
97 but higher levels still should reserve dev->hard_header_len.
98 Some devices are enough clever to reallocate skb, when header
99 will not fit to reserved space (tunnel), another ones are silly
101 - packet socket receives packets with pulled ll header,
102 so that SOCK_RAW should push it back.
107 Incoming, dev->hard_header!=NULL
108 mac_header -> ll header
111 Outgoing, dev->hard_header!=NULL
112 mac_header -> ll header
115 Incoming, dev->hard_header==NULL
116 mac_header -> UNKNOWN position. It is very likely, that it points to ll
117 header. PPP makes it, that is wrong, because introduce
118 assymetry between rx and tx paths.
121 Outgoing, dev->hard_header==NULL
122 mac_header -> data. ll header is still not built!
126 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
132 dev->hard_header != NULL
133 mac_header -> ll header
136 dev->hard_header == NULL (ll header is added by device, we cannot control it)
140 We should set nh.raw on output to correct posistion,
141 packet classifier depends on it.
144 /* Private packet socket structures. */
146 struct packet_mclist
{
147 struct packet_mclist
*next
;
152 unsigned char addr
[MAX_ADDR_LEN
];
154 /* identical to struct packet_mreq except it has
155 * a longer address field.
157 struct packet_mreq_max
{
159 unsigned short mr_type
;
160 unsigned short mr_alen
;
161 unsigned char mr_address
[MAX_ADDR_LEN
];
164 static int packet_set_ring(struct sock
*sk
, struct tpacket_req
*req
,
165 int closing
, int tx_ring
);
171 struct packet_ring_buffer
{
174 unsigned int frames_per_block
;
175 unsigned int frame_size
;
176 unsigned int frame_max
;
178 unsigned int pg_vec_order
;
179 unsigned int pg_vec_pages
;
180 unsigned int pg_vec_len
;
186 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
);
188 static void packet_flush_mclist(struct sock
*sk
);
190 struct packet_fanout
;
192 /* struct sock has to be the first member of packet_sock */
194 struct packet_fanout
*fanout
;
195 struct tpacket_stats stats
;
196 struct packet_ring_buffer rx_ring
;
197 struct packet_ring_buffer tx_ring
;
199 spinlock_t bind_lock
;
200 struct mutex pg_vec_lock
;
201 unsigned int running
:1, /* prot_hook is attached*/
205 int ifindex
; /* bound device */
207 struct packet_mclist
*mclist
;
209 enum tpacket_versions tp_version
;
210 unsigned int tp_hdrlen
;
211 unsigned int tp_reserve
;
212 unsigned int tp_loss
:1;
213 unsigned int tp_tstamp
;
214 struct packet_type prot_hook ____cacheline_aligned_in_smp
;
217 #define PACKET_FANOUT_MAX 256
219 struct packet_fanout
{
223 unsigned int num_members
;
228 struct list_head list
;
229 struct sock
*arr
[PACKET_FANOUT_MAX
];
232 struct packet_type prot_hook ____cacheline_aligned_in_smp
;
235 struct packet_skb_cb
{
236 unsigned int origlen
;
238 struct sockaddr_pkt pkt
;
239 struct sockaddr_ll ll
;
243 #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
245 static inline struct packet_sock
*pkt_sk(struct sock
*sk
)
247 return (struct packet_sock
*)sk
;
250 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
);
251 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
);
253 /* register_prot_hook must be invoked with the po->bind_lock held,
254 * or from a context in which asynchronous accesses to the packet
255 * socket is not possible (packet_create()).
257 static void register_prot_hook(struct sock
*sk
)
259 struct packet_sock
*po
= pkt_sk(sk
);
262 __fanout_link(sk
, po
);
264 dev_add_pack(&po
->prot_hook
);
270 /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
271 * held. If the sync parameter is true, we will temporarily drop
272 * the po->bind_lock and do a synchronize_net to make sure no
273 * asynchronous packet processing paths still refer to the elements
274 * of po->prot_hook. If the sync parameter is false, it is the
275 * callers responsibility to take care of this.
277 static void __unregister_prot_hook(struct sock
*sk
, bool sync
)
279 struct packet_sock
*po
= pkt_sk(sk
);
283 __fanout_unlink(sk
, po
);
285 __dev_remove_pack(&po
->prot_hook
);
289 spin_unlock(&po
->bind_lock
);
291 spin_lock(&po
->bind_lock
);
295 static void unregister_prot_hook(struct sock
*sk
, bool sync
)
297 struct packet_sock
*po
= pkt_sk(sk
);
300 __unregister_prot_hook(sk
, sync
);
303 static inline __pure
struct page
*pgv_to_page(void *addr
)
305 if (is_vmalloc_addr(addr
))
306 return vmalloc_to_page(addr
);
307 return virt_to_page(addr
);
310 static void __packet_set_status(struct packet_sock
*po
, void *frame
, int status
)
313 struct tpacket_hdr
*h1
;
314 struct tpacket2_hdr
*h2
;
319 switch (po
->tp_version
) {
321 h
.h1
->tp_status
= status
;
322 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
325 h
.h2
->tp_status
= status
;
326 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
329 pr_err("TPACKET version not supported\n");
336 static int __packet_get_status(struct packet_sock
*po
, void *frame
)
339 struct tpacket_hdr
*h1
;
340 struct tpacket2_hdr
*h2
;
347 switch (po
->tp_version
) {
349 flush_dcache_page(pgv_to_page(&h
.h1
->tp_status
));
350 return h
.h1
->tp_status
;
352 flush_dcache_page(pgv_to_page(&h
.h2
->tp_status
));
353 return h
.h2
->tp_status
;
355 pr_err("TPACKET version not supported\n");
361 static void *packet_lookup_frame(struct packet_sock
*po
,
362 struct packet_ring_buffer
*rb
,
363 unsigned int position
,
366 unsigned int pg_vec_pos
, frame_offset
;
368 struct tpacket_hdr
*h1
;
369 struct tpacket2_hdr
*h2
;
373 pg_vec_pos
= position
/ rb
->frames_per_block
;
374 frame_offset
= position
% rb
->frames_per_block
;
376 h
.raw
= rb
->pg_vec
[pg_vec_pos
].buffer
+
377 (frame_offset
* rb
->frame_size
);
379 if (status
!= __packet_get_status(po
, h
.raw
))
385 static inline void *packet_current_frame(struct packet_sock
*po
,
386 struct packet_ring_buffer
*rb
,
389 return packet_lookup_frame(po
, rb
, rb
->head
, status
);
392 static inline void *packet_previous_frame(struct packet_sock
*po
,
393 struct packet_ring_buffer
*rb
,
396 unsigned int previous
= rb
->head
? rb
->head
- 1 : rb
->frame_max
;
397 return packet_lookup_frame(po
, rb
, previous
, status
);
400 static inline void packet_increment_head(struct packet_ring_buffer
*buff
)
402 buff
->head
= buff
->head
!= buff
->frame_max
? buff
->head
+1 : 0;
405 static void packet_sock_destruct(struct sock
*sk
)
407 skb_queue_purge(&sk
->sk_error_queue
);
409 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
410 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
412 if (!sock_flag(sk
, SOCK_DEAD
)) {
413 pr_err("Attempt to release alive packet socket: %p\n", sk
);
417 sk_refcnt_debug_dec(sk
);
420 static int fanout_rr_next(struct packet_fanout
*f
, unsigned int num
)
422 int x
= atomic_read(&f
->rr_cur
) + 1;
430 static struct sock
*fanout_demux_hash(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
432 u32 idx
, hash
= skb
->rxhash
;
434 idx
= ((u64
)hash
* num
) >> 32;
439 static struct sock
*fanout_demux_lb(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
443 cur
= atomic_read(&f
->rr_cur
);
444 while ((old
= atomic_cmpxchg(&f
->rr_cur
, cur
,
445 fanout_rr_next(f
, num
))) != cur
)
450 static struct sock
*fanout_demux_cpu(struct packet_fanout
*f
, struct sk_buff
*skb
, unsigned int num
)
452 unsigned int cpu
= smp_processor_id();
454 return f
->arr
[cpu
% num
];
457 static struct sk_buff
*fanout_check_defrag(struct sk_buff
*skb
)
460 const struct iphdr
*iph
;
463 if (skb
->protocol
!= htons(ETH_P_IP
))
466 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
470 if (iph
->ihl
< 5 || iph
->version
!= 4)
472 if (!pskb_may_pull(skb
, iph
->ihl
*4))
475 len
= ntohs(iph
->tot_len
);
476 if (skb
->len
< len
|| len
< (iph
->ihl
* 4))
479 if (ip_is_fragment(ip_hdr(skb
))) {
480 skb
= skb_share_check(skb
, GFP_ATOMIC
);
482 if (pskb_trim_rcsum(skb
, len
))
484 memset(IPCB(skb
), 0, sizeof(struct inet_skb_parm
));
485 if (ip_defrag(skb
, IP_DEFRAG_AF_PACKET
))
494 static int packet_rcv_fanout(struct sk_buff
*skb
, struct net_device
*dev
,
495 struct packet_type
*pt
, struct net_device
*orig_dev
)
497 struct packet_fanout
*f
= pt
->af_packet_priv
;
498 unsigned int num
= f
->num_members
;
499 struct packet_sock
*po
;
502 if (!net_eq(dev_net(dev
), read_pnet(&f
->net
)) ||
509 case PACKET_FANOUT_HASH
:
512 skb
= fanout_check_defrag(skb
);
517 sk
= fanout_demux_hash(f
, skb
, num
);
519 case PACKET_FANOUT_LB
:
520 sk
= fanout_demux_lb(f
, skb
, num
);
522 case PACKET_FANOUT_CPU
:
523 sk
= fanout_demux_cpu(f
, skb
, num
);
529 return po
->prot_hook
.func(skb
, dev
, &po
->prot_hook
, orig_dev
);
532 static DEFINE_MUTEX(fanout_mutex
);
533 static LIST_HEAD(fanout_list
);
535 static void __fanout_link(struct sock
*sk
, struct packet_sock
*po
)
537 struct packet_fanout
*f
= po
->fanout
;
540 f
->arr
[f
->num_members
] = sk
;
543 spin_unlock(&f
->lock
);
546 static void __fanout_unlink(struct sock
*sk
, struct packet_sock
*po
)
548 struct packet_fanout
*f
= po
->fanout
;
552 for (i
= 0; i
< f
->num_members
; i
++) {
556 BUG_ON(i
>= f
->num_members
);
557 f
->arr
[i
] = f
->arr
[f
->num_members
- 1];
559 spin_unlock(&f
->lock
);
562 static int fanout_add(struct sock
*sk
, u16 id
, u16 type_flags
)
564 struct packet_sock
*po
= pkt_sk(sk
);
565 struct packet_fanout
*f
, *match
;
566 u8 type
= type_flags
& 0xff;
567 u8 defrag
= (type_flags
& PACKET_FANOUT_FLAG_DEFRAG
) ? 1 : 0;
571 case PACKET_FANOUT_HASH
:
572 case PACKET_FANOUT_LB
:
573 case PACKET_FANOUT_CPU
:
585 mutex_lock(&fanout_mutex
);
587 list_for_each_entry(f
, &fanout_list
, list
) {
589 read_pnet(&f
->net
) == sock_net(sk
)) {
595 if (match
&& match
->defrag
!= defrag
)
599 match
= kzalloc(sizeof(*match
), GFP_KERNEL
);
602 write_pnet(&match
->net
, sock_net(sk
));
605 match
->defrag
= defrag
;
606 atomic_set(&match
->rr_cur
, 0);
607 INIT_LIST_HEAD(&match
->list
);
608 spin_lock_init(&match
->lock
);
609 atomic_set(&match
->sk_ref
, 0);
610 match
->prot_hook
.type
= po
->prot_hook
.type
;
611 match
->prot_hook
.dev
= po
->prot_hook
.dev
;
612 match
->prot_hook
.func
= packet_rcv_fanout
;
613 match
->prot_hook
.af_packet_priv
= match
;
614 dev_add_pack(&match
->prot_hook
);
615 list_add(&match
->list
, &fanout_list
);
618 if (match
->type
== type
&&
619 match
->prot_hook
.type
== po
->prot_hook
.type
&&
620 match
->prot_hook
.dev
== po
->prot_hook
.dev
) {
622 if (atomic_read(&match
->sk_ref
) < PACKET_FANOUT_MAX
) {
623 __dev_remove_pack(&po
->prot_hook
);
625 atomic_inc(&match
->sk_ref
);
626 __fanout_link(sk
, po
);
631 mutex_unlock(&fanout_mutex
);
635 static void fanout_release(struct sock
*sk
)
637 struct packet_sock
*po
= pkt_sk(sk
);
638 struct packet_fanout
*f
;
646 mutex_lock(&fanout_mutex
);
647 if (atomic_dec_and_test(&f
->sk_ref
)) {
649 dev_remove_pack(&f
->prot_hook
);
652 mutex_unlock(&fanout_mutex
);
655 static const struct proto_ops packet_ops
;
657 static const struct proto_ops packet_ops_spkt
;
659 static int packet_rcv_spkt(struct sk_buff
*skb
, struct net_device
*dev
,
660 struct packet_type
*pt
, struct net_device
*orig_dev
)
663 struct sockaddr_pkt
*spkt
;
666 * When we registered the protocol we saved the socket in the data
667 * field for just this event.
670 sk
= pt
->af_packet_priv
;
673 * Yank back the headers [hope the device set this
674 * right or kerboom...]
676 * Incoming packets have ll header pulled,
679 * For outgoing ones skb->data == skb_mac_header(skb)
680 * so that this procedure is noop.
683 if (skb
->pkt_type
== PACKET_LOOPBACK
)
686 if (!net_eq(dev_net(dev
), sock_net(sk
)))
689 skb
= skb_share_check(skb
, GFP_ATOMIC
);
693 /* drop any routing info */
696 /* drop conntrack reference */
699 spkt
= &PACKET_SKB_CB(skb
)->sa
.pkt
;
701 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
704 * The SOCK_PACKET socket receives _all_ frames.
707 spkt
->spkt_family
= dev
->type
;
708 strlcpy(spkt
->spkt_device
, dev
->name
, sizeof(spkt
->spkt_device
));
709 spkt
->spkt_protocol
= skb
->protocol
;
712 * Charge the memory to the socket. This is done specifically
713 * to prevent sockets using all the memory up.
716 if (sock_queue_rcv_skb(sk
, skb
) == 0)
727 * Output a raw packet to a device layer. This bypasses all the other
728 * protocol layers and you must therefore supply it with a complete frame
731 static int packet_sendmsg_spkt(struct kiocb
*iocb
, struct socket
*sock
,
732 struct msghdr
*msg
, size_t len
)
734 struct sock
*sk
= sock
->sk
;
735 struct sockaddr_pkt
*saddr
= (struct sockaddr_pkt
*)msg
->msg_name
;
736 struct sk_buff
*skb
= NULL
;
737 struct net_device
*dev
;
742 * Get and verify the address.
746 if (msg
->msg_namelen
< sizeof(struct sockaddr
))
748 if (msg
->msg_namelen
== sizeof(struct sockaddr_pkt
))
749 proto
= saddr
->spkt_protocol
;
751 return -ENOTCONN
; /* SOCK_PACKET must be sent giving an address */
754 * Find the device first to size check it
757 saddr
->spkt_device
[13] = 0;
760 dev
= dev_get_by_name_rcu(sock_net(sk
), saddr
->spkt_device
);
766 if (!(dev
->flags
& IFF_UP
))
770 * You may not queue a frame bigger than the mtu. This is the lowest level
771 * raw protocol and you must do your own fragmentation at this level.
775 if (len
> dev
->mtu
+ dev
->hard_header_len
+ VLAN_HLEN
)
779 size_t reserved
= LL_RESERVED_SPACE(dev
);
780 unsigned int hhlen
= dev
->header_ops
? dev
->hard_header_len
: 0;
783 skb
= sock_wmalloc(sk
, len
+ reserved
, 0, GFP_KERNEL
);
786 /* FIXME: Save some space for broken drivers that write a hard
787 * header at transmission time by themselves. PPP is the notable
788 * one here. This should really be fixed at the driver level.
790 skb_reserve(skb
, reserved
);
791 skb_reset_network_header(skb
);
793 /* Try to align data part correctly */
798 skb_reset_network_header(skb
);
800 err
= memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
);
806 if (len
> (dev
->mtu
+ dev
->hard_header_len
)) {
807 /* Earlier code assumed this would be a VLAN pkt,
808 * double-check this now that we have the actual
812 skb_reset_mac_header(skb
);
814 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
820 skb
->protocol
= proto
;
822 skb
->priority
= sk
->sk_priority
;
823 skb
->mark
= sk
->sk_mark
;
824 err
= sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
839 static inline unsigned int run_filter(const struct sk_buff
*skb
,
840 const struct sock
*sk
,
843 struct sk_filter
*filter
;
846 filter
= rcu_dereference(sk
->sk_filter
);
848 res
= SK_RUN_FILTER(filter
, skb
);
855 * This function makes lazy skb cloning in hope that most of packets
856 * are discarded by BPF.
858 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
859 * and skb->cb are mangled. It works because (and until) packets
860 * falling here are owned by current CPU. Output packets are cloned
861 * by dev_queue_xmit_nit(), input packets are processed by net_bh
862 * sequencially, so that if we return skb to original state on exit,
863 * we will not harm anyone.
866 static int packet_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
867 struct packet_type
*pt
, struct net_device
*orig_dev
)
870 struct sockaddr_ll
*sll
;
871 struct packet_sock
*po
;
872 u8
*skb_head
= skb
->data
;
873 int skb_len
= skb
->len
;
874 unsigned int snaplen
, res
;
876 if (skb
->pkt_type
== PACKET_LOOPBACK
)
879 sk
= pt
->af_packet_priv
;
882 if (!net_eq(dev_net(dev
), sock_net(sk
)))
887 if (dev
->header_ops
) {
888 /* The device has an explicit notion of ll header,
889 * exported to higher levels.
891 * Otherwise, the device hides details of its frame
892 * structure, so that corresponding packet head is
893 * never delivered to user.
895 if (sk
->sk_type
!= SOCK_DGRAM
)
896 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
897 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
898 /* Special case: outgoing packets have ll header at head */
899 skb_pull(skb
, skb_network_offset(skb
));
905 res
= run_filter(skb
, sk
, snaplen
);
911 if (atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
>=
912 (unsigned)sk
->sk_rcvbuf
)
915 if (skb_shared(skb
)) {
916 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
920 if (skb_head
!= skb
->data
) {
921 skb
->data
= skb_head
;
928 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb
)) + MAX_ADDR_LEN
- 8 >
931 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
932 sll
->sll_family
= AF_PACKET
;
933 sll
->sll_hatype
= dev
->type
;
934 sll
->sll_protocol
= skb
->protocol
;
935 sll
->sll_pkttype
= skb
->pkt_type
;
936 if (unlikely(po
->origdev
))
937 sll
->sll_ifindex
= orig_dev
->ifindex
;
939 sll
->sll_ifindex
= dev
->ifindex
;
941 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
943 PACKET_SKB_CB(skb
)->origlen
= skb
->len
;
945 if (pskb_trim(skb
, snaplen
))
948 skb_set_owner_r(skb
, sk
);
952 /* drop conntrack reference */
955 spin_lock(&sk
->sk_receive_queue
.lock
);
956 po
->stats
.tp_packets
++;
957 skb
->dropcount
= atomic_read(&sk
->sk_drops
);
958 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
959 spin_unlock(&sk
->sk_receive_queue
.lock
);
960 sk
->sk_data_ready(sk
, skb
->len
);
964 spin_lock(&sk
->sk_receive_queue
.lock
);
965 po
->stats
.tp_drops
++;
966 atomic_inc(&sk
->sk_drops
);
967 spin_unlock(&sk
->sk_receive_queue
.lock
);
970 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
971 skb
->data
= skb_head
;
979 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
980 struct packet_type
*pt
, struct net_device
*orig_dev
)
983 struct packet_sock
*po
;
984 struct sockaddr_ll
*sll
;
986 struct tpacket_hdr
*h1
;
987 struct tpacket2_hdr
*h2
;
990 u8
*skb_head
= skb
->data
;
991 int skb_len
= skb
->len
;
992 unsigned int snaplen
, res
;
993 unsigned long status
= TP_STATUS_LOSING
|TP_STATUS_USER
;
994 unsigned short macoff
, netoff
, hdrlen
;
995 struct sk_buff
*copy_skb
= NULL
;
998 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
1000 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1003 sk
= pt
->af_packet_priv
;
1006 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1009 if (dev
->header_ops
) {
1010 if (sk
->sk_type
!= SOCK_DGRAM
)
1011 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1012 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1013 /* Special case: outgoing packets have ll header at head */
1014 skb_pull(skb
, skb_network_offset(skb
));
1018 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
1019 status
|= TP_STATUS_CSUMNOTREADY
;
1023 res
= run_filter(skb
, sk
, snaplen
);
1025 goto drop_n_restore
;
1029 if (sk
->sk_type
== SOCK_DGRAM
) {
1030 macoff
= netoff
= TPACKET_ALIGN(po
->tp_hdrlen
) + 16 +
1033 unsigned maclen
= skb_network_offset(skb
);
1034 netoff
= TPACKET_ALIGN(po
->tp_hdrlen
+
1035 (maclen
< 16 ? 16 : maclen
)) +
1037 macoff
= netoff
- maclen
;
1040 if (macoff
+ snaplen
> po
->rx_ring
.frame_size
) {
1041 if (po
->copy_thresh
&&
1042 atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
<
1043 (unsigned)sk
->sk_rcvbuf
) {
1044 if (skb_shared(skb
)) {
1045 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
1047 copy_skb
= skb_get(skb
);
1048 skb_head
= skb
->data
;
1051 skb_set_owner_r(copy_skb
, sk
);
1053 snaplen
= po
->rx_ring
.frame_size
- macoff
;
1054 if ((int)snaplen
< 0)
1058 spin_lock(&sk
->sk_receive_queue
.lock
);
1059 h
.raw
= packet_current_frame(po
, &po
->rx_ring
, TP_STATUS_KERNEL
);
1062 packet_increment_head(&po
->rx_ring
);
1063 po
->stats
.tp_packets
++;
1065 status
|= TP_STATUS_COPY
;
1066 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
1068 if (!po
->stats
.tp_drops
)
1069 status
&= ~TP_STATUS_LOSING
;
1070 spin_unlock(&sk
->sk_receive_queue
.lock
);
1072 skb_copy_bits(skb
, 0, h
.raw
+ macoff
, snaplen
);
1074 switch (po
->tp_version
) {
1076 h
.h1
->tp_len
= skb
->len
;
1077 h
.h1
->tp_snaplen
= snaplen
;
1078 h
.h1
->tp_mac
= macoff
;
1079 h
.h1
->tp_net
= netoff
;
1080 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1081 && shhwtstamps
->syststamp
.tv64
)
1082 tv
= ktime_to_timeval(shhwtstamps
->syststamp
);
1083 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1084 && shhwtstamps
->hwtstamp
.tv64
)
1085 tv
= ktime_to_timeval(shhwtstamps
->hwtstamp
);
1086 else if (skb
->tstamp
.tv64
)
1087 tv
= ktime_to_timeval(skb
->tstamp
);
1089 do_gettimeofday(&tv
);
1090 h
.h1
->tp_sec
= tv
.tv_sec
;
1091 h
.h1
->tp_usec
= tv
.tv_usec
;
1092 hdrlen
= sizeof(*h
.h1
);
1095 h
.h2
->tp_len
= skb
->len
;
1096 h
.h2
->tp_snaplen
= snaplen
;
1097 h
.h2
->tp_mac
= macoff
;
1098 h
.h2
->tp_net
= netoff
;
1099 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1100 && shhwtstamps
->syststamp
.tv64
)
1101 ts
= ktime_to_timespec(shhwtstamps
->syststamp
);
1102 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1103 && shhwtstamps
->hwtstamp
.tv64
)
1104 ts
= ktime_to_timespec(shhwtstamps
->hwtstamp
);
1105 else if (skb
->tstamp
.tv64
)
1106 ts
= ktime_to_timespec(skb
->tstamp
);
1108 getnstimeofday(&ts
);
1109 h
.h2
->tp_sec
= ts
.tv_sec
;
1110 h
.h2
->tp_nsec
= ts
.tv_nsec
;
1111 if (vlan_tx_tag_present(skb
)) {
1112 h
.h2
->tp_vlan_tci
= vlan_tx_tag_get(skb
);
1113 status
|= TP_STATUS_VLAN_VALID
;
1115 h
.h2
->tp_vlan_tci
= 0;
1117 h
.h2
->tp_padding
= 0;
1118 hdrlen
= sizeof(*h
.h2
);
1124 sll
= h
.raw
+ TPACKET_ALIGN(hdrlen
);
1125 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1126 sll
->sll_family
= AF_PACKET
;
1127 sll
->sll_hatype
= dev
->type
;
1128 sll
->sll_protocol
= skb
->protocol
;
1129 sll
->sll_pkttype
= skb
->pkt_type
;
1130 if (unlikely(po
->origdev
))
1131 sll
->sll_ifindex
= orig_dev
->ifindex
;
1133 sll
->sll_ifindex
= dev
->ifindex
;
1136 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
1140 end
= (u8
*)PAGE_ALIGN((unsigned long)h
.raw
+ macoff
+ snaplen
);
1141 for (start
= h
.raw
; start
< end
; start
+= PAGE_SIZE
)
1142 flush_dcache_page(pgv_to_page(start
));
1146 __packet_set_status(po
, h
.raw
, status
);
1148 sk
->sk_data_ready(sk
, 0);
1151 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1152 skb
->data
= skb_head
;
1160 po
->stats
.tp_drops
++;
1161 spin_unlock(&sk
->sk_receive_queue
.lock
);
1163 sk
->sk_data_ready(sk
, 0);
1164 kfree_skb(copy_skb
);
1165 goto drop_n_restore
;
1168 static void tpacket_destruct_skb(struct sk_buff
*skb
)
1170 struct packet_sock
*po
= pkt_sk(skb
->sk
);
1173 BUG_ON(skb
== NULL
);
1175 if (likely(po
->tx_ring
.pg_vec
)) {
1176 ph
= skb_shinfo(skb
)->destructor_arg
;
1177 BUG_ON(__packet_get_status(po
, ph
) != TP_STATUS_SENDING
);
1178 BUG_ON(atomic_read(&po
->tx_ring
.pending
) == 0);
1179 atomic_dec(&po
->tx_ring
.pending
);
1180 __packet_set_status(po
, ph
, TP_STATUS_AVAILABLE
);
1186 static int tpacket_fill_skb(struct packet_sock
*po
, struct sk_buff
*skb
,
1187 void *frame
, struct net_device
*dev
, int size_max
,
1188 __be16 proto
, unsigned char *addr
)
1191 struct tpacket_hdr
*h1
;
1192 struct tpacket2_hdr
*h2
;
1195 int to_write
, offset
, len
, tp_len
, nr_frags
, len_max
;
1196 struct socket
*sock
= po
->sk
.sk_socket
;
1203 skb
->protocol
= proto
;
1205 skb
->priority
= po
->sk
.sk_priority
;
1206 skb
->mark
= po
->sk
.sk_mark
;
1207 skb_shinfo(skb
)->destructor_arg
= ph
.raw
;
1209 switch (po
->tp_version
) {
1211 tp_len
= ph
.h2
->tp_len
;
1214 tp_len
= ph
.h1
->tp_len
;
1217 if (unlikely(tp_len
> size_max
)) {
1218 pr_err("packet size is too long (%d > %d)\n", tp_len
, size_max
);
1222 skb_reserve(skb
, LL_RESERVED_SPACE(dev
));
1223 skb_reset_network_header(skb
);
1225 data
= ph
.raw
+ po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1228 if (sock
->type
== SOCK_DGRAM
) {
1229 err
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
,
1231 if (unlikely(err
< 0))
1233 } else if (dev
->hard_header_len
) {
1234 /* net device doesn't like empty head */
1235 if (unlikely(tp_len
<= dev
->hard_header_len
)) {
1236 pr_err("packet size is too short (%d < %d)\n",
1237 tp_len
, dev
->hard_header_len
);
1241 skb_push(skb
, dev
->hard_header_len
);
1242 err
= skb_store_bits(skb
, 0, data
,
1243 dev
->hard_header_len
);
1247 data
+= dev
->hard_header_len
;
1248 to_write
-= dev
->hard_header_len
;
1252 offset
= offset_in_page(data
);
1253 len_max
= PAGE_SIZE
- offset
;
1254 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1256 skb
->data_len
= to_write
;
1257 skb
->len
+= to_write
;
1258 skb
->truesize
+= to_write
;
1259 atomic_add(to_write
, &po
->sk
.sk_wmem_alloc
);
1261 while (likely(to_write
)) {
1262 nr_frags
= skb_shinfo(skb
)->nr_frags
;
1264 if (unlikely(nr_frags
>= MAX_SKB_FRAGS
)) {
1265 pr_err("Packet exceed the number of skb frags(%lu)\n",
1270 page
= pgv_to_page(data
);
1272 flush_dcache_page(page
);
1274 skb_fill_page_desc(skb
, nr_frags
, page
, offset
, len
);
1277 len_max
= PAGE_SIZE
;
1278 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1284 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
)
1286 struct sk_buff
*skb
;
1287 struct net_device
*dev
;
1289 bool need_rls_dev
= false;
1290 int err
, reserve
= 0;
1292 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
1293 int tp_len
, size_max
;
1294 unsigned char *addr
;
1298 mutex_lock(&po
->pg_vec_lock
);
1301 if (saddr
== NULL
) {
1302 dev
= po
->prot_hook
.dev
;
1307 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
1309 if (msg
->msg_namelen
< (saddr
->sll_halen
1310 + offsetof(struct sockaddr_ll
,
1313 proto
= saddr
->sll_protocol
;
1314 addr
= saddr
->sll_addr
;
1315 dev
= dev_get_by_index(sock_net(&po
->sk
), saddr
->sll_ifindex
);
1316 need_rls_dev
= true;
1320 if (unlikely(dev
== NULL
))
1323 reserve
= dev
->hard_header_len
;
1326 if (unlikely(!(dev
->flags
& IFF_UP
)))
1329 size_max
= po
->tx_ring
.frame_size
1330 - (po
->tp_hdrlen
- sizeof(struct sockaddr_ll
));
1332 if (size_max
> dev
->mtu
+ reserve
)
1333 size_max
= dev
->mtu
+ reserve
;
1336 ph
= packet_current_frame(po
, &po
->tx_ring
,
1337 TP_STATUS_SEND_REQUEST
);
1339 if (unlikely(ph
== NULL
)) {
1344 status
= TP_STATUS_SEND_REQUEST
;
1345 skb
= sock_alloc_send_skb(&po
->sk
,
1346 LL_ALLOCATED_SPACE(dev
)
1347 + sizeof(struct sockaddr_ll
),
1350 if (unlikely(skb
== NULL
))
1353 tp_len
= tpacket_fill_skb(po
, skb
, ph
, dev
, size_max
, proto
,
1356 if (unlikely(tp_len
< 0)) {
1358 __packet_set_status(po
, ph
,
1359 TP_STATUS_AVAILABLE
);
1360 packet_increment_head(&po
->tx_ring
);
1364 status
= TP_STATUS_WRONG_FORMAT
;
1370 skb
->destructor
= tpacket_destruct_skb
;
1371 __packet_set_status(po
, ph
, TP_STATUS_SENDING
);
1372 atomic_inc(&po
->tx_ring
.pending
);
1374 status
= TP_STATUS_SEND_REQUEST
;
1375 err
= dev_queue_xmit(skb
);
1376 if (unlikely(err
> 0)) {
1377 err
= net_xmit_errno(err
);
1378 if (err
&& __packet_get_status(po
, ph
) ==
1379 TP_STATUS_AVAILABLE
) {
1380 /* skb was destructed already */
1385 * skb was dropped but not destructed yet;
1386 * let's treat it like congestion or err < 0
1390 packet_increment_head(&po
->tx_ring
);
1392 } while (likely((ph
!= NULL
) ||
1393 ((!(msg
->msg_flags
& MSG_DONTWAIT
)) &&
1394 (atomic_read(&po
->tx_ring
.pending
))))
1401 __packet_set_status(po
, ph
, status
);
1407 mutex_unlock(&po
->pg_vec_lock
);
1411 static inline struct sk_buff
*packet_alloc_skb(struct sock
*sk
, size_t prepad
,
1412 size_t reserve
, size_t len
,
1413 size_t linear
, int noblock
,
1416 struct sk_buff
*skb
;
1418 /* Under a page? Don't bother with paged skb. */
1419 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
1422 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
1427 skb_reserve(skb
, reserve
);
1428 skb_put(skb
, linear
);
1429 skb
->data_len
= len
- linear
;
1430 skb
->len
+= len
- linear
;
1435 static int packet_snd(struct socket
*sock
,
1436 struct msghdr
*msg
, size_t len
)
1438 struct sock
*sk
= sock
->sk
;
1439 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
1440 struct sk_buff
*skb
;
1441 struct net_device
*dev
;
1443 bool need_rls_dev
= false;
1444 unsigned char *addr
;
1445 int err
, reserve
= 0;
1446 struct virtio_net_hdr vnet_hdr
= { 0 };
1449 struct packet_sock
*po
= pkt_sk(sk
);
1450 unsigned short gso_type
= 0;
1453 * Get and verify the address.
1456 if (saddr
== NULL
) {
1457 dev
= po
->prot_hook
.dev
;
1462 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
1464 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
1466 proto
= saddr
->sll_protocol
;
1467 addr
= saddr
->sll_addr
;
1468 dev
= dev_get_by_index(sock_net(sk
), saddr
->sll_ifindex
);
1469 need_rls_dev
= true;
1475 if (sock
->type
== SOCK_RAW
)
1476 reserve
= dev
->hard_header_len
;
1479 if (!(dev
->flags
& IFF_UP
))
1482 if (po
->has_vnet_hdr
) {
1483 vnet_hdr_len
= sizeof(vnet_hdr
);
1486 if (len
< vnet_hdr_len
)
1489 len
-= vnet_hdr_len
;
1491 err
= memcpy_fromiovec((void *)&vnet_hdr
, msg
->msg_iov
,
1496 if ((vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
1497 (vnet_hdr
.csum_start
+ vnet_hdr
.csum_offset
+ 2 >
1499 vnet_hdr
.hdr_len
= vnet_hdr
.csum_start
+
1500 vnet_hdr
.csum_offset
+ 2;
1503 if (vnet_hdr
.hdr_len
> len
)
1506 if (vnet_hdr
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
1507 switch (vnet_hdr
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
1508 case VIRTIO_NET_HDR_GSO_TCPV4
:
1509 gso_type
= SKB_GSO_TCPV4
;
1511 case VIRTIO_NET_HDR_GSO_TCPV6
:
1512 gso_type
= SKB_GSO_TCPV6
;
1514 case VIRTIO_NET_HDR_GSO_UDP
:
1515 gso_type
= SKB_GSO_UDP
;
1521 if (vnet_hdr
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
1522 gso_type
|= SKB_GSO_TCP_ECN
;
1524 if (vnet_hdr
.gso_size
== 0)
1531 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ VLAN_HLEN
))
1535 skb
= packet_alloc_skb(sk
, LL_ALLOCATED_SPACE(dev
),
1536 LL_RESERVED_SPACE(dev
), len
, vnet_hdr
.hdr_len
,
1537 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1541 skb_set_network_header(skb
, reserve
);
1544 if (sock
->type
== SOCK_DGRAM
&&
1545 (offset
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
)) < 0)
1548 /* Returns -EFAULT on error */
1549 err
= skb_copy_datagram_from_iovec(skb
, offset
, msg
->msg_iov
, 0, len
);
1552 err
= sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
1556 if (!gso_type
&& (len
> dev
->mtu
+ reserve
)) {
1557 /* Earlier code assumed this would be a VLAN pkt,
1558 * double-check this now that we have the actual
1561 struct ethhdr
*ehdr
;
1562 skb_reset_mac_header(skb
);
1563 ehdr
= eth_hdr(skb
);
1564 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
1570 skb
->protocol
= proto
;
1572 skb
->priority
= sk
->sk_priority
;
1573 skb
->mark
= sk
->sk_mark
;
1575 if (po
->has_vnet_hdr
) {
1576 if (vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
1577 if (!skb_partial_csum_set(skb
, vnet_hdr
.csum_start
,
1578 vnet_hdr
.csum_offset
)) {
1584 skb_shinfo(skb
)->gso_size
= vnet_hdr
.gso_size
;
1585 skb_shinfo(skb
)->gso_type
= gso_type
;
1587 /* Header must be checked, and gso_segs computed. */
1588 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
1589 skb_shinfo(skb
)->gso_segs
= 0;
1591 len
+= vnet_hdr_len
;
1598 err
= dev_queue_xmit(skb
);
1599 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
1610 if (dev
&& need_rls_dev
)
1616 static int packet_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1617 struct msghdr
*msg
, size_t len
)
1619 struct sock
*sk
= sock
->sk
;
1620 struct packet_sock
*po
= pkt_sk(sk
);
1621 if (po
->tx_ring
.pg_vec
)
1622 return tpacket_snd(po
, msg
);
1624 return packet_snd(sock
, msg
, len
);
1628 * Close a PACKET socket. This is fairly simple. We immediately go
1629 * to 'closed' state and remove our protocol entry in the device list.
1632 static int packet_release(struct socket
*sock
)
1634 struct sock
*sk
= sock
->sk
;
1635 struct packet_sock
*po
;
1637 struct tpacket_req req
;
1645 spin_lock_bh(&net
->packet
.sklist_lock
);
1646 sk_del_node_init_rcu(sk
);
1647 sock_prot_inuse_add(net
, sk
->sk_prot
, -1);
1648 spin_unlock_bh(&net
->packet
.sklist_lock
);
1650 spin_lock(&po
->bind_lock
);
1651 unregister_prot_hook(sk
, false);
1652 if (po
->prot_hook
.dev
) {
1653 dev_put(po
->prot_hook
.dev
);
1654 po
->prot_hook
.dev
= NULL
;
1656 spin_unlock(&po
->bind_lock
);
1658 packet_flush_mclist(sk
);
1660 memset(&req
, 0, sizeof(req
));
1662 if (po
->rx_ring
.pg_vec
)
1663 packet_set_ring(sk
, &req
, 1, 0);
1665 if (po
->tx_ring
.pg_vec
)
1666 packet_set_ring(sk
, &req
, 1, 1);
1672 * Now the socket is dead. No more input will appear.
1679 skb_queue_purge(&sk
->sk_receive_queue
);
1680 sk_refcnt_debug_release(sk
);
1687 * Attach a packet hook.
1690 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 protocol
)
1692 struct packet_sock
*po
= pkt_sk(sk
);
1699 spin_lock(&po
->bind_lock
);
1700 unregister_prot_hook(sk
, true);
1702 po
->prot_hook
.type
= protocol
;
1703 if (po
->prot_hook
.dev
)
1704 dev_put(po
->prot_hook
.dev
);
1705 po
->prot_hook
.dev
= dev
;
1707 po
->ifindex
= dev
? dev
->ifindex
: 0;
1712 if (!dev
|| (dev
->flags
& IFF_UP
)) {
1713 register_prot_hook(sk
);
1715 sk
->sk_err
= ENETDOWN
;
1716 if (!sock_flag(sk
, SOCK_DEAD
))
1717 sk
->sk_error_report(sk
);
1721 spin_unlock(&po
->bind_lock
);
1727 * Bind a packet socket to a device
1730 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
1733 struct sock
*sk
= sock
->sk
;
1735 struct net_device
*dev
;
1742 if (addr_len
!= sizeof(struct sockaddr
))
1744 strlcpy(name
, uaddr
->sa_data
, sizeof(name
));
1746 dev
= dev_get_by_name(sock_net(sk
), name
);
1748 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
1752 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
1754 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
1755 struct sock
*sk
= sock
->sk
;
1756 struct net_device
*dev
= NULL
;
1764 if (addr_len
< sizeof(struct sockaddr_ll
))
1766 if (sll
->sll_family
!= AF_PACKET
)
1769 if (sll
->sll_ifindex
) {
1771 dev
= dev_get_by_index(sock_net(sk
), sll
->sll_ifindex
);
1775 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
1781 static struct proto packet_proto
= {
1783 .owner
= THIS_MODULE
,
1784 .obj_size
= sizeof(struct packet_sock
),
1788 * Create a packet of type SOCK_PACKET.
1791 static int packet_create(struct net
*net
, struct socket
*sock
, int protocol
,
1795 struct packet_sock
*po
;
1796 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
1799 if (!capable(CAP_NET_RAW
))
1801 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
&&
1802 sock
->type
!= SOCK_PACKET
)
1803 return -ESOCKTNOSUPPORT
;
1805 sock
->state
= SS_UNCONNECTED
;
1808 sk
= sk_alloc(net
, PF_PACKET
, GFP_KERNEL
, &packet_proto
);
1812 sock
->ops
= &packet_ops
;
1813 if (sock
->type
== SOCK_PACKET
)
1814 sock
->ops
= &packet_ops_spkt
;
1816 sock_init_data(sock
, sk
);
1819 sk
->sk_family
= PF_PACKET
;
1822 sk
->sk_destruct
= packet_sock_destruct
;
1823 sk_refcnt_debug_inc(sk
);
1826 * Attach a protocol block
1829 spin_lock_init(&po
->bind_lock
);
1830 mutex_init(&po
->pg_vec_lock
);
1831 po
->prot_hook
.func
= packet_rcv
;
1833 if (sock
->type
== SOCK_PACKET
)
1834 po
->prot_hook
.func
= packet_rcv_spkt
;
1836 po
->prot_hook
.af_packet_priv
= sk
;
1839 po
->prot_hook
.type
= proto
;
1840 register_prot_hook(sk
);
1843 spin_lock_bh(&net
->packet
.sklist_lock
);
1844 sk_add_node_rcu(sk
, &net
->packet
.sklist
);
1845 sock_prot_inuse_add(net
, &packet_proto
, 1);
1846 spin_unlock_bh(&net
->packet
.sklist_lock
);
1853 static int packet_recv_error(struct sock
*sk
, struct msghdr
*msg
, int len
)
1855 struct sock_exterr_skb
*serr
;
1856 struct sk_buff
*skb
, *skb2
;
1860 skb
= skb_dequeue(&sk
->sk_error_queue
);
1866 msg
->msg_flags
|= MSG_TRUNC
;
1869 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1873 sock_recv_timestamp(msg
, sk
, skb
);
1875 serr
= SKB_EXT_ERR(skb
);
1876 put_cmsg(msg
, SOL_PACKET
, PACKET_TX_TIMESTAMP
,
1877 sizeof(serr
->ee
), &serr
->ee
);
1879 msg
->msg_flags
|= MSG_ERRQUEUE
;
1882 /* Reset and regenerate socket error */
1883 spin_lock_bh(&sk
->sk_error_queue
.lock
);
1885 if ((skb2
= skb_peek(&sk
->sk_error_queue
)) != NULL
) {
1886 sk
->sk_err
= SKB_EXT_ERR(skb2
)->ee
.ee_errno
;
1887 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
1888 sk
->sk_error_report(sk
);
1890 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
1899 * Pull a packet from our receive queue and hand it to the user.
1900 * If necessary we block.
1903 static int packet_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1904 struct msghdr
*msg
, size_t len
, int flags
)
1906 struct sock
*sk
= sock
->sk
;
1907 struct sk_buff
*skb
;
1909 struct sockaddr_ll
*sll
;
1910 int vnet_hdr_len
= 0;
1913 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
|MSG_ERRQUEUE
))
1917 /* What error should we return now? EUNATTACH? */
1918 if (pkt_sk(sk
)->ifindex
< 0)
1922 if (flags
& MSG_ERRQUEUE
) {
1923 err
= packet_recv_error(sk
, msg
, len
);
1928 * Call the generic datagram receiver. This handles all sorts
1929 * of horrible races and re-entrancy so we can forget about it
1930 * in the protocol layers.
1932 * Now it will return ENETDOWN, if device have just gone down,
1933 * but then it will block.
1936 skb
= skb_recv_datagram(sk
, flags
, flags
& MSG_DONTWAIT
, &err
);
1939 * An error occurred so return it. Because skb_recv_datagram()
1940 * handles the blocking we don't see and worry about blocking
1947 if (pkt_sk(sk
)->has_vnet_hdr
) {
1948 struct virtio_net_hdr vnet_hdr
= { 0 };
1951 vnet_hdr_len
= sizeof(vnet_hdr
);
1952 if (len
< vnet_hdr_len
)
1955 len
-= vnet_hdr_len
;
1957 if (skb_is_gso(skb
)) {
1958 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
1960 /* This is a hint as to how much should be linear. */
1961 vnet_hdr
.hdr_len
= skb_headlen(skb
);
1962 vnet_hdr
.gso_size
= sinfo
->gso_size
;
1963 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
1964 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
1965 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
1966 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
1967 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
1968 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
1969 else if (sinfo
->gso_type
& SKB_GSO_FCOE
)
1973 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
1974 vnet_hdr
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
1976 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
1978 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
1979 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
1980 vnet_hdr
.csum_start
= skb_checksum_start_offset(skb
);
1981 vnet_hdr
.csum_offset
= skb
->csum_offset
;
1982 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
1983 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
1984 } /* else everything is zero */
1986 err
= memcpy_toiovec(msg
->msg_iov
, (void *)&vnet_hdr
,
1993 * If the address length field is there to be filled in, we fill
1997 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
1998 if (sock
->type
== SOCK_PACKET
)
1999 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
2001 msg
->msg_namelen
= sll
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
);
2004 * You lose any data beyond the buffer you gave. If it worries a
2005 * user program they can ask the device for its MTU anyway.
2011 msg
->msg_flags
|= MSG_TRUNC
;
2014 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2018 sock_recv_ts_and_drops(msg
, sk
, skb
);
2021 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
2024 if (pkt_sk(sk
)->auxdata
) {
2025 struct tpacket_auxdata aux
;
2027 aux
.tp_status
= TP_STATUS_USER
;
2028 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2029 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
2030 aux
.tp_len
= PACKET_SKB_CB(skb
)->origlen
;
2031 aux
.tp_snaplen
= skb
->len
;
2033 aux
.tp_net
= skb_network_offset(skb
);
2034 if (vlan_tx_tag_present(skb
)) {
2035 aux
.tp_vlan_tci
= vlan_tx_tag_get(skb
);
2036 aux
.tp_status
|= TP_STATUS_VLAN_VALID
;
2038 aux
.tp_vlan_tci
= 0;
2041 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
2045 * Free or return the buffer as appropriate. Again this
2046 * hides all the races and re-entrancy issues from us.
2048 err
= vnet_hdr_len
+ ((flags
&MSG_TRUNC
) ? skb
->len
: copied
);
2051 skb_free_datagram(sk
, skb
);
2056 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2057 int *uaddr_len
, int peer
)
2059 struct net_device
*dev
;
2060 struct sock
*sk
= sock
->sk
;
2065 uaddr
->sa_family
= AF_PACKET
;
2067 dev
= dev_get_by_index_rcu(sock_net(sk
), pkt_sk(sk
)->ifindex
);
2069 strncpy(uaddr
->sa_data
, dev
->name
, 14);
2071 memset(uaddr
->sa_data
, 0, 14);
2073 *uaddr_len
= sizeof(*uaddr
);
2078 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
2079 int *uaddr_len
, int peer
)
2081 struct net_device
*dev
;
2082 struct sock
*sk
= sock
->sk
;
2083 struct packet_sock
*po
= pkt_sk(sk
);
2084 DECLARE_SOCKADDR(struct sockaddr_ll
*, sll
, uaddr
);
2089 sll
->sll_family
= AF_PACKET
;
2090 sll
->sll_ifindex
= po
->ifindex
;
2091 sll
->sll_protocol
= po
->num
;
2092 sll
->sll_pkttype
= 0;
2094 dev
= dev_get_by_index_rcu(sock_net(sk
), po
->ifindex
);
2096 sll
->sll_hatype
= dev
->type
;
2097 sll
->sll_halen
= dev
->addr_len
;
2098 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
2100 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
2104 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
2109 static int packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
,
2113 case PACKET_MR_MULTICAST
:
2114 if (i
->alen
!= dev
->addr_len
)
2117 return dev_mc_add(dev
, i
->addr
);
2119 return dev_mc_del(dev
, i
->addr
);
2121 case PACKET_MR_PROMISC
:
2122 return dev_set_promiscuity(dev
, what
);
2124 case PACKET_MR_ALLMULTI
:
2125 return dev_set_allmulti(dev
, what
);
2127 case PACKET_MR_UNICAST
:
2128 if (i
->alen
!= dev
->addr_len
)
2131 return dev_uc_add(dev
, i
->addr
);
2133 return dev_uc_del(dev
, i
->addr
);
2141 static void packet_dev_mclist(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
2143 for ( ; i
; i
= i
->next
) {
2144 if (i
->ifindex
== dev
->ifindex
)
2145 packet_dev_mc(dev
, i
, what
);
2149 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2151 struct packet_sock
*po
= pkt_sk(sk
);
2152 struct packet_mclist
*ml
, *i
;
2153 struct net_device
*dev
;
2159 dev
= __dev_get_by_index(sock_net(sk
), mreq
->mr_ifindex
);
2164 if (mreq
->mr_alen
> dev
->addr_len
)
2168 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
2173 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
2174 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2175 ml
->type
== mreq
->mr_type
&&
2176 ml
->alen
== mreq
->mr_alen
&&
2177 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2179 /* Free the new element ... */
2185 i
->type
= mreq
->mr_type
;
2186 i
->ifindex
= mreq
->mr_ifindex
;
2187 i
->alen
= mreq
->mr_alen
;
2188 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
2190 i
->next
= po
->mclist
;
2192 err
= packet_dev_mc(dev
, i
, 1);
2194 po
->mclist
= i
->next
;
2203 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2205 struct packet_mclist
*ml
, **mlp
;
2209 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
2210 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2211 ml
->type
== mreq
->mr_type
&&
2212 ml
->alen
== mreq
->mr_alen
&&
2213 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2214 if (--ml
->count
== 0) {
2215 struct net_device
*dev
;
2217 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2219 packet_dev_mc(dev
, ml
, -1);
2227 return -EADDRNOTAVAIL
;
2230 static void packet_flush_mclist(struct sock
*sk
)
2232 struct packet_sock
*po
= pkt_sk(sk
);
2233 struct packet_mclist
*ml
;
2239 while ((ml
= po
->mclist
) != NULL
) {
2240 struct net_device
*dev
;
2242 po
->mclist
= ml
->next
;
2243 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2245 packet_dev_mc(dev
, ml
, -1);
2252 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, unsigned int optlen
)
2254 struct sock
*sk
= sock
->sk
;
2255 struct packet_sock
*po
= pkt_sk(sk
);
2258 if (level
!= SOL_PACKET
)
2259 return -ENOPROTOOPT
;
2262 case PACKET_ADD_MEMBERSHIP
:
2263 case PACKET_DROP_MEMBERSHIP
:
2265 struct packet_mreq_max mreq
;
2267 memset(&mreq
, 0, sizeof(mreq
));
2268 if (len
< sizeof(struct packet_mreq
))
2270 if (len
> sizeof(mreq
))
2272 if (copy_from_user(&mreq
, optval
, len
))
2274 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
2276 if (optname
== PACKET_ADD_MEMBERSHIP
)
2277 ret
= packet_mc_add(sk
, &mreq
);
2279 ret
= packet_mc_drop(sk
, &mreq
);
2283 case PACKET_RX_RING
:
2284 case PACKET_TX_RING
:
2286 struct tpacket_req req
;
2288 if (optlen
< sizeof(req
))
2290 if (pkt_sk(sk
)->has_vnet_hdr
)
2292 if (copy_from_user(&req
, optval
, sizeof(req
)))
2294 return packet_set_ring(sk
, &req
, 0, optname
== PACKET_TX_RING
);
2296 case PACKET_COPY_THRESH
:
2300 if (optlen
!= sizeof(val
))
2302 if (copy_from_user(&val
, optval
, sizeof(val
)))
2305 pkt_sk(sk
)->copy_thresh
= val
;
2308 case PACKET_VERSION
:
2312 if (optlen
!= sizeof(val
))
2314 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2316 if (copy_from_user(&val
, optval
, sizeof(val
)))
2321 po
->tp_version
= val
;
2327 case PACKET_RESERVE
:
2331 if (optlen
!= sizeof(val
))
2333 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2335 if (copy_from_user(&val
, optval
, sizeof(val
)))
2337 po
->tp_reserve
= val
;
2344 if (optlen
!= sizeof(val
))
2346 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2348 if (copy_from_user(&val
, optval
, sizeof(val
)))
2350 po
->tp_loss
= !!val
;
2353 case PACKET_AUXDATA
:
2357 if (optlen
< sizeof(val
))
2359 if (copy_from_user(&val
, optval
, sizeof(val
)))
2362 po
->auxdata
= !!val
;
2365 case PACKET_ORIGDEV
:
2369 if (optlen
< sizeof(val
))
2371 if (copy_from_user(&val
, optval
, sizeof(val
)))
2374 po
->origdev
= !!val
;
2377 case PACKET_VNET_HDR
:
2381 if (sock
->type
!= SOCK_RAW
)
2383 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2385 if (optlen
< sizeof(val
))
2387 if (copy_from_user(&val
, optval
, sizeof(val
)))
2390 po
->has_vnet_hdr
= !!val
;
2393 case PACKET_TIMESTAMP
:
2397 if (optlen
!= sizeof(val
))
2399 if (copy_from_user(&val
, optval
, sizeof(val
)))
2402 po
->tp_tstamp
= val
;
2409 if (optlen
!= sizeof(val
))
2411 if (copy_from_user(&val
, optval
, sizeof(val
)))
2414 return fanout_add(sk
, val
& 0xffff, val
>> 16);
2417 return -ENOPROTOOPT
;
2421 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
2422 char __user
*optval
, int __user
*optlen
)
2426 struct sock
*sk
= sock
->sk
;
2427 struct packet_sock
*po
= pkt_sk(sk
);
2429 struct tpacket_stats st
;
2431 if (level
!= SOL_PACKET
)
2432 return -ENOPROTOOPT
;
2434 if (get_user(len
, optlen
))
2441 case PACKET_STATISTICS
:
2442 if (len
> sizeof(struct tpacket_stats
))
2443 len
= sizeof(struct tpacket_stats
);
2444 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2446 memset(&po
->stats
, 0, sizeof(st
));
2447 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2448 st
.tp_packets
+= st
.tp_drops
;
2452 case PACKET_AUXDATA
:
2453 if (len
> sizeof(int))
2459 case PACKET_ORIGDEV
:
2460 if (len
> sizeof(int))
2466 case PACKET_VNET_HDR
:
2467 if (len
> sizeof(int))
2469 val
= po
->has_vnet_hdr
;
2473 case PACKET_VERSION
:
2474 if (len
> sizeof(int))
2476 val
= po
->tp_version
;
2480 if (len
> sizeof(int))
2482 if (copy_from_user(&val
, optval
, len
))
2486 val
= sizeof(struct tpacket_hdr
);
2489 val
= sizeof(struct tpacket2_hdr
);
2496 case PACKET_RESERVE
:
2497 if (len
> sizeof(unsigned int))
2498 len
= sizeof(unsigned int);
2499 val
= po
->tp_reserve
;
2503 if (len
> sizeof(unsigned int))
2504 len
= sizeof(unsigned int);
2508 case PACKET_TIMESTAMP
:
2509 if (len
> sizeof(int))
2511 val
= po
->tp_tstamp
;
2515 if (len
> sizeof(int))
2518 ((u32
)po
->fanout
->id
|
2519 ((u32
)po
->fanout
->type
<< 16)) :
2524 return -ENOPROTOOPT
;
2527 if (put_user(len
, optlen
))
2529 if (copy_to_user(optval
, data
, len
))
2535 static int packet_notifier(struct notifier_block
*this, unsigned long msg
, void *data
)
2538 struct hlist_node
*node
;
2539 struct net_device
*dev
= data
;
2540 struct net
*net
= dev_net(dev
);
2543 sk_for_each_rcu(sk
, node
, &net
->packet
.sklist
) {
2544 struct packet_sock
*po
= pkt_sk(sk
);
2547 case NETDEV_UNREGISTER
:
2549 packet_dev_mclist(dev
, po
->mclist
, -1);
2553 if (dev
->ifindex
== po
->ifindex
) {
2554 spin_lock(&po
->bind_lock
);
2556 __unregister_prot_hook(sk
, false);
2557 sk
->sk_err
= ENETDOWN
;
2558 if (!sock_flag(sk
, SOCK_DEAD
))
2559 sk
->sk_error_report(sk
);
2561 if (msg
== NETDEV_UNREGISTER
) {
2563 if (po
->prot_hook
.dev
)
2564 dev_put(po
->prot_hook
.dev
);
2565 po
->prot_hook
.dev
= NULL
;
2567 spin_unlock(&po
->bind_lock
);
2571 if (dev
->ifindex
== po
->ifindex
) {
2572 spin_lock(&po
->bind_lock
);
2574 register_prot_hook(sk
);
2575 spin_unlock(&po
->bind_lock
);
2585 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
2588 struct sock
*sk
= sock
->sk
;
2593 int amount
= sk_wmem_alloc_get(sk
);
2595 return put_user(amount
, (int __user
*)arg
);
2599 struct sk_buff
*skb
;
2602 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2603 skb
= skb_peek(&sk
->sk_receive_queue
);
2606 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2607 return put_user(amount
, (int __user
*)arg
);
2610 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
2612 return sock_get_timestampns(sk
, (struct timespec __user
*)arg
);
2622 case SIOCGIFBRDADDR
:
2623 case SIOCSIFBRDADDR
:
2624 case SIOCGIFNETMASK
:
2625 case SIOCSIFNETMASK
:
2626 case SIOCGIFDSTADDR
:
2627 case SIOCSIFDSTADDR
:
2629 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
2633 return -ENOIOCTLCMD
;
2638 static unsigned int packet_poll(struct file
*file
, struct socket
*sock
,
2641 struct sock
*sk
= sock
->sk
;
2642 struct packet_sock
*po
= pkt_sk(sk
);
2643 unsigned int mask
= datagram_poll(file
, sock
, wait
);
2645 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2646 if (po
->rx_ring
.pg_vec
) {
2647 if (!packet_previous_frame(po
, &po
->rx_ring
, TP_STATUS_KERNEL
))
2648 mask
|= POLLIN
| POLLRDNORM
;
2650 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2651 spin_lock_bh(&sk
->sk_write_queue
.lock
);
2652 if (po
->tx_ring
.pg_vec
) {
2653 if (packet_current_frame(po
, &po
->tx_ring
, TP_STATUS_AVAILABLE
))
2654 mask
|= POLLOUT
| POLLWRNORM
;
2656 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
2661 /* Dirty? Well, I still did not learn better way to account
2665 static void packet_mm_open(struct vm_area_struct
*vma
)
2667 struct file
*file
= vma
->vm_file
;
2668 struct socket
*sock
= file
->private_data
;
2669 struct sock
*sk
= sock
->sk
;
2672 atomic_inc(&pkt_sk(sk
)->mapped
);
2675 static void packet_mm_close(struct vm_area_struct
*vma
)
2677 struct file
*file
= vma
->vm_file
;
2678 struct socket
*sock
= file
->private_data
;
2679 struct sock
*sk
= sock
->sk
;
2682 atomic_dec(&pkt_sk(sk
)->mapped
);
2685 static const struct vm_operations_struct packet_mmap_ops
= {
2686 .open
= packet_mm_open
,
2687 .close
= packet_mm_close
,
2690 static void free_pg_vec(struct pgv
*pg_vec
, unsigned int order
,
2695 for (i
= 0; i
< len
; i
++) {
2696 if (likely(pg_vec
[i
].buffer
)) {
2697 if (is_vmalloc_addr(pg_vec
[i
].buffer
))
2698 vfree(pg_vec
[i
].buffer
);
2700 free_pages((unsigned long)pg_vec
[i
].buffer
,
2702 pg_vec
[i
].buffer
= NULL
;
2708 static inline char *alloc_one_pg_vec_page(unsigned long order
)
2710 char *buffer
= NULL
;
2711 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
|
2712 __GFP_ZERO
| __GFP_NOWARN
| __GFP_NORETRY
;
2714 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
2720 * __get_free_pages failed, fall back to vmalloc
2722 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
2728 * vmalloc failed, lets dig into swap here
2730 gfp_flags
&= ~__GFP_NORETRY
;
2731 buffer
= (char *)__get_free_pages(gfp_flags
, order
);
2736 * complete and utter failure
2741 static struct pgv
*alloc_pg_vec(struct tpacket_req
*req
, int order
)
2743 unsigned int block_nr
= req
->tp_block_nr
;
2747 pg_vec
= kcalloc(block_nr
, sizeof(struct pgv
), GFP_KERNEL
);
2748 if (unlikely(!pg_vec
))
2751 for (i
= 0; i
< block_nr
; i
++) {
2752 pg_vec
[i
].buffer
= alloc_one_pg_vec_page(order
);
2753 if (unlikely(!pg_vec
[i
].buffer
))
2754 goto out_free_pgvec
;
2761 free_pg_vec(pg_vec
, order
, block_nr
);
2766 static int packet_set_ring(struct sock
*sk
, struct tpacket_req
*req
,
2767 int closing
, int tx_ring
)
2769 struct pgv
*pg_vec
= NULL
;
2770 struct packet_sock
*po
= pkt_sk(sk
);
2771 int was_running
, order
= 0;
2772 struct packet_ring_buffer
*rb
;
2773 struct sk_buff_head
*rb_queue
;
2777 rb
= tx_ring
? &po
->tx_ring
: &po
->rx_ring
;
2778 rb_queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
2782 if (atomic_read(&po
->mapped
))
2784 if (atomic_read(&rb
->pending
))
2788 if (req
->tp_block_nr
) {
2789 /* Sanity tests and some calculations */
2791 if (unlikely(rb
->pg_vec
))
2794 switch (po
->tp_version
) {
2796 po
->tp_hdrlen
= TPACKET_HDRLEN
;
2799 po
->tp_hdrlen
= TPACKET2_HDRLEN
;
2804 if (unlikely((int)req
->tp_block_size
<= 0))
2806 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
2808 if (unlikely(req
->tp_frame_size
< po
->tp_hdrlen
+
2811 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
2814 rb
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
2815 if (unlikely(rb
->frames_per_block
<= 0))
2817 if (unlikely((rb
->frames_per_block
* req
->tp_block_nr
) !=
2822 order
= get_order(req
->tp_block_size
);
2823 pg_vec
= alloc_pg_vec(req
, order
);
2824 if (unlikely(!pg_vec
))
2830 if (unlikely(req
->tp_frame_nr
))
2836 /* Detach socket from network */
2837 spin_lock(&po
->bind_lock
);
2838 was_running
= po
->running
;
2842 __unregister_prot_hook(sk
, false);
2844 spin_unlock(&po
->bind_lock
);
2849 mutex_lock(&po
->pg_vec_lock
);
2850 if (closing
|| atomic_read(&po
->mapped
) == 0) {
2852 spin_lock_bh(&rb_queue
->lock
);
2853 swap(rb
->pg_vec
, pg_vec
);
2854 rb
->frame_max
= (req
->tp_frame_nr
- 1);
2856 rb
->frame_size
= req
->tp_frame_size
;
2857 spin_unlock_bh(&rb_queue
->lock
);
2859 swap(rb
->pg_vec_order
, order
);
2860 swap(rb
->pg_vec_len
, req
->tp_block_nr
);
2862 rb
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
2863 po
->prot_hook
.func
= (po
->rx_ring
.pg_vec
) ?
2864 tpacket_rcv
: packet_rcv
;
2865 skb_queue_purge(rb_queue
);
2866 if (atomic_read(&po
->mapped
))
2867 pr_err("packet_mmap: vma is busy: %d\n",
2868 atomic_read(&po
->mapped
));
2870 mutex_unlock(&po
->pg_vec_lock
);
2872 spin_lock(&po
->bind_lock
);
2875 register_prot_hook(sk
);
2877 spin_unlock(&po
->bind_lock
);
2882 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
2887 static int packet_mmap(struct file
*file
, struct socket
*sock
,
2888 struct vm_area_struct
*vma
)
2890 struct sock
*sk
= sock
->sk
;
2891 struct packet_sock
*po
= pkt_sk(sk
);
2892 unsigned long size
, expected_size
;
2893 struct packet_ring_buffer
*rb
;
2894 unsigned long start
;
2901 mutex_lock(&po
->pg_vec_lock
);
2904 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
2906 expected_size
+= rb
->pg_vec_len
2912 if (expected_size
== 0)
2915 size
= vma
->vm_end
- vma
->vm_start
;
2916 if (size
!= expected_size
)
2919 start
= vma
->vm_start
;
2920 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
2921 if (rb
->pg_vec
== NULL
)
2924 for (i
= 0; i
< rb
->pg_vec_len
; i
++) {
2926 void *kaddr
= rb
->pg_vec
[i
].buffer
;
2929 for (pg_num
= 0; pg_num
< rb
->pg_vec_pages
; pg_num
++) {
2930 page
= pgv_to_page(kaddr
);
2931 err
= vm_insert_page(vma
, start
, page
);
2940 atomic_inc(&po
->mapped
);
2941 vma
->vm_ops
= &packet_mmap_ops
;
2945 mutex_unlock(&po
->pg_vec_lock
);
2949 static const struct proto_ops packet_ops_spkt
= {
2950 .family
= PF_PACKET
,
2951 .owner
= THIS_MODULE
,
2952 .release
= packet_release
,
2953 .bind
= packet_bind_spkt
,
2954 .connect
= sock_no_connect
,
2955 .socketpair
= sock_no_socketpair
,
2956 .accept
= sock_no_accept
,
2957 .getname
= packet_getname_spkt
,
2958 .poll
= datagram_poll
,
2959 .ioctl
= packet_ioctl
,
2960 .listen
= sock_no_listen
,
2961 .shutdown
= sock_no_shutdown
,
2962 .setsockopt
= sock_no_setsockopt
,
2963 .getsockopt
= sock_no_getsockopt
,
2964 .sendmsg
= packet_sendmsg_spkt
,
2965 .recvmsg
= packet_recvmsg
,
2966 .mmap
= sock_no_mmap
,
2967 .sendpage
= sock_no_sendpage
,
2970 static const struct proto_ops packet_ops
= {
2971 .family
= PF_PACKET
,
2972 .owner
= THIS_MODULE
,
2973 .release
= packet_release
,
2974 .bind
= packet_bind
,
2975 .connect
= sock_no_connect
,
2976 .socketpair
= sock_no_socketpair
,
2977 .accept
= sock_no_accept
,
2978 .getname
= packet_getname
,
2979 .poll
= packet_poll
,
2980 .ioctl
= packet_ioctl
,
2981 .listen
= sock_no_listen
,
2982 .shutdown
= sock_no_shutdown
,
2983 .setsockopt
= packet_setsockopt
,
2984 .getsockopt
= packet_getsockopt
,
2985 .sendmsg
= packet_sendmsg
,
2986 .recvmsg
= packet_recvmsg
,
2987 .mmap
= packet_mmap
,
2988 .sendpage
= sock_no_sendpage
,
2991 static const struct net_proto_family packet_family_ops
= {
2992 .family
= PF_PACKET
,
2993 .create
= packet_create
,
2994 .owner
= THIS_MODULE
,
2997 static struct notifier_block packet_netdev_notifier
= {
2998 .notifier_call
= packet_notifier
,
3001 #ifdef CONFIG_PROC_FS
3003 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
3006 struct net
*net
= seq_file_net(seq
);
3009 return seq_hlist_start_head_rcu(&net
->packet
.sklist
, *pos
);
3012 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
3014 struct net
*net
= seq_file_net(seq
);
3015 return seq_hlist_next_rcu(v
, &net
->packet
.sklist
, pos
);
3018 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
3024 static int packet_seq_show(struct seq_file
*seq
, void *v
)
3026 if (v
== SEQ_START_TOKEN
)
3027 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3029 struct sock
*s
= sk_entry(v
);
3030 const struct packet_sock
*po
= pkt_sk(s
);
3033 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
3035 atomic_read(&s
->sk_refcnt
),
3040 atomic_read(&s
->sk_rmem_alloc
),
3048 static const struct seq_operations packet_seq_ops
= {
3049 .start
= packet_seq_start
,
3050 .next
= packet_seq_next
,
3051 .stop
= packet_seq_stop
,
3052 .show
= packet_seq_show
,
3055 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
3057 return seq_open_net(inode
, file
, &packet_seq_ops
,
3058 sizeof(struct seq_net_private
));
3061 static const struct file_operations packet_seq_fops
= {
3062 .owner
= THIS_MODULE
,
3063 .open
= packet_seq_open
,
3065 .llseek
= seq_lseek
,
3066 .release
= seq_release_net
,
3071 static int __net_init
packet_net_init(struct net
*net
)
3073 spin_lock_init(&net
->packet
.sklist_lock
);
3074 INIT_HLIST_HEAD(&net
->packet
.sklist
);
3076 if (!proc_net_fops_create(net
, "packet", 0, &packet_seq_fops
))
3082 static void __net_exit
packet_net_exit(struct net
*net
)
3084 proc_net_remove(net
, "packet");
3087 static struct pernet_operations packet_net_ops
= {
3088 .init
= packet_net_init
,
3089 .exit
= packet_net_exit
,
3093 static void __exit
packet_exit(void)
3095 unregister_netdevice_notifier(&packet_netdev_notifier
);
3096 unregister_pernet_subsys(&packet_net_ops
);
3097 sock_unregister(PF_PACKET
);
3098 proto_unregister(&packet_proto
);
3101 static int __init
packet_init(void)
3103 int rc
= proto_register(&packet_proto
, 0);
3108 sock_register(&packet_family_ops
);
3109 register_pernet_subsys(&packet_net_ops
);
3110 register_netdevice_notifier(&packet_netdev_notifier
);
3115 module_init(packet_init
);
3116 module_exit(packet_exit
);
3117 MODULE_LICENSE("GPL");
3118 MODULE_ALIAS_NETPROTO(PF_PACKET
);