1 // SPDX-License-Identifier: GPL-2.0-only
3 * This is a module which is used for logging packets to userspace via
9 * Based on the old ipv4-only ipt_ULOG.c:
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/init.h>
20 #include <linux/ipv6.h>
21 #include <linux/netdevice.h>
22 #include <linux/netfilter.h>
23 #include <linux/netfilter_bridge.h>
24 #include <net/netlink.h>
25 #include <linux/netfilter/nfnetlink.h>
26 #include <linux/netfilter/nfnetlink_log.h>
27 #include <linux/netfilter/nf_conntrack_common.h>
28 #include <linux/spinlock.h>
29 #include <linux/sysctl.h>
30 #include <linux/proc_fs.h>
31 #include <linux/security.h>
32 #include <linux/list.h>
33 #include <linux/slab.h>
35 #include <net/netfilter/nf_log.h>
36 #include <net/netns/generic.h>
38 #include <linux/atomic.h>
39 #include <linux/refcount.h>
42 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
43 #include "../bridge/br_private.h"
46 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
47 #include <net/netfilter/nf_conntrack.h>
50 #define NFULNL_COPY_DISABLED 0xff
51 #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
52 #define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
53 #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
54 /* max packet size is limited by 16-bit struct nfattr nfa_len field */
55 #define NFULNL_COPY_RANGE_MAX (0xFFFF - NLA_HDRLEN)
57 #define PRINTR(x, args...) do { if (net_ratelimit()) \
58 printk(x, ## args); } while (0);
60 struct nfulnl_instance {
61 struct hlist_node hlist; /* global list of instances */
63 refcount_t use; /* use count */
65 unsigned int qlen; /* number of nlmsgs in skb */
66 struct sk_buff *skb; /* pre-allocatd skb */
67 struct timer_list timer;
69 netns_tracker ns_tracker;
70 struct user_namespace *peer_user_ns; /* User namespace of the peer process */
71 u32 peer_portid; /* PORTID of the peer process */
73 /* configurable parameters */
74 unsigned int flushtimeout; /* timeout until queue flush */
75 unsigned int nlbufsiz; /* netlink buffer allocation size */
76 unsigned int qthreshold; /* threshold of the queue */
78 u_int32_t seq; /* instance-local sequential counter */
79 u_int16_t group_num; /* number of this queue */
85 #define INSTANCE_BUCKETS 16
87 static unsigned int nfnl_log_net_id __read_mostly;
90 spinlock_t instances_lock;
91 struct hlist_head instance_table[INSTANCE_BUCKETS];
95 static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
97 return net_generic(net, nfnl_log_net_id);
100 static inline u_int8_t instance_hashfn(u_int16_t group_num)
102 return ((group_num & 0xff) % INSTANCE_BUCKETS);
105 static struct nfulnl_instance *
106 __instance_lookup(const struct nfnl_log_net *log, u16 group_num)
108 const struct hlist_head *head;
109 struct nfulnl_instance *inst;
111 head = &log->instance_table[instance_hashfn(group_num)];
112 hlist_for_each_entry_rcu(inst, head, hlist) {
113 if (inst->group_num == group_num)
120 instance_get(struct nfulnl_instance *inst)
122 refcount_inc(&inst->use);
125 static struct nfulnl_instance *
126 instance_lookup_get_rcu(const struct nfnl_log_net *log, u16 group_num)
128 struct nfulnl_instance *inst;
130 inst = __instance_lookup(log, group_num);
131 if (inst && !refcount_inc_not_zero(&inst->use))
137 static struct nfulnl_instance *
138 instance_lookup_get(const struct nfnl_log_net *log, u16 group_num)
140 struct nfulnl_instance *inst;
143 inst = instance_lookup_get_rcu(log, group_num);
149 static void nfulnl_instance_free_rcu(struct rcu_head *head)
151 struct nfulnl_instance *inst =
152 container_of(head, struct nfulnl_instance, rcu);
154 put_net_track(inst->net, &inst->ns_tracker);
156 module_put(THIS_MODULE);
160 instance_put(struct nfulnl_instance *inst)
162 if (inst && refcount_dec_and_test(&inst->use))
163 call_rcu(&inst->rcu, nfulnl_instance_free_rcu);
166 static void nfulnl_timer(struct timer_list *t);
168 static struct nfulnl_instance *
169 instance_create(struct net *net, u_int16_t group_num,
170 u32 portid, struct user_namespace *user_ns)
172 struct nfulnl_instance *inst;
173 struct nfnl_log_net *log = nfnl_log_pernet(net);
176 spin_lock_bh(&log->instances_lock);
177 if (__instance_lookup(log, group_num)) {
182 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
188 if (!try_module_get(THIS_MODULE)) {
194 INIT_HLIST_NODE(&inst->hlist);
195 spin_lock_init(&inst->lock);
196 /* needs to be two, since we _put() after creation */
197 refcount_set(&inst->use, 2);
199 timer_setup(&inst->timer, nfulnl_timer, 0);
201 inst->net = get_net_track(net, &inst->ns_tracker, GFP_ATOMIC);
202 inst->peer_user_ns = user_ns;
203 inst->peer_portid = portid;
204 inst->group_num = group_num;
206 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
207 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
208 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
209 inst->copy_mode = NFULNL_COPY_PACKET;
210 inst->copy_range = NFULNL_COPY_RANGE_MAX;
212 hlist_add_head_rcu(&inst->hlist,
213 &log->instance_table[instance_hashfn(group_num)]);
216 spin_unlock_bh(&log->instances_lock);
221 spin_unlock_bh(&log->instances_lock);
225 static void __nfulnl_flush(struct nfulnl_instance *inst);
227 /* called with BH disabled */
229 __instance_destroy(struct nfulnl_instance *inst)
231 /* first pull it out of the global list */
232 hlist_del_rcu(&inst->hlist);
234 /* then flush all pending packets from skb */
236 spin_lock(&inst->lock);
238 /* lockless readers wont be able to use us */
239 inst->copy_mode = NFULNL_COPY_DISABLED;
242 __nfulnl_flush(inst);
243 spin_unlock(&inst->lock);
245 /* and finally put the refcount */
250 instance_destroy(struct nfnl_log_net *log,
251 struct nfulnl_instance *inst)
253 spin_lock_bh(&log->instances_lock);
254 __instance_destroy(inst);
255 spin_unlock_bh(&log->instances_lock);
259 nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
264 spin_lock_bh(&inst->lock);
267 case NFULNL_COPY_NONE:
268 case NFULNL_COPY_META:
269 inst->copy_mode = mode;
270 inst->copy_range = 0;
273 case NFULNL_COPY_PACKET:
274 inst->copy_mode = mode;
276 range = NFULNL_COPY_RANGE_MAX;
277 inst->copy_range = min_t(unsigned int,
278 range, NFULNL_COPY_RANGE_MAX);
286 spin_unlock_bh(&inst->lock);
292 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
296 spin_lock_bh(&inst->lock);
297 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
299 else if (nlbufsiz > 131072)
302 inst->nlbufsiz = nlbufsiz;
305 spin_unlock_bh(&inst->lock);
311 nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
313 spin_lock_bh(&inst->lock);
314 inst->flushtimeout = timeout;
315 spin_unlock_bh(&inst->lock);
319 nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
321 spin_lock_bh(&inst->lock);
322 inst->qthreshold = qthresh;
323 spin_unlock_bh(&inst->lock);
327 nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
329 spin_lock_bh(&inst->lock);
331 spin_unlock_bh(&inst->lock);
336 static struct sk_buff *
337 nfulnl_alloc_skb(struct net *net, u32 peer_portid, unsigned int inst_size,
338 unsigned int pkt_size)
343 /* alloc skb which should be big enough for a whole multipart
344 * message. WARNING: has to be <= 128k due to slab restrictions */
346 n = max(inst_size, pkt_size);
347 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
350 /* try to allocate only as much as we need for current
353 skb = alloc_skb(pkt_size, GFP_ATOMIC);
361 __nfulnl_send(struct nfulnl_instance *inst)
363 if (inst->qlen > 1) {
364 struct nlmsghdr *nlh = nlmsg_put(inst->skb, 0, 0,
366 sizeof(struct nfgenmsg),
368 if (WARN_ONCE(!nlh, "bad nlskb size: %u, tailroom %d\n",
369 inst->skb->len, skb_tailroom(inst->skb))) {
370 kfree_skb(inst->skb);
374 nfnetlink_unicast(inst->skb, inst->net, inst->peer_portid);
381 __nfulnl_flush(struct nfulnl_instance *inst)
383 /* timer holds a reference */
384 if (del_timer(&inst->timer))
391 nfulnl_timer(struct timer_list *t)
393 struct nfulnl_instance *inst = from_timer(inst, t, timer);
395 spin_lock_bh(&inst->lock);
398 spin_unlock_bh(&inst->lock);
402 static u32 nfulnl_get_bridge_size(const struct sk_buff *skb)
406 if (!skb_mac_header_was_set(skb))
409 if (skb_vlan_tag_present(skb)) {
410 size += nla_total_size(0); /* nested */
411 size += nla_total_size(sizeof(u16)); /* id */
412 size += nla_total_size(sizeof(u16)); /* tag */
415 if (skb->network_header > skb->mac_header)
416 size += nla_total_size(skb->network_header - skb->mac_header);
421 static int nfulnl_put_bridge(struct nfulnl_instance *inst, const struct sk_buff *skb)
423 if (!skb_mac_header_was_set(skb))
426 if (skb_vlan_tag_present(skb)) {
429 nest = nla_nest_start(inst->skb, NFULA_VLAN);
431 goto nla_put_failure;
433 if (nla_put_be16(inst->skb, NFULA_VLAN_TCI, htons(skb->vlan_tci)) ||
434 nla_put_be16(inst->skb, NFULA_VLAN_PROTO, skb->vlan_proto))
435 goto nla_put_failure;
437 nla_nest_end(inst->skb, nest);
440 if (skb->mac_header < skb->network_header) {
441 int len = (int)(skb->network_header - skb->mac_header);
443 if (nla_put(inst->skb, NFULA_L2HDR, len, skb_mac_header(skb)))
444 goto nla_put_failure;
453 /* This is an inline function, we don't really care about a long
454 * list of arguments */
456 __build_packet_message(struct nfnl_log_net *log,
457 struct nfulnl_instance *inst,
458 const struct sk_buff *skb,
459 unsigned int data_len,
461 unsigned int hooknum,
462 const struct net_device *indev,
463 const struct net_device *outdev,
464 const char *prefix, unsigned int plen,
465 const struct nfnl_ct_hook *nfnl_ct,
466 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
468 struct nfulnl_msg_packet_hdr pmsg;
469 struct nlmsghdr *nlh;
470 sk_buff_data_t old_tail = inst->skb->tail;
472 const unsigned char *hwhdrp;
475 nlh = nfnl_msg_put(inst->skb, 0, 0,
476 nfnl_msg_type(NFNL_SUBSYS_ULOG, NFULNL_MSG_PACKET),
477 0, pf, NFNETLINK_V0, htons(inst->group_num));
481 memset(&pmsg, 0, sizeof(pmsg));
482 pmsg.hw_protocol = skb->protocol;
485 if (nla_put(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg))
486 goto nla_put_failure;
489 nla_put(inst->skb, NFULA_PREFIX, plen, prefix))
490 goto nla_put_failure;
493 #if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
494 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
495 htonl(indev->ifindex)))
496 goto nla_put_failure;
498 if (pf == PF_BRIDGE) {
499 /* Case 1: outdev is physical input device, we need to
500 * look for bridge group (when called from
501 * netfilter_bridge) */
502 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
503 htonl(indev->ifindex)) ||
504 /* this is the bridge group "brX" */
505 /* rcu_read_lock()ed by nf_hook_thresh or
508 nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
509 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
510 goto nla_put_failure;
512 struct net_device *physindev;
514 /* Case 2: indev is bridge group, we need to look for
515 * physical device (when called from ipv4) */
516 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
517 htonl(indev->ifindex)))
518 goto nla_put_failure;
520 physindev = nf_bridge_get_physindev(skb);
522 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
523 htonl(physindev->ifindex)))
524 goto nla_put_failure;
530 #if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
531 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
532 htonl(outdev->ifindex)))
533 goto nla_put_failure;
535 if (pf == PF_BRIDGE) {
536 /* Case 1: outdev is physical output device, we need to
537 * look for bridge group (when called from
538 * netfilter_bridge) */
539 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
540 htonl(outdev->ifindex)) ||
541 /* this is the bridge group "brX" */
542 /* rcu_read_lock()ed by nf_hook_thresh or
545 nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
546 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
547 goto nla_put_failure;
549 struct net_device *physoutdev;
551 /* Case 2: indev is a bridge group, we need to look
552 * for physical device (when called from ipv4) */
553 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
554 htonl(outdev->ifindex)))
555 goto nla_put_failure;
557 physoutdev = nf_bridge_get_physoutdev(skb);
559 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
560 htonl(physoutdev->ifindex)))
561 goto nla_put_failure;
567 nla_put_be32(inst->skb, NFULA_MARK, htonl(skb->mark)))
568 goto nla_put_failure;
570 if (indev && skb->dev &&
571 skb_mac_header_was_set(skb) &&
572 skb_mac_header_len(skb) != 0) {
573 struct nfulnl_msg_packet_hw phw;
576 memset(&phw, 0, sizeof(phw));
577 len = dev_parse_header(skb, phw.hw_addr);
579 phw.hw_addrlen = htons(len);
580 if (nla_put(inst->skb, NFULA_HWADDR, sizeof(phw), &phw))
581 goto nla_put_failure;
585 if (indev && skb_mac_header_was_set(skb)) {
586 if (nla_put_be16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type)) ||
587 nla_put_be16(inst->skb, NFULA_HWLEN,
588 htons(skb->dev->hard_header_len)))
589 goto nla_put_failure;
591 hwhdrp = skb_mac_header(skb);
593 if (skb->dev->type == ARPHRD_SIT)
596 if (hwhdrp >= skb->head &&
597 nla_put(inst->skb, NFULA_HWHEADER,
598 skb->dev->hard_header_len, hwhdrp))
599 goto nla_put_failure;
602 tstamp = skb_tstamp_cond(skb, false);
603 if (hooknum <= NF_INET_FORWARD && tstamp) {
604 struct nfulnl_msg_packet_timestamp ts;
605 struct timespec64 kts = ktime_to_timespec64(tstamp);
606 ts.sec = cpu_to_be64(kts.tv_sec);
607 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC);
609 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
610 goto nla_put_failure;
615 if (sk && sk_fullsock(sk)) {
616 read_lock_bh(&sk->sk_callback_lock);
617 if (sk->sk_socket && sk->sk_socket->file) {
618 struct file *file = sk->sk_socket->file;
619 const struct cred *cred = file->f_cred;
620 struct user_namespace *user_ns = inst->peer_user_ns;
621 __be32 uid = htonl(from_kuid_munged(user_ns, cred->fsuid));
622 __be32 gid = htonl(from_kgid_munged(user_ns, cred->fsgid));
623 read_unlock_bh(&sk->sk_callback_lock);
624 if (nla_put_be32(inst->skb, NFULA_UID, uid) ||
625 nla_put_be32(inst->skb, NFULA_GID, gid))
626 goto nla_put_failure;
628 read_unlock_bh(&sk->sk_callback_lock);
631 /* local sequence number */
632 if ((inst->flags & NFULNL_CFG_F_SEQ) &&
633 nla_put_be32(inst->skb, NFULA_SEQ, htonl(inst->seq++)))
634 goto nla_put_failure;
636 /* global sequence number */
637 if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
638 nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
639 htonl(atomic_inc_return(&log->global_seq))))
640 goto nla_put_failure;
642 if (ct && nfnl_ct->build(inst->skb, ct, ctinfo,
643 NFULA_CT, NFULA_CT_INFO) < 0)
644 goto nla_put_failure;
646 if ((pf == NFPROTO_NETDEV || pf == NFPROTO_BRIDGE) &&
647 nfulnl_put_bridge(inst, skb) < 0)
648 goto nla_put_failure;
652 int size = nla_attr_size(data_len);
654 if (skb_tailroom(inst->skb) < nla_total_size(data_len))
655 goto nla_put_failure;
657 nla = skb_put(inst->skb, nla_total_size(data_len));
658 nla->nla_type = NFULA_PAYLOAD;
661 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
665 nlh->nlmsg_len = inst->skb->tail - old_tail;
669 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
673 static const struct nf_loginfo default_loginfo = {
674 .type = NF_LOG_TYPE_ULOG,
684 /* log handler for internal netfilter logging api */
686 nfulnl_log_packet(struct net *net,
688 unsigned int hooknum,
689 const struct sk_buff *skb,
690 const struct net_device *in,
691 const struct net_device *out,
692 const struct nf_loginfo *li_user,
696 unsigned int data_len;
697 struct nfulnl_instance *inst;
698 const struct nf_loginfo *li;
699 unsigned int qthreshold;
700 unsigned int plen = 0;
701 struct nfnl_log_net *log = nfnl_log_pernet(net);
702 const struct nfnl_ct_hook *nfnl_ct = NULL;
703 struct nf_conn *ct = NULL;
704 enum ip_conntrack_info ctinfo;
706 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
709 li = &default_loginfo;
711 inst = instance_lookup_get_rcu(log, li->u.ulog.group);
716 plen = strlen(prefix) + 1;
718 /* FIXME: do we want to make the size calculation conditional based on
719 * what is actually present? way more branches and checks, but more
720 * memory efficient... */
721 size = nlmsg_total_size(sizeof(struct nfgenmsg))
722 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
723 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
724 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
725 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
726 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
727 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
729 + nla_total_size(sizeof(u_int32_t)) /* mark */
730 + nla_total_size(sizeof(u_int32_t)) /* uid */
731 + nla_total_size(sizeof(u_int32_t)) /* gid */
732 + nla_total_size(plen) /* prefix */
733 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
734 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp))
735 + nla_total_size(sizeof(struct nfgenmsg)); /* NLMSG_DONE */
737 if (in && skb_mac_header_was_set(skb)) {
738 size += nla_total_size(skb->dev->hard_header_len)
739 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
740 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
743 spin_lock_bh(&inst->lock);
745 if (inst->flags & NFULNL_CFG_F_SEQ)
746 size += nla_total_size(sizeof(u_int32_t));
747 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
748 size += nla_total_size(sizeof(u_int32_t));
749 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
750 if (inst->flags & NFULNL_CFG_F_CONNTRACK) {
751 nfnl_ct = rcu_dereference(nfnl_ct_hook);
752 if (nfnl_ct != NULL) {
753 ct = nf_ct_get(skb, &ctinfo);
755 size += nfnl_ct->build_size(ct);
759 if (pf == NFPROTO_NETDEV || pf == NFPROTO_BRIDGE)
760 size += nfulnl_get_bridge_size(skb);
762 qthreshold = inst->qthreshold;
763 /* per-rule qthreshold overrides per-instance */
764 if (li->u.ulog.qthreshold)
765 if (qthreshold > li->u.ulog.qthreshold)
766 qthreshold = li->u.ulog.qthreshold;
769 switch (inst->copy_mode) {
770 case NFULNL_COPY_META:
771 case NFULNL_COPY_NONE:
775 case NFULNL_COPY_PACKET:
776 data_len = inst->copy_range;
777 if ((li->u.ulog.flags & NF_LOG_F_COPY_LEN) &&
778 (li->u.ulog.copy_len < data_len))
779 data_len = li->u.ulog.copy_len;
781 if (data_len > skb->len)
784 size += nla_total_size(data_len);
787 case NFULNL_COPY_DISABLED:
789 goto unlock_and_release;
792 if (inst->skb && size > skb_tailroom(inst->skb)) {
793 /* either the queue len is too high or we don't have
794 * enough room in the skb left. flush to userspace. */
795 __nfulnl_flush(inst);
799 inst->skb = nfulnl_alloc_skb(net, inst->peer_portid,
800 inst->nlbufsiz, size);
807 __build_packet_message(log, inst, skb, data_len, pf,
808 hooknum, in, out, prefix, plen,
809 nfnl_ct, ct, ctinfo);
811 if (inst->qlen >= qthreshold)
812 __nfulnl_flush(inst);
813 /* timer_pending always called within inst->lock, so there
814 * is no chance of a race here */
815 else if (!timer_pending(&inst->timer)) {
817 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
818 add_timer(&inst->timer);
822 spin_unlock_bh(&inst->lock);
827 /* FIXME: statistics */
828 goto unlock_and_release;
832 nfulnl_rcv_nl_event(struct notifier_block *this,
833 unsigned long event, void *ptr)
835 struct netlink_notify *n = ptr;
836 struct nfnl_log_net *log = nfnl_log_pernet(n->net);
838 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
841 /* destroy all instances for this portid */
842 spin_lock_bh(&log->instances_lock);
843 for (i = 0; i < INSTANCE_BUCKETS; i++) {
844 struct hlist_node *t2;
845 struct nfulnl_instance *inst;
846 struct hlist_head *head = &log->instance_table[i];
848 hlist_for_each_entry_safe(inst, t2, head, hlist) {
849 if (n->portid == inst->peer_portid)
850 __instance_destroy(inst);
853 spin_unlock_bh(&log->instances_lock);
858 static struct notifier_block nfulnl_rtnl_notifier = {
859 .notifier_call = nfulnl_rcv_nl_event,
862 static int nfulnl_recv_unsupp(struct sk_buff *skb, const struct nfnl_info *info,
863 const struct nlattr * const nfula[])
868 static struct nf_logger nfulnl_logger __read_mostly = {
869 .name = "nfnetlink_log",
870 .type = NF_LOG_TYPE_ULOG,
871 .logfn = nfulnl_log_packet,
875 static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
876 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
877 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
878 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
879 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
880 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
881 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
884 static int nfulnl_recv_config(struct sk_buff *skb, const struct nfnl_info *info,
885 const struct nlattr * const nfula[])
887 struct nfnl_log_net *log = nfnl_log_pernet(info->net);
888 u_int16_t group_num = ntohs(info->nfmsg->res_id);
889 struct nfulnl_msg_config_cmd *cmd = NULL;
890 struct nfulnl_instance *inst;
894 if (nfula[NFULA_CFG_CMD]) {
895 u_int8_t pf = info->nfmsg->nfgen_family;
896 cmd = nla_data(nfula[NFULA_CFG_CMD]);
898 /* Commands without queue context */
899 switch (cmd->command) {
900 case NFULNL_CFG_CMD_PF_BIND:
901 return nf_log_bind_pf(info->net, pf, &nfulnl_logger);
902 case NFULNL_CFG_CMD_PF_UNBIND:
903 nf_log_unbind_pf(info->net, pf);
908 inst = instance_lookup_get(log, group_num);
909 if (inst && inst->peer_portid != NETLINK_CB(skb).portid) {
914 /* Check if we support these flags in first place, dependencies should
915 * be there too not to break atomicity.
917 if (nfula[NFULA_CFG_FLAGS]) {
918 flags = ntohs(nla_get_be16(nfula[NFULA_CFG_FLAGS]));
920 if ((flags & NFULNL_CFG_F_CONNTRACK) &&
921 !rcu_access_pointer(nfnl_ct_hook)) {
922 #ifdef CONFIG_MODULES
923 nfnl_unlock(NFNL_SUBSYS_ULOG);
924 request_module("ip_conntrack_netlink");
925 nfnl_lock(NFNL_SUBSYS_ULOG);
926 if (rcu_access_pointer(nfnl_ct_hook)) {
937 switch (cmd->command) {
938 case NFULNL_CFG_CMD_BIND:
944 inst = instance_create(info->net, group_num,
945 NETLINK_CB(skb).portid,
946 sk_user_ns(NETLINK_CB(skb).sk));
952 case NFULNL_CFG_CMD_UNBIND:
958 instance_destroy(log, inst);
969 if (nfula[NFULA_CFG_MODE]) {
970 struct nfulnl_msg_config_mode *params =
971 nla_data(nfula[NFULA_CFG_MODE]);
973 nfulnl_set_mode(inst, params->copy_mode,
974 ntohl(params->copy_range));
977 if (nfula[NFULA_CFG_TIMEOUT]) {
978 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
980 nfulnl_set_timeout(inst, ntohl(timeout));
983 if (nfula[NFULA_CFG_NLBUFSIZ]) {
984 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
986 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
989 if (nfula[NFULA_CFG_QTHRESH]) {
990 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
992 nfulnl_set_qthresh(inst, ntohl(qthresh));
995 if (nfula[NFULA_CFG_FLAGS])
996 nfulnl_set_flags(inst, flags);
1004 static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
1005 [NFULNL_MSG_PACKET] = {
1006 .call = nfulnl_recv_unsupp,
1007 .type = NFNL_CB_MUTEX,
1008 .attr_count = NFULA_MAX,
1010 [NFULNL_MSG_CONFIG] = {
1011 .call = nfulnl_recv_config,
1012 .type = NFNL_CB_MUTEX,
1013 .attr_count = NFULA_CFG_MAX,
1014 .policy = nfula_cfg_policy
1018 static const struct nfnetlink_subsystem nfulnl_subsys = {
1020 .subsys_id = NFNL_SUBSYS_ULOG,
1021 .cb_count = NFULNL_MSG_MAX,
1025 #ifdef CONFIG_PROC_FS
1027 struct seq_net_private p;
1028 unsigned int bucket;
1031 static struct hlist_node *get_first(struct net *net, struct iter_state *st)
1033 struct nfnl_log_net *log;
1037 log = nfnl_log_pernet(net);
1039 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
1040 struct hlist_head *head = &log->instance_table[st->bucket];
1042 if (!hlist_empty(head))
1043 return rcu_dereference(hlist_first_rcu(head));
1048 static struct hlist_node *get_next(struct net *net, struct iter_state *st,
1049 struct hlist_node *h)
1051 h = rcu_dereference(hlist_next_rcu(h));
1053 struct nfnl_log_net *log;
1054 struct hlist_head *head;
1056 if (++st->bucket >= INSTANCE_BUCKETS)
1059 log = nfnl_log_pernet(net);
1060 head = &log->instance_table[st->bucket];
1061 h = rcu_dereference(hlist_first_rcu(head));
1066 static struct hlist_node *get_idx(struct net *net, struct iter_state *st,
1069 struct hlist_node *head;
1070 head = get_first(net, st);
1073 while (pos && (head = get_next(net, st, head)))
1075 return pos ? NULL : head;
1078 static void *seq_start(struct seq_file *s, loff_t *pos)
1082 return get_idx(seq_file_net(s), s->private, *pos);
1085 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1088 return get_next(seq_file_net(s), s->private, v);
1091 static void seq_stop(struct seq_file *s, void *v)
1097 static int seq_show(struct seq_file *s, void *v)
1099 const struct nfulnl_instance *inst = v;
1101 seq_printf(s, "%5u %6u %5u %1u %5u %6u %2u\n",
1103 inst->peer_portid, inst->qlen,
1104 inst->copy_mode, inst->copy_range,
1105 inst->flushtimeout, refcount_read(&inst->use));
1110 static const struct seq_operations nful_seq_ops = {
1116 #endif /* PROC_FS */
1118 static int __net_init nfnl_log_net_init(struct net *net)
1121 struct nfnl_log_net *log = nfnl_log_pernet(net);
1122 #ifdef CONFIG_PROC_FS
1123 struct proc_dir_entry *proc;
1128 for (i = 0; i < INSTANCE_BUCKETS; i++)
1129 INIT_HLIST_HEAD(&log->instance_table[i]);
1130 spin_lock_init(&log->instances_lock);
1132 #ifdef CONFIG_PROC_FS
1133 proc = proc_create_net("nfnetlink_log", 0440, net->nf.proc_netfilter,
1134 &nful_seq_ops, sizeof(struct iter_state));
1138 root_uid = make_kuid(net->user_ns, 0);
1139 root_gid = make_kgid(net->user_ns, 0);
1140 if (uid_valid(root_uid) && gid_valid(root_gid))
1141 proc_set_user(proc, root_uid, root_gid);
1146 static void __net_exit nfnl_log_net_exit(struct net *net)
1148 struct nfnl_log_net *log = nfnl_log_pernet(net);
1151 #ifdef CONFIG_PROC_FS
1152 remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter);
1154 nf_log_unset(net, &nfulnl_logger);
1155 for (i = 0; i < INSTANCE_BUCKETS; i++)
1156 WARN_ON_ONCE(!hlist_empty(&log->instance_table[i]));
1159 static struct pernet_operations nfnl_log_net_ops = {
1160 .init = nfnl_log_net_init,
1161 .exit = nfnl_log_net_exit,
1162 .id = &nfnl_log_net_id,
1163 .size = sizeof(struct nfnl_log_net),
1166 static int __init nfnetlink_log_init(void)
1170 status = register_pernet_subsys(&nfnl_log_net_ops);
1172 pr_err("failed to register pernet ops\n");
1176 netlink_register_notifier(&nfulnl_rtnl_notifier);
1177 status = nfnetlink_subsys_register(&nfulnl_subsys);
1179 pr_err("failed to create netlink socket\n");
1180 goto cleanup_netlink_notifier;
1183 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
1185 pr_err("failed to register logger\n");
1186 goto cleanup_subsys;
1192 nfnetlink_subsys_unregister(&nfulnl_subsys);
1193 cleanup_netlink_notifier:
1194 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1195 unregister_pernet_subsys(&nfnl_log_net_ops);
1200 static void __exit nfnetlink_log_fini(void)
1202 nfnetlink_subsys_unregister(&nfulnl_subsys);
1203 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1204 unregister_pernet_subsys(&nfnl_log_net_ops);
1205 nf_log_unregister(&nfulnl_logger);
1208 MODULE_DESCRIPTION("netfilter userspace logging");
1210 MODULE_LICENSE("GPL");
1211 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
1212 MODULE_ALIAS_NF_LOGGER(AF_INET, 1);
1213 MODULE_ALIAS_NF_LOGGER(AF_INET6, 1);
1214 MODULE_ALIAS_NF_LOGGER(AF_BRIDGE, 1);
1215 MODULE_ALIAS_NF_LOGGER(3, 1); /* NFPROTO_ARP */
1216 MODULE_ALIAS_NF_LOGGER(5, 1); /* NFPROTO_NETDEV */
1218 module_init(nfnetlink_log_init);
1219 module_exit(nfnetlink_log_fini);