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 | |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 997 | static bool __netlink_insert(struct netlink_table *table, struct sock *sk) |
Ying Xue | c5adde9 | 2015-01-12 14:52:23 +0800 | [diff] [blame] | 998 | { |
| 999 | struct netlink_compare_arg arg = { |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 1000 | .net = sock_net(sk), |
Ying Xue | c5adde9 | 2015-01-12 14:52:23 +0800 | [diff] [blame] | 1001 | .portid = nlk_sk(sk)->portid, |
| 1002 | }; |
| 1003 | |
| 1004 | return rhashtable_lookup_compare_insert(&table->hash, |
| 1005 | &nlk_sk(sk)->node, |
| 1006 | &netlink_compare, &arg); |
| 1007 | } |
| 1008 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1009 | static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1011 | struct netlink_table *table = &nl_table[protocol]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | struct sock *sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1014 | rcu_read_lock(); |
| 1015 | sk = __netlink_lookup(table, portid, net); |
| 1016 | if (sk) |
| 1017 | sock_hold(sk); |
| 1018 | rcu_read_unlock(); |
| 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | return sk; |
| 1021 | } |
| 1022 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 1023 | static const struct proto_ops netlink_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1025 | static void |
| 1026 | netlink_update_listeners(struct sock *sk) |
| 1027 | { |
| 1028 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1029 | unsigned long mask; |
| 1030 | unsigned int i; |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1031 | struct listeners *listeners; |
| 1032 | |
| 1033 | listeners = nl_deref_protected(tbl->listeners); |
| 1034 | if (!listeners) |
| 1035 | return; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1036 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1037 | for (i = 0; i < NLGRPLONGS(tbl->groups); i++) { |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1038 | mask = 0; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1039 | sk_for_each_bound(sk, &tbl->mc_list) { |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1040 | if (i < NLGRPLONGS(nlk_sk(sk)->ngroups)) |
| 1041 | mask |= nlk_sk(sk)->groups[i]; |
| 1042 | } |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1043 | listeners->masks[i] = mask; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1044 | } |
| 1045 | /* this function is only called with the netlink table "grabbed", which |
| 1046 | * makes sure updates are visible before bind or setsockopt return. */ |
| 1047 | } |
| 1048 | |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 1049 | static int netlink_insert(struct sock *sk, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | { |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1051 | struct netlink_table *table = &nl_table[sk->sk_protocol]; |
Herbert Xu | 919d9db | 2015-01-16 17:23:48 +1100 | [diff] [blame] | 1052 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Ying Xue | c5adde9 | 2015-01-12 14:52:23 +0800 | [diff] [blame] | 1054 | lock_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
| 1056 | err = -EBUSY; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1057 | if (nlk_sk(sk)->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | goto err; |
| 1059 | |
| 1060 | err = -ENOMEM; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 1061 | if (BITS_PER_LONG > 32 && |
| 1062 | unlikely(atomic_read(&table->hash.nelems) >= UINT_MAX)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | goto err; |
| 1064 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1065 | nlk_sk(sk)->portid = portid; |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1066 | sock_hold(sk); |
Herbert Xu | 919d9db | 2015-01-16 17:23:48 +1100 | [diff] [blame] | 1067 | |
| 1068 | err = 0; |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 1069 | if (!__netlink_insert(table, sk)) { |
Herbert Xu | 919d9db | 2015-01-16 17:23:48 +1100 | [diff] [blame] | 1070 | err = -EADDRINUSE; |
Ying Xue | c5adde9 | 2015-01-12 14:52:23 +0800 | [diff] [blame] | 1071 | sock_put(sk); |
Herbert Xu | 919d9db | 2015-01-16 17:23:48 +1100 | [diff] [blame] | 1072 | } |
| 1073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | err: |
Ying Xue | c5adde9 | 2015-01-12 14:52:23 +0800 | [diff] [blame] | 1075 | release_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | return err; |
| 1077 | } |
| 1078 | |
| 1079 | static void netlink_remove(struct sock *sk) |
| 1080 | { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1081 | struct netlink_table *table; |
| 1082 | |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1083 | table = &nl_table[sk->sk_protocol]; |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 1084 | if (rhashtable_remove(&table->hash, &nlk_sk(sk)->node)) { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1085 | WARN_ON(atomic_read(&sk->sk_refcnt) == 1); |
| 1086 | __sock_put(sk); |
| 1087 | } |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | netlink_table_grab(); |
Johannes Berg | b10dcb3 | 2014-12-22 18:56:37 +0100 | [diff] [blame] | 1090 | if (nlk_sk(sk)->subscriptions) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | __sk_del_bind_node(sk); |
Johannes Berg | b10dcb3 | 2014-12-22 18:56:37 +0100 | [diff] [blame] | 1092 | netlink_update_listeners(sk); |
| 1093 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | netlink_table_ungrab(); |
| 1095 | } |
| 1096 | |
| 1097 | static struct proto netlink_proto = { |
| 1098 | .name = "NETLINK", |
| 1099 | .owner = THIS_MODULE, |
| 1100 | .obj_size = sizeof(struct netlink_sock), |
| 1101 | }; |
| 1102 | |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 1103 | static int __netlink_create(struct net *net, struct socket *sock, |
| 1104 | struct mutex *cb_mutex, int protocol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | { |
| 1106 | struct sock *sk; |
| 1107 | struct netlink_sock *nlk; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1108 | |
| 1109 | sock->ops = &netlink_ops; |
| 1110 | |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 1111 | sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto); |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1112 | if (!sk) |
| 1113 | return -ENOMEM; |
| 1114 | |
| 1115 | sock_init_data(sock, sk); |
| 1116 | |
| 1117 | nlk = nlk_sk(sk); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1118 | if (cb_mutex) { |
Patrick McHardy | ffa4d72 | 2007-04-25 14:01:17 -0700 | [diff] [blame] | 1119 | nlk->cb_mutex = cb_mutex; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1120 | } else { |
Patrick McHardy | ffa4d72 | 2007-04-25 14:01:17 -0700 | [diff] [blame] | 1121 | nlk->cb_mutex = &nlk->cb_def_mutex; |
| 1122 | mutex_init(nlk->cb_mutex); |
| 1123 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1124 | init_waitqueue_head(&nlk->wait); |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 1125 | #ifdef CONFIG_NETLINK_MMAP |
| 1126 | mutex_init(&nlk->pg_vec_lock); |
| 1127 | #endif |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1128 | |
| 1129 | sk->sk_destruct = netlink_sock_destruct; |
| 1130 | sk->sk_protocol = protocol; |
| 1131 | return 0; |
| 1132 | } |
| 1133 | |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 1134 | static int netlink_create(struct net *net, struct socket *sock, int protocol, |
| 1135 | int kern) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1136 | { |
| 1137 | struct module *module = NULL; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1138 | struct mutex *cb_mutex; |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1139 | struct netlink_sock *nlk; |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1140 | int (*bind)(struct net *net, int group); |
| 1141 | void (*unbind)(struct net *net, int group); |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1142 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | sock->state = SS_UNCONNECTED; |
| 1145 | |
| 1146 | if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM) |
| 1147 | return -ESOCKTNOSUPPORT; |
| 1148 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1149 | if (protocol < 0 || protocol >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | return -EPROTONOSUPPORT; |
| 1151 | |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1152 | netlink_lock_table(); |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 1153 | #ifdef CONFIG_MODULES |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1154 | if (!nl_table[protocol].registered) { |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1155 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1156 | request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1157 | netlink_lock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1158 | } |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1159 | #endif |
| 1160 | if (nl_table[protocol].registered && |
| 1161 | try_module_get(nl_table[protocol].module)) |
| 1162 | module = nl_table[protocol].module; |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 1163 | else |
| 1164 | err = -EPROTONOSUPPORT; |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 1165 | cb_mutex = nl_table[protocol].cb_mutex; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1166 | bind = nl_table[protocol].bind; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1167 | unbind = nl_table[protocol].unbind; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1168 | netlink_unlock_table(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1169 | |
Alexey Dobriyan | 974c37e | 2010-01-30 10:05:05 +0000 | [diff] [blame] | 1170 | if (err < 0) |
| 1171 | goto out; |
| 1172 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1173 | err = __netlink_create(net, sock, cb_mutex, protocol); |
| 1174 | if (err < 0) |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1175 | goto out_module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 1177 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 1178 | sock_prot_inuse_add(net, &netlink_proto, 1); |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 1179 | local_bh_enable(); |
| 1180 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1181 | nlk = nlk_sk(sock->sk); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1182 | nlk->module = module; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 1183 | nlk->netlink_bind = bind; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1184 | nlk->netlink_unbind = unbind; |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1185 | out: |
| 1186 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
Patrick McHardy | ab33a17 | 2005-08-14 19:31:36 -0700 | [diff] [blame] | 1188 | out_module: |
| 1189 | module_put(module); |
| 1190 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Thomas Graf | 21e4902 | 2015-01-02 23:00:22 +0100 | [diff] [blame] | 1193 | static void deferred_put_nlk_sk(struct rcu_head *head) |
| 1194 | { |
| 1195 | struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu); |
| 1196 | |
| 1197 | sock_put(&nlk->sk); |
| 1198 | } |
| 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | static int netlink_release(struct socket *sock) |
| 1201 | { |
| 1202 | struct sock *sk = sock->sk; |
| 1203 | struct netlink_sock *nlk; |
| 1204 | |
| 1205 | if (!sk) |
| 1206 | return 0; |
| 1207 | |
| 1208 | netlink_remove(sk); |
Denis Lunev | ac57b3a | 2007-04-18 17:05:58 -0700 | [diff] [blame] | 1209 | sock_orphan(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | nlk = nlk_sk(sk); |
| 1211 | |
Herbert Xu | 3f660d6 | 2007-05-03 03:17:14 -0700 | [diff] [blame] | 1212 | /* |
| 1213 | * OK. Socket is unlinked, any packets that arrive now |
| 1214 | * will be purged. |
| 1215 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | sock->sk = NULL; |
| 1218 | wake_up_interruptible_all(&nlk->wait); |
| 1219 | |
| 1220 | skb_queue_purge(&sk->sk_write_queue); |
| 1221 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1222 | if (nlk->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | struct netlink_notify n = { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1224 | .net = sock_net(sk), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | .protocol = sk->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1226 | .portid = nlk->portid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | }; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1228 | atomic_notifier_call_chain(&netlink_chain, |
| 1229 | NETLINK_URELEASE, &n); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1230 | } |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1231 | |
Mariusz Kozlowski | 5e7c001 | 2007-01-02 15:24:30 -0800 | [diff] [blame] | 1232 | module_put(nlk->module); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 1233 | |
Denis V. Lunev | aed81560 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1234 | if (netlink_is_kernel(sk)) { |
Johannes Berg | b10dcb3 | 2014-12-22 18:56:37 +0100 | [diff] [blame] | 1235 | netlink_table_grab(); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1236 | BUG_ON(nl_table[sk->sk_protocol].registered == 0); |
| 1237 | if (--nl_table[sk->sk_protocol].registered == 0) { |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1238 | struct listeners *old; |
| 1239 | |
| 1240 | old = nl_deref_protected(nl_table[sk->sk_protocol].listeners); |
| 1241 | RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL); |
| 1242 | kfree_rcu(old, rcu); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1243 | nl_table[sk->sk_protocol].module = NULL; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1244 | nl_table[sk->sk_protocol].bind = NULL; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1245 | nl_table[sk->sk_protocol].unbind = NULL; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1246 | nl_table[sk->sk_protocol].flags = 0; |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 1247 | nl_table[sk->sk_protocol].registered = 0; |
| 1248 | } |
Johannes Berg | b10dcb3 | 2014-12-22 18:56:37 +0100 | [diff] [blame] | 1249 | netlink_table_ungrab(); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1250 | } |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 1251 | |
Johannes Berg | 7d68536 | 2014-12-22 18:56:38 +0100 | [diff] [blame] | 1252 | if (nlk->netlink_unbind) { |
| 1253 | int i; |
| 1254 | |
| 1255 | for (i = 0; i < nlk->ngroups; i++) |
| 1256 | if (test_bit(i, nlk->groups)) |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1257 | nlk->netlink_unbind(sock_net(sk), i + 1); |
Johannes Berg | 7d68536 | 2014-12-22 18:56:38 +0100 | [diff] [blame] | 1258 | } |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1259 | kfree(nlk->groups); |
| 1260 | nlk->groups = NULL; |
| 1261 | |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 1262 | local_bh_disable(); |
Eric Dumazet | c1fd3b9 | 2008-11-23 15:48:22 -0800 | [diff] [blame] | 1263 | sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1); |
Eric Dumazet | 3755810 | 2008-11-24 14:05:22 -0800 | [diff] [blame] | 1264 | local_bh_enable(); |
Thomas Graf | 21e4902 | 2015-01-02 23:00:22 +0100 | [diff] [blame] | 1265 | call_rcu(&nlk->rcu, deferred_put_nlk_sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | return 0; |
| 1267 | } |
| 1268 | |
| 1269 | static int netlink_autobind(struct socket *sock) |
| 1270 | { |
| 1271 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1272 | struct net *net = sock_net(sk); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 1273 | struct netlink_table *table = &nl_table[sk->sk_protocol]; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1274 | s32 portid = task_tgid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | int err; |
| 1276 | static s32 rover = -4097; |
| 1277 | |
| 1278 | retry: |
| 1279 | cond_resched(); |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1280 | rcu_read_lock(); |
| 1281 | if (__netlink_lookup(table, portid, net)) { |
| 1282 | /* Bind collision, search negative portid values. */ |
| 1283 | portid = rover--; |
| 1284 | if (rover > -4097) |
| 1285 | rover = -4097; |
| 1286 | rcu_read_unlock(); |
| 1287 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | } |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 1289 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 1291 | err = netlink_insert(sk, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | if (err == -EADDRINUSE) |
| 1293 | goto retry; |
David S. Miller | d470e3b | 2005-06-26 15:31:51 -0700 | [diff] [blame] | 1294 | |
| 1295 | /* If 2 threads race to autobind, that is fine. */ |
| 1296 | if (err == -EBUSY) |
| 1297 | err = 0; |
| 1298 | |
| 1299 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | } |
| 1301 | |
Eric W. Biederman | aa4cf94 | 2014-04-23 14:28:03 -0700 | [diff] [blame] | 1302 | /** |
| 1303 | * __netlink_ns_capable - General netlink message capability test |
| 1304 | * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace. |
| 1305 | * @user_ns: The user namespace of the capability to use |
| 1306 | * @cap: The capability to use |
| 1307 | * |
| 1308 | * Test to see if the opener of the socket we received the message |
| 1309 | * from had when the netlink socket was created and the sender of the |
| 1310 | * message has has the capability @cap in the user namespace @user_ns. |
| 1311 | */ |
| 1312 | bool __netlink_ns_capable(const struct netlink_skb_parms *nsp, |
| 1313 | struct user_namespace *user_ns, int cap) |
| 1314 | { |
Eric W. Biederman | 2d7a85f | 2014-05-30 11:04:00 -0700 | [diff] [blame] | 1315 | return ((nsp->flags & NETLINK_SKB_DST) || |
| 1316 | file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) && |
| 1317 | ns_capable(user_ns, cap); |
Eric W. Biederman | aa4cf94 | 2014-04-23 14:28:03 -0700 | [diff] [blame] | 1318 | } |
| 1319 | EXPORT_SYMBOL(__netlink_ns_capable); |
| 1320 | |
| 1321 | /** |
| 1322 | * netlink_ns_capable - General netlink message capability test |
| 1323 | * @skb: socket buffer holding a netlink command from userspace |
| 1324 | * @user_ns: The user namespace of the capability to use |
| 1325 | * @cap: The capability to use |
| 1326 | * |
| 1327 | * Test to see if the opener of the socket we received the message |
| 1328 | * from had when the netlink socket was created and the sender of the |
| 1329 | * message has has the capability @cap in the user namespace @user_ns. |
| 1330 | */ |
| 1331 | bool netlink_ns_capable(const struct sk_buff *skb, |
| 1332 | struct user_namespace *user_ns, int cap) |
| 1333 | { |
| 1334 | return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap); |
| 1335 | } |
| 1336 | EXPORT_SYMBOL(netlink_ns_capable); |
| 1337 | |
| 1338 | /** |
| 1339 | * netlink_capable - Netlink global message capability test |
| 1340 | * @skb: socket buffer holding a netlink command from userspace |
| 1341 | * @cap: The capability to use |
| 1342 | * |
| 1343 | * Test to see if the opener of the socket we received the message |
| 1344 | * from had when the netlink socket was created and the sender of the |
| 1345 | * message has has the capability @cap in all user namespaces. |
| 1346 | */ |
| 1347 | bool netlink_capable(const struct sk_buff *skb, int cap) |
| 1348 | { |
| 1349 | return netlink_ns_capable(skb, &init_user_ns, cap); |
| 1350 | } |
| 1351 | EXPORT_SYMBOL(netlink_capable); |
| 1352 | |
| 1353 | /** |
| 1354 | * netlink_net_capable - Netlink network namespace message capability test |
| 1355 | * @skb: socket buffer holding a netlink command from userspace |
| 1356 | * @cap: The capability to use |
| 1357 | * |
| 1358 | * Test to see if the opener of the socket we received the message |
| 1359 | * from had when the netlink socket was created and the sender of the |
| 1360 | * message has has the capability @cap over the network namespace of |
| 1361 | * the socket we received the message from. |
| 1362 | */ |
| 1363 | bool netlink_net_capable(const struct sk_buff *skb, int cap) |
| 1364 | { |
| 1365 | return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap); |
| 1366 | } |
| 1367 | EXPORT_SYMBOL(netlink_net_capable); |
| 1368 | |
Eric W. Biederman | 5187cd0 | 2014-04-23 14:25:48 -0700 | [diff] [blame] | 1369 | static inline int netlink_allowed(const struct socket *sock, unsigned int flag) |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1370 | { |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 1371 | return (nl_table[sock->sk->sk_protocol].flags & flag) || |
Eric W. Biederman | df008c9 | 2012-11-16 03:03:07 +0000 | [diff] [blame] | 1372 | ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1375 | static void |
| 1376 | netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions) |
| 1377 | { |
| 1378 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1379 | |
| 1380 | if (nlk->subscriptions && !subscriptions) |
| 1381 | __sk_del_bind_node(sk); |
| 1382 | else if (!nlk->subscriptions && subscriptions) |
| 1383 | sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list); |
| 1384 | nlk->subscriptions = subscriptions; |
| 1385 | } |
| 1386 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1387 | static int netlink_realloc_groups(struct sock *sk) |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1388 | { |
| 1389 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1390 | unsigned int groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1391 | unsigned long *new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1392 | int err = 0; |
| 1393 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1394 | netlink_table_grab(); |
| 1395 | |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1396 | groups = nl_table[sk->sk_protocol].groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1397 | if (!nl_table[sk->sk_protocol].registered) { |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1398 | err = -ENOENT; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1399 | goto out_unlock; |
| 1400 | } |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1401 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1402 | if (nlk->ngroups >= groups) |
| 1403 | goto out_unlock; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1404 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1405 | new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC); |
| 1406 | if (new_groups == NULL) { |
| 1407 | err = -ENOMEM; |
| 1408 | goto out_unlock; |
| 1409 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1410 | memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0, |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1411 | NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups)); |
| 1412 | |
| 1413 | nlk->groups = new_groups; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1414 | nlk->ngroups = groups; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1415 | out_unlock: |
| 1416 | netlink_table_ungrab(); |
| 1417 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1418 | } |
| 1419 | |
Johannes Berg | 02c81ab | 2014-12-22 18:56:35 +0100 | [diff] [blame] | 1420 | static void netlink_undo_bind(int group, long unsigned int groups, |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1421 | struct sock *sk) |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1422 | { |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1423 | struct netlink_sock *nlk = nlk_sk(sk); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1424 | int undo; |
| 1425 | |
| 1426 | if (!nlk->netlink_unbind) |
| 1427 | return; |
| 1428 | |
| 1429 | for (undo = 0; undo < group; undo++) |
Hiroaki SHIMODA | 6251edd | 2014-11-13 04:24:10 +0900 | [diff] [blame] | 1430 | if (test_bit(undo, &groups)) |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1431 | nlk->netlink_unbind(sock_net(sk), undo); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1432 | } |
| 1433 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1434 | static int netlink_bind(struct socket *sock, struct sockaddr *addr, |
| 1435 | int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | { |
| 1437 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1438 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1440 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
| 1441 | int err; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1442 | long unsigned int groups = nladdr->nl_groups; |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1443 | |
Hannes Frederic Sowa | 4e4b537 | 2012-12-15 15:42:19 +0000 | [diff] [blame] | 1444 | if (addr_len < sizeof(struct sockaddr_nl)) |
| 1445 | return -EINVAL; |
| 1446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | if (nladdr->nl_family != AF_NETLINK) |
| 1448 | return -EINVAL; |
| 1449 | |
| 1450 | /* Only superuser is allowed to listen multicasts */ |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1451 | if (groups) { |
Eric W. Biederman | 5187cd0 | 2014-04-23 14:25:48 -0700 | [diff] [blame] | 1452 | if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV)) |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1453 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1454 | err = netlink_realloc_groups(sk); |
| 1455 | if (err) |
| 1456 | return err; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1457 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1459 | if (nlk->portid) |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1460 | if (nladdr->nl_pid != nlk->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | return -EINVAL; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1462 | |
| 1463 | if (nlk->netlink_bind && groups) { |
| 1464 | int group; |
| 1465 | |
| 1466 | for (group = 0; group < nlk->ngroups; group++) { |
| 1467 | if (!test_bit(group, &groups)) |
| 1468 | continue; |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1469 | err = nlk->netlink_bind(net, group); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1470 | if (!err) |
| 1471 | continue; |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1472 | netlink_undo_bind(group, groups, sk); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1473 | return err; |
| 1474 | } |
| 1475 | } |
| 1476 | |
| 1477 | if (!nlk->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | err = nladdr->nl_pid ? |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 1479 | netlink_insert(sk, nladdr->nl_pid) : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | netlink_autobind(sock); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1481 | if (err) { |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 1482 | netlink_undo_bind(nlk->ngroups, groups, sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | return err; |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1484 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | } |
| 1486 | |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1487 | if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | return 0; |
| 1489 | |
| 1490 | netlink_table_grab(); |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1491 | netlink_update_subscriptions(sk, nlk->subscriptions + |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1492 | hweight32(groups) - |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1493 | hweight32(nlk->groups[0])); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 1494 | nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1495 | netlink_update_listeners(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | netlink_table_ungrab(); |
| 1497 | |
| 1498 | return 0; |
| 1499 | } |
| 1500 | |
| 1501 | static int netlink_connect(struct socket *sock, struct sockaddr *addr, |
| 1502 | int alen, int flags) |
| 1503 | { |
| 1504 | int err = 0; |
| 1505 | struct sock *sk = sock->sk; |
| 1506 | struct netlink_sock *nlk = nlk_sk(sk); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1507 | struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
Changli Gao | 6503d96 | 2010-03-31 22:58:26 +0000 | [diff] [blame] | 1509 | if (alen < sizeof(addr->sa_family)) |
| 1510 | return -EINVAL; |
| 1511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | if (addr->sa_family == AF_UNSPEC) { |
| 1513 | sk->sk_state = NETLINK_UNCONNECTED; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1514 | nlk->dst_portid = 0; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1515 | nlk->dst_group = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | return 0; |
| 1517 | } |
| 1518 | if (addr->sa_family != AF_NETLINK) |
| 1519 | return -EINVAL; |
| 1520 | |
Mike Pecovnik | 46833a8 | 2014-02-24 21:11:16 +0100 | [diff] [blame] | 1521 | if ((nladdr->nl_groups || nladdr->nl_pid) && |
Eric W. Biederman | 5187cd0 | 2014-04-23 14:25:48 -0700 | [diff] [blame] | 1522 | !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | return -EPERM; |
| 1524 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1525 | if (!nlk->portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | err = netlink_autobind(sock); |
| 1527 | |
| 1528 | if (err == 0) { |
| 1529 | sk->sk_state = NETLINK_CONNECTED; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1530 | nlk->dst_portid = nladdr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1531 | nlk->dst_group = ffs(nladdr->nl_groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | return err; |
| 1535 | } |
| 1536 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1537 | static int netlink_getname(struct socket *sock, struct sockaddr *addr, |
| 1538 | int *addr_len, int peer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | { |
| 1540 | struct sock *sk = sock->sk; |
| 1541 | struct netlink_sock *nlk = nlk_sk(sk); |
Cyrill Gorcunov | 13cfa97 | 2009-11-08 05:51:19 +0000 | [diff] [blame] | 1542 | DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 1543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | nladdr->nl_family = AF_NETLINK; |
| 1545 | nladdr->nl_pad = 0; |
| 1546 | *addr_len = sizeof(*nladdr); |
| 1547 | |
| 1548 | if (peer) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1549 | nladdr->nl_pid = nlk->dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 1550 | nladdr->nl_groups = netlink_group_mask(nlk->dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | } else { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1552 | nladdr->nl_pid = nlk->portid; |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 1553 | nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | } |
| 1555 | return 0; |
| 1556 | } |
| 1557 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1558 | static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | struct sock *sock; |
| 1561 | struct netlink_sock *nlk; |
| 1562 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1563 | sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | if (!sock) |
| 1565 | return ERR_PTR(-ECONNREFUSED); |
| 1566 | |
| 1567 | /* Don't bother queuing skb if kernel socket has no input function */ |
| 1568 | nlk = nlk_sk(sock); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1569 | if (sock->sk_state == NETLINK_CONNECTED && |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1570 | nlk->dst_portid != nlk_sk(ssk)->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | sock_put(sock); |
| 1572 | return ERR_PTR(-ECONNREFUSED); |
| 1573 | } |
| 1574 | return sock; |
| 1575 | } |
| 1576 | |
| 1577 | struct sock *netlink_getsockbyfilp(struct file *filp) |
| 1578 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1579 | struct inode *inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | struct sock *sock; |
| 1581 | |
| 1582 | if (!S_ISSOCK(inode->i_mode)) |
| 1583 | return ERR_PTR(-ENOTSOCK); |
| 1584 | |
| 1585 | sock = SOCKET_I(inode)->sk; |
| 1586 | if (sock->sk_family != AF_NETLINK) |
| 1587 | return ERR_PTR(-EINVAL); |
| 1588 | |
| 1589 | sock_hold(sock); |
| 1590 | return sock; |
| 1591 | } |
| 1592 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1593 | static struct sk_buff *netlink_alloc_large_skb(unsigned int size, |
| 1594 | int broadcast) |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1595 | { |
| 1596 | struct sk_buff *skb; |
| 1597 | void *data; |
| 1598 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1599 | if (size <= NLMSG_GOODSIZE || broadcast) |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1600 | return alloc_skb(size, GFP_KERNEL); |
| 1601 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1602 | size = SKB_DATA_ALIGN(size) + |
| 1603 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1604 | |
| 1605 | data = vmalloc(size); |
| 1606 | if (data == NULL) |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1607 | return NULL; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1608 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 1609 | skb = build_skb(data, size); |
| 1610 | if (skb == NULL) |
| 1611 | vfree(data); |
| 1612 | else { |
| 1613 | skb->head_frag = 0; |
| 1614 | skb->destructor = netlink_skb_destructor; |
| 1615 | } |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1616 | |
| 1617 | return skb; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1618 | } |
| 1619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | /* |
| 1621 | * Attach a skb to a netlink socket. |
| 1622 | * The caller must hold a reference to the destination socket. On error, the |
| 1623 | * reference is dropped. The skb is not send to the destination, just all |
| 1624 | * all error checks are performed and memory in the queue is reserved. |
| 1625 | * Return values: |
| 1626 | * < 0: error. skb freed, reference to sock dropped. |
| 1627 | * 0: continue |
| 1628 | * 1: repeat lookup - reference dropped while waiting for socket memory. |
| 1629 | */ |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 1630 | int netlink_attachskb(struct sock *sk, struct sk_buff *skb, |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1631 | long *timeo, struct sock *ssk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | { |
| 1633 | struct netlink_sock *nlk; |
| 1634 | |
| 1635 | nlk = nlk_sk(sk); |
| 1636 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 1637 | if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
| 1638 | test_bit(NETLINK_CONGESTED, &nlk->state)) && |
| 1639 | !netlink_skb_is_mmaped(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | DECLARE_WAITQUEUE(wait, current); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1641 | if (!*timeo) { |
Denis V. Lunev | aed81560 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1642 | if (!ssk || netlink_is_kernel(ssk)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | netlink_overrun(sk); |
| 1644 | sock_put(sk); |
| 1645 | kfree_skb(skb); |
| 1646 | return -EAGAIN; |
| 1647 | } |
| 1648 | |
| 1649 | __set_current_state(TASK_INTERRUPTIBLE); |
| 1650 | add_wait_queue(&nlk->wait, &wait); |
| 1651 | |
| 1652 | if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf || |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 1653 | test_bit(NETLINK_CONGESTED, &nlk->state)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | !sock_flag(sk, SOCK_DEAD)) |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1655 | *timeo = schedule_timeout(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | |
| 1657 | __set_current_state(TASK_RUNNING); |
| 1658 | remove_wait_queue(&nlk->wait, &wait); |
| 1659 | sock_put(sk); |
| 1660 | |
| 1661 | if (signal_pending(current)) { |
| 1662 | kfree_skb(skb); |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 1663 | return sock_intr_errno(*timeo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | } |
| 1665 | return 1; |
| 1666 | } |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1667 | netlink_skb_set_owner_r(skb, sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | return 0; |
| 1669 | } |
| 1670 | |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1671 | static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | int len = skb->len; |
| 1674 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 1675 | netlink_deliver_tap(skb); |
| 1676 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1677 | #ifdef CONFIG_NETLINK_MMAP |
| 1678 | if (netlink_skb_is_mmaped(skb)) |
| 1679 | netlink_queue_mmaped_skb(sk, skb); |
| 1680 | else if (netlink_rx_is_mmaped(sk)) |
| 1681 | netlink_ring_set_copied(sk, skb); |
| 1682 | else |
| 1683 | #endif /* CONFIG_NETLINK_MMAP */ |
| 1684 | skb_queue_tail(&sk->sk_receive_queue, skb); |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 1685 | sk->sk_data_ready(sk); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1686 | return len; |
| 1687 | } |
| 1688 | |
| 1689 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
| 1690 | { |
| 1691 | int len = __netlink_sendskb(sk, skb); |
| 1692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | sock_put(sk); |
| 1694 | return len; |
| 1695 | } |
| 1696 | |
| 1697 | void netlink_detachskb(struct sock *sk, struct sk_buff *skb) |
| 1698 | { |
| 1699 | kfree_skb(skb); |
| 1700 | sock_put(sk); |
| 1701 | } |
| 1702 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1703 | 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] | 1704 | { |
| 1705 | int delta; |
| 1706 | |
Patrick McHardy | 1298ca4 | 2013-04-17 06:46:59 +0000 | [diff] [blame] | 1707 | WARN_ON(skb->sk != NULL); |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 1708 | if (netlink_skb_is_mmaped(skb)) |
| 1709 | return skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1711 | delta = skb->end - skb->tail; |
Pablo Neira Ayuso | c05cdb1 | 2013-06-03 09:46:28 +0000 | [diff] [blame] | 1712 | if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | return skb; |
| 1714 | |
| 1715 | if (skb_shared(skb)) { |
| 1716 | struct sk_buff *nskb = skb_clone(skb, allocation); |
| 1717 | if (!nskb) |
| 1718 | return skb; |
Eric Dumazet | 8460c00 | 2012-04-19 02:24:28 +0000 | [diff] [blame] | 1719 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | skb = nskb; |
| 1721 | } |
| 1722 | |
| 1723 | if (!pskb_expand_head(skb, 0, -delta, allocation)) |
| 1724 | skb->truesize -= delta; |
| 1725 | |
| 1726 | return skb; |
| 1727 | } |
| 1728 | |
Eric W. Biederman | 3fbc290 | 2012-05-24 17:21:27 -0600 | [diff] [blame] | 1729 | static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb, |
| 1730 | struct sock *ssk) |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1731 | { |
| 1732 | int ret; |
| 1733 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1734 | |
| 1735 | ret = -ECONNREFUSED; |
| 1736 | if (nlk->netlink_rcv != NULL) { |
| 1737 | ret = skb->len; |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1738 | netlink_skb_set_owner_r(skb, sk); |
Patrick McHardy | e32123e | 2013-04-17 06:46:57 +0000 | [diff] [blame] | 1739 | NETLINK_CB(skb).sk = ssk; |
Daniel Borkmann | 73bfd37 | 2013-12-23 14:35:55 +0100 | [diff] [blame] | 1740 | netlink_deliver_tap_kernel(sk, ssk, skb); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1741 | nlk->netlink_rcv(skb); |
Eric Dumazet | bfb253c | 2012-04-22 21:30:29 +0000 | [diff] [blame] | 1742 | consume_skb(skb); |
| 1743 | } else { |
| 1744 | kfree_skb(skb); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1745 | } |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1746 | sock_put(sk); |
| 1747 | return ret; |
| 1748 | } |
| 1749 | |
| 1750 | int netlink_unicast(struct sock *ssk, struct sk_buff *skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1751 | u32 portid, int nonblock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | { |
| 1753 | struct sock *sk; |
| 1754 | int err; |
| 1755 | long timeo; |
| 1756 | |
| 1757 | skb = netlink_trim(skb, gfp_any()); |
| 1758 | |
| 1759 | timeo = sock_sndtimeo(ssk, nonblock); |
| 1760 | retry: |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1761 | sk = netlink_getsockbyportid(ssk, portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | if (IS_ERR(sk)) { |
| 1763 | kfree_skb(skb); |
| 1764 | return PTR_ERR(sk); |
| 1765 | } |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1766 | if (netlink_is_kernel(sk)) |
Eric W. Biederman | 3fbc290 | 2012-05-24 17:21:27 -0600 | [diff] [blame] | 1767 | return netlink_unicast_kernel(sk, skb, ssk); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 1768 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1769 | if (sk_filter(sk, skb)) { |
Wang Chen | 8487460 | 2008-07-01 19:55:09 -0700 | [diff] [blame] | 1770 | err = skb->len; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1771 | kfree_skb(skb); |
| 1772 | sock_put(sk); |
| 1773 | return err; |
| 1774 | } |
| 1775 | |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 1776 | err = netlink_attachskb(sk, skb, &timeo, ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | if (err == 1) |
| 1778 | goto retry; |
| 1779 | if (err) |
| 1780 | return err; |
| 1781 | |
Denis V. Lunev | 7ee015e | 2007-10-10 21:14:03 -0700 | [diff] [blame] | 1782 | return netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 1784 | EXPORT_SYMBOL(netlink_unicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1786 | struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size, |
| 1787 | u32 dst_portid, gfp_t gfp_mask) |
| 1788 | { |
| 1789 | #ifdef CONFIG_NETLINK_MMAP |
| 1790 | struct sock *sk = NULL; |
| 1791 | struct sk_buff *skb; |
| 1792 | struct netlink_ring *ring; |
| 1793 | struct nl_mmap_hdr *hdr; |
| 1794 | unsigned int maxlen; |
| 1795 | |
| 1796 | sk = netlink_getsockbyportid(ssk, dst_portid); |
| 1797 | if (IS_ERR(sk)) |
| 1798 | goto out; |
| 1799 | |
| 1800 | ring = &nlk_sk(sk)->rx_ring; |
| 1801 | /* fast-path without atomic ops for common case: non-mmaped receiver */ |
| 1802 | if (ring->pg_vec == NULL) |
| 1803 | goto out_put; |
| 1804 | |
Thomas Graf | aae9f0e | 2013-11-30 13:21:31 +0100 | [diff] [blame] | 1805 | if (ring->frame_size - NL_MMAP_HDRLEN < size) |
| 1806 | goto out_put; |
| 1807 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1808 | skb = alloc_skb_head(gfp_mask); |
| 1809 | if (skb == NULL) |
| 1810 | goto err1; |
| 1811 | |
| 1812 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 1813 | /* check again under lock */ |
| 1814 | if (ring->pg_vec == NULL) |
| 1815 | goto out_free; |
| 1816 | |
Thomas Graf | aae9f0e | 2013-11-30 13:21:31 +0100 | [diff] [blame] | 1817 | /* check again under lock */ |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1818 | maxlen = ring->frame_size - NL_MMAP_HDRLEN; |
| 1819 | if (maxlen < size) |
| 1820 | goto out_free; |
| 1821 | |
| 1822 | netlink_forward_ring(ring); |
| 1823 | hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED); |
| 1824 | if (hdr == NULL) |
| 1825 | goto err2; |
| 1826 | netlink_ring_setup_skb(skb, sk, ring, hdr); |
| 1827 | netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED); |
| 1828 | atomic_inc(&ring->pending); |
| 1829 | netlink_increment_head(ring); |
| 1830 | |
| 1831 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 1832 | return skb; |
| 1833 | |
| 1834 | err2: |
| 1835 | kfree_skb(skb); |
| 1836 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
Patrick McHardy | cd1df52 | 2013-04-17 06:47:05 +0000 | [diff] [blame] | 1837 | netlink_overrun(sk); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 1838 | err1: |
| 1839 | sock_put(sk); |
| 1840 | return NULL; |
| 1841 | |
| 1842 | out_free: |
| 1843 | kfree_skb(skb); |
| 1844 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 1845 | out_put: |
| 1846 | sock_put(sk); |
| 1847 | out: |
| 1848 | #endif |
| 1849 | return alloc_skb(size, gfp_mask); |
| 1850 | } |
| 1851 | EXPORT_SYMBOL_GPL(netlink_alloc_skb); |
| 1852 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1853 | int netlink_has_listeners(struct sock *sk, unsigned int group) |
| 1854 | { |
| 1855 | int res = 0; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1856 | struct listeners *listeners; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1857 | |
Denis V. Lunev | aed81560 | 2007-10-10 21:14:32 -0700 | [diff] [blame] | 1858 | BUG_ON(!netlink_is_kernel(sk)); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1859 | |
| 1860 | rcu_read_lock(); |
| 1861 | listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners); |
| 1862 | |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 1863 | if (listeners && group - 1 < nl_table[sk->sk_protocol].groups) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 1864 | res = test_bit(group - 1, listeners->masks); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 1865 | |
| 1866 | rcu_read_unlock(); |
| 1867 | |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 1868 | return res; |
| 1869 | } |
| 1870 | EXPORT_SYMBOL_GPL(netlink_has_listeners); |
| 1871 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 1872 | static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | { |
| 1874 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1875 | |
| 1876 | if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf && |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 1877 | !test_bit(NETLINK_CONGESTED, &nlk->state)) { |
Patrick McHardy | cf0a018 | 2013-04-17 06:47:00 +0000 | [diff] [blame] | 1878 | netlink_skb_set_owner_r(skb, sk); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 1879 | __netlink_sendskb(sk, skb); |
stephen hemminger | 2c645800 | 2011-12-22 08:52:03 +0000 | [diff] [blame] | 1880 | return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | } |
| 1882 | return -1; |
| 1883 | } |
| 1884 | |
| 1885 | struct netlink_broadcast_data { |
| 1886 | struct sock *exclude_sk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1887 | struct net *net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1888 | u32 portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | u32 group; |
| 1890 | int failure; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1891 | int delivery_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | int congested; |
| 1893 | int delivered; |
Al Viro | 7d877f3 | 2005-10-21 03:20:43 -0400 | [diff] [blame] | 1894 | gfp_t allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | struct sk_buff *skb, *skb2; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1896 | int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data); |
| 1897 | void *tx_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | }; |
| 1899 | |
Rami Rosen | 46c9521 | 2014-07-01 21:17:35 +0300 | [diff] [blame] | 1900 | static void do_one_broadcast(struct sock *sk, |
| 1901 | struct netlink_broadcast_data *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | { |
| 1903 | struct netlink_sock *nlk = nlk_sk(sk); |
| 1904 | int val; |
| 1905 | |
| 1906 | if (p->exclude_sk == sk) |
Rami Rosen | 46c9521 | 2014-07-01 21:17:35 +0300 | [diff] [blame] | 1907 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1909 | if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups || |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 1910 | !test_bit(p->group - 1, nlk->groups)) |
Rami Rosen | 46c9521 | 2014-07-01 21:17:35 +0300 | [diff] [blame] | 1911 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 1913 | if (!net_eq(sock_net(sk), p->net)) |
Rami Rosen | 46c9521 | 2014-07-01 21:17:35 +0300 | [diff] [blame] | 1914 | return; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | if (p->failure) { |
| 1917 | netlink_overrun(sk); |
Rami Rosen | 46c9521 | 2014-07-01 21:17:35 +0300 | [diff] [blame] | 1918 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | sock_hold(sk); |
| 1922 | if (p->skb2 == NULL) { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1923 | if (skb_shared(p->skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | p->skb2 = skb_clone(p->skb, p->allocation); |
| 1925 | } else { |
Tommy S. Christensen | 68acc02 | 2005-05-19 13:06:35 -0700 | [diff] [blame] | 1926 | p->skb2 = skb_get(p->skb); |
| 1927 | /* |
| 1928 | * skb ownership may have been set when |
| 1929 | * delivered to a previous socket. |
| 1930 | */ |
| 1931 | skb_orphan(p->skb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
| 1933 | } |
| 1934 | if (p->skb2 == NULL) { |
| 1935 | netlink_overrun(sk); |
| 1936 | /* Clone failed. Notify ALL listeners. */ |
| 1937 | p->failure = 1; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1938 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1939 | p->delivery_failure = 1; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1940 | } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) { |
| 1941 | kfree_skb(p->skb2); |
| 1942 | p->skb2 = NULL; |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 1943 | } else if (sk_filter(sk, p->skb2)) { |
| 1944 | kfree_skb(p->skb2); |
| 1945 | p->skb2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) { |
| 1947 | netlink_overrun(sk); |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 1948 | if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR) |
| 1949 | p->delivery_failure = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | } else { |
| 1951 | p->congested |= val; |
| 1952 | p->delivered = 1; |
| 1953 | p->skb2 = NULL; |
| 1954 | } |
| 1955 | sock_put(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | } |
| 1957 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1958 | 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] | 1959 | u32 group, gfp_t allocation, |
| 1960 | int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), |
| 1961 | void *filter_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1963 | struct net *net = sock_net(ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | struct netlink_broadcast_data info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | struct sock *sk; |
| 1966 | |
| 1967 | skb = netlink_trim(skb, allocation); |
| 1968 | |
| 1969 | info.exclude_sk = ssk; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 1970 | info.net = net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1971 | info.portid = portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | info.group = group; |
| 1973 | info.failure = 0; |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1974 | info.delivery_failure = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | info.congested = 0; |
| 1976 | info.delivered = 0; |
| 1977 | info.allocation = allocation; |
| 1978 | info.skb = skb; |
| 1979 | info.skb2 = NULL; |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 1980 | info.tx_filter = filter; |
| 1981 | info.tx_data = filter_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
| 1983 | /* While we sleep in clone, do not allow to change socket list */ |
| 1984 | |
| 1985 | netlink_lock_table(); |
| 1986 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1987 | sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | do_one_broadcast(sk, &info); |
| 1989 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1990 | consume_skb(skb); |
Tommy S. Christensen | aa1c6a6f | 2005-05-19 13:07:32 -0700 | [diff] [blame] | 1991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | netlink_unlock_table(); |
| 1993 | |
Neil Horman | 70d4bf6 | 2010-07-20 06:45:56 +0000 | [diff] [blame] | 1994 | if (info.delivery_failure) { |
| 1995 | kfree_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1996 | return -ENOBUFS; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 1997 | } |
| 1998 | consume_skb(info.skb2); |
Pablo Neira Ayuso | ff491a7 | 2009-02-05 23:56:36 -0800 | [diff] [blame] | 1999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | if (info.delivered) { |
| 2001 | if (info.congested && (allocation & __GFP_WAIT)) |
| 2002 | yield(); |
| 2003 | return 0; |
| 2004 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | return -ESRCH; |
| 2006 | } |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 2007 | EXPORT_SYMBOL(netlink_broadcast_filtered); |
| 2008 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2009 | 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] | 2010 | u32 group, gfp_t allocation) |
| 2011 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2012 | return netlink_broadcast_filtered(ssk, skb, portid, group, allocation, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 2013 | NULL, NULL); |
| 2014 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2015 | EXPORT_SYMBOL(netlink_broadcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | |
| 2017 | struct netlink_set_err_data { |
| 2018 | struct sock *exclude_sk; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2019 | u32 portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | u32 group; |
| 2021 | int code; |
| 2022 | }; |
| 2023 | |
stephen hemminger | b57ef81f | 2011-12-22 08:52:02 +0000 | [diff] [blame] | 2024 | 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] | 2025 | { |
| 2026 | struct netlink_sock *nlk = nlk_sk(sk); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2027 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | |
| 2029 | if (sk == p->exclude_sk) |
| 2030 | goto out; |
| 2031 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 2032 | if (!net_eq(sock_net(sk), sock_net(p->exclude_sk))) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2033 | goto out; |
| 2034 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2035 | if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups || |
Patrick McHardy | f7fa9b1 | 2005-08-15 12:29:13 -0700 | [diff] [blame] | 2036 | !test_bit(p->group - 1, nlk->groups)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | goto out; |
| 2038 | |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2039 | if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) { |
| 2040 | ret = 1; |
| 2041 | goto out; |
| 2042 | } |
| 2043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | sk->sk_err = p->code; |
| 2045 | sk->sk_error_report(sk); |
| 2046 | out: |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2047 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 2050 | /** |
| 2051 | * netlink_set_err - report error to broadcast listeners |
| 2052 | * @ssk: the kernel netlink socket, as returned by netlink_kernel_create() |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2053 | * @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] | 2054 | * @group: the broadcast group that will notice the error |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 2055 | * @code: error code, must be negative (as usual in kernelspace) |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2056 | * |
| 2057 | * This function returns the number of broadcast listeners that have set the |
| 2058 | * NETLINK_RECV_NO_ENOBUFS socket option. |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 2059 | */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2060 | 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] | 2061 | { |
| 2062 | struct netlink_set_err_data info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | struct sock *sk; |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2064 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | |
| 2066 | info.exclude_sk = ssk; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2067 | info.portid = portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | info.group = group; |
Pablo Neira Ayuso | 4843b93 | 2009-03-03 23:37:30 -0800 | [diff] [blame] | 2069 | /* sk->sk_err wants a positive error value */ |
| 2070 | info.code = -code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
| 2072 | read_lock(&nl_table_lock); |
| 2073 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2074 | 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] | 2075 | ret += do_one_set_err(sk, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | |
| 2077 | read_unlock(&nl_table_lock); |
Pablo Neira Ayuso | 1a50307 | 2010-03-18 14:24:42 +0000 | [diff] [blame] | 2078 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | } |
Pablo Neira Ayuso | dd5b6ce | 2009-03-23 13:21:06 +0100 | [diff] [blame] | 2080 | EXPORT_SYMBOL(netlink_set_err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2082 | /* must be called with netlink table grabbed */ |
| 2083 | static void netlink_update_socket_mc(struct netlink_sock *nlk, |
| 2084 | unsigned int group, |
| 2085 | int is_new) |
| 2086 | { |
| 2087 | int old, new = !!is_new, subscriptions; |
| 2088 | |
| 2089 | old = test_bit(group - 1, nlk->groups); |
| 2090 | subscriptions = nlk->subscriptions - old + new; |
| 2091 | if (new) |
| 2092 | __set_bit(group - 1, nlk->groups); |
| 2093 | else |
| 2094 | __clear_bit(group - 1, nlk->groups); |
| 2095 | netlink_update_subscriptions(&nlk->sk, subscriptions); |
| 2096 | netlink_update_listeners(&nlk->sk); |
| 2097 | } |
| 2098 | |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2099 | static int netlink_setsockopt(struct socket *sock, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2100 | char __user *optval, unsigned int optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2101 | { |
| 2102 | struct sock *sk = sock->sk; |
| 2103 | struct netlink_sock *nlk = nlk_sk(sk); |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 2104 | unsigned int val = 0; |
| 2105 | int err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2106 | |
| 2107 | if (level != SOL_NETLINK) |
| 2108 | return -ENOPROTOOPT; |
| 2109 | |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 2110 | if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING && |
| 2111 | optlen >= sizeof(int) && |
Johannes Berg | eb49653 | 2007-07-18 02:07:51 -0700 | [diff] [blame] | 2112 | get_user(val, (unsigned int __user *)optval)) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2113 | return -EFAULT; |
| 2114 | |
| 2115 | switch (optname) { |
| 2116 | case NETLINK_PKTINFO: |
| 2117 | if (val) |
| 2118 | nlk->flags |= NETLINK_RECV_PKTINFO; |
| 2119 | else |
| 2120 | nlk->flags &= ~NETLINK_RECV_PKTINFO; |
| 2121 | err = 0; |
| 2122 | break; |
| 2123 | case NETLINK_ADD_MEMBERSHIP: |
| 2124 | case NETLINK_DROP_MEMBERSHIP: { |
Eric W. Biederman | 5187cd0 | 2014-04-23 14:25:48 -0700 | [diff] [blame] | 2125 | if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV)) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2126 | return -EPERM; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2127 | err = netlink_realloc_groups(sk); |
| 2128 | if (err) |
| 2129 | return err; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2130 | if (!val || val - 1 >= nlk->ngroups) |
| 2131 | return -EINVAL; |
Richard Guy Briggs | 7774d5e | 2014-04-22 21:31:55 -0400 | [diff] [blame] | 2132 | if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) { |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 2133 | err = nlk->netlink_bind(sock_net(sk), val); |
Richard Guy Briggs | 4f52090 | 2014-04-22 21:31:54 -0400 | [diff] [blame] | 2134 | if (err) |
| 2135 | return err; |
| 2136 | } |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2137 | netlink_table_grab(); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 2138 | netlink_update_socket_mc(nlk, val, |
| 2139 | optname == NETLINK_ADD_MEMBERSHIP); |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2140 | netlink_table_ungrab(); |
Richard Guy Briggs | 7774d5e | 2014-04-22 21:31:55 -0400 | [diff] [blame] | 2141 | if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind) |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 2142 | nlk->netlink_unbind(sock_net(sk), val); |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 2143 | |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2144 | err = 0; |
| 2145 | break; |
| 2146 | } |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 2147 | case NETLINK_BROADCAST_ERROR: |
| 2148 | if (val) |
| 2149 | nlk->flags |= NETLINK_BROADCAST_SEND_ERROR; |
| 2150 | else |
| 2151 | nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR; |
| 2152 | err = 0; |
| 2153 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2154 | case NETLINK_NO_ENOBUFS: |
| 2155 | if (val) { |
| 2156 | nlk->flags |= NETLINK_RECV_NO_ENOBUFS; |
Patrick McHardy | cd967e0 | 2013-04-17 06:46:56 +0000 | [diff] [blame] | 2157 | clear_bit(NETLINK_CONGESTED, &nlk->state); |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2158 | wake_up_interruptible(&nlk->wait); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2159 | } else { |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2160 | nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS; |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2161 | } |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2162 | err = 0; |
| 2163 | break; |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 2164 | #ifdef CONFIG_NETLINK_MMAP |
| 2165 | case NETLINK_RX_RING: |
| 2166 | case NETLINK_TX_RING: { |
| 2167 | struct nl_mmap_req req; |
| 2168 | |
| 2169 | /* Rings might consume more memory than queue limits, require |
| 2170 | * CAP_NET_ADMIN. |
| 2171 | */ |
| 2172 | if (!capable(CAP_NET_ADMIN)) |
| 2173 | return -EPERM; |
| 2174 | if (optlen < sizeof(req)) |
| 2175 | return -EINVAL; |
| 2176 | if (copy_from_user(&req, optval, sizeof(req))) |
| 2177 | return -EFAULT; |
| 2178 | err = netlink_set_ring(sk, &req, false, |
| 2179 | optname == NETLINK_TX_RING); |
| 2180 | break; |
| 2181 | } |
| 2182 | #endif /* CONFIG_NETLINK_MMAP */ |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2183 | default: |
| 2184 | err = -ENOPROTOOPT; |
| 2185 | } |
| 2186 | return err; |
| 2187 | } |
| 2188 | |
| 2189 | static int netlink_getsockopt(struct socket *sock, int level, int optname, |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2190 | char __user *optval, int __user *optlen) |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2191 | { |
| 2192 | struct sock *sk = sock->sk; |
| 2193 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2194 | int len, val, err; |
| 2195 | |
| 2196 | if (level != SOL_NETLINK) |
| 2197 | return -ENOPROTOOPT; |
| 2198 | |
| 2199 | if (get_user(len, optlen)) |
| 2200 | return -EFAULT; |
| 2201 | if (len < 0) |
| 2202 | return -EINVAL; |
| 2203 | |
| 2204 | switch (optname) { |
| 2205 | case NETLINK_PKTINFO: |
| 2206 | if (len < sizeof(int)) |
| 2207 | return -EINVAL; |
| 2208 | len = sizeof(int); |
| 2209 | val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0; |
Heiko Carstens | a27b58f | 2006-10-30 15:06:12 -0800 | [diff] [blame] | 2210 | if (put_user(len, optlen) || |
| 2211 | put_user(val, optval)) |
| 2212 | return -EFAULT; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2213 | err = 0; |
| 2214 | break; |
Pablo Neira Ayuso | be0c22a | 2009-02-18 01:40:43 +0000 | [diff] [blame] | 2215 | case NETLINK_BROADCAST_ERROR: |
| 2216 | if (len < sizeof(int)) |
| 2217 | return -EINVAL; |
| 2218 | len = sizeof(int); |
| 2219 | val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0; |
| 2220 | if (put_user(len, optlen) || |
| 2221 | put_user(val, optval)) |
| 2222 | return -EFAULT; |
| 2223 | err = 0; |
| 2224 | break; |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 2225 | case NETLINK_NO_ENOBUFS: |
| 2226 | if (len < sizeof(int)) |
| 2227 | return -EINVAL; |
| 2228 | len = sizeof(int); |
| 2229 | val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0; |
| 2230 | if (put_user(len, optlen) || |
| 2231 | put_user(val, optval)) |
| 2232 | return -EFAULT; |
| 2233 | err = 0; |
| 2234 | break; |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 2235 | default: |
| 2236 | err = -ENOPROTOOPT; |
| 2237 | } |
| 2238 | return err; |
| 2239 | } |
| 2240 | |
| 2241 | static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb) |
| 2242 | { |
| 2243 | struct nl_pktinfo info; |
| 2244 | |
| 2245 | info.group = NETLINK_CB(skb).dst_group; |
| 2246 | put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info); |
| 2247 | } |
| 2248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock, |
| 2250 | struct msghdr *msg, size_t len) |
| 2251 | { |
| 2252 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 2253 | struct sock *sk = sock->sk; |
| 2254 | struct netlink_sock *nlk = nlk_sk(sk); |
Steffen Hurrle | 342dfc3 | 2014-01-17 22:53:15 +0100 | [diff] [blame] | 2255 | DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2256 | u32 dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2257 | u32 dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | struct sk_buff *skb; |
| 2259 | int err; |
| 2260 | struct scm_cookie scm; |
Eric W. Biederman | 2d7a85f | 2014-05-30 11:04:00 -0700 | [diff] [blame] | 2261 | u32 netlink_skb_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | |
| 2263 | if (msg->msg_flags&MSG_OOB) |
| 2264 | return -EOPNOTSUPP; |
| 2265 | |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 2266 | if (NULL == siocb->scm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | siocb->scm = &scm; |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 2268 | |
Eric Dumazet | e0e3cea | 2012-08-21 06:21:17 +0000 | [diff] [blame] | 2269 | err = scm_send(sock, msg, siocb->scm, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | if (err < 0) |
| 2271 | return err; |
| 2272 | |
| 2273 | if (msg->msg_namelen) { |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2274 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | if (addr->nl_family != AF_NETLINK) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2276 | goto out; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2277 | dst_portid = addr->nl_pid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2278 | dst_group = ffs(addr->nl_groups); |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2279 | err = -EPERM; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2280 | if ((dst_group || dst_portid) && |
Eric W. Biederman | 5187cd0 | 2014-04-23 14:25:48 -0700 | [diff] [blame] | 2281 | !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND)) |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2282 | goto out; |
Eric W. Biederman | 2d7a85f | 2014-05-30 11:04:00 -0700 | [diff] [blame] | 2283 | netlink_skb_flags |= NETLINK_SKB_DST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | } else { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2285 | dst_portid = nlk->dst_portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2286 | dst_group = nlk->dst_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2289 | if (!nlk->portid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | err = netlink_autobind(sock); |
| 2291 | if (err) |
| 2292 | goto out; |
| 2293 | } |
| 2294 | |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 2295 | if (netlink_tx_is_mmaped(sk) && |
Al Viro | c0371da | 2014-11-24 10:42:55 -0500 | [diff] [blame] | 2296 | msg->msg_iter.iov->iov_base == NULL) { |
Patrick McHardy | 5fd9612 | 2013-04-17 06:47:03 +0000 | [diff] [blame] | 2297 | err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, |
| 2298 | siocb); |
| 2299 | goto out; |
| 2300 | } |
| 2301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | err = -EMSGSIZE; |
| 2303 | if (len > sk->sk_sndbuf - 32) |
| 2304 | goto out; |
| 2305 | err = -ENOBUFS; |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 2306 | skb = netlink_alloc_large_skb(len, dst_group); |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2307 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | goto out; |
| 2309 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2310 | NETLINK_CB(skb).portid = nlk->portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2311 | NETLINK_CB(skb).dst_group = dst_group; |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 2312 | NETLINK_CB(skb).creds = siocb->scm->creds; |
Eric W. Biederman | 2d7a85f | 2014-05-30 11:04:00 -0700 | [diff] [blame] | 2313 | NETLINK_CB(skb).flags = netlink_skb_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | err = -EFAULT; |
Al Viro | 6ce8e9c | 2014-04-06 21:25:44 -0400 | [diff] [blame] | 2316 | if (memcpy_from_msg(skb_put(skb, len), msg, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | kfree_skb(skb); |
| 2318 | goto out; |
| 2319 | } |
| 2320 | |
| 2321 | err = security_netlink_send(sk, skb); |
| 2322 | if (err) { |
| 2323 | kfree_skb(skb); |
| 2324 | goto out; |
| 2325 | } |
| 2326 | |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2327 | if (dst_group) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | atomic_inc(&skb->users); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2329 | netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2331 | err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | |
| 2333 | out: |
Eric W. Biederman | b47030c | 2010-06-13 03:31:06 +0000 | [diff] [blame] | 2334 | scm_destroy(siocb->scm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | return err; |
| 2336 | } |
| 2337 | |
| 2338 | static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock, |
| 2339 | struct msghdr *msg, size_t len, |
| 2340 | int flags) |
| 2341 | { |
| 2342 | struct sock_iocb *siocb = kiocb_to_siocb(kiocb); |
| 2343 | struct scm_cookie scm; |
| 2344 | struct sock *sk = sock->sk; |
| 2345 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2346 | int noblock = flags&MSG_DONTWAIT; |
| 2347 | size_t copied; |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2348 | struct sk_buff *skb, *data_skb; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2349 | int err, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | |
| 2351 | if (flags&MSG_OOB) |
| 2352 | return -EOPNOTSUPP; |
| 2353 | |
| 2354 | copied = 0; |
| 2355 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2356 | skb = skb_recv_datagram(sk, flags, noblock, &err); |
| 2357 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | goto out; |
| 2359 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2360 | data_skb = skb; |
| 2361 | |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2362 | #ifdef CONFIG_COMPAT_NETLINK_MESSAGES |
| 2363 | if (unlikely(skb_shinfo(skb)->frag_list)) { |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2364 | /* |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2365 | * If this skb has a frag_list, then here that means that we |
| 2366 | * will have to use the frag_list skb's data for compat tasks |
| 2367 | * and the regular skb's data for normal (non-compat) tasks. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2368 | * |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2369 | * If we need to send the compat skb, assign it to the |
| 2370 | * 'data_skb' variable so that it will be used below for data |
| 2371 | * copying. We keep 'skb' for everything else, including |
| 2372 | * freeing both later. |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2373 | */ |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2374 | if (flags & MSG_CMSG_COMPAT) |
| 2375 | data_skb = skb_shinfo(skb)->frag_list; |
Johannes Berg | 1dacc76 | 2009-07-01 11:26:02 +0000 | [diff] [blame] | 2376 | } |
| 2377 | #endif |
| 2378 | |
Eric Dumazet | 9063e21 | 2014-03-07 12:02:33 -0800 | [diff] [blame] | 2379 | /* Record the max length of recvmsg() calls for future allocations */ |
| 2380 | nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len); |
| 2381 | nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len, |
| 2382 | 16384); |
| 2383 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2384 | copied = data_skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | if (len < copied) { |
| 2386 | msg->msg_flags |= MSG_TRUNC; |
| 2387 | copied = len; |
| 2388 | } |
| 2389 | |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2390 | skb_reset_transport_header(data_skb); |
David S. Miller | 51f3d02 | 2014-11-05 16:46:40 -0500 | [diff] [blame] | 2391 | err = skb_copy_datagram_msg(data_skb, 0, msg, copied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | |
| 2393 | if (msg->msg_name) { |
Steffen Hurrle | 342dfc3 | 2014-01-17 22:53:15 +0100 | [diff] [blame] | 2394 | DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | addr->nl_family = AF_NETLINK; |
| 2396 | addr->nl_pad = 0; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2397 | addr->nl_pid = NETLINK_CB(skb).portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 2398 | addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | msg->msg_namelen = sizeof(*addr); |
| 2400 | } |
| 2401 | |
Patrick McHardy | cc9a06c | 2006-03-12 20:34:27 -0800 | [diff] [blame] | 2402 | if (nlk->flags & NETLINK_RECV_PKTINFO) |
| 2403 | netlink_cmsg_recv_pktinfo(msg, skb); |
| 2404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | if (NULL == siocb->scm) { |
| 2406 | memset(&scm, 0, sizeof(scm)); |
| 2407 | siocb->scm = &scm; |
| 2408 | } |
| 2409 | siocb->scm->creds = *NETLINK_CREDS(skb); |
Patrick McHardy | 188ccb5 | 2007-05-03 03:27:01 -0700 | [diff] [blame] | 2410 | if (flags & MSG_TRUNC) |
Johannes Berg | 68d6ac6 | 2010-08-15 21:20:44 +0000 | [diff] [blame] | 2411 | copied = data_skb->len; |
David S. Miller | daa3766 | 2010-08-15 23:21:50 -0700 | [diff] [blame] | 2412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | skb_free_datagram(sk, skb); |
| 2414 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2415 | if (nlk->cb_running && |
| 2416 | atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) { |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2417 | ret = netlink_dump(sk); |
| 2418 | if (ret) { |
Ben Pfaff | ac30ef8 | 2014-07-09 10:31:22 -0700 | [diff] [blame] | 2419 | sk->sk_err = -ret; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2420 | sk->sk_error_report(sk); |
| 2421 | } |
| 2422 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | |
| 2424 | scm_recv(sock, msg, siocb->scm, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | out: |
| 2426 | netlink_rcv_wake(sk); |
| 2427 | return err ? : copied; |
| 2428 | } |
| 2429 | |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 2430 | static void netlink_data_ready(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2432 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | } |
| 2434 | |
| 2435 | /* |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2436 | * We export these functions to other modules. They provide a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | * complete set of kernel non-blocking support for message |
| 2438 | * queueing. |
| 2439 | */ |
| 2440 | |
| 2441 | struct sock * |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 2442 | __netlink_kernel_create(struct net *net, int unit, struct module *module, |
| 2443 | struct netlink_kernel_cfg *cfg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | { |
| 2445 | struct socket *sock; |
| 2446 | struct sock *sk; |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2447 | struct netlink_sock *nlk; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2448 | struct listeners *listeners = NULL; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2449 | struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL; |
| 2450 | unsigned int groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 2452 | BUG_ON(!nl_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2454 | if (unit < 0 || unit >= MAX_LINKS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | return NULL; |
| 2456 | |
| 2457 | if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock)) |
| 2458 | return NULL; |
| 2459 | |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 2460 | /* |
| 2461 | * We have to just have a reference on the net from sk, but don't |
| 2462 | * get_net it. Besides, we cannot get and then put the net here. |
| 2463 | * So we create one inside init_net and the move it to net. |
| 2464 | */ |
| 2465 | |
| 2466 | if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0) |
| 2467 | goto out_sock_release_nosk; |
| 2468 | |
| 2469 | sk = sock->sk; |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 2470 | sk_change_net(sk, net); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2471 | |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2472 | if (!cfg || cfg->groups < 32) |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2473 | groups = 32; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2474 | else |
| 2475 | groups = cfg->groups; |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2476 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2477 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2478 | if (!listeners) |
| 2479 | goto out_sock_release; |
| 2480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2481 | sk->sk_data_ready = netlink_data_ready; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 2482 | if (cfg && cfg->input) |
| 2483 | nlk_sk(sk)->netlink_rcv = cfg->input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | |
Herbert Xu | 8ea65f4 | 2015-01-26 14:02:56 +1100 | [diff] [blame^] | 2485 | if (netlink_insert(sk, 0)) |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2486 | goto out_sock_release; |
| 2487 | |
| 2488 | nlk = nlk_sk(sk); |
| 2489 | nlk->flags |= NETLINK_KERNEL_SOCKET; |
| 2490 | |
| 2491 | netlink_table_grab(); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2492 | if (!nl_table[unit].registered) { |
| 2493 | nl_table[unit].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2494 | rcu_assign_pointer(nl_table[unit].listeners, listeners); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2495 | nl_table[unit].cb_mutex = cb_mutex; |
| 2496 | nl_table[unit].module = module; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2497 | if (cfg) { |
| 2498 | nl_table[unit].bind = cfg->bind; |
Hiroaki SHIMODA | 6251edd | 2014-11-13 04:24:10 +0900 | [diff] [blame] | 2499 | nl_table[unit].unbind = cfg->unbind; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2500 | nl_table[unit].flags = cfg->flags; |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2501 | if (cfg->compare) |
| 2502 | nl_table[unit].compare = cfg->compare; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 2503 | } |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2504 | nl_table[unit].registered = 1; |
Jesper Juhl | f937f1f46 | 2007-10-15 01:39:12 -0700 | [diff] [blame] | 2505 | } else { |
| 2506 | kfree(listeners); |
Denis V. Lunev | 869e58f | 2008-01-18 23:53:31 -0800 | [diff] [blame] | 2507 | nl_table[unit].registered++; |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2508 | } |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2509 | netlink_table_ungrab(); |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2510 | return sk; |
| 2511 | |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2512 | out_sock_release: |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 2513 | kfree(listeners); |
Denis V. Lunev | 9dfbec1 | 2008-02-29 11:17:56 -0800 | [diff] [blame] | 2514 | netlink_kernel_release(sk); |
Pavel Emelyanov | 23fe186 | 2008-01-30 19:31:06 -0800 | [diff] [blame] | 2515 | return NULL; |
| 2516 | |
| 2517 | out_sock_release_nosk: |
Harald Welte | 4fdb3bb | 2005-08-09 19:40:55 -0700 | [diff] [blame] | 2518 | sock_release(sock); |
Patrick McHardy | 77247bb | 2005-08-14 19:27:13 -0700 | [diff] [blame] | 2519 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | } |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 2521 | EXPORT_SYMBOL(__netlink_kernel_create); |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 2522 | |
| 2523 | void |
| 2524 | netlink_kernel_release(struct sock *sk) |
| 2525 | { |
Denis V. Lunev | edf0208 | 2008-02-29 11:18:32 -0800 | [diff] [blame] | 2526 | sk_release_kernel(sk); |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 2527 | } |
| 2528 | EXPORT_SYMBOL(netlink_kernel_release); |
| 2529 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2530 | int __netlink_change_ngroups(struct sock *sk, unsigned int groups) |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2531 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2532 | struct listeners *new, *old; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2533 | struct netlink_table *tbl = &nl_table[sk->sk_protocol]; |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2534 | |
| 2535 | if (groups < 32) |
| 2536 | groups = 32; |
| 2537 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2538 | if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2539 | new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC); |
| 2540 | if (!new) |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2541 | return -ENOMEM; |
Eric Dumazet | 6d772ac | 2012-10-18 03:21:55 +0000 | [diff] [blame] | 2542 | old = nl_deref_protected(tbl->listeners); |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 2543 | memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups)); |
| 2544 | rcu_assign_pointer(tbl->listeners, new); |
| 2545 | |
Lai Jiangshan | 37b6b93 | 2011-03-15 18:01:42 +0800 | [diff] [blame] | 2546 | kfree_rcu(old, rcu); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2547 | } |
| 2548 | tbl->groups = groups; |
| 2549 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2550 | return 0; |
| 2551 | } |
| 2552 | |
| 2553 | /** |
| 2554 | * netlink_change_ngroups - change number of multicast groups |
| 2555 | * |
| 2556 | * This changes the number of multicast groups that are available |
| 2557 | * on a certain netlink family. Note that it is not possible to |
| 2558 | * change the number of groups to below 32. Also note that it does |
| 2559 | * not implicitly call netlink_clear_multicast_users() when the |
| 2560 | * number of groups is reduced. |
| 2561 | * |
| 2562 | * @sk: The kernel netlink socket, as returned by netlink_kernel_create(). |
| 2563 | * @groups: The new number of groups. |
| 2564 | */ |
| 2565 | int netlink_change_ngroups(struct sock *sk, unsigned int groups) |
| 2566 | { |
| 2567 | int err; |
| 2568 | |
| 2569 | netlink_table_grab(); |
| 2570 | err = __netlink_change_ngroups(sk, groups); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2571 | netlink_table_ungrab(); |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 2572 | |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2573 | return err; |
| 2574 | } |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 2575 | |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2576 | void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group) |
| 2577 | { |
| 2578 | struct sock *sk; |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2579 | struct netlink_table *tbl = &nl_table[ksk->sk_protocol]; |
| 2580 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2581 | sk_for_each_bound(sk, &tbl->mc_list) |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 2582 | netlink_update_socket_mc(nlk_sk(sk), group, 0); |
| 2583 | } |
| 2584 | |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2585 | struct nlmsghdr * |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2586 | __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] | 2587 | { |
| 2588 | struct nlmsghdr *nlh; |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2589 | int size = nlmsg_msg_size(len); |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2590 | |
Wang Yufen | 23b4567 | 2014-02-17 16:53:32 +0800 | [diff] [blame] | 2591 | nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size)); |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2592 | nlh->nlmsg_type = type; |
| 2593 | nlh->nlmsg_len = size; |
| 2594 | nlh->nlmsg_flags = flags; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2595 | nlh->nlmsg_pid = portid; |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2596 | nlh->nlmsg_seq = seq; |
| 2597 | if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0) |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2598 | memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size); |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 2599 | return nlh; |
| 2600 | } |
| 2601 | EXPORT_SYMBOL(__nlmsg_put); |
| 2602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | /* |
| 2604 | * It looks a bit ugly. |
| 2605 | * It would be better to create kernel thread. |
| 2606 | */ |
| 2607 | |
| 2608 | static int netlink_dump(struct sock *sk) |
| 2609 | { |
| 2610 | struct netlink_sock *nlk = nlk_sk(sk); |
| 2611 | struct netlink_callback *cb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2612 | struct sk_buff *skb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | struct nlmsghdr *nlh; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2614 | int len, err = -ENOBUFS; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2615 | int alloc_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2617 | mutex_lock(nlk->cb_mutex); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2618 | if (!nlk->cb_running) { |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2619 | err = -EINVAL; |
| 2620 | goto errout_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | } |
| 2622 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2623 | cb = &nlk->cb; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2624 | alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE); |
| 2625 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2626 | if (!netlink_rx_is_mmaped(sk) && |
| 2627 | atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf) |
| 2628 | goto errout_skb; |
Eric Dumazet | 9063e21 | 2014-03-07 12:02:33 -0800 | [diff] [blame] | 2629 | |
| 2630 | /* NLMSG_GOODSIZE is small to avoid high order allocations being |
| 2631 | * required, but it makes sense to _attempt_ a 16K bytes allocation |
| 2632 | * to reduce number of system calls on dump operations, if user |
| 2633 | * ever provided a big enough buffer. |
| 2634 | */ |
| 2635 | if (alloc_size < nlk->max_recvmsg_len) { |
| 2636 | skb = netlink_alloc_skb(sk, |
| 2637 | nlk->max_recvmsg_len, |
| 2638 | nlk->portid, |
| 2639 | GFP_KERNEL | |
| 2640 | __GFP_NOWARN | |
| 2641 | __GFP_NORETRY); |
| 2642 | /* available room should be exact amount to avoid MSG_TRUNC */ |
| 2643 | if (skb) |
| 2644 | skb_reserve(skb, skb_tailroom(skb) - |
| 2645 | nlk->max_recvmsg_len); |
| 2646 | } |
| 2647 | if (!skb) |
| 2648 | skb = netlink_alloc_skb(sk, alloc_size, nlk->portid, |
| 2649 | GFP_KERNEL); |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2650 | if (!skb) |
Dan Carpenter | c63d6ea | 2011-06-15 03:11:42 +0000 | [diff] [blame] | 2651 | goto errout_skb; |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2652 | netlink_skb_set_owner_r(skb, sk); |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 2653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | len = cb->dump(skb, cb); |
| 2655 | |
| 2656 | if (len > 0) { |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2657 | mutex_unlock(nlk->cb_mutex); |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 2658 | |
| 2659 | if (sk_filter(sk, skb)) |
| 2660 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 2661 | else |
| 2662 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | return 0; |
| 2664 | } |
| 2665 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2666 | nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI); |
| 2667 | if (!nlh) |
| 2668 | goto errout_skb; |
| 2669 | |
Johannes Berg | 670dc28 | 2011-06-20 13:40:46 +0200 | [diff] [blame] | 2670 | nl_dump_check_consistent(cb, nlh); |
| 2671 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2672 | memcpy(nlmsg_data(nlh), &len, sizeof(len)); |
| 2673 | |
Stephen Hemminger | b1153f2 | 2008-03-21 15:46:12 -0700 | [diff] [blame] | 2674 | if (sk_filter(sk, skb)) |
| 2675 | kfree_skb(skb); |
Eric Dumazet | 4a7e7c2 | 2012-04-05 22:17:46 +0000 | [diff] [blame] | 2676 | else |
| 2677 | __netlink_sendskb(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | |
Thomas Graf | a8f74b2 | 2005-11-10 02:25:52 +0100 | [diff] [blame] | 2679 | if (cb->done) |
| 2680 | cb->done(cb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2682 | nlk->cb_running = false; |
| 2683 | mutex_unlock(nlk->cb_mutex); |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2684 | module_put(cb->module); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2685 | consume_skb(cb->skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | return 0; |
Thomas Graf | 1797754 | 2005-06-18 22:53:48 -0700 | [diff] [blame] | 2687 | |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2688 | errout_skb: |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2689 | mutex_unlock(nlk->cb_mutex); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2690 | kfree_skb(skb); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2691 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | } |
| 2693 | |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2694 | int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
| 2695 | const struct nlmsghdr *nlh, |
| 2696 | struct netlink_dump_control *control) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | { |
| 2698 | struct netlink_callback *cb; |
| 2699 | struct sock *sk; |
| 2700 | struct netlink_sock *nlk; |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2701 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2703 | /* Memory mapped dump requests need to be copied to avoid looping |
| 2704 | * on the pending state in netlink_mmap_sendmsg() while the CB hold |
| 2705 | * a reference to the skb. |
| 2706 | */ |
| 2707 | if (netlink_skb_is_mmaped(skb)) { |
| 2708 | skb = skb_copy(skb, GFP_KERNEL); |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2709 | if (skb == NULL) |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2710 | return -ENOBUFS; |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2711 | } else |
| 2712 | atomic_inc(&skb->users); |
| 2713 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2714 | sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid); |
| 2715 | if (sk == NULL) { |
| 2716 | ret = -ECONNREFUSED; |
| 2717 | goto error_free; |
| 2718 | } |
| 2719 | |
| 2720 | nlk = nlk_sk(sk); |
| 2721 | mutex_lock(nlk->cb_mutex); |
| 2722 | /* A dump is in progress... */ |
| 2723 | if (nlk->cb_running) { |
| 2724 | ret = -EBUSY; |
| 2725 | goto error_unlock; |
| 2726 | } |
| 2727 | /* add reference of module which cb->dump belongs to */ |
| 2728 | if (!try_module_get(control->module)) { |
| 2729 | ret = -EPROTONOSUPPORT; |
| 2730 | goto error_unlock; |
| 2731 | } |
| 2732 | |
| 2733 | cb = &nlk->cb; |
| 2734 | memset(cb, 0, sizeof(*cb)); |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 2735 | cb->dump = control->dump; |
| 2736 | cb->done = control->done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | cb->nlh = nlh; |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 2738 | cb->data = control->data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2739 | cb->module = control->module; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 2740 | cb->min_dump_alloc = control->min_dump_alloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | cb->skb = skb; |
| 2742 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2743 | nlk->cb_running = true; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2744 | |
Patrick McHardy | af65bdf | 2007-04-20 14:14:21 -0700 | [diff] [blame] | 2745 | mutex_unlock(nlk->cb_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2747 | ret = netlink_dump(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | sock_put(sk); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2749 | |
Andrey Vagin | b44d211 | 2011-02-21 02:40:47 +0000 | [diff] [blame] | 2750 | if (ret) |
| 2751 | return ret; |
| 2752 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2753 | /* We successfully started a dump, by returning -EINTR we |
| 2754 | * signal not to send ACK even if it was requested. |
| 2755 | */ |
| 2756 | return -EINTR; |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2757 | |
| 2758 | error_unlock: |
| 2759 | sock_put(sk); |
| 2760 | mutex_unlock(nlk->cb_mutex); |
| 2761 | error_free: |
| 2762 | kfree_skb(skb); |
| 2763 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | } |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 2765 | EXPORT_SYMBOL(__netlink_dump_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | |
| 2767 | void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err) |
| 2768 | { |
| 2769 | struct sk_buff *skb; |
| 2770 | struct nlmsghdr *rep; |
| 2771 | struct nlmsgerr *errmsg; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2772 | size_t payload = sizeof(*errmsg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 2774 | /* error messages get the original request appened */ |
| 2775 | if (err) |
| 2776 | payload += nlmsg_len(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 2778 | skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload), |
| 2779 | NETLINK_CB(in_skb).portid, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | if (!skb) { |
| 2781 | struct sock *sk; |
| 2782 | |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2783 | sk = netlink_lookup(sock_net(in_skb->sk), |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2784 | in_skb->sk->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2785 | NETLINK_CB(in_skb).portid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2786 | if (sk) { |
| 2787 | sk->sk_err = ENOBUFS; |
| 2788 | sk->sk_error_report(sk); |
| 2789 | sock_put(sk); |
| 2790 | } |
| 2791 | return; |
| 2792 | } |
| 2793 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2794 | rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq, |
John Fastabend | 5dba93a | 2009-09-25 13:11:44 +0000 | [diff] [blame] | 2795 | NLMSG_ERROR, payload, 0); |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2796 | errmsg = nlmsg_data(rep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2797 | errmsg->error = err; |
Thomas Graf | bf8b79e | 2006-08-04 23:03:29 -0700 | [diff] [blame] | 2798 | memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh)); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2799 | 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] | 2800 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2801 | EXPORT_SYMBOL(netlink_ack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2803 | 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] | 2804 | struct nlmsghdr *)) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2805 | { |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2806 | struct nlmsghdr *nlh; |
| 2807 | int err; |
| 2808 | |
| 2809 | while (skb->len >= nlmsg_total_size(0)) { |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2810 | int msglen; |
| 2811 | |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 2812 | nlh = nlmsg_hdr(skb); |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2813 | err = 0; |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2814 | |
Martin Murray | ad8e4b7 | 2006-01-10 13:02:29 -0800 | [diff] [blame] | 2815 | if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2816 | return 0; |
| 2817 | |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2818 | /* Only requests are handled by the kernel */ |
| 2819 | if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2820 | goto ack; |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2821 | |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 2822 | /* Skip control messages */ |
| 2823 | if (nlh->nlmsg_type < NLMSG_MIN_TYPE) |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2824 | goto ack; |
Thomas Graf | 45e7ae7 | 2007-03-22 23:29:10 -0700 | [diff] [blame] | 2825 | |
Thomas Graf | 1d00a4e | 2007-03-22 23:30:12 -0700 | [diff] [blame] | 2826 | err = cb(skb, nlh); |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2827 | if (err == -EINTR) |
| 2828 | goto skip; |
| 2829 | |
| 2830 | ack: |
Thomas Graf | d35b685 | 2007-03-22 23:28:46 -0700 | [diff] [blame] | 2831 | if (nlh->nlmsg_flags & NLM_F_ACK || err) |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2832 | netlink_ack(skb, nlh, err); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2833 | |
Denis V. Lunev | 5c58298 | 2007-10-23 20:29:25 -0700 | [diff] [blame] | 2834 | skip: |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2835 | msglen = NLMSG_ALIGN(nlh->nlmsg_len); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 2836 | if (msglen > skb->len) |
| 2837 | msglen = skb->len; |
| 2838 | skb_pull(skb, msglen); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2839 | } |
| 2840 | |
| 2841 | return 0; |
| 2842 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2843 | EXPORT_SYMBOL(netlink_rcv_skb); |
Thomas Graf | 82ace47 | 2005-11-10 02:25:53 +0100 | [diff] [blame] | 2844 | |
| 2845 | /** |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2846 | * nlmsg_notify - send a notification netlink message |
| 2847 | * @sk: netlink socket to use |
| 2848 | * @skb: notification message |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2849 | * @portid: destination netlink portid for reports or 0 |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2850 | * @group: destination multicast group or 0 |
| 2851 | * @report: 1 to report back, 0 to disable |
| 2852 | * @flags: allocation flags |
| 2853 | */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2854 | int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid, |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2855 | unsigned int group, int report, gfp_t flags) |
| 2856 | { |
| 2857 | int err = 0; |
| 2858 | |
| 2859 | if (group) { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2860 | int exclude_portid = 0; |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2861 | |
| 2862 | if (report) { |
| 2863 | atomic_inc(&skb->users); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2864 | exclude_portid = portid; |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2865 | } |
| 2866 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2867 | /* errors reported via destination sk->sk_err, but propagate |
| 2868 | * delivery errors if NETLINK_BROADCAST_ERROR flag is set */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2869 | err = nlmsg_multicast(sk, skb, exclude_portid, group, flags); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2870 | } |
| 2871 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2872 | if (report) { |
| 2873 | int err2; |
| 2874 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2875 | err2 = nlmsg_unicast(sk, skb, portid); |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 2876 | if (!err || err == -ESRCH) |
| 2877 | err = err2; |
| 2878 | } |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2879 | |
| 2880 | return err; |
| 2881 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2882 | EXPORT_SYMBOL(nlmsg_notify); |
Thomas Graf | d387f6a | 2006-08-15 00:31:06 -0700 | [diff] [blame] | 2883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2884 | #ifdef CONFIG_PROC_FS |
| 2885 | struct nl_seq_iter { |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 2886 | struct seq_net_private p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | int link; |
| 2888 | int hash_idx; |
| 2889 | }; |
| 2890 | |
| 2891 | static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos) |
| 2892 | { |
| 2893 | struct nl_seq_iter *iter = seq->private; |
| 2894 | int i, j; |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2895 | struct netlink_sock *nlk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | struct sock *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | loff_t off = 0; |
| 2898 | |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 2899 | for (i = 0; i < MAX_LINKS; i++) { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2900 | struct rhashtable *ht = &nl_table[i].hash; |
Eric Dumazet | 67a24ac | 2014-08-05 07:50:07 +0200 | [diff] [blame] | 2901 | const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2903 | for (j = 0; j < tbl->size; j++) { |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 2904 | struct rhash_head *node; |
| 2905 | |
| 2906 | rht_for_each_entry_rcu(nlk, node, tbl, j, node) { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2907 | s = (struct sock *)nlk; |
| 2908 | |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 2909 | if (sock_net(s) != seq_file_net(seq)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2910 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | if (off == pos) { |
| 2912 | iter->link = i; |
| 2913 | iter->hash_idx = j; |
| 2914 | return s; |
| 2915 | } |
| 2916 | ++off; |
| 2917 | } |
| 2918 | } |
| 2919 | } |
| 2920 | return NULL; |
| 2921 | } |
| 2922 | |
| 2923 | static void *netlink_seq_start(struct seq_file *seq, loff_t *pos) |
Thomas Graf | 21e4902 | 2015-01-02 23:00:22 +0100 | [diff] [blame] | 2924 | __acquires(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2926 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 2928 | } |
| 2929 | |
| 2930 | static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2931 | { |
Thomas Graf | 78fd1d0 | 2014-10-21 22:05:38 +0200 | [diff] [blame] | 2932 | struct rhashtable *ht; |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 2933 | const struct bucket_table *tbl; |
| 2934 | struct rhash_head *node; |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2935 | struct netlink_sock *nlk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2936 | struct nl_seq_iter *iter; |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2937 | struct net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | int i, j; |
| 2939 | |
| 2940 | ++*pos; |
| 2941 | |
| 2942 | if (v == SEQ_START_TOKEN) |
| 2943 | return netlink_seq_socket_idx(seq, 0); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 2944 | |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 2945 | net = seq_file_net(seq); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 2946 | iter = seq->private; |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2947 | nlk = v; |
| 2948 | |
Thomas Graf | 78fd1d0 | 2014-10-21 22:05:38 +0200 | [diff] [blame] | 2949 | i = iter->link; |
| 2950 | ht = &nl_table[i].hash; |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 2951 | tbl = rht_dereference_rcu(ht->tbl, ht); |
| 2952 | 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] | 2953 | if (net_eq(sock_net((struct sock *)nlk), net)) |
| 2954 | return nlk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | j = iter->hash_idx + 1; |
| 2957 | |
| 2958 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2960 | for (; j < tbl->size; j++) { |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 2961 | rht_for_each_entry_rcu(nlk, node, tbl, j, node) { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2962 | if (net_eq(sock_net((struct sock *)nlk), net)) { |
| 2963 | iter->link = i; |
| 2964 | iter->hash_idx = j; |
| 2965 | return nlk; |
| 2966 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | } |
| 2968 | } |
| 2969 | |
| 2970 | j = 0; |
| 2971 | } while (++i < MAX_LINKS); |
| 2972 | |
| 2973 | return NULL; |
| 2974 | } |
| 2975 | |
| 2976 | static void netlink_seq_stop(struct seq_file *seq, void *v) |
Thomas Graf | 21e4902 | 2015-01-02 23:00:22 +0100 | [diff] [blame] | 2977 | __releases(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 2979 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | } |
| 2981 | |
| 2982 | |
| 2983 | static int netlink_seq_show(struct seq_file *seq, void *v) |
| 2984 | { |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2985 | if (v == SEQ_START_TOKEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | seq_puts(seq, |
| 2987 | "sk Eth Pid Groups " |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 2988 | "Rmem Wmem Dump Locks Drops Inode\n"); |
Eric Dumazet | 658cb35 | 2012-04-22 21:30:21 +0000 | [diff] [blame] | 2989 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | struct sock *s = v; |
| 2991 | struct netlink_sock *nlk = nlk_sk(s); |
| 2992 | |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 2993 | 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] | 2994 | s, |
| 2995 | s->sk_protocol, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 2996 | nlk->portid, |
Patrick McHardy | 513c250 | 2005-09-06 15:43:59 -0700 | [diff] [blame] | 2997 | nlk->groups ? (u32)nlk->groups[0] : 0, |
Eric Dumazet | 31e6d36 | 2009-06-17 19:05:41 -0700 | [diff] [blame] | 2998 | sk_rmem_alloc_get(s), |
| 2999 | sk_wmem_alloc_get(s), |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 3000 | nlk->cb_running, |
Pablo Neira Ayuso | 38938bf | 2009-03-24 16:37:55 -0700 | [diff] [blame] | 3001 | atomic_read(&s->sk_refcnt), |
Masatake YAMATO | cf0aa4e | 2010-02-27 19:45:37 +0000 | [diff] [blame] | 3002 | atomic_read(&s->sk_drops), |
| 3003 | sock_i_ino(s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | ); |
| 3005 | |
| 3006 | } |
| 3007 | return 0; |
| 3008 | } |
| 3009 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 3010 | static const struct seq_operations netlink_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | .start = netlink_seq_start, |
| 3012 | .next = netlink_seq_next, |
| 3013 | .stop = netlink_seq_stop, |
| 3014 | .show = netlink_seq_show, |
| 3015 | }; |
| 3016 | |
| 3017 | |
| 3018 | static int netlink_seq_open(struct inode *inode, struct file *file) |
| 3019 | { |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 3020 | return seq_open_net(inode, file, &netlink_seq_ops, |
| 3021 | sizeof(struct nl_seq_iter)); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3022 | } |
| 3023 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 3024 | static const struct file_operations netlink_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | .owner = THIS_MODULE, |
| 3026 | .open = netlink_seq_open, |
| 3027 | .read = seq_read, |
| 3028 | .llseek = seq_lseek, |
Denis V. Lunev | e372c41 | 2007-11-19 22:31:54 -0800 | [diff] [blame] | 3029 | .release = seq_release_net, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | }; |
| 3031 | |
| 3032 | #endif |
| 3033 | |
| 3034 | int netlink_register_notifier(struct notifier_block *nb) |
| 3035 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 3036 | return atomic_notifier_chain_register(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 3038 | EXPORT_SYMBOL(netlink_register_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3039 | |
| 3040 | int netlink_unregister_notifier(struct notifier_block *nb) |
| 3041 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 3042 | return atomic_notifier_chain_unregister(&netlink_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | } |
Patrick McHardy | 6ac552f | 2007-12-04 00:19:38 -0800 | [diff] [blame] | 3044 | EXPORT_SYMBOL(netlink_unregister_notifier); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 3045 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 3046 | static const struct proto_ops netlink_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | .family = PF_NETLINK, |
| 3048 | .owner = THIS_MODULE, |
| 3049 | .release = netlink_release, |
| 3050 | .bind = netlink_bind, |
| 3051 | .connect = netlink_connect, |
| 3052 | .socketpair = sock_no_socketpair, |
| 3053 | .accept = sock_no_accept, |
| 3054 | .getname = netlink_getname, |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 3055 | .poll = netlink_poll, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | .ioctl = sock_no_ioctl, |
| 3057 | .listen = sock_no_listen, |
| 3058 | .shutdown = sock_no_shutdown, |
Patrick McHardy | 9a4595b | 2005-08-15 12:32:15 -0700 | [diff] [blame] | 3059 | .setsockopt = netlink_setsockopt, |
| 3060 | .getsockopt = netlink_getsockopt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | .sendmsg = netlink_sendmsg, |
| 3062 | .recvmsg = netlink_recvmsg, |
Patrick McHardy | ccdfcc3 | 2013-04-17 06:47:01 +0000 | [diff] [blame] | 3063 | .mmap = netlink_mmap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3064 | .sendpage = sock_no_sendpage, |
| 3065 | }; |
| 3066 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 3067 | static const struct net_proto_family netlink_family_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3068 | .family = PF_NETLINK, |
| 3069 | .create = netlink_create, |
| 3070 | .owner = THIS_MODULE, /* for consistency 8) */ |
| 3071 | }; |
| 3072 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 3073 | static int __net_init netlink_net_init(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3074 | { |
| 3075 | #ifdef CONFIG_PROC_FS |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 3076 | if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops)) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3077 | return -ENOMEM; |
| 3078 | #endif |
| 3079 | return 0; |
| 3080 | } |
| 3081 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 3082 | static void __net_exit netlink_net_exit(struct net *net) |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3083 | { |
| 3084 | #ifdef CONFIG_PROC_FS |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 3085 | remove_proc_entry("netlink", net->proc_net); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3086 | #endif |
| 3087 | } |
| 3088 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3089 | static void __init netlink_add_usersock_entry(void) |
| 3090 | { |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3091 | struct listeners *listeners; |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3092 | int groups = 32; |
| 3093 | |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3094 | listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3095 | if (!listeners) |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3096 | panic("netlink_add_usersock_entry: Cannot allocate listeners\n"); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3097 | |
| 3098 | netlink_table_grab(); |
| 3099 | |
| 3100 | nl_table[NETLINK_USERSOCK].groups = groups; |
Eric Dumazet | 5c398dc | 2010-10-24 04:27:10 +0000 | [diff] [blame] | 3101 | rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners); |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3102 | nl_table[NETLINK_USERSOCK].module = THIS_MODULE; |
| 3103 | nl_table[NETLINK_USERSOCK].registered = 1; |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 3104 | nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND; |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3105 | |
| 3106 | netlink_table_ungrab(); |
| 3107 | } |
| 3108 | |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 3109 | static struct pernet_operations __net_initdata netlink_net_ops = { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3110 | .init = netlink_net_init, |
| 3111 | .exit = netlink_net_exit, |
| 3112 | }; |
| 3113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3114 | static int __init netlink_proto_init(void) |
| 3115 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | int err = proto_register(&netlink_proto, 0); |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 3118 | struct rhashtable_params ht_params = { |
| 3119 | .head_offset = offsetof(struct netlink_sock, node), |
| 3120 | .key_offset = offsetof(struct netlink_sock, portid), |
| 3121 | .key_len = sizeof(u32), /* portid */ |
Daniel Borkmann | 7f19fc5 | 2014-12-10 16:33:10 +0100 | [diff] [blame] | 3122 | .hashfn = jhash, |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 3123 | .max_shift = 16, /* 64K */ |
| 3124 | .grow_decision = rht_grow_above_75, |
| 3125 | .shrink_decision = rht_shrink_below_30, |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 3126 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | |
| 3128 | if (err != 0) |
| 3129 | goto out; |
| 3130 | |
YOSHIFUJI Hideaki / 吉藤英明 | fab2574 | 2013-01-09 07:19:48 +0000 | [diff] [blame] | 3131 | 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] | 3132 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 3133 | nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3134 | if (!nl_table) |
| 3135 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | for (i = 0; i < MAX_LINKS; i++) { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 3138 | if (rhashtable_init(&nl_table[i].hash, &ht_params) < 0) { |
| 3139 | while (--i > 0) |
| 3140 | rhashtable_destroy(&nl_table[i].hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | kfree(nl_table); |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3142 | goto panic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | } |
| 3145 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 3146 | INIT_LIST_HEAD(&netlink_tap_all); |
| 3147 | |
David S. Miller | b963ea8 | 2010-08-30 19:08:01 -0700 | [diff] [blame] | 3148 | netlink_add_usersock_entry(); |
| 3149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3150 | sock_register(&netlink_family_ops); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 3151 | register_pernet_subsys(&netlink_net_ops); |
YOSHIFUJI Hideaki | 746fac4 | 2007-02-09 23:25:07 +0900 | [diff] [blame] | 3152 | /* The netlink device handler may be needed early. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | rtnetlink_init(); |
| 3154 | out: |
| 3155 | return err; |
Akinobu Mita | fab2caf | 2006-08-29 02:15:24 -0700 | [diff] [blame] | 3156 | panic: |
| 3157 | panic("netlink_init: Cannot allocate nl_table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3158 | } |
| 3159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | core_initcall(netlink_proto_init); |