]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/nfnetlink.c
[NETFILTER]: ctnetlink: add support for internal tcp connection tracking flags handling
[net-next-2.6.git] / net / netfilter / nfnetlink.c
CommitLineData
f9e815b3
HW
1/* Netfilter messages via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
3 *
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>,
5 * (C) 2002-2005 by Harald Welte <laforge@gnumonks.org>
67ca3966 6 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
f9e815b3
HW
7 *
8 * Initial netfilter messages via netlink development funded and
9 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
10 *
11 * Further development of this code funded by Astaro AG (http://www.astaro.com)
12 *
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
15 */
16
f9e815b3
HW
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
21#include <linux/major.h>
f9e815b3
HW
22#include <linux/timer.h>
23#include <linux/string.h>
24#include <linux/sockios.h>
25#include <linux/net.h>
26#include <linux/fcntl.h>
27#include <linux/skbuff.h>
28#include <asm/uaccess.h>
29#include <asm/system.h>
30#include <net/sock.h>
a3c5029c 31#include <net/netlink.h>
f9e815b3 32#include <linux/init.h>
f9e815b3 33
f9e815b3
HW
34#include <linux/netlink.h>
35#include <linux/netfilter/nfnetlink.h>
36
37MODULE_LICENSE("GPL");
4fdb3bb7
HW
38MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
f9e815b3
HW
40
41static char __initdata nfversion[] = "0.30";
42
f9e815b3
HW
43static struct sock *nfnl = NULL;
44static struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
a3c5029c 45static DEFINE_MUTEX(nfnl_mutex);
f9e815b3 46
a3c5029c 47static void nfnl_lock(void)
f9e815b3 48{
a3c5029c 49 mutex_lock(&nfnl_mutex);
f9e815b3
HW
50}
51
a3c5029c 52static int nfnl_trylock(void)
f9e815b3 53{
a3c5029c
PM
54 return !mutex_trylock(&nfnl_mutex);
55}
56
57static void __nfnl_unlock(void)
58{
59 mutex_unlock(&nfnl_mutex);
60}
61
62static void nfnl_unlock(void)
63{
64 mutex_unlock(&nfnl_mutex);
65 if (nfnl->sk_receive_queue.qlen)
66 nfnl->sk_data_ready(nfnl, 0);
f9e815b3
HW
67}
68
69int nfnetlink_subsys_register(struct nfnetlink_subsystem *n)
70{
f9e815b3 71 nfnl_lock();
0ab43f84
HW
72 if (subsys_table[n->subsys_id]) {
73 nfnl_unlock();
74 return -EBUSY;
75 }
f9e815b3
HW
76 subsys_table[n->subsys_id] = n;
77 nfnl_unlock();
78
79 return 0;
80}
f4bc177f 81EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
f9e815b3
HW
82
83int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n)
84{
f9e815b3
HW
85 nfnl_lock();
86 subsys_table[n->subsys_id] = NULL;
87 nfnl_unlock();
88
89 return 0;
90}
f4bc177f 91EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
f9e815b3
HW
92
93static inline struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
94{
95 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
96
ac0f1d98 97 if (subsys_id >= NFNL_SUBSYS_COUNT)
f9e815b3
HW
98 return NULL;
99
100 return subsys_table[subsys_id];
101}
102
103static inline struct nfnl_callback *
104nfnetlink_find_client(u_int16_t type, struct nfnetlink_subsystem *ss)
105{
106 u_int8_t cb_id = NFNL_MSG_TYPE(type);
601e68e1 107
67ca3966 108 if (cb_id >= ss->cb_count)
f9e815b3 109 return NULL;
f9e815b3
HW
110
111 return &ss->cb[cb_id];
112}
113
114void __nfa_fill(struct sk_buff *skb, int attrtype, int attrlen,
115 const void *data)
116{
117 struct nfattr *nfa;
118 int size = NFA_LENGTH(attrlen);
119
120 nfa = (struct nfattr *)skb_put(skb, NFA_ALIGN(size));
121 nfa->nfa_type = attrtype;
122 nfa->nfa_len = size;
123 memcpy(NFA_DATA(nfa), data, attrlen);
080774a2 124 memset(NFA_DATA(nfa) + attrlen, 0, NFA_ALIGN(size) - size);
f9e815b3 125}
f4bc177f 126EXPORT_SYMBOL_GPL(__nfa_fill);
f9e815b3 127
a2506c04 128void nfattr_parse(struct nfattr *tb[], int maxattr, struct nfattr *nfa, int len)
f9e815b3
HW
129{
130 memset(tb, 0, sizeof(struct nfattr *) * maxattr);
131
132 while (NFA_OK(nfa, len)) {
ebe0bbf0 133 unsigned flavor = NFA_TYPE(nfa);
f9e815b3
HW
134 if (flavor && flavor <= maxattr)
135 tb[flavor-1] = nfa;
136 nfa = NFA_NEXT(nfa, len);
137 }
f9e815b3 138}
f4bc177f 139EXPORT_SYMBOL_GPL(nfattr_parse);
f9e815b3
HW
140
141/**
142 * nfnetlink_check_attributes - check and parse nfnetlink attributes
143 *
144 * subsys: nfnl subsystem for which this message is to be parsed
145 * nlmsghdr: netlink message to be checked/parsed
146 * cda: array of pointers, needs to be at least subsys->attr_count big
147 *
148 */
149static int
150nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys,
151 struct nlmsghdr *nlh, struct nfattr *cda[])
152{
d9e6d029 153 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
927ccbcc
HW
154 u_int16_t attr_count;
155 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
f9e815b3 156
a42827b7
HW
157 attr_count = subsys->cb[cb_id].attr_count;
158 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
159
160 /* check attribute lengths. */
161 if (likely(nlh->nlmsg_len > min_len)) {
f9e815b3
HW
162 struct nfattr *attr = NFM_NFA(NLMSG_DATA(nlh));
163 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
164
165 while (NFA_OK(attr, attrlen)) {
ebe0bbf0 166 unsigned flavor = NFA_TYPE(attr);
f9e815b3 167 if (flavor) {
927ccbcc 168 if (flavor > attr_count)
f9e815b3
HW
169 return -EINVAL;
170 cda[flavor - 1] = attr;
171 }
172 attr = NFA_NEXT(attr, attrlen);
173 }
a42827b7
HW
174 }
175
176 /* implicit: if nlmsg_len == min_len, we return 0, and an empty
177 * (zeroed) cda[] array. The message is valid, but empty. */
f9e815b3 178
601e68e1 179 return 0;
f9e815b3
HW
180}
181
a2427692
PM
182int nfnetlink_has_listeners(unsigned int group)
183{
184 return netlink_has_listeners(nfnl, group);
185}
186EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
187
f9e815b3
HW
188int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
189{
f9e815b3
HW
190 int err = 0;
191
ac6d439d 192 NETLINK_CB(skb).dst_group = group;
f9e815b3
HW
193 if (echo)
194 atomic_inc(&skb->users);
4498121c 195 netlink_broadcast(nfnl, skb, pid, group, gfp_any());
f9e815b3
HW
196 if (echo)
197 err = netlink_unicast(nfnl, skb, pid, MSG_DONTWAIT);
198
199 return err;
200}
f4bc177f 201EXPORT_SYMBOL_GPL(nfnetlink_send);
f9e815b3
HW
202
203int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags)
204{
205 return netlink_unicast(nfnl, skb, pid, flags);
206}
f4bc177f 207EXPORT_SYMBOL_GPL(nfnetlink_unicast);
f9e815b3
HW
208
209/* Process one complete nfnetlink message. */
858119e1 210static int nfnetlink_rcv_msg(struct sk_buff *skb,
f9e815b3
HW
211 struct nlmsghdr *nlh, int *errp)
212{
213 struct nfnl_callback *nc;
214 struct nfnetlink_subsystem *ss;
215 int type, err = 0;
216
c7bdb545 217 if (security_netlink_recv(skb, CAP_NET_ADMIN)) {
37d2e7a2
HW
218 *errp = -EPERM;
219 return -1;
220 }
221
f9e815b3 222 /* Only requests are handled by kernel now. */
67ca3966 223 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
f9e815b3 224 return 0;
f9e815b3
HW
225
226 /* All the messages must at least contain nfgenmsg */
67ca3966 227 if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg)))
f9e815b3 228 return 0;
f9e815b3
HW
229
230 type = nlh->nlmsg_type;
231 ss = nfnetlink_get_subsys(type);
0ab43f84
HW
232 if (!ss) {
233#ifdef CONFIG_KMOD
a3c5029c 234 /* don't call nfnl_unlock, since it would reenter
37d2e7a2 235 * with further packet processing */
a3c5029c 236 __nfnl_unlock();
37d2e7a2 237 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
a3c5029c 238 nfnl_lock();
37d2e7a2 239 ss = nfnetlink_get_subsys(type);
0ab43f84
HW
240 if (!ss)
241#endif
ed77de9f 242 goto err_inval;
0ab43f84 243 }
f9e815b3
HW
244
245 nc = nfnetlink_find_client(type, ss);
67ca3966 246 if (!nc)
f9e815b3 247 goto err_inval;
f9e815b3 248
f9e815b3 249 {
601e68e1 250 u_int16_t attr_count =
927ccbcc
HW
251 ss->cb[NFNL_MSG_TYPE(nlh->nlmsg_type)].attr_count;
252 struct nfattr *cda[attr_count];
f9e815b3 253
927ccbcc 254 memset(cda, 0, sizeof(struct nfattr *) * attr_count);
601e68e1 255
f9e815b3
HW
256 err = nfnetlink_check_attributes(ss, nlh, cda);
257 if (err < 0)
258 goto err_inval;
259
260 err = nc->call(nfnl, skb, nlh, cda, errp);
261 *errp = err;
262 return err;
263 }
264
265err_inval:
266 *errp = -EINVAL;
267 return -1;
268}
269
f9e815b3
HW
270static void nfnetlink_rcv(struct sock *sk, int len)
271{
73c36186 272 unsigned int qlen = 0;
f9e815b3 273
73c36186 274 do {
a3c5029c 275 if (nfnl_trylock())
f9e815b3 276 return;
73c36186 277 netlink_run_queue(sk, &qlen, nfnetlink_rcv_msg);
a3c5029c 278 __nfnl_unlock();
73c36186 279 } while (qlen);
f9e815b3
HW
280}
281
395dde20 282static void __exit nfnetlink_exit(void)
f9e815b3
HW
283{
284 printk("Removing netfilter NETLINK layer.\n");
285 sock_release(nfnl->sk_socket);
286 return;
287}
288
395dde20 289static int __init nfnetlink_init(void)
f9e815b3
HW
290{
291 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
292
06628607 293 nfnl = netlink_kernel_create(NETLINK_NETFILTER, NFNLGRP_MAX,
601e68e1 294 nfnetlink_rcv, THIS_MODULE);
f9e815b3
HW
295 if (!nfnl) {
296 printk(KERN_ERR "cannot initialize nfnetlink!\n");
297 return -1;
298 }
299
300 return 0;
301}
302
303module_init(nfnetlink_init);
304module_exit(nfnetlink_exit);