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