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 po
->stats
.tp_drops
= atomic_inc_return(&sk
->sk_drops
);
967 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
968 skb
->data
= skb_head
;
976 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
977 struct packet_type
*pt
, struct net_device
*orig_dev
)
980 struct packet_sock
*po
;
981 struct sockaddr_ll
*sll
;
983 struct tpacket_hdr
*h1
;
984 struct tpacket2_hdr
*h2
;
987 u8
*skb_head
= skb
->data
;
988 int skb_len
= skb
->len
;
989 unsigned int snaplen
, res
;
990 unsigned long status
= TP_STATUS_LOSING
|TP_STATUS_USER
;
991 unsigned short macoff
, netoff
, hdrlen
;
992 struct sk_buff
*copy_skb
= NULL
;
995 struct skb_shared_hwtstamps
*shhwtstamps
= skb_hwtstamps(skb
);
997 if (skb
->pkt_type
== PACKET_LOOPBACK
)
1000 sk
= pt
->af_packet_priv
;
1003 if (!net_eq(dev_net(dev
), sock_net(sk
)))
1006 if (dev
->header_ops
) {
1007 if (sk
->sk_type
!= SOCK_DGRAM
)
1008 skb_push(skb
, skb
->data
- skb_mac_header(skb
));
1009 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
1010 /* Special case: outgoing packets have ll header at head */
1011 skb_pull(skb
, skb_network_offset(skb
));
1015 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
1016 status
|= TP_STATUS_CSUMNOTREADY
;
1020 res
= run_filter(skb
, sk
, snaplen
);
1022 goto drop_n_restore
;
1026 if (sk
->sk_type
== SOCK_DGRAM
) {
1027 macoff
= netoff
= TPACKET_ALIGN(po
->tp_hdrlen
) + 16 +
1030 unsigned maclen
= skb_network_offset(skb
);
1031 netoff
= TPACKET_ALIGN(po
->tp_hdrlen
+
1032 (maclen
< 16 ? 16 : maclen
)) +
1034 macoff
= netoff
- maclen
;
1037 if (macoff
+ snaplen
> po
->rx_ring
.frame_size
) {
1038 if (po
->copy_thresh
&&
1039 atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
<
1040 (unsigned)sk
->sk_rcvbuf
) {
1041 if (skb_shared(skb
)) {
1042 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
1044 copy_skb
= skb_get(skb
);
1045 skb_head
= skb
->data
;
1048 skb_set_owner_r(copy_skb
, sk
);
1050 snaplen
= po
->rx_ring
.frame_size
- macoff
;
1051 if ((int)snaplen
< 0)
1055 spin_lock(&sk
->sk_receive_queue
.lock
);
1056 h
.raw
= packet_current_frame(po
, &po
->rx_ring
, TP_STATUS_KERNEL
);
1059 packet_increment_head(&po
->rx_ring
);
1060 po
->stats
.tp_packets
++;
1062 status
|= TP_STATUS_COPY
;
1063 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
1065 if (!po
->stats
.tp_drops
)
1066 status
&= ~TP_STATUS_LOSING
;
1067 spin_unlock(&sk
->sk_receive_queue
.lock
);
1069 skb_copy_bits(skb
, 0, h
.raw
+ macoff
, snaplen
);
1071 switch (po
->tp_version
) {
1073 h
.h1
->tp_len
= skb
->len
;
1074 h
.h1
->tp_snaplen
= snaplen
;
1075 h
.h1
->tp_mac
= macoff
;
1076 h
.h1
->tp_net
= netoff
;
1077 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1078 && shhwtstamps
->syststamp
.tv64
)
1079 tv
= ktime_to_timeval(shhwtstamps
->syststamp
);
1080 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1081 && shhwtstamps
->hwtstamp
.tv64
)
1082 tv
= ktime_to_timeval(shhwtstamps
->hwtstamp
);
1083 else if (skb
->tstamp
.tv64
)
1084 tv
= ktime_to_timeval(skb
->tstamp
);
1086 do_gettimeofday(&tv
);
1087 h
.h1
->tp_sec
= tv
.tv_sec
;
1088 h
.h1
->tp_usec
= tv
.tv_usec
;
1089 hdrlen
= sizeof(*h
.h1
);
1092 h
.h2
->tp_len
= skb
->len
;
1093 h
.h2
->tp_snaplen
= snaplen
;
1094 h
.h2
->tp_mac
= macoff
;
1095 h
.h2
->tp_net
= netoff
;
1096 if ((po
->tp_tstamp
& SOF_TIMESTAMPING_SYS_HARDWARE
)
1097 && shhwtstamps
->syststamp
.tv64
)
1098 ts
= ktime_to_timespec(shhwtstamps
->syststamp
);
1099 else if ((po
->tp_tstamp
& SOF_TIMESTAMPING_RAW_HARDWARE
)
1100 && shhwtstamps
->hwtstamp
.tv64
)
1101 ts
= ktime_to_timespec(shhwtstamps
->hwtstamp
);
1102 else if (skb
->tstamp
.tv64
)
1103 ts
= ktime_to_timespec(skb
->tstamp
);
1105 getnstimeofday(&ts
);
1106 h
.h2
->tp_sec
= ts
.tv_sec
;
1107 h
.h2
->tp_nsec
= ts
.tv_nsec
;
1108 if (vlan_tx_tag_present(skb
)) {
1109 h
.h2
->tp_vlan_tci
= vlan_tx_tag_get(skb
);
1110 status
|= TP_STATUS_VLAN_VALID
;
1112 h
.h2
->tp_vlan_tci
= 0;
1114 h
.h2
->tp_padding
= 0;
1115 hdrlen
= sizeof(*h
.h2
);
1121 sll
= h
.raw
+ TPACKET_ALIGN(hdrlen
);
1122 sll
->sll_halen
= dev_parse_header(skb
, sll
->sll_addr
);
1123 sll
->sll_family
= AF_PACKET
;
1124 sll
->sll_hatype
= dev
->type
;
1125 sll
->sll_protocol
= skb
->protocol
;
1126 sll
->sll_pkttype
= skb
->pkt_type
;
1127 if (unlikely(po
->origdev
))
1128 sll
->sll_ifindex
= orig_dev
->ifindex
;
1130 sll
->sll_ifindex
= dev
->ifindex
;
1133 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
1137 end
= (u8
*)PAGE_ALIGN((unsigned long)h
.raw
+ macoff
+ snaplen
);
1138 for (start
= h
.raw
; start
< end
; start
+= PAGE_SIZE
)
1139 flush_dcache_page(pgv_to_page(start
));
1143 __packet_set_status(po
, h
.raw
, status
);
1145 sk
->sk_data_ready(sk
, 0);
1148 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
1149 skb
->data
= skb_head
;
1157 po
->stats
.tp_drops
++;
1158 spin_unlock(&sk
->sk_receive_queue
.lock
);
1160 sk
->sk_data_ready(sk
, 0);
1161 kfree_skb(copy_skb
);
1162 goto drop_n_restore
;
1165 static void tpacket_destruct_skb(struct sk_buff
*skb
)
1167 struct packet_sock
*po
= pkt_sk(skb
->sk
);
1170 BUG_ON(skb
== NULL
);
1172 if (likely(po
->tx_ring
.pg_vec
)) {
1173 ph
= skb_shinfo(skb
)->destructor_arg
;
1174 BUG_ON(__packet_get_status(po
, ph
) != TP_STATUS_SENDING
);
1175 BUG_ON(atomic_read(&po
->tx_ring
.pending
) == 0);
1176 atomic_dec(&po
->tx_ring
.pending
);
1177 __packet_set_status(po
, ph
, TP_STATUS_AVAILABLE
);
1183 static int tpacket_fill_skb(struct packet_sock
*po
, struct sk_buff
*skb
,
1184 void *frame
, struct net_device
*dev
, int size_max
,
1185 __be16 proto
, unsigned char *addr
)
1188 struct tpacket_hdr
*h1
;
1189 struct tpacket2_hdr
*h2
;
1192 int to_write
, offset
, len
, tp_len
, nr_frags
, len_max
;
1193 struct socket
*sock
= po
->sk
.sk_socket
;
1200 skb
->protocol
= proto
;
1202 skb
->priority
= po
->sk
.sk_priority
;
1203 skb
->mark
= po
->sk
.sk_mark
;
1204 skb_shinfo(skb
)->destructor_arg
= ph
.raw
;
1206 switch (po
->tp_version
) {
1208 tp_len
= ph
.h2
->tp_len
;
1211 tp_len
= ph
.h1
->tp_len
;
1214 if (unlikely(tp_len
> size_max
)) {
1215 pr_err("packet size is too long (%d > %d)\n", tp_len
, size_max
);
1219 skb_reserve(skb
, LL_RESERVED_SPACE(dev
));
1220 skb_reset_network_header(skb
);
1222 data
= ph
.raw
+ po
->tp_hdrlen
- sizeof(struct sockaddr_ll
);
1225 if (sock
->type
== SOCK_DGRAM
) {
1226 err
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
,
1228 if (unlikely(err
< 0))
1230 } else if (dev
->hard_header_len
) {
1231 /* net device doesn't like empty head */
1232 if (unlikely(tp_len
<= dev
->hard_header_len
)) {
1233 pr_err("packet size is too short (%d < %d)\n",
1234 tp_len
, dev
->hard_header_len
);
1238 skb_push(skb
, dev
->hard_header_len
);
1239 err
= skb_store_bits(skb
, 0, data
,
1240 dev
->hard_header_len
);
1244 data
+= dev
->hard_header_len
;
1245 to_write
-= dev
->hard_header_len
;
1249 offset
= offset_in_page(data
);
1250 len_max
= PAGE_SIZE
- offset
;
1251 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1253 skb
->data_len
= to_write
;
1254 skb
->len
+= to_write
;
1255 skb
->truesize
+= to_write
;
1256 atomic_add(to_write
, &po
->sk
.sk_wmem_alloc
);
1258 while (likely(to_write
)) {
1259 nr_frags
= skb_shinfo(skb
)->nr_frags
;
1261 if (unlikely(nr_frags
>= MAX_SKB_FRAGS
)) {
1262 pr_err("Packet exceed the number of skb frags(%lu)\n",
1267 page
= pgv_to_page(data
);
1269 flush_dcache_page(page
);
1271 skb_fill_page_desc(skb
, nr_frags
, page
, offset
, len
);
1274 len_max
= PAGE_SIZE
;
1275 len
= ((to_write
> len_max
) ? len_max
: to_write
);
1281 static int tpacket_snd(struct packet_sock
*po
, struct msghdr
*msg
)
1283 struct sk_buff
*skb
;
1284 struct net_device
*dev
;
1286 bool need_rls_dev
= false;
1287 int err
, reserve
= 0;
1289 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
1290 int tp_len
, size_max
;
1291 unsigned char *addr
;
1295 mutex_lock(&po
->pg_vec_lock
);
1298 if (saddr
== NULL
) {
1299 dev
= po
->prot_hook
.dev
;
1304 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
1306 if (msg
->msg_namelen
< (saddr
->sll_halen
1307 + offsetof(struct sockaddr_ll
,
1310 proto
= saddr
->sll_protocol
;
1311 addr
= saddr
->sll_addr
;
1312 dev
= dev_get_by_index(sock_net(&po
->sk
), saddr
->sll_ifindex
);
1313 need_rls_dev
= true;
1317 if (unlikely(dev
== NULL
))
1320 reserve
= dev
->hard_header_len
;
1323 if (unlikely(!(dev
->flags
& IFF_UP
)))
1326 size_max
= po
->tx_ring
.frame_size
1327 - (po
->tp_hdrlen
- sizeof(struct sockaddr_ll
));
1329 if (size_max
> dev
->mtu
+ reserve
)
1330 size_max
= dev
->mtu
+ reserve
;
1333 ph
= packet_current_frame(po
, &po
->tx_ring
,
1334 TP_STATUS_SEND_REQUEST
);
1336 if (unlikely(ph
== NULL
)) {
1341 status
= TP_STATUS_SEND_REQUEST
;
1342 skb
= sock_alloc_send_skb(&po
->sk
,
1343 LL_ALLOCATED_SPACE(dev
)
1344 + sizeof(struct sockaddr_ll
),
1347 if (unlikely(skb
== NULL
))
1350 tp_len
= tpacket_fill_skb(po
, skb
, ph
, dev
, size_max
, proto
,
1353 if (unlikely(tp_len
< 0)) {
1355 __packet_set_status(po
, ph
,
1356 TP_STATUS_AVAILABLE
);
1357 packet_increment_head(&po
->tx_ring
);
1361 status
= TP_STATUS_WRONG_FORMAT
;
1367 skb
->destructor
= tpacket_destruct_skb
;
1368 __packet_set_status(po
, ph
, TP_STATUS_SENDING
);
1369 atomic_inc(&po
->tx_ring
.pending
);
1371 status
= TP_STATUS_SEND_REQUEST
;
1372 err
= dev_queue_xmit(skb
);
1373 if (unlikely(err
> 0)) {
1374 err
= net_xmit_errno(err
);
1375 if (err
&& __packet_get_status(po
, ph
) ==
1376 TP_STATUS_AVAILABLE
) {
1377 /* skb was destructed already */
1382 * skb was dropped but not destructed yet;
1383 * let's treat it like congestion or err < 0
1387 packet_increment_head(&po
->tx_ring
);
1389 } while (likely((ph
!= NULL
) ||
1390 ((!(msg
->msg_flags
& MSG_DONTWAIT
)) &&
1391 (atomic_read(&po
->tx_ring
.pending
))))
1398 __packet_set_status(po
, ph
, status
);
1404 mutex_unlock(&po
->pg_vec_lock
);
1408 static inline struct sk_buff
*packet_alloc_skb(struct sock
*sk
, size_t prepad
,
1409 size_t reserve
, size_t len
,
1410 size_t linear
, int noblock
,
1413 struct sk_buff
*skb
;
1415 /* Under a page? Don't bother with paged skb. */
1416 if (prepad
+ len
< PAGE_SIZE
|| !linear
)
1419 skb
= sock_alloc_send_pskb(sk
, prepad
+ linear
, len
- linear
, noblock
,
1424 skb_reserve(skb
, reserve
);
1425 skb_put(skb
, linear
);
1426 skb
->data_len
= len
- linear
;
1427 skb
->len
+= len
- linear
;
1432 static int packet_snd(struct socket
*sock
,
1433 struct msghdr
*msg
, size_t len
)
1435 struct sock
*sk
= sock
->sk
;
1436 struct sockaddr_ll
*saddr
= (struct sockaddr_ll
*)msg
->msg_name
;
1437 struct sk_buff
*skb
;
1438 struct net_device
*dev
;
1440 bool need_rls_dev
= false;
1441 unsigned char *addr
;
1442 int err
, reserve
= 0;
1443 struct virtio_net_hdr vnet_hdr
= { 0 };
1446 struct packet_sock
*po
= pkt_sk(sk
);
1447 unsigned short gso_type
= 0;
1450 * Get and verify the address.
1453 if (saddr
== NULL
) {
1454 dev
= po
->prot_hook
.dev
;
1459 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
1461 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
1463 proto
= saddr
->sll_protocol
;
1464 addr
= saddr
->sll_addr
;
1465 dev
= dev_get_by_index(sock_net(sk
), saddr
->sll_ifindex
);
1466 need_rls_dev
= true;
1472 if (sock
->type
== SOCK_RAW
)
1473 reserve
= dev
->hard_header_len
;
1476 if (!(dev
->flags
& IFF_UP
))
1479 if (po
->has_vnet_hdr
) {
1480 vnet_hdr_len
= sizeof(vnet_hdr
);
1483 if (len
< vnet_hdr_len
)
1486 len
-= vnet_hdr_len
;
1488 err
= memcpy_fromiovec((void *)&vnet_hdr
, msg
->msg_iov
,
1493 if ((vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) &&
1494 (vnet_hdr
.csum_start
+ vnet_hdr
.csum_offset
+ 2 >
1496 vnet_hdr
.hdr_len
= vnet_hdr
.csum_start
+
1497 vnet_hdr
.csum_offset
+ 2;
1500 if (vnet_hdr
.hdr_len
> len
)
1503 if (vnet_hdr
.gso_type
!= VIRTIO_NET_HDR_GSO_NONE
) {
1504 switch (vnet_hdr
.gso_type
& ~VIRTIO_NET_HDR_GSO_ECN
) {
1505 case VIRTIO_NET_HDR_GSO_TCPV4
:
1506 gso_type
= SKB_GSO_TCPV4
;
1508 case VIRTIO_NET_HDR_GSO_TCPV6
:
1509 gso_type
= SKB_GSO_TCPV6
;
1511 case VIRTIO_NET_HDR_GSO_UDP
:
1512 gso_type
= SKB_GSO_UDP
;
1518 if (vnet_hdr
.gso_type
& VIRTIO_NET_HDR_GSO_ECN
)
1519 gso_type
|= SKB_GSO_TCP_ECN
;
1521 if (vnet_hdr
.gso_size
== 0)
1528 if (!gso_type
&& (len
> dev
->mtu
+ reserve
+ VLAN_HLEN
))
1532 skb
= packet_alloc_skb(sk
, LL_ALLOCATED_SPACE(dev
),
1533 LL_RESERVED_SPACE(dev
), len
, vnet_hdr
.hdr_len
,
1534 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1538 skb_set_network_header(skb
, reserve
);
1541 if (sock
->type
== SOCK_DGRAM
&&
1542 (offset
= dev_hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
)) < 0)
1545 /* Returns -EFAULT on error */
1546 err
= skb_copy_datagram_from_iovec(skb
, offset
, msg
->msg_iov
, 0, len
);
1549 err
= sock_tx_timestamp(sk
, &skb_shinfo(skb
)->tx_flags
);
1553 if (!gso_type
&& (len
> dev
->mtu
+ reserve
)) {
1554 /* Earlier code assumed this would be a VLAN pkt,
1555 * double-check this now that we have the actual
1558 struct ethhdr
*ehdr
;
1559 skb_reset_mac_header(skb
);
1560 ehdr
= eth_hdr(skb
);
1561 if (ehdr
->h_proto
!= htons(ETH_P_8021Q
)) {
1567 skb
->protocol
= proto
;
1569 skb
->priority
= sk
->sk_priority
;
1570 skb
->mark
= sk
->sk_mark
;
1572 if (po
->has_vnet_hdr
) {
1573 if (vnet_hdr
.flags
& VIRTIO_NET_HDR_F_NEEDS_CSUM
) {
1574 if (!skb_partial_csum_set(skb
, vnet_hdr
.csum_start
,
1575 vnet_hdr
.csum_offset
)) {
1581 skb_shinfo(skb
)->gso_size
= vnet_hdr
.gso_size
;
1582 skb_shinfo(skb
)->gso_type
= gso_type
;
1584 /* Header must be checked, and gso_segs computed. */
1585 skb_shinfo(skb
)->gso_type
|= SKB_GSO_DODGY
;
1586 skb_shinfo(skb
)->gso_segs
= 0;
1588 len
+= vnet_hdr_len
;
1595 err
= dev_queue_xmit(skb
);
1596 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
1607 if (dev
&& need_rls_dev
)
1613 static int packet_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1614 struct msghdr
*msg
, size_t len
)
1616 struct sock
*sk
= sock
->sk
;
1617 struct packet_sock
*po
= pkt_sk(sk
);
1618 if (po
->tx_ring
.pg_vec
)
1619 return tpacket_snd(po
, msg
);
1621 return packet_snd(sock
, msg
, len
);
1625 * Close a PACKET socket. This is fairly simple. We immediately go
1626 * to 'closed' state and remove our protocol entry in the device list.
1629 static int packet_release(struct socket
*sock
)
1631 struct sock
*sk
= sock
->sk
;
1632 struct packet_sock
*po
;
1634 struct tpacket_req req
;
1642 spin_lock_bh(&net
->packet
.sklist_lock
);
1643 sk_del_node_init_rcu(sk
);
1644 sock_prot_inuse_add(net
, sk
->sk_prot
, -1);
1645 spin_unlock_bh(&net
->packet
.sklist_lock
);
1647 spin_lock(&po
->bind_lock
);
1648 unregister_prot_hook(sk
, false);
1649 if (po
->prot_hook
.dev
) {
1650 dev_put(po
->prot_hook
.dev
);
1651 po
->prot_hook
.dev
= NULL
;
1653 spin_unlock(&po
->bind_lock
);
1655 packet_flush_mclist(sk
);
1657 memset(&req
, 0, sizeof(req
));
1659 if (po
->rx_ring
.pg_vec
)
1660 packet_set_ring(sk
, &req
, 1, 0);
1662 if (po
->tx_ring
.pg_vec
)
1663 packet_set_ring(sk
, &req
, 1, 1);
1669 * Now the socket is dead. No more input will appear.
1676 skb_queue_purge(&sk
->sk_receive_queue
);
1677 sk_refcnt_debug_release(sk
);
1684 * Attach a packet hook.
1687 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 protocol
)
1689 struct packet_sock
*po
= pkt_sk(sk
);
1696 spin_lock(&po
->bind_lock
);
1697 unregister_prot_hook(sk
, true);
1699 po
->prot_hook
.type
= protocol
;
1700 if (po
->prot_hook
.dev
)
1701 dev_put(po
->prot_hook
.dev
);
1702 po
->prot_hook
.dev
= dev
;
1704 po
->ifindex
= dev
? dev
->ifindex
: 0;
1709 if (!dev
|| (dev
->flags
& IFF_UP
)) {
1710 register_prot_hook(sk
);
1712 sk
->sk_err
= ENETDOWN
;
1713 if (!sock_flag(sk
, SOCK_DEAD
))
1714 sk
->sk_error_report(sk
);
1718 spin_unlock(&po
->bind_lock
);
1724 * Bind a packet socket to a device
1727 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
1730 struct sock
*sk
= sock
->sk
;
1732 struct net_device
*dev
;
1739 if (addr_len
!= sizeof(struct sockaddr
))
1741 strlcpy(name
, uaddr
->sa_data
, sizeof(name
));
1743 dev
= dev_get_by_name(sock_net(sk
), name
);
1745 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
1749 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
1751 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
1752 struct sock
*sk
= sock
->sk
;
1753 struct net_device
*dev
= NULL
;
1761 if (addr_len
< sizeof(struct sockaddr_ll
))
1763 if (sll
->sll_family
!= AF_PACKET
)
1766 if (sll
->sll_ifindex
) {
1768 dev
= dev_get_by_index(sock_net(sk
), sll
->sll_ifindex
);
1772 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
1778 static struct proto packet_proto
= {
1780 .owner
= THIS_MODULE
,
1781 .obj_size
= sizeof(struct packet_sock
),
1785 * Create a packet of type SOCK_PACKET.
1788 static int packet_create(struct net
*net
, struct socket
*sock
, int protocol
,
1792 struct packet_sock
*po
;
1793 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
1796 if (!capable(CAP_NET_RAW
))
1798 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
&&
1799 sock
->type
!= SOCK_PACKET
)
1800 return -ESOCKTNOSUPPORT
;
1802 sock
->state
= SS_UNCONNECTED
;
1805 sk
= sk_alloc(net
, PF_PACKET
, GFP_KERNEL
, &packet_proto
);
1809 sock
->ops
= &packet_ops
;
1810 if (sock
->type
== SOCK_PACKET
)
1811 sock
->ops
= &packet_ops_spkt
;
1813 sock_init_data(sock
, sk
);
1816 sk
->sk_family
= PF_PACKET
;
1819 sk
->sk_destruct
= packet_sock_destruct
;
1820 sk_refcnt_debug_inc(sk
);
1823 * Attach a protocol block
1826 spin_lock_init(&po
->bind_lock
);
1827 mutex_init(&po
->pg_vec_lock
);
1828 po
->prot_hook
.func
= packet_rcv
;
1830 if (sock
->type
== SOCK_PACKET
)
1831 po
->prot_hook
.func
= packet_rcv_spkt
;
1833 po
->prot_hook
.af_packet_priv
= sk
;
1836 po
->prot_hook
.type
= proto
;
1837 register_prot_hook(sk
);
1840 spin_lock_bh(&net
->packet
.sklist_lock
);
1841 sk_add_node_rcu(sk
, &net
->packet
.sklist
);
1842 sock_prot_inuse_add(net
, &packet_proto
, 1);
1843 spin_unlock_bh(&net
->packet
.sklist_lock
);
1850 static int packet_recv_error(struct sock
*sk
, struct msghdr
*msg
, int len
)
1852 struct sock_exterr_skb
*serr
;
1853 struct sk_buff
*skb
, *skb2
;
1857 skb
= skb_dequeue(&sk
->sk_error_queue
);
1863 msg
->msg_flags
|= MSG_TRUNC
;
1866 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1870 sock_recv_timestamp(msg
, sk
, skb
);
1872 serr
= SKB_EXT_ERR(skb
);
1873 put_cmsg(msg
, SOL_PACKET
, PACKET_TX_TIMESTAMP
,
1874 sizeof(serr
->ee
), &serr
->ee
);
1876 msg
->msg_flags
|= MSG_ERRQUEUE
;
1879 /* Reset and regenerate socket error */
1880 spin_lock_bh(&sk
->sk_error_queue
.lock
);
1882 if ((skb2
= skb_peek(&sk
->sk_error_queue
)) != NULL
) {
1883 sk
->sk_err
= SKB_EXT_ERR(skb2
)->ee
.ee_errno
;
1884 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
1885 sk
->sk_error_report(sk
);
1887 spin_unlock_bh(&sk
->sk_error_queue
.lock
);
1896 * Pull a packet from our receive queue and hand it to the user.
1897 * If necessary we block.
1900 static int packet_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1901 struct msghdr
*msg
, size_t len
, int flags
)
1903 struct sock
*sk
= sock
->sk
;
1904 struct sk_buff
*skb
;
1906 struct sockaddr_ll
*sll
;
1907 int vnet_hdr_len
= 0;
1910 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
|MSG_ERRQUEUE
))
1914 /* What error should we return now? EUNATTACH? */
1915 if (pkt_sk(sk
)->ifindex
< 0)
1919 if (flags
& MSG_ERRQUEUE
) {
1920 err
= packet_recv_error(sk
, msg
, len
);
1925 * Call the generic datagram receiver. This handles all sorts
1926 * of horrible races and re-entrancy so we can forget about it
1927 * in the protocol layers.
1929 * Now it will return ENETDOWN, if device have just gone down,
1930 * but then it will block.
1933 skb
= skb_recv_datagram(sk
, flags
, flags
& MSG_DONTWAIT
, &err
);
1936 * An error occurred so return it. Because skb_recv_datagram()
1937 * handles the blocking we don't see and worry about blocking
1944 if (pkt_sk(sk
)->has_vnet_hdr
) {
1945 struct virtio_net_hdr vnet_hdr
= { 0 };
1948 vnet_hdr_len
= sizeof(vnet_hdr
);
1949 if (len
< vnet_hdr_len
)
1952 len
-= vnet_hdr_len
;
1954 if (skb_is_gso(skb
)) {
1955 struct skb_shared_info
*sinfo
= skb_shinfo(skb
);
1957 /* This is a hint as to how much should be linear. */
1958 vnet_hdr
.hdr_len
= skb_headlen(skb
);
1959 vnet_hdr
.gso_size
= sinfo
->gso_size
;
1960 if (sinfo
->gso_type
& SKB_GSO_TCPV4
)
1961 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV4
;
1962 else if (sinfo
->gso_type
& SKB_GSO_TCPV6
)
1963 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_TCPV6
;
1964 else if (sinfo
->gso_type
& SKB_GSO_UDP
)
1965 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_UDP
;
1966 else if (sinfo
->gso_type
& SKB_GSO_FCOE
)
1970 if (sinfo
->gso_type
& SKB_GSO_TCP_ECN
)
1971 vnet_hdr
.gso_type
|= VIRTIO_NET_HDR_GSO_ECN
;
1973 vnet_hdr
.gso_type
= VIRTIO_NET_HDR_GSO_NONE
;
1975 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
1976 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_NEEDS_CSUM
;
1977 vnet_hdr
.csum_start
= skb_checksum_start_offset(skb
);
1978 vnet_hdr
.csum_offset
= skb
->csum_offset
;
1979 } else if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
) {
1980 vnet_hdr
.flags
= VIRTIO_NET_HDR_F_DATA_VALID
;
1981 } /* else everything is zero */
1983 err
= memcpy_toiovec(msg
->msg_iov
, (void *)&vnet_hdr
,
1990 * If the address length field is there to be filled in, we fill
1994 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
1995 if (sock
->type
== SOCK_PACKET
)
1996 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
1998 msg
->msg_namelen
= sll
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
);
2001 * You lose any data beyond the buffer you gave. If it worries a
2002 * user program they can ask the device for its MTU anyway.
2008 msg
->msg_flags
|= MSG_TRUNC
;
2011 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
2015 sock_recv_ts_and_drops(msg
, sk
, skb
);
2018 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
2021 if (pkt_sk(sk
)->auxdata
) {
2022 struct tpacket_auxdata aux
;
2024 aux
.tp_status
= TP_STATUS_USER
;
2025 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2026 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
2027 aux
.tp_len
= PACKET_SKB_CB(skb
)->origlen
;
2028 aux
.tp_snaplen
= skb
->len
;
2030 aux
.tp_net
= skb_network_offset(skb
);
2031 if (vlan_tx_tag_present(skb
)) {
2032 aux
.tp_vlan_tci
= vlan_tx_tag_get(skb
);
2033 aux
.tp_status
|= TP_STATUS_VLAN_VALID
;
2035 aux
.tp_vlan_tci
= 0;
2038 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
2042 * Free or return the buffer as appropriate. Again this
2043 * hides all the races and re-entrancy issues from us.
2045 err
= vnet_hdr_len
+ ((flags
&MSG_TRUNC
) ? skb
->len
: copied
);
2048 skb_free_datagram(sk
, skb
);
2053 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
2054 int *uaddr_len
, int peer
)
2056 struct net_device
*dev
;
2057 struct sock
*sk
= sock
->sk
;
2062 uaddr
->sa_family
= AF_PACKET
;
2064 dev
= dev_get_by_index_rcu(sock_net(sk
), pkt_sk(sk
)->ifindex
);
2066 strncpy(uaddr
->sa_data
, dev
->name
, 14);
2068 memset(uaddr
->sa_data
, 0, 14);
2070 *uaddr_len
= sizeof(*uaddr
);
2075 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
2076 int *uaddr_len
, int peer
)
2078 struct net_device
*dev
;
2079 struct sock
*sk
= sock
->sk
;
2080 struct packet_sock
*po
= pkt_sk(sk
);
2081 DECLARE_SOCKADDR(struct sockaddr_ll
*, sll
, uaddr
);
2086 sll
->sll_family
= AF_PACKET
;
2087 sll
->sll_ifindex
= po
->ifindex
;
2088 sll
->sll_protocol
= po
->num
;
2089 sll
->sll_pkttype
= 0;
2091 dev
= dev_get_by_index_rcu(sock_net(sk
), po
->ifindex
);
2093 sll
->sll_hatype
= dev
->type
;
2094 sll
->sll_halen
= dev
->addr_len
;
2095 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
2097 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
2101 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
2106 static int packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
,
2110 case PACKET_MR_MULTICAST
:
2111 if (i
->alen
!= dev
->addr_len
)
2114 return dev_mc_add(dev
, i
->addr
);
2116 return dev_mc_del(dev
, i
->addr
);
2118 case PACKET_MR_PROMISC
:
2119 return dev_set_promiscuity(dev
, what
);
2121 case PACKET_MR_ALLMULTI
:
2122 return dev_set_allmulti(dev
, what
);
2124 case PACKET_MR_UNICAST
:
2125 if (i
->alen
!= dev
->addr_len
)
2128 return dev_uc_add(dev
, i
->addr
);
2130 return dev_uc_del(dev
, i
->addr
);
2138 static void packet_dev_mclist(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
2140 for ( ; i
; i
= i
->next
) {
2141 if (i
->ifindex
== dev
->ifindex
)
2142 packet_dev_mc(dev
, i
, what
);
2146 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2148 struct packet_sock
*po
= pkt_sk(sk
);
2149 struct packet_mclist
*ml
, *i
;
2150 struct net_device
*dev
;
2156 dev
= __dev_get_by_index(sock_net(sk
), mreq
->mr_ifindex
);
2161 if (mreq
->mr_alen
> dev
->addr_len
)
2165 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
2170 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
2171 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2172 ml
->type
== mreq
->mr_type
&&
2173 ml
->alen
== mreq
->mr_alen
&&
2174 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2176 /* Free the new element ... */
2182 i
->type
= mreq
->mr_type
;
2183 i
->ifindex
= mreq
->mr_ifindex
;
2184 i
->alen
= mreq
->mr_alen
;
2185 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
2187 i
->next
= po
->mclist
;
2189 err
= packet_dev_mc(dev
, i
, 1);
2191 po
->mclist
= i
->next
;
2200 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
2202 struct packet_mclist
*ml
, **mlp
;
2206 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
2207 if (ml
->ifindex
== mreq
->mr_ifindex
&&
2208 ml
->type
== mreq
->mr_type
&&
2209 ml
->alen
== mreq
->mr_alen
&&
2210 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
2211 if (--ml
->count
== 0) {
2212 struct net_device
*dev
;
2214 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2216 packet_dev_mc(dev
, ml
, -1);
2224 return -EADDRNOTAVAIL
;
2227 static void packet_flush_mclist(struct sock
*sk
)
2229 struct packet_sock
*po
= pkt_sk(sk
);
2230 struct packet_mclist
*ml
;
2236 while ((ml
= po
->mclist
) != NULL
) {
2237 struct net_device
*dev
;
2239 po
->mclist
= ml
->next
;
2240 dev
= __dev_get_by_index(sock_net(sk
), ml
->ifindex
);
2242 packet_dev_mc(dev
, ml
, -1);
2249 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, unsigned int optlen
)
2251 struct sock
*sk
= sock
->sk
;
2252 struct packet_sock
*po
= pkt_sk(sk
);
2255 if (level
!= SOL_PACKET
)
2256 return -ENOPROTOOPT
;
2259 case PACKET_ADD_MEMBERSHIP
:
2260 case PACKET_DROP_MEMBERSHIP
:
2262 struct packet_mreq_max mreq
;
2264 memset(&mreq
, 0, sizeof(mreq
));
2265 if (len
< sizeof(struct packet_mreq
))
2267 if (len
> sizeof(mreq
))
2269 if (copy_from_user(&mreq
, optval
, len
))
2271 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
2273 if (optname
== PACKET_ADD_MEMBERSHIP
)
2274 ret
= packet_mc_add(sk
, &mreq
);
2276 ret
= packet_mc_drop(sk
, &mreq
);
2280 case PACKET_RX_RING
:
2281 case PACKET_TX_RING
:
2283 struct tpacket_req req
;
2285 if (optlen
< sizeof(req
))
2287 if (pkt_sk(sk
)->has_vnet_hdr
)
2289 if (copy_from_user(&req
, optval
, sizeof(req
)))
2291 return packet_set_ring(sk
, &req
, 0, optname
== PACKET_TX_RING
);
2293 case PACKET_COPY_THRESH
:
2297 if (optlen
!= sizeof(val
))
2299 if (copy_from_user(&val
, optval
, sizeof(val
)))
2302 pkt_sk(sk
)->copy_thresh
= val
;
2305 case PACKET_VERSION
:
2309 if (optlen
!= sizeof(val
))
2311 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2313 if (copy_from_user(&val
, optval
, sizeof(val
)))
2318 po
->tp_version
= val
;
2324 case PACKET_RESERVE
:
2328 if (optlen
!= sizeof(val
))
2330 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2332 if (copy_from_user(&val
, optval
, sizeof(val
)))
2334 po
->tp_reserve
= val
;
2341 if (optlen
!= sizeof(val
))
2343 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2345 if (copy_from_user(&val
, optval
, sizeof(val
)))
2347 po
->tp_loss
= !!val
;
2350 case PACKET_AUXDATA
:
2354 if (optlen
< sizeof(val
))
2356 if (copy_from_user(&val
, optval
, sizeof(val
)))
2359 po
->auxdata
= !!val
;
2362 case PACKET_ORIGDEV
:
2366 if (optlen
< sizeof(val
))
2368 if (copy_from_user(&val
, optval
, sizeof(val
)))
2371 po
->origdev
= !!val
;
2374 case PACKET_VNET_HDR
:
2378 if (sock
->type
!= SOCK_RAW
)
2380 if (po
->rx_ring
.pg_vec
|| po
->tx_ring
.pg_vec
)
2382 if (optlen
< sizeof(val
))
2384 if (copy_from_user(&val
, optval
, sizeof(val
)))
2387 po
->has_vnet_hdr
= !!val
;
2390 case PACKET_TIMESTAMP
:
2394 if (optlen
!= sizeof(val
))
2396 if (copy_from_user(&val
, optval
, sizeof(val
)))
2399 po
->tp_tstamp
= val
;
2406 if (optlen
!= sizeof(val
))
2408 if (copy_from_user(&val
, optval
, sizeof(val
)))
2411 return fanout_add(sk
, val
& 0xffff, val
>> 16);
2414 return -ENOPROTOOPT
;
2418 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
2419 char __user
*optval
, int __user
*optlen
)
2423 struct sock
*sk
= sock
->sk
;
2424 struct packet_sock
*po
= pkt_sk(sk
);
2426 struct tpacket_stats st
;
2428 if (level
!= SOL_PACKET
)
2429 return -ENOPROTOOPT
;
2431 if (get_user(len
, optlen
))
2438 case PACKET_STATISTICS
:
2439 if (len
> sizeof(struct tpacket_stats
))
2440 len
= sizeof(struct tpacket_stats
);
2441 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2443 memset(&po
->stats
, 0, sizeof(st
));
2444 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2445 st
.tp_packets
+= st
.tp_drops
;
2449 case PACKET_AUXDATA
:
2450 if (len
> sizeof(int))
2456 case PACKET_ORIGDEV
:
2457 if (len
> sizeof(int))
2463 case PACKET_VNET_HDR
:
2464 if (len
> sizeof(int))
2466 val
= po
->has_vnet_hdr
;
2470 case PACKET_VERSION
:
2471 if (len
> sizeof(int))
2473 val
= po
->tp_version
;
2477 if (len
> sizeof(int))
2479 if (copy_from_user(&val
, optval
, len
))
2483 val
= sizeof(struct tpacket_hdr
);
2486 val
= sizeof(struct tpacket2_hdr
);
2493 case PACKET_RESERVE
:
2494 if (len
> sizeof(unsigned int))
2495 len
= sizeof(unsigned int);
2496 val
= po
->tp_reserve
;
2500 if (len
> sizeof(unsigned int))
2501 len
= sizeof(unsigned int);
2505 case PACKET_TIMESTAMP
:
2506 if (len
> sizeof(int))
2508 val
= po
->tp_tstamp
;
2512 if (len
> sizeof(int))
2515 ((u32
)po
->fanout
->id
|
2516 ((u32
)po
->fanout
->type
<< 16)) :
2521 return -ENOPROTOOPT
;
2524 if (put_user(len
, optlen
))
2526 if (copy_to_user(optval
, data
, len
))
2532 static int packet_notifier(struct notifier_block
*this, unsigned long msg
, void *data
)
2535 struct hlist_node
*node
;
2536 struct net_device
*dev
= data
;
2537 struct net
*net
= dev_net(dev
);
2540 sk_for_each_rcu(sk
, node
, &net
->packet
.sklist
) {
2541 struct packet_sock
*po
= pkt_sk(sk
);
2544 case NETDEV_UNREGISTER
:
2546 packet_dev_mclist(dev
, po
->mclist
, -1);
2550 if (dev
->ifindex
== po
->ifindex
) {
2551 spin_lock(&po
->bind_lock
);
2553 __unregister_prot_hook(sk
, false);
2554 sk
->sk_err
= ENETDOWN
;
2555 if (!sock_flag(sk
, SOCK_DEAD
))
2556 sk
->sk_error_report(sk
);
2558 if (msg
== NETDEV_UNREGISTER
) {
2560 if (po
->prot_hook
.dev
)
2561 dev_put(po
->prot_hook
.dev
);
2562 po
->prot_hook
.dev
= NULL
;
2564 spin_unlock(&po
->bind_lock
);
2568 if (dev
->ifindex
== po
->ifindex
) {
2569 spin_lock(&po
->bind_lock
);
2571 register_prot_hook(sk
);
2572 spin_unlock(&po
->bind_lock
);
2582 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
2585 struct sock
*sk
= sock
->sk
;
2590 int amount
= sk_wmem_alloc_get(sk
);
2592 return put_user(amount
, (int __user
*)arg
);
2596 struct sk_buff
*skb
;
2599 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2600 skb
= skb_peek(&sk
->sk_receive_queue
);
2603 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2604 return put_user(amount
, (int __user
*)arg
);
2607 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
2609 return sock_get_timestampns(sk
, (struct timespec __user
*)arg
);
2619 case SIOCGIFBRDADDR
:
2620 case SIOCSIFBRDADDR
:
2621 case SIOCGIFNETMASK
:
2622 case SIOCSIFNETMASK
:
2623 case SIOCGIFDSTADDR
:
2624 case SIOCSIFDSTADDR
:
2626 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
2630 return -ENOIOCTLCMD
;
2635 static unsigned int packet_poll(struct file
*file
, struct socket
*sock
,
2638 struct sock
*sk
= sock
->sk
;
2639 struct packet_sock
*po
= pkt_sk(sk
);
2640 unsigned int mask
= datagram_poll(file
, sock
, wait
);
2642 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
2643 if (po
->rx_ring
.pg_vec
) {
2644 if (!packet_previous_frame(po
, &po
->rx_ring
, TP_STATUS_KERNEL
))
2645 mask
|= POLLIN
| POLLRDNORM
;
2647 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
2648 spin_lock_bh(&sk
->sk_write_queue
.lock
);
2649 if (po
->tx_ring
.pg_vec
) {
2650 if (packet_current_frame(po
, &po
->tx_ring
, TP_STATUS_AVAILABLE
))
2651 mask
|= POLLOUT
| POLLWRNORM
;
2653 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
2658 /* Dirty? Well, I still did not learn better way to account
2662 static void packet_mm_open(struct vm_area_struct
*vma
)
2664 struct file
*file
= vma
->vm_file
;
2665 struct socket
*sock
= file
->private_data
;
2666 struct sock
*sk
= sock
->sk
;
2669 atomic_inc(&pkt_sk(sk
)->mapped
);
2672 static void packet_mm_close(struct vm_area_struct
*vma
)
2674 struct file
*file
= vma
->vm_file
;
2675 struct socket
*sock
= file
->private_data
;
2676 struct sock
*sk
= sock
->sk
;
2679 atomic_dec(&pkt_sk(sk
)->mapped
);
2682 static const struct vm_operations_struct packet_mmap_ops
= {
2683 .open
= packet_mm_open
,
2684 .close
= packet_mm_close
,
2687 static void free_pg_vec(struct pgv
*pg_vec
, unsigned int order
,
2692 for (i
= 0; i
< len
; i
++) {
2693 if (likely(pg_vec
[i
].buffer
)) {
2694 if (is_vmalloc_addr(pg_vec
[i
].buffer
))
2695 vfree(pg_vec
[i
].buffer
);
2697 free_pages((unsigned long)pg_vec
[i
].buffer
,
2699 pg_vec
[i
].buffer
= NULL
;
2705 static inline char *alloc_one_pg_vec_page(unsigned long order
)
2707 char *buffer
= NULL
;
2708 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
|
2709 __GFP_ZERO
| __GFP_NOWARN
| __GFP_NORETRY
;
2711 buffer
= (char *) __get_free_pages(gfp_flags
, order
);
2717 * __get_free_pages failed, fall back to vmalloc
2719 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
2725 * vmalloc failed, lets dig into swap here
2727 gfp_flags
&= ~__GFP_NORETRY
;
2728 buffer
= (char *)__get_free_pages(gfp_flags
, order
);
2733 * complete and utter failure
2738 static struct pgv
*alloc_pg_vec(struct tpacket_req
*req
, int order
)
2740 unsigned int block_nr
= req
->tp_block_nr
;
2744 pg_vec
= kcalloc(block_nr
, sizeof(struct pgv
), GFP_KERNEL
);
2745 if (unlikely(!pg_vec
))
2748 for (i
= 0; i
< block_nr
; i
++) {
2749 pg_vec
[i
].buffer
= alloc_one_pg_vec_page(order
);
2750 if (unlikely(!pg_vec
[i
].buffer
))
2751 goto out_free_pgvec
;
2758 free_pg_vec(pg_vec
, order
, block_nr
);
2763 static int packet_set_ring(struct sock
*sk
, struct tpacket_req
*req
,
2764 int closing
, int tx_ring
)
2766 struct pgv
*pg_vec
= NULL
;
2767 struct packet_sock
*po
= pkt_sk(sk
);
2768 int was_running
, order
= 0;
2769 struct packet_ring_buffer
*rb
;
2770 struct sk_buff_head
*rb_queue
;
2774 rb
= tx_ring
? &po
->tx_ring
: &po
->rx_ring
;
2775 rb_queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
2779 if (atomic_read(&po
->mapped
))
2781 if (atomic_read(&rb
->pending
))
2785 if (req
->tp_block_nr
) {
2786 /* Sanity tests and some calculations */
2788 if (unlikely(rb
->pg_vec
))
2791 switch (po
->tp_version
) {
2793 po
->tp_hdrlen
= TPACKET_HDRLEN
;
2796 po
->tp_hdrlen
= TPACKET2_HDRLEN
;
2801 if (unlikely((int)req
->tp_block_size
<= 0))
2803 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
2805 if (unlikely(req
->tp_frame_size
< po
->tp_hdrlen
+
2808 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
2811 rb
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
2812 if (unlikely(rb
->frames_per_block
<= 0))
2814 if (unlikely((rb
->frames_per_block
* req
->tp_block_nr
) !=
2819 order
= get_order(req
->tp_block_size
);
2820 pg_vec
= alloc_pg_vec(req
, order
);
2821 if (unlikely(!pg_vec
))
2827 if (unlikely(req
->tp_frame_nr
))
2833 /* Detach socket from network */
2834 spin_lock(&po
->bind_lock
);
2835 was_running
= po
->running
;
2839 __unregister_prot_hook(sk
, false);
2841 spin_unlock(&po
->bind_lock
);
2846 mutex_lock(&po
->pg_vec_lock
);
2847 if (closing
|| atomic_read(&po
->mapped
) == 0) {
2849 spin_lock_bh(&rb_queue
->lock
);
2850 swap(rb
->pg_vec
, pg_vec
);
2851 rb
->frame_max
= (req
->tp_frame_nr
- 1);
2853 rb
->frame_size
= req
->tp_frame_size
;
2854 spin_unlock_bh(&rb_queue
->lock
);
2856 swap(rb
->pg_vec_order
, order
);
2857 swap(rb
->pg_vec_len
, req
->tp_block_nr
);
2859 rb
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
2860 po
->prot_hook
.func
= (po
->rx_ring
.pg_vec
) ?
2861 tpacket_rcv
: packet_rcv
;
2862 skb_queue_purge(rb_queue
);
2863 if (atomic_read(&po
->mapped
))
2864 pr_err("packet_mmap: vma is busy: %d\n",
2865 atomic_read(&po
->mapped
));
2867 mutex_unlock(&po
->pg_vec_lock
);
2869 spin_lock(&po
->bind_lock
);
2872 register_prot_hook(sk
);
2874 spin_unlock(&po
->bind_lock
);
2879 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
2884 static int packet_mmap(struct file
*file
, struct socket
*sock
,
2885 struct vm_area_struct
*vma
)
2887 struct sock
*sk
= sock
->sk
;
2888 struct packet_sock
*po
= pkt_sk(sk
);
2889 unsigned long size
, expected_size
;
2890 struct packet_ring_buffer
*rb
;
2891 unsigned long start
;
2898 mutex_lock(&po
->pg_vec_lock
);
2901 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
2903 expected_size
+= rb
->pg_vec_len
2909 if (expected_size
== 0)
2912 size
= vma
->vm_end
- vma
->vm_start
;
2913 if (size
!= expected_size
)
2916 start
= vma
->vm_start
;
2917 for (rb
= &po
->rx_ring
; rb
<= &po
->tx_ring
; rb
++) {
2918 if (rb
->pg_vec
== NULL
)
2921 for (i
= 0; i
< rb
->pg_vec_len
; i
++) {
2923 void *kaddr
= rb
->pg_vec
[i
].buffer
;
2926 for (pg_num
= 0; pg_num
< rb
->pg_vec_pages
; pg_num
++) {
2927 page
= pgv_to_page(kaddr
);
2928 err
= vm_insert_page(vma
, start
, page
);
2937 atomic_inc(&po
->mapped
);
2938 vma
->vm_ops
= &packet_mmap_ops
;
2942 mutex_unlock(&po
->pg_vec_lock
);
2946 static const struct proto_ops packet_ops_spkt
= {
2947 .family
= PF_PACKET
,
2948 .owner
= THIS_MODULE
,
2949 .release
= packet_release
,
2950 .bind
= packet_bind_spkt
,
2951 .connect
= sock_no_connect
,
2952 .socketpair
= sock_no_socketpair
,
2953 .accept
= sock_no_accept
,
2954 .getname
= packet_getname_spkt
,
2955 .poll
= datagram_poll
,
2956 .ioctl
= packet_ioctl
,
2957 .listen
= sock_no_listen
,
2958 .shutdown
= sock_no_shutdown
,
2959 .setsockopt
= sock_no_setsockopt
,
2960 .getsockopt
= sock_no_getsockopt
,
2961 .sendmsg
= packet_sendmsg_spkt
,
2962 .recvmsg
= packet_recvmsg
,
2963 .mmap
= sock_no_mmap
,
2964 .sendpage
= sock_no_sendpage
,
2967 static const struct proto_ops packet_ops
= {
2968 .family
= PF_PACKET
,
2969 .owner
= THIS_MODULE
,
2970 .release
= packet_release
,
2971 .bind
= packet_bind
,
2972 .connect
= sock_no_connect
,
2973 .socketpair
= sock_no_socketpair
,
2974 .accept
= sock_no_accept
,
2975 .getname
= packet_getname
,
2976 .poll
= packet_poll
,
2977 .ioctl
= packet_ioctl
,
2978 .listen
= sock_no_listen
,
2979 .shutdown
= sock_no_shutdown
,
2980 .setsockopt
= packet_setsockopt
,
2981 .getsockopt
= packet_getsockopt
,
2982 .sendmsg
= packet_sendmsg
,
2983 .recvmsg
= packet_recvmsg
,
2984 .mmap
= packet_mmap
,
2985 .sendpage
= sock_no_sendpage
,
2988 static const struct net_proto_family packet_family_ops
= {
2989 .family
= PF_PACKET
,
2990 .create
= packet_create
,
2991 .owner
= THIS_MODULE
,
2994 static struct notifier_block packet_netdev_notifier
= {
2995 .notifier_call
= packet_notifier
,
2998 #ifdef CONFIG_PROC_FS
3000 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
3003 struct net
*net
= seq_file_net(seq
);
3006 return seq_hlist_start_head_rcu(&net
->packet
.sklist
, *pos
);
3009 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
3011 struct net
*net
= seq_file_net(seq
);
3012 return seq_hlist_next_rcu(v
, &net
->packet
.sklist
, pos
);
3015 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
3021 static int packet_seq_show(struct seq_file
*seq
, void *v
)
3023 if (v
== SEQ_START_TOKEN
)
3024 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3026 struct sock
*s
= sk_entry(v
);
3027 const struct packet_sock
*po
= pkt_sk(s
);
3030 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
3032 atomic_read(&s
->sk_refcnt
),
3037 atomic_read(&s
->sk_rmem_alloc
),
3045 static const struct seq_operations packet_seq_ops
= {
3046 .start
= packet_seq_start
,
3047 .next
= packet_seq_next
,
3048 .stop
= packet_seq_stop
,
3049 .show
= packet_seq_show
,
3052 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
3054 return seq_open_net(inode
, file
, &packet_seq_ops
,
3055 sizeof(struct seq_net_private
));
3058 static const struct file_operations packet_seq_fops
= {
3059 .owner
= THIS_MODULE
,
3060 .open
= packet_seq_open
,
3062 .llseek
= seq_lseek
,
3063 .release
= seq_release_net
,
3068 static int __net_init
packet_net_init(struct net
*net
)
3070 spin_lock_init(&net
->packet
.sklist_lock
);
3071 INIT_HLIST_HEAD(&net
->packet
.sklist
);
3073 if (!proc_net_fops_create(net
, "packet", 0, &packet_seq_fops
))
3079 static void __net_exit
packet_net_exit(struct net
*net
)
3081 proc_net_remove(net
, "packet");
3084 static struct pernet_operations packet_net_ops
= {
3085 .init
= packet_net_init
,
3086 .exit
= packet_net_exit
,
3090 static void __exit
packet_exit(void)
3092 unregister_netdevice_notifier(&packet_netdev_notifier
);
3093 unregister_pernet_subsys(&packet_net_ops
);
3094 sock_unregister(PF_PACKET
);
3095 proto_unregister(&packet_proto
);
3098 static int __init
packet_init(void)
3100 int rc
= proto_register(&packet_proto
, 0);
3105 sock_register(&packet_family_ops
);
3106 register_pernet_subsys(&packet_net_ops
);
3107 register_netdevice_notifier(&packet_netdev_notifier
);
3112 module_init(packet_init
);
3113 module_exit(packet_exit
);
3114 MODULE_LICENSE("GPL");
3115 MODULE_ALIAS_NETPROTO(PF_PACKET
);