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 <net/net_namespace.h>
31 #include <net/ip6_route.h>
32 #include <net/netfilter/nf_queue.h>
33 #include <linux/netfilter_ipv4/ip_queue.h>
34 #include <linux/netfilter_ipv4/ip_tables.h>
35 #include <linux/netfilter_ipv6/ip6_tables.h>
37 #define IPQ_QMAX_DEFAULT 1024
38 #define IPQ_PROC_FS_NAME "ip6_queue"
39 #define NET_IPQ_QMAX 2088
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_RWLOCK(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)
78 if (copy_range > 0xFFFF)
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 write_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 write_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 write_lock_bh(&queue_lock);
141 __ipq_flush(cmpfn, data);
142 write_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 read_lock_bh(&queue_lock);
161 size = NLMSG_SPACE(sizeof(*pmsg));
165 case IPQ_COPY_PACKET:
166 if ((entry->skb->ip_summed == CHECKSUM_PARTIAL ||
167 entry->skb->ip_summed == CHECKSUM_COMPLETE) &&
168 (*errp = skb_checksum_help(entry->skb))) {
169 read_unlock_bh(&queue_lock);
172 if (copy_range == 0 || copy_range > entry->skb->len)
173 data_len = entry->skb->len;
175 data_len = copy_range;
177 size = NLMSG_SPACE(sizeof(*pmsg) + data_len);
182 read_unlock_bh(&queue_lock);
186 read_unlock_bh(&queue_lock);
188 skb = alloc_skb(size, GFP_ATOMIC);
192 old_tail = skb->tail;
193 nlh = NLMSG_PUT(skb, 0, 0, IPQM_PACKET, size - sizeof(*nlh));
194 pmsg = NLMSG_DATA(nlh);
195 memset(pmsg, 0, sizeof(*pmsg));
197 pmsg->packet_id = (unsigned long )entry;
198 pmsg->data_len = data_len;
199 tv = ktime_to_timeval(entry->skb->tstamp);
200 pmsg->timestamp_sec = tv.tv_sec;
201 pmsg->timestamp_usec = tv.tv_usec;
202 pmsg->mark = entry->skb->mark;
203 pmsg->hook = entry->hook;
204 pmsg->hw_protocol = entry->skb->protocol;
207 strcpy(pmsg->indev_name, entry->indev->name);
209 pmsg->indev_name[0] = '\0';
212 strcpy(pmsg->outdev_name, entry->outdev->name);
214 pmsg->outdev_name[0] = '\0';
216 if (entry->indev && entry->skb->dev) {
217 pmsg->hw_type = entry->skb->dev->type;
218 pmsg->hw_addrlen = dev_parse_header(entry->skb, pmsg->hw_addr);
222 if (skb_copy_bits(entry->skb, 0, pmsg->payload, data_len))
225 nlh->nlmsg_len = skb->tail - old_tail;
232 printk(KERN_ERR "ip6_queue: error creating packet message\n");
237 ipq_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
239 int status = -EINVAL;
240 struct sk_buff *nskb;
242 if (copy_mode == IPQ_COPY_NONE)
245 nskb = ipq_build_packet_message(entry, &status);
249 write_lock_bh(&queue_lock);
252 goto err_out_free_nskb;
254 if (queue_total >= queue_maxlen) {
258 printk (KERN_WARNING "ip6_queue: fill at %d entries, "
259 "dropping packet(s). Dropped: %d\n", queue_total,
261 goto err_out_free_nskb;
264 /* netlink_unicast will either free the nskb or attach it to a socket */
265 status = netlink_unicast(ipqnl, nskb, peer_pid, MSG_DONTWAIT);
267 queue_user_dropped++;
271 __ipq_enqueue_entry(entry);
273 write_unlock_bh(&queue_lock);
280 write_unlock_bh(&queue_lock);
285 ipq_mangle_ipv6(ipq_verdict_msg_t *v, struct nf_queue_entry *e)
288 struct ipv6hdr *user_iph = (struct ipv6hdr *)v->payload;
289 struct sk_buff *nskb;
291 if (v->data_len < sizeof(*user_iph))
293 diff = v->data_len - e->skb->len;
295 if (pskb_trim(e->skb, v->data_len))
297 } else if (diff > 0) {
298 if (v->data_len > 0xFFFF)
300 if (diff > skb_tailroom(e->skb)) {
301 nskb = skb_copy_expand(e->skb, 0,
302 diff - skb_tailroom(e->skb),
305 printk(KERN_WARNING "ip6_queue: OOM "
306 "in mangle, dropping packet\n");
312 skb_put(e->skb, diff);
314 if (!skb_make_writable(e->skb, v->data_len))
316 skb_copy_to_linear_data(e->skb, v->payload, v->data_len);
317 e->skb->ip_summed = CHECKSUM_NONE;
323 ipq_set_verdict(struct ipq_verdict_msg *vmsg, unsigned int len)
325 struct nf_queue_entry *entry;
327 if (vmsg->value > NF_MAX_VERDICT)
330 entry = ipq_find_dequeue_entry(vmsg->id);
334 int verdict = vmsg->value;
336 if (vmsg->data_len && vmsg->data_len == len)
337 if (ipq_mangle_ipv6(vmsg, entry) < 0)
340 nf_reinject(entry, verdict);
346 ipq_set_mode(unsigned char mode, unsigned int range)
350 write_lock_bh(&queue_lock);
351 status = __ipq_set_mode(mode, range);
352 write_unlock_bh(&queue_lock);
357 ipq_receive_peer(struct ipq_peer_msg *pmsg,
358 unsigned char type, unsigned int len)
362 if (len < sizeof(*pmsg))
367 status = ipq_set_mode(pmsg->msg.mode.value,
368 pmsg->msg.mode.range);
372 if (pmsg->msg.verdict.value > NF_MAX_VERDICT)
375 status = ipq_set_verdict(&pmsg->msg.verdict,
376 len - sizeof(*pmsg));
385 dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
388 if (entry->indev->ifindex == ifindex)
392 if (entry->outdev->ifindex == ifindex)
394 #ifdef CONFIG_BRIDGE_NETFILTER
395 if (entry->skb->nf_bridge) {
396 if (entry->skb->nf_bridge->physindev &&
397 entry->skb->nf_bridge->physindev->ifindex == ifindex)
399 if (entry->skb->nf_bridge->physoutdev &&
400 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
408 ipq_dev_drop(int ifindex)
410 ipq_flush(dev_cmp, ifindex);
413 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
416 __ipq_rcv_skb(struct sk_buff *skb)
418 int status, type, pid, flags, nlmsglen, skblen;
419 struct nlmsghdr *nlh;
422 if (skblen < sizeof(*nlh))
425 nlh = nlmsg_hdr(skb);
426 nlmsglen = nlh->nlmsg_len;
427 if (nlmsglen < sizeof(*nlh) || skblen < nlmsglen)
430 pid = nlh->nlmsg_pid;
431 flags = nlh->nlmsg_flags;
433 if(pid <= 0 || !(flags & NLM_F_REQUEST) || flags & NLM_F_MULTI)
434 RCV_SKB_FAIL(-EINVAL);
436 if (flags & MSG_TRUNC)
437 RCV_SKB_FAIL(-ECOMM);
439 type = nlh->nlmsg_type;
440 if (type < NLMSG_NOOP || type >= IPQM_MAX)
441 RCV_SKB_FAIL(-EINVAL);
443 if (type <= IPQM_BASE)
446 if (security_netlink_recv(skb, CAP_NET_ADMIN))
447 RCV_SKB_FAIL(-EPERM);
449 write_lock_bh(&queue_lock);
452 if (peer_pid != pid) {
453 write_unlock_bh(&queue_lock);
454 RCV_SKB_FAIL(-EBUSY);
457 net_enable_timestamp();
461 write_unlock_bh(&queue_lock);
463 status = ipq_receive_peer(NLMSG_DATA(nlh), type,
464 nlmsglen - NLMSG_LENGTH(0));
466 RCV_SKB_FAIL(status);
468 if (flags & NLM_F_ACK)
469 netlink_ack(skb, nlh, 0);
474 ipq_rcv_skb(struct sk_buff *skb)
476 mutex_lock(&ipqnl_mutex);
478 mutex_unlock(&ipqnl_mutex);
482 ipq_rcv_dev_event(struct notifier_block *this,
483 unsigned long event, void *ptr)
485 struct net_device *dev = ptr;
487 if (dev_net(dev) != &init_net)
490 /* Drop any packets associated with the downed device */
491 if (event == NETDEV_DOWN)
492 ipq_dev_drop(dev->ifindex);
496 static struct notifier_block ipq_dev_notifier = {
497 .notifier_call = ipq_rcv_dev_event,
501 ipq_rcv_nl_event(struct notifier_block *this,
502 unsigned long event, void *ptr)
504 struct netlink_notify *n = ptr;
506 if (event == NETLINK_URELEASE &&
507 n->protocol == NETLINK_IP6_FW && n->pid) {
508 write_lock_bh(&queue_lock);
509 if ((n->net == &init_net) && (n->pid == peer_pid))
511 write_unlock_bh(&queue_lock);
516 static struct notifier_block ipq_nl_notifier = {
517 .notifier_call = ipq_rcv_nl_event,
521 static struct ctl_table_header *ipq_sysctl_header;
523 static ctl_table ipq_table[] = {
525 .ctl_name = NET_IPQ_QMAX,
526 .procname = NET_IPQ_QMAX_NAME,
527 .data = &queue_maxlen,
528 .maxlen = sizeof(queue_maxlen),
530 .proc_handler = proc_dointvec
536 #ifdef CONFIG_PROC_FS
537 static int ip6_queue_show(struct seq_file *m, void *v)
539 read_lock_bh(&queue_lock);
545 "Queue length : %u\n"
546 "Queue max. length : %u\n"
547 "Queue dropped : %u\n"
548 "Netfilter dropped : %u\n",
557 read_unlock_bh(&queue_lock);
561 static int ip6_queue_open(struct inode *inode, struct file *file)
563 return single_open(file, ip6_queue_show, NULL);
566 static const struct file_operations ip6_queue_proc_fops = {
567 .open = ip6_queue_open,
570 .release = single_release,
571 .owner = THIS_MODULE,
575 static const struct nf_queue_handler nfqh = {
577 .outfn = &ipq_enqueue_packet,
580 static int __init ip6_queue_init(void)
582 int status = -ENOMEM;
583 struct proc_dir_entry *proc __maybe_unused;
585 netlink_register_notifier(&ipq_nl_notifier);
586 ipqnl = netlink_kernel_create(&init_net, NETLINK_IP6_FW, 0,
587 ipq_rcv_skb, NULL, THIS_MODULE);
589 printk(KERN_ERR "ip6_queue: failed to create netlink socket\n");
590 goto cleanup_netlink_notifier;
593 #ifdef CONFIG_PROC_FS
594 proc = create_proc_entry(IPQ_PROC_FS_NAME, 0, init_net.proc_net);
596 proc->owner = THIS_MODULE;
597 proc->proc_fops = &ip6_queue_proc_fops;
599 printk(KERN_ERR "ip6_queue: failed to create proc entry\n");
603 register_netdevice_notifier(&ipq_dev_notifier);
605 ipq_sysctl_header = register_sysctl_paths(net_ipv6_ctl_path, ipq_table);
607 status = nf_register_queue_handler(PF_INET6, &nfqh);
609 printk(KERN_ERR "ip6_queue: failed to register queue handler\n");
616 unregister_sysctl_table(ipq_sysctl_header);
618 unregister_netdevice_notifier(&ipq_dev_notifier);
619 proc_net_remove(&init_net, IPQ_PROC_FS_NAME);
621 cleanup_ipqnl: __maybe_unused
622 netlink_kernel_release(ipqnl);
623 mutex_lock(&ipqnl_mutex);
624 mutex_unlock(&ipqnl_mutex);
626 cleanup_netlink_notifier:
627 netlink_unregister_notifier(&ipq_nl_notifier);
631 static void __exit ip6_queue_fini(void)
633 nf_unregister_queue_handlers(&nfqh);
638 unregister_sysctl_table(ipq_sysctl_header);
640 unregister_netdevice_notifier(&ipq_dev_notifier);
641 proc_net_remove(&init_net, IPQ_PROC_FS_NAME);
643 netlink_kernel_release(ipqnl);
644 mutex_lock(&ipqnl_mutex);
645 mutex_unlock(&ipqnl_mutex);
647 netlink_unregister_notifier(&ipq_nl_notifier);
650 MODULE_DESCRIPTION("IPv6 packet queue handler");
651 MODULE_LICENSE("GPL");
653 module_init(ip6_queue_init);
654 module_exit(ip6_queue_fini);