blob: d398a9bf690314ec92b98f292b55863cbbc61897 [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 Viroa1f8e7f2006-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 McHardy89133362008-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;
493 if (err)
494 goto out_free;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 * Now send it
498 */
499
500 dev_queue_xmit(skb);
501 dev_put(dev);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000502 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504out_free:
505 kfree_skb(skb);
506out_unlock:
507 if (dev)
508 dev_put(dev);
509 return err;
510}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David S. Millerdbcb5852007-01-24 15:21:02 -0800512static inline unsigned int run_filter(struct sk_buff *skb, struct sock *sk,
513 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 struct sk_filter *filter;
516
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700517 rcu_read_lock_bh();
518 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -0800519 if (filter != NULL)
520 res = sk_run_filter(skb, filter->insns, filter->len);
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700521 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
David S. Millerdbcb5852007-01-24 15:21:02 -0800523 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/*
Neil Horman97775002009-10-02 06:56:41 +0000527 * If we've lost frames since the last time we queued one to the
528 * sk_receive_queue, we need to record it here.
529 * This must be called under the protection of the socket lock
530 * to prevent racing with other softirqs and user space
531 */
532static inline void record_packet_gap(struct sk_buff *skb,
533 struct packet_sock *po)
534{
535 /*
536 * We overload the mark field here, since we're about
537 * to enqueue to a receive queue and no body else will
538 * use this field at this point
539 */
540 skb->mark = po->stats.tp_gap;
541 po->stats.tp_gap = 0;
542 return;
543
544}
545
546static inline __u32 check_packet_gap(struct sk_buff *skb)
547{
548 return skb->mark;
549}
550
551/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 This function makes lazy skb cloning in hope that most of packets
553 are discarded by BPF.
554
555 Note tricky part: we DO mangle shared skb! skb->data, skb->len
556 and skb->cb are mangled. It works because (and until) packets
557 falling here are owned by current CPU. Output packets are cloned
558 by dev_queue_xmit_nit(), input packets are processed by net_bh
559 sequencially, so that if we return skb to original state on exit,
560 we will not harm anyone.
561 */
562
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000563static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
564 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct sock *sk;
567 struct sockaddr_ll *sll;
568 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000569 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800571 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 if (skb->pkt_type == PACKET_LOOPBACK)
574 goto drop;
575
576 sk = pt->af_packet_priv;
577 po = pkt_sk(sk);
578
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900579 if (dev_net(dev) != sock_net(sk))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800580 goto drop;
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 skb->dev = dev;
583
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700584 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* The device has an explicit notion of ll header,
586 exported to higher levels.
587
588 Otherwise, the device hides datails of it frame
589 structure, so that corresponding packet head
590 never delivered to user.
591 */
592 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700593 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 else if (skb->pkt_type == PACKET_OUTGOING) {
595 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300596 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 }
599
600 snaplen = skb->len;
601
David S. Millerdbcb5852007-01-24 15:21:02 -0800602 res = run_filter(skb, sk, snaplen);
603 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700604 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -0800605 if (snaplen > res)
606 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
609 (unsigned)sk->sk_rcvbuf)
610 goto drop_n_acct;
611
612 if (skb_shared(skb)) {
613 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
614 if (nskb == NULL)
615 goto drop_n_acct;
616
617 if (skb_head != skb->data) {
618 skb->data = skb_head;
619 skb->len = skb_len;
620 }
621 kfree_skb(skb);
622 skb = nskb;
623 }
624
Herbert Xuffbc6112007-02-04 23:33:10 -0800625 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
626 sizeof(skb->cb));
627
628 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 sll->sll_family = AF_PACKET;
630 sll->sll_hatype = dev->type;
631 sll->sll_protocol = skb->protocol;
632 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -0800633 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700634 sll->sll_ifindex = orig_dev->ifindex;
635 else
636 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700638 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Herbert Xuffbc6112007-02-04 23:33:10 -0800640 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -0800641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (pskb_trim(skb, snaplen))
643 goto drop_n_acct;
644
645 skb_set_owner_r(skb, sk);
646 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +0000647 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Phil Oester84531c22005-07-12 11:57:52 -0700649 /* drop conntrack reference */
650 nf_reset(skb);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 spin_lock(&sk->sk_receive_queue.lock);
653 po->stats.tp_packets++;
Neil Horman97775002009-10-02 06:56:41 +0000654 record_packet_gap(skb, po);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 __skb_queue_tail(&sk->sk_receive_queue, skb);
656 spin_unlock(&sk->sk_receive_queue.lock);
657 sk->sk_data_ready(sk, skb->len);
658 return 0;
659
660drop_n_acct:
661 spin_lock(&sk->sk_receive_queue.lock);
662 po->stats.tp_drops++;
Neil Horman97775002009-10-02 06:56:41 +0000663 po->stats.tp_gap++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 spin_unlock(&sk->sk_receive_queue.lock);
665
666drop_n_restore:
667 if (skb_head != skb->data && skb_shared(skb)) {
668 skb->data = skb_head;
669 skb->len = skb_len;
670 }
671drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +0000672 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return 0;
674}
675
676#ifdef CONFIG_PACKET_MMAP
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000677static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
678 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 struct sock *sk;
681 struct packet_sock *po;
682 struct sockaddr_ll *sll;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700683 union {
684 struct tpacket_hdr *h1;
685 struct tpacket2_hdr *h2;
686 void *raw;
687 } h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000688 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800690 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 unsigned long status = TP_STATUS_LOSING|TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700692 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 struct sk_buff *copy_skb = NULL;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700694 struct timeval tv;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700695 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (skb->pkt_type == PACKET_LOOPBACK)
698 goto drop;
699
700 sk = pt->af_packet_priv;
701 po = pkt_sk(sk);
702
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900703 if (dev_net(dev) != sock_net(sk))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800704 goto drop;
705
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700706 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700708 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 else if (skb->pkt_type == PACKET_OUTGOING) {
710 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300711 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 }
714
Herbert Xu8dc41942007-02-04 23:31:32 -0800715 if (skb->ip_summed == CHECKSUM_PARTIAL)
716 status |= TP_STATUS_CSUMNOTREADY;
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 snaplen = skb->len;
719
David S. Millerdbcb5852007-01-24 15:21:02 -0800720 res = run_filter(skb, sk, snaplen);
721 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700722 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -0800723 if (snaplen > res)
724 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy89133362008-07-18 18:05:19 -0700727 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
728 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } else {
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300730 unsigned maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700731 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy89133362008-07-18 18:05:19 -0700732 (maclen < 16 ? 16 : maclen)) +
733 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 macoff = netoff - maclen;
735 }
736
Johann Baudy69e3c752009-05-18 22:11:22 -0700737 if (macoff + snaplen > po->rx_ring.frame_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (po->copy_thresh &&
739 atomic_read(&sk->sk_rmem_alloc) + skb->truesize <
740 (unsigned)sk->sk_rcvbuf) {
741 if (skb_shared(skb)) {
742 copy_skb = skb_clone(skb, GFP_ATOMIC);
743 } else {
744 copy_skb = skb_get(skb);
745 skb_head = skb->data;
746 }
747 if (copy_skb)
748 skb_set_owner_r(copy_skb, sk);
749 }
Johann Baudy69e3c752009-05-18 22:11:22 -0700750 snaplen = po->rx_ring.frame_size - macoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if ((int)snaplen < 0)
752 snaplen = 0;
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 spin_lock(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -0700756 h.raw = packet_current_frame(po, &po->rx_ring, TP_STATUS_KERNEL);
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700757 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto ring_is_full;
Johann Baudy69e3c752009-05-18 22:11:22 -0700759 packet_increment_head(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 po->stats.tp_packets++;
761 if (copy_skb) {
762 status |= TP_STATUS_COPY;
763 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
764 }
765 if (!po->stats.tp_drops)
766 status &= ~TP_STATUS_LOSING;
767 spin_unlock(&sk->sk_receive_queue.lock);
768
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700769 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700771 switch (po->tp_version) {
772 case TPACKET_V1:
773 h.h1->tp_len = skb->len;
774 h.h1->tp_snaplen = snaplen;
775 h.h1->tp_mac = macoff;
776 h.h1->tp_net = netoff;
777 if (skb->tstamp.tv64)
778 tv = ktime_to_timeval(skb->tstamp);
779 else
780 do_gettimeofday(&tv);
781 h.h1->tp_sec = tv.tv_sec;
782 h.h1->tp_usec = tv.tv_usec;
783 hdrlen = sizeof(*h.h1);
784 break;
785 case TPACKET_V2:
786 h.h2->tp_len = skb->len;
787 h.h2->tp_snaplen = snaplen;
788 h.h2->tp_mac = macoff;
789 h.h2->tp_net = netoff;
790 if (skb->tstamp.tv64)
791 ts = ktime_to_timespec(skb->tstamp);
792 else
793 getnstimeofday(&ts);
794 h.h2->tp_sec = ts.tv_sec;
795 h.h2->tp_nsec = ts.tv_nsec;
Patrick McHardy393e52e2008-07-14 22:50:39 -0700796 h.h2->tp_vlan_tci = skb->vlan_tci;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700797 hdrlen = sizeof(*h.h2);
798 break;
799 default:
800 BUG();
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700803 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700804 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 sll->sll_family = AF_PACKET;
806 sll->sll_hatype = dev->type;
807 sll->sll_protocol = skb->protocol;
808 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -0800809 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700810 sll->sll_ifindex = orig_dev->ifindex;
811 else
812 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700814 __packet_set_status(po, h.raw, status);
Ralf Baechlee16aa202006-12-07 00:11:33 -0800815 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 {
817 struct page *p_start, *p_end;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700818 u8 *h_end = h.raw + macoff + snaplen - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700820 p_start = virt_to_page(h.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 p_end = virt_to_page(h_end);
822 while (p_start <= p_end) {
823 flush_dcache_page(p_start);
824 p_start++;
825 }
826 }
827
828 sk->sk_data_ready(sk, 0);
829
830drop_n_restore:
831 if (skb_head != skb->data && skb_shared(skb)) {
832 skb->data = skb_head;
833 skb->len = skb_len;
834 }
835drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900836 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838
839ring_is_full:
840 po->stats.tp_drops++;
Neil Horman97775002009-10-02 06:56:41 +0000841 po->stats.tp_gap++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 spin_unlock(&sk->sk_receive_queue.lock);
843
844 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +0000845 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto drop_n_restore;
847}
848
Johann Baudy69e3c752009-05-18 22:11:22 -0700849static void tpacket_destruct_skb(struct sk_buff *skb)
850{
851 struct packet_sock *po = pkt_sk(skb->sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000852 void *ph;
Johann Baudy69e3c752009-05-18 22:11:22 -0700853
854 BUG_ON(skb == NULL);
855
856 if (likely(po->tx_ring.pg_vec)) {
857 ph = skb_shinfo(skb)->destructor_arg;
858 BUG_ON(__packet_get_status(po, ph) != TP_STATUS_SENDING);
859 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
860 atomic_dec(&po->tx_ring.pending);
861 __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
862 }
863
864 sock_wfree(skb);
865}
866
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000867static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
868 void *frame, struct net_device *dev, int size_max,
869 __be16 proto, unsigned char *addr)
Johann Baudy69e3c752009-05-18 22:11:22 -0700870{
871 union {
872 struct tpacket_hdr *h1;
873 struct tpacket2_hdr *h2;
874 void *raw;
875 } ph;
876 int to_write, offset, len, tp_len, nr_frags, len_max;
877 struct socket *sock = po->sk.sk_socket;
878 struct page *page;
879 void *data;
880 int err;
881
882 ph.raw = frame;
883
884 skb->protocol = proto;
885 skb->dev = dev;
886 skb->priority = po->sk.sk_priority;
887 skb_shinfo(skb)->destructor_arg = ph.raw;
888
889 switch (po->tp_version) {
890 case TPACKET_V2:
891 tp_len = ph.h2->tp_len;
892 break;
893 default:
894 tp_len = ph.h1->tp_len;
895 break;
896 }
897 if (unlikely(tp_len > size_max)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000898 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
Johann Baudy69e3c752009-05-18 22:11:22 -0700899 return -EMSGSIZE;
900 }
901
902 skb_reserve(skb, LL_RESERVED_SPACE(dev));
903 skb_reset_network_header(skb);
904
905 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
906 to_write = tp_len;
907
908 if (sock->type == SOCK_DGRAM) {
909 err = dev_hard_header(skb, dev, ntohs(proto), addr,
910 NULL, tp_len);
911 if (unlikely(err < 0))
912 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000913 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -0700914 /* net device doesn't like empty head */
915 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000916 pr_err("packet size is too short (%d < %d)\n",
917 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -0700918 return -EINVAL;
919 }
920
921 skb_push(skb, dev->hard_header_len);
922 err = skb_store_bits(skb, 0, data,
923 dev->hard_header_len);
924 if (unlikely(err))
925 return err;
926
927 data += dev->hard_header_len;
928 to_write -= dev->hard_header_len;
929 }
930
931 err = -EFAULT;
932 page = virt_to_page(data);
933 offset = offset_in_page(data);
934 len_max = PAGE_SIZE - offset;
935 len = ((to_write > len_max) ? len_max : to_write);
936
937 skb->data_len = to_write;
938 skb->len += to_write;
939 skb->truesize += to_write;
940 atomic_add(to_write, &po->sk.sk_wmem_alloc);
941
942 while (likely(to_write)) {
943 nr_frags = skb_shinfo(skb)->nr_frags;
944
945 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000946 pr_err("Packet exceed the number of skb frags(%lu)\n",
947 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -0700948 return -EFAULT;
949 }
950
951 flush_dcache_page(page);
952 get_page(page);
953 skb_fill_page_desc(skb,
954 nr_frags,
955 page++, offset, len);
956 to_write -= len;
957 offset = 0;
958 len_max = PAGE_SIZE;
959 len = ((to_write > len_max) ? len_max : to_write);
960 }
961
962 return tp_len;
963}
964
965static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
966{
967 struct socket *sock;
968 struct sk_buff *skb;
969 struct net_device *dev;
970 __be16 proto;
971 int ifindex, err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000972 void *ph;
973 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Johann Baudy69e3c752009-05-18 22:11:22 -0700974 int tp_len, size_max;
975 unsigned char *addr;
976 int len_sum = 0;
977 int status = 0;
978
979 sock = po->sk.sk_socket;
980
981 mutex_lock(&po->pg_vec_lock);
982
983 err = -EBUSY;
984 if (saddr == NULL) {
985 ifindex = po->ifindex;
986 proto = po->num;
987 addr = NULL;
988 } else {
989 err = -EINVAL;
990 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
991 goto out;
992 if (msg->msg_namelen < (saddr->sll_halen
993 + offsetof(struct sockaddr_ll,
994 sll_addr)))
995 goto out;
996 ifindex = saddr->sll_ifindex;
997 proto = saddr->sll_protocol;
998 addr = saddr->sll_addr;
999 }
1000
1001 dev = dev_get_by_index(sock_net(&po->sk), ifindex);
1002 err = -ENXIO;
1003 if (unlikely(dev == NULL))
1004 goto out;
1005
1006 reserve = dev->hard_header_len;
1007
1008 err = -ENETDOWN;
1009 if (unlikely(!(dev->flags & IFF_UP)))
1010 goto out_put;
1011
1012 size_max = po->tx_ring.frame_size
1013 - sizeof(struct skb_shared_info)
1014 - po->tp_hdrlen
1015 - LL_ALLOCATED_SPACE(dev)
1016 - sizeof(struct sockaddr_ll);
1017
1018 if (size_max > dev->mtu + reserve)
1019 size_max = dev->mtu + reserve;
1020
1021 do {
1022 ph = packet_current_frame(po, &po->tx_ring,
1023 TP_STATUS_SEND_REQUEST);
1024
1025 if (unlikely(ph == NULL)) {
1026 schedule();
1027 continue;
1028 }
1029
1030 status = TP_STATUS_SEND_REQUEST;
1031 skb = sock_alloc_send_skb(&po->sk,
1032 LL_ALLOCATED_SPACE(dev)
1033 + sizeof(struct sockaddr_ll),
1034 0, &err);
1035
1036 if (unlikely(skb == NULL))
1037 goto out_status;
1038
1039 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
1040 addr);
1041
1042 if (unlikely(tp_len < 0)) {
1043 if (po->tp_loss) {
1044 __packet_set_status(po, ph,
1045 TP_STATUS_AVAILABLE);
1046 packet_increment_head(&po->tx_ring);
1047 kfree_skb(skb);
1048 continue;
1049 } else {
1050 status = TP_STATUS_WRONG_FORMAT;
1051 err = tp_len;
1052 goto out_status;
1053 }
1054 }
1055
1056 skb->destructor = tpacket_destruct_skb;
1057 __packet_set_status(po, ph, TP_STATUS_SENDING);
1058 atomic_inc(&po->tx_ring.pending);
1059
1060 status = TP_STATUS_SEND_REQUEST;
1061 err = dev_queue_xmit(skb);
1062 if (unlikely(err > 0 && (err = net_xmit_errno(err)) != 0))
1063 goto out_xmit;
1064 packet_increment_head(&po->tx_ring);
1065 len_sum += tp_len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001066 } while (likely((ph != NULL) || ((!(msg->msg_flags & MSG_DONTWAIT))
Johann Baudy69e3c752009-05-18 22:11:22 -07001067 && (atomic_read(&po->tx_ring.pending))))
1068 );
1069
1070 err = len_sum;
1071 goto out_put;
1072
1073out_xmit:
1074 skb->destructor = sock_wfree;
1075 atomic_dec(&po->tx_ring.pending);
1076out_status:
1077 __packet_set_status(po, ph, status);
1078 kfree_skb(skb);
1079out_put:
1080 dev_put(dev);
1081out:
1082 mutex_unlock(&po->pg_vec_lock);
1083 return err;
1084}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085#endif
1086
Johann Baudy69e3c752009-05-18 22:11:22 -07001087static int packet_snd(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct msghdr *msg, size_t len)
1089{
1090 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001091 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct sk_buff *skb;
1093 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08001094 __be16 proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 unsigned char *addr;
1096 int ifindex, err, reserve = 0;
1097
1098 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001099 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (saddr == NULL) {
1103 struct packet_sock *po = pkt_sk(sk);
1104
1105 ifindex = po->ifindex;
1106 proto = po->num;
1107 addr = NULL;
1108 } else {
1109 err = -EINVAL;
1110 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
1111 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001112 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
1113 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 ifindex = saddr->sll_ifindex;
1115 proto = saddr->sll_protocol;
1116 addr = saddr->sll_addr;
1117 }
1118
1119
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001120 dev = dev_get_by_index(sock_net(sk), ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 err = -ENXIO;
1122 if (dev == NULL)
1123 goto out_unlock;
1124 if (sock->type == SOCK_RAW)
1125 reserve = dev->hard_header_len;
1126
David S. Millerd5e76b02007-01-25 19:30:36 -08001127 err = -ENETDOWN;
1128 if (!(dev->flags & IFF_UP))
1129 goto out_unlock;
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 err = -EMSGSIZE;
1132 if (len > dev->mtu+reserve)
1133 goto out_unlock;
1134
Johannes Bergf5184d22008-05-12 20:48:31 -07001135 skb = sock_alloc_send_skb(sk, len + LL_ALLOCATED_SPACE(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001137 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 goto out_unlock;
1139
1140 skb_reserve(skb, LL_RESERVED_SPACE(dev));
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001141 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001143 err = -EINVAL;
1144 if (sock->type == SOCK_DGRAM &&
1145 dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len) < 0)
1146 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 /* Returns -EFAULT on error */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001149 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (err)
1151 goto out_free;
1152
1153 skb->protocol = proto;
1154 skb->dev = dev;
1155 skb->priority = sk->sk_priority;
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /*
1158 * Now send it
1159 */
1160
1161 err = dev_queue_xmit(skb);
1162 if (err > 0 && (err = net_xmit_errno(err)) != 0)
1163 goto out_unlock;
1164
1165 dev_put(dev);
1166
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001167 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169out_free:
1170 kfree_skb(skb);
1171out_unlock:
1172 if (dev)
1173 dev_put(dev);
1174out:
1175 return err;
1176}
1177
Johann Baudy69e3c752009-05-18 22:11:22 -07001178static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
1179 struct msghdr *msg, size_t len)
1180{
1181#ifdef CONFIG_PACKET_MMAP
1182 struct sock *sk = sock->sk;
1183 struct packet_sock *po = pkt_sk(sk);
1184 if (po->tx_ring.pg_vec)
1185 return tpacket_snd(po, msg);
1186 else
1187#endif
1188 return packet_snd(sock, msg, len);
1189}
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191/*
1192 * Close a PACKET socket. This is fairly simple. We immediately go
1193 * to 'closed' state and remove our protocol entry in the device list.
1194 */
1195
1196static int packet_release(struct socket *sock)
1197{
1198 struct sock *sk = sock->sk;
1199 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001200 struct net *net;
Johann Baudy69e3c752009-05-18 22:11:22 -07001201#ifdef CONFIG_PACKET_MMAP
1202 struct tpacket_req req;
1203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (!sk)
1206 return 0;
1207
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001208 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 po = pkt_sk(sk);
1210
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001211 write_lock_bh(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 sk_del_node_init(sk);
Eric Dumazet920de802008-11-24 00:09:29 -08001213 sock_prot_inuse_add(net, sk->sk_prot, -1);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001214 write_unlock_bh(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /*
1217 * Unhook packet receive handler.
1218 */
1219
1220 if (po->running) {
1221 /*
1222 * Remove the protocol hook
1223 */
1224 dev_remove_pack(&po->prot_hook);
1225 po->running = 0;
1226 po->num = 0;
1227 __sock_put(sk);
1228 }
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232#ifdef CONFIG_PACKET_MMAP
Johann Baudy69e3c752009-05-18 22:11:22 -07001233 memset(&req, 0, sizeof(req));
1234
1235 if (po->rx_ring.pg_vec)
1236 packet_set_ring(sk, &req, 1, 0);
1237
1238 if (po->tx_ring.pg_vec)
1239 packet_set_ring(sk, &req, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240#endif
1241
1242 /*
1243 * Now the socket is dead. No more input will appear.
1244 */
1245
1246 sock_orphan(sk);
1247 sock->sk = NULL;
1248
1249 /* Purge queues */
1250
1251 skb_queue_purge(&sk->sk_receive_queue);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001252 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 sock_put(sk);
1255 return 0;
1256}
1257
1258/*
1259 * Attach a packet hook.
1260 */
1261
Al Viro0e11c912006-11-08 00:26:29 -08001262static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 struct packet_sock *po = pkt_sk(sk);
1265 /*
1266 * Detach an existing hook if present.
1267 */
1268
1269 lock_sock(sk);
1270
1271 spin_lock(&po->bind_lock);
1272 if (po->running) {
1273 __sock_put(sk);
1274 po->running = 0;
1275 po->num = 0;
1276 spin_unlock(&po->bind_lock);
1277 dev_remove_pack(&po->prot_hook);
1278 spin_lock(&po->bind_lock);
1279 }
1280
1281 po->num = protocol;
1282 po->prot_hook.type = protocol;
1283 po->prot_hook.dev = dev;
1284
1285 po->ifindex = dev ? dev->ifindex : 0;
1286
1287 if (protocol == 0)
1288 goto out_unlock;
1289
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001290 if (!dev || (dev->flags & IFF_UP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 dev_add_pack(&po->prot_hook);
1292 sock_hold(sk);
1293 po->running = 1;
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001294 } else {
1295 sk->sk_err = ENETDOWN;
1296 if (!sock_flag(sk, SOCK_DEAD))
1297 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
1300out_unlock:
1301 spin_unlock(&po->bind_lock);
1302 release_sock(sk);
1303 return 0;
1304}
1305
1306/*
1307 * Bind a packet socket to a device
1308 */
1309
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001310static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
1311 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001313 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 char name[15];
1315 struct net_device *dev;
1316 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 /*
1319 * Check legality
1320 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001321
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001322 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001324 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001326 dev = dev_get_by_name(sock_net(sk), name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (dev) {
1328 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
1329 dev_put(dev);
1330 }
1331 return err;
1332}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1335{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001336 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
1337 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 struct net_device *dev = NULL;
1339 int err;
1340
1341
1342 /*
1343 * Check legality
1344 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (addr_len < sizeof(struct sockaddr_ll))
1347 return -EINVAL;
1348 if (sll->sll_family != AF_PACKET)
1349 return -EINVAL;
1350
1351 if (sll->sll_ifindex) {
1352 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001353 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (dev == NULL)
1355 goto out;
1356 }
1357 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
1358 if (dev)
1359 dev_put(dev);
1360
1361out:
1362 return err;
1363}
1364
1365static struct proto packet_proto = {
1366 .name = "PACKET",
1367 .owner = THIS_MODULE,
1368 .obj_size = sizeof(struct packet_sock),
1369};
1370
1371/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001372 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 */
1374
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001375static int packet_create(struct net *net, struct socket *sock, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 struct sock *sk;
1378 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08001379 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 int err;
1381
1382 if (!capable(CAP_NET_RAW))
1383 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07001384 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
1385 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return -ESOCKTNOSUPPORT;
1387
1388 sock->state = SS_UNCONNECTED;
1389
1390 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001391 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (sk == NULL)
1393 goto out;
1394
1395 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (sock->type == SOCK_PACKET)
1397 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 sock_init_data(sock, sk);
1400
1401 po = pkt_sk(sk);
1402 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08001403 po->num = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001406 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
1409 * Attach a protocol block
1410 */
1411
1412 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08001413 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (sock->type == SOCK_PACKET)
1417 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 po->prot_hook.af_packet_priv = sk;
1420
Al Viro0e11c912006-11-08 00:26:29 -08001421 if (proto) {
1422 po->prot_hook.type = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 dev_add_pack(&po->prot_hook);
1424 sock_hold(sk);
1425 po->running = 1;
1426 }
1427
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001428 write_lock_bh(&net->packet.sklist_lock);
1429 sk_add_node(sk, &net->packet.sklist);
Eric Dumazet36804532008-11-19 14:25:35 -08001430 sock_prot_inuse_add(net, &packet_proto, 1);
Eric Dumazet920de802008-11-24 00:09:29 -08001431 write_unlock_bh(&net->packet.sklist_lock);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433out:
1434 return err;
1435}
1436
1437/*
1438 * Pull a packet from our receive queue and hand it to the user.
1439 * If necessary we block.
1440 */
1441
1442static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
1443 struct msghdr *msg, size_t len, int flags)
1444{
1445 struct sock *sk = sock->sk;
1446 struct sk_buff *skb;
1447 int copied, err;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001448 struct sockaddr_ll *sll;
Neil Horman97775002009-10-02 06:56:41 +00001449 __u32 gap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 err = -EINVAL;
1452 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT))
1453 goto out;
1454
1455#if 0
1456 /* What error should we return now? EUNATTACH? */
1457 if (pkt_sk(sk)->ifindex < 0)
1458 return -ENODEV;
1459#endif
1460
1461 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 * Call the generic datagram receiver. This handles all sorts
1463 * of horrible races and re-entrancy so we can forget about it
1464 * in the protocol layers.
1465 *
1466 * Now it will return ENETDOWN, if device have just gone down,
1467 * but then it will block.
1468 */
1469
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001470 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001473 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * handles the blocking we don't see and worry about blocking
1475 * retries.
1476 */
1477
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001478 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto out;
1480
1481 /*
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001482 * If the address length field is there to be filled in, we fill
1483 * it in now.
1484 */
1485
Herbert Xuffbc6112007-02-04 23:33:10 -08001486 sll = &PACKET_SKB_CB(skb)->sa.ll;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001487 if (sock->type == SOCK_PACKET)
1488 msg->msg_namelen = sizeof(struct sockaddr_pkt);
1489 else
1490 msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
1491
1492 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 * You lose any data beyond the buffer you gave. If it worries a
1494 * user program they can ask the device for its MTU anyway.
1495 */
1496
1497 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001498 if (copied > len) {
1499 copied = len;
1500 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502
1503 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1504 if (err)
1505 goto out_free;
1506
1507 sock_recv_timestamp(msg, sk, skb);
1508
1509 if (msg->msg_name)
Herbert Xuffbc6112007-02-04 23:33:10 -08001510 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
1511 msg->msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Herbert Xu8dc41942007-02-04 23:31:32 -08001513 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08001514 struct tpacket_auxdata aux;
1515
1516 aux.tp_status = TP_STATUS_USER;
1517 if (skb->ip_summed == CHECKSUM_PARTIAL)
1518 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
1519 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
1520 aux.tp_snaplen = skb->len;
1521 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001522 aux.tp_net = skb_network_offset(skb);
Patrick McHardy393e52e2008-07-14 22:50:39 -07001523 aux.tp_vlan_tci = skb->vlan_tci;
Herbert Xuffbc6112007-02-04 23:33:10 -08001524
1525 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08001526 }
1527
Neil Horman97775002009-10-02 06:56:41 +00001528 gap = check_packet_gap(skb);
1529 if (gap)
1530 put_cmsg(msg, SOL_PACKET, PACKET_GAPDATA, sizeof(__u32), &gap);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /*
1533 * Free or return the buffer as appropriate. Again this
1534 * hides all the races and re-entrancy issues from us.
1535 */
1536 err = (flags&MSG_TRUNC) ? skb->len : copied;
1537
1538out_free:
1539 skb_free_datagram(sk, skb);
1540out:
1541 return err;
1542}
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
1545 int *uaddr_len, int peer)
1546{
1547 struct net_device *dev;
1548 struct sock *sk = sock->sk;
1549
1550 if (peer)
1551 return -EOPNOTSUPP;
1552
1553 uaddr->sa_family = AF_PACKET;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001554 dev = dev_get_by_index(sock_net(sk), pkt_sk(sk)->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (dev) {
1556 strlcpy(uaddr->sa_data, dev->name, 15);
1557 dev_put(dev);
1558 } else
1559 memset(uaddr->sa_data, 0, 14);
1560 *uaddr_len = sizeof(*uaddr);
1561
1562 return 0;
1563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
1566 int *uaddr_len, int peer)
1567{
1568 struct net_device *dev;
1569 struct sock *sk = sock->sk;
1570 struct packet_sock *po = pkt_sk(sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001571 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 if (peer)
1574 return -EOPNOTSUPP;
1575
1576 sll->sll_family = AF_PACKET;
1577 sll->sll_ifindex = po->ifindex;
1578 sll->sll_protocol = po->num;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001579 dev = dev_get_by_index(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (dev) {
1581 sll->sll_hatype = dev->type;
1582 sll->sll_halen = dev->addr_len;
1583 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
1584 dev_put(dev);
1585 } else {
1586 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
1587 sll->sll_halen = 0;
1588 }
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001589 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 return 0;
1592}
1593
Wang Chen2aeb0b82008-07-14 20:49:46 -07001594static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
1595 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 switch (i->type) {
1598 case PACKET_MR_MULTICAST:
1599 if (what > 0)
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001600 return dev_mc_add(dev, i->addr, i->alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 else
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001602 return dev_mc_delete(dev, i->addr, i->alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07001605 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 break;
1607 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07001608 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001610 case PACKET_MR_UNICAST:
1611 if (what > 0)
Jiri Pirkoccffad22009-05-22 23:22:17 +00001612 return dev_unicast_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001613 else
Jiri Pirkoccffad22009-05-22 23:22:17 +00001614 return dev_unicast_delete(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00001615 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001616 default:
1617 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07001619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
1623{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001624 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (i->ifindex == dev->ifindex)
1626 packet_dev_mc(dev, i, what);
1627 }
1628}
1629
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001630static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 struct packet_sock *po = pkt_sk(sk);
1633 struct packet_mclist *ml, *i;
1634 struct net_device *dev;
1635 int err;
1636
1637 rtnl_lock();
1638
1639 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001640 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!dev)
1642 goto done;
1643
1644 err = -EINVAL;
1645 if (mreq->mr_alen > dev->addr_len)
1646 goto done;
1647
1648 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001649 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (i == NULL)
1651 goto done;
1652
1653 err = 0;
1654 for (ml = po->mclist; ml; ml = ml->next) {
1655 if (ml->ifindex == mreq->mr_ifindex &&
1656 ml->type == mreq->mr_type &&
1657 ml->alen == mreq->mr_alen &&
1658 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
1659 ml->count++;
1660 /* Free the new element ... */
1661 kfree(i);
1662 goto done;
1663 }
1664 }
1665
1666 i->type = mreq->mr_type;
1667 i->ifindex = mreq->mr_ifindex;
1668 i->alen = mreq->mr_alen;
1669 memcpy(i->addr, mreq->mr_address, i->alen);
1670 i->count = 1;
1671 i->next = po->mclist;
1672 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07001673 err = packet_dev_mc(dev, i, 1);
1674 if (err) {
1675 po->mclist = i->next;
1676 kfree(i);
1677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679done:
1680 rtnl_unlock();
1681 return err;
1682}
1683
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001684static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct packet_mclist *ml, **mlp;
1687
1688 rtnl_lock();
1689
1690 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
1691 if (ml->ifindex == mreq->mr_ifindex &&
1692 ml->type == mreq->mr_type &&
1693 ml->alen == mreq->mr_alen &&
1694 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
1695 if (--ml->count == 0) {
1696 struct net_device *dev;
1697 *mlp = ml->next;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001698 dev = dev_get_by_index(sock_net(sk), ml->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (dev) {
1700 packet_dev_mc(dev, ml, -1);
1701 dev_put(dev);
1702 }
1703 kfree(ml);
1704 }
1705 rtnl_unlock();
1706 return 0;
1707 }
1708 }
1709 rtnl_unlock();
1710 return -EADDRNOTAVAIL;
1711}
1712
1713static void packet_flush_mclist(struct sock *sk)
1714{
1715 struct packet_sock *po = pkt_sk(sk);
1716 struct packet_mclist *ml;
1717
1718 if (!po->mclist)
1719 return;
1720
1721 rtnl_lock();
1722 while ((ml = po->mclist) != NULL) {
1723 struct net_device *dev;
1724
1725 po->mclist = ml->next;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001726 dev = dev_get_by_index(sock_net(sk), ml->ifindex);
1727 if (dev != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 packet_dev_mc(dev, ml, -1);
1729 dev_put(dev);
1730 }
1731 kfree(ml);
1732 }
1733 rtnl_unlock();
1734}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736static int
David S. Millerb7058842009-09-30 16:12:20 -07001737packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08001740 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 int ret;
1742
1743 if (level != SOL_PACKET)
1744 return -ENOPROTOOPT;
1745
Johann Baudy69e3c752009-05-18 22:11:22 -07001746 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001747 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 case PACKET_DROP_MEMBERSHIP:
1749 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001750 struct packet_mreq_max mreq;
1751 int len = optlen;
1752 memset(&mreq, 0, sizeof(mreq));
1753 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001755 if (len > sizeof(mreq))
1756 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001757 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001759 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
1760 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (optname == PACKET_ADD_MEMBERSHIP)
1762 ret = packet_mc_add(sk, &mreq);
1763 else
1764 ret = packet_mc_drop(sk, &mreq);
1765 return ret;
1766 }
David S. Millera2efcfa2007-05-29 13:12:50 -07001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768#ifdef CONFIG_PACKET_MMAP
1769 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07001770 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 {
1772 struct tpacket_req req;
1773
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001774 if (optlen < sizeof(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001776 if (copy_from_user(&req, optval, sizeof(req)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return -EFAULT;
Johann Baudy69e3c752009-05-18 22:11:22 -07001778 return packet_set_ring(sk, &req, 0, optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780 case PACKET_COPY_THRESH:
1781 {
1782 int val;
1783
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001784 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001786 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 return -EFAULT;
1788
1789 pkt_sk(sk)->copy_thresh = val;
1790 return 0;
1791 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001792 case PACKET_VERSION:
1793 {
1794 int val;
1795
1796 if (optlen != sizeof(val))
1797 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07001798 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001799 return -EBUSY;
1800 if (copy_from_user(&val, optval, sizeof(val)))
1801 return -EFAULT;
1802 switch (val) {
1803 case TPACKET_V1:
1804 case TPACKET_V2:
1805 po->tp_version = val;
1806 return 0;
1807 default:
1808 return -EINVAL;
1809 }
1810 }
Patrick McHardy89133362008-07-18 18:05:19 -07001811 case PACKET_RESERVE:
1812 {
1813 unsigned int val;
1814
1815 if (optlen != sizeof(val))
1816 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07001817 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy89133362008-07-18 18:05:19 -07001818 return -EBUSY;
1819 if (copy_from_user(&val, optval, sizeof(val)))
1820 return -EFAULT;
1821 po->tp_reserve = val;
1822 return 0;
1823 }
Johann Baudy69e3c752009-05-18 22:11:22 -07001824 case PACKET_LOSS:
1825 {
1826 unsigned int val;
1827
1828 if (optlen != sizeof(val))
1829 return -EINVAL;
1830 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
1831 return -EBUSY;
1832 if (copy_from_user(&val, optval, sizeof(val)))
1833 return -EFAULT;
1834 po->tp_loss = !!val;
1835 return 0;
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837#endif
Herbert Xu8dc41942007-02-04 23:31:32 -08001838 case PACKET_AUXDATA:
1839 {
1840 int val;
1841
1842 if (optlen < sizeof(val))
1843 return -EINVAL;
1844 if (copy_from_user(&val, optval, sizeof(val)))
1845 return -EFAULT;
1846
1847 po->auxdata = !!val;
1848 return 0;
1849 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001850 case PACKET_ORIGDEV:
1851 {
1852 int val;
1853
1854 if (optlen < sizeof(val))
1855 return -EINVAL;
1856 if (copy_from_user(&val, optval, sizeof(val)))
1857 return -EFAULT;
1858
1859 po->origdev = !!val;
1860 return 0;
1861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 default:
1863 return -ENOPROTOOPT;
1864 }
1865}
1866
1867static int packet_getsockopt(struct socket *sock, int level, int optname,
1868 char __user *optval, int __user *optlen)
1869{
1870 int len;
Herbert Xu8dc41942007-02-04 23:31:32 -08001871 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 struct sock *sk = sock->sk;
1873 struct packet_sock *po = pkt_sk(sk);
Herbert Xu8dc41942007-02-04 23:31:32 -08001874 void *data;
1875 struct tpacket_stats st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 if (level != SOL_PACKET)
1878 return -ENOPROTOOPT;
1879
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001880 if (get_user(len, optlen))
1881 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 if (len < 0)
1884 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001885
Johann Baudy69e3c752009-05-18 22:11:22 -07001886 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 if (len > sizeof(struct tpacket_stats))
1889 len = sizeof(struct tpacket_stats);
1890 spin_lock_bh(&sk->sk_receive_queue.lock);
1891 st = po->stats;
1892 memset(&po->stats, 0, sizeof(st));
1893 spin_unlock_bh(&sk->sk_receive_queue.lock);
1894 st.tp_packets += st.tp_drops;
1895
Herbert Xu8dc41942007-02-04 23:31:32 -08001896 data = &st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08001898 case PACKET_AUXDATA:
1899 if (len > sizeof(int))
1900 len = sizeof(int);
1901 val = po->auxdata;
1902
1903 data = &val;
1904 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001905 case PACKET_ORIGDEV:
1906 if (len > sizeof(int))
1907 len = sizeof(int);
1908 val = po->origdev;
1909
1910 data = &val;
1911 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001912#ifdef CONFIG_PACKET_MMAP
1913 case PACKET_VERSION:
1914 if (len > sizeof(int))
1915 len = sizeof(int);
1916 val = po->tp_version;
1917 data = &val;
1918 break;
1919 case PACKET_HDRLEN:
1920 if (len > sizeof(int))
1921 len = sizeof(int);
1922 if (copy_from_user(&val, optval, len))
1923 return -EFAULT;
1924 switch (val) {
1925 case TPACKET_V1:
1926 val = sizeof(struct tpacket_hdr);
1927 break;
1928 case TPACKET_V2:
1929 val = sizeof(struct tpacket2_hdr);
1930 break;
1931 default:
1932 return -EINVAL;
1933 }
1934 data = &val;
1935 break;
Patrick McHardy89133362008-07-18 18:05:19 -07001936 case PACKET_RESERVE:
1937 if (len > sizeof(unsigned int))
1938 len = sizeof(unsigned int);
1939 val = po->tp_reserve;
1940 data = &val;
1941 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07001942 case PACKET_LOSS:
1943 if (len > sizeof(unsigned int))
1944 len = sizeof(unsigned int);
1945 val = po->tp_loss;
1946 data = &val;
1947 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001948#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 default:
1950 return -ENOPROTOOPT;
1951 }
1952
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001953 if (put_user(len, optlen))
1954 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08001955 if (copy_to_user(optval, data, len))
1956 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960
1961static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
1962{
1963 struct sock *sk;
1964 struct hlist_node *node;
Jason Lunzad930652007-02-20 23:19:54 -08001965 struct net_device *dev = data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001966 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08001968 read_lock(&net->packet.sklist_lock);
1969 sk_for_each(sk, node, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 struct packet_sock *po = pkt_sk(sk);
1971
1972 switch (msg) {
1973 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (po->mclist)
1975 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07001976 /* fallthrough */
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 case NETDEV_DOWN:
1979 if (dev->ifindex == po->ifindex) {
1980 spin_lock(&po->bind_lock);
1981 if (po->running) {
1982 __dev_remove_pack(&po->prot_hook);
1983 __sock_put(sk);
1984 po->running = 0;
1985 sk->sk_err = ENETDOWN;
1986 if (!sock_flag(sk, SOCK_DEAD))
1987 sk->sk_error_report(sk);
1988 }
1989 if (msg == NETDEV_UNREGISTER) {
1990 po->ifindex = -1;
1991 po->prot_hook.dev = NULL;
1992 }
1993 spin_unlock(&po->bind_lock);
1994 }
1995 break;
1996 case NETDEV_UP:
1997 spin_lock(&po->bind_lock);
1998 if (dev->ifindex == po->ifindex && po->num &&
1999 !po->running) {
2000 dev_add_pack(&po->prot_hook);
2001 sock_hold(sk);
2002 po->running = 1;
2003 }
2004 spin_unlock(&po->bind_lock);
2005 break;
2006 }
2007 }
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002008 read_unlock(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return NOTIFY_DONE;
2010}
2011
2012
2013static int packet_ioctl(struct socket *sock, unsigned int cmd,
2014 unsigned long arg)
2015{
2016 struct sock *sk = sock->sk;
2017
Johann Baudy69e3c752009-05-18 22:11:22 -07002018 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002019 case SIOCOUTQ:
2020 {
2021 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07002022
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002023 return put_user(amount, (int __user *)arg);
2024 }
2025 case SIOCINQ:
2026 {
2027 struct sk_buff *skb;
2028 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002030 spin_lock_bh(&sk->sk_receive_queue.lock);
2031 skb = skb_peek(&sk->sk_receive_queue);
2032 if (skb)
2033 amount = skb->len;
2034 spin_unlock_bh(&sk->sk_receive_queue.lock);
2035 return put_user(amount, (int __user *)arg);
2036 }
2037 case SIOCGSTAMP:
2038 return sock_get_timestamp(sk, (struct timeval __user *)arg);
2039 case SIOCGSTAMPNS:
2040 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002043 case SIOCADDRT:
2044 case SIOCDELRT:
2045 case SIOCDARP:
2046 case SIOCGARP:
2047 case SIOCSARP:
2048 case SIOCGIFADDR:
2049 case SIOCSIFADDR:
2050 case SIOCGIFBRDADDR:
2051 case SIOCSIFBRDADDR:
2052 case SIOCGIFNETMASK:
2053 case SIOCSIFNETMASK:
2054 case SIOCGIFDSTADDR:
2055 case SIOCSIFDSTADDR:
2056 case SIOCSIFFLAGS:
2057 if (!net_eq(sock_net(sk), &init_net))
2058 return -ENOIOCTLCMD;
2059 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060#endif
2061
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002062 default:
2063 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065 return 0;
2066}
2067
2068#ifndef CONFIG_PACKET_MMAP
2069#define packet_mmap sock_no_mmap
2070#define packet_poll datagram_poll
2071#else
2072
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002073static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 poll_table *wait)
2075{
2076 struct sock *sk = sock->sk;
2077 struct packet_sock *po = pkt_sk(sk);
2078 unsigned int mask = datagram_poll(file, sock, wait);
2079
2080 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002081 if (po->rx_ring.pg_vec) {
2082 if (!packet_previous_frame(po, &po->rx_ring, TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 mask |= POLLIN | POLLRDNORM;
2084 }
2085 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002086 spin_lock_bh(&sk->sk_write_queue.lock);
2087 if (po->tx_ring.pg_vec) {
2088 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
2089 mask |= POLLOUT | POLLWRNORM;
2090 }
2091 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return mask;
2093}
2094
2095
2096/* Dirty? Well, I still did not learn better way to account
2097 * for user mmaps.
2098 */
2099
2100static void packet_mm_open(struct vm_area_struct *vma)
2101{
2102 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002103 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (sk)
2107 atomic_inc(&pkt_sk(sk)->mapped);
2108}
2109
2110static void packet_mm_close(struct vm_area_struct *vma)
2111{
2112 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002113 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (sk)
2117 atomic_dec(&pkt_sk(sk)->mapped);
2118}
2119
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002120static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002121 .open = packet_mm_open,
2122 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123};
2124
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002125static void free_pg_vec(char **pg_vec, unsigned int order, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
2127 int i;
2128
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002129 for (i = 0; i < len; i++) {
2130 if (likely(pg_vec[i]))
2131 free_pages((unsigned long) pg_vec[i], order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133 kfree(pg_vec);
2134}
2135
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002136static inline char *alloc_one_pg_vec_page(unsigned long order)
2137{
Eric Dumazet719bfea2009-04-15 03:39:52 -07002138 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO | __GFP_NOWARN;
2139
2140 return (char *) __get_free_pages(gfp_flags, order);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002141}
2142
2143static char **alloc_pg_vec(struct tpacket_req *req, int order)
2144{
2145 unsigned int block_nr = req->tp_block_nr;
2146 char **pg_vec;
2147 int i;
2148
2149 pg_vec = kzalloc(block_nr * sizeof(char *), GFP_KERNEL);
2150 if (unlikely(!pg_vec))
2151 goto out;
2152
2153 for (i = 0; i < block_nr; i++) {
2154 pg_vec[i] = alloc_one_pg_vec_page(order);
2155 if (unlikely(!pg_vec[i]))
2156 goto out_free_pgvec;
2157 }
2158
2159out:
2160 return pg_vec;
2161
2162out_free_pgvec:
2163 free_pg_vec(pg_vec, order, block_nr);
2164 pg_vec = NULL;
2165 goto out;
2166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Johann Baudy69e3c752009-05-18 22:11:22 -07002168static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
2169 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
2171 char **pg_vec = NULL;
2172 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08002173 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07002174 struct packet_ring_buffer *rb;
2175 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08002176 __be16 num;
Johann Baudy69e3c752009-05-18 22:11:22 -07002177 int err;
2178
2179 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
2180 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
2181
2182 err = -EBUSY;
2183 if (!closing) {
2184 if (atomic_read(&po->mapped))
2185 goto out;
2186 if (atomic_read(&rb->pending))
2187 goto out;
2188 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07002192 err = -EBUSY;
2193 if (unlikely(rb->pg_vec))
2194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002196 switch (po->tp_version) {
2197 case TPACKET_V1:
2198 po->tp_hdrlen = TPACKET_HDRLEN;
2199 break;
2200 case TPACKET_V2:
2201 po->tp_hdrlen = TPACKET2_HDRLEN;
2202 break;
2203 }
2204
Johann Baudy69e3c752009-05-18 22:11:22 -07002205 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002206 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07002207 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002208 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002209 goto out;
Patrick McHardy89133362008-07-18 18:05:19 -07002210 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07002211 po->tp_reserve))
2212 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002213 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002214 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Johann Baudy69e3c752009-05-18 22:11:22 -07002216 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
2217 if (unlikely(rb->frames_per_block <= 0))
2218 goto out;
2219 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
2220 req->tp_frame_nr))
2221 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002224 order = get_order(req->tp_block_size);
2225 pg_vec = alloc_pg_vec(req, order);
2226 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002228 }
2229 /* Done */
2230 else {
2231 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002232 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07002233 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
2235
2236 lock_sock(sk);
2237
2238 /* Detach socket from network */
2239 spin_lock(&po->bind_lock);
2240 was_running = po->running;
2241 num = po->num;
2242 if (was_running) {
2243 __dev_remove_pack(&po->prot_hook);
2244 po->num = 0;
2245 po->running = 0;
2246 __sock_put(sk);
2247 }
2248 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 synchronize_net();
2251
2252 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08002253 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (closing || atomic_read(&po->mapped) == 0) {
2255 err = 0;
2256#define XC(a, b) ({ __typeof__ ((a)) __t; __t = (a); (a) = (b); __t; })
Johann Baudy69e3c752009-05-18 22:11:22 -07002257 spin_lock_bh(&rb_queue->lock);
2258 pg_vec = XC(rb->pg_vec, pg_vec);
2259 rb->frame_max = (req->tp_frame_nr - 1);
2260 rb->head = 0;
2261 rb->frame_size = req->tp_frame_size;
2262 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Johann Baudy69e3c752009-05-18 22:11:22 -07002264 order = XC(rb->pg_vec_order, order);
2265 req->tp_block_nr = XC(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Johann Baudy69e3c752009-05-18 22:11:22 -07002267 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
2268 po->prot_hook.func = (po->rx_ring.pg_vec) ?
2269 tpacket_rcv : packet_rcv;
2270 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271#undef XC
2272 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002273 pr_err("packet_mmap: vma is busy: %d\n",
2274 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Herbert Xu905db442009-01-30 14:12:06 -08002276 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 spin_lock(&po->bind_lock);
2279 if (was_running && !po->running) {
2280 sock_hold(sk);
2281 po->running = 1;
2282 po->num = num;
2283 dev_add_pack(&po->prot_hook);
2284 }
2285 spin_unlock(&po->bind_lock);
2286
2287 release_sock(sk);
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (pg_vec)
2290 free_pg_vec(pg_vec, order, req->tp_block_nr);
2291out:
2292 return err;
2293}
2294
Johann Baudy69e3c752009-05-18 22:11:22 -07002295static int packet_mmap(struct file *file, struct socket *sock,
2296 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
2298 struct sock *sk = sock->sk;
2299 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07002300 unsigned long size, expected_size;
2301 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 unsigned long start;
2303 int err = -EINVAL;
2304 int i;
2305
2306 if (vma->vm_pgoff)
2307 return -EINVAL;
2308
Herbert Xu905db442009-01-30 14:12:06 -08002309 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002310
2311 expected_size = 0;
2312 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2313 if (rb->pg_vec) {
2314 expected_size += rb->pg_vec_len
2315 * rb->pg_vec_pages
2316 * PAGE_SIZE;
2317 }
2318 }
2319
2320 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002322
2323 size = vma->vm_end - vma->vm_start;
2324 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto out;
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07002328 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2329 if (rb->pg_vec == NULL)
2330 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002331
Johann Baudy69e3c752009-05-18 22:11:22 -07002332 for (i = 0; i < rb->pg_vec_len; i++) {
2333 struct page *page = virt_to_page(rb->pg_vec[i]);
2334 int pg_num;
2335
2336 for (pg_num = 0; pg_num < rb->pg_vec_pages;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002337 pg_num++, page++) {
Johann Baudy69e3c752009-05-18 22:11:22 -07002338 err = vm_insert_page(vma, start, page);
2339 if (unlikely(err))
2340 goto out;
2341 start += PAGE_SIZE;
2342 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002345
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002346 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 vma->vm_ops = &packet_mmap_ops;
2348 err = 0;
2349
2350out:
Herbert Xu905db442009-01-30 14:12:06 -08002351 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return err;
2353}
2354#endif
2355
2356
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002357static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 .family = PF_PACKET,
2359 .owner = THIS_MODULE,
2360 .release = packet_release,
2361 .bind = packet_bind_spkt,
2362 .connect = sock_no_connect,
2363 .socketpair = sock_no_socketpair,
2364 .accept = sock_no_accept,
2365 .getname = packet_getname_spkt,
2366 .poll = datagram_poll,
2367 .ioctl = packet_ioctl,
2368 .listen = sock_no_listen,
2369 .shutdown = sock_no_shutdown,
2370 .setsockopt = sock_no_setsockopt,
2371 .getsockopt = sock_no_getsockopt,
2372 .sendmsg = packet_sendmsg_spkt,
2373 .recvmsg = packet_recvmsg,
2374 .mmap = sock_no_mmap,
2375 .sendpage = sock_no_sendpage,
2376};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002378static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 .family = PF_PACKET,
2380 .owner = THIS_MODULE,
2381 .release = packet_release,
2382 .bind = packet_bind,
2383 .connect = sock_no_connect,
2384 .socketpair = sock_no_socketpair,
2385 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002386 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 .poll = packet_poll,
2388 .ioctl = packet_ioctl,
2389 .listen = sock_no_listen,
2390 .shutdown = sock_no_shutdown,
2391 .setsockopt = packet_setsockopt,
2392 .getsockopt = packet_getsockopt,
2393 .sendmsg = packet_sendmsg,
2394 .recvmsg = packet_recvmsg,
2395 .mmap = packet_mmap,
2396 .sendpage = sock_no_sendpage,
2397};
2398
2399static struct net_proto_family packet_family_ops = {
2400 .family = PF_PACKET,
2401 .create = packet_create,
2402 .owner = THIS_MODULE,
2403};
2404
2405static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002406 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407};
2408
2409#ifdef CONFIG_PROC_FS
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002410static inline struct sock *packet_seq_idx(struct net *net, loff_t off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
2412 struct sock *s;
2413 struct hlist_node *node;
2414
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002415 sk_for_each(s, node, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (!off--)
2417 return s;
2418 }
2419 return NULL;
2420}
2421
2422static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet40ccbf52008-01-07 22:39:57 -08002423 __acquires(seq_file_net(seq)->packet.sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
Denis V. Luneve372c412007-11-19 22:31:54 -08002425 struct net *net = seq_file_net(seq);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002426 read_lock(&net->packet.sklist_lock);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002427 return *pos ? packet_seq_idx(net, *pos - 1) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
2430static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2431{
Herbert Xu1bf40952007-12-16 14:04:02 -08002432 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 ++*pos;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002434 return (v == SEQ_START_TOKEN)
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002435 ? sk_head(&net->packet.sklist)
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002436 : sk_next((struct sock *)v) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
2439static void packet_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet40ccbf52008-01-07 22:39:57 -08002440 __releases(seq_file_net(seq)->packet.sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
Herbert Xu1bf40952007-12-16 14:04:02 -08002442 struct net *net = seq_file_net(seq);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002443 read_unlock(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002446static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
2448 if (v == SEQ_START_TOKEN)
2449 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
2450 else {
2451 struct sock *s = v;
2452 const struct packet_sock *po = pkt_sk(s);
2453
2454 seq_printf(seq,
2455 "%p %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
2456 s,
2457 atomic_read(&s->sk_refcnt),
2458 s->sk_type,
2459 ntohs(po->num),
2460 po->ifindex,
2461 po->running,
2462 atomic_read(&s->sk_rmem_alloc),
2463 sock_i_uid(s),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002464 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466
2467 return 0;
2468}
2469
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002470static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 .start = packet_seq_start,
2472 .next = packet_seq_next,
2473 .stop = packet_seq_stop,
2474 .show = packet_seq_show,
2475};
2476
2477static int packet_seq_open(struct inode *inode, struct file *file)
2478{
Denis V. Luneve372c412007-11-19 22:31:54 -08002479 return seq_open_net(inode, file, &packet_seq_ops,
2480 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
2482
Arjan van de Venda7071d2007-02-12 00:55:36 -08002483static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 .owner = THIS_MODULE,
2485 .open = packet_seq_open,
2486 .read = seq_read,
2487 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002488 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489};
2490
2491#endif
2492
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002493static int packet_net_init(struct net *net)
2494{
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08002495 rwlock_init(&net->packet.sklist_lock);
2496 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002497
2498 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))
2499 return -ENOMEM;
2500
2501 return 0;
2502}
2503
2504static void packet_net_exit(struct net *net)
2505{
2506 proc_net_remove(net, "packet");
2507}
2508
2509static struct pernet_operations packet_net_ops = {
2510 .init = packet_net_init,
2511 .exit = packet_net_exit,
2512};
2513
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515static void __exit packet_exit(void)
2516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002518 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 sock_unregister(PF_PACKET);
2520 proto_unregister(&packet_proto);
2521}
2522
2523static int __init packet_init(void)
2524{
2525 int rc = proto_register(&packet_proto, 0);
2526
2527 if (rc != 0)
2528 goto out;
2529
2530 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002531 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533out:
2534 return rc;
2535}
2536
2537module_init(packet_init);
2538module_exit(packet_exit);
2539MODULE_LICENSE("GPL");
2540MODULE_ALIAS_NETPROTO(PF_PACKET);