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> |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 6 | * Patrick McHardy <kaber@trash.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith |
| 14 | * added netlink_proto_exit |
| 15 | * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br> |
| 16 | * use nlk_sk, as sk->protinfo is on a diet 8) |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 17 | * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org> |
| 18 | * - inc module use count of module that owns |
| 19 | * the kernel socket in case userspace opens |
| 20 | * socket of same protocol |
| 21 | * - remove all module support, since netlink is |
| 22 | * mandatory if CONFIG_NET=y these days |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 27 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/kernel.h> |
| 29 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/signal.h> |
| 31 | #include <linux/sched.h> |
| 32 | #include <linux/errno.h> |
| 33 | #include <linux/string.h> |
| 34 | #include <linux/stat.h> |
| 35 | #include <linux/socket.h> |
| 36 | #include <linux/un.h> |
| 37 | #include <linux/fcntl.h> |
| 38 | #include <linux/termios.h> |
| 39 | #include <linux/sockios.h> |
| 40 | #include <linux/net.h> |
| 41 | #include <linux/fs.h> |
| 42 | #include <linux/slab.h> |
| 43 | #include <asm/uaccess.h> |
| 44 | #include <linux/skbuff.h> |
| 45 | #include <linux/netdevice.h> |
| 46 | #include <linux/rtnetlink.h> |
| 47 | #include <linux/proc_fs.h> |
| 48 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/notifier.h> |
| 50 | #include <linux/security.h> |
| 51 | #include <linux/jhash.h> |
| 52 | #include <linux/jiffies.h> |
| 53 | #include <linux/random.h> |
| 54 | #include <linux/bitops.h> |
| 55 | #include <linux/mm.h> |
| 56 | #include <linux/types.h> |
Andrew Morton | 54e0f52 | 2005-04-30 07:07:04 +0100 | [diff] [blame] | 57 | #include <linux/audit.h> |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 58 | #include <linux/mutex.h> |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 59 | #include <linux/vmalloc.h> |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 60 | #include <linux/if_arp.h> |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 61 | #include <asm/cacheflush.h> |
Andrew Morton | 54e0f52 | 2005-04-30 07:07:04 +0100 | [diff] [blame] | 62 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 63 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <net/sock.h> |
| 65 | #include <net/scm.h> |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 66 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 68 | #include "af_netlink.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 70 | struct listeners { |
| 71 | struct rcu_head rcu; |
| 72 | unsigned long masks[0]; |
Johannes Berg | 6c04bb1 | 2009-07-10 09:51:32 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 75 | /* state bits */ |
| 76 | #define NETLINK_CONGESTED 0x0 |
| 77 | |
| 78 | /* flags */ |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 79 | #define NETLINK_KERNEL_SOCKET 0x1 |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 80 | #define NETLINK_RECV_PKTINFO 0x2 |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 81 | #define NETLINK_BROADCAST_SEND_ERROR 0x4 |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 82 | #define NETLINK_RECV_NO_ENOBUFS 0x8 |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 83 | |
David S. Miller | 035c4c1 | 2011-12-23 17:33:03 -0500 | [diff] [blame] | 84 | static inline int netlink_is_kernel(struct sock *sk) |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 85 | { |
| 86 | return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET; |
| 87 | } |
| 88 | |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 89 | struct netlink_table *nl_table; |
| 90 | EXPORT_SYMBOL_GPL(nl_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait); |
| 93 | |
| 94 | static int netlink_dump(struct sock *sk); |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 95 | static void netlink_skb_destructor(struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 97 | DEFINE_RWLOCK(nl_table_lock); |
| 98 | EXPORT_SYMBOL_GPL(nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | static atomic_t nl_table_users = ATOMIC_INIT(0); |
| 100 | |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 101 | #define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock)); |
| 102 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 103 | static ATOMIC_NOTIFIER_HEAD(netlink_chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 105 | static DEFINE_SPINLOCK(netlink_tap_lock); |
| 106 | static struct list_head netlink_tap_all __read_mostly; |
| 107 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 108 | static inline u32 netlink_group_mask(u32 group) |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 109 | { |
| 110 | return group ? 1 << (group - 1) : 0; |
| 111 | } |
| 112 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 113 | static inline struct hlist_head *nl_portid_hashfn(struct nl_portid_hash *hash, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 115 | return &hash->table[jhash_1word(portid, hash->rnd) & hash->mask]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 118 | int netlink_add_tap(struct netlink_tap *nt) |
| 119 | { |
| 120 | if (unlikely(nt->dev->type != ARPHRD_NETLINK)) |
| 121 | return -EINVAL; |
| 122 | |
| 123 | spin_lock(&netlink_tap_lock); |
| 124 | list_add_rcu(&nt->list, &netlink_tap_all); |
| 125 | spin_unlock(&netlink_tap_lock); |
| 126 | |
| 127 | if (nt->module) |
| 128 | __module_get(nt->module); |
| 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | EXPORT_SYMBOL_GPL(netlink_add_tap); |
| 133 | |
| 134 | int __netlink_remove_tap(struct netlink_tap *nt) |
| 135 | { |
| 136 | bool found = false; |
| 137 | struct netlink_tap *tmp; |
| 138 | |
| 139 | spin_lock(&netlink_tap_lock); |
| 140 | |
| 141 | list_for_each_entry(tmp, &netlink_tap_all, list) { |
| 142 | if (nt == tmp) { |
| 143 | list_del_rcu(&nt->list); |
| 144 | found = true; |
| 145 | goto out; |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | pr_warn("__netlink_remove_tap: %p not found\n", nt); |
| 150 | out: |
| 151 | spin_unlock(&netlink_tap_lock); |
| 152 | |
| 153 | if (found && nt->module) |
| 154 | module_put(nt->module); |
| 155 | |
| 156 | return found ? 0 : -ENODEV; |
| 157 | } |
| 158 | EXPORT_SYMBOL_GPL(__netlink_remove_tap); |
| 159 | |
| 160 | int netlink_remove_tap(struct netlink_tap *nt) |
| 161 | { |
| 162 | int ret; |
| 163 | |
| 164 | ret = __netlink_remove_tap(nt); |
| 165 | synchronize_net(); |
| 166 | |
| 167 | return ret; |
| 168 | } |
| 169 | EXPORT_SYMBOL_GPL(netlink_remove_tap); |
| 170 | |
| 171 | static int __netlink_deliver_tap_skb(struct sk_buff *skb, |
| 172 | struct net_device *dev) |
| 173 | { |
| 174 | struct sk_buff *nskb; |
| 175 | int ret = -ENOMEM; |
| 176 | |
| 177 | dev_hold(dev); |
| 178 | nskb = skb_clone(skb, GFP_ATOMIC); |
| 179 | if (nskb) { |
| 180 | nskb->dev = dev; |
| 181 | ret = dev_queue_xmit(nskb); |
| 182 | if (unlikely(ret > 0)) |
| 183 | ret = net_xmit_errno(ret); |
| 184 | } |
| 185 | |
| 186 | dev_put(dev); |
| 187 | return ret; |
| 188 | } |
| 189 | |
| 190 | static void __netlink_deliver_tap(struct sk_buff *skb) |
| 191 | { |
| 192 | int ret; |
| 193 | struct netlink_tap *tmp; |
| 194 | |
| 195 | list_for_each_entry_rcu(tmp, &netlink_tap_all, list) { |
| 196 | ret = __netlink_deliver_tap_skb(skb, tmp->dev); |
| 197 | if (unlikely(ret)) |
| 198 | break; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | static void netlink_deliver_tap(struct sk_buff *skb) |
| 203 | { |
| 204 | rcu_read_lock(); |
| 205 | |
| 206 | if (unlikely(!list_empty(&netlink_tap_all))) |
| 207 | __netlink_deliver_tap(skb); |
| 208 | |
| 209 | rcu_read_unlock(); |
| 210 | } |
| 211 | |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 212 | static void netlink_overrun(struct sock *sk) |
| 213 | { |
| 214 | struct netlink_sock *nlk = nlk_sk(sk); |
| 215 | |
| 216 | if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) { |
| 217 | if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) { |
| 218 | sk->sk_err = ENOBUFS; |
| 219 | sk->sk_error_report(sk); |
| 220 | } |
| 221 | } |
| 222 | atomic_inc(&sk->sk_drops); |
| 223 | } |
| 224 | |
| 225 | static void netlink_rcv_wake(struct sock *sk) |
| 226 | { |
| 227 | struct netlink_sock *nlk = nlk_sk(sk); |
| 228 | |
| 229 | if (skb_queue_empty(&sk->sk_receive_queue)) |
| 230 | clear_bit(NETLINK_CONGESTED, &nlk->state); |
| 231 | if (!test_bit(NETLINK_CONGESTED, &nlk->state)) |
| 232 | wake_up_interruptible(&nlk->wait); |
| 233 | } |
| 234 | |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 235 | #ifdef CONFIG_NETLINK_MMAP |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 236 | static bool netlink_skb_is_mmaped(const struct sk_buff *skb) |
| 237 | { |
| 238 | return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED; |
| 239 | } |
| 240 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 241 | static bool netlink_rx_is_mmaped(struct sock *sk) |
| 242 | { |
| 243 | return nlk_sk(sk)->rx_ring.pg_vec != NULL; |
| 244 | } |
| 245 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 246 | static bool netlink_tx_is_mmaped(struct sock *sk) |
| 247 | { |
| 248 | return nlk_sk(sk)->tx_ring.pg_vec != NULL; |
| 249 | } |
| 250 | |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 251 | static __pure struct page *pgvec_to_page(const void *addr) |
| 252 | { |
| 253 | if (is_vmalloc_addr(addr)) |
| 254 | return vmalloc_to_page(addr); |
| 255 | else |
| 256 | return virt_to_page(addr); |
| 257 | } |
| 258 | |
| 259 | static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len) |
| 260 | { |
| 261 | unsigned int i; |
| 262 | |
| 263 | for (i = 0; i < len; i++) { |
| 264 | if (pg_vec[i] != NULL) { |
| 265 | if (is_vmalloc_addr(pg_vec[i])) |
| 266 | vfree(pg_vec[i]); |
| 267 | else |
| 268 | free_pages((unsigned long)pg_vec[i], order); |
| 269 | } |
| 270 | } |
| 271 | kfree(pg_vec); |
| 272 | } |
| 273 | |
| 274 | static void *alloc_one_pg_vec_page(unsigned long order) |
| 275 | { |
| 276 | void *buffer; |
| 277 | gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO | |
| 278 | __GFP_NOWARN | __GFP_NORETRY; |
| 279 | |
| 280 | buffer = (void *)__get_free_pages(gfp_flags, order); |
| 281 | if (buffer != NULL) |
| 282 | return buffer; |
| 283 | |
| 284 | buffer = vzalloc((1 << order) * PAGE_SIZE); |
| 285 | if (buffer != NULL) |
| 286 | return buffer; |
| 287 | |
| 288 | gfp_flags &= ~__GFP_NORETRY; |
| 289 | return (void *)__get_free_pages(gfp_flags, order); |
| 290 | } |
| 291 | |
| 292 | static void **alloc_pg_vec(struct netlink_sock *nlk, |
| 293 | struct nl_mmap_req *req, unsigned int order) |
| 294 | { |
| 295 | unsigned int block_nr = req->nm_block_nr; |
| 296 | unsigned int i; |
Daniel Borkmann | 8a849bb | 2013-08-02 17:32:39 +0200 | [diff] [blame] | 297 | void **pg_vec; |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 298 | |
| 299 | pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL); |
| 300 | if (pg_vec == NULL) |
| 301 | return NULL; |
| 302 | |
| 303 | for (i = 0; i < block_nr; i++) { |
Daniel Borkmann | 8a849bb | 2013-08-02 17:32:39 +0200 | [diff] [blame] | 304 | pg_vec[i] = alloc_one_pg_vec_page(order); |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 305 | if (pg_vec[i] == NULL) |
| 306 | goto err1; |
| 307 | } |
| 308 | |
| 309 | return pg_vec; |
| 310 | err1: |
| 311 | free_pg_vec(pg_vec, order, block_nr); |
| 312 | return NULL; |
| 313 | } |
| 314 | |
| 315 | static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req, |
| 316 | bool closing, bool tx_ring) |
| 317 | { |
| 318 | struct netlink_sock *nlk = nlk_sk(sk); |
| 319 | struct netlink_ring *ring; |
| 320 | struct sk_buff_head *queue; |
| 321 | void **pg_vec = NULL; |
| 322 | unsigned int order = 0; |
| 323 | int err; |
| 324 | |
| 325 | ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring; |
| 326 | queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue; |
| 327 | |
| 328 | if (!closing) { |
| 329 | if (atomic_read(&nlk->mapped)) |
| 330 | return -EBUSY; |
| 331 | if (atomic_read(&ring->pending)) |
| 332 | return -EBUSY; |
| 333 | } |
| 334 | |
| 335 | if (req->nm_block_nr) { |
| 336 | if (ring->pg_vec != NULL) |
| 337 | return -EBUSY; |
| 338 | |
| 339 | if ((int)req->nm_block_size <= 0) |
| 340 | return -EINVAL; |
| 341 | if (!IS_ALIGNED(req->nm_block_size, PAGE_SIZE)) |
| 342 | return -EINVAL; |
| 343 | if (req->nm_frame_size < NL_MMAP_HDRLEN) |
| 344 | return -EINVAL; |
| 345 | if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT)) |
| 346 | return -EINVAL; |
| 347 | |
| 348 | ring->frames_per_block = req->nm_block_size / |
| 349 | req->nm_frame_size; |
| 350 | if (ring->frames_per_block == 0) |
| 351 | return -EINVAL; |
| 352 | if (ring->frames_per_block * req->nm_block_nr != |
| 353 | req->nm_frame_nr) |
| 354 | return -EINVAL; |
| 355 | |
| 356 | order = get_order(req->nm_block_size); |
| 357 | pg_vec = alloc_pg_vec(nlk, req, order); |
| 358 | if (pg_vec == NULL) |
| 359 | return -ENOMEM; |
| 360 | } else { |
| 361 | if (req->nm_frame_nr) |
| 362 | return -EINVAL; |
| 363 | } |
| 364 | |
| 365 | err = -EBUSY; |
| 366 | mutex_lock(&nlk->pg_vec_lock); |
| 367 | if (closing || atomic_read(&nlk->mapped) == 0) { |
| 368 | err = 0; |
| 369 | spin_lock_bh(&queue->lock); |
| 370 | |
| 371 | ring->frame_max = req->nm_frame_nr - 1; |
| 372 | ring->head = 0; |
| 373 | ring->frame_size = req->nm_frame_size; |
| 374 | ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE; |
| 375 | |
| 376 | swap(ring->pg_vec_len, req->nm_block_nr); |
| 377 | swap(ring->pg_vec_order, order); |
| 378 | swap(ring->pg_vec, pg_vec); |
| 379 | |
| 380 | __skb_queue_purge(queue); |
| 381 | spin_unlock_bh(&queue->lock); |
| 382 | |
| 383 | WARN_ON(atomic_read(&nlk->mapped)); |
| 384 | } |
| 385 | mutex_unlock(&nlk->pg_vec_lock); |
| 386 | |
| 387 | if (pg_vec) |
| 388 | free_pg_vec(pg_vec, order, req->nm_block_nr); |
| 389 | return err; |
| 390 | } |
| 391 | |
| 392 | static void netlink_mm_open(struct vm_area_struct *vma) |
| 393 | { |
| 394 | struct file *file = vma->vm_file; |
| 395 | struct socket *sock = file->private_data; |
| 396 | struct sock *sk = sock->sk; |
| 397 | |
| 398 | if (sk) |
| 399 | atomic_inc(&nlk_sk(sk)->mapped); |
| 400 | } |
| 401 | |
| 402 | static void netlink_mm_close(struct vm_area_struct *vma) |
| 403 | { |
| 404 | struct file *file = vma->vm_file; |
| 405 | struct socket *sock = file->private_data; |
| 406 | struct sock *sk = sock->sk; |
| 407 | |
| 408 | if (sk) |
| 409 | atomic_dec(&nlk_sk(sk)->mapped); |
| 410 | } |
| 411 | |
| 412 | static const struct vm_operations_struct netlink_mmap_ops = { |
| 413 | .open = netlink_mm_open, |
| 414 | .close = netlink_mm_close, |
| 415 | }; |
| 416 | |
| 417 | static int netlink_mmap(struct file *file, struct socket *sock, |
| 418 | struct vm_area_struct *vma) |
| 419 | { |
| 420 | struct sock *sk = sock->sk; |
| 421 | struct netlink_sock *nlk = nlk_sk(sk); |
| 422 | struct netlink_ring *ring; |
| 423 | unsigned long start, size, expected; |
| 424 | unsigned int i; |
| 425 | int err = -EINVAL; |
| 426 | |
| 427 | if (vma->vm_pgoff) |
| 428 | return -EINVAL; |
| 429 | |
| 430 | mutex_lock(&nlk->pg_vec_lock); |
| 431 | |
| 432 | expected = 0; |
| 433 | for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) { |
| 434 | if (ring->pg_vec == NULL) |
| 435 | continue; |
| 436 | expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE; |
| 437 | } |
| 438 | |
| 439 | if (expected == 0) |
| 440 | goto out; |
| 441 | |
| 442 | size = vma->vm_end - vma->vm_start; |
| 443 | if (size != expected) |
| 444 | goto out; |
| 445 | |
| 446 | start = vma->vm_start; |
| 447 | for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) { |
| 448 | if (ring->pg_vec == NULL) |
| 449 | continue; |
| 450 | |
| 451 | for (i = 0; i < ring->pg_vec_len; i++) { |
| 452 | struct page *page; |
| 453 | void *kaddr = ring->pg_vec[i]; |
| 454 | unsigned int pg_num; |
| 455 | |
| 456 | for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) { |
| 457 | page = pgvec_to_page(kaddr); |
| 458 | err = vm_insert_page(vma, start, page); |
| 459 | if (err < 0) |
| 460 | goto out; |
| 461 | start += PAGE_SIZE; |
| 462 | kaddr += PAGE_SIZE; |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | atomic_inc(&nlk->mapped); |
| 468 | vma->vm_ops = &netlink_mmap_ops; |
| 469 | err = 0; |
| 470 | out: |
| 471 | mutex_unlock(&nlk->pg_vec_lock); |
Patrick McHardy | 7cdbac7 | 2013-06-11 02:52:47 -0700 | [diff] [blame] | 472 | return err; |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 473 | } |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 474 | |
| 475 | static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr) |
| 476 | { |
| 477 | #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1 |
| 478 | struct page *p_start, *p_end; |
| 479 | |
| 480 | /* First page is flushed through netlink_{get,set}_status */ |
| 481 | p_start = pgvec_to_page(hdr + PAGE_SIZE); |
Stephen Rothwell | 1d5085c | 2013-04-23 17:40:35 +1000 | [diff] [blame] | 482 | p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + hdr->nm_len - 1); |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 483 | while (p_start <= p_end) { |
| 484 | flush_dcache_page(p_start); |
| 485 | p_start++; |
| 486 | } |
| 487 | #endif |
| 488 | } |
| 489 | |
| 490 | static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr) |
| 491 | { |
| 492 | smp_rmb(); |
| 493 | flush_dcache_page(pgvec_to_page(hdr)); |
| 494 | return hdr->nm_status; |
| 495 | } |
| 496 | |
| 497 | static void netlink_set_status(struct nl_mmap_hdr *hdr, |
| 498 | enum nl_mmap_status status) |
| 499 | { |
| 500 | hdr->nm_status = status; |
| 501 | flush_dcache_page(pgvec_to_page(hdr)); |
| 502 | smp_wmb(); |
| 503 | } |
| 504 | |
| 505 | static struct nl_mmap_hdr * |
| 506 | __netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos) |
| 507 | { |
| 508 | unsigned int pg_vec_pos, frame_off; |
| 509 | |
| 510 | pg_vec_pos = pos / ring->frames_per_block; |
| 511 | frame_off = pos % ring->frames_per_block; |
| 512 | |
| 513 | return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size); |
| 514 | } |
| 515 | |
| 516 | static struct nl_mmap_hdr * |
| 517 | netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos, |
| 518 | enum nl_mmap_status status) |
| 519 | { |
| 520 | struct nl_mmap_hdr *hdr; |
| 521 | |
| 522 | hdr = __netlink_lookup_frame(ring, pos); |
| 523 | if (netlink_get_status(hdr) != status) |
| 524 | return NULL; |
| 525 | |
| 526 | return hdr; |
| 527 | } |
| 528 | |
| 529 | static struct nl_mmap_hdr * |
| 530 | netlink_current_frame(const struct netlink_ring *ring, |
| 531 | enum nl_mmap_status status) |
| 532 | { |
| 533 | return netlink_lookup_frame(ring, ring->head, status); |
| 534 | } |
| 535 | |
| 536 | static struct nl_mmap_hdr * |
| 537 | netlink_previous_frame(const struct netlink_ring *ring, |
| 538 | enum nl_mmap_status status) |
| 539 | { |
| 540 | unsigned int prev; |
| 541 | |
| 542 | prev = ring->head ? ring->head - 1 : ring->frame_max; |
| 543 | return netlink_lookup_frame(ring, prev, status); |
| 544 | } |
| 545 | |
| 546 | static void netlink_increment_head(struct netlink_ring *ring) |
| 547 | { |
| 548 | ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0; |
| 549 | } |
| 550 | |
| 551 | static void netlink_forward_ring(struct netlink_ring *ring) |
| 552 | { |
| 553 | unsigned int head = ring->head, pos = head; |
| 554 | const struct nl_mmap_hdr *hdr; |
| 555 | |
| 556 | do { |
| 557 | hdr = __netlink_lookup_frame(ring, pos); |
| 558 | if (hdr->nm_status == NL_MMAP_STATUS_UNUSED) |
| 559 | break; |
| 560 | if (hdr->nm_status != NL_MMAP_STATUS_SKIP) |
| 561 | break; |
| 562 | netlink_increment_head(ring); |
| 563 | } while (ring->head != head); |
| 564 | } |
| 565 | |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 566 | static bool netlink_dump_space(struct netlink_sock *nlk) |
| 567 | { |
| 568 | struct netlink_ring *ring = &nlk->rx_ring; |
| 569 | struct nl_mmap_hdr *hdr; |
| 570 | unsigned int n; |
| 571 | |
| 572 | hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED); |
| 573 | if (hdr == NULL) |
| 574 | return false; |
| 575 | |
| 576 | n = ring->head + ring->frame_max / 2; |
| 577 | if (n > ring->frame_max) |
| 578 | n -= ring->frame_max; |
| 579 | |
| 580 | hdr = __netlink_lookup_frame(ring, n); |
| 581 | |
| 582 | return hdr->nm_status == NL_MMAP_STATUS_UNUSED; |
| 583 | } |
| 584 | |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 585 | static unsigned int netlink_poll(struct file *file, struct socket *sock, |
| 586 | poll_table *wait) |
| 587 | { |
| 588 | struct sock *sk = sock->sk; |
| 589 | struct netlink_sock *nlk = nlk_sk(sk); |
| 590 | unsigned int mask; |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 591 | int err; |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 592 | |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 593 | if (nlk->rx_ring.pg_vec != NULL) { |
| 594 | /* Memory mapped sockets don't call recvmsg(), so flow control |
| 595 | * for dumps is performed here. A dump is allowed to continue |
| 596 | * if at least half the ring is unused. |
| 597 | */ |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 598 | while (nlk->cb_running && netlink_dump_space(nlk)) { |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 599 | err = netlink_dump(sk); |
| 600 | if (err < 0) { |
| 601 | sk->sk_err = err; |
| 602 | sk->sk_error_report(sk); |
| 603 | break; |
| 604 | } |
| 605 | } |
| 606 | netlink_rcv_wake(sk); |
| 607 | } |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 608 | |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 609 | mask = datagram_poll(file, sock, wait); |
| 610 | |
| 611 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 612 | if (nlk->rx_ring.pg_vec) { |
| 613 | netlink_forward_ring(&nlk->rx_ring); |
| 614 | if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED)) |
| 615 | mask |= POLLIN | POLLRDNORM; |
| 616 | } |
| 617 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 618 | |
| 619 | spin_lock_bh(&sk->sk_write_queue.lock); |
| 620 | if (nlk->tx_ring.pg_vec) { |
| 621 | if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED)) |
| 622 | mask |= POLLOUT | POLLWRNORM; |
| 623 | } |
| 624 | spin_unlock_bh(&sk->sk_write_queue.lock); |
| 625 | |
| 626 | return mask; |
| 627 | } |
| 628 | |
| 629 | static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb) |
| 630 | { |
| 631 | return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN); |
| 632 | } |
| 633 | |
| 634 | static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk, |
| 635 | struct netlink_ring *ring, |
| 636 | struct nl_mmap_hdr *hdr) |
| 637 | { |
| 638 | unsigned int size; |
| 639 | void *data; |
| 640 | |
| 641 | size = ring->frame_size - NL_MMAP_HDRLEN; |
| 642 | data = (void *)hdr + NL_MMAP_HDRLEN; |
| 643 | |
| 644 | skb->head = data; |
| 645 | skb->data = data; |
| 646 | skb_reset_tail_pointer(skb); |
| 647 | skb->end = skb->tail + size; |
| 648 | skb->len = 0; |
| 649 | |
| 650 | skb->destructor = netlink_skb_destructor; |
| 651 | NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED; |
| 652 | NETLINK_CB(skb).sk = sk; |
| 653 | } |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 654 | |
| 655 | static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg, |
| 656 | u32 dst_portid, u32 dst_group, |
| 657 | struct sock_iocb *siocb) |
| 658 | { |
| 659 | struct netlink_sock *nlk = nlk_sk(sk); |
| 660 | struct netlink_ring *ring; |
| 661 | struct nl_mmap_hdr *hdr; |
| 662 | struct sk_buff *skb; |
| 663 | unsigned int maxlen; |
| 664 | bool excl = true; |
| 665 | int err = 0, len = 0; |
| 666 | |
| 667 | /* Netlink messages are validated by the receiver before processing. |
| 668 | * In order to avoid userspace changing the contents of the message |
| 669 | * after validation, the socket and the ring may only be used by a |
| 670 | * single process, otherwise we fall back to copying. |
| 671 | */ |
| 672 | if (atomic_long_read(&sk->sk_socket->file->f_count) > 2 || |
| 673 | atomic_read(&nlk->mapped) > 1) |
| 674 | excl = false; |
| 675 | |
| 676 | mutex_lock(&nlk->pg_vec_lock); |
| 677 | |
| 678 | ring = &nlk->tx_ring; |
| 679 | maxlen = ring->frame_size - NL_MMAP_HDRLEN; |
| 680 | |
| 681 | do { |
| 682 | hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID); |
| 683 | if (hdr == NULL) { |
| 684 | if (!(msg->msg_flags & MSG_DONTWAIT) && |
| 685 | atomic_read(&nlk->tx_ring.pending)) |
| 686 | schedule(); |
| 687 | continue; |
| 688 | } |
| 689 | if (hdr->nm_len > maxlen) { |
| 690 | err = -EINVAL; |
| 691 | goto out; |
| 692 | } |
| 693 | |
| 694 | netlink_frame_flush_dcache(hdr); |
| 695 | |
| 696 | if (likely(dst_portid == 0 && dst_group == 0 && excl)) { |
| 697 | skb = alloc_skb_head(GFP_KERNEL); |
| 698 | if (skb == NULL) { |
| 699 | err = -ENOBUFS; |
| 700 | goto out; |
| 701 | } |
| 702 | sock_hold(sk); |
| 703 | netlink_ring_setup_skb(skb, sk, ring, hdr); |
| 704 | NETLINK_CB(skb).flags |= NETLINK_SKB_TX; |
| 705 | __skb_put(skb, hdr->nm_len); |
| 706 | netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED); |
| 707 | atomic_inc(&ring->pending); |
| 708 | } else { |
| 709 | skb = alloc_skb(hdr->nm_len, GFP_KERNEL); |
| 710 | if (skb == NULL) { |
| 711 | err = -ENOBUFS; |
| 712 | goto out; |
| 713 | } |
| 714 | __skb_put(skb, hdr->nm_len); |
| 715 | memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, hdr->nm_len); |
| 716 | netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED); |
| 717 | } |
| 718 | |
| 719 | netlink_increment_head(ring); |
| 720 | |
| 721 | NETLINK_CB(skb).portid = nlk->portid; |
| 722 | NETLINK_CB(skb).dst_group = dst_group; |
| 723 | NETLINK_CB(skb).creds = siocb->scm->creds; |
| 724 | |
| 725 | err = security_netlink_send(sk, skb); |
| 726 | if (err) { |
| 727 | kfree_skb(skb); |
| 728 | goto out; |
| 729 | } |
| 730 | |
| 731 | if (unlikely(dst_group)) { |
| 732 | atomic_inc(&skb->users); |
| 733 | netlink_broadcast(sk, skb, dst_portid, dst_group, |
| 734 | GFP_KERNEL); |
| 735 | } |
| 736 | err = netlink_unicast(sk, skb, dst_portid, |
| 737 | msg->msg_flags & MSG_DONTWAIT); |
| 738 | if (err < 0) |
| 739 | goto out; |
| 740 | len += err; |
| 741 | |
| 742 | } while (hdr != NULL || |
| 743 | (!(msg->msg_flags & MSG_DONTWAIT) && |
| 744 | atomic_read(&nlk->tx_ring.pending))); |
| 745 | |
| 746 | if (len > 0) |
| 747 | err = len; |
| 748 | out: |
| 749 | mutex_unlock(&nlk->pg_vec_lock); |
| 750 | return err; |
| 751 | } |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 752 | |
| 753 | static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb) |
| 754 | { |
| 755 | struct nl_mmap_hdr *hdr; |
| 756 | |
| 757 | hdr = netlink_mmap_hdr(skb); |
| 758 | hdr->nm_len = skb->len; |
| 759 | hdr->nm_group = NETLINK_CB(skb).dst_group; |
| 760 | hdr->nm_pid = NETLINK_CB(skb).creds.pid; |
Nicolas Dichtel | 1bf9310 | 2013-04-24 10:36:23 +0200 | [diff] [blame] | 761 | hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid); |
| 762 | hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 763 | netlink_frame_flush_dcache(hdr); |
| 764 | netlink_set_status(hdr, NL_MMAP_STATUS_VALID); |
| 765 | |
| 766 | NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED; |
| 767 | kfree_skb(skb); |
| 768 | } |
| 769 | |
| 770 | static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb) |
| 771 | { |
| 772 | struct netlink_sock *nlk = nlk_sk(sk); |
| 773 | struct netlink_ring *ring = &nlk->rx_ring; |
| 774 | struct nl_mmap_hdr *hdr; |
| 775 | |
| 776 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 777 | hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED); |
| 778 | if (hdr == NULL) { |
| 779 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 780 | kfree_skb(skb); |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 781 | netlink_overrun(sk); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 782 | return; |
| 783 | } |
| 784 | netlink_increment_head(ring); |
| 785 | __skb_queue_tail(&sk->sk_receive_queue, skb); |
| 786 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 787 | |
| 788 | hdr->nm_len = skb->len; |
| 789 | hdr->nm_group = NETLINK_CB(skb).dst_group; |
| 790 | hdr->nm_pid = NETLINK_CB(skb).creds.pid; |
Nicolas Dichtel | 1bf9310 | 2013-04-24 10:36:23 +0200 | [diff] [blame] | 791 | hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid); |
| 792 | hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 793 | netlink_set_status(hdr, NL_MMAP_STATUS_COPY); |
| 794 | } |
| 795 | |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 796 | #else /* CONFIG_NETLINK_MMAP */ |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 797 | #define netlink_skb_is_mmaped(skb) false |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 798 | #define netlink_rx_is_mmaped(sk) false |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 799 | #define netlink_tx_is_mmaped(sk) false |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 800 | #define netlink_mmap sock_no_mmap |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 801 | #define netlink_poll datagram_poll |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 802 | #define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0 |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 803 | #endif /* CONFIG_NETLINK_MMAP */ |
| 804 | |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 805 | static void netlink_skb_destructor(struct sk_buff *skb) |
| 806 | { |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 807 | #ifdef CONFIG_NETLINK_MMAP |
| 808 | struct nl_mmap_hdr *hdr; |
| 809 | struct netlink_ring *ring; |
| 810 | struct sock *sk; |
| 811 | |
| 812 | /* If a packet from the kernel to userspace was freed because of an |
| 813 | * error without being delivered to userspace, the kernel must reset |
| 814 | * the status. In the direction userspace to kernel, the status is |
| 815 | * always reset here after the packet was processed and freed. |
| 816 | */ |
| 817 | if (netlink_skb_is_mmaped(skb)) { |
| 818 | hdr = netlink_mmap_hdr(skb); |
| 819 | sk = NETLINK_CB(skb).sk; |
| 820 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 821 | if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) { |
| 822 | netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED); |
| 823 | ring = &nlk_sk(sk)->tx_ring; |
| 824 | } else { |
| 825 | if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) { |
| 826 | hdr->nm_len = 0; |
| 827 | netlink_set_status(hdr, NL_MMAP_STATUS_VALID); |
| 828 | } |
| 829 | ring = &nlk_sk(sk)->rx_ring; |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 830 | } |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 831 | |
| 832 | WARN_ON(atomic_read(&ring->pending) == 0); |
| 833 | atomic_dec(&ring->pending); |
| 834 | sock_put(sk); |
| 835 | |
Pablo Neira | 5e71d9d | 2013-06-03 09:28:43 +0000 | [diff] [blame] | 836 | skb->head = NULL; |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 837 | } |
| 838 | #endif |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 839 | if (is_vmalloc_addr(skb->head)) { |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 840 | if (!skb->cloned || |
| 841 | !atomic_dec_return(&(skb_shinfo(skb)->dataref))) |
| 842 | vfree(skb->head); |
| 843 | |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 844 | skb->head = NULL; |
| 845 | } |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 846 | if (skb->sk != NULL) |
| 847 | sock_rfree(skb); |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk) |
| 851 | { |
| 852 | WARN_ON(skb->sk != NULL); |
| 853 | skb->sk = sk; |
| 854 | skb->destructor = netlink_skb_destructor; |
| 855 | atomic_add(skb->truesize, &sk->sk_rmem_alloc); |
| 856 | sk_mem_charge(sk, skb->truesize); |
| 857 | } |
| 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | static void netlink_sock_destruct(struct sock *sk) |
| 860 | { |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 861 | struct netlink_sock *nlk = nlk_sk(sk); |
| 862 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 863 | if (nlk->cb_running) { |
| 864 | if (nlk->cb.done) |
| 865 | nlk->cb.done(&nlk->cb); |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 866 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 867 | module_put(nlk->cb.module); |
| 868 | kfree_skb(nlk->cb.skb); |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | skb_queue_purge(&sk->sk_receive_queue); |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 872 | #ifdef CONFIG_NETLINK_MMAP |
| 873 | if (1) { |
| 874 | struct nl_mmap_req req; |
| 875 | |
| 876 | memset(&req, 0, sizeof(req)); |
| 877 | if (nlk->rx_ring.pg_vec) |
| 878 | netlink_set_ring(sk, &req, true, false); |
| 879 | memset(&req, 0, sizeof(req)); |
| 880 | if (nlk->tx_ring.pg_vec) |
| 881 | netlink_set_ring(sk, &req, true, true); |
| 882 | } |
| 883 | #endif /* CONFIG_NETLINK_MMAP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
| 885 | if (!sock_flag(sk, SOCK_DEAD)) { |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 886 | printk(KERN_ERR "Freeing alive netlink socket %p\n", sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | return; |
| 888 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 889 | |
| 890 | WARN_ON(atomic_read(&sk->sk_rmem_alloc)); |
| 891 | WARN_ON(atomic_read(&sk->sk_wmem_alloc)); |
| 892 | WARN_ON(nlk_sk(sk)->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 895 | /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on |
| 896 | * 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] | 897 | * immediately hit write lock and grab all the cpus. Exclusive sleep solves |
| 898 | * this, _but_ remember, it adds useless work on UP machines. |
| 899 | */ |
| 900 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 901 | void netlink_table_grab(void) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 902 | __acquires(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | { |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 904 | might_sleep(); |
| 905 | |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 906 | write_lock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | |
| 908 | if (atomic_read(&nl_table_users)) { |
| 909 | DECLARE_WAITQUEUE(wait, current); |
| 910 | |
| 911 | add_wait_queue_exclusive(&nl_table_wait, &wait); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 912 | for (;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 914 | if (atomic_read(&nl_table_users) == 0) |
| 915 | break; |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 916 | write_unlock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | schedule(); |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 918 | write_lock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | __set_current_state(TASK_RUNNING); |
| 922 | remove_wait_queue(&nl_table_wait, &wait); |
| 923 | } |
| 924 | } |
| 925 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 926 | void netlink_table_ungrab(void) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 927 | __releases(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
Arjan van de Ven | 6abd219 | 2006-07-03 00:24:07 -0700 | [diff] [blame] | 929 | write_unlock_irq(&nl_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | wake_up(&nl_table_wait); |
| 931 | } |
| 932 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 933 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | netlink_lock_table(void) |
| 935 | { |
| 936 | /* read_lock() synchronizes us to netlink_table_grab */ |
| 937 | |
| 938 | read_lock(&nl_table_lock); |
| 939 | atomic_inc(&nl_table_users); |
| 940 | read_unlock(&nl_table_lock); |
| 941 | } |
| 942 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 943 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | netlink_unlock_table(void) |
| 945 | { |
| 946 | if (atomic_dec_and_test(&nl_table_users)) |
| 947 | wake_up(&nl_table_wait); |
| 948 | } |
| 949 | |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 950 | static bool netlink_compare(struct net *net, struct sock *sk) |
| 951 | { |
| 952 | return net_eq(sock_net(sk), net); |
| 953 | } |
| 954 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 955 | static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 957 | struct netlink_table *table = &nl_table[protocol]; |
| 958 | struct nl_portid_hash *hash = &table->hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | struct hlist_head *head; |
| 960 | struct sock *sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
| 962 | read_lock(&nl_table_lock); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 963 | head = nl_portid_hashfn(hash, portid); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 964 | sk_for_each(sk, head) { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 965 | if (table->compare(net, sk) && |
| 966 | (nlk_sk(sk)->portid == portid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | sock_hold(sk); |
| 968 | goto found; |
| 969 | } |
| 970 | } |
| 971 | sk = NULL; |
| 972 | found: |
| 973 | read_unlock(&nl_table_lock); |
| 974 | return sk; |
| 975 | } |
| 976 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 977 | static struct hlist_head *nl_portid_hash_zalloc(size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | { |
| 979 | if (size <= PAGE_SIZE) |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 980 | return kzalloc(size, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | else |
| 982 | return (struct hlist_head *) |
Eric Dumazet | ea72912 | 2007-12-11 02:09:47 -0800 | [diff] [blame] | 983 | __get_free_pages(GFP_ATOMIC | __GFP_ZERO, |
| 984 | get_order(size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 987 | static void nl_portid_hash_free(struct hlist_head *table, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | { |
| 989 | if (size <= PAGE_SIZE) |
| 990 | kfree(table); |
| 991 | else |
| 992 | free_pages((unsigned long)table, get_order(size)); |
| 993 | } |
| 994 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 995 | static int nl_portid_hash_rehash(struct nl_portid_hash *hash, int grow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | { |
| 997 | unsigned int omask, mask, shift; |
| 998 | size_t osize, size; |
| 999 | struct hlist_head *otable, *table; |
| 1000 | int i; |
| 1001 | |
| 1002 | omask = mask = hash->mask; |
| 1003 | osize = size = (mask + 1) * sizeof(*table); |
| 1004 | shift = hash->shift; |
| 1005 | |
| 1006 | if (grow) { |
| 1007 | if (++shift > hash->max_shift) |
| 1008 | return 0; |
| 1009 | mask = mask * 2 + 1; |
| 1010 | size *= 2; |
| 1011 | } |
| 1012 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1013 | table = nl_portid_hash_zalloc(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | if (!table) |
| 1015 | return 0; |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | otable = hash->table; |
| 1018 | hash->table = table; |
| 1019 | hash->mask = mask; |
| 1020 | hash->shift = shift; |
| 1021 | get_random_bytes(&hash->rnd, sizeof(hash->rnd)); |
| 1022 | |
| 1023 | for (i = 0; i <= omask; i++) { |
| 1024 | struct sock *sk; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1025 | struct hlist_node *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1027 | sk_for_each_safe(sk, tmp, &otable[i]) |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1028 | __sk_add_node(sk, nl_portid_hashfn(hash, nlk_sk(sk)->portid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1031 | nl_portid_hash_free(otable, osize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | hash->rehash_time = jiffies + 10 * 60 * HZ; |
| 1033 | return 1; |
| 1034 | } |
| 1035 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1036 | static inline int nl_portid_hash_dilute(struct nl_portid_hash *hash, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { |
| 1038 | int avg = hash->entries >> hash->shift; |
| 1039 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1040 | if (unlikely(avg > 1) && nl_portid_hash_rehash(hash, 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | return 1; |
| 1042 | |
| 1043 | if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1044 | nl_portid_hash_rehash(hash, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | return 1; |
| 1046 | } |
| 1047 | |
| 1048 | return 0; |
| 1049 | } |
| 1050 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 1051 | static const struct proto_ops netlink_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1053 | static void |
| 1054 | netlink_update_listeners(struct sock *sk) |
| 1055 | { |
| 1056 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1057 | unsigned long mask; |
| 1058 | unsigned int i; |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1059 | struct listeners *listeners; |
| 1060 | |
| 1061 | listeners = nl_deref_protected(tbl->listeners); |
| 1062 | if (!listeners) |
| 1063 | return; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1064 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1065 | for (i = 0; i < NLGRPLONGS(tbl->groups); i++) { |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1066 | mask = 0; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1067 | sk_for_each_bound(sk, &tbl->mc_list) { |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1068 | if (i < NLGRPLONGS(nlk_sk(sk)->ngroups)) |
| 1069 | mask |= nlk_sk(sk)->groups[i]; |
| 1070 | } |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1071 | listeners->masks[i] = mask; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1072 | } |
| 1073 | /* this function is only called with the netlink table "grabbed", which |
| 1074 | * makes sure updates are visible before bind or setsockopt return. */ |
| 1075 | } |
| 1076 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1077 | static int netlink_insert(struct sock *sk, struct net *net, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1079 | struct netlink_table *table = &nl_table[sk->sk_protocol]; |
| 1080 | struct nl_portid_hash *hash = &table->hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | struct hlist_head *head; |
| 1082 | int err = -EADDRINUSE; |
| 1083 | struct sock *osk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | int len; |
| 1085 | |
| 1086 | netlink_table_grab(); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1087 | head = nl_portid_hashfn(hash, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | len = 0; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1089 | sk_for_each(osk, head) { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1090 | if (table->compare(net, osk) && |
| 1091 | (nlk_sk(osk)->portid == portid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | break; |
| 1093 | len++; |
| 1094 | } |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1095 | if (osk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | goto err; |
| 1097 | |
| 1098 | err = -EBUSY; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1099 | if (nlk_sk(sk)->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | goto err; |
| 1101 | |
| 1102 | err = -ENOMEM; |
| 1103 | if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX)) |
| 1104 | goto err; |
| 1105 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1106 | if (len && nl_portid_hash_dilute(hash, len)) |
| 1107 | head = nl_portid_hashfn(hash, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | hash->entries++; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1109 | nlk_sk(sk)->portid = portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | sk_add_node(sk, head); |
| 1111 | err = 0; |
| 1112 | |
| 1113 | err: |
| 1114 | netlink_table_ungrab(); |
| 1115 | return err; |
| 1116 | } |
| 1117 | |
| 1118 | static void netlink_remove(struct sock *sk) |
| 1119 | { |
| 1120 | netlink_table_grab(); |
David S. Miller | d470e3b | 2005-06-26 15:31:51 -0700 | [diff] [blame] | 1121 | if (sk_del_node_init(sk)) |
| 1122 | nl_table[sk->sk_protocol].hash.entries--; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1123 | if (nlk_sk(sk)->subscriptions) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | __sk_del_bind_node(sk); |
| 1125 | netlink_table_ungrab(); |
| 1126 | } |
| 1127 | |
| 1128 | static struct proto netlink_proto = { |
| 1129 | .name = "NETLINK", |
| 1130 | .owner = THIS_MODULE, |
| 1131 | .obj_size = sizeof(struct netlink_sock), |
| 1132 | }; |
| 1133 | |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 1134 | static int __netlink_create(struct net *net, struct socket *sock, |
| 1135 | struct mutex *cb_mutex, int protocol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | { |
| 1137 | struct sock *sk; |
| 1138 | struct netlink_sock *nlk; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1139 | |
| 1140 | sock->ops = &netlink_ops; |
| 1141 | |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 1142 | sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto); |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1143 | if (!sk) |
| 1144 | return -ENOMEM; |
| 1145 | |
| 1146 | sock_init_data(sock, sk); |
| 1147 | |
| 1148 | nlk = nlk_sk(sk); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1149 | if (cb_mutex) { |
Patrick McHardy | ffa4d72 | 2007-04-25 14:01:17 -0700 | [diff] [blame] | 1150 | nlk->cb_mutex = cb_mutex; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1151 | } else { |
Patrick McHardy | ffa4d72 | 2007-04-25 14:01:17 -0700 | [diff] [blame] | 1152 | nlk->cb_mutex = &nlk->cb_def_mutex; |
| 1153 | mutex_init(nlk->cb_mutex); |
| 1154 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1155 | init_waitqueue_head(&nlk->wait); |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 1156 | #ifdef CONFIG_NETLINK_MMAP |
| 1157 | mutex_init(&nlk->pg_vec_lock); |
| 1158 | #endif |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1159 | |
| 1160 | sk->sk_destruct = netlink_sock_destruct; |
| 1161 | sk->sk_protocol = protocol; |
| 1162 | return 0; |
| 1163 | } |
| 1164 | |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 1165 | static int netlink_create(struct net *net, struct socket *sock, int protocol, |
| 1166 | int kern) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1167 | { |
| 1168 | struct module *module = NULL; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1169 | struct mutex *cb_mutex; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1170 | struct netlink_sock *nlk; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1171 | void (*bind)(int group); |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1172 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
| 1174 | sock->state = SS_UNCONNECTED; |
| 1175 | |
| 1176 | if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM) |
| 1177 | return -ESOCKTNOSUPPORT; |
| 1178 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1179 | if (protocol < 0 || protocol >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | return -EPROTONOSUPPORT; |
| 1181 | |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1182 | netlink_lock_table(); |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 1183 | #ifdef CONFIG_MODULES |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1184 | if (!nl_table[protocol].registered) { |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1185 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1186 | request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1187 | netlink_lock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1188 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1189 | #endif |
| 1190 | if (nl_table[protocol].registered && |
| 1191 | try_module_get(nl_table[protocol].module)) |
| 1192 | module = nl_table[protocol].module; |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 1193 | else |
| 1194 | err = -EPROTONOSUPPORT; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1195 | cb_mutex = nl_table[protocol].cb_mutex; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1196 | bind = nl_table[protocol].bind; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1197 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1198 | |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 1199 | if (err < 0) |
| 1200 | goto out; |
| 1201 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1202 | err = __netlink_create(net, sock, cb_mutex, protocol); |
| 1203 | if (err < 0) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1204 | goto out_module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 1206 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 1207 | sock_prot_inuse_add(net, &netlink_proto, 1); |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 1208 | local_bh_enable(); |
| 1209 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1210 | nlk = nlk_sk(sock->sk); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1211 | nlk->module = module; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1212 | nlk->netlink_bind = bind; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1213 | out: |
| 1214 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1216 | out_module: |
| 1217 | module_put(module); |
| 1218 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | static int netlink_release(struct socket *sock) |
| 1222 | { |
| 1223 | struct sock *sk = sock->sk; |
| 1224 | struct netlink_sock *nlk; |
| 1225 | |
| 1226 | if (!sk) |
| 1227 | return 0; |
| 1228 | |
| 1229 | netlink_remove(sk); |
Denis Lunev | ac57b3a | 2007-04-18 17:05:58 -0700 | [diff] [blame] | 1230 | sock_orphan(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | nlk = nlk_sk(sk); |
| 1232 | |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 1233 | /* |
| 1234 | * OK. Socket is unlinked, any packets that arrive now |
| 1235 | * will be purged. |
| 1236 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | sock->sk = NULL; |
| 1239 | wake_up_interruptible_all(&nlk->wait); |
| 1240 | |
| 1241 | skb_queue_purge(&sk->sk_write_queue); |
| 1242 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1243 | if (nlk->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | struct netlink_notify n = { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1245 | .net = sock_net(sk), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | .protocol = sk->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1247 | .portid = nlk->portid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | }; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1249 | atomic_notifier_call_chain(&netlink_chain, |
| 1250 | NETLINK_URELEASE, &n); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1251 | } |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1252 | |
Mariusz Kozlowski | 5e7c001 | 2007-01-02 15:24:30 -0800 | [diff] [blame] | 1253 | module_put(nlk->module); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1254 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1255 | netlink_table_grab(); |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1256 | if (netlink_is_kernel(sk)) { |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1257 | BUG_ON(nl_table[sk->sk_protocol].registered == 0); |
| 1258 | if (--nl_table[sk->sk_protocol].registered == 0) { |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1259 | struct listeners *old; |
| 1260 | |
| 1261 | old = nl_deref_protected(nl_table[sk->sk_protocol].listeners); |
| 1262 | RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL); |
| 1263 | kfree_rcu(old, rcu); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1264 | nl_table[sk->sk_protocol].module = NULL; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1265 | nl_table[sk->sk_protocol].bind = NULL; |
| 1266 | nl_table[sk->sk_protocol].flags = 0; |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1267 | nl_table[sk->sk_protocol].registered = 0; |
| 1268 | } |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1269 | } else if (nlk->subscriptions) { |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1270 | netlink_update_listeners(sk); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1271 | } |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1272 | netlink_table_ungrab(); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1273 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1274 | kfree(nlk->groups); |
| 1275 | nlk->groups = NULL; |
| 1276 | |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 1277 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 1278 | sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1); |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 1279 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | sock_put(sk); |
| 1281 | return 0; |
| 1282 | } |
| 1283 | |
| 1284 | static int netlink_autobind(struct socket *sock) |
| 1285 | { |
| 1286 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1287 | struct net *net = sock_net(sk); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1288 | struct netlink_table *table = &nl_table[sk->sk_protocol]; |
| 1289 | struct nl_portid_hash *hash = &table->hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | struct hlist_head *head; |
| 1291 | struct sock *osk; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1292 | s32 portid = task_tgid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | int err; |
| 1294 | static s32 rover = -4097; |
| 1295 | |
| 1296 | retry: |
| 1297 | cond_resched(); |
| 1298 | netlink_table_grab(); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1299 | head = nl_portid_hashfn(hash, portid); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1300 | sk_for_each(osk, head) { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1301 | if (!table->compare(net, osk)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1302 | continue; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1303 | if (nlk_sk(osk)->portid == portid) { |
| 1304 | /* Bind collision, search negative portid values. */ |
| 1305 | portid = rover--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | if (rover > -4097) |
| 1307 | rover = -4097; |
| 1308 | netlink_table_ungrab(); |
| 1309 | goto retry; |
| 1310 | } |
| 1311 | } |
| 1312 | netlink_table_ungrab(); |
| 1313 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1314 | err = netlink_insert(sk, net, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | if (err == -EADDRINUSE) |
| 1316 | goto retry; |
David S. Miller | d470e3b | 2005-06-26 15:31:51 -0700 | [diff] [blame] | 1317 | |
| 1318 | /* If 2 threads race to autobind, that is fine. */ |
| 1319 | if (err == -EBUSY) |
| 1320 | err = 0; |
| 1321 | |
| 1322 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1325 | static inline int netlink_capable(const struct socket *sock, unsigned int flag) |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1326 | { |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1327 | return (nl_table[sock->sk->sk_protocol].flags & flag) || |
Eric W. Biederman | df008c9 | 2012-11-16 03:03:07 +0000 | [diff] [blame] | 1328 | ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1329 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1331 | static void |
| 1332 | netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions) |
| 1333 | { |
| 1334 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1335 | |
| 1336 | if (nlk->subscriptions && !subscriptions) |
| 1337 | __sk_del_bind_node(sk); |
| 1338 | else if (!nlk->subscriptions && subscriptions) |
| 1339 | sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list); |
| 1340 | nlk->subscriptions = subscriptions; |
| 1341 | } |
| 1342 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1343 | static int netlink_realloc_groups(struct sock *sk) |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1344 | { |
| 1345 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1346 | unsigned int groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1347 | unsigned long *new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1348 | int err = 0; |
| 1349 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1350 | netlink_table_grab(); |
| 1351 | |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1352 | groups = nl_table[sk->sk_protocol].groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1353 | if (!nl_table[sk->sk_protocol].registered) { |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1354 | err = -ENOENT; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1355 | goto out_unlock; |
| 1356 | } |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1357 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1358 | if (nlk->ngroups >= groups) |
| 1359 | goto out_unlock; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1360 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1361 | new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC); |
| 1362 | if (new_groups == NULL) { |
| 1363 | err = -ENOMEM; |
| 1364 | goto out_unlock; |
| 1365 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1366 | memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0, |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1367 | NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups)); |
| 1368 | |
| 1369 | nlk->groups = new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1370 | nlk->ngroups = groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1371 | out_unlock: |
| 1372 | netlink_table_ungrab(); |
| 1373 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1374 | } |
| 1375 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1376 | static int netlink_bind(struct socket *sock, struct sockaddr *addr, |
| 1377 | int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | { |
| 1379 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1380 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1382 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
| 1383 | int err; |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1384 | |
Hannes Frederic Sowa | 4e4b537 | 2012-12-15 15:42:19 +0000 | [diff] [blame] | 1385 | if (addr_len < sizeof(struct sockaddr_nl)) |
| 1386 | return -EINVAL; |
| 1387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | if (nladdr->nl_family != AF_NETLINK) |
| 1389 | return -EINVAL; |
| 1390 | |
| 1391 | /* Only superuser is allowed to listen multicasts */ |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1392 | if (nladdr->nl_groups) { |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1393 | if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV)) |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1394 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1395 | err = netlink_realloc_groups(sk); |
| 1396 | if (err) |
| 1397 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1400 | if (nlk->portid) { |
| 1401 | if (nladdr->nl_pid != nlk->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | return -EINVAL; |
| 1403 | } else { |
| 1404 | err = nladdr->nl_pid ? |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1405 | netlink_insert(sk, net, nladdr->nl_pid) : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | netlink_autobind(sock); |
| 1407 | if (err) |
| 1408 | return err; |
| 1409 | } |
| 1410 | |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1411 | if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | return 0; |
| 1413 | |
| 1414 | netlink_table_grab(); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1415 | netlink_update_subscriptions(sk, nlk->subscriptions + |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1416 | hweight32(nladdr->nl_groups) - |
| 1417 | hweight32(nlk->groups[0])); |
| 1418 | nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1419 | netlink_update_listeners(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | netlink_table_ungrab(); |
| 1421 | |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1422 | if (nlk->netlink_bind && nlk->groups[0]) { |
| 1423 | int i; |
| 1424 | |
| 1425 | for (i=0; i<nlk->ngroups; i++) { |
| 1426 | if (test_bit(i, nlk->groups)) |
| 1427 | nlk->netlink_bind(i); |
| 1428 | } |
| 1429 | } |
| 1430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | return 0; |
| 1432 | } |
| 1433 | |
| 1434 | static int netlink_connect(struct socket *sock, struct sockaddr *addr, |
| 1435 | int alen, int flags) |
| 1436 | { |
| 1437 | int err = 0; |
| 1438 | struct sock *sk = sock->sk; |
| 1439 | struct netlink_sock *nlk = nlk_sk(sk); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1440 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | |
Changli Gao | 6503d96 | 2010-03-31 22:58:26 +0000 | [diff] [blame] | 1442 | if (alen < sizeof(addr->sa_family)) |
| 1443 | return -EINVAL; |
| 1444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | if (addr->sa_family == AF_UNSPEC) { |
| 1446 | sk->sk_state = NETLINK_UNCONNECTED; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1447 | nlk->dst_portid = 0; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1448 | nlk->dst_group = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | return 0; |
| 1450 | } |
| 1451 | if (addr->sa_family != AF_NETLINK) |
| 1452 | return -EINVAL; |
| 1453 | |
| 1454 | /* Only superuser is allowed to send multicasts */ |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1455 | if (nladdr->nl_groups && !netlink_capable(sock, NL_CFG_F_NONROOT_SEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | return -EPERM; |
| 1457 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1458 | if (!nlk->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | err = netlink_autobind(sock); |
| 1460 | |
| 1461 | if (err == 0) { |
| 1462 | sk->sk_state = NETLINK_CONNECTED; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1463 | nlk->dst_portid = nladdr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1464 | nlk->dst_group = ffs(nladdr->nl_groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | return err; |
| 1468 | } |
| 1469 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1470 | static int netlink_getname(struct socket *sock, struct sockaddr *addr, |
| 1471 | int *addr_len, int peer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | { |
| 1473 | struct sock *sk = sock->sk; |
| 1474 | struct netlink_sock *nlk = nlk_sk(sk); |
Cyrill Gorcunov | 13cfa97 | 2009-11-08 05:51:19 +0000 | [diff] [blame] | 1475 | DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | nladdr->nl_family = AF_NETLINK; |
| 1478 | nladdr->nl_pad = 0; |
| 1479 | *addr_len = sizeof(*nladdr); |
| 1480 | |
| 1481 | if (peer) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1482 | nladdr->nl_pid = nlk->dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1483 | nladdr->nl_groups = netlink_group_mask(nlk->dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | } else { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1485 | nladdr->nl_pid = nlk->portid; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1486 | nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | } |
| 1488 | return 0; |
| 1489 | } |
| 1490 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1491 | static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | struct sock *sock; |
| 1494 | struct netlink_sock *nlk; |
| 1495 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1496 | sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | if (!sock) |
| 1498 | return ERR_PTR(-ECONNREFUSED); |
| 1499 | |
| 1500 | /* Don't bother queuing skb if kernel socket has no input function */ |
| 1501 | nlk = nlk_sk(sock); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1502 | if (sock->sk_state == NETLINK_CONNECTED && |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1503 | nlk->dst_portid != nlk_sk(ssk)->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | sock_put(sock); |
| 1505 | return ERR_PTR(-ECONNREFUSED); |
| 1506 | } |
| 1507 | return sock; |
| 1508 | } |
| 1509 | |
| 1510 | struct sock *netlink_getsockbyfilp(struct file *filp) |
| 1511 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1512 | struct inode *inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | struct sock *sock; |
| 1514 | |
| 1515 | if (!S_ISSOCK(inode->i_mode)) |
| 1516 | return ERR_PTR(-ENOTSOCK); |
| 1517 | |
| 1518 | sock = SOCKET_I(inode)->sk; |
| 1519 | if (sock->sk_family != AF_NETLINK) |
| 1520 | return ERR_PTR(-EINVAL); |
| 1521 | |
| 1522 | sock_hold(sock); |
| 1523 | return sock; |
| 1524 | } |
| 1525 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1526 | static struct sk_buff *netlink_alloc_large_skb(unsigned int size, |
| 1527 | int broadcast) |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1528 | { |
| 1529 | struct sk_buff *skb; |
| 1530 | void *data; |
| 1531 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1532 | if (size <= NLMSG_GOODSIZE || broadcast) |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1533 | return alloc_skb(size, GFP_KERNEL); |
| 1534 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1535 | size = SKB_DATA_ALIGN(size) + |
| 1536 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1537 | |
| 1538 | data = vmalloc(size); |
| 1539 | if (data == NULL) |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1540 | return NULL; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1541 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1542 | skb = build_skb(data, size); |
| 1543 | if (skb == NULL) |
| 1544 | vfree(data); |
| 1545 | else { |
| 1546 | skb->head_frag = 0; |
| 1547 | skb->destructor = netlink_skb_destructor; |
| 1548 | } |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1549 | |
| 1550 | return skb; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | /* |
| 1554 | * Attach a skb to a netlink socket. |
| 1555 | * The caller must hold a reference to the destination socket. On error, the |
| 1556 | * reference is dropped. The skb is not send to the destination, just all |
| 1557 | * all error checks are performed and memory in the queue is reserved. |
| 1558 | * Return values: |
| 1559 | * < 0: error. skb freed, reference to sock dropped. |
| 1560 | * 0: continue |
| 1561 | * 1: repeat lookup - reference dropped while waiting for socket memory. |
| 1562 | */ |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 1563 | int netlink_attachskb(struct sock *sk, struct sk_buff *skb, |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1564 | long *timeo, struct sock *ssk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | { |
| 1566 | struct netlink_sock *nlk; |
| 1567 | |
| 1568 | nlk = nlk_sk(sk); |
| 1569 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 1570 | if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
| 1571 | test_bit(NETLINK_CONGESTED, &nlk->state)) && |
| 1572 | !netlink_skb_is_mmaped(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | DECLARE_WAITQUEUE(wait, current); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1574 | if (!*timeo) { |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1575 | if (!ssk || netlink_is_kernel(ssk)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | netlink_overrun(sk); |
| 1577 | sock_put(sk); |
| 1578 | kfree_skb(skb); |
| 1579 | return -EAGAIN; |
| 1580 | } |
| 1581 | |
| 1582 | __set_current_state(TASK_INTERRUPTIBLE); |
| 1583 | add_wait_queue(&nlk->wait, &wait); |
| 1584 | |
| 1585 | if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 1586 | test_bit(NETLINK_CONGESTED, &nlk->state)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | !sock_flag(sk, SOCK_DEAD)) |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1588 | *timeo = schedule_timeout(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | |
| 1590 | __set_current_state(TASK_RUNNING); |
| 1591 | remove_wait_queue(&nlk->wait, &wait); |
| 1592 | sock_put(sk); |
| 1593 | |
| 1594 | if (signal_pending(current)) { |
| 1595 | kfree_skb(skb); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1596 | return sock_intr_errno(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | } |
| 1598 | return 1; |
| 1599 | } |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1600 | netlink_skb_set_owner_r(skb, sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | return 0; |
| 1602 | } |
| 1603 | |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1604 | static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | int len = skb->len; |
| 1607 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 1608 | netlink_deliver_tap(skb); |
| 1609 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1610 | #ifdef CONFIG_NETLINK_MMAP |
| 1611 | if (netlink_skb_is_mmaped(skb)) |
| 1612 | netlink_queue_mmaped_skb(sk, skb); |
| 1613 | else if (netlink_rx_is_mmaped(sk)) |
| 1614 | netlink_ring_set_copied(sk, skb); |
| 1615 | else |
| 1616 | #endif /* CONFIG_NETLINK_MMAP */ |
| 1617 | skb_queue_tail(&sk->sk_receive_queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | sk->sk_data_ready(sk, len); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1619 | return len; |
| 1620 | } |
| 1621 | |
| 1622 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
| 1623 | { |
| 1624 | int len = __netlink_sendskb(sk, skb); |
| 1625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | sock_put(sk); |
| 1627 | return len; |
| 1628 | } |
| 1629 | |
| 1630 | void netlink_detachskb(struct sock *sk, struct sk_buff *skb) |
| 1631 | { |
| 1632 | kfree_skb(skb); |
| 1633 | sock_put(sk); |
| 1634 | } |
| 1635 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1636 | 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] | 1637 | { |
| 1638 | int delta; |
| 1639 | |
Patrick McHardy | 1298ca4 | 2013-04-17 06:46:59 +0000 | [diff] [blame] | 1640 | WARN_ON(skb->sk != NULL); |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 1641 | if (netlink_skb_is_mmaped(skb)) |
| 1642 | return skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1644 | delta = skb->end - skb->tail; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1645 | if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | return skb; |
| 1647 | |
| 1648 | if (skb_shared(skb)) { |
| 1649 | struct sk_buff *nskb = skb_clone(skb, allocation); |
| 1650 | if (!nskb) |
| 1651 | return skb; |
Eric Dumazet | 8460c00 | 2012-04-19 02:24:28 +0000 | [diff] [blame] | 1652 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | skb = nskb; |
| 1654 | } |
| 1655 | |
| 1656 | if (!pskb_expand_head(skb, 0, -delta, allocation)) |
| 1657 | skb->truesize -= delta; |
| 1658 | |
| 1659 | return skb; |
| 1660 | } |
| 1661 | |
Eric W. Biederman | 3fbc290 | 2012-05-24 17:21:27 -0600 | [diff] [blame] | 1662 | static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb, |
| 1663 | struct sock *ssk) |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1664 | { |
| 1665 | int ret; |
| 1666 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1667 | |
| 1668 | ret = -ECONNREFUSED; |
| 1669 | if (nlk->netlink_rcv != NULL) { |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 1670 | /* We could do a netlink_deliver_tap(skb) here as well |
| 1671 | * but since this is intended for the kernel only, we |
| 1672 | * should rather let it stay under the hood. |
| 1673 | */ |
| 1674 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1675 | ret = skb->len; |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1676 | netlink_skb_set_owner_r(skb, sk); |
Patrick McHardy | e32123e | 2013-04-17 06:46:57 +0000 | [diff] [blame] | 1677 | NETLINK_CB(skb).sk = ssk; |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1678 | nlk->netlink_rcv(skb); |
Eric Dumazet | bfb253c | 2012-04-22 21:30:29 +0000 | [diff] [blame] | 1679 | consume_skb(skb); |
| 1680 | } else { |
| 1681 | kfree_skb(skb); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1682 | } |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1683 | sock_put(sk); |
| 1684 | return ret; |
| 1685 | } |
| 1686 | |
| 1687 | int netlink_unicast(struct sock *ssk, struct sk_buff *skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1688 | u32 portid, int nonblock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | { |
| 1690 | struct sock *sk; |
| 1691 | int err; |
| 1692 | long timeo; |
| 1693 | |
| 1694 | skb = netlink_trim(skb, gfp_any()); |
| 1695 | |
| 1696 | timeo = sock_sndtimeo(ssk, nonblock); |
| 1697 | retry: |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1698 | sk = netlink_getsockbyportid(ssk, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | if (IS_ERR(sk)) { |
| 1700 | kfree_skb(skb); |
| 1701 | return PTR_ERR(sk); |
| 1702 | } |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1703 | if (netlink_is_kernel(sk)) |
Eric W. Biederman | 3fbc290 | 2012-05-24 17:21:27 -0600 | [diff] [blame] | 1704 | return netlink_unicast_kernel(sk, skb, ssk); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1705 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1706 | if (sk_filter(sk, skb)) { |
Wang Chen | 8487460 | 2008-07-01 19:55:09 -0700 | [diff] [blame] | 1707 | err = skb->len; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1708 | kfree_skb(skb); |
| 1709 | sock_put(sk); |
| 1710 | return err; |
| 1711 | } |
| 1712 | |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 1713 | err = netlink_attachskb(sk, skb, &timeo, ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | if (err == 1) |
| 1715 | goto retry; |
| 1716 | if (err) |
| 1717 | return err; |
| 1718 | |
Denis V. Lunev | 7ee015e | 2007-10-10 21:14:03 -0700 | [diff] [blame] | 1719 | return netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1721 | EXPORT_SYMBOL(netlink_unicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1723 | struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size, |
| 1724 | u32 dst_portid, gfp_t gfp_mask) |
| 1725 | { |
| 1726 | #ifdef CONFIG_NETLINK_MMAP |
| 1727 | struct sock *sk = NULL; |
| 1728 | struct sk_buff *skb; |
| 1729 | struct netlink_ring *ring; |
| 1730 | struct nl_mmap_hdr *hdr; |
| 1731 | unsigned int maxlen; |
| 1732 | |
| 1733 | sk = netlink_getsockbyportid(ssk, dst_portid); |
| 1734 | if (IS_ERR(sk)) |
| 1735 | goto out; |
| 1736 | |
| 1737 | ring = &nlk_sk(sk)->rx_ring; |
| 1738 | /* fast-path without atomic ops for common case: non-mmaped receiver */ |
| 1739 | if (ring->pg_vec == NULL) |
| 1740 | goto out_put; |
| 1741 | |
| 1742 | skb = alloc_skb_head(gfp_mask); |
| 1743 | if (skb == NULL) |
| 1744 | goto err1; |
| 1745 | |
| 1746 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 1747 | /* check again under lock */ |
| 1748 | if (ring->pg_vec == NULL) |
| 1749 | goto out_free; |
| 1750 | |
| 1751 | maxlen = ring->frame_size - NL_MMAP_HDRLEN; |
| 1752 | if (maxlen < size) |
| 1753 | goto out_free; |
| 1754 | |
| 1755 | netlink_forward_ring(ring); |
| 1756 | hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED); |
| 1757 | if (hdr == NULL) |
| 1758 | goto err2; |
| 1759 | netlink_ring_setup_skb(skb, sk, ring, hdr); |
| 1760 | netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED); |
| 1761 | atomic_inc(&ring->pending); |
| 1762 | netlink_increment_head(ring); |
| 1763 | |
| 1764 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 1765 | return skb; |
| 1766 | |
| 1767 | err2: |
| 1768 | kfree_skb(skb); |
| 1769 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 1770 | netlink_overrun(sk); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1771 | err1: |
| 1772 | sock_put(sk); |
| 1773 | return NULL; |
| 1774 | |
| 1775 | out_free: |
| 1776 | kfree_skb(skb); |
| 1777 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 1778 | out_put: |
| 1779 | sock_put(sk); |
| 1780 | out: |
| 1781 | #endif |
| 1782 | return alloc_skb(size, gfp_mask); |
| 1783 | } |
| 1784 | EXPORT_SYMBOL_GPL(netlink_alloc_skb); |
| 1785 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1786 | int netlink_has_listeners(struct sock *sk, unsigned int group) |
| 1787 | { |
| 1788 | int res = 0; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1789 | struct listeners *listeners; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1790 | |
Denis V. Lunev | aed8156 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1791 | BUG_ON(!netlink_is_kernel(sk)); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1792 | |
| 1793 | rcu_read_lock(); |
| 1794 | listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners); |
| 1795 | |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1796 | if (listeners && group - 1 < nl_table[sk->sk_protocol].groups) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1797 | res = test_bit(group - 1, listeners->masks); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1798 | |
| 1799 | rcu_read_unlock(); |
| 1800 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1801 | return res; |
| 1802 | } |
| 1803 | EXPORT_SYMBOL_GPL(netlink_has_listeners); |
| 1804 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1805 | static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | { |
| 1807 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1808 | |
| 1809 | if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf && |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 1810 | !test_bit(NETLINK_CONGESTED, &nlk->state)) { |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1811 | netlink_skb_set_owner_r(skb, sk); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1812 | __netlink_sendskb(sk, skb); |
stephen hemminger | 2c645800 | 2011-12-22 08:52:03 +0000 | [diff] [blame] | 1813 | return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | } |
| 1815 | return -1; |
| 1816 | } |
| 1817 | |
| 1818 | struct netlink_broadcast_data { |
| 1819 | struct sock *exclude_sk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1820 | struct net *net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1821 | u32 portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | u32 group; |
| 1823 | int failure; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1824 | int delivery_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | int congested; |
| 1826 | int delivered; |
Al Viro | 7d877f3 | 2005-10-21 03:20:43 -0400 | [diff] [blame] | 1827 | gfp_t allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | struct sk_buff *skb, *skb2; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1829 | int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data); |
| 1830 | void *tx_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | }; |
| 1832 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1833 | static int do_one_broadcast(struct sock *sk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | struct netlink_broadcast_data *p) |
| 1835 | { |
| 1836 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1837 | int val; |
| 1838 | |
| 1839 | if (p->exclude_sk == sk) |
| 1840 | goto out; |
| 1841 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1842 | if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups || |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1843 | !test_bit(p->group - 1, nlk->groups)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | goto out; |
| 1845 | |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 1846 | if (!net_eq(sock_net(sk), p->net)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1847 | goto out; |
| 1848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | if (p->failure) { |
| 1850 | netlink_overrun(sk); |
| 1851 | goto out; |
| 1852 | } |
| 1853 | |
| 1854 | sock_hold(sk); |
| 1855 | if (p->skb2 == NULL) { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1856 | if (skb_shared(p->skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | p->skb2 = skb_clone(p->skb, p->allocation); |
| 1858 | } else { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1859 | p->skb2 = skb_get(p->skb); |
| 1860 | /* |
| 1861 | * skb ownership may have been set when |
| 1862 | * delivered to a previous socket. |
| 1863 | */ |
| 1864 | skb_orphan(p->skb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | } |
| 1866 | } |
| 1867 | if (p->skb2 == NULL) { |
| 1868 | netlink_overrun(sk); |
| 1869 | /* Clone failed. Notify ALL listeners. */ |
| 1870 | p->failure = 1; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1871 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1872 | p->delivery_failure = 1; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1873 | } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) { |
| 1874 | kfree_skb(p->skb2); |
| 1875 | p->skb2 = NULL; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1876 | } else if (sk_filter(sk, p->skb2)) { |
| 1877 | kfree_skb(p->skb2); |
| 1878 | p->skb2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) { |
| 1880 | netlink_overrun(sk); |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1881 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1882 | p->delivery_failure = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | } else { |
| 1884 | p->congested |= val; |
| 1885 | p->delivered = 1; |
| 1886 | p->skb2 = NULL; |
| 1887 | } |
| 1888 | sock_put(sk); |
| 1889 | |
| 1890 | out: |
| 1891 | return 0; |
| 1892 | } |
| 1893 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1894 | int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1895 | u32 group, gfp_t allocation, |
| 1896 | int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), |
| 1897 | void *filter_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1899 | struct net *net = sock_net(ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | struct netlink_broadcast_data info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | struct sock *sk; |
| 1902 | |
| 1903 | skb = netlink_trim(skb, allocation); |
| 1904 | |
| 1905 | info.exclude_sk = ssk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1906 | info.net = net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1907 | info.portid = portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | info.group = group; |
| 1909 | info.failure = 0; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1910 | info.delivery_failure = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | info.congested = 0; |
| 1912 | info.delivered = 0; |
| 1913 | info.allocation = allocation; |
| 1914 | info.skb = skb; |
| 1915 | info.skb2 = NULL; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1916 | info.tx_filter = filter; |
| 1917 | info.tx_data = filter_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | |
| 1919 | /* While we sleep in clone, do not allow to change socket list */ |
| 1920 | |
| 1921 | netlink_lock_table(); |
| 1922 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1923 | sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | do_one_broadcast(sk, &info); |
| 1925 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1926 | consume_skb(skb); |
Tommy S. Christensen | aa1c6a6 | 2005-05-19 13:07:32 -0700 | [diff] [blame] | 1927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | netlink_unlock_table(); |
| 1929 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1930 | if (info.delivery_failure) { |
| 1931 | kfree_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1932 | return -ENOBUFS; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1933 | } |
| 1934 | consume_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | if (info.delivered) { |
| 1937 | if (info.congested && (allocation & __GFP_WAIT)) |
| 1938 | yield(); |
| 1939 | return 0; |
| 1940 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | return -ESRCH; |
| 1942 | } |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1943 | EXPORT_SYMBOL(netlink_broadcast_filtered); |
| 1944 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1945 | int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1946 | u32 group, gfp_t allocation) |
| 1947 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1948 | return netlink_broadcast_filtered(ssk, skb, portid, group, allocation, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1949 | NULL, NULL); |
| 1950 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1951 | EXPORT_SYMBOL(netlink_broadcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | |
| 1953 | struct netlink_set_err_data { |
| 1954 | struct sock *exclude_sk; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1955 | u32 portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | u32 group; |
| 1957 | int code; |
| 1958 | }; |
| 1959 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1960 | 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] | 1961 | { |
| 1962 | struct netlink_sock *nlk = nlk_sk(sk); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1963 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | |
| 1965 | if (sk == p->exclude_sk) |
| 1966 | goto out; |
| 1967 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1968 | if (!net_eq(sock_net(sk), sock_net(p->exclude_sk))) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1969 | goto out; |
| 1970 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1971 | if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups || |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1972 | !test_bit(p->group - 1, nlk->groups)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | goto out; |
| 1974 | |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1975 | if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) { |
| 1976 | ret = 1; |
| 1977 | goto out; |
| 1978 | } |
| 1979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | sk->sk_err = p->code; |
| 1981 | sk->sk_error_report(sk); |
| 1982 | out: |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1983 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | } |
| 1985 | |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1986 | /** |
| 1987 | * netlink_set_err - report error to broadcast listeners |
| 1988 | * @ssk: the kernel netlink socket, as returned by netlink_kernel_create() |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1989 | * @portid: the PORTID of a process that we want to skip (if any) |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1990 | * @groups: the broadcast group that will notice the error |
| 1991 | * @code: error code, must be negative (as usual in kernelspace) |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 1992 | * |
| 1993 | * This function returns the number of broadcast listeners that have set the |
| 1994 | * NETLINK_RECV_NO_ENOBUFS socket option. |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 1995 | */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1996 | int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | { |
| 1998 | struct netlink_set_err_data info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | struct sock *sk; |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2000 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | |
| 2002 | info.exclude_sk = ssk; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2003 | info.portid = portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | info.group = group; |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 2005 | /* sk->sk_err wants a positive error value */ |
| 2006 | info.code = -code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | |
| 2008 | read_lock(&nl_table_lock); |
| 2009 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2010 | sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list) |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2011 | ret += do_one_set_err(sk, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | |
| 2013 | read_unlock(&nl_table_lock); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2014 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | } |
Pablo Neira Ayuso | dd5b6ce | 2009-03-23 13:21:06 +0100 | [diff] [blame] | 2016 | EXPORT_SYMBOL(netlink_set_err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2018 | /* must be called with netlink table grabbed */ |
| 2019 | static void netlink_update_socket_mc(struct netlink_sock *nlk, |
| 2020 | unsigned int group, |
| 2021 | int is_new) |
| 2022 | { |
| 2023 | int old, new = !!is_new, subscriptions; |
| 2024 | |
| 2025 | old = test_bit(group - 1, nlk->groups); |
| 2026 | subscriptions = nlk->subscriptions - old + new; |
| 2027 | if (new) |
| 2028 | __set_bit(group - 1, nlk->groups); |
| 2029 | else |
| 2030 | __clear_bit(group - 1, nlk->groups); |
| 2031 | netlink_update_subscriptions(&nlk->sk, subscriptions); |
| 2032 | netlink_update_listeners(&nlk->sk); |
| 2033 | } |
| 2034 | |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2035 | static int netlink_setsockopt(struct socket *sock, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2036 | char __user *optval, unsigned int optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2037 | { |
| 2038 | struct sock *sk = sock->sk; |
| 2039 | struct netlink_sock *nlk = nlk_sk(sk); |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 2040 | unsigned int val = 0; |
| 2041 | int err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2042 | |
| 2043 | if (level != SOL_NETLINK) |
| 2044 | return -ENOPROTOOPT; |
| 2045 | |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 2046 | if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING && |
| 2047 | optlen >= sizeof(int) && |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 2048 | get_user(val, (unsigned int __user *)optval)) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2049 | return -EFAULT; |
| 2050 | |
| 2051 | switch (optname) { |
| 2052 | case NETLINK_PKTINFO: |
| 2053 | if (val) |
| 2054 | nlk->flags |= NETLINK_RECV_PKTINFO; |
| 2055 | else |
| 2056 | nlk->flags &= ~NETLINK_RECV_PKTINFO; |
| 2057 | err = 0; |
| 2058 | break; |
| 2059 | case NETLINK_ADD_MEMBERSHIP: |
| 2060 | case NETLINK_DROP_MEMBERSHIP: { |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2061 | if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV)) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2062 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2063 | err = netlink_realloc_groups(sk); |
| 2064 | if (err) |
| 2065 | return err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2066 | if (!val || val - 1 >= nlk->ngroups) |
| 2067 | return -EINVAL; |
| 2068 | netlink_table_grab(); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2069 | netlink_update_socket_mc(nlk, val, |
| 2070 | optname == NETLINK_ADD_MEMBERSHIP); |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2071 | netlink_table_ungrab(); |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 2072 | |
| 2073 | if (nlk->netlink_bind) |
| 2074 | nlk->netlink_bind(val); |
| 2075 | |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2076 | err = 0; |
| 2077 | break; |
| 2078 | } |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 2079 | case NETLINK_BROADCAST_ERROR: |
| 2080 | if (val) |
| 2081 | nlk->flags |= NETLINK_BROADCAST_SEND_ERROR; |
| 2082 | else |
| 2083 | nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR; |
| 2084 | err = 0; |
| 2085 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2086 | case NETLINK_NO_ENOBUFS: |
| 2087 | if (val) { |
| 2088 | nlk->flags |= NETLINK_RECV_NO_ENOBUFS; |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 2089 | clear_bit(NETLINK_CONGESTED, &nlk->state); |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2090 | wake_up_interruptible(&nlk->wait); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2091 | } else { |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2092 | nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2093 | } |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2094 | err = 0; |
| 2095 | break; |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 2096 | #ifdef CONFIG_NETLINK_MMAP |
| 2097 | case NETLINK_RX_RING: |
| 2098 | case NETLINK_TX_RING: { |
| 2099 | struct nl_mmap_req req; |
| 2100 | |
| 2101 | /* Rings might consume more memory than queue limits, require |
| 2102 | * CAP_NET_ADMIN. |
| 2103 | */ |
| 2104 | if (!capable(CAP_NET_ADMIN)) |
| 2105 | return -EPERM; |
| 2106 | if (optlen < sizeof(req)) |
| 2107 | return -EINVAL; |
| 2108 | if (copy_from_user(&req, optval, sizeof(req))) |
| 2109 | return -EFAULT; |
| 2110 | err = netlink_set_ring(sk, &req, false, |
| 2111 | optname == NETLINK_TX_RING); |
| 2112 | break; |
| 2113 | } |
| 2114 | #endif /* CONFIG_NETLINK_MMAP */ |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2115 | default: |
| 2116 | err = -ENOPROTOOPT; |
| 2117 | } |
| 2118 | return err; |
| 2119 | } |
| 2120 | |
| 2121 | static int netlink_getsockopt(struct socket *sock, int level, int optname, |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2122 | char __user *optval, int __user *optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2123 | { |
| 2124 | struct sock *sk = sock->sk; |
| 2125 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2126 | int len, val, err; |
| 2127 | |
| 2128 | if (level != SOL_NETLINK) |
| 2129 | return -ENOPROTOOPT; |
| 2130 | |
| 2131 | if (get_user(len, optlen)) |
| 2132 | return -EFAULT; |
| 2133 | if (len < 0) |
| 2134 | return -EINVAL; |
| 2135 | |
| 2136 | switch (optname) { |
| 2137 | case NETLINK_PKTINFO: |
| 2138 | if (len < sizeof(int)) |
| 2139 | return -EINVAL; |
| 2140 | len = sizeof(int); |
| 2141 | val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0; |
Heiko Carstens | a27b58f | 2006-10-30 15:06:12 -0800 | [diff] [blame] | 2142 | if (put_user(len, optlen) || |
| 2143 | put_user(val, optval)) |
| 2144 | return -EFAULT; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2145 | err = 0; |
| 2146 | break; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 2147 | case NETLINK_BROADCAST_ERROR: |
| 2148 | if (len < sizeof(int)) |
| 2149 | return -EINVAL; |
| 2150 | len = sizeof(int); |
| 2151 | val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0; |
| 2152 | if (put_user(len, optlen) || |
| 2153 | put_user(val, optval)) |
| 2154 | return -EFAULT; |
| 2155 | err = 0; |
| 2156 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2157 | case NETLINK_NO_ENOBUFS: |
| 2158 | if (len < sizeof(int)) |
| 2159 | return -EINVAL; |
| 2160 | len = sizeof(int); |
| 2161 | val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0; |
| 2162 | if (put_user(len, optlen) || |
| 2163 | put_user(val, optval)) |
| 2164 | return -EFAULT; |
| 2165 | err = 0; |
| 2166 | break; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2167 | default: |
| 2168 | err = -ENOPROTOOPT; |
| 2169 | } |
| 2170 | return err; |
| 2171 | } |
| 2172 | |
| 2173 | static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb) |
| 2174 | { |
| 2175 | struct nl_pktinfo info; |
| 2176 | |
| 2177 | info.group = NETLINK_CB(skb).dst_group; |
| 2178 | put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info); |
| 2179 | } |
| 2180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock, |
| 2182 | struct msghdr *msg, size_t len) |
| 2183 | { |
| 2184 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 2185 | struct sock *sk = sock->sk; |
| 2186 | struct netlink_sock *nlk = nlk_sk(sk); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2187 | struct sockaddr_nl *addr = msg->msg_name; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2188 | u32 dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2189 | u32 dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | struct sk_buff *skb; |
| 2191 | int err; |
| 2192 | struct scm_cookie scm; |
| 2193 | |
| 2194 | if (msg->msg_flags&MSG_OOB) |
| 2195 | return -EOPNOTSUPP; |
| 2196 | |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 2197 | if (NULL == siocb->scm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | siocb->scm = &scm; |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 2199 | |
Eric Dumazet | e0e3cea | 2012-08-21 06:21:17 +0000 | [diff] [blame] | 2200 | err = scm_send(sock, msg, siocb->scm, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | if (err < 0) |
| 2202 | return err; |
| 2203 | |
| 2204 | if (msg->msg_namelen) { |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2205 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | if (addr->nl_family != AF_NETLINK) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2207 | goto out; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2208 | dst_portid = addr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2209 | dst_group = ffs(addr->nl_groups); |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2210 | err = -EPERM; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2211 | if ((dst_group || dst_portid) && |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2212 | !netlink_capable(sock, NL_CFG_F_NONROOT_SEND)) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2213 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | } else { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2215 | dst_portid = nlk->dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2216 | dst_group = nlk->dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | } |
| 2218 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2219 | if (!nlk->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | err = netlink_autobind(sock); |
| 2221 | if (err) |
| 2222 | goto out; |
| 2223 | } |
| 2224 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 2225 | if (netlink_tx_is_mmaped(sk) && |
| 2226 | msg->msg_iov->iov_base == NULL) { |
| 2227 | err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, |
| 2228 | siocb); |
| 2229 | goto out; |
| 2230 | } |
| 2231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | err = -EMSGSIZE; |
| 2233 | if (len > sk->sk_sndbuf - 32) |
| 2234 | goto out; |
| 2235 | err = -ENOBUFS; |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 2236 | skb = netlink_alloc_large_skb(len, dst_group); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2237 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | goto out; |
| 2239 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2240 | NETLINK_CB(skb).portid = nlk->portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2241 | NETLINK_CB(skb).dst_group = dst_group; |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 2242 | NETLINK_CB(skb).creds = siocb->scm->creds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | err = -EFAULT; |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2245 | if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | kfree_skb(skb); |
| 2247 | goto out; |
| 2248 | } |
| 2249 | |
| 2250 | err = security_netlink_send(sk, skb); |
| 2251 | if (err) { |
| 2252 | kfree_skb(skb); |
| 2253 | goto out; |
| 2254 | } |
| 2255 | |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2256 | if (dst_group) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | atomic_inc(&skb->users); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2258 | netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2260 | err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | |
| 2262 | out: |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2263 | scm_destroy(siocb->scm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | return err; |
| 2265 | } |
| 2266 | |
| 2267 | static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock, |
| 2268 | struct msghdr *msg, size_t len, |
| 2269 | int flags) |
| 2270 | { |
| 2271 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 2272 | struct scm_cookie scm; |
| 2273 | struct sock *sk = sock->sk; |
| 2274 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2275 | int noblock = flags&MSG_DONTWAIT; |
| 2276 | size_t copied; |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2277 | struct sk_buff *skb, *data_skb; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2278 | int err, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | |
| 2280 | if (flags&MSG_OOB) |
| 2281 | return -EOPNOTSUPP; |
| 2282 | |
| 2283 | copied = 0; |
| 2284 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2285 | skb = skb_recv_datagram(sk, flags, noblock, &err); |
| 2286 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | goto out; |
| 2288 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2289 | data_skb = skb; |
| 2290 | |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2291 | #ifdef CONFIG_COMPAT_NETLINK_MESSAGES |
| 2292 | if (unlikely(skb_shinfo(skb)->frag_list)) { |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2293 | /* |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2294 | * If this skb has a frag_list, then here that means that we |
| 2295 | * will have to use the frag_list skb's data for compat tasks |
| 2296 | * and the regular skb's data for normal (non-compat) tasks. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2297 | * |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2298 | * If we need to send the compat skb, assign it to the |
| 2299 | * 'data_skb' variable so that it will be used below for data |
| 2300 | * copying. We keep 'skb' for everything else, including |
| 2301 | * freeing both later. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2302 | */ |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2303 | if (flags & MSG_CMSG_COMPAT) |
| 2304 | data_skb = skb_shinfo(skb)->frag_list; |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2305 | } |
| 2306 | #endif |
| 2307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | msg->msg_namelen = 0; |
| 2309 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2310 | copied = data_skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | if (len < copied) { |
| 2312 | msg->msg_flags |= MSG_TRUNC; |
| 2313 | copied = len; |
| 2314 | } |
| 2315 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2316 | skb_reset_transport_header(data_skb); |
| 2317 | err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | |
| 2319 | if (msg->msg_name) { |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2320 | struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | addr->nl_family = AF_NETLINK; |
| 2322 | addr->nl_pad = 0; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2323 | addr->nl_pid = NETLINK_CB(skb).portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2324 | addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | msg->msg_namelen = sizeof(*addr); |
| 2326 | } |
| 2327 | |
Patrick McHardy | cc9a06c | 2006-03-12 20:34:27 -0800 | [diff] [blame] | 2328 | if (nlk->flags & NETLINK_RECV_PKTINFO) |
| 2329 | netlink_cmsg_recv_pktinfo(msg, skb); |
| 2330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | if (NULL == siocb->scm) { |
| 2332 | memset(&scm, 0, sizeof(scm)); |
| 2333 | siocb->scm = &scm; |
| 2334 | } |
| 2335 | siocb->scm->creds = *NETLINK_CREDS(skb); |
Patrick McHardy | 188ccb5 | 2007-05-03 03:27:01 -0700 | [diff] [blame] | 2336 | if (flags & MSG_TRUNC) |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2337 | copied = data_skb->len; |
David S. Miller | daa3766 | 2010-08-15 23:21:50 -0700 | [diff] [blame] | 2338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | skb_free_datagram(sk, skb); |
| 2340 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2341 | if (nlk->cb_running && |
| 2342 | atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) { |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2343 | ret = netlink_dump(sk); |
| 2344 | if (ret) { |
| 2345 | sk->sk_err = ret; |
| 2346 | sk->sk_error_report(sk); |
| 2347 | } |
| 2348 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | |
| 2350 | scm_recv(sock, msg, siocb->scm, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | out: |
| 2352 | netlink_rcv_wake(sk); |
| 2353 | return err ? : copied; |
| 2354 | } |
| 2355 | |
| 2356 | static void netlink_data_ready(struct sock *sk, int len) |
| 2357 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2358 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | } |
| 2360 | |
| 2361 | /* |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2362 | * We export these functions to other modules. They provide a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | * complete set of kernel non-blocking support for message |
| 2364 | * queueing. |
| 2365 | */ |
| 2366 | |
| 2367 | struct sock * |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 2368 | __netlink_kernel_create(struct net *net, int unit, struct module *module, |
| 2369 | struct netlink_kernel_cfg *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | { |
| 2371 | struct socket *sock; |
| 2372 | struct sock *sk; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2373 | struct netlink_sock *nlk; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2374 | struct listeners *listeners = NULL; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2375 | struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL; |
| 2376 | unsigned int groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 2378 | BUG_ON(!nl_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2380 | if (unit < 0 || unit >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | return NULL; |
| 2382 | |
| 2383 | if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock)) |
| 2384 | return NULL; |
| 2385 | |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 2386 | /* |
| 2387 | * We have to just have a reference on the net from sk, but don't |
| 2388 | * get_net it. Besides, we cannot get and then put the net here. |
| 2389 | * So we create one inside init_net and the move it to net. |
| 2390 | */ |
| 2391 | |
| 2392 | if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0) |
| 2393 | goto out_sock_release_nosk; |
| 2394 | |
| 2395 | sk = sock->sk; |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 2396 | sk_change_net(sk, net); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2397 | |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2398 | if (!cfg || cfg->groups < 32) |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2399 | groups = 32; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2400 | else |
| 2401 | groups = cfg->groups; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2402 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2403 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2404 | if (!listeners) |
| 2405 | goto out_sock_release; |
| 2406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | sk->sk_data_ready = netlink_data_ready; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2408 | if (cfg && cfg->input) |
| 2409 | nlk_sk(sk)->netlink_rcv = cfg->input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2411 | if (netlink_insert(sk, net, 0)) |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2412 | goto out_sock_release; |
| 2413 | |
| 2414 | nlk = nlk_sk(sk); |
| 2415 | nlk->flags |= NETLINK_KERNEL_SOCKET; |
| 2416 | |
| 2417 | netlink_table_grab(); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2418 | if (!nl_table[unit].registered) { |
| 2419 | nl_table[unit].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2420 | rcu_assign_pointer(nl_table[unit].listeners, listeners); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2421 | nl_table[unit].cb_mutex = cb_mutex; |
| 2422 | nl_table[unit].module = module; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2423 | if (cfg) { |
| 2424 | nl_table[unit].bind = cfg->bind; |
| 2425 | nl_table[unit].flags = cfg->flags; |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2426 | if (cfg->compare) |
| 2427 | nl_table[unit].compare = cfg->compare; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2428 | } |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2429 | nl_table[unit].registered = 1; |
Jesper Juhl | f937f1f46 | 2007-10-15 01:39:12 -0700 | [diff] [blame] | 2430 | } else { |
| 2431 | kfree(listeners); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 2432 | nl_table[unit].registered++; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2433 | } |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2434 | netlink_table_ungrab(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2435 | return sk; |
| 2436 | |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2437 | out_sock_release: |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2438 | kfree(listeners); |
Denis V. Lunev | 9dfbec1 | 2008-02-29 11:17:56 -0800 | [diff] [blame] | 2439 | netlink_kernel_release(sk); |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 2440 | return NULL; |
| 2441 | |
| 2442 | out_sock_release_nosk: |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2443 | sock_release(sock); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2444 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | } |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 2446 | EXPORT_SYMBOL(__netlink_kernel_create); |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 2447 | |
| 2448 | void |
| 2449 | netlink_kernel_release(struct sock *sk) |
| 2450 | { |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 2451 | sk_release_kernel(sk); |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 2452 | } |
| 2453 | EXPORT_SYMBOL(netlink_kernel_release); |
| 2454 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2455 | int __netlink_change_ngroups(struct sock *sk, unsigned int groups) |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2456 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2457 | struct listeners *new, *old; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2458 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2459 | |
| 2460 | if (groups < 32) |
| 2461 | groups = 32; |
| 2462 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2463 | if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2464 | new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC); |
| 2465 | if (!new) |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2466 | return -ENOMEM; |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 2467 | old = nl_deref_protected(tbl->listeners); |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2468 | memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups)); |
| 2469 | rcu_assign_pointer(tbl->listeners, new); |
| 2470 | |
Lai Jiangshan | 37b6b93 | 2011-03-15 18:01:42 +0800 | [diff] [blame] | 2471 | kfree_rcu(old, rcu); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2472 | } |
| 2473 | tbl->groups = groups; |
| 2474 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2475 | return 0; |
| 2476 | } |
| 2477 | |
| 2478 | /** |
| 2479 | * netlink_change_ngroups - change number of multicast groups |
| 2480 | * |
| 2481 | * This changes the number of multicast groups that are available |
| 2482 | * on a certain netlink family. Note that it is not possible to |
| 2483 | * change the number of groups to below 32. Also note that it does |
| 2484 | * not implicitly call netlink_clear_multicast_users() when the |
| 2485 | * number of groups is reduced. |
| 2486 | * |
| 2487 | * @sk: The kernel netlink socket, as returned by netlink_kernel_create(). |
| 2488 | * @groups: The new number of groups. |
| 2489 | */ |
| 2490 | int netlink_change_ngroups(struct sock *sk, unsigned int groups) |
| 2491 | { |
| 2492 | int err; |
| 2493 | |
| 2494 | netlink_table_grab(); |
| 2495 | err = __netlink_change_ngroups(sk, groups); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2496 | netlink_table_ungrab(); |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2497 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2498 | return err; |
| 2499 | } |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2500 | |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2501 | void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group) |
| 2502 | { |
| 2503 | struct sock *sk; |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2504 | struct netlink_table *tbl = &nl_table[ksk->sk_protocol]; |
| 2505 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2506 | sk_for_each_bound(sk, &tbl->mc_list) |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2507 | netlink_update_socket_mc(nlk_sk(sk), group, 0); |
| 2508 | } |
| 2509 | |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2510 | /** |
| 2511 | * netlink_clear_multicast_users - kick off multicast listeners |
| 2512 | * |
| 2513 | * This function removes all listeners from the given group. |
| 2514 | * @ksk: The kernel netlink socket, as returned by |
| 2515 | * netlink_kernel_create(). |
| 2516 | * @group: The multicast group to clear. |
| 2517 | */ |
| 2518 | void netlink_clear_multicast_users(struct sock *ksk, unsigned int group) |
| 2519 | { |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2520 | netlink_table_grab(); |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2521 | __netlink_clear_multicast_users(ksk, group); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2522 | netlink_table_ungrab(); |
| 2523 | } |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2524 | |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2525 | struct nlmsghdr * |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2526 | __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags) |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2527 | { |
| 2528 | struct nlmsghdr *nlh; |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2529 | int size = nlmsg_msg_size(len); |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2530 | |
| 2531 | nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size)); |
| 2532 | nlh->nlmsg_type = type; |
| 2533 | nlh->nlmsg_len = size; |
| 2534 | nlh->nlmsg_flags = flags; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2535 | nlh->nlmsg_pid = portid; |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2536 | nlh->nlmsg_seq = seq; |
| 2537 | if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0) |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2538 | memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size); |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2539 | return nlh; |
| 2540 | } |
| 2541 | EXPORT_SYMBOL(__nlmsg_put); |
| 2542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | /* |
| 2544 | * It looks a bit ugly. |
| 2545 | * It would be better to create kernel thread. |
| 2546 | */ |
| 2547 | |
| 2548 | static int netlink_dump(struct sock *sk) |
| 2549 | { |
| 2550 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2551 | struct netlink_callback *cb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2552 | struct sk_buff *skb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | struct nlmsghdr *nlh; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2554 | int len, err = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2555 | int alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2557 | mutex_lock(nlk->cb_mutex); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2558 | if (!nlk->cb_running) { |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2559 | err = -EINVAL; |
| 2560 | goto errout_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | } |
| 2562 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2563 | cb = &nlk->cb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2564 | alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE); |
| 2565 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2566 | if (!netlink_rx_is_mmaped(sk) && |
| 2567 | atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf) |
| 2568 | goto errout_skb; |
| 2569 | skb = netlink_alloc_skb(sk, alloc_size, nlk->portid, GFP_KERNEL); |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2570 | if (!skb) |
Dan Carpenter | c63d6ea | 2011-06-15 03:11:42 +0000 | [diff] [blame] | 2571 | goto errout_skb; |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2572 | netlink_skb_set_owner_r(skb, sk); |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | len = cb->dump(skb, cb); |
| 2575 | |
| 2576 | if (len > 0) { |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2577 | mutex_unlock(nlk->cb_mutex); |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 2578 | |
| 2579 | if (sk_filter(sk, skb)) |
| 2580 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 2581 | else |
| 2582 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | return 0; |
| 2584 | } |
| 2585 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2586 | nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI); |
| 2587 | if (!nlh) |
| 2588 | goto errout_skb; |
| 2589 | |
Johannes Berg | 670dc28 | 2011-06-20 13:40:46 +0200 | [diff] [blame] | 2590 | nl_dump_check_consistent(cb, nlh); |
| 2591 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2592 | memcpy(nlmsg_data(nlh), &len, sizeof(len)); |
| 2593 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 2594 | if (sk_filter(sk, skb)) |
| 2595 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 2596 | else |
| 2597 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | |
Thomas Graf | a8f74b2 | 2005-11-10 02:25:52 +0100 | [diff] [blame] | 2599 | if (cb->done) |
| 2600 | cb->done(cb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2601 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2602 | nlk->cb_running = false; |
| 2603 | mutex_unlock(nlk->cb_mutex); |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2604 | module_put(cb->module); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2605 | consume_skb(cb->skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | return 0; |
Thomas Graf | 1797754 | 2005-06-18 22:53:48 -0700 | [diff] [blame] | 2607 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2608 | errout_skb: |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2609 | mutex_unlock(nlk->cb_mutex); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2610 | kfree_skb(skb); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2611 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | } |
| 2613 | |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2614 | int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
| 2615 | const struct nlmsghdr *nlh, |
| 2616 | struct netlink_dump_control *control) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | { |
| 2618 | struct netlink_callback *cb; |
| 2619 | struct sock *sk; |
| 2620 | struct netlink_sock *nlk; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2621 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2623 | /* Memory mapped dump requests need to be copied to avoid looping |
| 2624 | * on the pending state in netlink_mmap_sendmsg() while the CB hold |
| 2625 | * a reference to the skb. |
| 2626 | */ |
| 2627 | if (netlink_skb_is_mmaped(skb)) { |
| 2628 | skb = skb_copy(skb, GFP_KERNEL); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2629 | if (skb == NULL) |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2630 | return -ENOBUFS; |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2631 | } else |
| 2632 | atomic_inc(&skb->users); |
| 2633 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2634 | sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid); |
| 2635 | if (sk == NULL) { |
| 2636 | ret = -ECONNREFUSED; |
| 2637 | goto error_free; |
| 2638 | } |
| 2639 | |
| 2640 | nlk = nlk_sk(sk); |
| 2641 | mutex_lock(nlk->cb_mutex); |
| 2642 | /* A dump is in progress... */ |
| 2643 | if (nlk->cb_running) { |
| 2644 | ret = -EBUSY; |
| 2645 | goto error_unlock; |
| 2646 | } |
| 2647 | /* add reference of module which cb->dump belongs to */ |
| 2648 | if (!try_module_get(control->module)) { |
| 2649 | ret = -EPROTONOSUPPORT; |
| 2650 | goto error_unlock; |
| 2651 | } |
| 2652 | |
| 2653 | cb = &nlk->cb; |
| 2654 | memset(cb, 0, sizeof(*cb)); |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 2655 | cb->dump = control->dump; |
| 2656 | cb->done = control->done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2657 | cb->nlh = nlh; |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 2658 | cb->data = control->data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2659 | cb->module = control->module; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 2660 | cb->min_dump_alloc = control->min_dump_alloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2661 | cb->skb = skb; |
| 2662 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2663 | nlk->cb_running = true; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2664 | |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2665 | mutex_unlock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2667 | ret = netlink_dump(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | sock_put(sk); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2669 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2670 | if (ret) |
| 2671 | return ret; |
| 2672 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2673 | /* We successfully started a dump, by returning -EINTR we |
| 2674 | * signal not to send ACK even if it was requested. |
| 2675 | */ |
| 2676 | return -EINTR; |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2677 | |
| 2678 | error_unlock: |
| 2679 | sock_put(sk); |
| 2680 | mutex_unlock(nlk->cb_mutex); |
| 2681 | error_free: |
| 2682 | kfree_skb(skb); |
| 2683 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | } |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2685 | EXPORT_SYMBOL(__netlink_dump_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | |
| 2687 | void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err) |
| 2688 | { |
| 2689 | struct sk_buff *skb; |
| 2690 | struct nlmsghdr *rep; |
| 2691 | struct nlmsgerr *errmsg; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2692 | size_t payload = sizeof(*errmsg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2694 | /* error messages get the original request appened */ |
| 2695 | if (err) |
| 2696 | payload += nlmsg_len(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2698 | skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload), |
| 2699 | NETLINK_CB(in_skb).portid, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2700 | if (!skb) { |
| 2701 | struct sock *sk; |
| 2702 | |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2703 | sk = netlink_lookup(sock_net(in_skb->sk), |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2704 | in_skb->sk->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2705 | NETLINK_CB(in_skb).portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | if (sk) { |
| 2707 | sk->sk_err = ENOBUFS; |
| 2708 | sk->sk_error_report(sk); |
| 2709 | sock_put(sk); |
| 2710 | } |
| 2711 | return; |
| 2712 | } |
| 2713 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2714 | rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq, |
John Fastabend | 5dba93a | 2009-09-25 13:11:44 +0000 | [diff] [blame] | 2715 | NLMSG_ERROR, payload, 0); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2716 | errmsg = nlmsg_data(rep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | errmsg->error = err; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2718 | memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh)); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2719 | netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2721 | EXPORT_SYMBOL(netlink_ack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2723 | 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] | 2724 | struct nlmsghdr *)) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2725 | { |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2726 | struct nlmsghdr *nlh; |
| 2727 | int err; |
| 2728 | |
| 2729 | while (skb->len >= nlmsg_total_size(0)) { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2730 | int msglen; |
| 2731 | |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 2732 | nlh = nlmsg_hdr(skb); |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2733 | err = 0; |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2734 | |
Martin Murray | ad8e4b75 | 2006-01-10 13:02:29 -0800 | [diff] [blame] | 2735 | if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2736 | return 0; |
| 2737 | |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2738 | /* Only requests are handled by the kernel */ |
| 2739 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2740 | goto ack; |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2741 | |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 2742 | /* Skip control messages */ |
| 2743 | if (nlh->nlmsg_type < NLMSG_MIN_TYPE) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2744 | goto ack; |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 2745 | |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 2746 | err = cb(skb, nlh); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2747 | if (err == -EINTR) |
| 2748 | goto skip; |
| 2749 | |
| 2750 | ack: |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2751 | if (nlh->nlmsg_flags & NLM_F_ACK || err) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2752 | netlink_ack(skb, nlh, err); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2753 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2754 | skip: |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2755 | msglen = NLMSG_ALIGN(nlh->nlmsg_len); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2756 | if (msglen > skb->len) |
| 2757 | msglen = skb->len; |
| 2758 | skb_pull(skb, msglen); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2759 | } |
| 2760 | |
| 2761 | return 0; |
| 2762 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2763 | EXPORT_SYMBOL(netlink_rcv_skb); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2764 | |
| 2765 | /** |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2766 | * nlmsg_notify - send a notification netlink message |
| 2767 | * @sk: netlink socket to use |
| 2768 | * @skb: notification message |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2769 | * @portid: destination netlink portid for reports or 0 |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2770 | * @group: destination multicast group or 0 |
| 2771 | * @report: 1 to report back, 0 to disable |
| 2772 | * @flags: allocation flags |
| 2773 | */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2774 | int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid, |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2775 | unsigned int group, int report, gfp_t flags) |
| 2776 | { |
| 2777 | int err = 0; |
| 2778 | |
| 2779 | if (group) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2780 | int exclude_portid = 0; |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2781 | |
| 2782 | if (report) { |
| 2783 | atomic_inc(&skb->users); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2784 | exclude_portid = portid; |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2785 | } |
| 2786 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2787 | /* errors reported via destination sk->sk_err, but propagate |
| 2788 | * delivery errors if NETLINK_BROADCAST_ERROR flag is set */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2789 | err = nlmsg_multicast(sk, skb, exclude_portid, group, flags); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2790 | } |
| 2791 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2792 | if (report) { |
| 2793 | int err2; |
| 2794 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2795 | err2 = nlmsg_unicast(sk, skb, portid); |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2796 | if (!err || err == -ESRCH) |
| 2797 | err = err2; |
| 2798 | } |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2799 | |
| 2800 | return err; |
| 2801 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2802 | EXPORT_SYMBOL(nlmsg_notify); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | #ifdef CONFIG_PROC_FS |
| 2805 | struct nl_seq_iter { |
Denis V. Lunev | e372c414 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2806 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | int link; |
| 2808 | int hash_idx; |
| 2809 | }; |
| 2810 | |
| 2811 | static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos) |
| 2812 | { |
| 2813 | struct nl_seq_iter *iter = seq->private; |
| 2814 | int i, j; |
| 2815 | struct sock *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | loff_t off = 0; |
| 2817 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2818 | for (i = 0; i < MAX_LINKS; i++) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2819 | struct nl_portid_hash *hash = &nl_table[i].hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | |
| 2821 | for (j = 0; j <= hash->mask; j++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2822 | sk_for_each(s, &hash->table[j]) { |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 2823 | if (sock_net(s) != seq_file_net(seq)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2824 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | if (off == pos) { |
| 2826 | iter->link = i; |
| 2827 | iter->hash_idx = j; |
| 2828 | return s; |
| 2829 | } |
| 2830 | ++off; |
| 2831 | } |
| 2832 | } |
| 2833 | } |
| 2834 | return NULL; |
| 2835 | } |
| 2836 | |
| 2837 | static void *netlink_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 2838 | __acquires(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | { |
| 2840 | read_lock(&nl_table_lock); |
| 2841 | return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 2842 | } |
| 2843 | |
| 2844 | static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2845 | { |
| 2846 | struct sock *s; |
| 2847 | struct nl_seq_iter *iter; |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2848 | struct net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | int i, j; |
| 2850 | |
| 2851 | ++*pos; |
| 2852 | |
| 2853 | if (v == SEQ_START_TOKEN) |
| 2854 | return netlink_seq_socket_idx(seq, 0); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2855 | |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2856 | net = seq_file_net(seq); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2857 | iter = seq->private; |
| 2858 | s = v; |
| 2859 | do { |
| 2860 | s = sk_next(s); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2861 | } while (s && !nl_table[s->sk_protocol].compare(net, s)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | if (s) |
| 2863 | return s; |
| 2864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | i = iter->link; |
| 2866 | j = iter->hash_idx + 1; |
| 2867 | |
| 2868 | do { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2869 | struct nl_portid_hash *hash = &nl_table[i].hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | |
| 2871 | for (; j <= hash->mask; j++) { |
| 2872 | s = sk_head(&hash->table[j]); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2873 | |
| 2874 | while (s && !nl_table[s->sk_protocol].compare(net, s)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2875 | s = sk_next(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | if (s) { |
| 2877 | iter->link = i; |
| 2878 | iter->hash_idx = j; |
| 2879 | return s; |
| 2880 | } |
| 2881 | } |
| 2882 | |
| 2883 | j = 0; |
| 2884 | } while (++i < MAX_LINKS); |
| 2885 | |
| 2886 | return NULL; |
| 2887 | } |
| 2888 | |
| 2889 | static void netlink_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | 9a429c4 | 2008-01-01 21:58:02 -0800 | [diff] [blame] | 2890 | __releases(nl_table_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | { |
| 2892 | read_unlock(&nl_table_lock); |
| 2893 | } |
| 2894 | |
| 2895 | |
| 2896 | static int netlink_seq_show(struct seq_file *seq, void *v) |
| 2897 | { |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2898 | if (v == SEQ_START_TOKEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2899 | seq_puts(seq, |
| 2900 | "sk Eth Pid Groups " |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 2901 | "Rmem Wmem Dump Locks Drops Inode\n"); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2902 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | struct sock *s = v; |
| 2904 | struct netlink_sock *nlk = nlk_sk(s); |
| 2905 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2906 | seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | s, |
| 2908 | s->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2909 | nlk->portid, |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 2910 | nlk->groups ? (u32)nlk->groups[0] : 0, |
Eric Dumazet | 31e6d36 | 2009-06-17 19:05:41 -0700 | [diff] [blame] | 2911 | sk_rmem_alloc_get(s), |
| 2912 | sk_wmem_alloc_get(s), |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame^] | 2913 | nlk->cb_running, |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2914 | atomic_read(&s->sk_refcnt), |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 2915 | atomic_read(&s->sk_drops), |
| 2916 | sock_i_ino(s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | ); |
| 2918 | |
| 2919 | } |
| 2920 | return 0; |
| 2921 | } |
| 2922 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 2923 | static const struct seq_operations netlink_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | .start = netlink_seq_start, |
| 2925 | .next = netlink_seq_next, |
| 2926 | .stop = netlink_seq_stop, |
| 2927 | .show = netlink_seq_show, |
| 2928 | }; |
| 2929 | |
| 2930 | |
| 2931 | static int netlink_seq_open(struct inode *inode, struct file *file) |
| 2932 | { |
Denis V. Lunev | e372c414 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2933 | return seq_open_net(inode, file, &netlink_seq_ops, |
| 2934 | sizeof(struct nl_seq_iter)); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2935 | } |
| 2936 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 2937 | static const struct file_operations netlink_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | .owner = THIS_MODULE, |
| 2939 | .open = netlink_seq_open, |
| 2940 | .read = seq_read, |
| 2941 | .llseek = seq_lseek, |
Denis V. Lunev | e372c414 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2942 | .release = seq_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | }; |
| 2944 | |
| 2945 | #endif |
| 2946 | |
| 2947 | int netlink_register_notifier(struct notifier_block *nb) |
| 2948 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 2949 | return atomic_notifier_chain_register(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2951 | EXPORT_SYMBOL(netlink_register_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | |
| 2953 | int netlink_unregister_notifier(struct notifier_block *nb) |
| 2954 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 2955 | return atomic_notifier_chain_unregister(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2957 | EXPORT_SYMBOL(netlink_unregister_notifier); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2958 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 2959 | static const struct proto_ops netlink_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | .family = PF_NETLINK, |
| 2961 | .owner = THIS_MODULE, |
| 2962 | .release = netlink_release, |
| 2963 | .bind = netlink_bind, |
| 2964 | .connect = netlink_connect, |
| 2965 | .socketpair = sock_no_socketpair, |
| 2966 | .accept = sock_no_accept, |
| 2967 | .getname = netlink_getname, |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 2968 | .poll = netlink_poll, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2969 | .ioctl = sock_no_ioctl, |
| 2970 | .listen = sock_no_listen, |
| 2971 | .shutdown = sock_no_shutdown, |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2972 | .setsockopt = netlink_setsockopt, |
| 2973 | .getsockopt = netlink_getsockopt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | .sendmsg = netlink_sendmsg, |
| 2975 | .recvmsg = netlink_recvmsg, |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 2976 | .mmap = netlink_mmap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | .sendpage = sock_no_sendpage, |
| 2978 | }; |
| 2979 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 2980 | static const struct net_proto_family netlink_family_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | .family = PF_NETLINK, |
| 2982 | .create = netlink_create, |
| 2983 | .owner = THIS_MODULE, /* for consistency 8) */ |
| 2984 | }; |
| 2985 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 2986 | static int __net_init netlink_net_init(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2987 | { |
| 2988 | #ifdef CONFIG_PROC_FS |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 2989 | if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2990 | return -ENOMEM; |
| 2991 | #endif |
| 2992 | return 0; |
| 2993 | } |
| 2994 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 2995 | static void __net_exit netlink_net_exit(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2996 | { |
| 2997 | #ifdef CONFIG_PROC_FS |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 2998 | remove_proc_entry("netlink", net->proc_net); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2999 | #endif |
| 3000 | } |
| 3001 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3002 | static void __init netlink_add_usersock_entry(void) |
| 3003 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3004 | struct listeners *listeners; |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3005 | int groups = 32; |
| 3006 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3007 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3008 | if (!listeners) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3009 | panic("netlink_add_usersock_entry: Cannot allocate listeners\n"); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3010 | |
| 3011 | netlink_table_grab(); |
| 3012 | |
| 3013 | nl_table[NETLINK_USERSOCK].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3014 | rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3015 | nl_table[NETLINK_USERSOCK].module = THIS_MODULE; |
| 3016 | nl_table[NETLINK_USERSOCK].registered = 1; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 3017 | nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND; |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3018 | |
| 3019 | netlink_table_ungrab(); |
| 3020 | } |
| 3021 | |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 3022 | static struct pernet_operations __net_initdata netlink_net_ops = { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3023 | .init = netlink_net_init, |
| 3024 | .exit = netlink_net_exit, |
| 3025 | }; |
| 3026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | static int __init netlink_proto_init(void) |
| 3028 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | int i; |
Denis Cheng | 26ff5dd | 2007-09-16 16:36:02 -0700 | [diff] [blame] | 3030 | unsigned long limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | unsigned int order; |
| 3032 | int err = proto_register(&netlink_proto, 0); |
| 3033 | |
| 3034 | if (err != 0) |
| 3035 | goto out; |
| 3036 | |
YOSHIFUJI Hideaki / 吉藤英明 | fab2574 | 2013-01-09 07:19:48 +0000 | [diff] [blame] | 3037 | BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 3039 | nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3040 | if (!nl_table) |
| 3041 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 3043 | if (totalram_pages >= (128 * 1024)) |
| 3044 | limit = totalram_pages >> (21 - PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | else |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 3046 | limit = totalram_pages >> (23 - PAGE_SHIFT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | |
Denis Cheng | 26ff5dd | 2007-09-16 16:36:02 -0700 | [diff] [blame] | 3048 | order = get_bitmask_order(limit) - 1 + PAGE_SHIFT; |
| 3049 | limit = (1UL << order) / sizeof(struct hlist_head); |
| 3050 | order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | |
| 3052 | for (i = 0; i < MAX_LINKS; i++) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3053 | struct nl_portid_hash *hash = &nl_table[i].hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3055 | hash->table = nl_portid_hash_zalloc(1 * sizeof(*hash->table)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | if (!hash->table) { |
| 3057 | while (i-- > 0) |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 3058 | nl_portid_hash_free(nl_table[i].hash.table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | 1 * sizeof(*hash->table)); |
| 3060 | kfree(nl_table); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3061 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | hash->max_shift = order; |
| 3064 | hash->shift = 0; |
| 3065 | hash->mask = 0; |
| 3066 | hash->rehash_time = jiffies; |
Gao feng | ca15feb | 2013-06-13 10:05:38 +0800 | [diff] [blame] | 3067 | |
| 3068 | nl_table[i].compare = netlink_compare; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | } |
| 3070 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 3071 | INIT_LIST_HEAD(&netlink_tap_all); |
| 3072 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3073 | netlink_add_usersock_entry(); |
| 3074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3075 | sock_register(&netlink_family_ops); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3076 | register_pernet_subsys(&netlink_net_ops); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 3077 | /* The netlink device handler may be needed early. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | rtnetlink_init(); |
| 3079 | out: |
| 3080 | return err; |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3081 | panic: |
| 3082 | panic("netlink_init: Cannot allocate nl_table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | } |
| 3084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | core_initcall(netlink_proto_init); |