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.
8 * Version: $Id: af_packet.c,v 1.61 2002/02/08 03:57:19 davem Exp $
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Alan Cox, <gw4pts@gw4pts.ampr.org>
15 * Alan Cox : verify_area() now used correctly
16 * Alan Cox : new skbuff lists, look ma no backlogs!
17 * Alan Cox : tidied skbuff lists.
18 * Alan Cox : Now uses generic datagram routines I
19 * added. Also fixed the peek/read crash
20 * from all old Linux datagram code.
21 * Alan Cox : Uses the improved datagram code.
22 * Alan Cox : Added NULL's for socket options.
23 * Alan Cox : Re-commented the code.
24 * Alan Cox : Use new kernel side addressing
25 * Rob Janssen : Correct MTU usage.
26 * Dave Platt : Counter leaks caused by incorrect
27 * interrupt locking and some slightly
28 * dubious gcc output. Can you read
29 * compiler: it said _VOLATILE_
30 * Richard Kooijman : Timestamp fixes.
31 * Alan Cox : New buffers. Use sk->mac.raw.
32 * Alan Cox : sendmsg/recvmsg support.
33 * Alan Cox : Protocol setting support
34 * Alexey Kuznetsov : Untied from IPv4 stack.
35 * Cyrus Durgin : Fixed kerneld for kmod.
36 * Michal Ostrowski : Module initialization cleanup.
37 * Ulises Alonso : Frame number limit removal and
38 * packet_set_ring memory leak.
39 * Eric Biederman : Allow for > 8 byte hardware addresses.
40 * The convention is that longer addresses
41 * will simply extend the hardware address
42 * byte arrays at the end of sockaddr_ll
45 * This program is free software; you can redistribute it and/or
46 * modify it under the terms of the GNU General Public License
47 * as published by the Free Software Foundation; either version
48 * 2 of the License, or (at your option) any later version.
52 #include <linux/types.h>
54 #include <linux/capability.h>
55 #include <linux/fcntl.h>
56 #include <linux/socket.h>
58 #include <linux/inet.h>
59 #include <linux/netdevice.h>
60 #include <linux/if_packet.h>
61 #include <linux/wireless.h>
62 #include <linux/kernel.h>
63 #include <linux/kmod.h>
65 #include <net/protocol.h>
66 #include <linux/skbuff.h>
68 #include <linux/errno.h>
69 #include <linux/timer.h>
70 #include <asm/system.h>
71 #include <asm/uaccess.h>
72 #include <asm/ioctls.h>
74 #include <asm/cacheflush.h>
76 #include <linux/proc_fs.h>
77 #include <linux/seq_file.h>
78 #include <linux/poll.h>
79 #include <linux/module.h>
80 #include <linux/init.h>
83 #include <net/inet_common.h>
86 #define CONFIG_SOCK_PACKET 1
89 Proposed replacement for SIOC{ADD,DEL}MULTI and
90 IFF_PROMISC, IFF_ALLMULTI flags.
92 It is more expensive, but I believe,
93 it is really correct solution: reentereble, safe and fault tolerant.
95 IFF_PROMISC/IFF_ALLMULTI/SIOC{ADD/DEL}MULTI are faked by keeping
96 reference count and global flag, so that real status is
97 (gflag|(count != 0)), so that we can use obsolete faulty interface
98 not harming clever users.
100 #define CONFIG_PACKET_MULTICAST 1
104 - if device has no dev->hard_header routine, it adds and removes ll header
105 inside itself. In this case ll header is invisible outside of device,
106 but higher levels still should reserve dev->hard_header_len.
107 Some devices are enough clever to reallocate skb, when header
108 will not fit to reserved space (tunnel), another ones are silly
110 - packet socket receives packets with pulled ll header,
111 so that SOCK_RAW should push it back.
116 Incoming, dev->hard_header!=NULL
120 Outgoing, dev->hard_header!=NULL
124 Incoming, dev->hard_header==NULL
125 mac.raw -> UNKNOWN position. It is very likely, that it points to ll header.
126 PPP makes it, that is wrong, because introduce assymetry
127 between rx and tx paths.
130 Outgoing, dev->hard_header==NULL
131 mac.raw -> data. ll header is still not built!
135 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
141 dev->hard_header != NULL
145 dev->hard_header == NULL (ll header is added by device, we cannot control it)
149 We should set nh.raw on output to correct posistion,
150 packet classifier depends on it.
153 /* List of all packet sockets. */
154 static HLIST_HEAD(packet_sklist
);
155 static DEFINE_RWLOCK(packet_sklist_lock
);
157 static atomic_t packet_socks_nr
;
160 /* Private packet socket structures. */
162 #ifdef CONFIG_PACKET_MULTICAST
165 struct packet_mclist
*next
;
170 unsigned char addr
[MAX_ADDR_LEN
];
172 /* identical to struct packet_mreq except it has
173 * a longer address field.
175 struct packet_mreq_max
178 unsigned short mr_type
;
179 unsigned short mr_alen
;
180 unsigned char mr_address
[MAX_ADDR_LEN
];
183 #ifdef CONFIG_PACKET_MMAP
184 static int packet_set_ring(struct sock
*sk
, struct tpacket_req
*req
, int closing
);
187 static void packet_flush_mclist(struct sock
*sk
);
190 /* struct sock has to be the first member of packet_sock */
192 struct tpacket_stats stats
;
193 #ifdef CONFIG_PACKET_MMAP
196 unsigned int frames_per_block
;
197 unsigned int frame_size
;
198 unsigned int frame_max
;
201 struct packet_type prot_hook
;
202 spinlock_t bind_lock
;
203 unsigned int running
:1, /* prot_hook is attached*/
205 int ifindex
; /* bound device */
207 #ifdef CONFIG_PACKET_MULTICAST
208 struct packet_mclist
*mclist
;
210 #ifdef CONFIG_PACKET_MMAP
212 unsigned int pg_vec_order
;
213 unsigned int pg_vec_pages
;
214 unsigned int pg_vec_len
;
218 struct packet_skb_cb
{
219 unsigned int origlen
;
221 struct sockaddr_pkt pkt
;
222 struct sockaddr_ll ll
;
226 #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
228 #ifdef CONFIG_PACKET_MMAP
230 static inline struct tpacket_hdr
*packet_lookup_frame(struct packet_sock
*po
, unsigned int position
)
232 unsigned int pg_vec_pos
, frame_offset
;
234 pg_vec_pos
= position
/ po
->frames_per_block
;
235 frame_offset
= position
% po
->frames_per_block
;
237 return (struct tpacket_hdr
*)(po
->pg_vec
[pg_vec_pos
] + (frame_offset
* po
->frame_size
));
241 static inline struct packet_sock
*pkt_sk(struct sock
*sk
)
243 return (struct packet_sock
*)sk
;
246 static void packet_sock_destruct(struct sock
*sk
)
248 BUG_TRAP(!atomic_read(&sk
->sk_rmem_alloc
));
249 BUG_TRAP(!atomic_read(&sk
->sk_wmem_alloc
));
251 if (!sock_flag(sk
, SOCK_DEAD
)) {
252 printk("Attempt to release alive packet socket: %p\n", sk
);
256 atomic_dec(&packet_socks_nr
);
257 #ifdef PACKET_REFCNT_DEBUG
258 printk(KERN_DEBUG
"PACKET socket %p is free, %d are alive\n", sk
, atomic_read(&packet_socks_nr
));
263 static const struct proto_ops packet_ops
;
265 #ifdef CONFIG_SOCK_PACKET
266 static const struct proto_ops packet_ops_spkt
;
268 static int packet_rcv_spkt(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
271 struct sockaddr_pkt
*spkt
;
274 * When we registered the protocol we saved the socket in the data
275 * field for just this event.
278 sk
= pt
->af_packet_priv
;
281 * Yank back the headers [hope the device set this
282 * right or kerboom...]
284 * Incoming packets have ll header pulled,
287 * For outgoing ones skb->data == skb->mac.raw
288 * so that this procedure is noop.
291 if (skb
->pkt_type
== PACKET_LOOPBACK
)
294 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
)
297 /* drop any routing info */
298 dst_release(skb
->dst
);
301 /* drop conntrack reference */
304 spkt
= &PACKET_SKB_CB(skb
)->sa
.pkt
;
306 skb_push(skb
, skb
->data
-skb
->mac
.raw
);
309 * The SOCK_PACKET socket receives _all_ frames.
312 spkt
->spkt_family
= dev
->type
;
313 strlcpy(spkt
->spkt_device
, dev
->name
, sizeof(spkt
->spkt_device
));
314 spkt
->spkt_protocol
= skb
->protocol
;
317 * Charge the memory to the socket. This is done specifically
318 * to prevent sockets using all the memory up.
321 if (sock_queue_rcv_skb(sk
,skb
) == 0)
332 * Output a raw packet to a device layer. This bypasses all the other
333 * protocol layers and you must therefore supply it with a complete frame
336 static int packet_sendmsg_spkt(struct kiocb
*iocb
, struct socket
*sock
,
337 struct msghdr
*msg
, size_t len
)
339 struct sock
*sk
= sock
->sk
;
340 struct sockaddr_pkt
*saddr
=(struct sockaddr_pkt
*)msg
->msg_name
;
342 struct net_device
*dev
;
347 * Get and verify the address.
352 if (msg
->msg_namelen
< sizeof(struct sockaddr
))
354 if (msg
->msg_namelen
==sizeof(struct sockaddr_pkt
))
355 proto
=saddr
->spkt_protocol
;
358 return(-ENOTCONN
); /* SOCK_PACKET must be sent giving an address */
361 * Find the device first to size check it
364 saddr
->spkt_device
[13] = 0;
365 dev
= dev_get_by_name(saddr
->spkt_device
);
371 if (!(dev
->flags
& IFF_UP
))
375 * You may not queue a frame bigger than the mtu. This is the lowest level
376 * raw protocol and you must do your own fragmentation at this level.
380 if (len
> dev
->mtu
+ dev
->hard_header_len
)
384 skb
= sock_wmalloc(sk
, len
+ LL_RESERVED_SPACE(dev
), 0, GFP_KERNEL
);
387 * If the write buffer is full, then tough. At this level the user gets to
388 * deal with the problem - do your own algorithmic backoffs. That's far
399 /* FIXME: Save some space for broken drivers that write a
400 * hard header at transmission time by themselves. PPP is the
401 * notable one here. This should really be fixed at the driver level.
403 skb_reserve(skb
, LL_RESERVED_SPACE(dev
));
404 skb
->nh
.raw
= skb
->data
;
406 /* Try to align data part correctly */
407 if (dev
->hard_header
) {
408 skb
->data
-= dev
->hard_header_len
;
409 skb
->tail
-= dev
->hard_header_len
;
410 if (len
< dev
->hard_header_len
)
411 skb
->nh
.raw
= skb
->data
;
414 /* Returns -EFAULT on error */
415 err
= memcpy_fromiovec(skb_put(skb
,len
), msg
->msg_iov
, len
);
416 skb
->protocol
= proto
;
418 skb
->priority
= sk
->sk_priority
;
439 static inline unsigned int run_filter(struct sk_buff
*skb
, struct sock
*sk
,
442 struct sk_filter
*filter
;
445 filter
= rcu_dereference(sk
->sk_filter
);
447 res
= sk_run_filter(skb
, filter
->insns
, filter
->len
);
448 rcu_read_unlock_bh();
454 This function makes lazy skb cloning in hope that most of packets
455 are discarded by BPF.
457 Note tricky part: we DO mangle shared skb! skb->data, skb->len
458 and skb->cb are mangled. It works because (and until) packets
459 falling here are owned by current CPU. Output packets are cloned
460 by dev_queue_xmit_nit(), input packets are processed by net_bh
461 sequencially, so that if we return skb to original state on exit,
462 we will not harm anyone.
465 static int packet_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
468 struct sockaddr_ll
*sll
;
469 struct packet_sock
*po
;
470 u8
* skb_head
= skb
->data
;
471 int skb_len
= skb
->len
;
472 unsigned int snaplen
, res
;
474 if (skb
->pkt_type
== PACKET_LOOPBACK
)
477 sk
= pt
->af_packet_priv
;
482 if (dev
->hard_header
) {
483 /* The device has an explicit notion of ll header,
484 exported to higher levels.
486 Otherwise, the device hides datails of it frame
487 structure, so that corresponding packet head
488 never delivered to user.
490 if (sk
->sk_type
!= SOCK_DGRAM
)
491 skb_push(skb
, skb
->data
- skb
->mac
.raw
);
492 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
493 /* Special case: outgoing packets have ll header at head */
494 skb_pull(skb
, skb
->nh
.raw
- skb
->data
);
500 res
= run_filter(skb
, sk
, snaplen
);
506 if (atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
>=
507 (unsigned)sk
->sk_rcvbuf
)
510 if (skb_shared(skb
)) {
511 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
515 if (skb_head
!= skb
->data
) {
516 skb
->data
= skb_head
;
523 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb
)) + MAX_ADDR_LEN
- 8 >
526 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
527 sll
->sll_family
= AF_PACKET
;
528 sll
->sll_hatype
= dev
->type
;
529 sll
->sll_protocol
= skb
->protocol
;
530 sll
->sll_pkttype
= skb
->pkt_type
;
531 sll
->sll_ifindex
= dev
->ifindex
;
534 if (dev
->hard_header_parse
)
535 sll
->sll_halen
= dev
->hard_header_parse(skb
, sll
->sll_addr
);
537 PACKET_SKB_CB(skb
)->origlen
= skb
->len
;
539 if (pskb_trim(skb
, snaplen
))
542 skb_set_owner_r(skb
, sk
);
544 dst_release(skb
->dst
);
547 /* drop conntrack reference */
550 spin_lock(&sk
->sk_receive_queue
.lock
);
551 po
->stats
.tp_packets
++;
552 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
553 spin_unlock(&sk
->sk_receive_queue
.lock
);
554 sk
->sk_data_ready(sk
, skb
->len
);
558 spin_lock(&sk
->sk_receive_queue
.lock
);
559 po
->stats
.tp_drops
++;
560 spin_unlock(&sk
->sk_receive_queue
.lock
);
563 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
564 skb
->data
= skb_head
;
572 #ifdef CONFIG_PACKET_MMAP
573 static int tpacket_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
576 struct packet_sock
*po
;
577 struct sockaddr_ll
*sll
;
578 struct tpacket_hdr
*h
;
579 u8
* skb_head
= skb
->data
;
580 int skb_len
= skb
->len
;
581 unsigned int snaplen
, res
;
582 unsigned long status
= TP_STATUS_LOSING
|TP_STATUS_USER
;
583 unsigned short macoff
, netoff
;
584 struct sk_buff
*copy_skb
= NULL
;
586 if (skb
->pkt_type
== PACKET_LOOPBACK
)
589 sk
= pt
->af_packet_priv
;
592 if (dev
->hard_header
) {
593 if (sk
->sk_type
!= SOCK_DGRAM
)
594 skb_push(skb
, skb
->data
- skb
->mac
.raw
);
595 else if (skb
->pkt_type
== PACKET_OUTGOING
) {
596 /* Special case: outgoing packets have ll header at head */
597 skb_pull(skb
, skb
->nh
.raw
- skb
->data
);
601 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
602 status
|= TP_STATUS_CSUMNOTREADY
;
606 res
= run_filter(skb
, sk
, snaplen
);
612 if (sk
->sk_type
== SOCK_DGRAM
) {
613 macoff
= netoff
= TPACKET_ALIGN(TPACKET_HDRLEN
) + 16;
615 unsigned maclen
= skb
->nh
.raw
- skb
->data
;
616 netoff
= TPACKET_ALIGN(TPACKET_HDRLEN
+ (maclen
< 16 ? 16 : maclen
));
617 macoff
= netoff
- maclen
;
620 if (macoff
+ snaplen
> po
->frame_size
) {
621 if (po
->copy_thresh
&&
622 atomic_read(&sk
->sk_rmem_alloc
) + skb
->truesize
<
623 (unsigned)sk
->sk_rcvbuf
) {
624 if (skb_shared(skb
)) {
625 copy_skb
= skb_clone(skb
, GFP_ATOMIC
);
627 copy_skb
= skb_get(skb
);
628 skb_head
= skb
->data
;
631 skb_set_owner_r(copy_skb
, sk
);
633 snaplen
= po
->frame_size
- macoff
;
634 if ((int)snaplen
< 0)
638 spin_lock(&sk
->sk_receive_queue
.lock
);
639 h
= packet_lookup_frame(po
, po
->head
);
643 po
->head
= po
->head
!= po
->frame_max
? po
->head
+1 : 0;
644 po
->stats
.tp_packets
++;
646 status
|= TP_STATUS_COPY
;
647 __skb_queue_tail(&sk
->sk_receive_queue
, copy_skb
);
649 if (!po
->stats
.tp_drops
)
650 status
&= ~TP_STATUS_LOSING
;
651 spin_unlock(&sk
->sk_receive_queue
.lock
);
653 skb_copy_bits(skb
, 0, (u8
*)h
+ macoff
, snaplen
);
655 h
->tp_len
= skb
->len
;
656 h
->tp_snaplen
= snaplen
;
659 if (skb
->tstamp
.off_sec
== 0) {
660 __net_timestamp(skb
);
661 sock_enable_timestamp(sk
);
663 h
->tp_sec
= skb
->tstamp
.off_sec
;
664 h
->tp_usec
= skb
->tstamp
.off_usec
;
666 sll
= (struct sockaddr_ll
*)((u8
*)h
+ TPACKET_ALIGN(sizeof(*h
)));
668 if (dev
->hard_header_parse
)
669 sll
->sll_halen
= dev
->hard_header_parse(skb
, sll
->sll_addr
);
670 sll
->sll_family
= AF_PACKET
;
671 sll
->sll_hatype
= dev
->type
;
672 sll
->sll_protocol
= skb
->protocol
;
673 sll
->sll_pkttype
= skb
->pkt_type
;
674 sll
->sll_ifindex
= dev
->ifindex
;
676 h
->tp_status
= status
;
680 struct page
*p_start
, *p_end
;
681 u8
*h_end
= (u8
*)h
+ macoff
+ snaplen
- 1;
683 p_start
= virt_to_page(h
);
684 p_end
= virt_to_page(h_end
);
685 while (p_start
<= p_end
) {
686 flush_dcache_page(p_start
);
691 sk
->sk_data_ready(sk
, 0);
694 if (skb_head
!= skb
->data
&& skb_shared(skb
)) {
695 skb
->data
= skb_head
;
703 po
->stats
.tp_drops
++;
704 spin_unlock(&sk
->sk_receive_queue
.lock
);
706 sk
->sk_data_ready(sk
, 0);
715 static int packet_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
716 struct msghdr
*msg
, size_t len
)
718 struct sock
*sk
= sock
->sk
;
719 struct sockaddr_ll
*saddr
=(struct sockaddr_ll
*)msg
->msg_name
;
721 struct net_device
*dev
;
724 int ifindex
, err
, reserve
= 0;
727 * Get and verify the address.
731 struct packet_sock
*po
= pkt_sk(sk
);
733 ifindex
= po
->ifindex
;
738 if (msg
->msg_namelen
< sizeof(struct sockaddr_ll
))
740 if (msg
->msg_namelen
< (saddr
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
)))
742 ifindex
= saddr
->sll_ifindex
;
743 proto
= saddr
->sll_protocol
;
744 addr
= saddr
->sll_addr
;
748 dev
= dev_get_by_index(ifindex
);
752 if (sock
->type
== SOCK_RAW
)
753 reserve
= dev
->hard_header_len
;
756 if (!(dev
->flags
& IFF_UP
))
760 if (len
> dev
->mtu
+reserve
)
763 skb
= sock_alloc_send_skb(sk
, len
+ LL_RESERVED_SPACE(dev
),
764 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
768 skb_reserve(skb
, LL_RESERVED_SPACE(dev
));
769 skb
->nh
.raw
= skb
->data
;
771 if (dev
->hard_header
) {
774 res
= dev
->hard_header(skb
, dev
, ntohs(proto
), addr
, NULL
, len
);
775 if (sock
->type
!= SOCK_DGRAM
) {
776 skb
->tail
= skb
->data
;
782 /* Returns -EFAULT on error */
783 err
= memcpy_fromiovec(skb_put(skb
,len
), msg
->msg_iov
, len
);
787 skb
->protocol
= proto
;
789 skb
->priority
= sk
->sk_priority
;
795 err
= dev_queue_xmit(skb
);
796 if (err
> 0 && (err
= net_xmit_errno(err
)) != 0)
813 * Close a PACKET socket. This is fairly simple. We immediately go
814 * to 'closed' state and remove our protocol entry in the device list.
817 static int packet_release(struct socket
*sock
)
819 struct sock
*sk
= sock
->sk
;
820 struct packet_sock
*po
;
827 write_lock_bh(&packet_sklist_lock
);
828 sk_del_node_init(sk
);
829 write_unlock_bh(&packet_sklist_lock
);
832 * Unhook packet receive handler.
837 * Remove the protocol hook
839 dev_remove_pack(&po
->prot_hook
);
845 #ifdef CONFIG_PACKET_MULTICAST
846 packet_flush_mclist(sk
);
849 #ifdef CONFIG_PACKET_MMAP
851 struct tpacket_req req
;
852 memset(&req
, 0, sizeof(req
));
853 packet_set_ring(sk
, &req
, 1);
858 * Now the socket is dead. No more input will appear.
866 skb_queue_purge(&sk
->sk_receive_queue
);
873 * Attach a packet hook.
876 static int packet_do_bind(struct sock
*sk
, struct net_device
*dev
, __be16 protocol
)
878 struct packet_sock
*po
= pkt_sk(sk
);
880 * Detach an existing hook if present.
885 spin_lock(&po
->bind_lock
);
890 spin_unlock(&po
->bind_lock
);
891 dev_remove_pack(&po
->prot_hook
);
892 spin_lock(&po
->bind_lock
);
896 po
->prot_hook
.type
= protocol
;
897 po
->prot_hook
.dev
= dev
;
899 po
->ifindex
= dev
? dev
->ifindex
: 0;
905 if (dev
->flags
&IFF_UP
) {
906 dev_add_pack(&po
->prot_hook
);
910 sk
->sk_err
= ENETDOWN
;
911 if (!sock_flag(sk
, SOCK_DEAD
))
912 sk
->sk_error_report(sk
);
915 dev_add_pack(&po
->prot_hook
);
921 spin_unlock(&po
->bind_lock
);
927 * Bind a packet socket to a device
930 #ifdef CONFIG_SOCK_PACKET
932 static int packet_bind_spkt(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
934 struct sock
*sk
=sock
->sk
;
936 struct net_device
*dev
;
943 if (addr_len
!= sizeof(struct sockaddr
))
945 strlcpy(name
,uaddr
->sa_data
,sizeof(name
));
947 dev
= dev_get_by_name(name
);
949 err
= packet_do_bind(sk
, dev
, pkt_sk(sk
)->num
);
956 static int packet_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
958 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
959 struct sock
*sk
=sock
->sk
;
960 struct net_device
*dev
= NULL
;
968 if (addr_len
< sizeof(struct sockaddr_ll
))
970 if (sll
->sll_family
!= AF_PACKET
)
973 if (sll
->sll_ifindex
) {
975 dev
= dev_get_by_index(sll
->sll_ifindex
);
979 err
= packet_do_bind(sk
, dev
, sll
->sll_protocol
? : pkt_sk(sk
)->num
);
987 static struct proto packet_proto
= {
989 .owner
= THIS_MODULE
,
990 .obj_size
= sizeof(struct packet_sock
),
994 * Create a packet of type SOCK_PACKET.
997 static int packet_create(struct socket
*sock
, int protocol
)
1000 struct packet_sock
*po
;
1001 __be16 proto
= (__force __be16
)protocol
; /* weird, but documented */
1004 if (!capable(CAP_NET_RAW
))
1006 if (sock
->type
!= SOCK_DGRAM
&& sock
->type
!= SOCK_RAW
1007 #ifdef CONFIG_SOCK_PACKET
1008 && sock
->type
!= SOCK_PACKET
1011 return -ESOCKTNOSUPPORT
;
1013 sock
->state
= SS_UNCONNECTED
;
1016 sk
= sk_alloc(PF_PACKET
, GFP_KERNEL
, &packet_proto
, 1);
1020 sock
->ops
= &packet_ops
;
1021 #ifdef CONFIG_SOCK_PACKET
1022 if (sock
->type
== SOCK_PACKET
)
1023 sock
->ops
= &packet_ops_spkt
;
1025 sock_init_data(sock
, sk
);
1028 sk
->sk_family
= PF_PACKET
;
1031 sk
->sk_destruct
= packet_sock_destruct
;
1032 atomic_inc(&packet_socks_nr
);
1035 * Attach a protocol block
1038 spin_lock_init(&po
->bind_lock
);
1039 po
->prot_hook
.func
= packet_rcv
;
1040 #ifdef CONFIG_SOCK_PACKET
1041 if (sock
->type
== SOCK_PACKET
)
1042 po
->prot_hook
.func
= packet_rcv_spkt
;
1044 po
->prot_hook
.af_packet_priv
= sk
;
1047 po
->prot_hook
.type
= proto
;
1048 dev_add_pack(&po
->prot_hook
);
1053 write_lock_bh(&packet_sklist_lock
);
1054 sk_add_node(sk
, &packet_sklist
);
1055 write_unlock_bh(&packet_sklist_lock
);
1062 * Pull a packet from our receive queue and hand it to the user.
1063 * If necessary we block.
1066 static int packet_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1067 struct msghdr
*msg
, size_t len
, int flags
)
1069 struct sock
*sk
= sock
->sk
;
1070 struct sk_buff
*skb
;
1072 struct sockaddr_ll
*sll
;
1075 if (flags
& ~(MSG_PEEK
|MSG_DONTWAIT
|MSG_TRUNC
|MSG_CMSG_COMPAT
))
1079 /* What error should we return now? EUNATTACH? */
1080 if (pkt_sk(sk
)->ifindex
< 0)
1085 * Call the generic datagram receiver. This handles all sorts
1086 * of horrible races and re-entrancy so we can forget about it
1087 * in the protocol layers.
1089 * Now it will return ENETDOWN, if device have just gone down,
1090 * but then it will block.
1093 skb
=skb_recv_datagram(sk
,flags
,flags
&MSG_DONTWAIT
,&err
);
1096 * An error occurred so return it. Because skb_recv_datagram()
1097 * handles the blocking we don't see and worry about blocking
1105 * If the address length field is there to be filled in, we fill
1109 sll
= &PACKET_SKB_CB(skb
)->sa
.ll
;
1110 if (sock
->type
== SOCK_PACKET
)
1111 msg
->msg_namelen
= sizeof(struct sockaddr_pkt
);
1113 msg
->msg_namelen
= sll
->sll_halen
+ offsetof(struct sockaddr_ll
, sll_addr
);
1116 * You lose any data beyond the buffer you gave. If it worries a
1117 * user program they can ask the device for its MTU anyway.
1124 msg
->msg_flags
|=MSG_TRUNC
;
1127 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1131 sock_recv_timestamp(msg
, sk
, skb
);
1134 memcpy(msg
->msg_name
, &PACKET_SKB_CB(skb
)->sa
,
1137 if (pkt_sk(sk
)->auxdata
) {
1138 struct tpacket_auxdata aux
;
1140 aux
.tp_status
= TP_STATUS_USER
;
1141 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
1142 aux
.tp_status
|= TP_STATUS_CSUMNOTREADY
;
1143 aux
.tp_len
= PACKET_SKB_CB(skb
)->origlen
;
1144 aux
.tp_snaplen
= skb
->len
;
1146 aux
.tp_net
= skb
->nh
.raw
- skb
->data
;
1148 put_cmsg(msg
, SOL_PACKET
, PACKET_AUXDATA
, sizeof(aux
), &aux
);
1152 * Free or return the buffer as appropriate. Again this
1153 * hides all the races and re-entrancy issues from us.
1155 err
= (flags
&MSG_TRUNC
) ? skb
->len
: copied
;
1158 skb_free_datagram(sk
, skb
);
1163 #ifdef CONFIG_SOCK_PACKET
1164 static int packet_getname_spkt(struct socket
*sock
, struct sockaddr
*uaddr
,
1165 int *uaddr_len
, int peer
)
1167 struct net_device
*dev
;
1168 struct sock
*sk
= sock
->sk
;
1173 uaddr
->sa_family
= AF_PACKET
;
1174 dev
= dev_get_by_index(pkt_sk(sk
)->ifindex
);
1176 strlcpy(uaddr
->sa_data
, dev
->name
, 15);
1179 memset(uaddr
->sa_data
, 0, 14);
1180 *uaddr_len
= sizeof(*uaddr
);
1186 static int packet_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
1187 int *uaddr_len
, int peer
)
1189 struct net_device
*dev
;
1190 struct sock
*sk
= sock
->sk
;
1191 struct packet_sock
*po
= pkt_sk(sk
);
1192 struct sockaddr_ll
*sll
= (struct sockaddr_ll
*)uaddr
;
1197 sll
->sll_family
= AF_PACKET
;
1198 sll
->sll_ifindex
= po
->ifindex
;
1199 sll
->sll_protocol
= po
->num
;
1200 dev
= dev_get_by_index(po
->ifindex
);
1202 sll
->sll_hatype
= dev
->type
;
1203 sll
->sll_halen
= dev
->addr_len
;
1204 memcpy(sll
->sll_addr
, dev
->dev_addr
, dev
->addr_len
);
1207 sll
->sll_hatype
= 0; /* Bad: we have no ARPHRD_UNSPEC */
1210 *uaddr_len
= offsetof(struct sockaddr_ll
, sll_addr
) + sll
->sll_halen
;
1215 #ifdef CONFIG_PACKET_MULTICAST
1216 static void packet_dev_mc(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
1219 case PACKET_MR_MULTICAST
:
1221 dev_mc_add(dev
, i
->addr
, i
->alen
, 0);
1223 dev_mc_delete(dev
, i
->addr
, i
->alen
, 0);
1225 case PACKET_MR_PROMISC
:
1226 dev_set_promiscuity(dev
, what
);
1228 case PACKET_MR_ALLMULTI
:
1229 dev_set_allmulti(dev
, what
);
1235 static void packet_dev_mclist(struct net_device
*dev
, struct packet_mclist
*i
, int what
)
1237 for ( ; i
; i
=i
->next
) {
1238 if (i
->ifindex
== dev
->ifindex
)
1239 packet_dev_mc(dev
, i
, what
);
1243 static int packet_mc_add(struct sock
*sk
, struct packet_mreq_max
*mreq
)
1245 struct packet_sock
*po
= pkt_sk(sk
);
1246 struct packet_mclist
*ml
, *i
;
1247 struct net_device
*dev
;
1253 dev
= __dev_get_by_index(mreq
->mr_ifindex
);
1258 if (mreq
->mr_alen
> dev
->addr_len
)
1262 i
= kmalloc(sizeof(*i
), GFP_KERNEL
);
1267 for (ml
= po
->mclist
; ml
; ml
= ml
->next
) {
1268 if (ml
->ifindex
== mreq
->mr_ifindex
&&
1269 ml
->type
== mreq
->mr_type
&&
1270 ml
->alen
== mreq
->mr_alen
&&
1271 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
1273 /* Free the new element ... */
1279 i
->type
= mreq
->mr_type
;
1280 i
->ifindex
= mreq
->mr_ifindex
;
1281 i
->alen
= mreq
->mr_alen
;
1282 memcpy(i
->addr
, mreq
->mr_address
, i
->alen
);
1284 i
->next
= po
->mclist
;
1286 packet_dev_mc(dev
, i
, +1);
1293 static int packet_mc_drop(struct sock
*sk
, struct packet_mreq_max
*mreq
)
1295 struct packet_mclist
*ml
, **mlp
;
1299 for (mlp
= &pkt_sk(sk
)->mclist
; (ml
= *mlp
) != NULL
; mlp
= &ml
->next
) {
1300 if (ml
->ifindex
== mreq
->mr_ifindex
&&
1301 ml
->type
== mreq
->mr_type
&&
1302 ml
->alen
== mreq
->mr_alen
&&
1303 memcmp(ml
->addr
, mreq
->mr_address
, ml
->alen
) == 0) {
1304 if (--ml
->count
== 0) {
1305 struct net_device
*dev
;
1307 dev
= dev_get_by_index(ml
->ifindex
);
1309 packet_dev_mc(dev
, ml
, -1);
1319 return -EADDRNOTAVAIL
;
1322 static void packet_flush_mclist(struct sock
*sk
)
1324 struct packet_sock
*po
= pkt_sk(sk
);
1325 struct packet_mclist
*ml
;
1331 while ((ml
= po
->mclist
) != NULL
) {
1332 struct net_device
*dev
;
1334 po
->mclist
= ml
->next
;
1335 if ((dev
= dev_get_by_index(ml
->ifindex
)) != NULL
) {
1336 packet_dev_mc(dev
, ml
, -1);
1346 packet_setsockopt(struct socket
*sock
, int level
, int optname
, char __user
*optval
, int optlen
)
1348 struct sock
*sk
= sock
->sk
;
1349 struct packet_sock
*po
= pkt_sk(sk
);
1352 if (level
!= SOL_PACKET
)
1353 return -ENOPROTOOPT
;
1356 #ifdef CONFIG_PACKET_MULTICAST
1357 case PACKET_ADD_MEMBERSHIP
:
1358 case PACKET_DROP_MEMBERSHIP
:
1360 struct packet_mreq_max mreq
;
1362 memset(&mreq
, 0, sizeof(mreq
));
1363 if (len
< sizeof(struct packet_mreq
))
1365 if (len
> sizeof(mreq
))
1367 if (copy_from_user(&mreq
,optval
,len
))
1369 if (len
< (mreq
.mr_alen
+ offsetof(struct packet_mreq
, mr_address
)))
1371 if (optname
== PACKET_ADD_MEMBERSHIP
)
1372 ret
= packet_mc_add(sk
, &mreq
);
1374 ret
= packet_mc_drop(sk
, &mreq
);
1378 #ifdef CONFIG_PACKET_MMAP
1379 case PACKET_RX_RING
:
1381 struct tpacket_req req
;
1383 if (optlen
<sizeof(req
))
1385 if (copy_from_user(&req
,optval
,sizeof(req
)))
1387 return packet_set_ring(sk
, &req
, 0);
1389 case PACKET_COPY_THRESH
:
1393 if (optlen
!=sizeof(val
))
1395 if (copy_from_user(&val
,optval
,sizeof(val
)))
1398 pkt_sk(sk
)->copy_thresh
= val
;
1402 case PACKET_AUXDATA
:
1406 if (optlen
< sizeof(val
))
1408 if (copy_from_user(&val
, optval
, sizeof(val
)))
1411 po
->auxdata
= !!val
;
1415 return -ENOPROTOOPT
;
1419 static int packet_getsockopt(struct socket
*sock
, int level
, int optname
,
1420 char __user
*optval
, int __user
*optlen
)
1424 struct sock
*sk
= sock
->sk
;
1425 struct packet_sock
*po
= pkt_sk(sk
);
1427 struct tpacket_stats st
;
1429 if (level
!= SOL_PACKET
)
1430 return -ENOPROTOOPT
;
1432 if (get_user(len
, optlen
))
1439 case PACKET_STATISTICS
:
1440 if (len
> sizeof(struct tpacket_stats
))
1441 len
= sizeof(struct tpacket_stats
);
1442 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
1444 memset(&po
->stats
, 0, sizeof(st
));
1445 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1446 st
.tp_packets
+= st
.tp_drops
;
1450 case PACKET_AUXDATA
:
1451 if (len
> sizeof(int))
1458 return -ENOPROTOOPT
;
1461 if (put_user(len
, optlen
))
1463 if (copy_to_user(optval
, data
, len
))
1469 static int packet_notifier(struct notifier_block
*this, unsigned long msg
, void *data
)
1472 struct hlist_node
*node
;
1473 struct net_device
*dev
= data
;
1475 read_lock(&packet_sklist_lock
);
1476 sk_for_each(sk
, node
, &packet_sklist
) {
1477 struct packet_sock
*po
= pkt_sk(sk
);
1480 case NETDEV_UNREGISTER
:
1481 #ifdef CONFIG_PACKET_MULTICAST
1483 packet_dev_mclist(dev
, po
->mclist
, -1);
1487 if (dev
->ifindex
== po
->ifindex
) {
1488 spin_lock(&po
->bind_lock
);
1490 __dev_remove_pack(&po
->prot_hook
);
1493 sk
->sk_err
= ENETDOWN
;
1494 if (!sock_flag(sk
, SOCK_DEAD
))
1495 sk
->sk_error_report(sk
);
1497 if (msg
== NETDEV_UNREGISTER
) {
1499 po
->prot_hook
.dev
= NULL
;
1501 spin_unlock(&po
->bind_lock
);
1505 spin_lock(&po
->bind_lock
);
1506 if (dev
->ifindex
== po
->ifindex
&& po
->num
&&
1508 dev_add_pack(&po
->prot_hook
);
1512 spin_unlock(&po
->bind_lock
);
1516 read_unlock(&packet_sklist_lock
);
1521 static int packet_ioctl(struct socket
*sock
, unsigned int cmd
,
1524 struct sock
*sk
= sock
->sk
;
1529 int amount
= atomic_read(&sk
->sk_wmem_alloc
);
1530 return put_user(amount
, (int __user
*)arg
);
1534 struct sk_buff
*skb
;
1537 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
1538 skb
= skb_peek(&sk
->sk_receive_queue
);
1541 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1542 return put_user(amount
, (int __user
*)arg
);
1545 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1555 case SIOCGIFBRDADDR
:
1556 case SIOCSIFBRDADDR
:
1557 case SIOCGIFNETMASK
:
1558 case SIOCSIFNETMASK
:
1559 case SIOCGIFDSTADDR
:
1560 case SIOCSIFDSTADDR
:
1562 return inet_dgram_ops
.ioctl(sock
, cmd
, arg
);
1566 return -ENOIOCTLCMD
;
1571 #ifndef CONFIG_PACKET_MMAP
1572 #define packet_mmap sock_no_mmap
1573 #define packet_poll datagram_poll
1576 static unsigned int packet_poll(struct file
* file
, struct socket
*sock
,
1579 struct sock
*sk
= sock
->sk
;
1580 struct packet_sock
*po
= pkt_sk(sk
);
1581 unsigned int mask
= datagram_poll(file
, sock
, wait
);
1583 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
1585 unsigned last
= po
->head
? po
->head
-1 : po
->frame_max
;
1586 struct tpacket_hdr
*h
;
1588 h
= packet_lookup_frame(po
, last
);
1591 mask
|= POLLIN
| POLLRDNORM
;
1593 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1598 /* Dirty? Well, I still did not learn better way to account
1602 static void packet_mm_open(struct vm_area_struct
*vma
)
1604 struct file
*file
= vma
->vm_file
;
1605 struct socket
* sock
= file
->private_data
;
1606 struct sock
*sk
= sock
->sk
;
1609 atomic_inc(&pkt_sk(sk
)->mapped
);
1612 static void packet_mm_close(struct vm_area_struct
*vma
)
1614 struct file
*file
= vma
->vm_file
;
1615 struct socket
* sock
= file
->private_data
;
1616 struct sock
*sk
= sock
->sk
;
1619 atomic_dec(&pkt_sk(sk
)->mapped
);
1622 static struct vm_operations_struct packet_mmap_ops
= {
1623 .open
= packet_mm_open
,
1624 .close
=packet_mm_close
,
1627 static inline struct page
*pg_vec_endpage(char *one_pg_vec
, unsigned int order
)
1629 return virt_to_page(one_pg_vec
+ (PAGE_SIZE
<< order
) - 1);
1632 static void free_pg_vec(char **pg_vec
, unsigned int order
, unsigned int len
)
1636 for (i
= 0; i
< len
; i
++) {
1637 if (likely(pg_vec
[i
]))
1638 free_pages((unsigned long) pg_vec
[i
], order
);
1643 static inline char *alloc_one_pg_vec_page(unsigned long order
)
1645 return (char *) __get_free_pages(GFP_KERNEL
| __GFP_COMP
| __GFP_ZERO
,
1649 static char **alloc_pg_vec(struct tpacket_req
*req
, int order
)
1651 unsigned int block_nr
= req
->tp_block_nr
;
1655 pg_vec
= kzalloc(block_nr
* sizeof(char *), GFP_KERNEL
);
1656 if (unlikely(!pg_vec
))
1659 for (i
= 0; i
< block_nr
; i
++) {
1660 pg_vec
[i
] = alloc_one_pg_vec_page(order
);
1661 if (unlikely(!pg_vec
[i
]))
1662 goto out_free_pgvec
;
1669 free_pg_vec(pg_vec
, order
, block_nr
);
1674 static int packet_set_ring(struct sock
*sk
, struct tpacket_req
*req
, int closing
)
1676 char **pg_vec
= NULL
;
1677 struct packet_sock
*po
= pkt_sk(sk
);
1678 int was_running
, order
= 0;
1682 if (req
->tp_block_nr
) {
1685 /* Sanity tests and some calculations */
1687 if (unlikely(po
->pg_vec
))
1690 if (unlikely((int)req
->tp_block_size
<= 0))
1692 if (unlikely(req
->tp_block_size
& (PAGE_SIZE
- 1)))
1694 if (unlikely(req
->tp_frame_size
< TPACKET_HDRLEN
))
1696 if (unlikely(req
->tp_frame_size
& (TPACKET_ALIGNMENT
- 1)))
1699 po
->frames_per_block
= req
->tp_block_size
/req
->tp_frame_size
;
1700 if (unlikely(po
->frames_per_block
<= 0))
1702 if (unlikely((po
->frames_per_block
* req
->tp_block_nr
) !=
1707 order
= get_order(req
->tp_block_size
);
1708 pg_vec
= alloc_pg_vec(req
, order
);
1709 if (unlikely(!pg_vec
))
1713 for (i
= 0; i
< req
->tp_block_nr
; i
++) {
1714 char *ptr
= pg_vec
[i
];
1715 struct tpacket_hdr
*header
;
1718 for (k
= 0; k
< po
->frames_per_block
; k
++) {
1719 header
= (struct tpacket_hdr
*) ptr
;
1720 header
->tp_status
= TP_STATUS_KERNEL
;
1721 ptr
+= req
->tp_frame_size
;
1726 if (unlikely(req
->tp_frame_nr
))
1732 /* Detach socket from network */
1733 spin_lock(&po
->bind_lock
);
1734 was_running
= po
->running
;
1737 __dev_remove_pack(&po
->prot_hook
);
1742 spin_unlock(&po
->bind_lock
);
1747 if (closing
|| atomic_read(&po
->mapped
) == 0) {
1749 #define XC(a, b) ({ __typeof__ ((a)) __t; __t = (a); (a) = (b); __t; })
1751 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
1752 pg_vec
= XC(po
->pg_vec
, pg_vec
);
1753 po
->frame_max
= (req
->tp_frame_nr
- 1);
1755 po
->frame_size
= req
->tp_frame_size
;
1756 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1758 order
= XC(po
->pg_vec_order
, order
);
1759 req
->tp_block_nr
= XC(po
->pg_vec_len
, req
->tp_block_nr
);
1761 po
->pg_vec_pages
= req
->tp_block_size
/PAGE_SIZE
;
1762 po
->prot_hook
.func
= po
->pg_vec
? tpacket_rcv
: packet_rcv
;
1763 skb_queue_purge(&sk
->sk_receive_queue
);
1765 if (atomic_read(&po
->mapped
))
1766 printk(KERN_DEBUG
"packet_mmap: vma is busy: %d\n", atomic_read(&po
->mapped
));
1769 spin_lock(&po
->bind_lock
);
1770 if (was_running
&& !po
->running
) {
1774 dev_add_pack(&po
->prot_hook
);
1776 spin_unlock(&po
->bind_lock
);
1781 free_pg_vec(pg_vec
, order
, req
->tp_block_nr
);
1786 static int packet_mmap(struct file
*file
, struct socket
*sock
, struct vm_area_struct
*vma
)
1788 struct sock
*sk
= sock
->sk
;
1789 struct packet_sock
*po
= pkt_sk(sk
);
1791 unsigned long start
;
1798 size
= vma
->vm_end
- vma
->vm_start
;
1801 if (po
->pg_vec
== NULL
)
1803 if (size
!= po
->pg_vec_len
*po
->pg_vec_pages
*PAGE_SIZE
)
1806 start
= vma
->vm_start
;
1807 for (i
= 0; i
< po
->pg_vec_len
; i
++) {
1808 struct page
*page
= virt_to_page(po
->pg_vec
[i
]);
1811 for (pg_num
= 0; pg_num
< po
->pg_vec_pages
; pg_num
++, page
++) {
1812 err
= vm_insert_page(vma
, start
, page
);
1818 atomic_inc(&po
->mapped
);
1819 vma
->vm_ops
= &packet_mmap_ops
;
1829 #ifdef CONFIG_SOCK_PACKET
1830 static const struct proto_ops packet_ops_spkt
= {
1831 .family
= PF_PACKET
,
1832 .owner
= THIS_MODULE
,
1833 .release
= packet_release
,
1834 .bind
= packet_bind_spkt
,
1835 .connect
= sock_no_connect
,
1836 .socketpair
= sock_no_socketpair
,
1837 .accept
= sock_no_accept
,
1838 .getname
= packet_getname_spkt
,
1839 .poll
= datagram_poll
,
1840 .ioctl
= packet_ioctl
,
1841 .listen
= sock_no_listen
,
1842 .shutdown
= sock_no_shutdown
,
1843 .setsockopt
= sock_no_setsockopt
,
1844 .getsockopt
= sock_no_getsockopt
,
1845 .sendmsg
= packet_sendmsg_spkt
,
1846 .recvmsg
= packet_recvmsg
,
1847 .mmap
= sock_no_mmap
,
1848 .sendpage
= sock_no_sendpage
,
1852 static const struct proto_ops packet_ops
= {
1853 .family
= PF_PACKET
,
1854 .owner
= THIS_MODULE
,
1855 .release
= packet_release
,
1856 .bind
= packet_bind
,
1857 .connect
= sock_no_connect
,
1858 .socketpair
= sock_no_socketpair
,
1859 .accept
= sock_no_accept
,
1860 .getname
= packet_getname
,
1861 .poll
= packet_poll
,
1862 .ioctl
= packet_ioctl
,
1863 .listen
= sock_no_listen
,
1864 .shutdown
= sock_no_shutdown
,
1865 .setsockopt
= packet_setsockopt
,
1866 .getsockopt
= packet_getsockopt
,
1867 .sendmsg
= packet_sendmsg
,
1868 .recvmsg
= packet_recvmsg
,
1869 .mmap
= packet_mmap
,
1870 .sendpage
= sock_no_sendpage
,
1873 static struct net_proto_family packet_family_ops
= {
1874 .family
= PF_PACKET
,
1875 .create
= packet_create
,
1876 .owner
= THIS_MODULE
,
1879 static struct notifier_block packet_netdev_notifier
= {
1880 .notifier_call
=packet_notifier
,
1883 #ifdef CONFIG_PROC_FS
1884 static inline struct sock
*packet_seq_idx(loff_t off
)
1887 struct hlist_node
*node
;
1889 sk_for_each(s
, node
, &packet_sklist
) {
1896 static void *packet_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1898 read_lock(&packet_sklist_lock
);
1899 return *pos
? packet_seq_idx(*pos
- 1) : SEQ_START_TOKEN
;
1902 static void *packet_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1905 return (v
== SEQ_START_TOKEN
)
1906 ? sk_head(&packet_sklist
)
1907 : sk_next((struct sock
*)v
) ;
1910 static void packet_seq_stop(struct seq_file
*seq
, void *v
)
1912 read_unlock(&packet_sklist_lock
);
1915 static int packet_seq_show(struct seq_file
*seq
, void *v
)
1917 if (v
== SEQ_START_TOKEN
)
1918 seq_puts(seq
, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
1921 const struct packet_sock
*po
= pkt_sk(s
);
1924 "%p %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
1926 atomic_read(&s
->sk_refcnt
),
1931 atomic_read(&s
->sk_rmem_alloc
),
1939 static struct seq_operations packet_seq_ops
= {
1940 .start
= packet_seq_start
,
1941 .next
= packet_seq_next
,
1942 .stop
= packet_seq_stop
,
1943 .show
= packet_seq_show
,
1946 static int packet_seq_open(struct inode
*inode
, struct file
*file
)
1948 return seq_open(file
, &packet_seq_ops
);
1951 static const struct file_operations packet_seq_fops
= {
1952 .owner
= THIS_MODULE
,
1953 .open
= packet_seq_open
,
1955 .llseek
= seq_lseek
,
1956 .release
= seq_release
,
1961 static void __exit
packet_exit(void)
1963 proc_net_remove("packet");
1964 unregister_netdevice_notifier(&packet_netdev_notifier
);
1965 sock_unregister(PF_PACKET
);
1966 proto_unregister(&packet_proto
);
1969 static int __init
packet_init(void)
1971 int rc
= proto_register(&packet_proto
, 0);
1976 sock_register(&packet_family_ops
);
1977 register_netdevice_notifier(&packet_netdev_notifier
);
1978 proc_net_fops_create("packet", 0, &packet_seq_fops
);
1983 module_init(packet_init
);
1984 module_exit(packet_exit
);
1985 MODULE_LICENSE("GPL");
1986 MODULE_ALIAS_NETPROTO(PF_PACKET
);