Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * NETLINK Kernel-user communication protocol. |
| 3 | * |
Alan Cox | 113aa83 | 2008-10-13 19:01:08 -0700 | [diff] [blame] | 4 | * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith |
| 13 | * added netlink_proto_exit |
| 14 | * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br> |
| 15 | * use nlk_sk, as sk->protinfo is on a diet 8) |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 16 | * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org> |
| 17 | * - inc module use count of module that owns |
| 18 | * the kernel socket in case userspace opens |
| 19 | * socket of same protocol |
| 20 | * - remove all module support, since netlink is |
| 21 | * mandatory if CONFIG_NET=y these days |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> |
| 25 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 26 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/kernel.h> |
| 28 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/signal.h> |
| 30 | #include <linux/sched.h> |
| 31 | #include <linux/errno.h> |
| 32 | #include <linux/string.h> |
| 33 | #include <linux/stat.h> |
| 34 | #include <linux/socket.h> |
| 35 | #include <linux/un.h> |
| 36 | #include <linux/fcntl.h> |
| 37 | #include <linux/termios.h> |
| 38 | #include <linux/sockios.h> |
| 39 | #include <linux/net.h> |
| 40 | #include <linux/fs.h> |
| 41 | #include <linux/slab.h> |
| 42 | #include <asm/uaccess.h> |
| 43 | #include <linux/skbuff.h> |
| 44 | #include <linux/netdevice.h> |
| 45 | #include <linux/rtnetlink.h> |
| 46 | #include <linux/proc_fs.h> |
| 47 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/notifier.h> |
| 49 | #include <linux/security.h> |
| 50 | #include <linux/jhash.h> |
| 51 | #include <linux/jiffies.h> |
| 52 | #include <linux/random.h> |
| 53 | #include <linux/bitops.h> |
| 54 | #include <linux/mm.h> |
| 55 | #include <linux/types.h> |
Andrew Morton | 54e0f52 | 2005-04-30 07:07:04 +0100 | [diff] [blame] | 56 | #include <linux/audit.h> |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 57 | #include <linux/mutex.h> |
Andrew Morton | 54e0f52 | 2005-04-30 07:07:04 +0100 | [diff] [blame] | 58 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 59 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <net/sock.h> |
| 61 | #include <net/scm.h> |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 62 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 64 | #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8) |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 65 | #define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | struct netlink_sock { |
| 68 | /* struct sock has to be the first member of netlink_sock */ |
| 69 | struct sock sk; |
| 70 | u32 pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | u32 dst_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 72 | u32 dst_group; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 73 | u32 flags; |
| 74 | u32 subscriptions; |
| 75 | u32 ngroups; |
| 76 | unsigned long *groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | unsigned long state; |
| 78 | wait_queue_head_t wait; |
| 79 | struct netlink_callback *cb; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 80 | struct mutex *cb_mutex; |
| 81 | struct mutex cb_def_mutex; |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 82 | void (*netlink_rcv)(struct sk_buff *skb); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 83 | struct module *module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 86 | struct listeners { |
| 87 | struct rcu_head rcu; |
| 88 | unsigned long masks[0]; |
Johannes Berg | 6c04bb1 | 2009-07-10 09:51:32 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 91 | #define NETLINK_KERNEL_SOCKET 0x1 |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 92 | #define NETLINK_RECV_PKTINFO 0x2 |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 93 | #define NETLINK_BROADCAST_SEND_ERROR 0x4 |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 94 | #define NETLINK_RECV_NO_ENOBUFS 0x8 |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static inline struct netlink_sock *nlk_sk(struct sock *sk) |
| 97 | { |
Denis Cheng | 32b21e0 | 2007-08-28 15:41:11 -0700 | [diff] [blame] | 98 | return container_of(sk, struct netlink_sock, sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
David S. Miller | 035c4c1 | 2011-12-23 17:33:03 -0500 | [diff] [blame] | 101 | static inline int netlink_is_kernel(struct sock *sk) |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 102 | { |
| 103 | return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET; |
| 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct nl_pid_hash { |
| 107 | struct hlist_head *table; |
| 108 | unsigned long rehash_time; |
| 109 | |
| 110 | unsigned int mask; |
| 111 | unsigned int shift; |
| 112 | |
| 113 | unsigned int entries; |
| 114 | unsigned int max_shift; |
| 115 | |
| 116 | u32 rnd; |
| 117 | }; |
| 118 | |
| 119 | struct netlink_table { |
| 120 | struct nl_pid_hash hash; |
| 121 | struct hlist_head mc_list; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 122 | struct listeners __rcu *listeners; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | unsigned int nl_nonroot; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 124 | unsigned int groups; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 125 | struct mutex *cb_mutex; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 126 | struct module *module; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 127 | int registered; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | static struct netlink_table *nl_table; |
| 131 | |
| 132 | static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait); |
| 133 | |
| 134 | static int netlink_dump(struct sock *sk); |
| 135 | static void netlink_destroy_callback(struct netlink_callback *cb); |
| 136 | |
| 137 | static DEFINE_RWLOCK(nl_table_lock); |
| 138 | static atomic_t nl_table_users = ATOMIC_INIT(0); |
| 139 | |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 140 | #define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock)); |
| 141 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 142 | static ATOMIC_NOTIFIER_HEAD(netlink_chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 144 | static inline u32 netlink_group_mask(u32 group) |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 145 | { |
| 146 | return group ? 1 << (group - 1) : 0; |
| 147 | } |
| 148 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 149 | static inline struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
| 151 | return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask]; |
| 152 | } |
| 153 | |
| 154 | static void netlink_sock_destruct(struct sock *sk) |
| 155 | { |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 156 | struct netlink_sock *nlk = nlk_sk(sk); |
| 157 | |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 158 | if (nlk->cb) { |
| 159 | if (nlk->cb->done) |
| 160 | nlk->cb->done(nlk->cb); |
| 161 | netlink_destroy_callback(nlk->cb); |
| 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | skb_queue_purge(&sk->sk_receive_queue); |
| 165 | |
| 166 | if (!sock_flag(sk, SOCK_DEAD)) { |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 167 | printk(KERN_ERR "Freeing alive netlink socket %p\n", sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return; |
| 169 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 170 | |
| 171 | WARN_ON(atomic_read(&sk->sk_rmem_alloc)); |
| 172 | WARN_ON(atomic_read(&sk->sk_wmem_alloc)); |
| 173 | WARN_ON(nlk_sk(sk)->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 176 | /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on |
| 177 | * SMP. Look, when several writers sleep and reader wakes them up, all but one |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | * immediately hit write lock and grab all the cpus. Exclusive sleep solves |
| 179 | * this, _but_ remember, it adds useless work on UP machines. |
| 180 | */ |
| 181 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 182 | void netlink_table_grab(void) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 183 | __acquires(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 185 | might_sleep(); |
| 186 | |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 187 | write_lock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | if (atomic_read(&nl_table_users)) { |
| 190 | DECLARE_WAITQUEUE(wait, current); |
| 191 | |
| 192 | add_wait_queue_exclusive(&nl_table_wait, &wait); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 193 | for (;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 195 | if (atomic_read(&nl_table_users) == 0) |
| 196 | break; |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 197 | write_unlock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | schedule(); |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 199 | write_lock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | __set_current_state(TASK_RUNNING); |
| 203 | remove_wait_queue(&nl_table_wait, &wait); |
| 204 | } |
| 205 | } |
| 206 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 207 | void netlink_table_ungrab(void) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 208 | __releases(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 210 | write_unlock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | wake_up(&nl_table_wait); |
| 212 | } |
| 213 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 214 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | netlink_lock_table(void) |
| 216 | { |
| 217 | /* read_lock() synchronizes us to netlink_table_grab */ |
| 218 | |
| 219 | read_lock(&nl_table_lock); |
| 220 | atomic_inc(&nl_table_users); |
| 221 | read_unlock(&nl_table_lock); |
| 222 | } |
| 223 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 224 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | netlink_unlock_table(void) |
| 226 | { |
| 227 | if (atomic_dec_and_test(&nl_table_users)) |
| 228 | wake_up(&nl_table_wait); |
| 229 | } |
| 230 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 231 | static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | struct nl_pid_hash *hash = &nl_table[protocol].hash; |
| 234 | struct hlist_head *head; |
| 235 | struct sock *sk; |
| 236 | struct hlist_node *node; |
| 237 | |
| 238 | read_lock(&nl_table_lock); |
| 239 | head = nl_pid_hashfn(hash, pid); |
| 240 | sk_for_each(sk, node, head) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 241 | if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | sock_hold(sk); |
| 243 | goto found; |
| 244 | } |
| 245 | } |
| 246 | sk = NULL; |
| 247 | found: |
| 248 | read_unlock(&nl_table_lock); |
| 249 | return sk; |
| 250 | } |
| 251 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 252 | static struct hlist_head *nl_pid_hash_zalloc(size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | if (size <= PAGE_SIZE) |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 255 | return kzalloc(size, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | else |
| 257 | return (struct hlist_head *) |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 258 | __get_free_pages(GFP_ATOMIC | __GFP_ZERO, |
| 259 | get_order(size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 262 | static void nl_pid_hash_free(struct hlist_head *table, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
| 264 | if (size <= PAGE_SIZE) |
| 265 | kfree(table); |
| 266 | else |
| 267 | free_pages((unsigned long)table, get_order(size)); |
| 268 | } |
| 269 | |
| 270 | static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow) |
| 271 | { |
| 272 | unsigned int omask, mask, shift; |
| 273 | size_t osize, size; |
| 274 | struct hlist_head *otable, *table; |
| 275 | int i; |
| 276 | |
| 277 | omask = mask = hash->mask; |
| 278 | osize = size = (mask + 1) * sizeof(*table); |
| 279 | shift = hash->shift; |
| 280 | |
| 281 | if (grow) { |
| 282 | if (++shift > hash->max_shift) |
| 283 | return 0; |
| 284 | mask = mask * 2 + 1; |
| 285 | size *= 2; |
| 286 | } |
| 287 | |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 288 | table = nl_pid_hash_zalloc(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | if (!table) |
| 290 | return 0; |
| 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | otable = hash->table; |
| 293 | hash->table = table; |
| 294 | hash->mask = mask; |
| 295 | hash->shift = shift; |
| 296 | get_random_bytes(&hash->rnd, sizeof(hash->rnd)); |
| 297 | |
| 298 | for (i = 0; i <= omask; i++) { |
| 299 | struct sock *sk; |
| 300 | struct hlist_node *node, *tmp; |
| 301 | |
| 302 | sk_for_each_safe(sk, node, tmp, &otable[i]) |
| 303 | __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid)); |
| 304 | } |
| 305 | |
| 306 | nl_pid_hash_free(otable, osize); |
| 307 | hash->rehash_time = jiffies + 10 * 60 * HZ; |
| 308 | return 1; |
| 309 | } |
| 310 | |
| 311 | static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len) |
| 312 | { |
| 313 | int avg = hash->entries >> hash->shift; |
| 314 | |
| 315 | if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1)) |
| 316 | return 1; |
| 317 | |
| 318 | if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) { |
| 319 | nl_pid_hash_rehash(hash, 0); |
| 320 | return 1; |
| 321 | } |
| 322 | |
| 323 | return 0; |
| 324 | } |
| 325 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 326 | static const struct proto_ops netlink_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 328 | static void |
| 329 | netlink_update_listeners(struct sock *sk) |
| 330 | { |
| 331 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
| 332 | struct hlist_node *node; |
| 333 | unsigned long mask; |
| 334 | unsigned int i; |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 335 | struct listeners *listeners; |
| 336 | |
| 337 | listeners = nl_deref_protected(tbl->listeners); |
| 338 | if (!listeners) |
| 339 | return; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 340 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 341 | for (i = 0; i < NLGRPLONGS(tbl->groups); i++) { |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 342 | mask = 0; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 343 | sk_for_each_bound(sk, node, &tbl->mc_list) { |
| 344 | if (i < NLGRPLONGS(nlk_sk(sk)->ngroups)) |
| 345 | mask |= nlk_sk(sk)->groups[i]; |
| 346 | } |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 347 | listeners->masks[i] = mask; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 348 | } |
| 349 | /* this function is only called with the netlink table "grabbed", which |
| 350 | * makes sure updates are visible before bind or setsockopt return. */ |
| 351 | } |
| 352 | |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 353 | static int netlink_insert(struct sock *sk, struct net *net, u32 pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
| 355 | struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash; |
| 356 | struct hlist_head *head; |
| 357 | int err = -EADDRINUSE; |
| 358 | struct sock *osk; |
| 359 | struct hlist_node *node; |
| 360 | int len; |
| 361 | |
| 362 | netlink_table_grab(); |
| 363 | head = nl_pid_hashfn(hash, pid); |
| 364 | len = 0; |
| 365 | sk_for_each(osk, node, head) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 366 | if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | break; |
| 368 | len++; |
| 369 | } |
| 370 | if (node) |
| 371 | goto err; |
| 372 | |
| 373 | err = -EBUSY; |
| 374 | if (nlk_sk(sk)->pid) |
| 375 | goto err; |
| 376 | |
| 377 | err = -ENOMEM; |
| 378 | if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX)) |
| 379 | goto err; |
| 380 | |
| 381 | if (len && nl_pid_hash_dilute(hash, len)) |
| 382 | head = nl_pid_hashfn(hash, pid); |
| 383 | hash->entries++; |
| 384 | nlk_sk(sk)->pid = pid; |
| 385 | sk_add_node(sk, head); |
| 386 | err = 0; |
| 387 | |
| 388 | err: |
| 389 | netlink_table_ungrab(); |
| 390 | return err; |
| 391 | } |
| 392 | |
| 393 | static void netlink_remove(struct sock *sk) |
| 394 | { |
| 395 | netlink_table_grab(); |
David S. Miller | d470e3b | 2005-06-26 15:31:51 -0700 | [diff] [blame] | 396 | if (sk_del_node_init(sk)) |
| 397 | nl_table[sk->sk_protocol].hash.entries--; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 398 | if (nlk_sk(sk)->subscriptions) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | __sk_del_bind_node(sk); |
| 400 | netlink_table_ungrab(); |
| 401 | } |
| 402 | |
| 403 | static struct proto netlink_proto = { |
| 404 | .name = "NETLINK", |
| 405 | .owner = THIS_MODULE, |
| 406 | .obj_size = sizeof(struct netlink_sock), |
| 407 | }; |
| 408 | |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 409 | static int __netlink_create(struct net *net, struct socket *sock, |
| 410 | struct mutex *cb_mutex, int protocol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | { |
| 412 | struct sock *sk; |
| 413 | struct netlink_sock *nlk; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 414 | |
| 415 | sock->ops = &netlink_ops; |
| 416 | |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 417 | sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto); |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 418 | if (!sk) |
| 419 | return -ENOMEM; |
| 420 | |
| 421 | sock_init_data(sock, sk); |
| 422 | |
| 423 | nlk = nlk_sk(sk); |
Patrick McHardy | ffa4d72 | 2007-04-25 14:01:17 -0700 | [diff] [blame] | 424 | if (cb_mutex) |
| 425 | nlk->cb_mutex = cb_mutex; |
| 426 | else { |
| 427 | nlk->cb_mutex = &nlk->cb_def_mutex; |
| 428 | mutex_init(nlk->cb_mutex); |
| 429 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 430 | init_waitqueue_head(&nlk->wait); |
| 431 | |
| 432 | sk->sk_destruct = netlink_sock_destruct; |
| 433 | sk->sk_protocol = protocol; |
| 434 | return 0; |
| 435 | } |
| 436 | |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 437 | static int netlink_create(struct net *net, struct socket *sock, int protocol, |
| 438 | int kern) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 439 | { |
| 440 | struct module *module = NULL; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 441 | struct mutex *cb_mutex; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 442 | struct netlink_sock *nlk; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 443 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
| 445 | sock->state = SS_UNCONNECTED; |
| 446 | |
| 447 | if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM) |
| 448 | return -ESOCKTNOSUPPORT; |
| 449 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 450 | if (protocol < 0 || protocol >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | return -EPROTONOSUPPORT; |
| 452 | |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 453 | netlink_lock_table(); |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 454 | #ifdef CONFIG_MODULES |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 455 | if (!nl_table[protocol].registered) { |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 456 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 457 | request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 458 | netlink_lock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 459 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 460 | #endif |
| 461 | if (nl_table[protocol].registered && |
| 462 | try_module_get(nl_table[protocol].module)) |
| 463 | module = nl_table[protocol].module; |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 464 | else |
| 465 | err = -EPROTONOSUPPORT; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 466 | cb_mutex = nl_table[protocol].cb_mutex; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 467 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 468 | |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 469 | if (err < 0) |
| 470 | goto out; |
| 471 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 472 | err = __netlink_create(net, sock, cb_mutex, protocol); |
| 473 | if (err < 0) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 474 | goto out_module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 476 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 477 | sock_prot_inuse_add(net, &netlink_proto, 1); |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 478 | local_bh_enable(); |
| 479 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 480 | nlk = nlk_sk(sock->sk); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 481 | nlk->module = module; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 482 | out: |
| 483 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 485 | out_module: |
| 486 | module_put(module); |
| 487 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | static int netlink_release(struct socket *sock) |
| 491 | { |
| 492 | struct sock *sk = sock->sk; |
| 493 | struct netlink_sock *nlk; |
| 494 | |
| 495 | if (!sk) |
| 496 | return 0; |
| 497 | |
| 498 | netlink_remove(sk); |
Denis Lunev | ac57b3a | 2007-04-18 17:05:58 -0700 | [diff] [blame] | 499 | sock_orphan(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | nlk = nlk_sk(sk); |
| 501 | |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 502 | /* |
| 503 | * OK. Socket is unlinked, any packets that arrive now |
| 504 | * will be purged. |
| 505 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | sock->sk = NULL; |
| 508 | wake_up_interruptible_all(&nlk->wait); |
| 509 | |
| 510 | skb_queue_purge(&sk->sk_write_queue); |
| 511 | |
Johannes Berg | 649300b | 2009-11-16 12:05:34 +0000 | [diff] [blame] | 512 | if (nlk->pid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | struct netlink_notify n = { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 514 | .net = sock_net(sk), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | .protocol = sk->sk_protocol, |
| 516 | .pid = nlk->pid, |
| 517 | }; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 518 | atomic_notifier_call_chain(&netlink_chain, |
| 519 | NETLINK_URELEASE, &n); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 520 | } |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 521 | |
Mariusz Kozlowski | 5e7c001 | 2007-01-02 15:24:30 -0800 | [diff] [blame] | 522 | module_put(nlk->module); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 523 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 524 | netlink_table_grab(); |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 525 | if (netlink_is_kernel(sk)) { |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 526 | BUG_ON(nl_table[sk->sk_protocol].registered == 0); |
| 527 | if (--nl_table[sk->sk_protocol].registered == 0) { |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 528 | struct listeners *old; |
| 529 | |
| 530 | old = nl_deref_protected(nl_table[sk->sk_protocol].listeners); |
| 531 | RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL); |
| 532 | kfree_rcu(old, rcu); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 533 | nl_table[sk->sk_protocol].module = NULL; |
| 534 | nl_table[sk->sk_protocol].registered = 0; |
| 535 | } |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 536 | } else if (nlk->subscriptions) |
| 537 | netlink_update_listeners(sk); |
| 538 | netlink_table_ungrab(); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 539 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 540 | kfree(nlk->groups); |
| 541 | nlk->groups = NULL; |
| 542 | |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 543 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 544 | sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1); |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 545 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | sock_put(sk); |
| 547 | return 0; |
| 548 | } |
| 549 | |
| 550 | static int netlink_autobind(struct socket *sock) |
| 551 | { |
| 552 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 553 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash; |
| 555 | struct hlist_head *head; |
| 556 | struct sock *osk; |
| 557 | struct hlist_node *node; |
Tom Goff | 66aa4a5 | 2010-03-19 15:38:50 +0000 | [diff] [blame] | 558 | s32 pid = task_tgid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | int err; |
| 560 | static s32 rover = -4097; |
| 561 | |
| 562 | retry: |
| 563 | cond_resched(); |
| 564 | netlink_table_grab(); |
| 565 | head = nl_pid_hashfn(hash, pid); |
| 566 | sk_for_each(osk, node, head) { |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 567 | if (!net_eq(sock_net(osk), net)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 568 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | if (nlk_sk(osk)->pid == pid) { |
| 570 | /* Bind collision, search negative pid values. */ |
| 571 | pid = rover--; |
| 572 | if (rover > -4097) |
| 573 | rover = -4097; |
| 574 | netlink_table_ungrab(); |
| 575 | goto retry; |
| 576 | } |
| 577 | } |
| 578 | netlink_table_ungrab(); |
| 579 | |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 580 | err = netlink_insert(sk, net, pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | if (err == -EADDRINUSE) |
| 582 | goto retry; |
David S. Miller | d470e3b | 2005-06-26 15:31:51 -0700 | [diff] [blame] | 583 | |
| 584 | /* If 2 threads race to autobind, that is fine. */ |
| 585 | if (err == -EBUSY) |
| 586 | err = 0; |
| 587 | |
| 588 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } |
| 590 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 591 | static inline int netlink_capable(const struct socket *sock, unsigned int flag) |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 592 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) || |
| 594 | capable(CAP_NET_ADMIN); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 597 | static void |
| 598 | netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions) |
| 599 | { |
| 600 | struct netlink_sock *nlk = nlk_sk(sk); |
| 601 | |
| 602 | if (nlk->subscriptions && !subscriptions) |
| 603 | __sk_del_bind_node(sk); |
| 604 | else if (!nlk->subscriptions && subscriptions) |
| 605 | sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list); |
| 606 | nlk->subscriptions = subscriptions; |
| 607 | } |
| 608 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 609 | static int netlink_realloc_groups(struct sock *sk) |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 610 | { |
| 611 | struct netlink_sock *nlk = nlk_sk(sk); |
| 612 | unsigned int groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 613 | unsigned long *new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 614 | int err = 0; |
| 615 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 616 | netlink_table_grab(); |
| 617 | |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 618 | groups = nl_table[sk->sk_protocol].groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 619 | if (!nl_table[sk->sk_protocol].registered) { |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 620 | err = -ENOENT; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 621 | goto out_unlock; |
| 622 | } |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 623 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 624 | if (nlk->ngroups >= groups) |
| 625 | goto out_unlock; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 626 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 627 | new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC); |
| 628 | if (new_groups == NULL) { |
| 629 | err = -ENOMEM; |
| 630 | goto out_unlock; |
| 631 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 632 | memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0, |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 633 | NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups)); |
| 634 | |
| 635 | nlk->groups = new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 636 | nlk->ngroups = groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 637 | out_unlock: |
| 638 | netlink_table_ungrab(); |
| 639 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 640 | } |
| 641 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 642 | static int netlink_bind(struct socket *sock, struct sockaddr *addr, |
| 643 | int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
| 645 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 646 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | struct netlink_sock *nlk = nlk_sk(sk); |
| 648 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
| 649 | int err; |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 650 | |
Hannes Frederic Sowa | 6d1fbb0 | 2012-12-15 15:42:19 +0000 | [diff] [blame] | 651 | if (addr_len < sizeof(struct sockaddr_nl)) |
| 652 | return -EINVAL; |
| 653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | if (nladdr->nl_family != AF_NETLINK) |
| 655 | return -EINVAL; |
| 656 | |
| 657 | /* Only superuser is allowed to listen multicasts */ |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 658 | if (nladdr->nl_groups) { |
| 659 | if (!netlink_capable(sock, NL_NONROOT_RECV)) |
| 660 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 661 | err = netlink_realloc_groups(sk); |
| 662 | if (err) |
| 663 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
| 666 | if (nlk->pid) { |
| 667 | if (nladdr->nl_pid != nlk->pid) |
| 668 | return -EINVAL; |
| 669 | } else { |
| 670 | err = nladdr->nl_pid ? |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 671 | netlink_insert(sk, net, nladdr->nl_pid) : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | netlink_autobind(sock); |
| 673 | if (err) |
| 674 | return err; |
| 675 | } |
| 676 | |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 677 | if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | return 0; |
| 679 | |
| 680 | netlink_table_grab(); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 681 | netlink_update_subscriptions(sk, nlk->subscriptions + |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 682 | hweight32(nladdr->nl_groups) - |
| 683 | hweight32(nlk->groups[0])); |
| 684 | nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 685 | netlink_update_listeners(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | netlink_table_ungrab(); |
| 687 | |
| 688 | return 0; |
| 689 | } |
| 690 | |
| 691 | static int netlink_connect(struct socket *sock, struct sockaddr *addr, |
| 692 | int alen, int flags) |
| 693 | { |
| 694 | int err = 0; |
| 695 | struct sock *sk = sock->sk; |
| 696 | struct netlink_sock *nlk = nlk_sk(sk); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 697 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
Changli Gao | 6503d96 | 2010-03-31 22:58:26 +0000 | [diff] [blame] | 699 | if (alen < sizeof(addr->sa_family)) |
| 700 | return -EINVAL; |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | if (addr->sa_family == AF_UNSPEC) { |
| 703 | sk->sk_state = NETLINK_UNCONNECTED; |
| 704 | nlk->dst_pid = 0; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 705 | nlk->dst_group = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | return 0; |
| 707 | } |
| 708 | if (addr->sa_family != AF_NETLINK) |
| 709 | return -EINVAL; |
| 710 | |
| 711 | /* Only superuser is allowed to send multicasts */ |
| 712 | if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND)) |
| 713 | return -EPERM; |
| 714 | |
| 715 | if (!nlk->pid) |
| 716 | err = netlink_autobind(sock); |
| 717 | |
| 718 | if (err == 0) { |
| 719 | sk->sk_state = NETLINK_CONNECTED; |
| 720 | nlk->dst_pid = nladdr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 721 | nlk->dst_group = ffs(nladdr->nl_groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | return err; |
| 725 | } |
| 726 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 727 | static int netlink_getname(struct socket *sock, struct sockaddr *addr, |
| 728 | int *addr_len, int peer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | { |
| 730 | struct sock *sk = sock->sk; |
| 731 | struct netlink_sock *nlk = nlk_sk(sk); |
Cyrill Gorcunov | 13cfa97 | 2009-11-08 05:51:19 +0000 | [diff] [blame] | 732 | DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | nladdr->nl_family = AF_NETLINK; |
| 735 | nladdr->nl_pad = 0; |
| 736 | *addr_len = sizeof(*nladdr); |
| 737 | |
| 738 | if (peer) { |
| 739 | nladdr->nl_pid = nlk->dst_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 740 | nladdr->nl_groups = netlink_group_mask(nlk->dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } else { |
| 742 | nladdr->nl_pid = nlk->pid; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 743 | nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
| 745 | return 0; |
| 746 | } |
| 747 | |
| 748 | static void netlink_overrun(struct sock *sk) |
| 749 | { |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 750 | struct netlink_sock *nlk = nlk_sk(sk); |
| 751 | |
| 752 | if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) { |
| 753 | if (!test_and_set_bit(0, &nlk_sk(sk)->state)) { |
| 754 | sk->sk_err = ENOBUFS; |
| 755 | sk->sk_error_report(sk); |
| 756 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 758 | atomic_inc(&sk->sk_drops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid) |
| 762 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | struct sock *sock; |
| 764 | struct netlink_sock *nlk; |
| 765 | |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 766 | sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | if (!sock) |
| 768 | return ERR_PTR(-ECONNREFUSED); |
| 769 | |
| 770 | /* Don't bother queuing skb if kernel socket has no input function */ |
| 771 | nlk = nlk_sk(sock); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 772 | if (sock->sk_state == NETLINK_CONNECTED && |
| 773 | nlk->dst_pid != nlk_sk(ssk)->pid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | sock_put(sock); |
| 775 | return ERR_PTR(-ECONNREFUSED); |
| 776 | } |
| 777 | return sock; |
| 778 | } |
| 779 | |
| 780 | struct sock *netlink_getsockbyfilp(struct file *filp) |
| 781 | { |
Josef Sipek | 6db5fc5 | 2006-12-08 02:37:25 -0800 | [diff] [blame] | 782 | struct inode *inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | struct sock *sock; |
| 784 | |
| 785 | if (!S_ISSOCK(inode->i_mode)) |
| 786 | return ERR_PTR(-ENOTSOCK); |
| 787 | |
| 788 | sock = SOCKET_I(inode)->sk; |
| 789 | if (sock->sk_family != AF_NETLINK) |
| 790 | return ERR_PTR(-EINVAL); |
| 791 | |
| 792 | sock_hold(sock); |
| 793 | return sock; |
| 794 | } |
| 795 | |
| 796 | /* |
| 797 | * Attach a skb to a netlink socket. |
| 798 | * The caller must hold a reference to the destination socket. On error, the |
| 799 | * reference is dropped. The skb is not send to the destination, just all |
| 800 | * all error checks are performed and memory in the queue is reserved. |
| 801 | * Return values: |
| 802 | * < 0: error. skb freed, reference to sock dropped. |
| 803 | * 0: continue |
| 804 | * 1: repeat lookup - reference dropped while waiting for socket memory. |
| 805 | */ |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 806 | int netlink_attachskb(struct sock *sk, struct sk_buff *skb, |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 807 | long *timeo, struct sock *ssk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
| 809 | struct netlink_sock *nlk; |
| 810 | |
| 811 | nlk = nlk_sk(sk); |
| 812 | |
| 813 | if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
| 814 | test_bit(0, &nlk->state)) { |
| 815 | DECLARE_WAITQUEUE(wait, current); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 816 | if (!*timeo) { |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 817 | if (!ssk || netlink_is_kernel(ssk)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | netlink_overrun(sk); |
| 819 | sock_put(sk); |
| 820 | kfree_skb(skb); |
| 821 | return -EAGAIN; |
| 822 | } |
| 823 | |
| 824 | __set_current_state(TASK_INTERRUPTIBLE); |
| 825 | add_wait_queue(&nlk->wait, &wait); |
| 826 | |
| 827 | if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
| 828 | test_bit(0, &nlk->state)) && |
| 829 | !sock_flag(sk, SOCK_DEAD)) |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 830 | *timeo = schedule_timeout(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
| 832 | __set_current_state(TASK_RUNNING); |
| 833 | remove_wait_queue(&nlk->wait, &wait); |
| 834 | sock_put(sk); |
| 835 | |
| 836 | if (signal_pending(current)) { |
| 837 | kfree_skb(skb); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 838 | return sock_intr_errno(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | } |
| 840 | return 1; |
| 841 | } |
| 842 | skb_set_owner_r(skb, sk); |
| 843 | return 0; |
| 844 | } |
| 845 | |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 846 | static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | int len = skb->len; |
| 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | skb_queue_tail(&sk->sk_receive_queue, skb); |
| 851 | sk->sk_data_ready(sk, len); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 852 | return len; |
| 853 | } |
| 854 | |
| 855 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
| 856 | { |
| 857 | int len = __netlink_sendskb(sk, skb); |
| 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | sock_put(sk); |
| 860 | return len; |
| 861 | } |
| 862 | |
| 863 | void netlink_detachskb(struct sock *sk, struct sk_buff *skb) |
| 864 | { |
| 865 | kfree_skb(skb); |
| 866 | sock_put(sk); |
| 867 | } |
| 868 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 869 | static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | { |
| 871 | int delta; |
| 872 | |
| 873 | skb_orphan(skb); |
| 874 | |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 875 | delta = skb->end - skb->tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | if (delta * 2 < skb->truesize) |
| 877 | return skb; |
| 878 | |
| 879 | if (skb_shared(skb)) { |
| 880 | struct sk_buff *nskb = skb_clone(skb, allocation); |
| 881 | if (!nskb) |
| 882 | return skb; |
| 883 | kfree_skb(skb); |
| 884 | skb = nskb; |
| 885 | } |
| 886 | |
| 887 | if (!pskb_expand_head(skb, 0, -delta, allocation)) |
| 888 | skb->truesize -= delta; |
| 889 | |
| 890 | return skb; |
| 891 | } |
| 892 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 893 | static void netlink_rcv_wake(struct sock *sk) |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 894 | { |
| 895 | struct netlink_sock *nlk = nlk_sk(sk); |
| 896 | |
| 897 | if (skb_queue_empty(&sk->sk_receive_queue)) |
| 898 | clear_bit(0, &nlk->state); |
| 899 | if (!test_bit(0, &nlk->state)) |
| 900 | wake_up_interruptible(&nlk->wait); |
| 901 | } |
| 902 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 903 | static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb) |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 904 | { |
| 905 | int ret; |
| 906 | struct netlink_sock *nlk = nlk_sk(sk); |
| 907 | |
| 908 | ret = -ECONNREFUSED; |
| 909 | if (nlk->netlink_rcv != NULL) { |
| 910 | ret = skb->len; |
| 911 | skb_set_owner_r(skb, sk); |
| 912 | nlk->netlink_rcv(skb); |
| 913 | } |
| 914 | kfree_skb(skb); |
| 915 | sock_put(sk); |
| 916 | return ret; |
| 917 | } |
| 918 | |
| 919 | int netlink_unicast(struct sock *ssk, struct sk_buff *skb, |
| 920 | u32 pid, int nonblock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { |
| 922 | struct sock *sk; |
| 923 | int err; |
| 924 | long timeo; |
| 925 | |
| 926 | skb = netlink_trim(skb, gfp_any()); |
| 927 | |
| 928 | timeo = sock_sndtimeo(ssk, nonblock); |
| 929 | retry: |
| 930 | sk = netlink_getsockbypid(ssk, pid); |
| 931 | if (IS_ERR(sk)) { |
| 932 | kfree_skb(skb); |
| 933 | return PTR_ERR(sk); |
| 934 | } |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 935 | if (netlink_is_kernel(sk)) |
| 936 | return netlink_unicast_kernel(sk, skb); |
| 937 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 938 | if (sk_filter(sk, skb)) { |
Wang Chen | 8487460 | 2008-07-01 19:55:09 -0700 | [diff] [blame] | 939 | err = skb->len; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 940 | kfree_skb(skb); |
| 941 | sock_put(sk); |
| 942 | return err; |
| 943 | } |
| 944 | |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 945 | err = netlink_attachskb(sk, skb, &timeo, ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | if (err == 1) |
| 947 | goto retry; |
| 948 | if (err) |
| 949 | return err; |
| 950 | |
Denis V. Lunev | 7ee015e | 2007-10-10 21:14:03 -0700 | [diff] [blame] | 951 | return netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 953 | EXPORT_SYMBOL(netlink_unicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 955 | int netlink_has_listeners(struct sock *sk, unsigned int group) |
| 956 | { |
| 957 | int res = 0; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 958 | struct listeners *listeners; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 959 | |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 960 | BUG_ON(!netlink_is_kernel(sk)); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 961 | |
| 962 | rcu_read_lock(); |
| 963 | listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners); |
| 964 | |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 965 | if (listeners && group - 1 < nl_table[sk->sk_protocol].groups) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 966 | res = test_bit(group - 1, listeners->masks); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 967 | |
| 968 | rcu_read_unlock(); |
| 969 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 970 | return res; |
| 971 | } |
| 972 | EXPORT_SYMBOL_GPL(netlink_has_listeners); |
| 973 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 974 | static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | { |
| 976 | struct netlink_sock *nlk = nlk_sk(sk); |
| 977 | |
| 978 | if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf && |
| 979 | !test_bit(0, &nlk->state)) { |
| 980 | skb_set_owner_r(skb, sk); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 981 | __netlink_sendskb(sk, skb); |
stephen hemminger | 2c645800 | 2011-12-22 08:52:03 +0000 | [diff] [blame] | 982 | return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | } |
| 984 | return -1; |
| 985 | } |
| 986 | |
| 987 | struct netlink_broadcast_data { |
| 988 | struct sock *exclude_sk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 989 | struct net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | u32 pid; |
| 991 | u32 group; |
| 992 | int failure; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 993 | int delivery_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | int congested; |
| 995 | int delivered; |
Al Viro | 7d877f3 | 2005-10-21 03:20:43 -0400 | [diff] [blame] | 996 | gfp_t allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | struct sk_buff *skb, *skb2; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 998 | int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data); |
| 999 | void *tx_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | }; |
| 1001 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1002 | static int do_one_broadcast(struct sock *sk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | struct netlink_broadcast_data *p) |
| 1004 | { |
| 1005 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1006 | int val; |
| 1007 | |
| 1008 | if (p->exclude_sk == sk) |
| 1009 | goto out; |
| 1010 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1011 | if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups || |
| 1012 | !test_bit(p->group - 1, nlk->groups)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | goto out; |
| 1014 | |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 1015 | if (!net_eq(sock_net(sk), p->net)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1016 | goto out; |
| 1017 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | if (p->failure) { |
| 1019 | netlink_overrun(sk); |
| 1020 | goto out; |
| 1021 | } |
| 1022 | |
| 1023 | sock_hold(sk); |
| 1024 | if (p->skb2 == NULL) { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1025 | if (skb_shared(p->skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | p->skb2 = skb_clone(p->skb, p->allocation); |
| 1027 | } else { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1028 | p->skb2 = skb_get(p->skb); |
| 1029 | /* |
| 1030 | * skb ownership may have been set when |
| 1031 | * delivered to a previous socket. |
| 1032 | */ |
| 1033 | skb_orphan(p->skb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | if (p->skb2 == NULL) { |
| 1037 | netlink_overrun(sk); |
| 1038 | /* Clone failed. Notify ALL listeners. */ |
| 1039 | p->failure = 1; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1040 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1041 | p->delivery_failure = 1; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1042 | } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) { |
| 1043 | kfree_skb(p->skb2); |
| 1044 | p->skb2 = NULL; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1045 | } else if (sk_filter(sk, p->skb2)) { |
| 1046 | kfree_skb(p->skb2); |
| 1047 | p->skb2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) { |
| 1049 | netlink_overrun(sk); |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1050 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1051 | p->delivery_failure = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | } else { |
| 1053 | p->congested |= val; |
| 1054 | p->delivered = 1; |
| 1055 | p->skb2 = NULL; |
| 1056 | } |
| 1057 | sock_put(sk); |
| 1058 | |
| 1059 | out: |
| 1060 | return 0; |
| 1061 | } |
| 1062 | |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1063 | int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid, |
| 1064 | u32 group, gfp_t allocation, |
| 1065 | int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), |
| 1066 | void *filter_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1068 | struct net *net = sock_net(ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | struct netlink_broadcast_data info; |
| 1070 | struct hlist_node *node; |
| 1071 | struct sock *sk; |
| 1072 | |
| 1073 | skb = netlink_trim(skb, allocation); |
| 1074 | |
| 1075 | info.exclude_sk = ssk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1076 | info.net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | info.pid = pid; |
| 1078 | info.group = group; |
| 1079 | info.failure = 0; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1080 | info.delivery_failure = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | info.congested = 0; |
| 1082 | info.delivered = 0; |
| 1083 | info.allocation = allocation; |
| 1084 | info.skb = skb; |
| 1085 | info.skb2 = NULL; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1086 | info.tx_filter = filter; |
| 1087 | info.tx_data = filter_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
| 1089 | /* While we sleep in clone, do not allow to change socket list */ |
| 1090 | |
| 1091 | netlink_lock_table(); |
| 1092 | |
| 1093 | sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list) |
| 1094 | do_one_broadcast(sk, &info); |
| 1095 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1096 | consume_skb(skb); |
Tommy S. Christensen | aa1c6a6 | 2005-05-19 13:07:32 -0700 | [diff] [blame] | 1097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | netlink_unlock_table(); |
| 1099 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1100 | if (info.delivery_failure) { |
| 1101 | kfree_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1102 | return -ENOBUFS; |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1103 | } else |
| 1104 | consume_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | if (info.delivered) { |
| 1107 | if (info.congested && (allocation & __GFP_WAIT)) |
| 1108 | yield(); |
| 1109 | return 0; |
| 1110 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | return -ESRCH; |
| 1112 | } |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1113 | EXPORT_SYMBOL(netlink_broadcast_filtered); |
| 1114 | |
| 1115 | int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid, |
| 1116 | u32 group, gfp_t allocation) |
| 1117 | { |
| 1118 | return netlink_broadcast_filtered(ssk, skb, pid, group, allocation, |
| 1119 | NULL, NULL); |
| 1120 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1121 | EXPORT_SYMBOL(netlink_broadcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
| 1123 | struct netlink_set_err_data { |
| 1124 | struct sock *exclude_sk; |
| 1125 | u32 pid; |
| 1126 | u32 group; |
| 1127 | int code; |
| 1128 | }; |
| 1129 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1130 | static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | { |
| 1132 | struct netlink_sock *nlk = nlk_sk(sk); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1133 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
| 1135 | if (sk == p->exclude_sk) |
| 1136 | goto out; |
| 1137 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1138 | if (!net_eq(sock_net(sk), sock_net(p->exclude_sk))) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1139 | goto out; |
| 1140 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1141 | if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups || |
| 1142 | !test_bit(p->group - 1, nlk->groups)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | goto out; |
| 1144 | |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1145 | if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) { |
| 1146 | ret = 1; |
| 1147 | goto out; |
| 1148 | } |
| 1149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | sk->sk_err = p->code; |
| 1151 | sk->sk_error_report(sk); |
| 1152 | out: |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1153 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | } |
| 1155 | |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1156 | /** |
| 1157 | * netlink_set_err - report error to broadcast listeners |
| 1158 | * @ssk: the kernel netlink socket, as returned by netlink_kernel_create() |
| 1159 | * @pid: the PID of a process that we want to skip (if any) |
| 1160 | * @groups: the broadcast group that will notice the error |
| 1161 | * @code: error code, must be negative (as usual in kernelspace) |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1162 | * |
| 1163 | * This function returns the number of broadcast listeners that have set the |
| 1164 | * NETLINK_RECV_NO_ENOBUFS socket option. |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1165 | */ |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1166 | int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | { |
| 1168 | struct netlink_set_err_data info; |
| 1169 | struct hlist_node *node; |
| 1170 | struct sock *sk; |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1171 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
| 1173 | info.exclude_sk = ssk; |
| 1174 | info.pid = pid; |
| 1175 | info.group = group; |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1176 | /* sk->sk_err wants a positive error value */ |
| 1177 | info.code = -code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | |
| 1179 | read_lock(&nl_table_lock); |
| 1180 | |
| 1181 | sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list) |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1182 | ret += do_one_set_err(sk, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | |
| 1184 | read_unlock(&nl_table_lock); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1185 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | } |
Pablo Neira Ayuso | dd5b6ce | 2009-03-23 13:21:06 +0100 | [diff] [blame] | 1187 | EXPORT_SYMBOL(netlink_set_err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1189 | /* must be called with netlink table grabbed */ |
| 1190 | static void netlink_update_socket_mc(struct netlink_sock *nlk, |
| 1191 | unsigned int group, |
| 1192 | int is_new) |
| 1193 | { |
| 1194 | int old, new = !!is_new, subscriptions; |
| 1195 | |
| 1196 | old = test_bit(group - 1, nlk->groups); |
| 1197 | subscriptions = nlk->subscriptions - old + new; |
| 1198 | if (new) |
| 1199 | __set_bit(group - 1, nlk->groups); |
| 1200 | else |
| 1201 | __clear_bit(group - 1, nlk->groups); |
| 1202 | netlink_update_subscriptions(&nlk->sk, subscriptions); |
| 1203 | netlink_update_listeners(&nlk->sk); |
| 1204 | } |
| 1205 | |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1206 | static int netlink_setsockopt(struct socket *sock, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 1207 | char __user *optval, unsigned int optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1208 | { |
| 1209 | struct sock *sk = sock->sk; |
| 1210 | struct netlink_sock *nlk = nlk_sk(sk); |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 1211 | unsigned int val = 0; |
| 1212 | int err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1213 | |
| 1214 | if (level != SOL_NETLINK) |
| 1215 | return -ENOPROTOOPT; |
| 1216 | |
| 1217 | if (optlen >= sizeof(int) && |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 1218 | get_user(val, (unsigned int __user *)optval)) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1219 | return -EFAULT; |
| 1220 | |
| 1221 | switch (optname) { |
| 1222 | case NETLINK_PKTINFO: |
| 1223 | if (val) |
| 1224 | nlk->flags |= NETLINK_RECV_PKTINFO; |
| 1225 | else |
| 1226 | nlk->flags &= ~NETLINK_RECV_PKTINFO; |
| 1227 | err = 0; |
| 1228 | break; |
| 1229 | case NETLINK_ADD_MEMBERSHIP: |
| 1230 | case NETLINK_DROP_MEMBERSHIP: { |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1231 | if (!netlink_capable(sock, NL_NONROOT_RECV)) |
| 1232 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1233 | err = netlink_realloc_groups(sk); |
| 1234 | if (err) |
| 1235 | return err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1236 | if (!val || val - 1 >= nlk->ngroups) |
| 1237 | return -EINVAL; |
| 1238 | netlink_table_grab(); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1239 | netlink_update_socket_mc(nlk, val, |
| 1240 | optname == NETLINK_ADD_MEMBERSHIP); |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1241 | netlink_table_ungrab(); |
| 1242 | err = 0; |
| 1243 | break; |
| 1244 | } |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1245 | case NETLINK_BROADCAST_ERROR: |
| 1246 | if (val) |
| 1247 | nlk->flags |= NETLINK_BROADCAST_SEND_ERROR; |
| 1248 | else |
| 1249 | nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR; |
| 1250 | err = 0; |
| 1251 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 1252 | case NETLINK_NO_ENOBUFS: |
| 1253 | if (val) { |
| 1254 | nlk->flags |= NETLINK_RECV_NO_ENOBUFS; |
| 1255 | clear_bit(0, &nlk->state); |
| 1256 | wake_up_interruptible(&nlk->wait); |
| 1257 | } else |
| 1258 | nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS; |
| 1259 | err = 0; |
| 1260 | break; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1261 | default: |
| 1262 | err = -ENOPROTOOPT; |
| 1263 | } |
| 1264 | return err; |
| 1265 | } |
| 1266 | |
| 1267 | static int netlink_getsockopt(struct socket *sock, int level, int optname, |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1268 | char __user *optval, int __user *optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1269 | { |
| 1270 | struct sock *sk = sock->sk; |
| 1271 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1272 | int len, val, err; |
| 1273 | |
| 1274 | if (level != SOL_NETLINK) |
| 1275 | return -ENOPROTOOPT; |
| 1276 | |
| 1277 | if (get_user(len, optlen)) |
| 1278 | return -EFAULT; |
| 1279 | if (len < 0) |
| 1280 | return -EINVAL; |
| 1281 | |
| 1282 | switch (optname) { |
| 1283 | case NETLINK_PKTINFO: |
| 1284 | if (len < sizeof(int)) |
| 1285 | return -EINVAL; |
| 1286 | len = sizeof(int); |
| 1287 | val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0; |
Heiko Carstens | a27b58f | 2006-10-30 15:06:12 -0800 | [diff] [blame] | 1288 | if (put_user(len, optlen) || |
| 1289 | put_user(val, optval)) |
| 1290 | return -EFAULT; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1291 | err = 0; |
| 1292 | break; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1293 | case NETLINK_BROADCAST_ERROR: |
| 1294 | if (len < sizeof(int)) |
| 1295 | return -EINVAL; |
| 1296 | len = sizeof(int); |
| 1297 | val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0; |
| 1298 | if (put_user(len, optlen) || |
| 1299 | put_user(val, optval)) |
| 1300 | return -EFAULT; |
| 1301 | err = 0; |
| 1302 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 1303 | case NETLINK_NO_ENOBUFS: |
| 1304 | if (len < sizeof(int)) |
| 1305 | return -EINVAL; |
| 1306 | len = sizeof(int); |
| 1307 | val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0; |
| 1308 | if (put_user(len, optlen) || |
| 1309 | put_user(val, optval)) |
| 1310 | return -EFAULT; |
| 1311 | err = 0; |
| 1312 | break; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 1313 | default: |
| 1314 | err = -ENOPROTOOPT; |
| 1315 | } |
| 1316 | return err; |
| 1317 | } |
| 1318 | |
| 1319 | static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb) |
| 1320 | { |
| 1321 | struct nl_pktinfo info; |
| 1322 | |
| 1323 | info.group = NETLINK_CB(skb).dst_group; |
| 1324 | put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info); |
| 1325 | } |
| 1326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock, |
| 1328 | struct msghdr *msg, size_t len) |
| 1329 | { |
| 1330 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 1331 | struct sock *sk = sock->sk; |
| 1332 | struct netlink_sock *nlk = nlk_sk(sk); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1333 | struct sockaddr_nl *addr = msg->msg_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | u32 dst_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1335 | u32 dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | struct sk_buff *skb; |
| 1337 | int err; |
| 1338 | struct scm_cookie scm; |
| 1339 | |
| 1340 | if (msg->msg_flags&MSG_OOB) |
| 1341 | return -EOPNOTSUPP; |
| 1342 | |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 1343 | if (NULL == siocb->scm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | siocb->scm = &scm; |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 1345 | |
Eric Dumazet | c47ea31 | 2012-08-21 06:21:17 +0000 | [diff] [blame] | 1346 | err = scm_send(sock, msg, siocb->scm, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | if (err < 0) |
| 1348 | return err; |
| 1349 | |
| 1350 | if (msg->msg_namelen) { |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 1351 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | if (addr->nl_family != AF_NETLINK) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 1353 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | dst_pid = addr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1355 | dst_group = ffs(addr->nl_groups); |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 1356 | err = -EPERM; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1357 | if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND)) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 1358 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | } else { |
| 1360 | dst_pid = nlk->dst_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1361 | dst_group = nlk->dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | if (!nlk->pid) { |
| 1365 | err = netlink_autobind(sock); |
| 1366 | if (err) |
| 1367 | goto out; |
| 1368 | } |
| 1369 | |
| 1370 | err = -EMSGSIZE; |
| 1371 | if (len > sk->sk_sndbuf - 32) |
| 1372 | goto out; |
| 1373 | err = -ENOBUFS; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 1374 | skb = alloc_skb(len, GFP_KERNEL); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1375 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | goto out; |
| 1377 | |
| 1378 | NETLINK_CB(skb).pid = nlk->pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1379 | NETLINK_CB(skb).dst_group = dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred)); |
| 1381 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | err = -EFAULT; |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1383 | if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | kfree_skb(skb); |
| 1385 | goto out; |
| 1386 | } |
| 1387 | |
| 1388 | err = security_netlink_send(sk, skb); |
| 1389 | if (err) { |
| 1390 | kfree_skb(skb); |
| 1391 | goto out; |
| 1392 | } |
| 1393 | |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1394 | if (dst_group) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | atomic_inc(&skb->users); |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1396 | netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | } |
| 1398 | err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT); |
| 1399 | |
| 1400 | out: |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 1401 | scm_destroy(siocb->scm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | return err; |
| 1403 | } |
| 1404 | |
| 1405 | static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock, |
| 1406 | struct msghdr *msg, size_t len, |
| 1407 | int flags) |
| 1408 | { |
| 1409 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 1410 | struct scm_cookie scm; |
| 1411 | struct sock *sk = sock->sk; |
| 1412 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1413 | int noblock = flags&MSG_DONTWAIT; |
| 1414 | size_t copied; |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1415 | struct sk_buff *skb, *data_skb; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 1416 | int err, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | |
| 1418 | if (flags&MSG_OOB) |
| 1419 | return -EOPNOTSUPP; |
| 1420 | |
| 1421 | copied = 0; |
| 1422 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1423 | skb = skb_recv_datagram(sk, flags, noblock, &err); |
| 1424 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | goto out; |
| 1426 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1427 | data_skb = skb; |
| 1428 | |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 1429 | #ifdef CONFIG_COMPAT_NETLINK_MESSAGES |
| 1430 | if (unlikely(skb_shinfo(skb)->frag_list)) { |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 1431 | /* |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1432 | * If this skb has a frag_list, then here that means that we |
| 1433 | * will have to use the frag_list skb's data for compat tasks |
| 1434 | * and the regular skb's data for normal (non-compat) tasks. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 1435 | * |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1436 | * If we need to send the compat skb, assign it to the |
| 1437 | * 'data_skb' variable so that it will be used below for data |
| 1438 | * copying. We keep 'skb' for everything else, including |
| 1439 | * freeing both later. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 1440 | */ |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1441 | if (flags & MSG_CMSG_COMPAT) |
| 1442 | data_skb = skb_shinfo(skb)->frag_list; |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 1443 | } |
| 1444 | #endif |
| 1445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | msg->msg_namelen = 0; |
| 1447 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1448 | copied = data_skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | if (len < copied) { |
| 1450 | msg->msg_flags |= MSG_TRUNC; |
| 1451 | copied = len; |
| 1452 | } |
| 1453 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1454 | skb_reset_transport_header(data_skb); |
| 1455 | err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | |
| 1457 | if (msg->msg_name) { |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1458 | struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | addr->nl_family = AF_NETLINK; |
| 1460 | addr->nl_pad = 0; |
| 1461 | addr->nl_pid = NETLINK_CB(skb).pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1462 | addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | msg->msg_namelen = sizeof(*addr); |
| 1464 | } |
| 1465 | |
Patrick McHardy | cc9a06c | 2006-03-12 20:34:27 -0800 | [diff] [blame] | 1466 | if (nlk->flags & NETLINK_RECV_PKTINFO) |
| 1467 | netlink_cmsg_recv_pktinfo(msg, skb); |
| 1468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | if (NULL == siocb->scm) { |
| 1470 | memset(&scm, 0, sizeof(scm)); |
| 1471 | siocb->scm = &scm; |
| 1472 | } |
| 1473 | siocb->scm->creds = *NETLINK_CREDS(skb); |
Patrick McHardy | 188ccb5 | 2007-05-03 03:27:01 -0700 | [diff] [blame] | 1474 | if (flags & MSG_TRUNC) |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 1475 | copied = data_skb->len; |
David S. Miller | daa3766 | 2010-08-15 23:21:50 -0700 | [diff] [blame] | 1476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | skb_free_datagram(sk, skb); |
| 1478 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 1479 | if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) { |
| 1480 | ret = netlink_dump(sk); |
| 1481 | if (ret) { |
| 1482 | sk->sk_err = ret; |
| 1483 | sk->sk_error_report(sk); |
| 1484 | } |
| 1485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | |
| 1487 | scm_recv(sock, msg, siocb->scm, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | out: |
| 1489 | netlink_rcv_wake(sk); |
| 1490 | return err ? : copied; |
| 1491 | } |
| 1492 | |
| 1493 | static void netlink_data_ready(struct sock *sk, int len) |
| 1494 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1495 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | /* |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1499 | * We export these functions to other modules. They provide a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | * complete set of kernel non-blocking support for message |
| 1501 | * queueing. |
| 1502 | */ |
| 1503 | |
| 1504 | struct sock * |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1505 | netlink_kernel_create(struct net *net, int unit, unsigned int groups, |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1506 | void (*input)(struct sk_buff *skb), |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1507 | struct mutex *cb_mutex, struct module *module) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | { |
| 1509 | struct socket *sock; |
| 1510 | struct sock *sk; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1511 | struct netlink_sock *nlk; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1512 | struct listeners *listeners = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 1514 | BUG_ON(!nl_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1516 | if (unit < 0 || unit >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | return NULL; |
| 1518 | |
| 1519 | if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock)) |
| 1520 | return NULL; |
| 1521 | |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 1522 | /* |
| 1523 | * We have to just have a reference on the net from sk, but don't |
| 1524 | * get_net it. Besides, we cannot get and then put the net here. |
| 1525 | * So we create one inside init_net and the move it to net. |
| 1526 | */ |
| 1527 | |
| 1528 | if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0) |
| 1529 | goto out_sock_release_nosk; |
| 1530 | |
| 1531 | sk = sock->sk; |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 1532 | sk_change_net(sk, net); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1533 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1534 | if (groups < 32) |
| 1535 | groups = 32; |
| 1536 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1537 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1538 | if (!listeners) |
| 1539 | goto out_sock_release; |
| 1540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | sk->sk_data_ready = netlink_data_ready; |
| 1542 | if (input) |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1543 | nlk_sk(sk)->netlink_rcv = input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1545 | if (netlink_insert(sk, net, 0)) |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1546 | goto out_sock_release; |
| 1547 | |
| 1548 | nlk = nlk_sk(sk); |
| 1549 | nlk->flags |= NETLINK_KERNEL_SOCKET; |
| 1550 | |
| 1551 | netlink_table_grab(); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1552 | if (!nl_table[unit].registered) { |
| 1553 | nl_table[unit].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1554 | rcu_assign_pointer(nl_table[unit].listeners, listeners); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1555 | nl_table[unit].cb_mutex = cb_mutex; |
| 1556 | nl_table[unit].module = module; |
| 1557 | nl_table[unit].registered = 1; |
Jesper Juhl | f937f1f46 | 2007-10-15 01:39:12 -0700 | [diff] [blame] | 1558 | } else { |
| 1559 | kfree(listeners); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1560 | nl_table[unit].registered++; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1561 | } |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1562 | netlink_table_ungrab(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1563 | return sk; |
| 1564 | |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1565 | out_sock_release: |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1566 | kfree(listeners); |
Denis V. Lunev | 9dfbec1 | 2008-02-29 11:17:56 -0800 | [diff] [blame] | 1567 | netlink_kernel_release(sk); |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 1568 | return NULL; |
| 1569 | |
| 1570 | out_sock_release_nosk: |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1571 | sock_release(sock); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1572 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1574 | EXPORT_SYMBOL(netlink_kernel_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 1576 | |
| 1577 | void |
| 1578 | netlink_kernel_release(struct sock *sk) |
| 1579 | { |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 1580 | sk_release_kernel(sk); |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 1581 | } |
| 1582 | EXPORT_SYMBOL(netlink_kernel_release); |
| 1583 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 1584 | int __netlink_change_ngroups(struct sock *sk, unsigned int groups) |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1585 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1586 | struct listeners *new, *old; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1587 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1588 | |
| 1589 | if (groups < 32) |
| 1590 | groups = 32; |
| 1591 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1592 | if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1593 | new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC); |
| 1594 | if (!new) |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 1595 | return -ENOMEM; |
Eric Dumazet | 27e6e2b | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1596 | old = nl_deref_protected(tbl->listeners); |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1597 | memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups)); |
| 1598 | rcu_assign_pointer(tbl->listeners, new); |
| 1599 | |
Lai Jiangshan | 37b6b93 | 2011-03-15 18:01:42 +0800 | [diff] [blame] | 1600 | kfree_rcu(old, rcu); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1601 | } |
| 1602 | tbl->groups = groups; |
| 1603 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 1604 | return 0; |
| 1605 | } |
| 1606 | |
| 1607 | /** |
| 1608 | * netlink_change_ngroups - change number of multicast groups |
| 1609 | * |
| 1610 | * This changes the number of multicast groups that are available |
| 1611 | * on a certain netlink family. Note that it is not possible to |
| 1612 | * change the number of groups to below 32. Also note that it does |
| 1613 | * not implicitly call netlink_clear_multicast_users() when the |
| 1614 | * number of groups is reduced. |
| 1615 | * |
| 1616 | * @sk: The kernel netlink socket, as returned by netlink_kernel_create(). |
| 1617 | * @groups: The new number of groups. |
| 1618 | */ |
| 1619 | int netlink_change_ngroups(struct sock *sk, unsigned int groups) |
| 1620 | { |
| 1621 | int err; |
| 1622 | |
| 1623 | netlink_table_grab(); |
| 1624 | err = __netlink_change_ngroups(sk, groups); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1625 | netlink_table_ungrab(); |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 1626 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1627 | return err; |
| 1628 | } |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1629 | |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 1630 | void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group) |
| 1631 | { |
| 1632 | struct sock *sk; |
| 1633 | struct hlist_node *node; |
| 1634 | struct netlink_table *tbl = &nl_table[ksk->sk_protocol]; |
| 1635 | |
| 1636 | sk_for_each_bound(sk, node, &tbl->mc_list) |
| 1637 | netlink_update_socket_mc(nlk_sk(sk), group, 0); |
| 1638 | } |
| 1639 | |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1640 | /** |
| 1641 | * netlink_clear_multicast_users - kick off multicast listeners |
| 1642 | * |
| 1643 | * This function removes all listeners from the given group. |
| 1644 | * @ksk: The kernel netlink socket, as returned by |
| 1645 | * netlink_kernel_create(). |
| 1646 | * @group: The multicast group to clear. |
| 1647 | */ |
| 1648 | void netlink_clear_multicast_users(struct sock *ksk, unsigned int group) |
| 1649 | { |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1650 | netlink_table_grab(); |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 1651 | __netlink_clear_multicast_users(ksk, group); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1652 | netlink_table_ungrab(); |
| 1653 | } |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 1654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | void netlink_set_nonroot(int protocol, unsigned int flags) |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1656 | { |
| 1657 | if ((unsigned int)protocol < MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | nl_table[protocol].nl_nonroot = flags; |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1659 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1660 | EXPORT_SYMBOL(netlink_set_nonroot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
| 1662 | static void netlink_destroy_callback(struct netlink_callback *cb) |
| 1663 | { |
Wei Yongjun | 91744f6 | 2009-02-25 00:34:41 +0000 | [diff] [blame] | 1664 | kfree_skb(cb->skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | kfree(cb); |
| 1666 | } |
| 1667 | |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 1668 | struct nlmsghdr * |
| 1669 | __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags) |
| 1670 | { |
| 1671 | struct nlmsghdr *nlh; |
| 1672 | int size = NLMSG_LENGTH(len); |
| 1673 | |
| 1674 | nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size)); |
| 1675 | nlh->nlmsg_type = type; |
| 1676 | nlh->nlmsg_len = size; |
| 1677 | nlh->nlmsg_flags = flags; |
| 1678 | nlh->nlmsg_pid = pid; |
| 1679 | nlh->nlmsg_seq = seq; |
| 1680 | if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0) |
| 1681 | memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size); |
| 1682 | return nlh; |
| 1683 | } |
| 1684 | EXPORT_SYMBOL(__nlmsg_put); |
| 1685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | /* |
| 1687 | * It looks a bit ugly. |
| 1688 | * It would be better to create kernel thread. |
| 1689 | */ |
| 1690 | |
| 1691 | static int netlink_dump(struct sock *sk) |
| 1692 | { |
| 1693 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1694 | struct netlink_callback *cb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1695 | struct sk_buff *skb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | struct nlmsghdr *nlh; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1697 | int len, err = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1698 | int alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1700 | mutex_lock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | |
| 1702 | cb = nlk->cb; |
| 1703 | if (cb == NULL) { |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1704 | err = -EINVAL; |
| 1705 | goto errout_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | } |
| 1707 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1708 | alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE); |
| 1709 | |
| 1710 | skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL); |
| 1711 | if (!skb) |
Dan Carpenter | c63d6ea | 2011-06-15 03:11:42 +0000 | [diff] [blame] | 1712 | goto errout_skb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | len = cb->dump(skb, cb); |
| 1715 | |
| 1716 | if (len > 0) { |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1717 | mutex_unlock(nlk->cb_mutex); |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1718 | |
| 1719 | if (sk_filter(sk, skb)) |
| 1720 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1721 | else |
| 1722 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | return 0; |
| 1724 | } |
| 1725 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1726 | nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI); |
| 1727 | if (!nlh) |
| 1728 | goto errout_skb; |
| 1729 | |
Johannes Berg | 670dc28 | 2011-06-20 13:40:46 +0200 | [diff] [blame] | 1730 | nl_dump_check_consistent(cb, nlh); |
| 1731 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1732 | memcpy(nlmsg_data(nlh), &len, sizeof(len)); |
| 1733 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1734 | if (sk_filter(sk, skb)) |
| 1735 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1736 | else |
| 1737 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | |
Thomas Graf | a8f74b2 | 2005-11-10 02:25:52 +0100 | [diff] [blame] | 1739 | if (cb->done) |
| 1740 | cb->done(cb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | nlk->cb = NULL; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1742 | mutex_unlock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | |
| 1744 | netlink_destroy_callback(cb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | return 0; |
Thomas Graf | 1797754 | 2005-06-18 22:53:48 -0700 | [diff] [blame] | 1746 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1747 | errout_skb: |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1748 | mutex_unlock(nlk->cb_mutex); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1749 | kfree_skb(skb); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1750 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | } |
| 1752 | |
| 1753 | int netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 1754 | const struct nlmsghdr *nlh, |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 1755 | struct netlink_dump_control *control) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | { |
| 1757 | struct netlink_callback *cb; |
| 1758 | struct sock *sk; |
| 1759 | struct netlink_sock *nlk; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 1760 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1762 | cb = kzalloc(sizeof(*cb), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | if (cb == NULL) |
| 1764 | return -ENOBUFS; |
| 1765 | |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 1766 | cb->dump = control->dump; |
| 1767 | cb->done = control->done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | cb->nlh = nlh; |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 1769 | cb->data = control->data; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 1770 | cb->min_dump_alloc = control->min_dump_alloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | atomic_inc(&skb->users); |
| 1772 | cb->skb = skb; |
| 1773 | |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1774 | sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | if (sk == NULL) { |
| 1776 | netlink_destroy_callback(cb); |
| 1777 | return -ECONNREFUSED; |
| 1778 | } |
| 1779 | nlk = nlk_sk(sk); |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 1780 | /* A dump is in progress... */ |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1781 | mutex_lock(nlk->cb_mutex); |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 1782 | if (nlk->cb) { |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1783 | mutex_unlock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | netlink_destroy_callback(cb); |
| 1785 | sock_put(sk); |
| 1786 | return -EBUSY; |
| 1787 | } |
| 1788 | nlk->cb = cb; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1789 | mutex_unlock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 1791 | ret = netlink_dump(sk); |
| 1792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | sock_put(sk); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1794 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 1795 | if (ret) |
| 1796 | return ret; |
| 1797 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1798 | /* We successfully started a dump, by returning -EINTR we |
| 1799 | * signal not to send ACK even if it was requested. |
| 1800 | */ |
| 1801 | return -EINTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1803 | EXPORT_SYMBOL(netlink_dump_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | |
| 1805 | void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err) |
| 1806 | { |
| 1807 | struct sk_buff *skb; |
| 1808 | struct nlmsghdr *rep; |
| 1809 | struct nlmsgerr *errmsg; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 1810 | size_t payload = sizeof(*errmsg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 1812 | /* error messages get the original request appened */ |
| 1813 | if (err) |
| 1814 | payload += nlmsg_len(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 1816 | skb = nlmsg_new(payload, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | if (!skb) { |
| 1818 | struct sock *sk; |
| 1819 | |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1820 | sk = netlink_lookup(sock_net(in_skb->sk), |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1821 | in_skb->sk->sk_protocol, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | NETLINK_CB(in_skb).pid); |
| 1823 | if (sk) { |
| 1824 | sk->sk_err = ENOBUFS; |
| 1825 | sk->sk_error_report(sk); |
| 1826 | sock_put(sk); |
| 1827 | } |
| 1828 | return; |
| 1829 | } |
| 1830 | |
| 1831 | rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq, |
John Fastabend | 5dba93a | 2009-09-25 13:11:44 +0000 | [diff] [blame] | 1832 | NLMSG_ERROR, payload, 0); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1833 | errmsg = nlmsg_data(rep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | errmsg->error = err; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 1835 | memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT); |
| 1837 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1838 | EXPORT_SYMBOL(netlink_ack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1840 | int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *, |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 1841 | struct nlmsghdr *)) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1842 | { |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1843 | struct nlmsghdr *nlh; |
| 1844 | int err; |
| 1845 | |
| 1846 | while (skb->len >= nlmsg_total_size(0)) { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1847 | int msglen; |
| 1848 | |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 1849 | nlh = nlmsg_hdr(skb); |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 1850 | err = 0; |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1851 | |
Martin Murray | ad8e4b7 | 2006-01-10 13:02:29 -0800 | [diff] [blame] | 1852 | if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1853 | return 0; |
| 1854 | |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 1855 | /* Only requests are handled by the kernel */ |
| 1856 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1857 | goto ack; |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 1858 | |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 1859 | /* Skip control messages */ |
| 1860 | if (nlh->nlmsg_type < NLMSG_MIN_TYPE) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1861 | goto ack; |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 1862 | |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 1863 | err = cb(skb, nlh); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1864 | if (err == -EINTR) |
| 1865 | goto skip; |
| 1866 | |
| 1867 | ack: |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 1868 | if (nlh->nlmsg_flags & NLM_F_ACK || err) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1869 | netlink_ack(skb, nlh, err); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1870 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 1871 | skip: |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1872 | msglen = NLMSG_ALIGN(nlh->nlmsg_len); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1873 | if (msglen > skb->len) |
| 1874 | msglen = skb->len; |
| 1875 | skb_pull(skb, msglen); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | return 0; |
| 1879 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1880 | EXPORT_SYMBOL(netlink_rcv_skb); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 1881 | |
| 1882 | /** |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 1883 | * nlmsg_notify - send a notification netlink message |
| 1884 | * @sk: netlink socket to use |
| 1885 | * @skb: notification message |
| 1886 | * @pid: destination netlink pid for reports or 0 |
| 1887 | * @group: destination multicast group or 0 |
| 1888 | * @report: 1 to report back, 0 to disable |
| 1889 | * @flags: allocation flags |
| 1890 | */ |
| 1891 | int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid, |
| 1892 | unsigned int group, int report, gfp_t flags) |
| 1893 | { |
| 1894 | int err = 0; |
| 1895 | |
| 1896 | if (group) { |
| 1897 | int exclude_pid = 0; |
| 1898 | |
| 1899 | if (report) { |
| 1900 | atomic_inc(&skb->users); |
| 1901 | exclude_pid = pid; |
| 1902 | } |
| 1903 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 1904 | /* errors reported via destination sk->sk_err, but propagate |
| 1905 | * delivery errors if NETLINK_BROADCAST_ERROR flag is set */ |
| 1906 | err = nlmsg_multicast(sk, skb, exclude_pid, group, flags); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 1907 | } |
| 1908 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 1909 | if (report) { |
| 1910 | int err2; |
| 1911 | |
| 1912 | err2 = nlmsg_unicast(sk, skb, pid); |
| 1913 | if (!err || err == -ESRCH) |
| 1914 | err = err2; |
| 1915 | } |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 1916 | |
| 1917 | return err; |
| 1918 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1919 | EXPORT_SYMBOL(nlmsg_notify); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 1920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | #ifdef CONFIG_PROC_FS |
| 1922 | struct nl_seq_iter { |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 1923 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | int link; |
| 1925 | int hash_idx; |
| 1926 | }; |
| 1927 | |
| 1928 | static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos) |
| 1929 | { |
| 1930 | struct nl_seq_iter *iter = seq->private; |
| 1931 | int i, j; |
| 1932 | struct sock *s; |
| 1933 | struct hlist_node *node; |
| 1934 | loff_t off = 0; |
| 1935 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1936 | for (i = 0; i < MAX_LINKS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | struct nl_pid_hash *hash = &nl_table[i].hash; |
| 1938 | |
| 1939 | for (j = 0; j <= hash->mask; j++) { |
| 1940 | sk_for_each(s, node, &hash->table[j]) { |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 1941 | if (sock_net(s) != seq_file_net(seq)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1942 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | if (off == pos) { |
| 1944 | iter->link = i; |
| 1945 | iter->hash_idx = j; |
| 1946 | return s; |
| 1947 | } |
| 1948 | ++off; |
| 1949 | } |
| 1950 | } |
| 1951 | } |
| 1952 | return NULL; |
| 1953 | } |
| 1954 | |
| 1955 | static void *netlink_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 1956 | __acquires(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | { |
| 1958 | read_lock(&nl_table_lock); |
| 1959 | return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 1960 | } |
| 1961 | |
| 1962 | static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1963 | { |
| 1964 | struct sock *s; |
| 1965 | struct nl_seq_iter *iter; |
| 1966 | int i, j; |
| 1967 | |
| 1968 | ++*pos; |
| 1969 | |
| 1970 | if (v == SEQ_START_TOKEN) |
| 1971 | return netlink_seq_socket_idx(seq, 0); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1972 | |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1973 | iter = seq->private; |
| 1974 | s = v; |
| 1975 | do { |
| 1976 | s = sk_next(s); |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 1977 | } while (s && sock_net(s) != seq_file_net(seq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | if (s) |
| 1979 | return s; |
| 1980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | i = iter->link; |
| 1982 | j = iter->hash_idx + 1; |
| 1983 | |
| 1984 | do { |
| 1985 | struct nl_pid_hash *hash = &nl_table[i].hash; |
| 1986 | |
| 1987 | for (; j <= hash->mask; j++) { |
| 1988 | s = sk_head(&hash->table[j]); |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 1989 | while (s && sock_net(s) != seq_file_net(seq)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1990 | s = sk_next(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | if (s) { |
| 1992 | iter->link = i; |
| 1993 | iter->hash_idx = j; |
| 1994 | return s; |
| 1995 | } |
| 1996 | } |
| 1997 | |
| 1998 | j = 0; |
| 1999 | } while (++i < MAX_LINKS); |
| 2000 | |
| 2001 | return NULL; |
| 2002 | } |
| 2003 | |
| 2004 | static void netlink_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 2005 | __releases(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | { |
| 2007 | read_unlock(&nl_table_lock); |
| 2008 | } |
| 2009 | |
| 2010 | |
| 2011 | static int netlink_seq_show(struct seq_file *seq, void *v) |
| 2012 | { |
| 2013 | if (v == SEQ_START_TOKEN) |
| 2014 | seq_puts(seq, |
| 2015 | "sk Eth Pid Groups " |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 2016 | "Rmem Wmem Dump Locks Drops Inode\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | else { |
| 2018 | struct sock *s = v; |
| 2019 | struct netlink_sock *nlk = nlk_sk(s); |
| 2020 | |
Dan Rosenberg | 71338aa | 2011-05-23 12:17:35 +0000 | [diff] [blame] | 2021 | seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | s, |
| 2023 | s->sk_protocol, |
| 2024 | nlk->pid, |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 2025 | nlk->groups ? (u32)nlk->groups[0] : 0, |
Eric Dumazet | 31e6d36 | 2009-06-17 19:05:41 -0700 | [diff] [blame] | 2026 | sk_rmem_alloc_get(s), |
| 2027 | sk_wmem_alloc_get(s), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | nlk->cb, |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2029 | atomic_read(&s->sk_refcnt), |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 2030 | atomic_read(&s->sk_drops), |
| 2031 | sock_i_ino(s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | ); |
| 2033 | |
| 2034 | } |
| 2035 | return 0; |
| 2036 | } |
| 2037 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 2038 | static const struct seq_operations netlink_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | .start = netlink_seq_start, |
| 2040 | .next = netlink_seq_next, |
| 2041 | .stop = netlink_seq_stop, |
| 2042 | .show = netlink_seq_show, |
| 2043 | }; |
| 2044 | |
| 2045 | |
| 2046 | static int netlink_seq_open(struct inode *inode, struct file *file) |
| 2047 | { |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2048 | return seq_open_net(inode, file, &netlink_seq_ops, |
| 2049 | sizeof(struct nl_seq_iter)); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2050 | } |
| 2051 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 2052 | static const struct file_operations netlink_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | .owner = THIS_MODULE, |
| 2054 | .open = netlink_seq_open, |
| 2055 | .read = seq_read, |
| 2056 | .llseek = seq_lseek, |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2057 | .release = seq_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | }; |
| 2059 | |
| 2060 | #endif |
| 2061 | |
| 2062 | int netlink_register_notifier(struct notifier_block *nb) |
| 2063 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 2064 | return atomic_notifier_chain_register(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2066 | EXPORT_SYMBOL(netlink_register_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | |
| 2068 | int netlink_unregister_notifier(struct notifier_block *nb) |
| 2069 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 2070 | return atomic_notifier_chain_unregister(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2072 | EXPORT_SYMBOL(netlink_unregister_notifier); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2073 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 2074 | static const struct proto_ops netlink_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | .family = PF_NETLINK, |
| 2076 | .owner = THIS_MODULE, |
| 2077 | .release = netlink_release, |
| 2078 | .bind = netlink_bind, |
| 2079 | .connect = netlink_connect, |
| 2080 | .socketpair = sock_no_socketpair, |
| 2081 | .accept = sock_no_accept, |
| 2082 | .getname = netlink_getname, |
| 2083 | .poll = datagram_poll, |
| 2084 | .ioctl = sock_no_ioctl, |
| 2085 | .listen = sock_no_listen, |
| 2086 | .shutdown = sock_no_shutdown, |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2087 | .setsockopt = netlink_setsockopt, |
| 2088 | .getsockopt = netlink_getsockopt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | .sendmsg = netlink_sendmsg, |
| 2090 | .recvmsg = netlink_recvmsg, |
| 2091 | .mmap = sock_no_mmap, |
| 2092 | .sendpage = sock_no_sendpage, |
| 2093 | }; |
| 2094 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 2095 | static const struct net_proto_family netlink_family_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | .family = PF_NETLINK, |
| 2097 | .create = netlink_create, |
| 2098 | .owner = THIS_MODULE, /* for consistency 8) */ |
| 2099 | }; |
| 2100 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 2101 | static int __net_init netlink_net_init(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2102 | { |
| 2103 | #ifdef CONFIG_PROC_FS |
| 2104 | if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops)) |
| 2105 | return -ENOMEM; |
| 2106 | #endif |
| 2107 | return 0; |
| 2108 | } |
| 2109 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 2110 | static void __net_exit netlink_net_exit(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2111 | { |
| 2112 | #ifdef CONFIG_PROC_FS |
| 2113 | proc_net_remove(net, "netlink"); |
| 2114 | #endif |
| 2115 | } |
| 2116 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2117 | static void __init netlink_add_usersock_entry(void) |
| 2118 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2119 | struct listeners *listeners; |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2120 | int groups = 32; |
| 2121 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2122 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2123 | if (!listeners) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2124 | panic("netlink_add_usersock_entry: Cannot allocate listeners\n"); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2125 | |
| 2126 | netlink_table_grab(); |
| 2127 | |
| 2128 | nl_table[NETLINK_USERSOCK].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2129 | rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2130 | nl_table[NETLINK_USERSOCK].module = THIS_MODULE; |
| 2131 | nl_table[NETLINK_USERSOCK].registered = 1; |
| 2132 | |
| 2133 | netlink_table_ungrab(); |
| 2134 | } |
| 2135 | |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 2136 | static struct pernet_operations __net_initdata netlink_net_ops = { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2137 | .init = netlink_net_init, |
| 2138 | .exit = netlink_net_exit, |
| 2139 | }; |
| 2140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | static int __init netlink_proto_init(void) |
| 2142 | { |
| 2143 | struct sk_buff *dummy_skb; |
| 2144 | int i; |
Denis Cheng | 26ff5dd | 2007-09-16 16:36:02 -0700 | [diff] [blame] | 2145 | unsigned long limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | unsigned int order; |
| 2147 | int err = proto_register(&netlink_proto, 0); |
| 2148 | |
| 2149 | if (err != 0) |
| 2150 | goto out; |
| 2151 | |
YOSHIFUJI Hideaki | ef047f5 | 2006-09-01 00:29:06 -0700 | [diff] [blame] | 2152 | BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 2154 | nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 2155 | if (!nl_table) |
| 2156 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 2158 | if (totalram_pages >= (128 * 1024)) |
| 2159 | limit = totalram_pages >> (21 - PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | else |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 2161 | limit = totalram_pages >> (23 - PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | |
Denis Cheng | 26ff5dd | 2007-09-16 16:36:02 -0700 | [diff] [blame] | 2163 | order = get_bitmask_order(limit) - 1 + PAGE_SHIFT; |
| 2164 | limit = (1UL << order) / sizeof(struct hlist_head); |
| 2165 | order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | |
| 2167 | for (i = 0; i < MAX_LINKS; i++) { |
| 2168 | struct nl_pid_hash *hash = &nl_table[i].hash; |
| 2169 | |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 2170 | hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | if (!hash->table) { |
| 2172 | while (i-- > 0) |
| 2173 | nl_pid_hash_free(nl_table[i].hash.table, |
| 2174 | 1 * sizeof(*hash->table)); |
| 2175 | kfree(nl_table); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 2176 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | hash->max_shift = order; |
| 2179 | hash->shift = 0; |
| 2180 | hash->mask = 0; |
| 2181 | hash->rehash_time = jiffies; |
| 2182 | } |
| 2183 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 2184 | netlink_add_usersock_entry(); |
| 2185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | sock_register(&netlink_family_ops); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2187 | register_pernet_subsys(&netlink_net_ops); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2188 | /* The netlink device handler may be needed early. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | rtnetlink_init(); |
| 2190 | out: |
| 2191 | return err; |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 2192 | panic: |
| 2193 | panic("netlink_init: Cannot allocate nl_table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | } |
| 2195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | core_initcall(netlink_proto_init); |