1 /* Netfilter messages via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>,
5 * (C) 2002-2005 by Harald Welte <laforge@gnumonks.org>
6 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
8 * Initial netfilter messages via netlink development funded and
9 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
11 * Further development of this code funded by Astaro AG (http://www.astaro.com)
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/socket.h>
20 #include <linux/kernel.h>
21 #include <linux/string.h>
22 #include <linux/sockios.h>
23 #include <linux/net.h>
24 #include <linux/skbuff.h>
25 #include <asm/uaccess.h>
27 #include <linux/init.h>
29 #include <net/netlink.h>
30 #include <linux/netfilter/nfnetlink.h>
32 MODULE_LICENSE("GPL");
33 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
34 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_NETFILTER
);
36 static char __initdata nfversion
[] = "0.30";
40 const struct nfnetlink_subsystem __rcu
*subsys
;
41 } table
[NFNL_SUBSYS_COUNT
];
43 static const int nfnl_group2type
[NFNLGRP_MAX
+1] = {
44 [NFNLGRP_CONNTRACK_NEW
] = NFNL_SUBSYS_CTNETLINK
,
45 [NFNLGRP_CONNTRACK_UPDATE
] = NFNL_SUBSYS_CTNETLINK
,
46 [NFNLGRP_CONNTRACK_DESTROY
] = NFNL_SUBSYS_CTNETLINK
,
47 [NFNLGRP_CONNTRACK_EXP_NEW
] = NFNL_SUBSYS_CTNETLINK_EXP
,
48 [NFNLGRP_CONNTRACK_EXP_UPDATE
] = NFNL_SUBSYS_CTNETLINK_EXP
,
49 [NFNLGRP_CONNTRACK_EXP_DESTROY
] = NFNL_SUBSYS_CTNETLINK_EXP
,
52 void nfnl_lock(__u8 subsys_id
)
54 mutex_lock(&table
[subsys_id
].mutex
);
56 EXPORT_SYMBOL_GPL(nfnl_lock
);
58 void nfnl_unlock(__u8 subsys_id
)
60 mutex_unlock(&table
[subsys_id
].mutex
);
62 EXPORT_SYMBOL_GPL(nfnl_unlock
);
64 int nfnetlink_subsys_register(const struct nfnetlink_subsystem
*n
)
66 nfnl_lock(n
->subsys_id
);
67 if (table
[n
->subsys_id
].subsys
) {
68 nfnl_unlock(n
->subsys_id
);
71 rcu_assign_pointer(table
[n
->subsys_id
].subsys
, n
);
72 nfnl_unlock(n
->subsys_id
);
76 EXPORT_SYMBOL_GPL(nfnetlink_subsys_register
);
78 int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem
*n
)
80 nfnl_lock(n
->subsys_id
);
81 table
[n
->subsys_id
].subsys
= NULL
;
82 nfnl_unlock(n
->subsys_id
);
86 EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister
);
88 static inline const struct nfnetlink_subsystem
*nfnetlink_get_subsys(u_int16_t type
)
90 u_int8_t subsys_id
= NFNL_SUBSYS_ID(type
);
92 if (subsys_id
>= NFNL_SUBSYS_COUNT
)
95 return rcu_dereference(table
[subsys_id
].subsys
);
98 static inline const struct nfnl_callback
*
99 nfnetlink_find_client(u_int16_t type
, const struct nfnetlink_subsystem
*ss
)
101 u_int8_t cb_id
= NFNL_MSG_TYPE(type
);
103 if (cb_id
>= ss
->cb_count
)
106 return &ss
->cb
[cb_id
];
109 int nfnetlink_has_listeners(struct net
*net
, unsigned int group
)
111 return netlink_has_listeners(net
->nfnl
, group
);
113 EXPORT_SYMBOL_GPL(nfnetlink_has_listeners
);
115 struct sk_buff
*nfnetlink_alloc_skb(struct net
*net
, unsigned int size
,
116 u32 dst_portid
, gfp_t gfp_mask
)
118 return netlink_alloc_skb(net
->nfnl
, size
, dst_portid
, gfp_mask
);
120 EXPORT_SYMBOL_GPL(nfnetlink_alloc_skb
);
122 int nfnetlink_send(struct sk_buff
*skb
, struct net
*net
, u32 portid
,
123 unsigned int group
, int echo
, gfp_t flags
)
125 return nlmsg_notify(net
->nfnl
, skb
, portid
, group
, echo
, flags
);
127 EXPORT_SYMBOL_GPL(nfnetlink_send
);
129 int nfnetlink_set_err(struct net
*net
, u32 portid
, u32 group
, int error
)
131 return netlink_set_err(net
->nfnl
, portid
, group
, error
);
133 EXPORT_SYMBOL_GPL(nfnetlink_set_err
);
135 int nfnetlink_unicast(struct sk_buff
*skb
, struct net
*net
, u32 portid
,
138 return netlink_unicast(net
->nfnl
, skb
, portid
, flags
);
140 EXPORT_SYMBOL_GPL(nfnetlink_unicast
);
142 /* Process one complete nfnetlink message. */
143 static int nfnetlink_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
145 struct net
*net
= sock_net(skb
->sk
);
146 const struct nfnl_callback
*nc
;
147 const struct nfnetlink_subsystem
*ss
;
150 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
153 /* All the messages must at least contain nfgenmsg */
154 if (nlmsg_len(nlh
) < sizeof(struct nfgenmsg
))
157 type
= nlh
->nlmsg_type
;
160 ss
= nfnetlink_get_subsys(type
);
162 #ifdef CONFIG_MODULES
164 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type
));
166 ss
= nfnetlink_get_subsys(type
);
175 nc
= nfnetlink_find_client(type
, ss
);
182 int min_len
= nlmsg_total_size(sizeof(struct nfgenmsg
));
183 u_int8_t cb_id
= NFNL_MSG_TYPE(nlh
->nlmsg_type
);
184 struct nlattr
*cda
[ss
->cb
[cb_id
].attr_count
+ 1];
185 struct nlattr
*attr
= (void *)nlh
+ min_len
;
186 int attrlen
= nlh
->nlmsg_len
- min_len
;
187 __u8 subsys_id
= NFNL_SUBSYS_ID(type
);
189 err
= nla_parse(cda
, ss
->cb
[cb_id
].attr_count
,
190 attr
, attrlen
, ss
->cb
[cb_id
].policy
);
197 err
= nc
->call_rcu(net
->nfnl
, skb
, nlh
,
198 (const struct nlattr
**)cda
);
202 nfnl_lock(subsys_id
);
203 if (rcu_dereference_protected(table
[subsys_id
].subsys
,
204 lockdep_is_held(&table
[subsys_id
].mutex
)) != ss
||
205 nfnetlink_find_client(type
, ss
) != nc
)
208 err
= nc
->call(net
->nfnl
, skb
, nlh
,
209 (const struct nlattr
**)cda
);
212 nfnl_unlock(subsys_id
);
220 static void nfnetlink_rcv(struct sk_buff
*skb
)
222 netlink_rcv_skb(skb
, &nfnetlink_rcv_msg
);
225 #ifdef CONFIG_MODULES
226 static void nfnetlink_bind(int group
)
228 const struct nfnetlink_subsystem
*ss
;
229 int type
= nfnl_group2type
[group
];
232 ss
= nfnetlink_get_subsys(type
);
235 request_module("nfnetlink-subsys-%d", type
);
242 static int __net_init
nfnetlink_net_init(struct net
*net
)
245 struct netlink_kernel_cfg cfg
= {
246 .groups
= NFNLGRP_MAX
,
247 .input
= nfnetlink_rcv
,
248 #ifdef CONFIG_MODULES
249 .bind
= nfnetlink_bind
,
253 nfnl
= netlink_kernel_create(net
, NETLINK_NETFILTER
, &cfg
);
256 net
->nfnl_stash
= nfnl
;
257 rcu_assign_pointer(net
->nfnl
, nfnl
);
261 static void __net_exit
nfnetlink_net_exit_batch(struct list_head
*net_exit_list
)
265 list_for_each_entry(net
, net_exit_list
, exit_list
)
266 RCU_INIT_POINTER(net
->nfnl
, NULL
);
268 list_for_each_entry(net
, net_exit_list
, exit_list
)
269 netlink_kernel_release(net
->nfnl_stash
);
272 static struct pernet_operations nfnetlink_net_ops
= {
273 .init
= nfnetlink_net_init
,
274 .exit_batch
= nfnetlink_net_exit_batch
,
277 static int __init
nfnetlink_init(void)
281 for (i
=0; i
<NFNL_SUBSYS_COUNT
; i
++)
282 mutex_init(&table
[i
].mutex
);
284 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion
);
285 return register_pernet_subsys(&nfnetlink_net_ops
);
288 static void __exit
nfnetlink_exit(void)
290 pr_info("Removing netfilter NETLINK layer.\n");
291 unregister_pernet_subsys(&nfnetlink_net_ops
);
293 module_init(nfnetlink_init
);
294 module_exit(nfnetlink_exit
);