blob: 2128542995f79279fb026bcc4688eef46b434305 [file] [log] [blame]
Harald Weltef9e815b2005-08-09 19:30:24 -07001/* 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>
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -07006 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
Harald Weltef9e815b2005-08-09 19:30:24 -07007 *
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
Harald Weltef9e815b2005-08-09 19:30:24 -070017#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
21#include <linux/major.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070022#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>
Patrick McHardya3c50292007-03-14 16:39:25 -070031#include <net/netlink.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070032#include <linux/init.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070033
Harald Weltef9e815b2005-08-09 19:30:24 -070034#include <linux/netlink.h>
35#include <linux/netfilter/nfnetlink.h>
36
37MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070038MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
Harald Weltef9e815b2005-08-09 19:30:24 -070040
41static char __initdata nfversion[] = "0.30";
42
Harald Weltef9e815b2005-08-09 19:30:24 -070043static struct sock *nfnl = NULL;
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070044static const struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
Patrick McHardya3c50292007-03-14 16:39:25 -070045static DEFINE_MUTEX(nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070046
Denis V. Lunev3b715352007-10-10 21:13:32 -070047static inline void nfnl_lock(void)
Harald Weltef9e815b2005-08-09 19:30:24 -070048{
Patrick McHardya3c50292007-03-14 16:39:25 -070049 mutex_lock(&nfnl_mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070050}
51
Denis V. Lunev3b715352007-10-10 21:13:32 -070052static inline void nfnl_unlock(void)
Patrick McHardya3c50292007-03-14 16:39:25 -070053{
54 mutex_unlock(&nfnl_mutex);
55}
56
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070057int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070058{
Harald Weltef9e815b2005-08-09 19:30:24 -070059 nfnl_lock();
Harald Welte0ab43f82005-08-09 19:43:44 -070060 if (subsys_table[n->subsys_id]) {
61 nfnl_unlock();
62 return -EBUSY;
63 }
Harald Weltef9e815b2005-08-09 19:30:24 -070064 subsys_table[n->subsys_id] = n;
65 nfnl_unlock();
66
67 return 0;
68}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070069EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
Harald Weltef9e815b2005-08-09 19:30:24 -070070
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070071int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070072{
Harald Weltef9e815b2005-08-09 19:30:24 -070073 nfnl_lock();
74 subsys_table[n->subsys_id] = NULL;
75 nfnl_unlock();
76
77 return 0;
78}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070079EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
Harald Weltef9e815b2005-08-09 19:30:24 -070080
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070081static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
Harald Weltef9e815b2005-08-09 19:30:24 -070082{
83 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
84
Pablo Neira Ayusoac0f1d92007-03-14 16:41:28 -070085 if (subsys_id >= NFNL_SUBSYS_COUNT)
Harald Weltef9e815b2005-08-09 19:30:24 -070086 return NULL;
87
88 return subsys_table[subsys_id];
89}
90
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070091static inline const struct nfnl_callback *
92nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
Harald Weltef9e815b2005-08-09 19:30:24 -070093{
94 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080095
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -070096 if (cb_id >= ss->cb_count)
Harald Weltef9e815b2005-08-09 19:30:24 -070097 return NULL;
Harald Weltef9e815b2005-08-09 19:30:24 -070098
99 return &ss->cb[cb_id];
100}
101
Patrick McHardya2427692006-03-20 18:03:59 -0800102int nfnetlink_has_listeners(unsigned int group)
103{
104 return netlink_has_listeners(nfnl, group);
105}
106EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
107
Harald Weltef9e815b2005-08-09 19:30:24 -0700108int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo)
109{
Patrick McHardydd821852007-09-28 14:38:07 -0700110 return nlmsg_notify(nfnl, skb, pid, group, echo, gfp_any());
Harald Weltef9e815b2005-08-09 19:30:24 -0700111}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700112EXPORT_SYMBOL_GPL(nfnetlink_send);
Harald Weltef9e815b2005-08-09 19:30:24 -0700113
114int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags)
115{
116 return netlink_unicast(nfnl, skb, pid, flags);
117}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700118EXPORT_SYMBOL_GPL(nfnetlink_unicast);
Harald Weltef9e815b2005-08-09 19:30:24 -0700119
120/* Process one complete nfnetlink message. */
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700121static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Harald Weltef9e815b2005-08-09 19:30:24 -0700122{
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700123 const struct nfnl_callback *nc;
124 const struct nfnetlink_subsystem *ss;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700125 int type, err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700126
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700127 if (security_netlink_recv(skb, CAP_NET_ADMIN))
128 return -EPERM;
Harald Welte37d2e7a2005-11-14 15:24:59 -0800129
Harald Weltef9e815b2005-08-09 19:30:24 -0700130 /* All the messages must at least contain nfgenmsg */
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700131 if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg)))
Harald Weltef9e815b2005-08-09 19:30:24 -0700132 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700133
134 type = nlh->nlmsg_type;
135 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700136 if (!ss) {
137#ifdef CONFIG_KMOD
Denis V. Lunev3b715352007-10-10 21:13:32 -0700138 nfnl_unlock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800139 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
Patrick McHardya3c50292007-03-14 16:39:25 -0700140 nfnl_lock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800141 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700142 if (!ss)
143#endif
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700144 return -EINVAL;
Harald Welte0ab43f82005-08-09 19:43:44 -0700145 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700146
147 nc = nfnetlink_find_client(type, ss);
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700148 if (!nc)
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700149 return -EINVAL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700150
Harald Weltef9e815b2005-08-09 19:30:24 -0700151 {
Patrick McHardye3730572007-09-28 14:38:52 -0700152 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
153 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
154 u_int16_t attr_count = ss->cb[cb_id].attr_count;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700155 struct nlattr *cda[attr_count+1];
Harald Weltef9e815b2005-08-09 19:30:24 -0700156
Patrick McHardye3730572007-09-28 14:38:52 -0700157 if (likely(nlh->nlmsg_len >= min_len)) {
158 struct nlattr *attr = (void *)nlh + NLMSG_ALIGN(min_len);
159 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800160
Patrick McHardye3730572007-09-28 14:38:52 -0700161 err = nla_parse(cda, attr_count, attr, attrlen,
162 ss->cb[cb_id].policy);
163 if (err < 0)
164 return err;
165 } else
166 return -EINVAL;
167
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700168 return nc->call(nfnl, skb, nlh, cda);
Harald Weltef9e815b2005-08-09 19:30:24 -0700169 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700170}
171
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700172static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700173{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700174 nfnl_lock();
175 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
176 nfnl_unlock();
Harald Weltef9e815b2005-08-09 19:30:24 -0700177}
178
Adrian Bunk395dde22005-09-05 18:06:45 -0700179static void __exit nfnetlink_exit(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700180{
181 printk("Removing netfilter NETLINK layer.\n");
182 sock_release(nfnl->sk_socket);
183 return;
184}
185
Adrian Bunk395dde22005-09-05 18:06:45 -0700186static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700187{
188 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
189
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200190 nfnl = netlink_kernel_create(&init_net, NETLINK_NETFILTER, NFNLGRP_MAX,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700191 nfnetlink_rcv, NULL, THIS_MODULE);
Harald Weltef9e815b2005-08-09 19:30:24 -0700192 if (!nfnl) {
193 printk(KERN_ERR "cannot initialize nfnetlink!\n");
194 return -1;
195 }
196
197 return 0;
198}
199
200module_init(nfnetlink_init);
201module_exit(nfnetlink_exit);