blob: cf08218ddbcf6799464139b681239137de2d9142 [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02007 * (C) 2005-2007 Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090013 * This module accepts two parameters:
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * nlbufsiz:
16 * The parameter specifies how big the buffer for each netlink multicast
17 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
18 * get accumulated in the kernel until they are sent to userspace. It is
19 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
20 * because atomically allocating 128kB inside the network rx softirq is not
21 * reliable. Please also keep in mind that this buffer size is allocated for
22 * each nlgroup you are using, so the total kernel memory usage increases
23 * by that factor.
24 *
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080025 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
26 * nlbufsiz is used with alloc_skb, which adds another
27 * sizeof(struct skb_shared_info). Use NLMSG_GOODSIZE instead.
28 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * flushtimeout:
30 * Specify, after how many hundredths of a second the queue should be
31 * flushed even if it is not full yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010033#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/spinlock.h>
36#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/skbuff.h>
39#include <linux/kernel.h>
40#include <linux/timer.h>
Hong zhi guo573ce262013-03-27 06:47:04 +000041#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/netdevice.h>
43#include <linux/mm.h>
44#include <linux/moduleparam.h>
45#include <linux/netfilter.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080046#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/netfilter_ipv4/ipt_ULOG.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080048#include <net/netfilter/nf_log.h>
Gao feng35543062013-03-24 23:50:44 +000049#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <net/sock.h>
51#include <linux/bitops.h>
Patrick McHardy01102e72007-04-12 14:27:03 -070052#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54MODULE_LICENSE("GPL");
55MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080056MODULE_DESCRIPTION("Xtables: packet logging to netlink using ULOG");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070057MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NFLOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define ULOG_NL_EVENT 111 /* Harald's favorite number */
60#define ULOG_MAXNLGROUPS 32 /* numer of nlgroups */
61
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080062static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Patrick McHardye7be6992006-01-05 12:19:46 -080063module_param(nlbufsiz, uint, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
65
66static unsigned int flushtimeout = 10;
Patrick McHardye7be6992006-01-05 12:19:46 -080067module_param(flushtimeout, uint, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths of a second)");
69
Rusty Russelleb939922011-12-19 14:08:01 +000070static bool nflog = true;
Patrick McHardye7be6992006-01-05 12:19:46 -080071module_param(nflog, bool, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072MODULE_PARM_DESC(nflog, "register as internal netfilter logging module");
73
74/* global data structures */
75
76typedef struct {
77 unsigned int qlen; /* number of nlmsgs' in the skb */
78 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
79 struct sk_buff *skb; /* the pre-allocated skb */
80 struct timer_list timer; /* the timer function */
81} ulog_buff_t;
82
Gao feng35543062013-03-24 23:50:44 +000083static int ulog_net_id __read_mostly;
84struct ulog_net {
85 unsigned int nlgroup[ULOG_MAXNLGROUPS];
86 ulog_buff_t ulog_buffers[ULOG_MAXNLGROUPS];
87 struct sock *nflognl;
88 spinlock_t lock;
89};
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Gao feng35543062013-03-24 23:50:44 +000091static struct ulog_net *ulog_pernet(struct net *net)
92{
93 return net_generic(net, ulog_net_id);
94}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* send one ulog_buff_t to userspace */
Gao feng35543062013-03-24 23:50:44 +000097static void ulog_send(struct ulog_net *ulog, unsigned int nlgroupnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Gao feng35543062013-03-24 23:50:44 +000099 ulog_buff_t *ub = &ulog->ulog_buffers[nlgroupnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Ying Xue25cc4ae2013-02-03 20:32:57 +0000101 pr_debug("ulog_send: timer is deleting\n");
102 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Mark Huangdcb7cd92006-08-13 18:57:54 -0700104 if (!ub->skb) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100105 pr_debug("ulog_send: nothing to send\n");
Mark Huangdcb7cd92006-08-13 18:57:54 -0700106 return;
107 }
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* last nlmsg needs NLMSG_DONE */
110 if (ub->qlen > 1)
111 ub->lastnlh->nlmsg_type = NLMSG_DONE;
112
Patrick McHardyac6d4392005-08-14 19:29:52 -0700113 NETLINK_CB(ub->skb).dst_group = nlgroupnum + 1;
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100114 pr_debug("throwing %d packets to netlink group %u\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700115 ub->qlen, nlgroupnum + 1);
Gao feng35543062013-03-24 23:50:44 +0000116 netlink_broadcast(ulog->nflognl, ub->skb, 0, nlgroupnum + 1,
117 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 ub->qlen = 0;
120 ub->skb = NULL;
121 ub->lastnlh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124
125/* timer function to flush queue in flushtimeout time */
126static void ulog_timer(unsigned long data)
127{
Gao feng35543062013-03-24 23:50:44 +0000128 struct ulog_net *ulog = container_of((void *)data,
129 struct ulog_net,
130 nlgroup[*(unsigned int *)data]);
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100131 pr_debug("timer function called, calling ulog_send\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* lock to protect against somebody modifying our structure
134 * from ipt_ulog_target at the same time */
Gao feng35543062013-03-24 23:50:44 +0000135 spin_lock_bh(&ulog->lock);
136 ulog_send(ulog, data);
137 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140static struct sk_buff *ulog_alloc_skb(unsigned int size)
141{
142 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800143 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* alloc skb which should be big enough for a whole
146 * multipart message. WARNING: has to be <= 131000
147 * due to slab allocator restrictions */
148
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800149 n = max(size, nlbufsiz);
Joe Perches0a9ee812011-08-29 14:17:25 -0700150 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800152 if (n > size) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900153 /* try to allocate only as much as we need for
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800154 * current packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800156 skb = alloc_skb(size, GFP_ATOMIC);
157 if (!skb)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100158 pr_debug("cannot even allocate %ub\n", size);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
162 return skb;
163}
164
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000165static void ipt_ulog_packet(struct net *net,
166 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 const struct sk_buff *skb,
168 const struct net_device *in,
169 const struct net_device *out,
170 const struct ipt_ulog_info *loginfo,
171 const char *prefix)
172{
173 ulog_buff_t *ub;
174 ulog_packet_msg_t *pm;
175 size_t size, copy_len;
176 struct nlmsghdr *nlh;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700177 struct timeval tv;
Gao feng35543062013-03-24 23:50:44 +0000178 struct ulog_net *ulog = ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* ffs == find first bit set, necessary because userspace
181 * is already shifting groupnumber, but we need unshifted.
182 * ffs() returns [1..32], we need [0..31] */
183 unsigned int groupnum = ffs(loginfo->nl_group) - 1;
184
185 /* calculate the size of the skb needed */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700186 if (loginfo->copy_range == 0 || loginfo->copy_range > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 copy_len = skb->len;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700188 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 copy_len = loginfo->copy_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Hong zhi guo573ce262013-03-27 06:47:04 +0000191 size = nlmsg_total_size(sizeof(*pm) + copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Gao feng35543062013-03-24 23:50:44 +0000193 ub = &ulog->ulog_buffers[groupnum];
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900194
Gao feng35543062013-03-24 23:50:44 +0000195 spin_lock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if (!ub->skb) {
198 if (!(ub->skb = ulog_alloc_skb(size)))
199 goto alloc_failure;
200 } else if (ub->qlen >= loginfo->qthreshold ||
201 size > skb_tailroom(ub->skb)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900202 /* either the queue len is too high or we don't have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * enough room in nlskb left. send it to userspace. */
204
Gao feng35543062013-03-24 23:50:44 +0000205 ulog_send(ulog, groupnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 if (!(ub->skb = ulog_alloc_skb(size)))
208 goto alloc_failure;
209 }
210
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100211 pr_debug("qlen %d, qthreshold %Zu\n", ub->qlen, loginfo->qthreshold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700213 nlh = nlmsg_put(ub->skb, 0, ub->qlen, ULOG_NL_EVENT,
214 sizeof(*pm)+copy_len, 0);
215 if (!nlh) {
216 pr_debug("error during nlmsg_put\n");
217 goto out_unlock;
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 ub->qlen++;
220
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700221 pm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* We might not have a timestamp, get one */
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700224 if (skb->tstamp.tv64 == 0)
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700225 __net_timestamp((struct sk_buff *)skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* copy hook, prefix, timestamp, payload, etc. */
228 pm->data_len = copy_len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700229 tv = ktime_to_timeval(skb->tstamp);
230 put_unaligned(tv.tv_sec, &pm->timestamp_sec);
231 put_unaligned(tv.tv_usec, &pm->timestamp_usec);
Patrick McHardy01102e72007-04-12 14:27:03 -0700232 put_unaligned(skb->mark, &pm->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 pm->hook = hooknum;
234 if (prefix != NULL)
235 strncpy(pm->prefix, prefix, sizeof(pm->prefix));
236 else if (loginfo->prefix[0] != '\0')
237 strncpy(pm->prefix, loginfo->prefix, sizeof(pm->prefix));
238 else
239 *(pm->prefix) = '\0';
240
Joe Perches3666ed12009-11-23 23:17:06 +0100241 if (in && in->hard_header_len > 0 &&
242 skb->mac_header != skb->network_header &&
243 in->hard_header_len <= ULOG_MAC_LEN) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700244 memcpy(pm->mac, skb_mac_header(skb), in->hard_header_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 pm->mac_len = in->hard_header_len;
246 } else
247 pm->mac_len = 0;
248
249 if (in)
250 strncpy(pm->indev_name, in->name, sizeof(pm->indev_name));
251 else
252 pm->indev_name[0] = '\0';
253
254 if (out)
255 strncpy(pm->outdev_name, out->name, sizeof(pm->outdev_name));
256 else
257 pm->outdev_name[0] = '\0';
258
259 /* copy_len <= skb->len, so can't fail. */
260 if (skb_copy_bits(skb, 0, pm->payload, copy_len) < 0)
261 BUG();
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* check if we are building multi-part messages */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700264 if (ub->qlen > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 ub->lastnlh = nlh;
268
269 /* if timer isn't already running, start it */
270 if (!timer_pending(&ub->timer)) {
271 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
272 add_timer(&ub->timer);
273 }
274
275 /* if threshold is reached, send message to userspace */
276 if (ub->qlen >= loginfo->qthreshold) {
277 if (loginfo->qthreshold > 1)
278 nlh->nlmsg_type = NLMSG_DONE;
Gao feng35543062013-03-24 23:50:44 +0000279 ulog_send(ulog, groupnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
David S. Millerc2bd4ba2012-06-26 21:30:49 -0700281out_unlock:
Gao feng35543062013-03-24 23:50:44 +0000282 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 return;
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286alloc_failure:
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100287 pr_debug("Error building netlink message\n");
Gao feng35543062013-03-24 23:50:44 +0000288 spin_unlock_bh(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800291static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200292ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000294 struct net *net = dev_net(par->in ? par->in : par->out);
295
296 ipt_ulog_packet(net, par->hooknum, skb, par->in, par->out,
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200297 par->targinfo, NULL);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800298 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900300
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000301static void ipt_logfn(struct net *net,
302 u_int8_t pf,
Harald Welte608c8e42005-08-09 19:58:27 -0700303 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 const struct sk_buff *skb,
305 const struct net_device *in,
306 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700307 const struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 const char *prefix)
309{
Harald Welte608c8e42005-08-09 19:58:27 -0700310 struct ipt_ulog_info loginfo;
311
312 if (!li || li->type != NF_LOG_TYPE_ULOG) {
313 loginfo.nl_group = ULOG_DEFAULT_NLGROUP;
314 loginfo.copy_range = 0;
315 loginfo.qthreshold = ULOG_DEFAULT_QTHRESHOLD;
316 loginfo.prefix[0] = '\0';
317 } else {
318 loginfo.nl_group = li->u.ulog.group;
319 loginfo.copy_range = li->u.ulog.copy_len;
320 loginfo.qthreshold = li->u.ulog.qthreshold;
321 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000324 ipt_ulog_packet(net, hooknum, skb, in, out, &loginfo, prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Jan Engelhardt135367b2010-03-19 17:16:42 +0100327static int ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200329 const struct ipt_ulog_info *loginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (loginfo->prefix[sizeof(loginfo->prefix) - 1] != '\0') {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100332 pr_debug("prefix not null-terminated\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100333 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (loginfo->qthreshold > ULOG_MAX_QLEN) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100336 pr_debug("queue threshold %Zu > MAX_QLEN\n",
Patrick McHardy0d537782007-07-07 22:39:38 -0700337 loginfo->qthreshold);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Patrick McHardyb076deb2007-04-12 22:17:05 -0700343#ifdef CONFIG_COMPAT
344struct compat_ipt_ulog_info {
345 compat_uint_t nl_group;
346 compat_size_t copy_range;
347 compat_size_t qthreshold;
348 char prefix[ULOG_PREFIX_LEN];
349};
350
Jan Engelhardt739674f2009-06-26 08:23:19 +0200351static void ulog_tg_compat_from_user(void *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700352{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700353 const struct compat_ipt_ulog_info *cl = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700354 struct ipt_ulog_info l = {
355 .nl_group = cl->nl_group,
356 .copy_range = cl->copy_range,
357 .qthreshold = cl->qthreshold,
358 };
359
360 memcpy(l.prefix, cl->prefix, sizeof(l.prefix));
361 memcpy(dst, &l, sizeof(l));
362}
363
Jan Engelhardt739674f2009-06-26 08:23:19 +0200364static int ulog_tg_compat_to_user(void __user *dst, const void *src)
Patrick McHardyb076deb2007-04-12 22:17:05 -0700365{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700366 const struct ipt_ulog_info *l = src;
Patrick McHardyb076deb2007-04-12 22:17:05 -0700367 struct compat_ipt_ulog_info cl = {
368 .nl_group = l->nl_group,
369 .copy_range = l->copy_range,
370 .qthreshold = l->qthreshold,
371 };
372
373 memcpy(cl.prefix, l->prefix, sizeof(cl.prefix));
374 return copy_to_user(dst, &cl, sizeof(cl)) ? -EFAULT : 0;
375}
376#endif /* CONFIG_COMPAT */
377
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800378static struct xt_target ulog_tg_reg __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 .name = "ULOG",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200380 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800381 .target = ulog_tg,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800382 .targetsize = sizeof(struct ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800383 .checkentry = ulog_tg_check,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700384#ifdef CONFIG_COMPAT
385 .compatsize = sizeof(struct compat_ipt_ulog_info),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800386 .compat_from_user = ulog_tg_compat_from_user,
387 .compat_to_user = ulog_tg_compat_to_user,
Patrick McHardyb076deb2007-04-12 22:17:05 -0700388#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .me = THIS_MODULE,
390};
391
Eric Leblondca735b32009-03-16 14:54:21 +0100392static struct nf_logger ipt_ulog_logger __read_mostly = {
Harald Welte608c8e42005-08-09 19:58:27 -0700393 .name = "ipt_ULOG",
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800394 .logfn = ipt_logfn,
Harald Welte608c8e42005-08-09 19:58:27 -0700395 .me = THIS_MODULE,
396};
397
Gao feng35543062013-03-24 23:50:44 +0000398static int __net_init ulog_tg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Gao feng35543062013-03-24 23:50:44 +0000400 int i;
401 struct ulog_net *ulog = ulog_pernet(net);
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000402 struct netlink_kernel_cfg cfg = {
403 .groups = ULOG_MAXNLGROUPS,
404 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Gao feng35543062013-03-24 23:50:44 +0000406 spin_lock_init(&ulog->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* initialize ulog_buffers */
Patrick McHardye6f689d2007-03-23 11:16:30 -0700408 for (i = 0; i < ULOG_MAXNLGROUPS; i++)
Gao feng35543062013-03-24 23:50:44 +0000409 setup_timer(&ulog->ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Gao feng35543062013-03-24 23:50:44 +0000411 ulog->nflognl = netlink_kernel_create(net, NETLINK_NFLOG, &cfg);
412 if (!ulog->nflognl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return -ENOMEM;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (nflog)
Gao feng35543062013-03-24 23:50:44 +0000416 nf_log_set(net, NFPROTO_IPV4, &ipt_ulog_logger);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return 0;
419}
420
Gao feng35543062013-03-24 23:50:44 +0000421static void __net_exit ulog_tg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 ulog_buff_t *ub;
424 int i;
Gao feng35543062013-03-24 23:50:44 +0000425 struct ulog_net *ulog = ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (nflog)
Gao feng35543062013-03-24 23:50:44 +0000428 nf_log_unset(net, &ipt_ulog_logger);
429
430 netlink_kernel_release(ulog->nflognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* remove pending timers and free allocated skb's */
433 for (i = 0; i < ULOG_MAXNLGROUPS; i++) {
Gao feng35543062013-03-24 23:50:44 +0000434 ub = &ulog->ulog_buffers[i];
Ying Xue25cc4ae2013-02-03 20:32:57 +0000435 pr_debug("timer is deleting\n");
436 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (ub->skb) {
439 kfree_skb(ub->skb);
440 ub->skb = NULL;
441 }
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Gao feng35543062013-03-24 23:50:44 +0000445static struct pernet_operations ulog_tg_net_ops = {
446 .init = ulog_tg_net_init,
447 .exit = ulog_tg_net_exit,
448 .id = &ulog_net_id,
449 .size = sizeof(struct ulog_net),
450};
451
452static int __init ulog_tg_init(void)
453{
454 int ret;
455 pr_debug("init module\n");
456
457 if (nlbufsiz > 128*1024) {
458 pr_warn("Netlink buffer has to be <= 128kB\n");
459 return -EINVAL;
460 }
461
462 ret = register_pernet_subsys(&ulog_tg_net_ops);
463 if (ret)
464 goto out_pernet;
465
466 ret = xt_register_target(&ulog_tg_reg);
467 if (ret < 0)
468 goto out_target;
469
470 if (nflog)
471 nf_log_register(NFPROTO_IPV4, &ipt_ulog_logger);
472
473 return 0;
474
475out_target:
476 unregister_pernet_subsys(&ulog_tg_net_ops);
477out_pernet:
478 return ret;
479}
480
481static void __exit ulog_tg_exit(void)
482{
483 pr_debug("cleanup_module\n");
484 if (nflog)
485 nf_log_unregister(&ipt_ulog_logger);
486 xt_unregister_target(&ulog_tg_reg);
487 unregister_pernet_subsys(&ulog_tg_net_ops);
488}
489
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800490module_init(ulog_tg_init);
491module_exit(ulog_tg_exit);