blob: 8799c836ccaa002a9e72a324fe32b8ec4168f5e6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * netfilter module for userspace packet logging daemons
3 *
4 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090012 * This module accepts two parameters:
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * nlbufsiz:
15 * The parameter specifies how big the buffer for each netlink multicast
16 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
17 * get accumulated in the kernel until they are sent to userspace. It is
18 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
19 * because atomically allocating 128kB inside the network rx softirq is not
20 * reliable. Please also keep in mind that this buffer size is allocated for
21 * each nlgroup you are using, so the total kernel memory usage increases
22 * by that factor.
23 *
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080024 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
25 * nlbufsiz is used with alloc_skb, which adds another
26 * sizeof(struct skb_shared_info). Use NLMSG_GOODSIZE instead.
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * flushtimeout:
29 * Specify, after how many hundredths of a second the queue should be
30 * flushed even if it is not full yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/spinlock.h>
35#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/skbuff.h>
38#include <linux/kernel.h>
39#include <linux/timer.h>
Hong zhi guo573ce262013-03-27 06:47:04 +000040#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/netdevice.h>
42#include <linux/mm.h>
43#include <linux/moduleparam.h>
44#include <linux/netfilter.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080045#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/netfilter_ipv4/ipt_ULOG.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080047#include <net/netfilter/nf_log.h>
Gao feng35543062013-03-24 23:50:44 +000048#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/sock.h>
50#include <linux/bitops.h>
Patrick McHardy01102e72007-04-12 14:27:03 -070051#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53MODULE_LICENSE("GPL");
54MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080055MODULE_DESCRIPTION("Xtables: packet logging to netlink using ULOG");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070056MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NFLOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define ULOG_NL_EVENT 111 /* Harald's favorite number */
59#define ULOG_MAXNLGROUPS 32 /* numer of nlgroups */
60
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080061static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Patrick McHardye7be6992006-01-05 12:19:46 -080062module_param(nlbufsiz, uint, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
64
65static unsigned int flushtimeout = 10;
Patrick McHardye7be6992006-01-05 12:19:46 -080066module_param(flushtimeout, uint, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths of a second)");
68
Rusty Russelleb939922011-12-19 14:08:01 +000069static bool nflog = true;
Patrick McHardye7be6992006-01-05 12:19:46 -080070module_param(nflog, bool, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071MODULE_PARM_DESC(nflog, "register as internal netfilter logging module");
72
73/* global data structures */
74
75typedef struct {
76 unsigned int qlen; /* number of nlmsgs' in the skb */
77 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
78 struct sk_buff *skb; /* the pre-allocated skb */
79 struct timer_list timer; /* the timer function */
80} ulog_buff_t;
81
Gao feng35543062013-03-24 23:50:44 +000082static int ulog_net_id __read_mostly;
83struct ulog_net {
84 unsigned int nlgroup[ULOG_MAXNLGROUPS];
85 ulog_buff_t ulog_buffers[ULOG_MAXNLGROUPS];
86 struct sock *nflognl;
87 spinlock_t lock;
88};
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Gao feng35543062013-03-24 23:50:44 +000090static struct ulog_net *ulog_pernet(struct net *net)
91{
92 return net_generic(net, ulog_net_id);
93}
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* send one ulog_buff_t to userspace */
Gao feng35543062013-03-24 23:50:44 +000096static void ulog_send(struct ulog_net *ulog, unsigned int nlgroupnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Gao feng35543062013-03-24 23:50:44 +000098 ulog_buff_t *ub = &ulog->ulog_buffers[nlgroupnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Ying Xue25cc4ae2013-02-03 20:32:57 +0000100 pr_debug("ulog_send: timer is deleting\n");
101 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Mark Huangdcb7cd92006-08-13 18:57:54 -0700103 if (!ub->skb) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100104 pr_debug("ulog_send: nothing to send\n");
Mark Huangdcb7cd92006-08-13 18:57:54 -0700105 return;
106 }
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 /* last nlmsg needs NLMSG_DONE */
109 if (ub->qlen > 1)
110 ub->lastnlh->nlmsg_type = NLMSG_DONE;
111
Patrick McHardyac6d4392005-08-14 19:29:52 -0700112 NETLINK_CB(ub->skb).dst_group = nlgroupnum + 1;
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100113 pr_debug("throwing %d packets to netlink group %u\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700114 ub->qlen, nlgroupnum + 1);
Gao feng35543062013-03-24 23:50:44 +0000115 netlink_broadcast(ulog->nflognl, ub->skb, 0, nlgroupnum + 1,
116 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 ub->qlen = 0;
119 ub->skb = NULL;
120 ub->lastnlh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123
124/* timer function to flush queue in flushtimeout time */
125static void ulog_timer(unsigned long data)
126{
Gao feng35543062013-03-24 23:50:44 +0000127 struct ulog_net *ulog = container_of((void *)data,
128 struct ulog_net,
129 nlgroup[*(unsigned int *)data]);
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100130 pr_debug("timer function called, calling ulog_send\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* lock to protect against somebody modifying our structure
133 * from ipt_ulog_target at the same time */
Gao feng35543062013-03-24 23:50:44 +0000134 spin_lock_bh(&ulog->lock);
135 ulog_send(ulog, data);
136 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139static struct sk_buff *ulog_alloc_skb(unsigned int size)
140{
141 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800142 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* alloc skb which should be big enough for a whole
145 * multipart message. WARNING: has to be <= 131000
146 * due to slab allocator restrictions */
147
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800148 n = max(size, nlbufsiz);
Joe Perches0a9ee812011-08-29 14:17:25 -0700149 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800151 if (n > size) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900152 /* try to allocate only as much as we need for
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800153 * current packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800155 skb = alloc_skb(size, GFP_ATOMIC);
156 if (!skb)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100157 pr_debug("cannot even allocate %ub\n", size);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
161 return skb;
162}
163
164static void ipt_ulog_packet(unsigned int hooknum,
165 const struct sk_buff *skb,
166 const struct net_device *in,
167 const struct net_device *out,
168 const struct ipt_ulog_info *loginfo,
169 const char *prefix)
170{
171 ulog_buff_t *ub;
172 ulog_packet_msg_t *pm;
173 size_t size, copy_len;
174 struct nlmsghdr *nlh;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700175 struct timeval tv;
Gao feng35543062013-03-24 23:50:44 +0000176 struct net *net = dev_net(in ? in : out);
177 struct ulog_net *ulog = ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* ffs == find first bit set, necessary because userspace
180 * is already shifting groupnumber, but we need unshifted.
181 * ffs() returns [1..32], we need [0..31] */
182 unsigned int groupnum = ffs(loginfo->nl_group) - 1;
183
184 /* calculate the size of the skb needed */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700185 if (loginfo->copy_range == 0 || loginfo->copy_range > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 copy_len = skb->len;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700187 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 copy_len = loginfo->copy_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Hong zhi guo573ce262013-03-27 06:47:04 +0000190 size = nlmsg_total_size(sizeof(*pm) + copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Gao feng35543062013-03-24 23:50:44 +0000192 ub = &ulog->ulog_buffers[groupnum];
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900193
Gao feng35543062013-03-24 23:50:44 +0000194 spin_lock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (!ub->skb) {
197 if (!(ub->skb = ulog_alloc_skb(size)))
198 goto alloc_failure;
199 } else if (ub->qlen >= loginfo->qthreshold ||
200 size > skb_tailroom(ub->skb)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900201 /* either the queue len is too high or we don't have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * enough room in nlskb left. send it to userspace. */
203
Gao feng35543062013-03-24 23:50:44 +0000204 ulog_send(ulog, groupnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 if (!(ub->skb = ulog_alloc_skb(size)))
207 goto alloc_failure;
208 }
209
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100210 pr_debug("qlen %d, qthreshold %Zu\n", ub->qlen, loginfo->qthreshold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700212 nlh = nlmsg_put(ub->skb, 0, ub->qlen, ULOG_NL_EVENT,
213 sizeof(*pm)+copy_len, 0);
214 if (!nlh) {
215 pr_debug("error during nlmsg_put\n");
216 goto out_unlock;
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 ub->qlen++;
219
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700220 pm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* We might not have a timestamp, get one */
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700223 if (skb->tstamp.tv64 == 0)
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700224 __net_timestamp((struct sk_buff *)skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* copy hook, prefix, timestamp, payload, etc. */
227 pm->data_len = copy_len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700228 tv = ktime_to_timeval(skb->tstamp);
229 put_unaligned(tv.tv_sec, &pm->timestamp_sec);
230 put_unaligned(tv.tv_usec, &pm->timestamp_usec);
Patrick McHardy01102e72007-04-12 14:27:03 -0700231 put_unaligned(skb->mark, &pm->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 pm->hook = hooknum;
233 if (prefix != NULL)
234 strncpy(pm->prefix, prefix, sizeof(pm->prefix));
235 else if (loginfo->prefix[0] != '\0')
236 strncpy(pm->prefix, loginfo->prefix, sizeof(pm->prefix));
237 else
238 *(pm->prefix) = '\0';
239
Joe Perches3666ed12009-11-23 23:17:06 +0100240 if (in && in->hard_header_len > 0 &&
241 skb->mac_header != skb->network_header &&
242 in->hard_header_len <= ULOG_MAC_LEN) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700243 memcpy(pm->mac, skb_mac_header(skb), in->hard_header_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 pm->mac_len = in->hard_header_len;
245 } else
246 pm->mac_len = 0;
247
248 if (in)
249 strncpy(pm->indev_name, in->name, sizeof(pm->indev_name));
250 else
251 pm->indev_name[0] = '\0';
252
253 if (out)
254 strncpy(pm->outdev_name, out->name, sizeof(pm->outdev_name));
255 else
256 pm->outdev_name[0] = '\0';
257
258 /* copy_len <= skb->len, so can't fail. */
259 if (skb_copy_bits(skb, 0, pm->payload, copy_len) < 0)
260 BUG();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* check if we are building multi-part messages */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700263 if (ub->qlen > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 ub->lastnlh = nlh;
267
268 /* if timer isn't already running, start it */
269 if (!timer_pending(&ub->timer)) {
270 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
271 add_timer(&ub->timer);
272 }
273
274 /* if threshold is reached, send message to userspace */
275 if (ub->qlen >= loginfo->qthreshold) {
276 if (loginfo->qthreshold > 1)
277 nlh->nlmsg_type = NLMSG_DONE;
Gao feng35543062013-03-24 23:50:44 +0000278 ulog_send(ulog, groupnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700280out_unlock:
Gao feng35543062013-03-24 23:50:44 +0000281 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285alloc_failure:
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100286 pr_debug("Error building netlink message\n");
Gao feng35543062013-03-24 23:50:44 +0000287 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800290static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200291ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200293 ipt_ulog_packet(par->hooknum, skb, par->in, par->out,
294 par->targinfo, NULL);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800295 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900297
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200298static void ipt_logfn(u_int8_t pf,
Harald Welte608c8e42005-08-09 19:58:27 -0700299 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 const struct sk_buff *skb,
301 const struct net_device *in,
302 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700303 const struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 const char *prefix)
305{
Harald Welte608c8e42005-08-09 19:58:27 -0700306 struct ipt_ulog_info loginfo;
307
308 if (!li || li->type != NF_LOG_TYPE_ULOG) {
309 loginfo.nl_group = ULOG_DEFAULT_NLGROUP;
310 loginfo.copy_range = 0;
311 loginfo.qthreshold = ULOG_DEFAULT_QTHRESHOLD;
312 loginfo.prefix[0] = '\0';
313 } else {
314 loginfo.nl_group = li->u.ulog.group;
315 loginfo.copy_range = li->u.ulog.copy_len;
316 loginfo.qthreshold = li->u.ulog.qthreshold;
317 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 ipt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
321}
322
Jan Engelhardt135367b2010-03-19 17:16:42 +0100323static int ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200325 const struct ipt_ulog_info *loginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (loginfo->prefix[sizeof(loginfo->prefix) - 1] != '\0') {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100328 pr_debug("prefix not null-terminated\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100329 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (loginfo->qthreshold > ULOG_MAX_QLEN) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100332 pr_debug("queue threshold %Zu > MAX_QLEN\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700333 loginfo->qthreshold);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100334 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Patrick McHardyb076deb2007-04-12 22:17:05 -0700339#ifdef CONFIG_COMPAT
340struct compat_ipt_ulog_info {
341 compat_uint_t nl_group;
342 compat_size_t copy_range;
343 compat_size_t qthreshold;
344 char prefix[ULOG_PREFIX_LEN];
345};
346
Jan Engelhardt739674f2009-06-26 08:23:19 +0200347static void ulog_tg_compat_from_user(void *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700348{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700349 const struct compat_ipt_ulog_info *cl = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700350 struct ipt_ulog_info l = {
351 .nl_group = cl->nl_group,
352 .copy_range = cl->copy_range,
353 .qthreshold = cl->qthreshold,
354 };
355
356 memcpy(l.prefix, cl->prefix, sizeof(l.prefix));
357 memcpy(dst, &l, sizeof(l));
358}
359
Jan Engelhardt739674f2009-06-26 08:23:19 +0200360static int ulog_tg_compat_to_user(void __user *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700361{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700362 const struct ipt_ulog_info *l = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700363 struct compat_ipt_ulog_info cl = {
364 .nl_group = l->nl_group,
365 .copy_range = l->copy_range,
366 .qthreshold = l->qthreshold,
367 };
368
369 memcpy(cl.prefix, l->prefix, sizeof(cl.prefix));
370 return copy_to_user(dst, &cl, sizeof(cl)) ? -EFAULT : 0;
371}
372#endif /* CONFIG_COMPAT */
373
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800374static struct xt_target ulog_tg_reg __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .name = "ULOG",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200376 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800377 .target = ulog_tg,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800378 .targetsize = sizeof(struct ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800379 .checkentry = ulog_tg_check,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700380#ifdef CONFIG_COMPAT
381 .compatsize = sizeof(struct compat_ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800382 .compat_from_user = ulog_tg_compat_from_user,
383 .compat_to_user = ulog_tg_compat_to_user,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .me = THIS_MODULE,
386};
387
Eric Leblondca735b32009-03-16 14:54:21 +0100388static struct nf_logger ipt_ulog_logger __read_mostly = {
Harald Welte608c8e42005-08-09 19:58:27 -0700389 .name = "ipt_ULOG",
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800390 .logfn = ipt_logfn,
Harald Welte608c8e42005-08-09 19:58:27 -0700391 .me = THIS_MODULE,
392};
393
Gao feng35543062013-03-24 23:50:44 +0000394static int __net_init ulog_tg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Gao feng35543062013-03-24 23:50:44 +0000396 int i;
397 struct ulog_net *ulog = ulog_pernet(net);
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000398 struct netlink_kernel_cfg cfg = {
399 .groups = ULOG_MAXNLGROUPS,
400 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Gao feng35543062013-03-24 23:50:44 +0000402 spin_lock_init(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* initialize ulog_buffers */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700404 for (i = 0; i < ULOG_MAXNLGROUPS; i++)
Gao feng35543062013-03-24 23:50:44 +0000405 setup_timer(&ulog->ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Gao feng35543062013-03-24 23:50:44 +0000407 ulog->nflognl = netlink_kernel_create(net, NETLINK_NFLOG, &cfg);
408 if (!ulog->nflognl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -ENOMEM;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (nflog)
Gao feng35543062013-03-24 23:50:44 +0000412 nf_log_set(net, NFPROTO_IPV4, &ipt_ulog_logger);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
415}
416
Gao feng35543062013-03-24 23:50:44 +0000417static void __net_exit ulog_tg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 ulog_buff_t *ub;
420 int i;
Gao feng35543062013-03-24 23:50:44 +0000421 struct ulog_net *ulog = ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 if (nflog)
Gao feng35543062013-03-24 23:50:44 +0000424 nf_log_unset(net, &ipt_ulog_logger);
425
426 netlink_kernel_release(ulog->nflognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* remove pending timers and free allocated skb's */
429 for (i = 0; i < ULOG_MAXNLGROUPS; i++) {
Gao feng35543062013-03-24 23:50:44 +0000430 ub = &ulog->ulog_buffers[i];
Ying Xue25cc4ae2013-02-03 20:32:57 +0000431 pr_debug("timer is deleting\n");
432 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 if (ub->skb) {
435 kfree_skb(ub->skb);
436 ub->skb = NULL;
437 }
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Gao feng35543062013-03-24 23:50:44 +0000441static struct pernet_operations ulog_tg_net_ops = {
442 .init = ulog_tg_net_init,
443 .exit = ulog_tg_net_exit,
444 .id = &ulog_net_id,
445 .size = sizeof(struct ulog_net),
446};
447
448static int __init ulog_tg_init(void)
449{
450 int ret;
451 pr_debug("init module\n");
452
453 if (nlbufsiz > 128*1024) {
454 pr_warn("Netlink buffer has to be <= 128kB\n");
455 return -EINVAL;
456 }
457
458 ret = register_pernet_subsys(&ulog_tg_net_ops);
459 if (ret)
460 goto out_pernet;
461
462 ret = xt_register_target(&ulog_tg_reg);
463 if (ret < 0)
464 goto out_target;
465
466 if (nflog)
467 nf_log_register(NFPROTO_IPV4, &ipt_ulog_logger);
468
469 return 0;
470
471out_target:
472 unregister_pernet_subsys(&ulog_tg_net_ops);
473out_pernet:
474 return ret;
475}
476
477static void __exit ulog_tg_exit(void)
478{
479 pr_debug("cleanup_module\n");
480 if (nflog)
481 nf_log_unregister(&ipt_ulog_logger);
482 xt_unregister_target(&ulog_tg_reg);
483 unregister_pernet_subsys(&ulog_tg_net_ops);
484}
485
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800486module_init(ulog_tg_init);
487module_exit(ulog_tg_exit);