2 * This is a module which is used for queueing IPv6 packets and
3 * communicating with userspace via netlink.
5 * (C) 2001 Fernando Anton, this code is GPL.
6 * IPv64 Project - Work based in IPv64 draft by Arturo Azcorra.
7 * Universidad Carlos III de Madrid - Leganes (Madrid) - Spain
8 * Universidad Politecnica de Alcala de Henares - Alcala de H. (Madrid) - Spain
9 * email: fanton@it.uc3m.es
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/init.h>
18 #include <linux/ipv6.h>
19 #include <linux/notifier.h>
20 #include <linux/netdevice.h>
21 #include <linux/netfilter.h>
22 #include <linux/netlink.h>
23 #include <linux/spinlock.h>
24 #include <linux/sysctl.h>
25 #include <linux/proc_fs.h>
26 #include <linux/seq_file.h>
27 #include <linux/mutex.h>
28 #include <linux/slab.h>
29 #include <net/net_namespace.h>
32 #include <net/ip6_route.h>
33 #include <net/netfilter/nf_queue.h>
34 #include <linux/netfilter_ipv4/ip_queue.h>
35 #include <linux/netfilter_ipv4/ip_tables.h>
36 #include <linux/netfilter_ipv6/ip6_tables.h>
38 #define IPQ_QMAX_DEFAULT 1024
39 #define IPQ_PROC_FS_NAME "ip6_queue"
40 #define NET_IPQ_QMAX_NAME "ip6_queue_maxlen"
42 typedef int (*ipq_cmpfn
)(struct nf_queue_entry
*, unsigned long);
44 static unsigned char copy_mode __read_mostly
= IPQ_COPY_NONE
;
45 static unsigned int queue_maxlen __read_mostly
= IPQ_QMAX_DEFAULT
;
46 static DEFINE_SPINLOCK(queue_lock
);
47 static int peer_pid __read_mostly
;
48 static unsigned int copy_range __read_mostly
;
49 static unsigned int queue_total
;
50 static unsigned int queue_dropped
= 0;
51 static unsigned int queue_user_dropped
= 0;
52 static struct sock
*ipqnl __read_mostly
;
53 static LIST_HEAD(queue_list
);
54 static DEFINE_MUTEX(ipqnl_mutex
);
57 __ipq_enqueue_entry(struct nf_queue_entry
*entry
)
59 list_add_tail(&entry
->list
, &queue_list
);
64 __ipq_set_mode(unsigned char mode
, unsigned int range
)
89 static void __ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
);
95 net_disable_timestamp();
96 __ipq_set_mode(IPQ_COPY_NONE
, 0);
100 static struct nf_queue_entry
*
101 ipq_find_dequeue_entry(unsigned long id
)
103 struct nf_queue_entry
*entry
= NULL
, *i
;
105 spin_lock_bh(&queue_lock
);
107 list_for_each_entry(i
, &queue_list
, list
) {
108 if ((unsigned long)i
== id
) {
115 list_del(&entry
->list
);
119 spin_unlock_bh(&queue_lock
);
124 __ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
)
126 struct nf_queue_entry
*entry
, *next
;
128 list_for_each_entry_safe(entry
, next
, &queue_list
, list
) {
129 if (!cmpfn
|| cmpfn(entry
, data
)) {
130 list_del(&entry
->list
);
132 nf_reinject(entry
, NF_DROP
);
138 ipq_flush(ipq_cmpfn cmpfn
, unsigned long data
)
140 spin_lock_bh(&queue_lock
);
141 __ipq_flush(cmpfn
, data
);
142 spin_unlock_bh(&queue_lock
);
145 static struct sk_buff
*
146 ipq_build_packet_message(struct nf_queue_entry
*entry
, int *errp
)
148 sk_buff_data_t old_tail
;
152 struct ipq_packet_msg
*pmsg
;
153 struct nlmsghdr
*nlh
;
156 switch (ACCESS_ONCE(copy_mode
)) {
159 size
= NLMSG_SPACE(sizeof(*pmsg
));
162 case IPQ_COPY_PACKET
:
163 if (entry
->skb
->ip_summed
== CHECKSUM_PARTIAL
&&
164 (*errp
= skb_checksum_help(entry
->skb
)))
167 data_len
= ACCESS_ONCE(copy_range
);
168 if (data_len
== 0 || data_len
> entry
->skb
->len
)
169 data_len
= entry
->skb
->len
;
171 size
= NLMSG_SPACE(sizeof(*pmsg
) + data_len
);
179 skb
= alloc_skb(size
, GFP_ATOMIC
);
183 old_tail
= skb
->tail
;
184 nlh
= NLMSG_PUT(skb
, 0, 0, IPQM_PACKET
, size
- sizeof(*nlh
));
185 pmsg
= NLMSG_DATA(nlh
);
186 memset(pmsg
, 0, sizeof(*pmsg
));
188 pmsg
->packet_id
= (unsigned long )entry
;
189 pmsg
->data_len
= data_len
;
190 tv
= ktime_to_timeval(entry
->skb
->tstamp
);
191 pmsg
->timestamp_sec
= tv
.tv_sec
;
192 pmsg
->timestamp_usec
= tv
.tv_usec
;
193 pmsg
->mark
= entry
->skb
->mark
;
194 pmsg
->hook
= entry
->hook
;
195 pmsg
->hw_protocol
= entry
->skb
->protocol
;
198 strcpy(pmsg
->indev_name
, entry
->indev
->name
);
200 pmsg
->indev_name
[0] = '\0';
203 strcpy(pmsg
->outdev_name
, entry
->outdev
->name
);
205 pmsg
->outdev_name
[0] = '\0';
207 if (entry
->indev
&& entry
->skb
->dev
&&
208 entry
->skb
->mac_header
!= entry
->skb
->network_header
) {
209 pmsg
->hw_type
= entry
->skb
->dev
->type
;
210 pmsg
->hw_addrlen
= dev_parse_header(entry
->skb
, pmsg
->hw_addr
);
214 if (skb_copy_bits(entry
->skb
, 0, pmsg
->payload
, data_len
))
217 nlh
->nlmsg_len
= skb
->tail
- old_tail
;
223 printk(KERN_ERR
"ip6_queue: error creating packet message\n");
228 ipq_enqueue_packet(struct nf_queue_entry
*entry
, unsigned int queuenum
)
230 int status
= -EINVAL
;
231 struct sk_buff
*nskb
;
233 if (copy_mode
== IPQ_COPY_NONE
)
236 nskb
= ipq_build_packet_message(entry
, &status
);
240 spin_lock_bh(&queue_lock
);
243 goto err_out_free_nskb
;
245 if (queue_total
>= queue_maxlen
) {
249 printk (KERN_WARNING
"ip6_queue: fill at %d entries, "
250 "dropping packet(s). Dropped: %d\n", queue_total
,
252 goto err_out_free_nskb
;
255 /* netlink_unicast will either free the nskb or attach it to a socket */
256 status
= netlink_unicast(ipqnl
, nskb
, peer_pid
, MSG_DONTWAIT
);
258 queue_user_dropped
++;
262 __ipq_enqueue_entry(entry
);
264 spin_unlock_bh(&queue_lock
);
271 spin_unlock_bh(&queue_lock
);
276 ipq_mangle_ipv6(ipq_verdict_msg_t
*v
, struct nf_queue_entry
*e
)
279 struct ipv6hdr
*user_iph
= (struct ipv6hdr
*)v
->payload
;
280 struct sk_buff
*nskb
;
282 if (v
->data_len
< sizeof(*user_iph
))
284 diff
= v
->data_len
- e
->skb
->len
;
286 if (pskb_trim(e
->skb
, v
->data_len
))
288 } else if (diff
> 0) {
289 if (v
->data_len
> 0xFFFF)
291 if (diff
> skb_tailroom(e
->skb
)) {
292 nskb
= skb_copy_expand(e
->skb
, skb_headroom(e
->skb
),
295 printk(KERN_WARNING
"ip6_queue: OOM "
296 "in mangle, dropping packet\n");
302 skb_put(e
->skb
, diff
);
304 if (!skb_make_writable(e
->skb
, v
->data_len
))
306 skb_copy_to_linear_data(e
->skb
, v
->payload
, v
->data_len
);
307 e
->skb
->ip_summed
= CHECKSUM_NONE
;
313 ipq_set_verdict(struct ipq_verdict_msg
*vmsg
, unsigned int len
)
315 struct nf_queue_entry
*entry
;
317 if (vmsg
->value
> NF_MAX_VERDICT
|| vmsg
->value
== NF_STOLEN
)
320 entry
= ipq_find_dequeue_entry(vmsg
->id
);
324 int verdict
= vmsg
->value
;
326 if (vmsg
->data_len
&& vmsg
->data_len
== len
)
327 if (ipq_mangle_ipv6(vmsg
, entry
) < 0)
330 nf_reinject(entry
, verdict
);
336 ipq_set_mode(unsigned char mode
, unsigned int range
)
340 spin_lock_bh(&queue_lock
);
341 status
= __ipq_set_mode(mode
, range
);
342 spin_unlock_bh(&queue_lock
);
347 ipq_receive_peer(struct ipq_peer_msg
*pmsg
,
348 unsigned char type
, unsigned int len
)
352 if (len
< sizeof(*pmsg
))
357 status
= ipq_set_mode(pmsg
->msg
.mode
.value
,
358 pmsg
->msg
.mode
.range
);
362 status
= ipq_set_verdict(&pmsg
->msg
.verdict
,
363 len
- sizeof(*pmsg
));
372 dev_cmp(struct nf_queue_entry
*entry
, unsigned long ifindex
)
375 if (entry
->indev
->ifindex
== ifindex
)
379 if (entry
->outdev
->ifindex
== ifindex
)
381 #ifdef CONFIG_BRIDGE_NETFILTER
382 if (entry
->skb
->nf_bridge
) {
383 if (entry
->skb
->nf_bridge
->physindev
&&
384 entry
->skb
->nf_bridge
->physindev
->ifindex
== ifindex
)
386 if (entry
->skb
->nf_bridge
->physoutdev
&&
387 entry
->skb
->nf_bridge
->physoutdev
->ifindex
== ifindex
)
395 ipq_dev_drop(int ifindex
)
397 ipq_flush(dev_cmp
, ifindex
);
400 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
403 __ipq_rcv_skb(struct sk_buff
*skb
)
405 int status
, type
, pid
, flags
;
406 unsigned int nlmsglen
, skblen
;
407 struct nlmsghdr
*nlh
;
408 bool enable_timestamp
= false;
411 if (skblen
< sizeof(*nlh
))
414 nlh
= nlmsg_hdr(skb
);
415 nlmsglen
= nlh
->nlmsg_len
;
416 if (nlmsglen
< sizeof(*nlh
) || skblen
< nlmsglen
)
419 pid
= nlh
->nlmsg_pid
;
420 flags
= nlh
->nlmsg_flags
;
422 if(pid
<= 0 || !(flags
& NLM_F_REQUEST
) || flags
& NLM_F_MULTI
)
423 RCV_SKB_FAIL(-EINVAL
);
425 if (flags
& MSG_TRUNC
)
426 RCV_SKB_FAIL(-ECOMM
);
428 type
= nlh
->nlmsg_type
;
429 if (type
< NLMSG_NOOP
|| type
>= IPQM_MAX
)
430 RCV_SKB_FAIL(-EINVAL
);
432 if (type
<= IPQM_BASE
)
435 if (!capable(CAP_NET_ADMIN
))
436 RCV_SKB_FAIL(-EPERM
);
438 spin_lock_bh(&queue_lock
);
441 if (peer_pid
!= pid
) {
442 spin_unlock_bh(&queue_lock
);
443 RCV_SKB_FAIL(-EBUSY
);
446 enable_timestamp
= true;
450 spin_unlock_bh(&queue_lock
);
451 if (enable_timestamp
)
452 net_enable_timestamp();
454 status
= ipq_receive_peer(NLMSG_DATA(nlh
), type
,
455 nlmsglen
- NLMSG_LENGTH(0));
457 RCV_SKB_FAIL(status
);
459 if (flags
& NLM_F_ACK
)
460 netlink_ack(skb
, nlh
, 0);
464 ipq_rcv_skb(struct sk_buff
*skb
)
466 mutex_lock(&ipqnl_mutex
);
468 mutex_unlock(&ipqnl_mutex
);
472 ipq_rcv_dev_event(struct notifier_block
*this,
473 unsigned long event
, void *ptr
)
475 struct net_device
*dev
= ptr
;
477 if (!net_eq(dev_net(dev
), &init_net
))
480 /* Drop any packets associated with the downed device */
481 if (event
== NETDEV_DOWN
)
482 ipq_dev_drop(dev
->ifindex
);
486 static struct notifier_block ipq_dev_notifier
= {
487 .notifier_call
= ipq_rcv_dev_event
,
491 ipq_rcv_nl_event(struct notifier_block
*this,
492 unsigned long event
, void *ptr
)
494 struct netlink_notify
*n
= ptr
;
496 if (event
== NETLINK_URELEASE
&& n
->protocol
== NETLINK_IP6_FW
) {
497 spin_lock_bh(&queue_lock
);
498 if ((net_eq(n
->net
, &init_net
)) && (n
->pid
== peer_pid
))
500 spin_unlock_bh(&queue_lock
);
505 static struct notifier_block ipq_nl_notifier
= {
506 .notifier_call
= ipq_rcv_nl_event
,
510 static struct ctl_table_header
*ipq_sysctl_header
;
512 static ctl_table ipq_table
[] = {
514 .procname
= NET_IPQ_QMAX_NAME
,
515 .data
= &queue_maxlen
,
516 .maxlen
= sizeof(queue_maxlen
),
518 .proc_handler
= proc_dointvec
524 #ifdef CONFIG_PROC_FS
525 static int ip6_queue_show(struct seq_file
*m
, void *v
)
527 spin_lock_bh(&queue_lock
);
533 "Queue length : %u\n"
534 "Queue max. length : %u\n"
535 "Queue dropped : %u\n"
536 "Netfilter dropped : %u\n",
545 spin_unlock_bh(&queue_lock
);
549 static int ip6_queue_open(struct inode
*inode
, struct file
*file
)
551 return single_open(file
, ip6_queue_show
, NULL
);
554 static const struct file_operations ip6_queue_proc_fops
= {
555 .open
= ip6_queue_open
,
558 .release
= single_release
,
559 .owner
= THIS_MODULE
,
563 static const struct nf_queue_handler nfqh
= {
565 .outfn
= &ipq_enqueue_packet
,
568 static int __init
ip6_queue_init(void)
570 int status
= -ENOMEM
;
571 struct proc_dir_entry
*proc __maybe_unused
;
573 netlink_register_notifier(&ipq_nl_notifier
);
574 ipqnl
= netlink_kernel_create(&init_net
, NETLINK_IP6_FW
, 0,
575 ipq_rcv_skb
, NULL
, THIS_MODULE
);
577 printk(KERN_ERR
"ip6_queue: failed to create netlink socket\n");
578 goto cleanup_netlink_notifier
;
581 #ifdef CONFIG_PROC_FS
582 proc
= proc_create(IPQ_PROC_FS_NAME
, 0, init_net
.proc_net
,
583 &ip6_queue_proc_fops
);
585 printk(KERN_ERR
"ip6_queue: failed to create proc entry\n");
589 register_netdevice_notifier(&ipq_dev_notifier
);
591 ipq_sysctl_header
= register_sysctl_paths(net_ipv6_ctl_path
, ipq_table
);
593 status
= nf_register_queue_handler(NFPROTO_IPV6
, &nfqh
);
595 printk(KERN_ERR
"ip6_queue: failed to register queue handler\n");
602 unregister_sysctl_table(ipq_sysctl_header
);
604 unregister_netdevice_notifier(&ipq_dev_notifier
);
605 proc_net_remove(&init_net
, IPQ_PROC_FS_NAME
);
607 cleanup_ipqnl
: __maybe_unused
608 netlink_kernel_release(ipqnl
);
609 mutex_lock(&ipqnl_mutex
);
610 mutex_unlock(&ipqnl_mutex
);
612 cleanup_netlink_notifier
:
613 netlink_unregister_notifier(&ipq_nl_notifier
);
617 static void __exit
ip6_queue_fini(void)
619 nf_unregister_queue_handlers(&nfqh
);
624 unregister_sysctl_table(ipq_sysctl_header
);
626 unregister_netdevice_notifier(&ipq_dev_notifier
);
627 proc_net_remove(&init_net
, IPQ_PROC_FS_NAME
);
629 netlink_kernel_release(ipqnl
);
630 mutex_lock(&ipqnl_mutex
);
631 mutex_unlock(&ipqnl_mutex
);
633 netlink_unregister_notifier(&ipq_nl_notifier
);
636 MODULE_DESCRIPTION("IPv6 packet queue handler");
637 MODULE_LICENSE("GPL");
638 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_IP6_FW
);
640 module_init(ip6_queue_init
);
641 module_exit(ip6_queue_fini
);