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