Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 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> |
Pablo Neira Ayuso | 67ca396 | 2007-03-14 16:40:38 -0700 | [diff] [blame] | 6 | * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 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 | |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/types.h> |
| 19 | #include <linux/socket.h> |
| 20 | #include <linux/kernel.h> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 21 | #include <linux/string.h> |
| 22 | #include <linux/sockios.h> |
| 23 | #include <linux/net.h> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 24 | #include <linux/skbuff.h> |
| 25 | #include <asm/uaccess.h> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 26 | #include <net/sock.h> |
Patrick McHardy | a3c5029 | 2007-03-14 16:39:25 -0700 | [diff] [blame] | 27 | #include <net/netlink.h> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 28 | #include <linux/init.h> |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 29 | |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 30 | #include <linux/netlink.h> |
| 31 | #include <linux/netfilter/nfnetlink.h> |
| 32 | |
| 33 | MODULE_LICENSE("GPL"); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 34 | MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>"); |
| 35 | MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 36 | |
| 37 | static char __initdata nfversion[] = "0.30"; |
| 38 | |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 39 | static const struct nfnetlink_subsystem __rcu *subsys_table[NFNL_SUBSYS_COUNT]; |
Patrick McHardy | a3c5029 | 2007-03-14 16:39:25 -0700 | [diff] [blame] | 40 | static DEFINE_MUTEX(nfnl_mutex); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 41 | |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 42 | static const int nfnl_group2type[NFNLGRP_MAX+1] = { |
| 43 | [NFNLGRP_CONNTRACK_NEW] = NFNL_SUBSYS_CTNETLINK, |
| 44 | [NFNLGRP_CONNTRACK_UPDATE] = NFNL_SUBSYS_CTNETLINK, |
| 45 | [NFNLGRP_CONNTRACK_DESTROY] = NFNL_SUBSYS_CTNETLINK, |
| 46 | [NFNLGRP_CONNTRACK_EXP_NEW] = NFNL_SUBSYS_CTNETLINK_EXP, |
| 47 | [NFNLGRP_CONNTRACK_EXP_UPDATE] = NFNL_SUBSYS_CTNETLINK_EXP, |
| 48 | [NFNLGRP_CONNTRACK_EXP_DESTROY] = NFNL_SUBSYS_CTNETLINK_EXP, |
| 49 | }; |
| 50 | |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 51 | void nfnl_lock(void) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 52 | { |
Patrick McHardy | a3c5029 | 2007-03-14 16:39:25 -0700 | [diff] [blame] | 53 | mutex_lock(&nfnl_mutex); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 54 | } |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 55 | EXPORT_SYMBOL_GPL(nfnl_lock); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 56 | |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 57 | void nfnl_unlock(void) |
Patrick McHardy | a3c5029 | 2007-03-14 16:39:25 -0700 | [diff] [blame] | 58 | { |
| 59 | mutex_unlock(&nfnl_mutex); |
| 60 | } |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 61 | EXPORT_SYMBOL_GPL(nfnl_unlock); |
Patrick McHardy | a3c5029 | 2007-03-14 16:39:25 -0700 | [diff] [blame] | 62 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 63 | int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 64 | { |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 65 | nfnl_lock(); |
Harald Welte | 0ab43f8 | 2005-08-09 19:43:44 -0700 | [diff] [blame] | 66 | if (subsys_table[n->subsys_id]) { |
| 67 | nfnl_unlock(); |
| 68 | return -EBUSY; |
| 69 | } |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 70 | rcu_assign_pointer(subsys_table[n->subsys_id], n); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 71 | nfnl_unlock(); |
| 72 | |
| 73 | return 0; |
| 74 | } |
Pablo Neira Ayuso | f4bc177 | 2007-03-14 16:42:11 -0700 | [diff] [blame] | 75 | EXPORT_SYMBOL_GPL(nfnetlink_subsys_register); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 76 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 77 | int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 78 | { |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 79 | nfnl_lock(); |
| 80 | subsys_table[n->subsys_id] = NULL; |
| 81 | nfnl_unlock(); |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 82 | synchronize_rcu(); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 83 | return 0; |
| 84 | } |
Pablo Neira Ayuso | f4bc177 | 2007-03-14 16:42:11 -0700 | [diff] [blame] | 85 | EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 86 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 87 | static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 88 | { |
| 89 | u_int8_t subsys_id = NFNL_SUBSYS_ID(type); |
| 90 | |
Pablo Neira Ayuso | ac0f1d9 | 2007-03-14 16:41:28 -0700 | [diff] [blame] | 91 | if (subsys_id >= NFNL_SUBSYS_COUNT) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 92 | return NULL; |
| 93 | |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 94 | return rcu_dereference(subsys_table[subsys_id]); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 97 | static inline const struct nfnl_callback * |
| 98 | nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 99 | { |
| 100 | u_int8_t cb_id = NFNL_MSG_TYPE(type); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 101 | |
Pablo Neira Ayuso | 67ca396 | 2007-03-14 16:40:38 -0700 | [diff] [blame] | 102 | if (cb_id >= ss->cb_count) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 103 | return NULL; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 104 | |
| 105 | return &ss->cb[cb_id]; |
| 106 | } |
| 107 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 108 | int nfnetlink_has_listeners(struct net *net, unsigned int group) |
Patrick McHardy | a242769 | 2006-03-20 18:03:59 -0800 | [diff] [blame] | 109 | { |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 110 | return netlink_has_listeners(net->nfnl, group); |
Patrick McHardy | a242769 | 2006-03-20 18:03:59 -0800 | [diff] [blame] | 111 | } |
| 112 | EXPORT_SYMBOL_GPL(nfnetlink_has_listeners); |
| 113 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 114 | int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 115 | unsigned int group, int echo, gfp_t flags) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 116 | { |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 117 | return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 118 | } |
Pablo Neira Ayuso | f4bc177 | 2007-03-14 16:42:11 -0700 | [diff] [blame] | 119 | EXPORT_SYMBOL_GPL(nfnetlink_send); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 120 | |
Pablo Neira Ayuso | 37b7ef7 | 2010-03-16 13:30:21 +0000 | [diff] [blame] | 121 | int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error) |
Pablo Neira Ayuso | dd5b6ce | 2009-03-23 13:21:06 +0100 | [diff] [blame] | 122 | { |
Pablo Neira Ayuso | 37b7ef7 | 2010-03-16 13:30:21 +0000 | [diff] [blame] | 123 | return netlink_set_err(net->nfnl, pid, group, error); |
Pablo Neira Ayuso | dd5b6ce | 2009-03-23 13:21:06 +0100 | [diff] [blame] | 124 | } |
| 125 | EXPORT_SYMBOL_GPL(nfnetlink_set_err); |
| 126 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 127 | int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 128 | { |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 129 | return netlink_unicast(net->nfnl, skb, pid, flags); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 130 | } |
Pablo Neira Ayuso | f4bc177 | 2007-03-14 16:42:11 -0700 | [diff] [blame] | 131 | EXPORT_SYMBOL_GPL(nfnetlink_unicast); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 132 | |
| 133 | /* Process one complete nfnetlink message. */ |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 134 | static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 135 | { |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 136 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 137 | const struct nfnl_callback *nc; |
| 138 | const struct nfnetlink_subsystem *ss; |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 139 | int type, err; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 140 | |
Eric W. Biederman | df008c9 | 2012-11-16 03:03:07 +0000 | [diff] [blame] | 141 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 142 | return -EPERM; |
Harald Welte | 37d2e7a | 2005-11-14 15:24:59 -0800 | [diff] [blame] | 143 | |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 144 | /* All the messages must at least contain nfgenmsg */ |
Pablo Neira Ayuso | f49c857 | 2009-06-02 20:03:33 +0200 | [diff] [blame] | 145 | if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nfgenmsg))) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 146 | return 0; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 147 | |
| 148 | type = nlh->nlmsg_type; |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 149 | replay: |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 150 | rcu_read_lock(); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 151 | ss = nfnetlink_get_subsys(type); |
Harald Welte | 0ab43f8 | 2005-08-09 19:43:44 -0700 | [diff] [blame] | 152 | if (!ss) { |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 153 | #ifdef CONFIG_MODULES |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 154 | rcu_read_unlock(); |
Harald Welte | 37d2e7a | 2005-11-14 15:24:59 -0800 | [diff] [blame] | 155 | request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type)); |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 156 | rcu_read_lock(); |
Harald Welte | 37d2e7a | 2005-11-14 15:24:59 -0800 | [diff] [blame] | 157 | ss = nfnetlink_get_subsys(type); |
Harald Welte | 0ab43f8 | 2005-08-09 19:43:44 -0700 | [diff] [blame] | 158 | if (!ss) |
| 159 | #endif |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 160 | { |
| 161 | rcu_read_unlock(); |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 162 | return -EINVAL; |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 163 | } |
Harald Welte | 0ab43f8 | 2005-08-09 19:43:44 -0700 | [diff] [blame] | 164 | } |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 165 | |
| 166 | nc = nfnetlink_find_client(type, ss); |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 167 | if (!nc) { |
| 168 | rcu_read_unlock(); |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 169 | return -EINVAL; |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 170 | } |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 171 | |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 172 | { |
Patrick McHardy | e373057 | 2007-09-28 14:38:52 -0700 | [diff] [blame] | 173 | int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg)); |
| 174 | u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type); |
Pablo Neira Ayuso | f49c857 | 2009-06-02 20:03:33 +0200 | [diff] [blame] | 175 | struct nlattr *cda[ss->cb[cb_id].attr_count + 1]; |
| 176 | struct nlattr *attr = (void *)nlh + min_len; |
| 177 | int attrlen = nlh->nlmsg_len - min_len; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 178 | |
Pablo Neira Ayuso | f49c857 | 2009-06-02 20:03:33 +0200 | [diff] [blame] | 179 | err = nla_parse(cda, ss->cb[cb_id].attr_count, |
| 180 | attr, attrlen, ss->cb[cb_id].policy); |
Tomasz Bursztyka | 4009e18 | 2012-06-28 02:57:49 +0000 | [diff] [blame] | 181 | if (err < 0) { |
| 182 | rcu_read_unlock(); |
Pablo Neira Ayuso | f49c857 | 2009-06-02 20:03:33 +0200 | [diff] [blame] | 183 | return err; |
Tomasz Bursztyka | 4009e18 | 2012-06-28 02:57:49 +0000 | [diff] [blame] | 184 | } |
Patrick McHardy | e373057 | 2007-09-28 14:38:52 -0700 | [diff] [blame] | 185 | |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 186 | if (nc->call_rcu) { |
| 187 | err = nc->call_rcu(net->nfnl, skb, nlh, |
| 188 | (const struct nlattr **)cda); |
| 189 | rcu_read_unlock(); |
| 190 | } else { |
| 191 | rcu_read_unlock(); |
| 192 | nfnl_lock(); |
| 193 | if (rcu_dereference_protected( |
| 194 | subsys_table[NFNL_SUBSYS_ID(type)], |
| 195 | lockdep_is_held(&nfnl_mutex)) != ss || |
| 196 | nfnetlink_find_client(type, ss) != nc) |
| 197 | err = -EAGAIN; |
Tomasz Bursztyka | 59560a3 | 2012-06-28 02:57:47 +0000 | [diff] [blame] | 198 | else if (nc->call) |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 199 | err = nc->call(net->nfnl, skb, nlh, |
| 200 | (const struct nlattr **)cda); |
Tomasz Bursztyka | 59560a3 | 2012-06-28 02:57:47 +0000 | [diff] [blame] | 201 | else |
| 202 | err = -EINVAL; |
Eric Dumazet | 6b75e3e | 2011-07-18 16:08:07 +0200 | [diff] [blame] | 203 | nfnl_unlock(); |
| 204 | } |
Pablo Neira Ayuso | e6a7d3c | 2008-10-14 11:58:31 -0700 | [diff] [blame] | 205 | if (err == -EAGAIN) |
| 206 | goto replay; |
| 207 | return err; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 208 | } |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 211 | static void nfnetlink_rcv(struct sk_buff *skb) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 212 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 213 | netlink_rcv_skb(skb, &nfnetlink_rcv_msg); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 216 | #ifdef CONFIG_MODULES |
| 217 | static void nfnetlink_bind(int group) |
| 218 | { |
| 219 | const struct nfnetlink_subsystem *ss; |
| 220 | int type = nfnl_group2type[group]; |
| 221 | |
| 222 | rcu_read_lock(); |
| 223 | ss = nfnetlink_get_subsys(type); |
| 224 | if (!ss) { |
| 225 | rcu_read_unlock(); |
| 226 | request_module("nfnetlink-subsys-%d", type); |
| 227 | return; |
| 228 | } |
| 229 | rcu_read_unlock(); |
| 230 | } |
| 231 | #endif |
| 232 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 233 | static int __net_init nfnetlink_net_init(struct net *net) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 234 | { |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 235 | struct sock *nfnl; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 236 | struct netlink_kernel_cfg cfg = { |
| 237 | .groups = NFNLGRP_MAX, |
| 238 | .input = nfnetlink_rcv, |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 239 | #ifdef CONFIG_MODULES |
| 240 | .bind = nfnetlink_bind, |
| 241 | #endif |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 242 | }; |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 243 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 244 | nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, &cfg); |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 245 | if (!nfnl) |
| 246 | return -ENOMEM; |
| 247 | net->nfnl_stash = nfnl; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 248 | rcu_assign_pointer(net->nfnl, nfnl); |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 249 | return 0; |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 252 | static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list) |
| 253 | { |
| 254 | struct net *net; |
| 255 | |
| 256 | list_for_each_entry(net, net_exit_list, exit_list) |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 257 | RCU_INIT_POINTER(net->nfnl, NULL); |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 258 | synchronize_net(); |
| 259 | list_for_each_entry(net, net_exit_list, exit_list) |
| 260 | netlink_kernel_release(net->nfnl_stash); |
| 261 | } |
| 262 | |
| 263 | static struct pernet_operations nfnetlink_net_ops = { |
| 264 | .init = nfnetlink_net_init, |
| 265 | .exit_batch = nfnetlink_net_exit_batch, |
| 266 | }; |
| 267 | |
Adrian Bunk | 395dde2 | 2005-09-05 18:06:45 -0700 | [diff] [blame] | 268 | static int __init nfnetlink_init(void) |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 269 | { |
Stephen Hemminger | 654d0fb | 2010-05-13 15:02:08 +0200 | [diff] [blame] | 270 | pr_info("Netfilter messages via NETLINK v%s.\n", nfversion); |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 271 | return register_pernet_subsys(&nfnetlink_net_ops); |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 274 | static void __exit nfnetlink_exit(void) |
| 275 | { |
Stephen Hemminger | 654d0fb | 2010-05-13 15:02:08 +0200 | [diff] [blame] | 276 | pr_info("Removing netfilter NETLINK layer.\n"); |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 277 | unregister_pernet_subsys(&nfnetlink_net_ops); |
| 278 | } |
Harald Welte | f9e815b | 2005-08-09 19:30:24 -0700 | [diff] [blame] | 279 | module_init(nfnetlink_init); |
| 280 | module_exit(nfnetlink_exit); |