blob: f87ed4803c111369029029ab20df874aecfd8c28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
5 *
6 * PACKET - implements raw packet sockets.
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
11 *
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090012 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * 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.
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090035 * Ulises Alonso : Frame number limit removal and
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * packet_set_ring memory leak.
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070037 * Eric Biederman : Allow for > 8 byte hardware addresses.
38 * The convention is that longer addresses
39 * will simply extend the hardware address
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090040 * byte arrays at the end of sockaddr_ll
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070041 * and packet_mreq.
Johann Baudy69e3c752009-05-18 22:11:22 -070042 * Johann Baudy : Added TX RING.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 *
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.
48 *
49 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/mm.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080053#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/fcntl.h>
55#include <linux/socket.h>
56#include <linux/in.h>
57#include <linux/inet.h>
58#include <linux/netdevice.h>
59#include <linux/if_packet.h>
60#include <linux/wireless.h>
Herbert Xuffbc6112007-02-04 23:33:10 -080061#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/kmod.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020063#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <net/ip.h>
65#include <net/protocol.h>
66#include <linux/skbuff.h>
67#include <net/sock.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>
73#include <asm/page.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040074#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <asm/io.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>
Herbert Xu905db442009-01-30 14:12:06 -080081#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#ifdef CONFIG_INET
84#include <net/inet_common.h>
85#endif
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 Assumptions:
89 - if device has no dev->hard_header routine, it adds and removes ll header
90 inside itself. In this case ll header is invisible outside of device,
91 but higher levels still should reserve dev->hard_header_len.
92 Some devices are enough clever to reallocate skb, when header
93 will not fit to reserved space (tunnel), another ones are silly
94 (PPP).
95 - packet socket receives packets with pulled ll header,
96 so that SOCK_RAW should push it back.
97
98On receive:
99-----------
100
101Incoming, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700102 mac_header -> ll header
103 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105Outgoing, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700106 mac_header -> ll header
107 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109Incoming, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700110 mac_header -> UNKNOWN position. It is very likely, that it points to ll
111 header. PPP makes it, that is wrong, because introduce
YOSHIFUJI Hideakidb0c58f2007-07-19 10:44:35 +0900112 assymetry between rx and tx paths.
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700113 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115Outgoing, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700116 mac_header -> data. ll header is still not built!
117 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119Resume
120 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
121
122
123On transmit:
124------------
125
126dev->hard_header != NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700127 mac_header -> ll header
128 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130dev->hard_header == NULL (ll header is added by device, we cannot control it)
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700131 mac_header -> data
132 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 We should set nh.raw on output to correct posistion,
135 packet classifier depends on it.
136 */
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* Private packet socket structures. */
139
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000140struct packet_mclist {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct packet_mclist *next;
142 int ifindex;
143 int count;
144 unsigned short type;
145 unsigned short alen;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700146 unsigned char addr[MAX_ADDR_LEN];
147};
148/* identical to struct packet_mreq except it has
149 * a longer address field.
150 */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000151struct packet_mreq_max {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700152 int mr_ifindex;
153 unsigned short mr_type;
154 unsigned short mr_alen;
155 unsigned char mr_address[MAX_ADDR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
David S. Millera2efcfa2007-05-29 13:12:50 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#ifdef CONFIG_PACKET_MMAP
Johann Baudy69e3c752009-05-18 22:11:22 -0700159static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
160 int closing, int tx_ring);
161
162struct packet_ring_buffer {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000163 char **pg_vec;
Johann Baudy69e3c752009-05-18 22:11:22 -0700164 unsigned int head;
165 unsigned int frames_per_block;
166 unsigned int frame_size;
167 unsigned int frame_max;
168
169 unsigned int pg_vec_order;
170 unsigned int pg_vec_pages;
171 unsigned int pg_vec_len;
172
173 atomic_t pending;
174};
175
176struct packet_sock;
177static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif
179
180static void packet_flush_mclist(struct sock *sk);
181
182struct packet_sock {
183 /* struct sock has to be the first member of packet_sock */
184 struct sock sk;
185 struct tpacket_stats stats;
186#ifdef CONFIG_PACKET_MMAP
Johann Baudy69e3c752009-05-18 22:11:22 -0700187 struct packet_ring_buffer rx_ring;
188 struct packet_ring_buffer tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 int copy_thresh;
190#endif
191 struct packet_type prot_hook;
192 spinlock_t bind_lock;
Herbert Xu905db442009-01-30 14:12:06 -0800193 struct mutex pg_vec_lock;
Herbert Xu8dc41942007-02-04 23:31:32 -0800194 unsigned int running:1, /* prot_hook is attached*/
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700195 auxdata:1,
196 origdev:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 int ifindex; /* bound device */
Al Viro0e11c912006-11-08 00:26:29 -0800198 __be16 num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct packet_mclist *mclist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#ifdef CONFIG_PACKET_MMAP
201 atomic_t mapped;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700202 enum tpacket_versions tp_version;
203 unsigned int tp_hdrlen;
Patrick McHardy8913336a2008-07-18 18:05:19 -0700204 unsigned int tp_reserve;
Johann Baudy69e3c752009-05-18 22:11:22 -0700205 unsigned int tp_loss:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
207};
208
Herbert Xuffbc6112007-02-04 23:33:10 -0800209struct packet_skb_cb {
210 unsigned int origlen;
211 union {
212 struct sockaddr_pkt pkt;
213 struct sockaddr_ll ll;
214 } sa;
215};
216
217#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
Herbert Xu8dc41942007-02-04 23:31:32 -0800218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#ifdef CONFIG_PACKET_MMAP
220
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700221static void __packet_set_status(struct packet_sock *po, void *frame, int status)
222{
223 union {
224 struct tpacket_hdr *h1;
225 struct tpacket2_hdr *h2;
226 void *raw;
227 } h;
228
229 h.raw = frame;
230 switch (po->tp_version) {
231 case TPACKET_V1:
232 h.h1->tp_status = status;
Johann Baudy69e3c752009-05-18 22:11:22 -0700233 flush_dcache_page(virt_to_page(&h.h1->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700234 break;
235 case TPACKET_V2:
236 h.h2->tp_status = status;
Johann Baudy69e3c752009-05-18 22:11:22 -0700237 flush_dcache_page(virt_to_page(&h.h2->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700238 break;
Johann Baudy69e3c752009-05-18 22:11:22 -0700239 default:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000240 pr_err("TPACKET version not supported\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700241 BUG();
242 }
243
244 smp_wmb();
245}
246
247static int __packet_get_status(struct packet_sock *po, void *frame)
248{
249 union {
250 struct tpacket_hdr *h1;
251 struct tpacket2_hdr *h2;
252 void *raw;
253 } h;
254
255 smp_rmb();
256
257 h.raw = frame;
258 switch (po->tp_version) {
259 case TPACKET_V1:
260 flush_dcache_page(virt_to_page(&h.h1->tp_status));
261 return h.h1->tp_status;
262 case TPACKET_V2:
263 flush_dcache_page(virt_to_page(&h.h2->tp_status));
264 return h.h2->tp_status;
265 default:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000266 pr_err("TPACKET version not supported\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700267 BUG();
268 return 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
Johann Baudy69e3c752009-05-18 22:11:22 -0700271
272static void *packet_lookup_frame(struct packet_sock *po,
273 struct packet_ring_buffer *rb,
274 unsigned int position,
275 int status)
276{
277 unsigned int pg_vec_pos, frame_offset;
278 union {
279 struct tpacket_hdr *h1;
280 struct tpacket2_hdr *h2;
281 void *raw;
282 } h;
283
284 pg_vec_pos = position / rb->frames_per_block;
285 frame_offset = position % rb->frames_per_block;
286
287 h.raw = rb->pg_vec[pg_vec_pos] + (frame_offset * rb->frame_size);
288
289 if (status != __packet_get_status(po, h.raw))
290 return NULL;
291
292 return h.raw;
293}
294
295static inline void *packet_current_frame(struct packet_sock *po,
296 struct packet_ring_buffer *rb,
297 int status)
298{
299 return packet_lookup_frame(po, rb, rb->head, status);
300}
301
302static inline void *packet_previous_frame(struct packet_sock *po,
303 struct packet_ring_buffer *rb,
304 int status)
305{
306 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
307 return packet_lookup_frame(po, rb, previous, status);
308}
309
310static inline void packet_increment_head(struct packet_ring_buffer *buff)
311{
312 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#endif
316
317static inline struct packet_sock *pkt_sk(struct sock *sk)
318{
319 return (struct packet_sock *)sk;
320}
321
322static void packet_sock_destruct(struct sock *sk)
323{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700324 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
325 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000328 pr_err("Attempt to release alive packet socket: %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return;
330 }
331
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -0800332 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800336static const struct proto_ops packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800338static const struct proto_ops packet_ops_spkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000340static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
341 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct sock *sk;
344 struct sockaddr_pkt *spkt;
345
346 /*
347 * When we registered the protocol we saved the socket in the data
348 * field for just this event.
349 */
350
351 sk = pt->af_packet_priv;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
354 * Yank back the headers [hope the device set this
355 * right or kerboom...]
356 *
357 * Incoming packets have ll header pulled,
358 * push it back.
359 *
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700360 * For outgoing ones skb->data == skb_mac_header(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * so that this procedure is noop.
362 */
363
364 if (skb->pkt_type == PACKET_LOOPBACK)
365 goto out;
366
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900367 if (dev_net(dev) != sock_net(sk))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800368 goto out;
369
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000370 skb = skb_share_check(skb, GFP_ATOMIC);
371 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 goto oom;
373
374 /* drop any routing info */
Eric Dumazetadf30902009-06-02 05:19:30 +0000375 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Phil Oester84531c22005-07-12 11:57:52 -0700377 /* drop conntrack reference */
378 nf_reset(skb);
379
Herbert Xuffbc6112007-02-04 23:33:10 -0800380 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700382 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /*
385 * The SOCK_PACKET socket receives _all_ frames.
386 */
387
388 spkt->spkt_family = dev->type;
389 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
390 spkt->spkt_protocol = skb->protocol;
391
392 /*
393 * Charge the memory to the socket. This is done specifically
394 * to prevent sockets using all the memory up.
395 */
396
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000397 if (sock_queue_rcv_skb(sk, skb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 0;
399
400out:
401 kfree_skb(skb);
402oom:
403 return 0;
404}
405
406
407/*
408 * Output a raw packet to a device layer. This bypasses all the other
409 * protocol layers and you must therefore supply it with a complete frame
410 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
413 struct msghdr *msg, size_t len)
414{
415 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000416 struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct sk_buff *skb;
418 struct net_device *dev;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000419 __be16 proto = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int err;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900423 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
425
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000426 if (saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (msg->msg_namelen < sizeof(struct sockaddr))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000428 return -EINVAL;
429 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
430 proto = saddr->spkt_protocol;
431 } else
432 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900435 * Find the device first to size check it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
437
438 saddr->spkt_device[13] = 0;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900439 dev = dev_get_by_name(sock_net(sk), saddr->spkt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 err = -ENODEV;
441 if (dev == NULL)
442 goto out_unlock;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900443
David S. Millerd5e76b02007-01-25 19:30:36 -0800444 err = -ENETDOWN;
445 if (!(dev->flags & IFF_UP))
446 goto out_unlock;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000449 * You may not queue a frame bigger than the mtu. This is the lowest level
450 * raw protocol and you must do your own fragmentation at this level.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 err = -EMSGSIZE;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -0800454 if (len > dev->mtu + dev->hard_header_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto out_unlock;
456
457 err = -ENOBUFS;
458 skb = sock_wmalloc(sk, len + LL_RESERVED_SPACE(dev), 0, GFP_KERNEL);
459
460 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000461 * If the write buffer is full, then tough. At this level the user
462 * gets to deal with the problem - do your own algorithmic backoffs.
463 * That's far more flexible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900465
466 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto out_unlock;
468
469 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900470 * Fill it in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* FIXME: Save some space for broken drivers that write a
474 * hard header at transmission time by themselves. PPP is the
475 * notable one here. This should really be fixed at the driver level.
476 */
477 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700478 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* Try to align data part correctly */
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700481 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 skb->data -= dev->hard_header_len;
483 skb->tail -= dev->hard_header_len;
484 if (len < dev->hard_header_len)
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700485 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
488 /* Returns -EFAULT on error */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000489 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 skb->protocol = proto;
491 skb->dev = dev;
492 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +0000493 skb->mark = sk->sk_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (err)
495 goto out_free;
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /*
498 * Now send it
499 */
500
501 dev_queue_xmit(skb);
502 dev_put(dev);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000503 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505out_free:
506 kfree_skb(skb);
507out_unlock:
508 if (dev)
509 dev_put(dev);
510 return err;
511}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
David S. Millerdbcb5852007-01-24 15:21:02 -0800513static inline unsigned int run_filter(struct sk_buff *skb, struct sock *sk,
514 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 struct sk_filter *filter;
517
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700518 rcu_read_lock_bh();
519 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -0800520 if (filter != NULL)
521 res = sk_run_filter(skb, filter->insns, filter->len);
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700522 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
David S. Millerdbcb5852007-01-24 15:21:02 -0800524 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/*
528 This function makes lazy skb cloning in hope that most of packets
529 are discarded by BPF.
530
531 Note tricky part: we DO mangle shared skb! skb->data, skb->len
532 and skb->cb are mangled. It works because (and until) packets
533 falling here are owned by current CPU. Output packets are cloned
534 by dev_queue_xmit_nit(), input packets are processed by net_bh
535 sequencially, so that if we return skb to original state on exit,
536 we will not harm anyone.
537 */
538
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000539static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
540 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct sock *sk;
543 struct sockaddr_ll *sll;
544 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000545 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800547 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 if (skb->pkt_type == PACKET_LOOPBACK)
550 goto drop;
551
552 sk = pt->af_packet_priv;
553 po = pkt_sk(sk);
554
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900555 if (dev_net(dev) != sock_net(sk))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800556 goto drop;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 skb->dev = dev;
559
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700560 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* The device has an explicit notion of ll header,
562 exported to higher levels.
563
564 Otherwise, the device hides datails of it frame
565 structure, so that corresponding packet head
566 never delivered to user.
567 */
568 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700569 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 else if (skb->pkt_type == PACKET_OUTGOING) {
571 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300572 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 }
575
576 snaplen = skb->len;
577
David S. Millerdbcb5852007-01-24 15:21:02 -0800578 res = run_filter(skb, sk, snaplen);
579 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700580 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -0800581 if (snaplen > res)
582 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
585 (unsigned)sk->sk_rcvbuf)
586 goto drop_n_acct;
587
588 if (skb_shared(skb)) {
589 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
590 if (nskb == NULL)
591 goto drop_n_acct;
592
593 if (skb_head != skb->data) {
594 skb->data = skb_head;
595 skb->len = skb_len;
596 }
597 kfree_skb(skb);
598 skb = nskb;
599 }
600
Herbert Xuffbc6112007-02-04 23:33:10 -0800601 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
602 sizeof(skb->cb));
603
604 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 sll->sll_family = AF_PACKET;
606 sll->sll_hatype = dev->type;
607 sll->sll_protocol = skb->protocol;
608 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -0800609 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700610 sll->sll_ifindex = orig_dev->ifindex;
611 else
612 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700614 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Herbert Xuffbc6112007-02-04 23:33:10 -0800616 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -0800617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (pskb_trim(skb, snaplen))
619 goto drop_n_acct;
620
621 skb_set_owner_r(skb, sk);
622 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +0000623 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Phil Oester84531c22005-07-12 11:57:52 -0700625 /* drop conntrack reference */
626 nf_reset(skb);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 spin_lock(&sk->sk_receive_queue.lock);
629 po->stats.tp_packets++;
630 __skb_queue_tail(&sk->sk_receive_queue, skb);
631 spin_unlock(&sk->sk_receive_queue.lock);
632 sk->sk_data_ready(sk, skb->len);
633 return 0;
634
635drop_n_acct:
636 spin_lock(&sk->sk_receive_queue.lock);
637 po->stats.tp_drops++;
638 spin_unlock(&sk->sk_receive_queue.lock);
639
640drop_n_restore:
641 if (skb_head != skb->data && skb_shared(skb)) {
642 skb->data = skb_head;
643 skb->len = skb_len;
644 }
645drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +0000646 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
648}
649
650#ifdef CONFIG_PACKET_MMAP
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000651static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
652 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 struct sock *sk;
655 struct packet_sock *po;
656 struct sockaddr_ll *sll;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700657 union {
658 struct tpacket_hdr *h1;
659 struct tpacket2_hdr *h2;
660 void *raw;
661 } h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000662 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800664 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 unsigned long status = TP_STATUS_LOSING|TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700666 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 struct sk_buff *copy_skb = NULL;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700668 struct timeval tv;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700669 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (skb->pkt_type == PACKET_LOOPBACK)
672 goto drop;
673
674 sk = pt->af_packet_priv;
675 po = pkt_sk(sk);
676
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900677 if (dev_net(dev) != sock_net(sk))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800678 goto drop;
679
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700680 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700682 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 else if (skb->pkt_type == PACKET_OUTGOING) {
684 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300685 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687 }
688
Herbert Xu8dc41942007-02-04 23:31:32 -0800689 if (skb->ip_summed == CHECKSUM_PARTIAL)
690 status |= TP_STATUS_CSUMNOTREADY;
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 snaplen = skb->len;
693
David S. Millerdbcb5852007-01-24 15:21:02 -0800694 res = run_filter(skb, sk, snaplen);
695 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700696 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -0800697 if (snaplen > res)
698 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy8913336a2008-07-18 18:05:19 -0700701 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
702 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 } else {
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300704 unsigned maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700705 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy8913336a2008-07-18 18:05:19 -0700706 (maclen < 16 ? 16 : maclen)) +
707 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 macoff = netoff - maclen;
709 }
710
Johann Baudy69e3c752009-05-18 22:11:22 -0700711 if (macoff + snaplen > po->rx_ring.frame_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (po->copy_thresh &&
713 atomic_read(&sk->sk_rmem_alloc) + skb->truesize <
714 (unsigned)sk->sk_rcvbuf) {
715 if (skb_shared(skb)) {
716 copy_skb = skb_clone(skb, GFP_ATOMIC);
717 } else {
718 copy_skb = skb_get(skb);
719 skb_head = skb->data;
720 }
721 if (copy_skb)
722 skb_set_owner_r(copy_skb, sk);
723 }
Johann Baudy69e3c752009-05-18 22:11:22 -0700724 snaplen = po->rx_ring.frame_size - macoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if ((int)snaplen < 0)
726 snaplen = 0;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 spin_lock(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -0700730 h.raw = packet_current_frame(po, &po->rx_ring, TP_STATUS_KERNEL);
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700731 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 goto ring_is_full;
Johann Baudy69e3c752009-05-18 22:11:22 -0700733 packet_increment_head(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 po->stats.tp_packets++;
735 if (copy_skb) {
736 status |= TP_STATUS_COPY;
737 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
738 }
739 if (!po->stats.tp_drops)
740 status &= ~TP_STATUS_LOSING;
741 spin_unlock(&sk->sk_receive_queue.lock);
742
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700743 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700745 switch (po->tp_version) {
746 case TPACKET_V1:
747 h.h1->tp_len = skb->len;
748 h.h1->tp_snaplen = snaplen;
749 h.h1->tp_mac = macoff;
750 h.h1->tp_net = netoff;
751 if (skb->tstamp.tv64)
752 tv = ktime_to_timeval(skb->tstamp);
753 else
754 do_gettimeofday(&tv);
755 h.h1->tp_sec = tv.tv_sec;
756 h.h1->tp_usec = tv.tv_usec;
757 hdrlen = sizeof(*h.h1);
758 break;
759 case TPACKET_V2:
760 h.h2->tp_len = skb->len;
761 h.h2->tp_snaplen = snaplen;
762 h.h2->tp_mac = macoff;
763 h.h2->tp_net = netoff;
764 if (skb->tstamp.tv64)
765 ts = ktime_to_timespec(skb->tstamp);
766 else
767 getnstimeofday(&ts);
768 h.h2->tp_sec = ts.tv_sec;
769 h.h2->tp_nsec = ts.tv_nsec;
Patrick McHardy393e52e2008-07-14 22:50:39 -0700770 h.h2->tp_vlan_tci = skb->vlan_tci;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700771 hdrlen = sizeof(*h.h2);
772 break;
773 default:
774 BUG();
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700777 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700778 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 sll->sll_family = AF_PACKET;
780 sll->sll_hatype = dev->type;
781 sll->sll_protocol = skb->protocol;
782 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -0800783 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700784 sll->sll_ifindex = orig_dev->ifindex;
785 else
786 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700788 __packet_set_status(po, h.raw, status);
Ralf Baechlee16aa202006-12-07 00:11:33 -0800789 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 {
791 struct page *p_start, *p_end;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700792 u8 *h_end = h.raw + macoff + snaplen - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700794 p_start = virt_to_page(h.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 p_end = virt_to_page(h_end);
796 while (p_start <= p_end) {
797 flush_dcache_page(p_start);
798 p_start++;
799 }
800 }
801
802 sk->sk_data_ready(sk, 0);
803
804drop_n_restore:
805 if (skb_head != skb->data && skb_shared(skb)) {
806 skb->data = skb_head;
807 skb->len = skb_len;
808 }
809drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900810 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812
813ring_is_full:
814 po->stats.tp_drops++;
815 spin_unlock(&sk->sk_receive_queue.lock);
816
817 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +0000818 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto drop_n_restore;
820}
821
Johann Baudy69e3c752009-05-18 22:11:22 -0700822static void tpacket_destruct_skb(struct sk_buff *skb)
823{
824 struct packet_sock *po = pkt_sk(skb->sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000825 void *ph;
Johann Baudy69e3c752009-05-18 22:11:22 -0700826
827 BUG_ON(skb == NULL);
828
829 if (likely(po->tx_ring.pg_vec)) {
830 ph = skb_shinfo(skb)->destructor_arg;
831 BUG_ON(__packet_get_status(po, ph) != TP_STATUS_SENDING);
832 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
833 atomic_dec(&po->tx_ring.pending);
834 __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
835 }
836
837 sock_wfree(skb);
838}
839
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000840static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
841 void *frame, struct net_device *dev, int size_max,
842 __be16 proto, unsigned char *addr)
Johann Baudy69e3c752009-05-18 22:11:22 -0700843{
844 union {
845 struct tpacket_hdr *h1;
846 struct tpacket2_hdr *h2;
847 void *raw;
848 } ph;
849 int to_write, offset, len, tp_len, nr_frags, len_max;
850 struct socket *sock = po->sk.sk_socket;
851 struct page *page;
852 void *data;
853 int err;
854
855 ph.raw = frame;
856
857 skb->protocol = proto;
858 skb->dev = dev;
859 skb->priority = po->sk.sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +0000860 skb->mark = po->sk.sk_mark;
Johann Baudy69e3c752009-05-18 22:11:22 -0700861 skb_shinfo(skb)->destructor_arg = ph.raw;
862
863 switch (po->tp_version) {
864 case TPACKET_V2:
865 tp_len = ph.h2->tp_len;
866 break;
867 default:
868 tp_len = ph.h1->tp_len;
869 break;
870 }
871 if (unlikely(tp_len > size_max)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000872 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
Johann Baudy69e3c752009-05-18 22:11:22 -0700873 return -EMSGSIZE;
874 }
875
876 skb_reserve(skb, LL_RESERVED_SPACE(dev));
877 skb_reset_network_header(skb);
878
879 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
880 to_write = tp_len;
881
882 if (sock->type == SOCK_DGRAM) {
883 err = dev_hard_header(skb, dev, ntohs(proto), addr,
884 NULL, tp_len);
885 if (unlikely(err < 0))
886 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000887 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -0700888 /* net device doesn't like empty head */
889 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000890 pr_err("packet size is too short (%d < %d)\n",
891 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -0700892 return -EINVAL;
893 }
894
895 skb_push(skb, dev->hard_header_len);
896 err = skb_store_bits(skb, 0, data,
897 dev->hard_header_len);
898 if (unlikely(err))
899 return err;
900
901 data += dev->hard_header_len;
902 to_write -= dev->hard_header_len;
903 }
904
905 err = -EFAULT;
906 page = virt_to_page(data);
907 offset = offset_in_page(data);
908 len_max = PAGE_SIZE - offset;
909 len = ((to_write > len_max) ? len_max : to_write);
910
911 skb->data_len = to_write;
912 skb->len += to_write;
913 skb->truesize += to_write;
914 atomic_add(to_write, &po->sk.sk_wmem_alloc);
915
916 while (likely(to_write)) {
917 nr_frags = skb_shinfo(skb)->nr_frags;
918
919 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000920 pr_err("Packet exceed the number of skb frags(%lu)\n",
921 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -0700922 return -EFAULT;
923 }
924
925 flush_dcache_page(page);
926 get_page(page);
927 skb_fill_page_desc(skb,
928 nr_frags,
929 page++, offset, len);
930 to_write -= len;
931 offset = 0;
932 len_max = PAGE_SIZE;
933 len = ((to_write > len_max) ? len_max : to_write);
934 }
935
936 return tp_len;
937}
938
939static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
940{
941 struct socket *sock;
942 struct sk_buff *skb;
943 struct net_device *dev;
944 __be16 proto;
945 int ifindex, err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000946 void *ph;
947 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Johann Baudy69e3c752009-05-18 22:11:22 -0700948 int tp_len, size_max;
949 unsigned char *addr;
950 int len_sum = 0;
951 int status = 0;
952
953 sock = po->sk.sk_socket;
954
955 mutex_lock(&po->pg_vec_lock);
956
957 err = -EBUSY;
958 if (saddr == NULL) {
959 ifindex = po->ifindex;
960 proto = po->num;
961 addr = NULL;
962 } else {
963 err = -EINVAL;
964 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
965 goto out;
966 if (msg->msg_namelen < (saddr->sll_halen
967 + offsetof(struct sockaddr_ll,
968 sll_addr)))
969 goto out;
970 ifindex = saddr->sll_ifindex;
971 proto = saddr->sll_protocol;
972 addr = saddr->sll_addr;
973 }
974
975 dev = dev_get_by_index(sock_net(&po->sk), ifindex);
976 err = -ENXIO;
977 if (unlikely(dev == NULL))
978 goto out;
979
980 reserve = dev->hard_header_len;
981
982 err = -ENETDOWN;
983 if (unlikely(!(dev->flags & IFF_UP)))
984 goto out_put;
985
986 size_max = po->tx_ring.frame_size
987 - sizeof(struct skb_shared_info)
988 - po->tp_hdrlen
989 - LL_ALLOCATED_SPACE(dev)
990 - sizeof(struct sockaddr_ll);
991
992 if (size_max > dev->mtu + reserve)
993 size_max = dev->mtu + reserve;
994
995 do {
996 ph = packet_current_frame(po, &po->tx_ring,
997 TP_STATUS_SEND_REQUEST);
998
999 if (unlikely(ph == NULL)) {
1000 schedule();
1001 continue;
1002 }
1003
1004 status = TP_STATUS_SEND_REQUEST;
1005 skb = sock_alloc_send_skb(&po->sk,
1006 LL_ALLOCATED_SPACE(dev)
1007 + sizeof(struct sockaddr_ll),
1008 0, &err);
1009
1010 if (unlikely(skb == NULL))
1011 goto out_status;
1012
1013 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
1014 addr);
1015
1016 if (unlikely(tp_len < 0)) {
1017 if (po->tp_loss) {
1018 __packet_set_status(po, ph,
1019 TP_STATUS_AVAILABLE);
1020 packet_increment_head(&po->tx_ring);
1021 kfree_skb(skb);
1022 continue;
1023 } else {
1024 status = TP_STATUS_WRONG_FORMAT;
1025 err = tp_len;
1026 goto out_status;
1027 }
1028 }
1029
1030 skb->destructor = tpacket_destruct_skb;
1031 __packet_set_status(po, ph, TP_STATUS_SENDING);
1032 atomic_inc(&po->tx_ring.pending);
1033
1034 status = TP_STATUS_SEND_REQUEST;
1035 err = dev_queue_xmit(skb);
1036 if (unlikely(err > 0 && (err = net_xmit_errno(err)) != 0))
1037 goto out_xmit;
1038 packet_increment_head(&po->tx_ring);
1039 len_sum += tp_len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001040 } while (likely((ph != NULL) || ((!(msg->msg_flags & MSG_DONTWAIT))
Johann Baudy69e3c752009-05-18 22:11:22 -07001041 && (atomic_read(&po->tx_ring.pending))))
1042 );
1043
1044 err = len_sum;
1045 goto out_put;
1046
1047out_xmit:
1048 skb->destructor = sock_wfree;
1049 atomic_dec(&po->tx_ring.pending);
1050out_status:
1051 __packet_set_status(po, ph, status);
1052 kfree_skb(skb);
1053out_put:
1054 dev_put(dev);
1055out:
1056 mutex_unlock(&po->pg_vec_lock);
1057 return err;
1058}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059#endif
1060
Johann Baudy69e3c752009-05-18 22:11:22 -07001061static int packet_snd(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct msghdr *msg, size_t len)
1063{
1064 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001065 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct sk_buff *skb;
1067 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08001068 __be16 proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 unsigned char *addr;
1070 int ifindex, err, reserve = 0;
1071
1072 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001073 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (saddr == NULL) {
1077 struct packet_sock *po = pkt_sk(sk);
1078
1079 ifindex = po->ifindex;
1080 proto = po->num;
1081 addr = NULL;
1082 } else {
1083 err = -EINVAL;
1084 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
1085 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001086 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
1087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 ifindex = saddr->sll_ifindex;
1089 proto = saddr->sll_protocol;
1090 addr = saddr->sll_addr;
1091 }
1092
1093
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001094 dev = dev_get_by_index(sock_net(sk), ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 err = -ENXIO;
1096 if (dev == NULL)
1097 goto out_unlock;
1098 if (sock->type == SOCK_RAW)
1099 reserve = dev->hard_header_len;
1100
David S. Millerd5e76b02007-01-25 19:30:36 -08001101 err = -ENETDOWN;
1102 if (!(dev->flags & IFF_UP))
1103 goto out_unlock;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 err = -EMSGSIZE;
1106 if (len > dev->mtu+reserve)
1107 goto out_unlock;
1108
Johannes Bergf5184d22008-05-12 20:48:31 -07001109 skb = sock_alloc_send_skb(sk, len + LL_ALLOCATED_SPACE(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001111 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto out_unlock;
1113
1114 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001115 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001117 err = -EINVAL;
1118 if (sock->type == SOCK_DGRAM &&
1119 dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len) < 0)
1120 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /* Returns -EFAULT on error */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001123 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (err)
1125 goto out_free;
1126
1127 skb->protocol = proto;
1128 skb->dev = dev;
1129 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001130 skb->mark = sk->sk_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /*
1133 * Now send it
1134 */
1135
1136 err = dev_queue_xmit(skb);
1137 if (err > 0 && (err = net_xmit_errno(err)) != 0)
1138 goto out_unlock;
1139
1140 dev_put(dev);
1141
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001142 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144out_free:
1145 kfree_skb(skb);
1146out_unlock:
1147 if (dev)
1148 dev_put(dev);
1149out:
1150 return err;
1151}
1152
Johann Baudy69e3c752009-05-18 22:11:22 -07001153static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
1154 struct msghdr *msg, size_t len)
1155{
1156#ifdef CONFIG_PACKET_MMAP
1157 struct sock *sk = sock->sk;
1158 struct packet_sock *po = pkt_sk(sk);
1159 if (po->tx_ring.pg_vec)
1160 return tpacket_snd(po, msg);
1161 else
1162#endif
1163 return packet_snd(sock, msg, len);
1164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166/*
1167 * Close a PACKET socket. This is fairly simple. We immediately go
1168 * to 'closed' state and remove our protocol entry in the device list.
1169 */
1170
1171static int packet_release(struct socket *sock)
1172{
1173 struct sock *sk = sock->sk;
1174 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001175 struct net *net;
Johann Baudy69e3c752009-05-18 22:11:22 -07001176#ifdef CONFIG_PACKET_MMAP
1177 struct tpacket_req req;
1178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 if (!sk)
1181 return 0;
1182
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001183 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 po = pkt_sk(sk);
1185
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001186 write_lock_bh(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 sk_del_node_init(sk);
Eric Dumazet920de802008-11-24 00:09:29 -08001188 sock_prot_inuse_add(net, sk->sk_prot, -1);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001189 write_unlock_bh(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 /*
1192 * Unhook packet receive handler.
1193 */
1194
1195 if (po->running) {
1196 /*
1197 * Remove the protocol hook
1198 */
1199 dev_remove_pack(&po->prot_hook);
1200 po->running = 0;
1201 po->num = 0;
1202 __sock_put(sk);
1203 }
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207#ifdef CONFIG_PACKET_MMAP
Johann Baudy69e3c752009-05-18 22:11:22 -07001208 memset(&req, 0, sizeof(req));
1209
1210 if (po->rx_ring.pg_vec)
1211 packet_set_ring(sk, &req, 1, 0);
1212
1213 if (po->tx_ring.pg_vec)
1214 packet_set_ring(sk, &req, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215#endif
1216
1217 /*
1218 * Now the socket is dead. No more input will appear.
1219 */
1220
1221 sock_orphan(sk);
1222 sock->sk = NULL;
1223
1224 /* Purge queues */
1225
1226 skb_queue_purge(&sk->sk_receive_queue);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001227 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 sock_put(sk);
1230 return 0;
1231}
1232
1233/*
1234 * Attach a packet hook.
1235 */
1236
Al Viro0e11c912006-11-08 00:26:29 -08001237static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 struct packet_sock *po = pkt_sk(sk);
1240 /*
1241 * Detach an existing hook if present.
1242 */
1243
1244 lock_sock(sk);
1245
1246 spin_lock(&po->bind_lock);
1247 if (po->running) {
1248 __sock_put(sk);
1249 po->running = 0;
1250 po->num = 0;
1251 spin_unlock(&po->bind_lock);
1252 dev_remove_pack(&po->prot_hook);
1253 spin_lock(&po->bind_lock);
1254 }
1255
1256 po->num = protocol;
1257 po->prot_hook.type = protocol;
1258 po->prot_hook.dev = dev;
1259
1260 po->ifindex = dev ? dev->ifindex : 0;
1261
1262 if (protocol == 0)
1263 goto out_unlock;
1264
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001265 if (!dev || (dev->flags & IFF_UP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 dev_add_pack(&po->prot_hook);
1267 sock_hold(sk);
1268 po->running = 1;
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001269 } else {
1270 sk->sk_err = ENETDOWN;
1271 if (!sock_flag(sk, SOCK_DEAD))
1272 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
1275out_unlock:
1276 spin_unlock(&po->bind_lock);
1277 release_sock(sk);
1278 return 0;
1279}
1280
1281/*
1282 * Bind a packet socket to a device
1283 */
1284
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001285static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
1286 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001288 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 char name[15];
1290 struct net_device *dev;
1291 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 /*
1294 * Check legality
1295 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001296
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001297 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001299 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001301 dev = dev_get_by_name(sock_net(sk), name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (dev) {
1303 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
1304 dev_put(dev);
1305 }
1306 return err;
1307}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1310{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001311 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
1312 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 struct net_device *dev = NULL;
1314 int err;
1315
1316
1317 /*
1318 * Check legality
1319 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (addr_len < sizeof(struct sockaddr_ll))
1322 return -EINVAL;
1323 if (sll->sll_family != AF_PACKET)
1324 return -EINVAL;
1325
1326 if (sll->sll_ifindex) {
1327 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001328 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (dev == NULL)
1330 goto out;
1331 }
1332 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
1333 if (dev)
1334 dev_put(dev);
1335
1336out:
1337 return err;
1338}
1339
1340static struct proto packet_proto = {
1341 .name = "PACKET",
1342 .owner = THIS_MODULE,
1343 .obj_size = sizeof(struct packet_sock),
1344};
1345
1346/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001347 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 */
1349
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001350static int packet_create(struct net *net, struct socket *sock, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 struct sock *sk;
1353 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08001354 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 int err;
1356
1357 if (!capable(CAP_NET_RAW))
1358 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07001359 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
1360 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -ESOCKTNOSUPPORT;
1362
1363 sock->state = SS_UNCONNECTED;
1364
1365 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001366 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (sk == NULL)
1368 goto out;
1369
1370 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (sock->type == SOCK_PACKET)
1372 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 sock_init_data(sock, sk);
1375
1376 po = pkt_sk(sk);
1377 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08001378 po->num = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001381 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /*
1384 * Attach a protocol block
1385 */
1386
1387 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08001388 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (sock->type == SOCK_PACKET)
1392 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 po->prot_hook.af_packet_priv = sk;
1395
Al Viro0e11c912006-11-08 00:26:29 -08001396 if (proto) {
1397 po->prot_hook.type = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 dev_add_pack(&po->prot_hook);
1399 sock_hold(sk);
1400 po->running = 1;
1401 }
1402
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001403 write_lock_bh(&net->packet.sklist_lock);
1404 sk_add_node(sk, &net->packet.sklist);
Eric Dumazet36804532008-11-19 14:25:35 -08001405 sock_prot_inuse_add(net, &packet_proto, 1);
Eric Dumazet920de802008-11-24 00:09:29 -08001406 write_unlock_bh(&net->packet.sklist_lock);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001407 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408out:
1409 return err;
1410}
1411
1412/*
1413 * Pull a packet from our receive queue and hand it to the user.
1414 * If necessary we block.
1415 */
1416
1417static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
1418 struct msghdr *msg, size_t len, int flags)
1419{
1420 struct sock *sk = sock->sk;
1421 struct sk_buff *skb;
1422 int copied, err;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001423 struct sockaddr_ll *sll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 err = -EINVAL;
1426 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT))
1427 goto out;
1428
1429#if 0
1430 /* What error should we return now? EUNATTACH? */
1431 if (pkt_sk(sk)->ifindex < 0)
1432 return -ENODEV;
1433#endif
1434
1435 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * Call the generic datagram receiver. This handles all sorts
1437 * of horrible races and re-entrancy so we can forget about it
1438 * in the protocol layers.
1439 *
1440 * Now it will return ENETDOWN, if device have just gone down,
1441 * but then it will block.
1442 */
1443
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001444 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001447 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * handles the blocking we don't see and worry about blocking
1449 * retries.
1450 */
1451
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001452 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 goto out;
1454
1455 /*
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001456 * If the address length field is there to be filled in, we fill
1457 * it in now.
1458 */
1459
Herbert Xuffbc6112007-02-04 23:33:10 -08001460 sll = &PACKET_SKB_CB(skb)->sa.ll;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001461 if (sock->type == SOCK_PACKET)
1462 msg->msg_namelen = sizeof(struct sockaddr_pkt);
1463 else
1464 msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
1465
1466 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 * You lose any data beyond the buffer you gave. If it worries a
1468 * user program they can ask the device for its MTU anyway.
1469 */
1470
1471 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001472 if (copied > len) {
1473 copied = len;
1474 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 }
1476
1477 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1478 if (err)
1479 goto out_free;
1480
1481 sock_recv_timestamp(msg, sk, skb);
1482
1483 if (msg->msg_name)
Herbert Xuffbc6112007-02-04 23:33:10 -08001484 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
1485 msg->msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Herbert Xu8dc41942007-02-04 23:31:32 -08001487 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08001488 struct tpacket_auxdata aux;
1489
1490 aux.tp_status = TP_STATUS_USER;
1491 if (skb->ip_summed == CHECKSUM_PARTIAL)
1492 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
1493 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
1494 aux.tp_snaplen = skb->len;
1495 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001496 aux.tp_net = skb_network_offset(skb);
Patrick McHardy393e52e2008-07-14 22:50:39 -07001497 aux.tp_vlan_tci = skb->vlan_tci;
Herbert Xuffbc6112007-02-04 23:33:10 -08001498
1499 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08001500 }
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /*
1503 * Free or return the buffer as appropriate. Again this
1504 * hides all the races and re-entrancy issues from us.
1505 */
1506 err = (flags&MSG_TRUNC) ? skb->len : copied;
1507
1508out_free:
1509 skb_free_datagram(sk, skb);
1510out:
1511 return err;
1512}
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
1515 int *uaddr_len, int peer)
1516{
1517 struct net_device *dev;
1518 struct sock *sk = sock->sk;
1519
1520 if (peer)
1521 return -EOPNOTSUPP;
1522
1523 uaddr->sa_family = AF_PACKET;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001524 dev = dev_get_by_index(sock_net(sk), pkt_sk(sk)->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (dev) {
1526 strlcpy(uaddr->sa_data, dev->name, 15);
1527 dev_put(dev);
1528 } else
1529 memset(uaddr->sa_data, 0, 14);
1530 *uaddr_len = sizeof(*uaddr);
1531
1532 return 0;
1533}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
1536 int *uaddr_len, int peer)
1537{
1538 struct net_device *dev;
1539 struct sock *sk = sock->sk;
1540 struct packet_sock *po = pkt_sk(sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001541 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 if (peer)
1544 return -EOPNOTSUPP;
1545
1546 sll->sll_family = AF_PACKET;
1547 sll->sll_ifindex = po->ifindex;
1548 sll->sll_protocol = po->num;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001549 dev = dev_get_by_index(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (dev) {
1551 sll->sll_hatype = dev->type;
1552 sll->sll_halen = dev->addr_len;
1553 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
1554 dev_put(dev);
1555 } else {
1556 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
1557 sll->sll_halen = 0;
1558 }
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001559 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 return 0;
1562}
1563
Wang Chen2aeb0b82008-07-14 20:49:46 -07001564static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
1565 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 switch (i->type) {
1568 case PACKET_MR_MULTICAST:
1569 if (what > 0)
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001570 return dev_mc_add(dev, i->addr, i->alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 else
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001572 return dev_mc_delete(dev, i->addr, i->alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 break;
1574 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07001575 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 break;
1577 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07001578 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001580 case PACKET_MR_UNICAST:
1581 if (what > 0)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001582 return dev_unicast_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001583 else
Jiri Pirkoccffad252009-05-22 23:22:17 +00001584 return dev_unicast_delete(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001585 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001586 default:
1587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07001589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
1593{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001594 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (i->ifindex == dev->ifindex)
1596 packet_dev_mc(dev, i, what);
1597 }
1598}
1599
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001600static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 struct packet_sock *po = pkt_sk(sk);
1603 struct packet_mclist *ml, *i;
1604 struct net_device *dev;
1605 int err;
1606
1607 rtnl_lock();
1608
1609 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001610 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (!dev)
1612 goto done;
1613
1614 err = -EINVAL;
1615 if (mreq->mr_alen > dev->addr_len)
1616 goto done;
1617
1618 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001619 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (i == NULL)
1621 goto done;
1622
1623 err = 0;
1624 for (ml = po->mclist; ml; ml = ml->next) {
1625 if (ml->ifindex == mreq->mr_ifindex &&
1626 ml->type == mreq->mr_type &&
1627 ml->alen == mreq->mr_alen &&
1628 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
1629 ml->count++;
1630 /* Free the new element ... */
1631 kfree(i);
1632 goto done;
1633 }
1634 }
1635
1636 i->type = mreq->mr_type;
1637 i->ifindex = mreq->mr_ifindex;
1638 i->alen = mreq->mr_alen;
1639 memcpy(i->addr, mreq->mr_address, i->alen);
1640 i->count = 1;
1641 i->next = po->mclist;
1642 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07001643 err = packet_dev_mc(dev, i, 1);
1644 if (err) {
1645 po->mclist = i->next;
1646 kfree(i);
1647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649done:
1650 rtnl_unlock();
1651 return err;
1652}
1653
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001654static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
1656 struct packet_mclist *ml, **mlp;
1657
1658 rtnl_lock();
1659
1660 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
1661 if (ml->ifindex == mreq->mr_ifindex &&
1662 ml->type == mreq->mr_type &&
1663 ml->alen == mreq->mr_alen &&
1664 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
1665 if (--ml->count == 0) {
1666 struct net_device *dev;
1667 *mlp = ml->next;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001668 dev = dev_get_by_index(sock_net(sk), ml->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (dev) {
1670 packet_dev_mc(dev, ml, -1);
1671 dev_put(dev);
1672 }
1673 kfree(ml);
1674 }
1675 rtnl_unlock();
1676 return 0;
1677 }
1678 }
1679 rtnl_unlock();
1680 return -EADDRNOTAVAIL;
1681}
1682
1683static void packet_flush_mclist(struct sock *sk)
1684{
1685 struct packet_sock *po = pkt_sk(sk);
1686 struct packet_mclist *ml;
1687
1688 if (!po->mclist)
1689 return;
1690
1691 rtnl_lock();
1692 while ((ml = po->mclist) != NULL) {
1693 struct net_device *dev;
1694
1695 po->mclist = ml->next;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001696 dev = dev_get_by_index(sock_net(sk), ml->ifindex);
1697 if (dev != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 packet_dev_mc(dev, ml, -1);
1699 dev_put(dev);
1700 }
1701 kfree(ml);
1702 }
1703 rtnl_unlock();
1704}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706static int
David S. Millerb7058842009-09-30 16:12:20 -07001707packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
1709 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08001710 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 int ret;
1712
1713 if (level != SOL_PACKET)
1714 return -ENOPROTOOPT;
1715
Johann Baudy69e3c752009-05-18 22:11:22 -07001716 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001717 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 case PACKET_DROP_MEMBERSHIP:
1719 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001720 struct packet_mreq_max mreq;
1721 int len = optlen;
1722 memset(&mreq, 0, sizeof(mreq));
1723 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001725 if (len > sizeof(mreq))
1726 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001727 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001729 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
1730 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (optname == PACKET_ADD_MEMBERSHIP)
1732 ret = packet_mc_add(sk, &mreq);
1733 else
1734 ret = packet_mc_drop(sk, &mreq);
1735 return ret;
1736 }
David S. Millera2efcfa2007-05-29 13:12:50 -07001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738#ifdef CONFIG_PACKET_MMAP
1739 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07001740 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 {
1742 struct tpacket_req req;
1743
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001744 if (optlen < sizeof(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001746 if (copy_from_user(&req, optval, sizeof(req)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return -EFAULT;
Johann Baudy69e3c752009-05-18 22:11:22 -07001748 return packet_set_ring(sk, &req, 0, optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750 case PACKET_COPY_THRESH:
1751 {
1752 int val;
1753
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001754 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001756 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return -EFAULT;
1758
1759 pkt_sk(sk)->copy_thresh = val;
1760 return 0;
1761 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001762 case PACKET_VERSION:
1763 {
1764 int val;
1765
1766 if (optlen != sizeof(val))
1767 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07001768 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001769 return -EBUSY;
1770 if (copy_from_user(&val, optval, sizeof(val)))
1771 return -EFAULT;
1772 switch (val) {
1773 case TPACKET_V1:
1774 case TPACKET_V2:
1775 po->tp_version = val;
1776 return 0;
1777 default:
1778 return -EINVAL;
1779 }
1780 }
Patrick McHardy8913336a2008-07-18 18:05:19 -07001781 case PACKET_RESERVE:
1782 {
1783 unsigned int val;
1784
1785 if (optlen != sizeof(val))
1786 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07001787 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy8913336a2008-07-18 18:05:19 -07001788 return -EBUSY;
1789 if (copy_from_user(&val, optval, sizeof(val)))
1790 return -EFAULT;
1791 po->tp_reserve = val;
1792 return 0;
1793 }
Johann Baudy69e3c752009-05-18 22:11:22 -07001794 case PACKET_LOSS:
1795 {
1796 unsigned int val;
1797
1798 if (optlen != sizeof(val))
1799 return -EINVAL;
1800 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
1801 return -EBUSY;
1802 if (copy_from_user(&val, optval, sizeof(val)))
1803 return -EFAULT;
1804 po->tp_loss = !!val;
1805 return 0;
1806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807#endif
Herbert Xu8dc41942007-02-04 23:31:32 -08001808 case PACKET_AUXDATA:
1809 {
1810 int val;
1811
1812 if (optlen < sizeof(val))
1813 return -EINVAL;
1814 if (copy_from_user(&val, optval, sizeof(val)))
1815 return -EFAULT;
1816
1817 po->auxdata = !!val;
1818 return 0;
1819 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001820 case PACKET_ORIGDEV:
1821 {
1822 int val;
1823
1824 if (optlen < sizeof(val))
1825 return -EINVAL;
1826 if (copy_from_user(&val, optval, sizeof(val)))
1827 return -EFAULT;
1828
1829 po->origdev = !!val;
1830 return 0;
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 default:
1833 return -ENOPROTOOPT;
1834 }
1835}
1836
1837static int packet_getsockopt(struct socket *sock, int level, int optname,
1838 char __user *optval, int __user *optlen)
1839{
1840 int len;
Herbert Xu8dc41942007-02-04 23:31:32 -08001841 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 struct sock *sk = sock->sk;
1843 struct packet_sock *po = pkt_sk(sk);
Herbert Xu8dc41942007-02-04 23:31:32 -08001844 void *data;
1845 struct tpacket_stats st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 if (level != SOL_PACKET)
1848 return -ENOPROTOOPT;
1849
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001850 if (get_user(len, optlen))
1851 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 if (len < 0)
1854 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001855
Johann Baudy69e3c752009-05-18 22:11:22 -07001856 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (len > sizeof(struct tpacket_stats))
1859 len = sizeof(struct tpacket_stats);
1860 spin_lock_bh(&sk->sk_receive_queue.lock);
1861 st = po->stats;
1862 memset(&po->stats, 0, sizeof(st));
1863 spin_unlock_bh(&sk->sk_receive_queue.lock);
1864 st.tp_packets += st.tp_drops;
1865
Herbert Xu8dc41942007-02-04 23:31:32 -08001866 data = &st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08001868 case PACKET_AUXDATA:
1869 if (len > sizeof(int))
1870 len = sizeof(int);
1871 val = po->auxdata;
1872
1873 data = &val;
1874 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001875 case PACKET_ORIGDEV:
1876 if (len > sizeof(int))
1877 len = sizeof(int);
1878 val = po->origdev;
1879
1880 data = &val;
1881 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001882#ifdef CONFIG_PACKET_MMAP
1883 case PACKET_VERSION:
1884 if (len > sizeof(int))
1885 len = sizeof(int);
1886 val = po->tp_version;
1887 data = &val;
1888 break;
1889 case PACKET_HDRLEN:
1890 if (len > sizeof(int))
1891 len = sizeof(int);
1892 if (copy_from_user(&val, optval, len))
1893 return -EFAULT;
1894 switch (val) {
1895 case TPACKET_V1:
1896 val = sizeof(struct tpacket_hdr);
1897 break;
1898 case TPACKET_V2:
1899 val = sizeof(struct tpacket2_hdr);
1900 break;
1901 default:
1902 return -EINVAL;
1903 }
1904 data = &val;
1905 break;
Patrick McHardy8913336a2008-07-18 18:05:19 -07001906 case PACKET_RESERVE:
1907 if (len > sizeof(unsigned int))
1908 len = sizeof(unsigned int);
1909 val = po->tp_reserve;
1910 data = &val;
1911 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07001912 case PACKET_LOSS:
1913 if (len > sizeof(unsigned int))
1914 len = sizeof(unsigned int);
1915 val = po->tp_loss;
1916 data = &val;
1917 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 default:
1920 return -ENOPROTOOPT;
1921 }
1922
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001923 if (put_user(len, optlen))
1924 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08001925 if (copy_to_user(optval, data, len))
1926 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930
1931static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
1932{
1933 struct sock *sk;
1934 struct hlist_node *node;
Jason Lunzad930652007-02-20 23:19:54 -08001935 struct net_device *dev = data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001936 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001938 read_lock(&net->packet.sklist_lock);
1939 sk_for_each(sk, node, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 struct packet_sock *po = pkt_sk(sk);
1941
1942 switch (msg) {
1943 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (po->mclist)
1945 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07001946 /* fallthrough */
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 case NETDEV_DOWN:
1949 if (dev->ifindex == po->ifindex) {
1950 spin_lock(&po->bind_lock);
1951 if (po->running) {
1952 __dev_remove_pack(&po->prot_hook);
1953 __sock_put(sk);
1954 po->running = 0;
1955 sk->sk_err = ENETDOWN;
1956 if (!sock_flag(sk, SOCK_DEAD))
1957 sk->sk_error_report(sk);
1958 }
1959 if (msg == NETDEV_UNREGISTER) {
1960 po->ifindex = -1;
1961 po->prot_hook.dev = NULL;
1962 }
1963 spin_unlock(&po->bind_lock);
1964 }
1965 break;
1966 case NETDEV_UP:
1967 spin_lock(&po->bind_lock);
1968 if (dev->ifindex == po->ifindex && po->num &&
1969 !po->running) {
1970 dev_add_pack(&po->prot_hook);
1971 sock_hold(sk);
1972 po->running = 1;
1973 }
1974 spin_unlock(&po->bind_lock);
1975 break;
1976 }
1977 }
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001978 read_unlock(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return NOTIFY_DONE;
1980}
1981
1982
1983static int packet_ioctl(struct socket *sock, unsigned int cmd,
1984 unsigned long arg)
1985{
1986 struct sock *sk = sock->sk;
1987
Johann Baudy69e3c752009-05-18 22:11:22 -07001988 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001989 case SIOCOUTQ:
1990 {
1991 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001992
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001993 return put_user(amount, (int __user *)arg);
1994 }
1995 case SIOCINQ:
1996 {
1997 struct sk_buff *skb;
1998 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002000 spin_lock_bh(&sk->sk_receive_queue.lock);
2001 skb = skb_peek(&sk->sk_receive_queue);
2002 if (skb)
2003 amount = skb->len;
2004 spin_unlock_bh(&sk->sk_receive_queue.lock);
2005 return put_user(amount, (int __user *)arg);
2006 }
2007 case SIOCGSTAMP:
2008 return sock_get_timestamp(sk, (struct timeval __user *)arg);
2009 case SIOCGSTAMPNS:
2010 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002013 case SIOCADDRT:
2014 case SIOCDELRT:
2015 case SIOCDARP:
2016 case SIOCGARP:
2017 case SIOCSARP:
2018 case SIOCGIFADDR:
2019 case SIOCSIFADDR:
2020 case SIOCGIFBRDADDR:
2021 case SIOCSIFBRDADDR:
2022 case SIOCGIFNETMASK:
2023 case SIOCSIFNETMASK:
2024 case SIOCGIFDSTADDR:
2025 case SIOCSIFDSTADDR:
2026 case SIOCSIFFLAGS:
2027 if (!net_eq(sock_net(sk), &init_net))
2028 return -ENOIOCTLCMD;
2029 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030#endif
2031
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002032 default:
2033 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035 return 0;
2036}
2037
2038#ifndef CONFIG_PACKET_MMAP
2039#define packet_mmap sock_no_mmap
2040#define packet_poll datagram_poll
2041#else
2042
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002043static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 poll_table *wait)
2045{
2046 struct sock *sk = sock->sk;
2047 struct packet_sock *po = pkt_sk(sk);
2048 unsigned int mask = datagram_poll(file, sock, wait);
2049
2050 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002051 if (po->rx_ring.pg_vec) {
2052 if (!packet_previous_frame(po, &po->rx_ring, TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 mask |= POLLIN | POLLRDNORM;
2054 }
2055 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002056 spin_lock_bh(&sk->sk_write_queue.lock);
2057 if (po->tx_ring.pg_vec) {
2058 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
2059 mask |= POLLOUT | POLLWRNORM;
2060 }
2061 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return mask;
2063}
2064
2065
2066/* Dirty? Well, I still did not learn better way to account
2067 * for user mmaps.
2068 */
2069
2070static void packet_mm_open(struct vm_area_struct *vma)
2071{
2072 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002073 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (sk)
2077 atomic_inc(&pkt_sk(sk)->mapped);
2078}
2079
2080static void packet_mm_close(struct vm_area_struct *vma)
2081{
2082 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002083 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (sk)
2087 atomic_dec(&pkt_sk(sk)->mapped);
2088}
2089
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002090static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002091 .open = packet_mm_open,
2092 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093};
2094
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002095static void free_pg_vec(char **pg_vec, unsigned int order, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 int i;
2098
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002099 for (i = 0; i < len; i++) {
2100 if (likely(pg_vec[i]))
2101 free_pages((unsigned long) pg_vec[i], order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
2103 kfree(pg_vec);
2104}
2105
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002106static inline char *alloc_one_pg_vec_page(unsigned long order)
2107{
Eric Dumazet719bfea2009-04-15 03:39:52 -07002108 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO | __GFP_NOWARN;
2109
2110 return (char *) __get_free_pages(gfp_flags, order);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002111}
2112
2113static char **alloc_pg_vec(struct tpacket_req *req, int order)
2114{
2115 unsigned int block_nr = req->tp_block_nr;
2116 char **pg_vec;
2117 int i;
2118
2119 pg_vec = kzalloc(block_nr * sizeof(char *), GFP_KERNEL);
2120 if (unlikely(!pg_vec))
2121 goto out;
2122
2123 for (i = 0; i < block_nr; i++) {
2124 pg_vec[i] = alloc_one_pg_vec_page(order);
2125 if (unlikely(!pg_vec[i]))
2126 goto out_free_pgvec;
2127 }
2128
2129out:
2130 return pg_vec;
2131
2132out_free_pgvec:
2133 free_pg_vec(pg_vec, order, block_nr);
2134 pg_vec = NULL;
2135 goto out;
2136}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Johann Baudy69e3c752009-05-18 22:11:22 -07002138static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
2139 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
2141 char **pg_vec = NULL;
2142 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08002143 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07002144 struct packet_ring_buffer *rb;
2145 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08002146 __be16 num;
Johann Baudy69e3c752009-05-18 22:11:22 -07002147 int err;
2148
2149 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
2150 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
2151
2152 err = -EBUSY;
2153 if (!closing) {
2154 if (atomic_read(&po->mapped))
2155 goto out;
2156 if (atomic_read(&rb->pending))
2157 goto out;
2158 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07002162 err = -EBUSY;
2163 if (unlikely(rb->pg_vec))
2164 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002166 switch (po->tp_version) {
2167 case TPACKET_V1:
2168 po->tp_hdrlen = TPACKET_HDRLEN;
2169 break;
2170 case TPACKET_V2:
2171 po->tp_hdrlen = TPACKET2_HDRLEN;
2172 break;
2173 }
2174
Johann Baudy69e3c752009-05-18 22:11:22 -07002175 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002176 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07002177 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002178 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002179 goto out;
Patrick McHardy8913336a2008-07-18 18:05:19 -07002180 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07002181 po->tp_reserve))
2182 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002183 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002184 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Johann Baudy69e3c752009-05-18 22:11:22 -07002186 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
2187 if (unlikely(rb->frames_per_block <= 0))
2188 goto out;
2189 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
2190 req->tp_frame_nr))
2191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002194 order = get_order(req->tp_block_size);
2195 pg_vec = alloc_pg_vec(req, order);
2196 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002198 }
2199 /* Done */
2200 else {
2201 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002202 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07002203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205
2206 lock_sock(sk);
2207
2208 /* Detach socket from network */
2209 spin_lock(&po->bind_lock);
2210 was_running = po->running;
2211 num = po->num;
2212 if (was_running) {
2213 __dev_remove_pack(&po->prot_hook);
2214 po->num = 0;
2215 po->running = 0;
2216 __sock_put(sk);
2217 }
2218 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 synchronize_net();
2221
2222 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08002223 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (closing || atomic_read(&po->mapped) == 0) {
2225 err = 0;
2226#define XC(a, b) ({ __typeof__ ((a)) __t; __t = (a); (a) = (b); __t; })
Johann Baudy69e3c752009-05-18 22:11:22 -07002227 spin_lock_bh(&rb_queue->lock);
2228 pg_vec = XC(rb->pg_vec, pg_vec);
2229 rb->frame_max = (req->tp_frame_nr - 1);
2230 rb->head = 0;
2231 rb->frame_size = req->tp_frame_size;
2232 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Johann Baudy69e3c752009-05-18 22:11:22 -07002234 order = XC(rb->pg_vec_order, order);
2235 req->tp_block_nr = XC(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Johann Baudy69e3c752009-05-18 22:11:22 -07002237 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
2238 po->prot_hook.func = (po->rx_ring.pg_vec) ?
2239 tpacket_rcv : packet_rcv;
2240 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241#undef XC
2242 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002243 pr_err("packet_mmap: vma is busy: %d\n",
2244 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 }
Herbert Xu905db442009-01-30 14:12:06 -08002246 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 spin_lock(&po->bind_lock);
2249 if (was_running && !po->running) {
2250 sock_hold(sk);
2251 po->running = 1;
2252 po->num = num;
2253 dev_add_pack(&po->prot_hook);
2254 }
2255 spin_unlock(&po->bind_lock);
2256
2257 release_sock(sk);
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (pg_vec)
2260 free_pg_vec(pg_vec, order, req->tp_block_nr);
2261out:
2262 return err;
2263}
2264
Johann Baudy69e3c752009-05-18 22:11:22 -07002265static int packet_mmap(struct file *file, struct socket *sock,
2266 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 struct sock *sk = sock->sk;
2269 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07002270 unsigned long size, expected_size;
2271 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 unsigned long start;
2273 int err = -EINVAL;
2274 int i;
2275
2276 if (vma->vm_pgoff)
2277 return -EINVAL;
2278
Herbert Xu905db442009-01-30 14:12:06 -08002279 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002280
2281 expected_size = 0;
2282 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2283 if (rb->pg_vec) {
2284 expected_size += rb->pg_vec_len
2285 * rb->pg_vec_pages
2286 * PAGE_SIZE;
2287 }
2288 }
2289
2290 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002292
2293 size = vma->vm_end - vma->vm_start;
2294 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 goto out;
2296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07002298 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2299 if (rb->pg_vec == NULL)
2300 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002301
Johann Baudy69e3c752009-05-18 22:11:22 -07002302 for (i = 0; i < rb->pg_vec_len; i++) {
2303 struct page *page = virt_to_page(rb->pg_vec[i]);
2304 int pg_num;
2305
2306 for (pg_num = 0; pg_num < rb->pg_vec_pages;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002307 pg_num++, page++) {
Johann Baudy69e3c752009-05-18 22:11:22 -07002308 err = vm_insert_page(vma, start, page);
2309 if (unlikely(err))
2310 goto out;
2311 start += PAGE_SIZE;
2312 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002315
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002316 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 vma->vm_ops = &packet_mmap_ops;
2318 err = 0;
2319
2320out:
Herbert Xu905db442009-01-30 14:12:06 -08002321 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return err;
2323}
2324#endif
2325
2326
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002327static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 .family = PF_PACKET,
2329 .owner = THIS_MODULE,
2330 .release = packet_release,
2331 .bind = packet_bind_spkt,
2332 .connect = sock_no_connect,
2333 .socketpair = sock_no_socketpair,
2334 .accept = sock_no_accept,
2335 .getname = packet_getname_spkt,
2336 .poll = datagram_poll,
2337 .ioctl = packet_ioctl,
2338 .listen = sock_no_listen,
2339 .shutdown = sock_no_shutdown,
2340 .setsockopt = sock_no_setsockopt,
2341 .getsockopt = sock_no_getsockopt,
2342 .sendmsg = packet_sendmsg_spkt,
2343 .recvmsg = packet_recvmsg,
2344 .mmap = sock_no_mmap,
2345 .sendpage = sock_no_sendpage,
2346};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002348static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 .family = PF_PACKET,
2350 .owner = THIS_MODULE,
2351 .release = packet_release,
2352 .bind = packet_bind,
2353 .connect = sock_no_connect,
2354 .socketpair = sock_no_socketpair,
2355 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002356 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 .poll = packet_poll,
2358 .ioctl = packet_ioctl,
2359 .listen = sock_no_listen,
2360 .shutdown = sock_no_shutdown,
2361 .setsockopt = packet_setsockopt,
2362 .getsockopt = packet_getsockopt,
2363 .sendmsg = packet_sendmsg,
2364 .recvmsg = packet_recvmsg,
2365 .mmap = packet_mmap,
2366 .sendpage = sock_no_sendpage,
2367};
2368
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002369static const struct net_proto_family packet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 .family = PF_PACKET,
2371 .create = packet_create,
2372 .owner = THIS_MODULE,
2373};
2374
2375static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002376 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377};
2378
2379#ifdef CONFIG_PROC_FS
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002380static inline struct sock *packet_seq_idx(struct net *net, loff_t off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 struct sock *s;
2383 struct hlist_node *node;
2384
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002385 sk_for_each(s, node, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (!off--)
2387 return s;
2388 }
2389 return NULL;
2390}
2391
2392static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet40ccbf52008-01-07 22:39:57 -08002393 __acquires(seq_file_net(seq)->packet.sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Denis V. Luneve372c412007-11-19 22:31:54 -08002395 struct net *net = seq_file_net(seq);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002396 read_lock(&net->packet.sklist_lock);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002397 return *pos ? packet_seq_idx(net, *pos - 1) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398}
2399
2400static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2401{
Herbert Xu1bf40952007-12-16 14:04:02 -08002402 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 ++*pos;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002404 return (v == SEQ_START_TOKEN)
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002405 ? sk_head(&net->packet.sklist)
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002406 : sk_next((struct sock *)v) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
2409static void packet_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet40ccbf52008-01-07 22:39:57 -08002410 __releases(seq_file_net(seq)->packet.sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Herbert Xu1bf40952007-12-16 14:04:02 -08002412 struct net *net = seq_file_net(seq);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002413 read_unlock(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002416static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
2418 if (v == SEQ_START_TOKEN)
2419 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
2420 else {
2421 struct sock *s = v;
2422 const struct packet_sock *po = pkt_sk(s);
2423
2424 seq_printf(seq,
2425 "%p %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
2426 s,
2427 atomic_read(&s->sk_refcnt),
2428 s->sk_type,
2429 ntohs(po->num),
2430 po->ifindex,
2431 po->running,
2432 atomic_read(&s->sk_rmem_alloc),
2433 sock_i_uid(s),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002434 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
2436
2437 return 0;
2438}
2439
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002440static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 .start = packet_seq_start,
2442 .next = packet_seq_next,
2443 .stop = packet_seq_stop,
2444 .show = packet_seq_show,
2445};
2446
2447static int packet_seq_open(struct inode *inode, struct file *file)
2448{
Denis V. Luneve372c412007-11-19 22:31:54 -08002449 return seq_open_net(inode, file, &packet_seq_ops,
2450 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
Arjan van de Venda7071d2007-02-12 00:55:36 -08002453static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 .owner = THIS_MODULE,
2455 .open = packet_seq_open,
2456 .read = seq_read,
2457 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002458 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459};
2460
2461#endif
2462
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002463static int packet_net_init(struct net *net)
2464{
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002465 rwlock_init(&net->packet.sklist_lock);
2466 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002467
2468 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))
2469 return -ENOMEM;
2470
2471 return 0;
2472}
2473
2474static void packet_net_exit(struct net *net)
2475{
2476 proc_net_remove(net, "packet");
2477}
2478
2479static struct pernet_operations packet_net_ops = {
2480 .init = packet_net_init,
2481 .exit = packet_net_exit,
2482};
2483
2484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485static void __exit packet_exit(void)
2486{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002488 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 sock_unregister(PF_PACKET);
2490 proto_unregister(&packet_proto);
2491}
2492
2493static int __init packet_init(void)
2494{
2495 int rc = proto_register(&packet_proto, 0);
2496
2497 if (rc != 0)
2498 goto out;
2499
2500 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002501 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503out:
2504 return rc;
2505}
2506
2507module_init(packet_init);
2508module_exit(packet_exit);
2509MODULE_LICENSE("GPL");
2510MODULE_ALIAS_NETPROTO(PF_PACKET);