summaryrefslogtreecommitdiffstats
path: root/kernel/ipt_ULOG.c
blob: 0b349c968745f87a5b84cb109af4ce7f652ee58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* 
 * netfilter module for userspace packet logging daemons
 *
 * (C) 2000 by Harald Welte <laforge@sunbeam.franken.de>
 * 
 * Released under the terms of the GPL
 *
 * $Id: ipt_ULOG.c,v 1.1 2000/07/31 09:08:10 laforge Exp laforge $
 */

#include <linux/module.h>
#include <linux/version.h>
#include <linux/config.h>
#include <linux/socket.h>
#include <linux/skbuff.h>
#include <linux/kernel.h>
#include <linux/netlink.h>
#include <linux/netdevice.h>
#include <linux/mm.h>
#include <linux/netfilter_ipv4/ip_tables.h>
#include <linux/netfilter_ipv4/ipt_ULOG.h>

#define NETLINK_NFLOG 	25
#define ULOG_NL_EVENT	111

#if 1
#define DEBUGP	printk
#else
#define DEBUGP(format, args ...)
#endif

struct sock *nflognl;

static void nflog_rcv(struct sock *sk, int len)
{
	printk("nflog_rcv: did receive netlink message ?!?\n");
}

static unsigned int ipt_ulog_target(struct sk_buff **pskb,
				    unsigned int hooknum,
				    const struct net_device *in,
				    const struct net_device *out,
				    const void *targinfo, void *userinfo)
{
	ulog_packet_msg_t *pm;
	size_t size;
	struct sk_buff *nlskb;
	unsigned char *old_tail;
	struct nlmsghdr *nlh;
	struct ipt_ulog_info *loginfo = (struct ipt_ulog_info *) targinfo;

	/* calculate the size of the skb needed */

	size = NLMSG_SPACE(sizeof(*pm) + (*pskb)->len);
	nlskb = alloc_skb(size, GFP_ATOMIC);
	if (!nlskb)
		goto nlmsg_failure;

	old_tail = nlskb->tail;
	nlh = NLMSG_PUT(nlskb, 0, 0, ULOG_NL_EVENT, size - sizeof(*nlh));
	pm = NLMSG_DATA(nlh);

	/* copy hook, prefix, timestamp, payload, etc. */

	pm->data_len = (*pskb)->len;
	pm->timestamp_sec = (*pskb)->stamp.tv_sec;
	pm->timestamp_usec = (*pskb)->stamp.tv_usec;
	pm->mark = (*pskb)->nfmark;
	pm->hook = hooknum;
	if (loginfo->prefix)
		strcpy(pm->prefix, loginfo->prefix);

	if (in && !out) {
		if ((*pskb)->dev && (*pskb)->dev->hard_header_len > 0
		    && (*pskb)->dev->hard_header_len <= ULOG_MAC_LEN) {
			memcpy(pm->mac, (*pskb)->mac.raw,
			       (*pskb)->dev->hard_header_len);
			pm->mac_len = (*pskb)->dev->hard_header_len;
		}

	}
/*
	if (in) strcpy(pm->indev_name, in->name);
	else pm->indev_name[0] = '\0';
*/
	if ((*pskb)->len)
		memcpy(pm->payload, (*pskb)->data, (*pskb)->len);
	nlh->nlmsg_len = nlskb->tail - old_tail;
	NETLINK_CB(nlskb).dst_groups = loginfo->nl_group;
	DEBUGP
	    ("ipt_ULOG: going to throw out a packet to netlink groupmask %u\n",
	     loginfo->nl_group);
	netlink_broadcast(nflognl, nlskb, 0, loginfo->nl_group,
			  GFP_ATOMIC);

	return IPT_CONTINUE;

      nlmsg_failure:
	if (nlskb)
		kfree(nlskb);
	printk("ipt_ULOG: Error building netlink message\n");
	return IPT_CONTINUE;

}

static int ipt_ulog_checkentry(const char *tablename,
			       const struct ipt_entry *e,
			       void *targinfo,
			       unsigned int targinfosize,
			       unsigned int hookmask)
{
	return 1;
}


static struct ipt_target ipt_ulog_reg =
    { {NULL, NULL}, "ULOG", ipt_ulog_target, ipt_ulog_checkentry, NULL,
THIS_MODULE
};

static int __init init(void)
{
	DEBUGP("ipt_ULOG: init module\n");
	nflognl = netlink_kernel_create(NETLINK_NFLOG, nflog_rcv);
	if (ipt_register_target(&ipt_ulog_reg))
		return -EINVAL;

	return 0;
}

static void __exit fini(void)
{
	DEBUGP("ipt_ULOG: cleanup_module\n");
	ipt_unregister_target(&ipt_ulog_reg);
}

module_init(init);
module_exit(fini);