blob: d4199eb9b3380204fef6c49195fc38133916d964 [file] [log] [blame]
Harald Welte0597f262005-08-09 19:58:39 -07001/*
2 * This is a module which is used for logging packets to userspace via
3 * nfetlink.
4 *
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
6 *
7 * Based on the old ipv4-only ipt_ULOG.c:
8 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Harald Welte0597f262005-08-09 19:58:39 -070013 */
14#include <linux/module.h>
15#include <linux/skbuff.h>
Pablo Neira Ayusoe035edd2012-12-17 01:12:00 +010016#include <linux/if_arp.h>
Harald Welte0597f262005-08-09 19:58:39 -070017#include <linux/init.h>
18#include <linux/ip.h>
19#include <linux/ipv6.h>
20#include <linux/netdevice.h>
21#include <linux/netfilter.h>
Hong zhi guo573ce262013-03-27 06:47:04 +000022#include <net/netlink.h>
Harald Welte0597f262005-08-09 19:58:39 -070023#include <linux/netfilter/nfnetlink.h>
24#include <linux/netfilter/nfnetlink_log.h>
25#include <linux/spinlock.h>
26#include <linux/sysctl.h>
27#include <linux/proc_fs.h>
28#include <linux/security.h>
29#include <linux/list.h>
30#include <linux/jhash.h>
31#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Harald Welte0597f262005-08-09 19:58:39 -070033#include <net/sock.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080034#include <net/netfilter/nf_log.h>
Gao feng9368a532013-03-24 23:50:45 +000035#include <net/netns/generic.h>
Patrick McHardyd9e15002008-11-18 12:16:52 +010036#include <net/netfilter/nfnetlink_log.h>
Harald Welte0597f262005-08-09 19:58:39 -070037
Arun Sharma600634972011-07-26 16:09:06 -070038#include <linux/atomic.h>
Harald Welte0597f262005-08-09 19:58:39 -070039
Harald Weltefbcd9232005-08-09 20:22:10 -070040#ifdef CONFIG_BRIDGE_NETFILTER
41#include "../bridge/br_private.h"
42#endif
43
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080044#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Eric Leblond2c6764b2009-02-18 15:29:49 +010045#define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070046#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070047#define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
Harald Welte0597f262005-08-09 19:58:39 -070048
49#define PRINTR(x, args...) do { if (net_ratelimit()) \
50 printk(x, ## args); } while (0);
51
Harald Welte0597f262005-08-09 19:58:39 -070052struct nfulnl_instance {
53 struct hlist_node hlist; /* global list of instances */
54 spinlock_t lock;
55 atomic_t use; /* use count */
56
57 unsigned int qlen; /* number of nlmsgs in skb */
58 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070059 struct timer_list timer;
Gao feng9368a532013-03-24 23:50:45 +000060 struct net *net;
Eric W. Biederman9eea9512012-05-25 10:42:54 -060061 struct user_namespace *peer_user_ns; /* User namespace of the peer process */
Eric W. Biederman15e47302012-09-07 20:12:54 +000062 int peer_portid; /* PORTID of the peer process */
Harald Welte0597f262005-08-09 19:58:39 -070063
64 /* configurable parameters */
65 unsigned int flushtimeout; /* timeout until queue flush */
66 unsigned int nlbufsiz; /* netlink buffer allocation size */
67 unsigned int qthreshold; /* threshold of the queue */
68 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080069 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070070 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080071 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080072 u_int8_t copy_mode;
Eric Dumazetbed1be22010-06-09 18:14:58 +020073 struct rcu_head rcu;
Harald Welte0597f262005-08-09 19:58:39 -070074};
75
Harald Welte0597f262005-08-09 19:58:39 -070076#define INSTANCE_BUCKETS 16
Harald Welte0597f262005-08-09 19:58:39 -070077static unsigned int hash_init;
78
Gao feng9368a532013-03-24 23:50:45 +000079static int nfnl_log_net_id __read_mostly;
80
81struct nfnl_log_net {
82 spinlock_t instances_lock;
83 struct hlist_head instance_table[INSTANCE_BUCKETS];
84 atomic_t global_seq;
85};
86
87static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
88{
89 return net_generic(net, nfnl_log_net_id);
90}
91
Harald Welte0597f262005-08-09 19:58:39 -070092static inline u_int8_t instance_hashfn(u_int16_t group_num)
93{
94 return ((group_num & 0xff) % INSTANCE_BUCKETS);
95}
96
97static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +000098__instance_lookup(struct nfnl_log_net *log, u_int16_t group_num)
Harald Welte0597f262005-08-09 19:58:39 -070099{
100 struct hlist_head *head;
Harald Welte0597f262005-08-09 19:58:39 -0700101 struct nfulnl_instance *inst;
102
Gao feng9368a532013-03-24 23:50:45 +0000103 head = &log->instance_table[instance_hashfn(group_num)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800104 hlist_for_each_entry_rcu(inst, head, hlist) {
Harald Welte0597f262005-08-09 19:58:39 -0700105 if (inst->group_num == group_num)
106 return inst;
107 }
108 return NULL;
109}
110
111static inline void
112instance_get(struct nfulnl_instance *inst)
113{
114 atomic_inc(&inst->use);
115}
116
117static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +0000118instance_lookup_get(struct nfnl_log_net *log, u_int16_t group_num)
Harald Welte0597f262005-08-09 19:58:39 -0700119{
120 struct nfulnl_instance *inst;
121
Eric Dumazetbed1be22010-06-09 18:14:58 +0200122 rcu_read_lock_bh();
Gao feng9368a532013-03-24 23:50:45 +0000123 inst = __instance_lookup(log, group_num);
Eric Dumazetf5c54402010-06-14 16:15:23 +0200124 if (inst && !atomic_inc_not_zero(&inst->use))
125 inst = NULL;
Eric Dumazetbed1be22010-06-09 18:14:58 +0200126 rcu_read_unlock_bh();
Harald Welte0597f262005-08-09 19:58:39 -0700127
128 return inst;
129}
130
Eric Dumazetbed1be22010-06-09 18:14:58 +0200131static void nfulnl_instance_free_rcu(struct rcu_head *head)
132{
Gao feng9368a532013-03-24 23:50:45 +0000133 struct nfulnl_instance *inst =
134 container_of(head, struct nfulnl_instance, rcu);
135
136 put_net(inst->net);
137 kfree(inst);
Eric Dumazetbed1be22010-06-09 18:14:58 +0200138 module_put(THIS_MODULE);
139}
140
Harald Welte0597f262005-08-09 19:58:39 -0700141static void
142instance_put(struct nfulnl_instance *inst)
143{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200144 if (inst && atomic_dec_and_test(&inst->use))
145 call_rcu_bh(&inst->rcu, nfulnl_instance_free_rcu);
Harald Welte0597f262005-08-09 19:58:39 -0700146}
147
148static void nfulnl_timer(unsigned long data);
149
150static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +0000151instance_create(struct net *net, u_int16_t group_num,
152 int portid, struct user_namespace *user_ns)
Harald Welte0597f262005-08-09 19:58:39 -0700153{
154 struct nfulnl_instance *inst;
Gao feng9368a532013-03-24 23:50:45 +0000155 struct nfnl_log_net *log = nfnl_log_pernet(net);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800156 int err;
Harald Welte0597f262005-08-09 19:58:39 -0700157
Gao feng9368a532013-03-24 23:50:45 +0000158 spin_lock_bh(&log->instances_lock);
159 if (__instance_lookup(log, group_num)) {
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800160 err = -EEXIST;
Harald Welte0597f262005-08-09 19:58:39 -0700161 goto out_unlock;
162 }
163
Harald Welte10dfdc62005-11-03 19:20:07 +0100164 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800165 if (!inst) {
166 err = -ENOMEM;
Harald Welte0597f262005-08-09 19:58:39 -0700167 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800168 }
Harald Welte0597f262005-08-09 19:58:39 -0700169
Michal Miroslawaace57e2007-09-28 14:45:27 -0700170 if (!try_module_get(THIS_MODULE)) {
171 kfree(inst);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800172 err = -EAGAIN;
Michal Miroslawaace57e2007-09-28 14:45:27 -0700173 goto out_unlock;
174 }
175
Harald Welte0597f262005-08-09 19:58:39 -0700176 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800177 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700178 /* needs to be two, since we _put() after creation */
179 atomic_set(&inst->use, 2);
180
Patrick McHardye6f689d2007-03-23 11:16:30 -0700181 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700182
Gao feng9368a532013-03-24 23:50:45 +0000183 inst->net = get_net(net);
Eric W. Biederman9eea9512012-05-25 10:42:54 -0600184 inst->peer_user_ns = user_ns;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000185 inst->peer_portid = portid;
Harald Welte0597f262005-08-09 19:58:39 -0700186 inst->group_num = group_num;
187
188 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
189 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
190 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
191 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700192 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700193
Eric Dumazetf5c54402010-06-14 16:15:23 +0200194 hlist_add_head_rcu(&inst->hlist,
Gao feng9368a532013-03-24 23:50:45 +0000195 &log->instance_table[instance_hashfn(group_num)]);
Harald Welte0597f262005-08-09 19:58:39 -0700196
Gao feng9368a532013-03-24 23:50:45 +0000197
198 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700199
200 return inst;
201
Harald Welte0597f262005-08-09 19:58:39 -0700202out_unlock:
Gao feng9368a532013-03-24 23:50:45 +0000203 spin_unlock_bh(&log->instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800204 return ERR_PTR(err);
Harald Welte0597f262005-08-09 19:58:39 -0700205}
206
Michal Miroslawe3567062007-09-28 14:44:21 -0700207static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700208
Eric Dumazetf5c54402010-06-14 16:15:23 +0200209/* called with BH disabled */
Harald Welte0597f262005-08-09 19:58:39 -0700210static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700211__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700212{
213 /* first pull it out of the global list */
Eric Dumazetf5c54402010-06-14 16:15:23 +0200214 hlist_del_rcu(&inst->hlist);
Harald Welte0597f262005-08-09 19:58:39 -0700215
Harald Welte0597f262005-08-09 19:58:39 -0700216 /* then flush all pending packets from skb */
217
Eric Dumazetf5c54402010-06-14 16:15:23 +0200218 spin_lock(&inst->lock);
219
220 /* lockless readers wont be able to use us */
221 inst->copy_mode = NFULNL_COPY_DISABLED;
222
Michal Miroslawe3567062007-09-28 14:44:21 -0700223 if (inst->skb)
224 __nfulnl_flush(inst);
Eric Dumazetf5c54402010-06-14 16:15:23 +0200225 spin_unlock(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700226
227 /* and finally put the refcount */
228 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700229}
230
231static inline void
Gao feng9368a532013-03-24 23:50:45 +0000232instance_destroy(struct nfnl_log_net *log,
233 struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700234{
Gao feng9368a532013-03-24 23:50:45 +0000235 spin_lock_bh(&log->instances_lock);
Patrick McHardy9afdb002007-03-23 11:12:50 -0700236 __instance_destroy(inst);
Gao feng9368a532013-03-24 23:50:45 +0000237 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700238}
239
240static int
241nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
242 unsigned int range)
243{
244 int status = 0;
245
246 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800247
Harald Welte0597f262005-08-09 19:58:39 -0700248 switch (mode) {
249 case NFULNL_COPY_NONE:
250 case NFULNL_COPY_META:
251 inst->copy_mode = mode;
252 inst->copy_range = 0;
253 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800254
Harald Welte0597f262005-08-09 19:58:39 -0700255 case NFULNL_COPY_PACKET:
256 inst->copy_mode = mode;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700257 inst->copy_range = min_t(unsigned int,
258 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700259 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800260
Harald Welte0597f262005-08-09 19:58:39 -0700261 default:
262 status = -EINVAL;
263 break;
264 }
265
266 spin_unlock_bh(&inst->lock);
267
268 return status;
269}
270
271static int
272nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
273{
274 int status;
275
276 spin_lock_bh(&inst->lock);
277 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
278 status = -ERANGE;
279 else if (nlbufsiz > 131072)
280 status = -ERANGE;
281 else {
282 inst->nlbufsiz = nlbufsiz;
283 status = 0;
284 }
285 spin_unlock_bh(&inst->lock);
286
287 return status;
288}
289
290static int
291nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
292{
293 spin_lock_bh(&inst->lock);
294 inst->flushtimeout = timeout;
295 spin_unlock_bh(&inst->lock);
296
297 return 0;
298}
299
300static int
301nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
302{
303 spin_lock_bh(&inst->lock);
304 inst->qthreshold = qthresh;
305 spin_unlock_bh(&inst->lock);
306
307 return 0;
308}
309
Harald Welte0af5f6c2006-03-20 17:15:11 -0800310static int
311nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
312{
313 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700314 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800315 spin_unlock_bh(&inst->lock);
316
317 return 0;
318}
319
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700320static struct sk_buff *
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000321nfulnl_alloc_skb(u32 peer_portid, unsigned int inst_size, unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700322{
323 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800324 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700325
Harald Welte0597f262005-08-09 19:58:39 -0700326 /* alloc skb which should be big enough for a whole multipart
327 * message. WARNING: has to be <= 128k due to slab restrictions */
328
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800329 n = max(inst_size, pkt_size);
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000330 skb = nfnetlink_alloc_skb(&init_net, n, peer_portid, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700331 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800332 if (n > pkt_size) {
333 /* try to allocate only as much as we need for current
334 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700335
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000336 skb = nfnetlink_alloc_skb(&init_net, pkt_size,
337 peer_portid, GFP_ATOMIC);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800338 if (!skb)
Joe Perches0a9ee812011-08-29 14:17:25 -0700339 pr_err("nfnetlink_log: can't even alloc %u bytes\n",
340 pkt_size);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800341 }
Harald Welte0597f262005-08-09 19:58:39 -0700342 }
343
344 return skb;
345}
346
347static int
348__nfulnl_send(struct nfulnl_instance *inst)
349{
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700350 int status = -1;
Harald Welte0597f262005-08-09 19:58:39 -0700351
David S. Millerd550d092012-06-26 21:34:03 -0700352 if (inst->qlen > 1) {
353 struct nlmsghdr *nlh = nlmsg_put(inst->skb, 0, 0,
354 NLMSG_DONE,
355 sizeof(struct nfgenmsg),
356 0);
357 if (!nlh)
358 goto out;
359 }
Gao feng9368a532013-03-24 23:50:45 +0000360 status = nfnetlink_unicast(inst->skb, inst->net, inst->peer_portid,
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100361 MSG_DONTWAIT);
Harald Welte0597f262005-08-09 19:58:39 -0700362
363 inst->qlen = 0;
364 inst->skb = NULL;
David S. Millerd550d092012-06-26 21:34:03 -0700365out:
Harald Welte0597f262005-08-09 19:58:39 -0700366 return status;
367}
368
Michal Miroslawe3567062007-09-28 14:44:21 -0700369static void
370__nfulnl_flush(struct nfulnl_instance *inst)
371{
372 /* timer holds a reference */
373 if (del_timer(&inst->timer))
374 instance_put(inst);
375 if (inst->skb)
376 __nfulnl_send(inst);
377}
378
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700379static void
380nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700381{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800382 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700383
Harald Welte0597f262005-08-09 19:58:39 -0700384 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700385 if (inst->skb)
386 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700387 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800388 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700389}
390
Harald Welte0af5f6c2006-03-20 17:15:11 -0800391/* This is an inline function, we don't really care about a long
392 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800393static inline int
Gao feng9368a532013-03-24 23:50:45 +0000394__build_packet_message(struct nfnl_log_net *log,
395 struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800396 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700397 unsigned int data_len,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200398 u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700399 unsigned int hooknum,
400 const struct net_device *indev,
401 const struct net_device *outdev,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100402 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700403{
Harald Welte0597f262005-08-09 19:58:39 -0700404 struct nfulnl_msg_packet_hdr pmsg;
405 struct nlmsghdr *nlh;
406 struct nfgenmsg *nfmsg;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700407 sk_buff_data_t old_tail = inst->skb->tail;
Eric Dumazet0626af32012-09-04 07:49:03 +0000408 struct sock *sk;
Bob Hockney0c36b482012-12-16 19:34:11 +0100409 const unsigned char *hwhdrp;
Harald Welte0597f262005-08-09 19:58:39 -0700410
David S. Millerd550d092012-06-26 21:34:03 -0700411 nlh = nlmsg_put(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700412 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
David S. Millerd550d092012-06-26 21:34:03 -0700413 sizeof(struct nfgenmsg), 0);
414 if (!nlh)
415 return -1;
416 nfmsg = nlmsg_data(nlh);
Harald Welte0597f262005-08-09 19:58:39 -0700417 nfmsg->nfgen_family = pf;
418 nfmsg->version = NFNETLINK_V0;
419 nfmsg->res_id = htons(inst->group_num);
420
Al Virofebf0a42006-11-03 00:59:17 -0800421 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700422 pmsg.hook = hooknum;
423
David S. Miller1db20a52012-03-29 23:31:16 -0400424 if (nla_put(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg))
425 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700426
David S. Miller1db20a52012-03-29 23:31:16 -0400427 if (prefix &&
428 nla_put(inst->skb, NFULA_PREFIX, plen, prefix))
429 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700430
431 if (indev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700432#ifndef CONFIG_BRIDGE_NETFILTER
David S. Miller1db20a52012-03-29 23:31:16 -0400433 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
434 htonl(indev->ifindex)))
435 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700436#else
437 if (pf == PF_BRIDGE) {
438 /* Case 1: outdev is physical input device, we need to
439 * look for bridge group (when called from
440 * netfilter_bridge) */
David S. Miller1db20a52012-03-29 23:31:16 -0400441 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
442 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700443 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000444 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
David S. Miller1db20a52012-03-29 23:31:16 -0400445 nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
446 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
447 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700448 } else {
449 /* Case 2: indev is bridge group, we need to look for
450 * physical device (when called from ipv4) */
David S. Miller1db20a52012-03-29 23:31:16 -0400451 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
452 htonl(indev->ifindex)))
453 goto nla_put_failure;
454 if (skb->nf_bridge && skb->nf_bridge->physindev &&
455 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
456 htonl(skb->nf_bridge->physindev->ifindex)))
457 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700458 }
459#endif
Harald Welte0597f262005-08-09 19:58:39 -0700460 }
461
462 if (outdev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700463#ifndef CONFIG_BRIDGE_NETFILTER
David S. Miller1db20a52012-03-29 23:31:16 -0400464 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
465 htonl(outdev->ifindex)))
466 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700467#else
468 if (pf == PF_BRIDGE) {
469 /* Case 1: outdev is physical output device, we need to
470 * look for bridge group (when called from
471 * netfilter_bridge) */
David S. Miller1db20a52012-03-29 23:31:16 -0400472 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
473 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700474 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000475 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
David S. Miller1db20a52012-03-29 23:31:16 -0400476 nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
477 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
478 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700479 } else {
480 /* Case 2: indev is a bridge group, we need to look
481 * for physical device (when called from ipv4) */
David S. Miller1db20a52012-03-29 23:31:16 -0400482 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
483 htonl(outdev->ifindex)))
484 goto nla_put_failure;
485 if (skb->nf_bridge && skb->nf_bridge->physoutdev &&
486 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
487 htonl(skb->nf_bridge->physoutdev->ifindex)))
488 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700489 }
490#endif
Harald Welte0597f262005-08-09 19:58:39 -0700491 }
492
David S. Miller1db20a52012-03-29 23:31:16 -0400493 if (skb->mark &&
494 nla_put_be32(inst->skb, NFULA_MARK, htonl(skb->mark)))
495 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700496
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200497 if (indev && skb->dev &&
498 skb->mac_header != skb->network_header) {
Harald Welte0597f262005-08-09 19:58:39 -0700499 struct nfulnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700500 int len = dev_parse_header(skb, phw.hw_addr);
501 if (len > 0) {
502 phw.hw_addrlen = htons(len);
David S. Miller1db20a52012-03-29 23:31:16 -0400503 if (nla_put(inst->skb, NFULA_HWADDR, sizeof(phw), &phw))
504 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700505 }
Harald Welte0597f262005-08-09 19:58:39 -0700506 }
507
Eric Leblond72961ec2008-07-21 10:02:35 -0700508 if (indev && skb_mac_header_was_set(skb)) {
Patrick McHardy2dba62c2012-08-19 10:16:08 +0000509 if (nla_put_be16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type)) ||
David S. Miller1db20a52012-03-29 23:31:16 -0400510 nla_put_be16(inst->skb, NFULA_HWLEN,
Bob Hockney0c36b482012-12-16 19:34:11 +0100511 htons(skb->dev->hard_header_len)))
512 goto nla_put_failure;
513
514 hwhdrp = skb_mac_header(skb);
515
516 if (skb->dev->type == ARPHRD_SIT)
517 hwhdrp -= ETH_HLEN;
518
519 if (hwhdrp >= skb->head &&
520 nla_put(inst->skb, NFULA_HWHEADER,
521 skb->dev->hard_header_len, hwhdrp))
David S. Miller1db20a52012-03-29 23:31:16 -0400522 goto nla_put_failure;
Eric Leblond72961ec2008-07-21 10:02:35 -0700523 }
524
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700525 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700526 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700527 struct timeval tv = ktime_to_timeval(skb->tstamp);
528 ts.sec = cpu_to_be64(tv.tv_sec);
529 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700530
David S. Miller1db20a52012-03-29 23:31:16 -0400531 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
532 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700533 }
534
535 /* UID */
Eric Dumazet0626af32012-09-04 07:49:03 +0000536 sk = skb->sk;
537 if (sk && sk->sk_state != TCP_TIME_WAIT) {
538 read_lock_bh(&sk->sk_callback_lock);
539 if (sk->sk_socket && sk->sk_socket->file) {
540 struct file *file = sk->sk_socket->file;
Linus Torvalds437589a2012-10-02 11:11:09 -0700541 const struct cred *cred = file->f_cred;
542 struct user_namespace *user_ns = inst->peer_user_ns;
543 __be32 uid = htonl(from_kuid_munged(user_ns, cred->fsuid));
544 __be32 gid = htonl(from_kgid_munged(user_ns, cred->fsgid));
Eric Dumazet0626af32012-09-04 07:49:03 +0000545 read_unlock_bh(&sk->sk_callback_lock);
David S. Miller1db20a52012-03-29 23:31:16 -0400546 if (nla_put_be32(inst->skb, NFULA_UID, uid) ||
547 nla_put_be32(inst->skb, NFULA_GID, gid))
548 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700549 } else
Eric Dumazet0626af32012-09-04 07:49:03 +0000550 read_unlock_bh(&sk->sk_callback_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700551 }
552
Harald Welte0af5f6c2006-03-20 17:15:11 -0800553 /* local sequence number */
David S. Miller1db20a52012-03-29 23:31:16 -0400554 if ((inst->flags & NFULNL_CFG_F_SEQ) &&
555 nla_put_be32(inst->skb, NFULA_SEQ, htonl(inst->seq++)))
556 goto nla_put_failure;
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800557
Harald Welte0af5f6c2006-03-20 17:15:11 -0800558 /* global sequence number */
David S. Miller1db20a52012-03-29 23:31:16 -0400559 if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
560 nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
Gao feng9368a532013-03-24 23:50:45 +0000561 htonl(atomic_inc_return(&log->global_seq))))
David S. Miller1db20a52012-03-29 23:31:16 -0400562 goto nla_put_failure;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800563
Harald Welte0597f262005-08-09 19:58:39 -0700564 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700565 struct nlattr *nla;
566 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700567
Patrick McHardydf6fb862007-09-28 14:37:03 -0700568 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700569 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
David S. Millerd550d092012-06-26 21:34:03 -0700570 return -1;
Harald Welte0597f262005-08-09 19:58:39 -0700571 }
572
Patrick McHardydf6fb862007-09-28 14:37:03 -0700573 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
574 nla->nla_type = NFULA_PAYLOAD;
575 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700576
Patrick McHardydf6fb862007-09-28 14:37:03 -0700577 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700578 BUG();
579 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800580
Harald Welte0597f262005-08-09 19:58:39 -0700581 nlh->nlmsg_len = inst->skb->tail - old_tail;
582 return 0;
583
Patrick McHardydf6fb862007-09-28 14:37:03 -0700584nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700585 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
586 return -1;
587}
588
589#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
590
591static struct nf_loginfo default_loginfo = {
592 .type = NF_LOG_TYPE_ULOG,
593 .u = {
594 .ulog = {
595 .copy_len = 0xffff,
596 .group = 0,
597 .qthreshold = 1,
598 },
599 },
600};
601
602/* log handler for internal netfilter logging api */
Eric Leblond5f7340e2008-11-04 14:21:08 +0100603void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200604nfulnl_log_packet(u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700605 unsigned int hooknum,
606 const struct sk_buff *skb,
607 const struct net_device *in,
608 const struct net_device *out,
609 const struct nf_loginfo *li_user,
610 const char *prefix)
611{
612 unsigned int size, data_len;
613 struct nfulnl_instance *inst;
614 const struct nf_loginfo *li;
615 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100616 unsigned int plen;
Gao feng9368a532013-03-24 23:50:45 +0000617 struct net *net = dev_net(in ? in : out);
618 struct nfnl_log_net *log = nfnl_log_pernet(net);
Harald Welte0597f262005-08-09 19:58:39 -0700619
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800620 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700621 li = li_user;
622 else
623 li = &default_loginfo;
624
Gao feng9368a532013-03-24 23:50:45 +0000625 inst = instance_lookup_get(log, li->u.ulog.group);
Harald Welte0597f262005-08-09 19:58:39 -0700626 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700627 return;
Harald Welte0597f262005-08-09 19:58:39 -0700628
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100629 plen = 0;
630 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800631 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100632
Harald Welte0597f262005-08-09 19:58:39 -0700633 /* FIXME: do we want to make the size calculation conditional based on
634 * what is actually present? way more branches and checks, but more
635 * memory efficient... */
Hong zhi guo573ce262013-03-27 06:47:04 +0000636 size = nlmsg_total_size(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700637 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
638 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
639 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700640#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700641 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
642 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700643#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700644 + nla_total_size(sizeof(u_int32_t)) /* mark */
645 + nla_total_size(sizeof(u_int32_t)) /* uid */
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800646 + nla_total_size(sizeof(u_int32_t)) /* gid */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700647 + nla_total_size(plen) /* prefix */
648 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
649 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
Harald Welte0597f262005-08-09 19:58:39 -0700650
Pablo Neira Ayusoeeff9be2009-05-27 15:49:11 +0200651 if (in && skb_mac_header_was_set(skb)) {
652 size += nla_total_size(skb->dev->hard_header_len)
653 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
654 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
655 }
656
Harald Welte0597f262005-08-09 19:58:39 -0700657 spin_lock_bh(&inst->lock);
658
Harald Welte0af5f6c2006-03-20 17:15:11 -0800659 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700660 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800661 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700662 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800663
Harald Welte0597f262005-08-09 19:58:39 -0700664 qthreshold = inst->qthreshold;
665 /* per-rule qthreshold overrides per-instance */
Eric Leblond5ca431f2009-02-18 15:29:23 +0100666 if (li->u.ulog.qthreshold)
667 if (qthreshold > li->u.ulog.qthreshold)
668 qthreshold = li->u.ulog.qthreshold;
669
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800670
Harald Welte0597f262005-08-09 19:58:39 -0700671 switch (inst->copy_mode) {
672 case NFULNL_COPY_META:
673 case NFULNL_COPY_NONE:
674 data_len = 0;
675 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800676
Harald Welte0597f262005-08-09 19:58:39 -0700677 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800678 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700679 || inst->copy_range > skb->len)
680 data_len = skb->len;
681 else
682 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800683
Patrick McHardydf6fb862007-09-28 14:37:03 -0700684 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700685 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800686
Eric Dumazetf5c54402010-06-14 16:15:23 +0200687 case NFULNL_COPY_DISABLED:
Harald Welte0597f262005-08-09 19:58:39 -0700688 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700689 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700690 }
691
Michal Miroslawd63b0432007-09-28 14:44:44 -0700692 if (inst->skb &&
693 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
Harald Welte0597f262005-08-09 19:58:39 -0700694 /* either the queue len is too high or we don't have
695 * enough room in the skb left. flush to userspace. */
Michal Miroslawe3567062007-09-28 14:44:21 -0700696 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700697 }
Harald Welte0597f262005-08-09 19:58:39 -0700698
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700699 if (!inst->skb) {
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000700 inst->skb = nfulnl_alloc_skb(inst->peer_portid, inst->nlbufsiz,
701 size);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700702 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700703 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700704 }
705
Harald Welte0597f262005-08-09 19:58:39 -0700706 inst->qlen++;
707
Gao feng9368a532013-03-24 23:50:45 +0000708 __build_packet_message(log, inst, skb, data_len, pf,
Florian Westphal82487792011-02-15 21:59:37 +0100709 hooknum, in, out, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700710
Michal Miroslawd63b0432007-09-28 14:44:44 -0700711 if (inst->qlen >= qthreshold)
712 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700713 /* timer_pending always called within inst->lock, so there
714 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700715 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700716 instance_get(inst);
717 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
718 add_timer(&inst->timer);
719 }
Harald Welte0597f262005-08-09 19:58:39 -0700720
Michal Miroslawed32abe2007-03-04 15:58:15 -0800721unlock_and_release:
722 spin_unlock_bh(&inst->lock);
723 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700724 return;
725
726alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700727 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800728 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700729}
Eric Leblond5f7340e2008-11-04 14:21:08 +0100730EXPORT_SYMBOL_GPL(nfulnl_log_packet);
Harald Welte0597f262005-08-09 19:58:39 -0700731
732static int
733nfulnl_rcv_nl_event(struct notifier_block *this,
734 unsigned long event, void *ptr)
735{
736 struct netlink_notify *n = ptr;
Gao feng9368a532013-03-24 23:50:45 +0000737 struct nfnl_log_net *log = nfnl_log_pernet(n->net);
Harald Welte0597f262005-08-09 19:58:39 -0700738
Patrick McHardydee58172009-11-06 17:04:00 +0100739 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte0597f262005-08-09 19:58:39 -0700740 int i;
741
Eric W. Biederman15e47302012-09-07 20:12:54 +0000742 /* destroy all instances for this portid */
Gao feng9368a532013-03-24 23:50:45 +0000743 spin_lock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700744 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800745 struct hlist_node *t2;
Harald Welte0597f262005-08-09 19:58:39 -0700746 struct nfulnl_instance *inst;
Gao feng9368a532013-03-24 23:50:45 +0000747 struct hlist_head *head = &log->instance_table[i];
Harald Welte0597f262005-08-09 19:58:39 -0700748
Sasha Levinb67bfe02013-02-27 17:06:00 -0800749 hlist_for_each_entry_safe(inst, t2, head, hlist) {
Gao feng9368a532013-03-24 23:50:45 +0000750 if (n->portid == inst->peer_portid)
Harald Welte0597f262005-08-09 19:58:39 -0700751 __instance_destroy(inst);
752 }
753 }
Gao feng9368a532013-03-24 23:50:45 +0000754 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700755 }
756 return NOTIFY_DONE;
757}
758
759static struct notifier_block nfulnl_rtnl_notifier = {
760 .notifier_call = nfulnl_rcv_nl_event,
761};
762
763static int
764nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200765 const struct nlmsghdr *nlh,
766 const struct nlattr * const nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700767{
768 return -ENOTSUPP;
769}
770
Eric Leblondca735b32009-03-16 14:54:21 +0100771static struct nf_logger nfulnl_logger __read_mostly = {
Harald Welte0597f262005-08-09 19:58:39 -0700772 .name = "nfnetlink_log",
773 .logfn = &nfulnl_log_packet,
774 .me = THIS_MODULE,
775};
776
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700777static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
778 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
779 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
780 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
781 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
782 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
783 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700784};
785
786static int
787nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200788 const struct nlmsghdr *nlh,
789 const struct nlattr * const nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700790{
David S. Millerd550d092012-06-26 21:34:03 -0700791 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte0597f262005-08-09 19:58:39 -0700792 u_int16_t group_num = ntohs(nfmsg->res_id);
793 struct nfulnl_instance *inst;
Patrick McHardyb7047a12008-03-10 16:44:13 -0700794 struct nfulnl_msg_config_cmd *cmd = NULL;
Gao feng30e0c6a2013-03-24 23:50:40 +0000795 struct net *net = sock_net(ctnl);
Gao feng9368a532013-03-24 23:50:45 +0000796 struct nfnl_log_net *log = nfnl_log_pernet(net);
Harald Welte0597f262005-08-09 19:58:39 -0700797 int ret = 0;
798
Patrick McHardyb7047a12008-03-10 16:44:13 -0700799 if (nfula[NFULA_CFG_CMD]) {
800 u_int8_t pf = nfmsg->nfgen_family;
801 cmd = nla_data(nfula[NFULA_CFG_CMD]);
802
803 /* Commands without queue context */
804 switch (cmd->command) {
805 case NFULNL_CFG_CMD_PF_BIND:
Gao feng30e0c6a2013-03-24 23:50:40 +0000806 return nf_log_bind_pf(net, pf, &nfulnl_logger);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700807 case NFULNL_CFG_CMD_PF_UNBIND:
Gao feng30e0c6a2013-03-24 23:50:40 +0000808 nf_log_unbind_pf(net, pf);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700809 return 0;
810 }
811 }
812
Gao feng9368a532013-03-24 23:50:45 +0000813 inst = instance_lookup_get(log, group_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000814 if (inst && inst->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardyc05063652007-12-17 22:39:55 -0800815 ret = -EPERM;
816 goto out_put;
817 }
818
Patrick McHardyb7047a12008-03-10 16:44:13 -0700819 if (cmd != NULL) {
Harald Welte0597f262005-08-09 19:58:39 -0700820 switch (cmd->command) {
821 case NFULNL_CFG_CMD_BIND:
822 if (inst) {
823 ret = -EBUSY;
824 goto out_put;
825 }
826
Gao feng9368a532013-03-24 23:50:45 +0000827 inst = instance_create(net, group_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000828 NETLINK_CB(skb).portid,
Patrick McHardye32123e2013-04-17 06:46:57 +0000829 sk_user_ns(NETLINK_CB(skb).sk));
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800830 if (IS_ERR(inst)) {
831 ret = PTR_ERR(inst);
Michal Miroslawf414c162007-03-23 11:11:31 -0700832 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700833 }
834 break;
835 case NFULNL_CFG_CMD_UNBIND:
836 if (!inst) {
837 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700838 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700839 }
840
Gao feng9368a532013-03-24 23:50:45 +0000841 instance_destroy(log, inst);
Alexey Dobriyana49c6502010-02-26 17:48:40 +0100842 goto out_put;
Harald Welte0597f262005-08-09 19:58:39 -0700843 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -0800844 ret = -ENOTSUPP;
Harald Welte0597f262005-08-09 19:58:39 -0700845 break;
846 }
Harald Welte0597f262005-08-09 19:58:39 -0700847 }
848
Patrick McHardydf6fb862007-09-28 14:37:03 -0700849 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700850 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700851 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700852
Patrick McHardyc05063652007-12-17 22:39:55 -0800853 if (!inst) {
854 ret = -ENODEV;
855 goto out;
856 }
Harald Welte0597f262005-08-09 19:58:39 -0700857 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800858 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700859 }
860
Patrick McHardydf6fb862007-09-28 14:37:03 -0700861 if (nfula[NFULA_CFG_TIMEOUT]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800862 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700863
Patrick McHardyc05063652007-12-17 22:39:55 -0800864 if (!inst) {
865 ret = -ENODEV;
866 goto out;
867 }
Harald Welte0597f262005-08-09 19:58:39 -0700868 nfulnl_set_timeout(inst, ntohl(timeout));
869 }
870
Patrick McHardydf6fb862007-09-28 14:37:03 -0700871 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800872 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700873
Patrick McHardyc05063652007-12-17 22:39:55 -0800874 if (!inst) {
875 ret = -ENODEV;
876 goto out;
877 }
Harald Welte0597f262005-08-09 19:58:39 -0700878 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
879 }
880
Patrick McHardydf6fb862007-09-28 14:37:03 -0700881 if (nfula[NFULA_CFG_QTHRESH]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800882 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700883
Patrick McHardyc05063652007-12-17 22:39:55 -0800884 if (!inst) {
885 ret = -ENODEV;
886 goto out;
887 }
Harald Welte0597f262005-08-09 19:58:39 -0700888 nfulnl_set_qthresh(inst, ntohl(qthresh));
889 }
890
Patrick McHardydf6fb862007-09-28 14:37:03 -0700891 if (nfula[NFULA_CFG_FLAGS]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800892 __be16 flags = nla_get_be16(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyc05063652007-12-17 22:39:55 -0800893
894 if (!inst) {
895 ret = -ENODEV;
896 goto out;
897 }
Patrick McHardyee433532006-05-19 02:17:18 -0700898 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800899 }
900
Harald Welte0597f262005-08-09 19:58:39 -0700901out_put:
902 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800903out:
Harald Welte0597f262005-08-09 19:58:39 -0700904 return ret;
905}
906
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700907static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700908 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800909 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700910 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700911 .attr_count = NFULA_CFG_MAX,
912 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700913};
914
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700915static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700916 .name = "log",
917 .subsys_id = NFNL_SUBSYS_ULOG,
918 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700919 .cb = nfulnl_cb,
920};
921
922#ifdef CONFIG_PROC_FS
923struct iter_state {
Gao feng9368a532013-03-24 23:50:45 +0000924 struct seq_net_private p;
Harald Welte0597f262005-08-09 19:58:39 -0700925 unsigned int bucket;
926};
927
Gao feng9368a532013-03-24 23:50:45 +0000928static struct hlist_node *get_first(struct net *net, struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700929{
Gao feng9368a532013-03-24 23:50:45 +0000930 struct nfnl_log_net *log;
Harald Welte0597f262005-08-09 19:58:39 -0700931 if (!st)
932 return NULL;
933
Gao feng9368a532013-03-24 23:50:45 +0000934 log = nfnl_log_pernet(net);
935
Harald Welte0597f262005-08-09 19:58:39 -0700936 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao feng9368a532013-03-24 23:50:45 +0000937 struct hlist_head *head = &log->instance_table[st->bucket];
938
939 if (!hlist_empty(head))
940 return rcu_dereference_bh(hlist_first_rcu(head));
Harald Welte0597f262005-08-09 19:58:39 -0700941 }
942 return NULL;
943}
944
Gao feng9368a532013-03-24 23:50:45 +0000945static struct hlist_node *get_next(struct net *net, struct iter_state *st,
946 struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700947{
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100948 h = rcu_dereference_bh(hlist_next_rcu(h));
Harald Welte0597f262005-08-09 19:58:39 -0700949 while (!h) {
Gao feng9368a532013-03-24 23:50:45 +0000950 struct nfnl_log_net *log;
951 struct hlist_head *head;
952
Harald Welte0597f262005-08-09 19:58:39 -0700953 if (++st->bucket >= INSTANCE_BUCKETS)
954 return NULL;
955
Gao feng9368a532013-03-24 23:50:45 +0000956 log = nfnl_log_pernet(net);
957 head = &log->instance_table[st->bucket];
958 h = rcu_dereference_bh(hlist_first_rcu(head));
Harald Welte0597f262005-08-09 19:58:39 -0700959 }
960 return h;
961}
962
Gao feng9368a532013-03-24 23:50:45 +0000963static struct hlist_node *get_idx(struct net *net, struct iter_state *st,
964 loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700965{
966 struct hlist_node *head;
Gao feng9368a532013-03-24 23:50:45 +0000967 head = get_first(net, st);
Harald Welte0597f262005-08-09 19:58:39 -0700968
969 if (head)
Gao feng9368a532013-03-24 23:50:45 +0000970 while (pos && (head = get_next(net, st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700971 pos--;
972 return pos ? NULL : head;
973}
974
Gao feng9368a532013-03-24 23:50:45 +0000975static void *seq_start(struct seq_file *s, loff_t *pos)
Eric Dumazetbed1be22010-06-09 18:14:58 +0200976 __acquires(rcu_bh)
Harald Welte0597f262005-08-09 19:58:39 -0700977{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200978 rcu_read_lock_bh();
Gao feng9368a532013-03-24 23:50:45 +0000979 return get_idx(seq_file_net(s), s->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700980}
981
982static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
983{
984 (*pos)++;
Gao feng9368a532013-03-24 23:50:45 +0000985 return get_next(seq_file_net(s), s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700986}
987
988static void seq_stop(struct seq_file *s, void *v)
Eric Dumazetbed1be22010-06-09 18:14:58 +0200989 __releases(rcu_bh)
Harald Welte0597f262005-08-09 19:58:39 -0700990{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200991 rcu_read_unlock_bh();
Harald Welte0597f262005-08-09 19:58:39 -0700992}
993
994static int seq_show(struct seq_file *s, void *v)
995{
996 const struct nfulnl_instance *inst = v;
997
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800998 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700999 inst->group_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001000 inst->peer_portid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -07001001 inst->copy_mode, inst->copy_range,
1002 inst->flushtimeout, atomic_read(&inst->use));
1003}
1004
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001005static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -07001006 .start = seq_start,
1007 .next = seq_next,
1008 .stop = seq_stop,
1009 .show = seq_show,
1010};
1011
1012static int nful_open(struct inode *inode, struct file *file)
1013{
Gao feng9368a532013-03-24 23:50:45 +00001014 return seq_open_net(inode, file, &nful_seq_ops,
1015 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -07001016}
1017
Arjan van de Venda7071d2007-02-12 00:55:36 -08001018static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -07001019 .owner = THIS_MODULE,
1020 .open = nful_open,
1021 .read = seq_read,
1022 .llseek = seq_lseek,
Gao feng9368a532013-03-24 23:50:45 +00001023 .release = seq_release_net,
Harald Welte0597f262005-08-09 19:58:39 -07001024};
1025
1026#endif /* PROC_FS */
1027
Gao feng9368a532013-03-24 23:50:45 +00001028static int __net_init nfnl_log_net_init(struct net *net)
Harald Welte0597f262005-08-09 19:58:39 -07001029{
Gao feng9368a532013-03-24 23:50:45 +00001030 unsigned int i;
1031 struct nfnl_log_net *log = nfnl_log_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001032
Harald Welte0597f262005-08-09 19:58:39 -07001033 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao feng9368a532013-03-24 23:50:45 +00001034 INIT_HLIST_HEAD(&log->instance_table[i]);
1035 spin_lock_init(&log->instances_lock);
1036
1037#ifdef CONFIG_PROC_FS
1038 if (!proc_create("nfnetlink_log", 0440,
1039 net->nf.proc_netfilter, &nful_file_ops))
1040 return -ENOMEM;
1041#endif
1042 return 0;
1043}
1044
1045static void __net_exit nfnl_log_net_exit(struct net *net)
1046{
1047 remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter);
1048}
1049
1050static struct pernet_operations nfnl_log_net_ops = {
1051 .init = nfnl_log_net_init,
1052 .exit = nfnl_log_net_exit,
1053 .id = &nfnl_log_net_id,
1054 .size = sizeof(struct nfnl_log_net),
1055};
1056
1057static int __init nfnetlink_log_init(void)
1058{
1059 int status = -ENOMEM;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001060
Harald Welte0597f262005-08-09 19:58:39 -07001061 /* it's not really all that important to have a random value, so
1062 * we can do this from the init function, even if there hasn't
1063 * been that much entropy yet */
1064 get_random_bytes(&hash_init, sizeof(hash_init));
1065
1066 netlink_register_notifier(&nfulnl_rtnl_notifier);
1067 status = nfnetlink_subsys_register(&nfulnl_subsys);
1068 if (status < 0) {
Gao feng9368a532013-03-24 23:50:45 +00001069 pr_err("log: failed to create netlink socket\n");
Harald Welte0597f262005-08-09 19:58:39 -07001070 goto cleanup_netlink_notifier;
1071 }
1072
Eric Leblondca735b32009-03-16 14:54:21 +01001073 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
1074 if (status < 0) {
Gao feng9368a532013-03-24 23:50:45 +00001075 pr_err("log: failed to register logger\n");
Eric Leblondca735b32009-03-16 14:54:21 +01001076 goto cleanup_subsys;
1077 }
1078
Gao feng9368a532013-03-24 23:50:45 +00001079 status = register_pernet_subsys(&nfnl_log_net_ops);
1080 if (status < 0) {
1081 pr_err("log: failed to register pernet ops\n");
Eric Leblondca735b32009-03-16 14:54:21 +01001082 goto cleanup_logger;
Julia Lawall6fc09f12012-08-29 06:49:17 +00001083 }
Harald Welte0597f262005-08-09 19:58:39 -07001084 return status;
1085
Eric Leblondca735b32009-03-16 14:54:21 +01001086cleanup_logger:
1087 nf_log_unregister(&nfulnl_logger);
Harald Welte0597f262005-08-09 19:58:39 -07001088cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -07001089 nfnetlink_subsys_unregister(&nfulnl_subsys);
1090cleanup_netlink_notifier:
1091 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1092 return status;
1093}
1094
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001095static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -07001096{
Gao feng9368a532013-03-24 23:50:45 +00001097 unregister_pernet_subsys(&nfnl_log_net_ops);
Patrick McHardye92ad992007-02-12 11:11:55 -08001098 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -07001099 nfnetlink_subsys_unregister(&nfulnl_subsys);
1100 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -07001101}
1102
1103MODULE_DESCRIPTION("netfilter userspace logging");
1104MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1105MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001106MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -07001107
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001108module_init(nfnetlink_log_init);
1109module_exit(nfnetlink_log_fini);