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/major.h>
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>
31 #include <net/netlink.h>
32 #include <linux/init.h>
34 #include <linux/netlink.h>
35 #include <linux/netfilter/nfnetlink.h>
37 MODULE_LICENSE("GPL");
38 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_NETFILTER
);
41 static char __initdata nfversion
[] = "0.30";
43 static const struct nfnetlink_subsystem
*subsys_table
[NFNL_SUBSYS_COUNT
];
44 static DEFINE_MUTEX(nfnl_mutex
);
48 mutex_lock(&nfnl_mutex
);
50 EXPORT_SYMBOL_GPL(nfnl_lock
);
52 void nfnl_unlock(void)
54 mutex_unlock(&nfnl_mutex
);
56 EXPORT_SYMBOL_GPL(nfnl_unlock
);
58 int nfnetlink_subsys_register(const struct nfnetlink_subsystem
*n
)
61 if (subsys_table
[n
->subsys_id
]) {
65 subsys_table
[n
->subsys_id
] = n
;
70 EXPORT_SYMBOL_GPL(nfnetlink_subsys_register
);
72 int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem
*n
)
75 subsys_table
[n
->subsys_id
] = NULL
;
80 EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister
);
82 static inline const struct nfnetlink_subsystem
*nfnetlink_get_subsys(u_int16_t type
)
84 u_int8_t subsys_id
= NFNL_SUBSYS_ID(type
);
86 if (subsys_id
>= NFNL_SUBSYS_COUNT
)
89 return subsys_table
[subsys_id
];
92 static inline const struct nfnl_callback
*
93 nfnetlink_find_client(u_int16_t type
, const struct nfnetlink_subsystem
*ss
)
95 u_int8_t cb_id
= NFNL_MSG_TYPE(type
);
97 if (cb_id
>= ss
->cb_count
)
100 return &ss
->cb
[cb_id
];
103 int nfnetlink_has_listeners(struct net
*net
, unsigned int group
)
105 return netlink_has_listeners(net
->nfnl
, group
);
107 EXPORT_SYMBOL_GPL(nfnetlink_has_listeners
);
109 int nfnetlink_send(struct sk_buff
*skb
, struct net
*net
, u32 pid
,
110 unsigned group
, int echo
, gfp_t flags
)
112 return nlmsg_notify(net
->nfnl
, skb
, pid
, group
, echo
, flags
);
114 EXPORT_SYMBOL_GPL(nfnetlink_send
);
116 void nfnetlink_set_err(struct net
*net
, u32 pid
, u32 group
, int error
)
118 netlink_set_err(net
->nfnl
, pid
, group
, error
);
120 EXPORT_SYMBOL_GPL(nfnetlink_set_err
);
122 int nfnetlink_unicast(struct sk_buff
*skb
, struct net
*net
, u_int32_t pid
, int flags
)
124 return netlink_unicast(net
->nfnl
, skb
, pid
, flags
);
126 EXPORT_SYMBOL_GPL(nfnetlink_unicast
);
128 /* Process one complete nfnetlink message. */
129 static int nfnetlink_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
131 struct net
*net
= sock_net(skb
->sk
);
132 const struct nfnl_callback
*nc
;
133 const struct nfnetlink_subsystem
*ss
;
136 if (security_netlink_recv(skb
, CAP_NET_ADMIN
))
139 /* All the messages must at least contain nfgenmsg */
140 if (nlh
->nlmsg_len
< NLMSG_LENGTH(sizeof(struct nfgenmsg
)))
143 type
= nlh
->nlmsg_type
;
145 ss
= nfnetlink_get_subsys(type
);
147 #ifdef CONFIG_MODULES
149 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type
));
151 ss
= nfnetlink_get_subsys(type
);
157 nc
= nfnetlink_find_client(type
, ss
);
162 int min_len
= NLMSG_SPACE(sizeof(struct nfgenmsg
));
163 u_int8_t cb_id
= NFNL_MSG_TYPE(nlh
->nlmsg_type
);
164 struct nlattr
*cda
[ss
->cb
[cb_id
].attr_count
+ 1];
165 struct nlattr
*attr
= (void *)nlh
+ min_len
;
166 int attrlen
= nlh
->nlmsg_len
- min_len
;
168 err
= nla_parse(cda
, ss
->cb
[cb_id
].attr_count
,
169 attr
, attrlen
, ss
->cb
[cb_id
].policy
);
173 err
= nc
->call(net
->nfnl
, skb
, nlh
, (const struct nlattr
**)cda
);
180 static void nfnetlink_rcv(struct sk_buff
*skb
)
183 netlink_rcv_skb(skb
, &nfnetlink_rcv_msg
);
187 static int __net_init
nfnetlink_net_init(struct net
*net
)
191 nfnl
= netlink_kernel_create(net
, NETLINK_NETFILTER
, NFNLGRP_MAX
,
192 nfnetlink_rcv
, NULL
, THIS_MODULE
);
195 net
->nfnl_stash
= nfnl
;
196 rcu_assign_pointer(net
->nfnl
, nfnl
);
200 static void __net_exit
nfnetlink_net_exit_batch(struct list_head
*net_exit_list
)
204 list_for_each_entry(net
, net_exit_list
, exit_list
)
205 rcu_assign_pointer(net
->nfnl
, NULL
);
207 list_for_each_entry(net
, net_exit_list
, exit_list
)
208 netlink_kernel_release(net
->nfnl_stash
);
211 static struct pernet_operations nfnetlink_net_ops
= {
212 .init
= nfnetlink_net_init
,
213 .exit_batch
= nfnetlink_net_exit_batch
,
216 static int __init
nfnetlink_init(void)
218 printk("Netfilter messages via NETLINK v%s.\n", nfversion
);
219 return register_pernet_subsys(&nfnetlink_net_ops
);
222 static void __exit
nfnetlink_exit(void)
224 printk("Removing netfilter NETLINK layer.\n");
225 unregister_pernet_subsys(&nfnetlink_net_ops
);
227 module_init(nfnetlink_init
);
228 module_exit(nfnetlink_exit
);