1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * This is a module which is used for logging packets to userspace via
4 * nfetlink.
5 *
6 * (C) 2005 by Harald Welte <laforge@netfilter.org>
7 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
8 *
9 * Based on the old ipv4-only ipt_ULOG.c:
10 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
11 */
12
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/init.h>
19 #include <linux/ip.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>
34 #include <net/sock.h>
35 #include <net/netfilter/nf_log.h>
36 #include <net/netns/generic.h>
37
38 #include <linux/atomic.h>
39 #include <linux/refcount.h>
40
41
42 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
43 #include "../bridge/br_private.h"
44 #endif
45
46 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
47 #include <net/netfilter/nf_conntrack.h>
48 #endif
49
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)
56
57 #define PRINTR(x, args...) do { if (net_ratelimit()) \
58 printk(x, ## args); } while (0);
59
60 struct nfulnl_instance {
61 struct hlist_node hlist; /* global list of instances */
62 spinlock_t lock;
63 refcount_t use; /* use count */
64
65 unsigned int qlen; /* number of nlmsgs in skb */
66 struct sk_buff *skb; /* pre-allocatd skb */
67 struct timer_list timer;
68 struct net *net;
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 */
72
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 */
77 u_int32_t copy_range;
78 u_int32_t seq; /* instance-local sequential counter */
79 u_int16_t group_num; /* number of this queue */
80 u_int16_t flags;
81 u_int8_t copy_mode;
82 struct rcu_head rcu;
83 };
84
85 #define INSTANCE_BUCKETS 16
86
87 static unsigned int nfnl_log_net_id __read_mostly;
88
89 struct nfnl_log_net {
90 spinlock_t instances_lock;
91 struct hlist_head instance_table[INSTANCE_BUCKETS];
92 atomic_t global_seq;
93 };
94
nfnl_log_pernet(struct net * net)95 static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
96 {
97 return net_generic(net, nfnl_log_net_id);
98 }
99
instance_hashfn(u_int16_t group_num)100 static inline u_int8_t instance_hashfn(u_int16_t group_num)
101 {
102 return ((group_num & 0xff) % INSTANCE_BUCKETS);
103 }
104
105 static struct nfulnl_instance *
__instance_lookup(const struct nfnl_log_net * log,u16 group_num)106 __instance_lookup(const struct nfnl_log_net *log, u16 group_num)
107 {
108 const struct hlist_head *head;
109 struct nfulnl_instance *inst;
110
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)
114 return inst;
115 }
116 return NULL;
117 }
118
119 static inline void
instance_get(struct nfulnl_instance * inst)120 instance_get(struct nfulnl_instance *inst)
121 {
122 refcount_inc(&inst->use);
123 }
124
125 static struct nfulnl_instance *
instance_lookup_get_rcu(const struct nfnl_log_net * log,u16 group_num)126 instance_lookup_get_rcu(const struct nfnl_log_net *log, u16 group_num)
127 {
128 struct nfulnl_instance *inst;
129
130 inst = __instance_lookup(log, group_num);
131 if (inst && !refcount_inc_not_zero(&inst->use))
132 inst = NULL;
133
134 return inst;
135 }
136
137 static struct nfulnl_instance *
instance_lookup_get(const struct nfnl_log_net * log,u16 group_num)138 instance_lookup_get(const struct nfnl_log_net *log, u16 group_num)
139 {
140 struct nfulnl_instance *inst;
141
142 rcu_read_lock();
143 inst = instance_lookup_get_rcu(log, group_num);
144 rcu_read_unlock();
145
146 return inst;
147 }
148
nfulnl_instance_free_rcu(struct rcu_head * head)149 static void nfulnl_instance_free_rcu(struct rcu_head *head)
150 {
151 struct nfulnl_instance *inst =
152 container_of(head, struct nfulnl_instance, rcu);
153
154 put_net_track(inst->net, &inst->ns_tracker);
155 kfree(inst);
156 module_put(THIS_MODULE);
157 }
158
159 static void
instance_put(struct nfulnl_instance * inst)160 instance_put(struct nfulnl_instance *inst)
161 {
162 if (inst && refcount_dec_and_test(&inst->use))
163 call_rcu(&inst->rcu, nfulnl_instance_free_rcu);
164 }
165
166 static void nfulnl_timer(struct timer_list *t);
167
168 static struct nfulnl_instance *
instance_create(struct net * net,u_int16_t group_num,u32 portid,struct user_namespace * user_ns)169 instance_create(struct net *net, u_int16_t group_num,
170 u32 portid, struct user_namespace *user_ns)
171 {
172 struct nfulnl_instance *inst;
173 struct nfnl_log_net *log = nfnl_log_pernet(net);
174 int err;
175
176 spin_lock_bh(&log->instances_lock);
177 if (__instance_lookup(log, group_num)) {
178 err = -EEXIST;
179 goto out_unlock;
180 }
181
182 inst = kzalloc_obj(*inst, GFP_ATOMIC);
183 if (!inst) {
184 err = -ENOMEM;
185 goto out_unlock;
186 }
187
188 if (!try_module_get(THIS_MODULE)) {
189 kfree(inst);
190 err = -EAGAIN;
191 goto out_unlock;
192 }
193
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);
198
199 timer_setup(&inst->timer, nfulnl_timer, 0);
200
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;
205
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;
211
212 hlist_add_head_rcu(&inst->hlist,
213 &log->instance_table[instance_hashfn(group_num)]);
214
215
216 spin_unlock_bh(&log->instances_lock);
217
218 return inst;
219
220 out_unlock:
221 spin_unlock_bh(&log->instances_lock);
222 return ERR_PTR(err);
223 }
224
225 static void __nfulnl_flush(struct nfulnl_instance *inst);
226
227 /* called with BH disabled */
228 static void
__instance_destroy(struct nfulnl_instance * inst)229 __instance_destroy(struct nfulnl_instance *inst)
230 {
231 /* first pull it out of the global list */
232 hlist_del_rcu(&inst->hlist);
233
234 /* then flush all pending packets from skb */
235
236 spin_lock(&inst->lock);
237
238 /* lockless readers wont be able to use us */
239 inst->copy_mode = NFULNL_COPY_DISABLED;
240
241 if (inst->skb)
242 __nfulnl_flush(inst);
243 spin_unlock(&inst->lock);
244
245 /* and finally put the refcount */
246 instance_put(inst);
247 }
248
249 static inline void
instance_destroy(struct nfnl_log_net * log,struct nfulnl_instance * inst)250 instance_destroy(struct nfnl_log_net *log,
251 struct nfulnl_instance *inst)
252 {
253 spin_lock_bh(&log->instances_lock);
254 __instance_destroy(inst);
255 spin_unlock_bh(&log->instances_lock);
256 }
257
258 static int
nfulnl_set_mode(struct nfulnl_instance * inst,u_int8_t mode,unsigned int range)259 nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
260 unsigned int range)
261 {
262 int status = 0;
263
264 spin_lock_bh(&inst->lock);
265
266 switch (mode) {
267 case NFULNL_COPY_NONE:
268 case NFULNL_COPY_META:
269 inst->copy_mode = mode;
270 inst->copy_range = 0;
271 break;
272
273 case NFULNL_COPY_PACKET:
274 inst->copy_mode = mode;
275 if (range == 0)
276 range = NFULNL_COPY_RANGE_MAX;
277 inst->copy_range = min_t(unsigned int,
278 range, NFULNL_COPY_RANGE_MAX);
279 break;
280
281 default:
282 status = -EINVAL;
283 break;
284 }
285
286 spin_unlock_bh(&inst->lock);
287
288 return status;
289 }
290
291 static int
nfulnl_set_nlbufsiz(struct nfulnl_instance * inst,u_int32_t nlbufsiz)292 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
293 {
294 int status;
295
296 spin_lock_bh(&inst->lock);
297 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
298 status = -ERANGE;
299 else if (nlbufsiz > 131072)
300 status = -ERANGE;
301 else {
302 inst->nlbufsiz = nlbufsiz;
303 status = 0;
304 }
305 spin_unlock_bh(&inst->lock);
306
307 return status;
308 }
309
310 static void
nfulnl_set_timeout(struct nfulnl_instance * inst,u_int32_t timeout)311 nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
312 {
313 spin_lock_bh(&inst->lock);
314 inst->flushtimeout = timeout;
315 spin_unlock_bh(&inst->lock);
316 }
317
318 static void
nfulnl_set_qthresh(struct nfulnl_instance * inst,u_int32_t qthresh)319 nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
320 {
321 spin_lock_bh(&inst->lock);
322 inst->qthreshold = qthresh;
323 spin_unlock_bh(&inst->lock);
324 }
325
326 static int
nfulnl_set_flags(struct nfulnl_instance * inst,u_int16_t flags)327 nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
328 {
329 spin_lock_bh(&inst->lock);
330 inst->flags = flags;
331 spin_unlock_bh(&inst->lock);
332
333 return 0;
334 }
335
336 static struct sk_buff *
nfulnl_alloc_skb(struct net * net,u32 peer_portid,unsigned int inst_size,unsigned int pkt_size)337 nfulnl_alloc_skb(struct net *net, u32 peer_portid, unsigned int inst_size,
338 unsigned int pkt_size)
339 {
340 struct sk_buff *skb;
341 unsigned int n;
342
343 /* alloc skb which should be big enough for a whole multipart
344 * message. WARNING: has to be <= 128k due to slab restrictions */
345
346 n = max(inst_size, pkt_size);
347 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
348 if (!skb) {
349 if (n > pkt_size) {
350 /* try to allocate only as much as we need for current
351 * packet */
352
353 skb = alloc_skb(pkt_size, GFP_ATOMIC);
354 }
355 }
356
357 return skb;
358 }
359
360 static void
__nfulnl_send(struct nfulnl_instance * inst)361 __nfulnl_send(struct nfulnl_instance *inst)
362 {
363 if (inst->qlen > 1) {
364 struct nlmsghdr *nlh = nfnl_msg_put(inst->skb, 0, 0,
365 NLMSG_DONE, 0,
366 AF_UNSPEC, NFNETLINK_V0,
367 htons(inst->group_num));
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);
371 goto out;
372 }
373 }
374 nfnetlink_unicast(inst->skb, inst->net, inst->peer_portid);
375 out:
376 inst->qlen = 0;
377 inst->skb = NULL;
378 }
379
380 static void
__nfulnl_flush(struct nfulnl_instance * inst)381 __nfulnl_flush(struct nfulnl_instance *inst)
382 {
383 /* timer holds a reference */
384 if (timer_delete(&inst->timer))
385 instance_put(inst);
386 if (inst->skb)
387 __nfulnl_send(inst);
388 }
389
390 static void
nfulnl_timer(struct timer_list * t)391 nfulnl_timer(struct timer_list *t)
392 {
393 struct nfulnl_instance *inst = timer_container_of(inst, t, timer);
394
395 spin_lock_bh(&inst->lock);
396 if (inst->skb)
397 __nfulnl_send(inst);
398 spin_unlock_bh(&inst->lock);
399 instance_put(inst);
400 }
401
nfulnl_get_bridge_size(const struct sk_buff * skb)402 static u32 nfulnl_get_bridge_size(const struct sk_buff *skb)
403 {
404 u32 mac_len, size = 0;
405
406 if (!skb_mac_header_was_set(skb))
407 return 0;
408
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 */
413 }
414
415 mac_len = skb_mac_header_len(skb);
416 if (mac_len > 0)
417 size += nla_total_size(mac_len);
418
419 return size;
420 }
421
nfulnl_put_bridge(struct nfulnl_instance * inst,const struct sk_buff * skb)422 static int nfulnl_put_bridge(struct nfulnl_instance *inst, const struct sk_buff *skb)
423 {
424 u32 mac_len;
425
426 if (!skb_mac_header_was_set(skb))
427 return 0;
428
429 if (skb_vlan_tag_present(skb)) {
430 struct nlattr *nest;
431
432 nest = nla_nest_start(inst->skb, NFULA_VLAN);
433 if (!nest)
434 goto nla_put_failure;
435
436 if (nla_put_be16(inst->skb, NFULA_VLAN_TCI, htons(skb->vlan_tci)) ||
437 nla_put_be16(inst->skb, NFULA_VLAN_PROTO, skb->vlan_proto))
438 goto nla_put_failure;
439
440 nla_nest_end(inst->skb, nest);
441 }
442
443 mac_len = skb_mac_header_len(skb);
444 if (mac_len > 0 &&
445 nla_put(inst->skb, NFULA_L2HDR, mac_len, skb_mac_header(skb)))
446 goto nla_put_failure;
447
448 return 0;
449
450 nla_put_failure:
451 return -1;
452 }
453
454 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
nflog_put_master_ifindex(struct sk_buff * nlskb,int attr,const struct net_device * dev)455 static int nflog_put_master_ifindex(struct sk_buff *nlskb, int attr,
456 const struct net_device *dev)
457 {
458 const struct net_device *upper;
459
460 if (dev && !netif_is_bridge_port(dev))
461 return 0;
462
463 upper = netdev_master_upper_dev_get_rcu((struct net_device *)dev);
464 if (upper && nla_put_be32(nlskb, attr, htonl(upper->ifindex)))
465 return -EMSGSIZE;
466
467 return 0;
468 }
469 #endif
470
471 /* This is an inline function, we don't really care about a long
472 * list of arguments */
473 static inline int
__build_packet_message(struct nfnl_log_net * log,struct nfulnl_instance * inst,const struct sk_buff * skb,unsigned int data_len,u_int8_t pf,unsigned int hooknum,const struct net_device * indev,const struct net_device * outdev,const char * prefix,unsigned int plen,const struct nfnl_ct_hook * nfnl_ct,struct nf_conn * ct,enum ip_conntrack_info ctinfo)474 __build_packet_message(struct nfnl_log_net *log,
475 struct nfulnl_instance *inst,
476 const struct sk_buff *skb,
477 unsigned int data_len,
478 u_int8_t pf,
479 unsigned int hooknum,
480 const struct net_device *indev,
481 const struct net_device *outdev,
482 const char *prefix, unsigned int plen,
483 const struct nfnl_ct_hook *nfnl_ct,
484 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
485 {
486 struct nfulnl_msg_packet_hdr pmsg;
487 struct nlmsghdr *nlh;
488 sk_buff_data_t old_tail = inst->skb->tail;
489 struct sock *sk;
490 const unsigned char *hwhdrp;
491
492 nlh = nfnl_msg_put(inst->skb, 0, 0,
493 nfnl_msg_type(NFNL_SUBSYS_ULOG, NFULNL_MSG_PACKET),
494 0, pf, NFNETLINK_V0, htons(inst->group_num));
495 if (!nlh)
496 return -1;
497
498 memset(&pmsg, 0, sizeof(pmsg));
499 pmsg.hw_protocol = skb->protocol;
500 pmsg.hook = hooknum;
501
502 if (nla_put(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg))
503 goto nla_put_failure;
504
505 if (prefix &&
506 nla_put(inst->skb, NFULA_PREFIX, plen, prefix))
507 goto nla_put_failure;
508
509 if (indev) {
510 #if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
511 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
512 htonl(indev->ifindex)))
513 goto nla_put_failure;
514 #else
515 if (pf == PF_BRIDGE) {
516 /* Case 1: outdev is physical input device, we need to
517 * look for bridge group (when called from
518 * netfilter_bridge) */
519 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
520 htonl(indev->ifindex)) ||
521 /* this is the bridge group "brX" */
522 /* rcu_read_lock()ed by nf_hook_thresh or
523 * nf_log_packet.
524 */
525 nflog_put_master_ifindex(inst->skb, NFULA_IFINDEX_INDEV, indev))
526 goto nla_put_failure;
527 } else {
528 int physinif;
529
530 /* Case 2: indev is bridge group, we need to look for
531 * physical device (when called from ipv4) */
532 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
533 htonl(indev->ifindex)))
534 goto nla_put_failure;
535
536 physinif = nf_bridge_get_physinif(skb);
537 if (physinif &&
538 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
539 htonl(physinif)))
540 goto nla_put_failure;
541 }
542 #endif
543 }
544
545 if (outdev) {
546 #if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
547 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
548 htonl(outdev->ifindex)))
549 goto nla_put_failure;
550 #else
551 if (pf == PF_BRIDGE) {
552 /* Case 1: outdev is physical output device, we need to
553 * look for bridge group (when called from
554 * netfilter_bridge) */
555 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
556 htonl(outdev->ifindex)) ||
557 /* this is the bridge group "brX" */
558 /* rcu_read_lock()ed by nf_hook_thresh or
559 * nf_log_packet.
560 */
561 nflog_put_master_ifindex(inst->skb, NFULA_IFINDEX_OUTDEV, outdev))
562 goto nla_put_failure;
563 } else {
564 struct net_device *physoutdev;
565
566 /* Case 2: indev is a bridge group, we need to look
567 * for physical device (when called from ipv4) */
568 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
569 htonl(outdev->ifindex)))
570 goto nla_put_failure;
571
572 physoutdev = nf_bridge_get_physoutdev(skb);
573 if (physoutdev &&
574 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
575 htonl(physoutdev->ifindex)))
576 goto nla_put_failure;
577 }
578 #endif
579 }
580
581 if (skb->mark &&
582 nla_put_be32(inst->skb, NFULA_MARK, htonl(skb->mark)))
583 goto nla_put_failure;
584
585 if (indev && skb->dev &&
586 skb_mac_header_was_set(skb) &&
587 skb_mac_header_len(skb) != 0) {
588 struct nfulnl_msg_packet_hw phw;
589 int len;
590
591 memset(&phw, 0, sizeof(phw));
592 len = dev_parse_header(skb, phw.hw_addr);
593 if (len > 0) {
594 phw.hw_addrlen = htons(len);
595 if (nla_put(inst->skb, NFULA_HWADDR, sizeof(phw), &phw))
596 goto nla_put_failure;
597 }
598 }
599
600 if (indev && skb_mac_header_was_set(skb)) {
601 if (nla_put_be16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type)) ||
602 nla_put_be16(inst->skb, NFULA_HWLEN,
603 htons(skb->dev->hard_header_len)))
604 goto nla_put_failure;
605
606 hwhdrp = skb_mac_header(skb);
607
608 if (skb->dev->type == ARPHRD_SIT)
609 hwhdrp -= ETH_HLEN;
610
611 if (hwhdrp >= skb->head &&
612 nla_put(inst->skb, NFULA_HWHEADER,
613 skb->dev->hard_header_len, hwhdrp))
614 goto nla_put_failure;
615 }
616
617 if (hooknum <= NF_INET_FORWARD) {
618 struct timespec64 kts = ktime_to_timespec64(skb_tstamp_cond(skb, true));
619 struct nfulnl_msg_packet_timestamp ts;
620 ts.sec = cpu_to_be64(kts.tv_sec);
621 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC);
622
623 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
624 goto nla_put_failure;
625 }
626
627 /* UID */
628 sk = skb->sk;
629 if (sk && sk_fullsock(sk)) {
630 const struct socket *sock;
631 const struct file *file;
632
633 /* The sk pointer remains valid as long as the skb is.
634 * The sk_socket and file pointer may become NULL
635 * if the socket is closed.
636 * Both structures (including file->cred) are RCU freed
637 * which means they can be accessed within a RCU read section.
638 */
639 sock = READ_ONCE(sk->sk_socket);
640 file = sock ? READ_ONCE(sock->file) : NULL;
641 if (file) {
642 const struct cred *cred = file->f_cred;
643 struct user_namespace *user_ns = inst->peer_user_ns;
644 __be32 uid = htonl(from_kuid_munged(user_ns, cred->fsuid));
645 __be32 gid = htonl(from_kgid_munged(user_ns, cred->fsgid));
646 if (nla_put_be32(inst->skb, NFULA_UID, uid) ||
647 nla_put_be32(inst->skb, NFULA_GID, gid))
648 goto nla_put_failure;
649 }
650 }
651
652 /* local sequence number */
653 if ((inst->flags & NFULNL_CFG_F_SEQ) &&
654 nla_put_be32(inst->skb, NFULA_SEQ, htonl(inst->seq++)))
655 goto nla_put_failure;
656
657 /* global sequence number */
658 if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
659 nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
660 htonl(atomic_inc_return(&log->global_seq))))
661 goto nla_put_failure;
662
663 if (ct && nfnl_ct->build(inst->skb, ct, ctinfo,
664 NFULA_CT, NFULA_CT_INFO) < 0)
665 goto nla_put_failure;
666
667 if ((pf == NFPROTO_NETDEV || pf == NFPROTO_BRIDGE) &&
668 nfulnl_put_bridge(inst, skb) < 0)
669 goto nla_put_failure;
670
671 if (data_len) {
672 struct nlattr *nla;
673
674 nla = nla_reserve(inst->skb, NFULA_PAYLOAD, data_len);
675 if (!nla)
676 goto nla_put_failure;
677
678 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
679 goto nla_put_failure;
680 }
681
682 nlh->nlmsg_len = inst->skb->tail - old_tail;
683 return 0;
684
685 nla_put_failure:
686 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
687 return -1;
688 }
689
690 static const struct nf_loginfo default_loginfo = {
691 .type = NF_LOG_TYPE_ULOG,
692 .u = {
693 .ulog = {
694 .copy_len = 0xffff,
695 .group = 0,
696 .qthreshold = 1,
697 },
698 },
699 };
700
nfulnl_get_copy_len(const struct nf_loginfo * li,const struct sk_buff * skb,unsigned int copy_len)701 static unsigned int nfulnl_get_copy_len(const struct nf_loginfo *li,
702 const struct sk_buff *skb,
703 unsigned int copy_len)
704 {
705 unsigned int len = skb->len;
706
707 if ((li->u.ulog.flags & NF_LOG_F_COPY_LEN) &&
708 li->u.ulog.copy_len < copy_len)
709 copy_len = li->u.ulog.copy_len;
710 if (!skb_frags_readable(skb))
711 len = skb_headlen(skb);
712
713 return min(len, copy_len);
714 }
715
716 /* log handler for internal netfilter logging api */
717 static void
nfulnl_log_packet(struct net * net,u_int8_t pf,unsigned int hooknum,const struct sk_buff * skb,const struct net_device * in,const struct net_device * out,const struct nf_loginfo * li_user,const char * prefix)718 nfulnl_log_packet(struct net *net,
719 u_int8_t pf,
720 unsigned int hooknum,
721 const struct sk_buff *skb,
722 const struct net_device *in,
723 const struct net_device *out,
724 const struct nf_loginfo *li_user,
725 const char *prefix)
726 {
727 size_t size;
728 unsigned int data_len;
729 struct nfulnl_instance *inst;
730 const struct nf_loginfo *li;
731 unsigned int qthreshold;
732 unsigned int plen = 0;
733 struct nfnl_log_net *log = nfnl_log_pernet(net);
734 const struct nfnl_ct_hook *nfnl_ct = NULL;
735 enum ip_conntrack_info ctinfo = 0;
736 struct nf_conn *ct = NULL;
737
738 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
739 li = li_user;
740 else
741 li = &default_loginfo;
742
743 inst = instance_lookup_get_rcu(log, li->u.ulog.group);
744 if (!inst)
745 return;
746
747 if (prefix)
748 plen = strlen(prefix) + 1;
749
750 /* FIXME: do we want to make the size calculation conditional based on
751 * what is actually present? way more branches and checks, but more
752 * memory efficient... */
753 size = nlmsg_total_size(sizeof(struct nfgenmsg))
754 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
755 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
756 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
757 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
758 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
759 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
760 #endif
761 + nla_total_size(sizeof(u_int32_t)) /* mark */
762 + nla_total_size(sizeof(u_int32_t)) /* uid */
763 + nla_total_size(sizeof(u_int32_t)) /* gid */
764 + nla_total_size(plen) /* prefix */
765 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
766 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp))
767 + nlmsg_total_size(sizeof(struct nfgenmsg)); /* NLMSG_DONE */
768
769 if (in && skb_mac_header_was_set(skb)) {
770 size += nla_total_size(skb->dev->hard_header_len)
771 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
772 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
773 }
774
775 spin_lock_bh(&inst->lock);
776
777 if (inst->flags & NFULNL_CFG_F_SEQ)
778 size += nla_total_size(sizeof(u_int32_t));
779 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
780 size += nla_total_size(sizeof(u_int32_t));
781 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
782 if (inst->flags & NFULNL_CFG_F_CONNTRACK) {
783 nfnl_ct = rcu_dereference(nfnl_ct_hook);
784 if (nfnl_ct != NULL) {
785 ct = nf_ct_get(skb, &ctinfo);
786 if (ct != NULL)
787 size += nfnl_ct->build_size(ct);
788 }
789 }
790 #endif
791 if (pf == NFPROTO_NETDEV || pf == NFPROTO_BRIDGE)
792 size += nfulnl_get_bridge_size(skb);
793
794 qthreshold = inst->qthreshold;
795 /* per-rule qthreshold overrides per-instance */
796 if (li->u.ulog.qthreshold)
797 if (qthreshold > li->u.ulog.qthreshold)
798 qthreshold = li->u.ulog.qthreshold;
799
800
801 switch (inst->copy_mode) {
802 case NFULNL_COPY_META:
803 case NFULNL_COPY_NONE:
804 data_len = 0;
805 break;
806
807 case NFULNL_COPY_PACKET:
808 data_len = nfulnl_get_copy_len(li, skb, inst->copy_range);
809 size += nla_total_size(data_len);
810 break;
811
812 case NFULNL_COPY_DISABLED:
813 default:
814 goto unlock_and_release;
815 }
816
817 if (inst->skb && size > skb_tailroom(inst->skb)) {
818 /* either the queue len is too high or we don't have
819 * enough room in the skb left. flush to userspace. */
820 __nfulnl_flush(inst);
821 }
822
823 if (!inst->skb) {
824 inst->skb = nfulnl_alloc_skb(net, inst->peer_portid,
825 inst->nlbufsiz, size);
826 if (!inst->skb)
827 goto alloc_failure;
828 }
829
830 inst->qlen++;
831
832 __build_packet_message(log, inst, skb, data_len, pf,
833 hooknum, in, out, prefix, plen,
834 nfnl_ct, ct, ctinfo);
835
836 if (inst->qlen >= qthreshold)
837 __nfulnl_flush(inst);
838 /* timer_pending always called within inst->lock, so there
839 * is no chance of a race here */
840 else if (!timer_pending(&inst->timer)) {
841 instance_get(inst);
842 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
843 add_timer(&inst->timer);
844 }
845
846 unlock_and_release:
847 spin_unlock_bh(&inst->lock);
848 instance_put(inst);
849 return;
850
851 alloc_failure:
852 /* FIXME: statistics */
853 goto unlock_and_release;
854 }
855
856 static int
nfulnl_rcv_nl_event(struct notifier_block * this,unsigned long event,void * ptr)857 nfulnl_rcv_nl_event(struct notifier_block *this,
858 unsigned long event, void *ptr)
859 {
860 struct netlink_notify *n = ptr;
861 struct nfnl_log_net *log = nfnl_log_pernet(n->net);
862
863 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
864 int i;
865
866 /* destroy all instances for this portid */
867 spin_lock_bh(&log->instances_lock);
868 for (i = 0; i < INSTANCE_BUCKETS; i++) {
869 struct hlist_node *t2;
870 struct nfulnl_instance *inst;
871 struct hlist_head *head = &log->instance_table[i];
872
873 hlist_for_each_entry_safe(inst, t2, head, hlist) {
874 if (n->portid == inst->peer_portid)
875 __instance_destroy(inst);
876 }
877 }
878 spin_unlock_bh(&log->instances_lock);
879 }
880 return NOTIFY_DONE;
881 }
882
883 static struct notifier_block nfulnl_rtnl_notifier = {
884 .notifier_call = nfulnl_rcv_nl_event,
885 };
886
nfulnl_recv_unsupp(struct sk_buff * skb,const struct nfnl_info * info,const struct nlattr * const nfula[])887 static int nfulnl_recv_unsupp(struct sk_buff *skb, const struct nfnl_info *info,
888 const struct nlattr * const nfula[])
889 {
890 return -ENOTSUPP;
891 }
892
893 static struct nf_logger nfulnl_logger __read_mostly = {
894 .name = "nfnetlink_log",
895 .type = NF_LOG_TYPE_ULOG,
896 .logfn = nfulnl_log_packet,
897 .me = THIS_MODULE,
898 };
899
900 static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
901 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
902 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
903 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
904 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
905 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
906 [NFULA_CFG_FLAGS] = NLA_POLICY_MASK(NLA_BE16, NFULNL_CFG_F_SEQ |
907 NFULNL_CFG_F_SEQ_GLOBAL |
908 NFULNL_CFG_F_CONNTRACK),
909 };
910
nfulnl_recv_config(struct sk_buff * skb,const struct nfnl_info * info,const struct nlattr * const nfula[])911 static int nfulnl_recv_config(struct sk_buff *skb, const struct nfnl_info *info,
912 const struct nlattr * const nfula[])
913 {
914 struct nfnl_log_net *log = nfnl_log_pernet(info->net);
915 u_int16_t group_num = ntohs(info->nfmsg->res_id);
916 struct nfulnl_msg_config_cmd *cmd = NULL;
917 struct nfulnl_instance *inst;
918 u16 flags = 0;
919 int ret = 0;
920
921 if (nfula[NFULA_CFG_CMD]) {
922 u_int8_t pf = info->nfmsg->nfgen_family;
923 cmd = nla_data(nfula[NFULA_CFG_CMD]);
924
925 /* Commands without queue context */
926 switch (cmd->command) {
927 case NFULNL_CFG_CMD_PF_BIND:
928 return nf_log_bind_pf(info->net, pf, &nfulnl_logger);
929 case NFULNL_CFG_CMD_PF_UNBIND:
930 nf_log_unbind_pf(info->net, pf);
931 return 0;
932 }
933 }
934
935 inst = instance_lookup_get(log, group_num);
936 if (inst && inst->peer_portid != NETLINK_CB(skb).portid) {
937 ret = -EPERM;
938 goto out_put;
939 }
940
941 /* Check if we support these flags in first place, dependencies should
942 * be there too not to break atomicity.
943 */
944 if (nfula[NFULA_CFG_FLAGS]) {
945 flags = ntohs(nla_get_be16(nfula[NFULA_CFG_FLAGS]));
946
947 if ((flags & NFULNL_CFG_F_CONNTRACK) &&
948 !rcu_access_pointer(nfnl_ct_hook)) {
949 #ifdef CONFIG_MODULES
950 nfnl_unlock(NFNL_SUBSYS_ULOG);
951 request_module("ip_conntrack_netlink");
952 nfnl_lock(NFNL_SUBSYS_ULOG);
953 if (rcu_access_pointer(nfnl_ct_hook)) {
954 ret = -EAGAIN;
955 goto out_put;
956 }
957 #endif
958 ret = -EOPNOTSUPP;
959 goto out_put;
960 }
961 }
962
963 if (cmd != NULL) {
964 switch (cmd->command) {
965 case NFULNL_CFG_CMD_BIND:
966 if (inst) {
967 ret = -EBUSY;
968 goto out_put;
969 }
970
971 inst = instance_create(info->net, group_num,
972 NETLINK_CB(skb).portid,
973 sk_user_ns(NETLINK_CB(skb).sk));
974 if (IS_ERR(inst)) {
975 ret = PTR_ERR(inst);
976 goto out;
977 }
978 break;
979 case NFULNL_CFG_CMD_UNBIND:
980 if (!inst) {
981 ret = -ENODEV;
982 goto out;
983 }
984
985 instance_destroy(log, inst);
986 goto out_put;
987 default:
988 ret = -ENOTSUPP;
989 goto out_put;
990 }
991 } else if (!inst) {
992 ret = -ENODEV;
993 goto out;
994 }
995
996 if (nfula[NFULA_CFG_MODE]) {
997 struct nfulnl_msg_config_mode *params =
998 nla_data(nfula[NFULA_CFG_MODE]);
999
1000 nfulnl_set_mode(inst, params->copy_mode,
1001 ntohl(params->copy_range));
1002 }
1003
1004 if (nfula[NFULA_CFG_TIMEOUT]) {
1005 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
1006
1007 nfulnl_set_timeout(inst, ntohl(timeout));
1008 }
1009
1010 if (nfula[NFULA_CFG_NLBUFSIZ]) {
1011 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
1012
1013 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
1014 }
1015
1016 if (nfula[NFULA_CFG_QTHRESH]) {
1017 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
1018
1019 nfulnl_set_qthresh(inst, ntohl(qthresh));
1020 }
1021
1022 if (nfula[NFULA_CFG_FLAGS])
1023 nfulnl_set_flags(inst, flags);
1024
1025 out_put:
1026 instance_put(inst);
1027 out:
1028 return ret;
1029 }
1030
1031 static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
1032 [NFULNL_MSG_PACKET] = {
1033 .call = nfulnl_recv_unsupp,
1034 .type = NFNL_CB_MUTEX,
1035 .attr_count = NFULA_MAX,
1036 },
1037 [NFULNL_MSG_CONFIG] = {
1038 .call = nfulnl_recv_config,
1039 .type = NFNL_CB_MUTEX,
1040 .attr_count = NFULA_CFG_MAX,
1041 .policy = nfula_cfg_policy
1042 },
1043 };
1044
1045 static const struct nfnetlink_subsystem nfulnl_subsys = {
1046 .name = "log",
1047 .subsys_id = NFNL_SUBSYS_ULOG,
1048 .cb_count = NFULNL_MSG_MAX,
1049 .cb = nfulnl_cb,
1050 };
1051
1052 #ifdef CONFIG_PROC_FS
1053 struct iter_state {
1054 struct seq_net_private p;
1055 unsigned int bucket;
1056 };
1057
get_first(struct net * net,struct iter_state * st)1058 static struct hlist_node *get_first(struct net *net, struct iter_state *st)
1059 {
1060 struct nfnl_log_net *log;
1061 if (!st)
1062 return NULL;
1063
1064 log = nfnl_log_pernet(net);
1065
1066 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
1067 struct hlist_head *head = &log->instance_table[st->bucket];
1068
1069 if (!hlist_empty(head))
1070 return rcu_dereference(hlist_first_rcu(head));
1071 }
1072 return NULL;
1073 }
1074
get_next(struct net * net,struct iter_state * st,struct hlist_node * h)1075 static struct hlist_node *get_next(struct net *net, struct iter_state *st,
1076 struct hlist_node *h)
1077 {
1078 h = rcu_dereference(hlist_next_rcu(h));
1079 while (!h) {
1080 struct nfnl_log_net *log;
1081 struct hlist_head *head;
1082
1083 if (++st->bucket >= INSTANCE_BUCKETS)
1084 return NULL;
1085
1086 log = nfnl_log_pernet(net);
1087 head = &log->instance_table[st->bucket];
1088 h = rcu_dereference(hlist_first_rcu(head));
1089 }
1090 return h;
1091 }
1092
get_idx(struct net * net,struct iter_state * st,loff_t pos)1093 static struct hlist_node *get_idx(struct net *net, struct iter_state *st,
1094 loff_t pos)
1095 {
1096 struct hlist_node *head;
1097 head = get_first(net, st);
1098
1099 if (head)
1100 while (pos && (head = get_next(net, st, head)))
1101 pos--;
1102 return pos ? NULL : head;
1103 }
1104
seq_start(struct seq_file * s,loff_t * pos)1105 static void *seq_start(struct seq_file *s, loff_t *pos)
1106 __acquires(rcu)
1107 {
1108 rcu_read_lock();
1109 return get_idx(seq_file_net(s), s->private, *pos);
1110 }
1111
seq_next(struct seq_file * s,void * v,loff_t * pos)1112 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1113 {
1114 (*pos)++;
1115 return get_next(seq_file_net(s), s->private, v);
1116 }
1117
seq_stop(struct seq_file * s,void * v)1118 static void seq_stop(struct seq_file *s, void *v)
1119 __releases(rcu)
1120 {
1121 rcu_read_unlock();
1122 }
1123
seq_show(struct seq_file * s,void * v)1124 static int seq_show(struct seq_file *s, void *v)
1125 {
1126 const struct nfulnl_instance *inst = v;
1127
1128 seq_printf(s, "%5u %6u %5u %1u %5u %6u %2u\n",
1129 inst->group_num,
1130 inst->peer_portid, inst->qlen,
1131 inst->copy_mode, inst->copy_range,
1132 inst->flushtimeout, refcount_read(&inst->use));
1133
1134 return 0;
1135 }
1136
1137 static const struct seq_operations nful_seq_ops = {
1138 .start = seq_start,
1139 .next = seq_next,
1140 .stop = seq_stop,
1141 .show = seq_show,
1142 };
1143 #endif /* PROC_FS */
1144
nfnl_log_net_init(struct net * net)1145 static int __net_init nfnl_log_net_init(struct net *net)
1146 {
1147 unsigned int i;
1148 struct nfnl_log_net *log = nfnl_log_pernet(net);
1149 #ifdef CONFIG_PROC_FS
1150 struct proc_dir_entry *proc;
1151 kuid_t root_uid;
1152 kgid_t root_gid;
1153 #endif
1154
1155 for (i = 0; i < INSTANCE_BUCKETS; i++)
1156 INIT_HLIST_HEAD(&log->instance_table[i]);
1157 spin_lock_init(&log->instances_lock);
1158
1159 #ifdef CONFIG_PROC_FS
1160 proc = proc_create_net("nfnetlink_log", 0440, net->nf.proc_netfilter,
1161 &nful_seq_ops, sizeof(struct iter_state));
1162 if (!proc)
1163 return -ENOMEM;
1164
1165 root_uid = make_kuid(net->user_ns, 0);
1166 root_gid = make_kgid(net->user_ns, 0);
1167 if (uid_valid(root_uid) && gid_valid(root_gid))
1168 proc_set_user(proc, root_uid, root_gid);
1169 #endif
1170 return 0;
1171 }
1172
nfnl_log_net_pre_exit(struct net * net)1173 static void __net_exit nfnl_log_net_pre_exit(struct net *net)
1174 {
1175 #ifdef CONFIG_PROC_FS
1176 remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter);
1177 #endif
1178 nf_log_unset(net, &nfulnl_logger);
1179 }
1180
nfnl_log_net_exit(struct net * net)1181 static void __net_exit nfnl_log_net_exit(struct net *net)
1182 {
1183 struct nfnl_log_net *log = nfnl_log_pernet(net);
1184 unsigned int i;
1185
1186 for (i = 0; i < INSTANCE_BUCKETS; i++)
1187 WARN_ON_ONCE(!hlist_empty(&log->instance_table[i]));
1188 }
1189
1190 static struct pernet_operations nfnl_log_net_ops = {
1191 .init = nfnl_log_net_init,
1192 .pre_exit = nfnl_log_net_pre_exit,
1193 .exit = nfnl_log_net_exit,
1194 .id = &nfnl_log_net_id,
1195 .size = sizeof(struct nfnl_log_net),
1196 };
1197
nfnetlink_log_init(void)1198 static int __init nfnetlink_log_init(void)
1199 {
1200 int status;
1201
1202 status = register_pernet_subsys(&nfnl_log_net_ops);
1203 if (status < 0) {
1204 pr_err("failed to register pernet ops\n");
1205 goto out;
1206 }
1207
1208 netlink_register_notifier(&nfulnl_rtnl_notifier);
1209 status = nfnetlink_subsys_register(&nfulnl_subsys);
1210 if (status < 0) {
1211 pr_err("failed to create netlink socket\n");
1212 goto cleanup_netlink_notifier;
1213 }
1214
1215 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
1216 if (status < 0) {
1217 pr_err("failed to register logger\n");
1218 goto cleanup_subsys;
1219 }
1220
1221 return status;
1222
1223 cleanup_subsys:
1224 nfnetlink_subsys_unregister(&nfulnl_subsys);
1225 cleanup_netlink_notifier:
1226 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1227 unregister_pernet_subsys(&nfnl_log_net_ops);
1228 out:
1229 return status;
1230 }
1231
nfnetlink_log_fini(void)1232 static void __exit nfnetlink_log_fini(void)
1233 {
1234 nfnetlink_subsys_unregister(&nfulnl_subsys);
1235 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1236 unregister_pernet_subsys(&nfnl_log_net_ops);
1237 nf_log_unregister(&nfulnl_logger);
1238 }
1239
1240 MODULE_DESCRIPTION("netfilter userspace logging");
1241 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1242 MODULE_LICENSE("GPL");
1243 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
1244 MODULE_ALIAS_NF_LOGGER(AF_INET, 1);
1245 MODULE_ALIAS_NF_LOGGER(AF_INET6, 1);
1246 MODULE_ALIAS_NF_LOGGER(AF_BRIDGE, 1);
1247 MODULE_ALIAS_NF_LOGGER(3, 1); /* NFPROTO_ARP */
1248 MODULE_ALIAS_NF_LOGGER(5, 1); /* NFPROTO_NETDEV */
1249
1250 module_init(nfnetlink_log_init);
1251 module_exit(nfnetlink_log_fini);
1252