blob: 6ee69c27f8068aecd70921a249d0b72dc790c143 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NETLINK Kernel-user communication protocol.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +090011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
13 * added netlink_proto_exit
14 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
15 * use nlk_sk, as sk->protinfo is on a diet 8)
Harald Welte4fdb3bb2005-08-09 19:40:55 -070016 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
17 * - inc module use count of module that owns
18 * the kernel socket in case userspace opens
19 * socket of same protocol
20 * - remove all module support, since netlink is
21 * mandatory if CONFIG_NET=y these days
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25
Randy Dunlap4fc268d2006-01-11 12:17:47 -080026#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/signal.h>
30#include <linux/sched.h>
31#include <linux/errno.h>
32#include <linux/string.h>
33#include <linux/stat.h>
34#include <linux/socket.h>
35#include <linux/un.h>
36#include <linux/fcntl.h>
37#include <linux/termios.h>
38#include <linux/sockios.h>
39#include <linux/net.h>
40#include <linux/fs.h>
41#include <linux/slab.h>
42#include <asm/uaccess.h>
43#include <linux/skbuff.h>
44#include <linux/netdevice.h>
45#include <linux/rtnetlink.h>
46#include <linux/proc_fs.h>
47#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/notifier.h>
49#include <linux/security.h>
50#include <linux/jhash.h>
51#include <linux/jiffies.h>
52#include <linux/random.h>
53#include <linux/bitops.h>
54#include <linux/mm.h>
55#include <linux/types.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010056#include <linux/audit.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070057#include <linux/mutex.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010058
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020059#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <net/sock.h>
61#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010062#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070064#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
Johannes Bergb4ff4f02007-07-18 15:46:06 -070065#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67struct netlink_sock {
68 /* struct sock has to be the first member of netlink_sock */
69 struct sock sk;
70 u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -070072 u32 dst_group;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070073 u32 flags;
74 u32 subscriptions;
75 u32 ngroups;
76 unsigned long *groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long state;
78 wait_queue_head_t wait;
79 struct netlink_callback *cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070080 struct mutex *cb_mutex;
81 struct mutex cb_def_mutex;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -070082 void (*netlink_rcv)(struct sk_buff *skb);
Patrick McHardy77247bb2005-08-14 19:27:13 -070083 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Patrick McHardy77247bb2005-08-14 19:27:13 -070086#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070087#define NETLINK_RECV_PKTINFO 0x2
Patrick McHardy77247bb2005-08-14 19:27:13 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static inline struct netlink_sock *nlk_sk(struct sock *sk)
90{
Denis Cheng32b21e02007-08-28 15:41:11 -070091 return container_of(sk, struct netlink_sock, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Denis V. Lunevaed81562007-10-10 21:14:32 -070094static inline int netlink_is_kernel(struct sock *sk)
95{
96 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099struct nl_pid_hash {
100 struct hlist_head *table;
101 unsigned long rehash_time;
102
103 unsigned int mask;
104 unsigned int shift;
105
106 unsigned int entries;
107 unsigned int max_shift;
108
109 u32 rnd;
110};
111
112struct netlink_table {
113 struct nl_pid_hash hash;
114 struct hlist_head mc_list;
Patrick McHardy4277a082006-03-20 18:52:01 -0800115 unsigned long *listeners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 unsigned int nl_nonroot;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700117 unsigned int groups;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700118 struct mutex *cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700119 struct module *module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700120 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123static struct netlink_table *nl_table;
124
125static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
126
127static int netlink_dump(struct sock *sk);
128static void netlink_destroy_callback(struct netlink_callback *cb);
129
130static DEFINE_RWLOCK(nl_table_lock);
131static atomic_t nl_table_users = ATOMIC_INIT(0);
132
Alan Sterne041c682006-03-27 01:16:30 -0800133static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Patrick McHardyd629b832005-08-14 19:27:50 -0700135static u32 netlink_group_mask(u32 group)
136{
137 return group ? 1 << (group - 1) : 0;
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
141{
142 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
143}
144
145static void netlink_sock_destruct(struct sock *sk)
146{
Herbert Xu3f660d62007-05-03 03:17:14 -0700147 struct netlink_sock *nlk = nlk_sk(sk);
148
Herbert Xu3f660d62007-05-03 03:17:14 -0700149 if (nlk->cb) {
150 if (nlk->cb->done)
151 nlk->cb->done(nlk->cb);
152 netlink_destroy_callback(nlk->cb);
153 }
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 skb_queue_purge(&sk->sk_receive_queue);
156
157 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800158 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
160 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700161
162 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
163 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
164 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800167/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
168 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
170 * this, _but_ remember, it adds useless work on UP machines.
171 */
172
173static void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800174 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700176 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 if (atomic_read(&nl_table_users)) {
179 DECLARE_WAITQUEUE(wait, current);
180
181 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800182 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 set_current_state(TASK_UNINTERRUPTIBLE);
184 if (atomic_read(&nl_table_users) == 0)
185 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700186 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700188 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 __set_current_state(TASK_RUNNING);
192 remove_wait_queue(&nl_table_wait, &wait);
193 }
194}
195
Ilpo Järvinen3f252522008-01-12 03:21:50 -0800196static void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800197 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700199 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 wake_up(&nl_table_wait);
201}
202
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800203static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204netlink_lock_table(void)
205{
206 /* read_lock() synchronizes us to netlink_table_grab */
207
208 read_lock(&nl_table_lock);
209 atomic_inc(&nl_table_users);
210 read_unlock(&nl_table_lock);
211}
212
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800213static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214netlink_unlock_table(void)
215{
216 if (atomic_dec_and_test(&nl_table_users))
217 wake_up(&nl_table_wait);
218}
219
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800220static inline struct sock *netlink_lookup(struct net *net, int protocol,
221 u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct nl_pid_hash *hash = &nl_table[protocol].hash;
224 struct hlist_head *head;
225 struct sock *sk;
226 struct hlist_node *node;
227
228 read_lock(&nl_table_lock);
229 head = nl_pid_hashfn(hash, pid);
230 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900231 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 sock_hold(sk);
233 goto found;
234 }
235 }
236 sk = NULL;
237found:
238 read_unlock(&nl_table_lock);
239 return sk;
240}
241
Eric Dumazetea729122007-12-11 02:09:47 -0800242static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800245 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 else
247 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800248 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
249 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
253{
254 if (size <= PAGE_SIZE)
255 kfree(table);
256 else
257 free_pages((unsigned long)table, get_order(size));
258}
259
260static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
261{
262 unsigned int omask, mask, shift;
263 size_t osize, size;
264 struct hlist_head *otable, *table;
265 int i;
266
267 omask = mask = hash->mask;
268 osize = size = (mask + 1) * sizeof(*table);
269 shift = hash->shift;
270
271 if (grow) {
272 if (++shift > hash->max_shift)
273 return 0;
274 mask = mask * 2 + 1;
275 size *= 2;
276 }
277
Eric Dumazetea729122007-12-11 02:09:47 -0800278 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!table)
280 return 0;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 otable = hash->table;
283 hash->table = table;
284 hash->mask = mask;
285 hash->shift = shift;
286 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
287
288 for (i = 0; i <= omask; i++) {
289 struct sock *sk;
290 struct hlist_node *node, *tmp;
291
292 sk_for_each_safe(sk, node, tmp, &otable[i])
293 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
294 }
295
296 nl_pid_hash_free(otable, osize);
297 hash->rehash_time = jiffies + 10 * 60 * HZ;
298 return 1;
299}
300
301static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
302{
303 int avg = hash->entries >> hash->shift;
304
305 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
306 return 1;
307
308 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
309 nl_pid_hash_rehash(hash, 0);
310 return 1;
311 }
312
313 return 0;
314}
315
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800316static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Patrick McHardy4277a082006-03-20 18:52:01 -0800318static void
319netlink_update_listeners(struct sock *sk)
320{
321 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
322 struct hlist_node *node;
323 unsigned long mask;
324 unsigned int i;
325
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700326 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800327 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700328 sk_for_each_bound(sk, node, &tbl->mc_list) {
329 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
330 mask |= nlk_sk(sk)->groups[i];
331 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800332 tbl->listeners[i] = mask;
333 }
334 /* this function is only called with the netlink table "grabbed", which
335 * makes sure updates are visible before bind or setsockopt return. */
336}
337
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200338static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
341 struct hlist_head *head;
342 int err = -EADDRINUSE;
343 struct sock *osk;
344 struct hlist_node *node;
345 int len;
346
347 netlink_table_grab();
348 head = nl_pid_hashfn(hash, pid);
349 len = 0;
350 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900351 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353 len++;
354 }
355 if (node)
356 goto err;
357
358 err = -EBUSY;
359 if (nlk_sk(sk)->pid)
360 goto err;
361
362 err = -ENOMEM;
363 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
364 goto err;
365
366 if (len && nl_pid_hash_dilute(hash, len))
367 head = nl_pid_hashfn(hash, pid);
368 hash->entries++;
369 nlk_sk(sk)->pid = pid;
370 sk_add_node(sk, head);
371 err = 0;
372
373err:
374 netlink_table_ungrab();
375 return err;
376}
377
378static void netlink_remove(struct sock *sk)
379{
380 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700381 if (sk_del_node_init(sk))
382 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700383 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 __sk_del_bind_node(sk);
385 netlink_table_ungrab();
386}
387
388static struct proto netlink_proto = {
389 .name = "NETLINK",
390 .owner = THIS_MODULE,
391 .obj_size = sizeof(struct netlink_sock),
392};
393
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700394static int __netlink_create(struct net *net, struct socket *sock,
395 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct sock *sk;
398 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700399
400 sock->ops = &netlink_ops;
401
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700402 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700403 if (!sk)
404 return -ENOMEM;
405
406 sock_init_data(sock, sk);
407
408 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700409 if (cb_mutex)
410 nlk->cb_mutex = cb_mutex;
411 else {
412 nlk->cb_mutex = &nlk->cb_def_mutex;
413 mutex_init(nlk->cb_mutex);
414 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700415 init_waitqueue_head(&nlk->wait);
416
417 sk->sk_destruct = netlink_sock_destruct;
418 sk->sk_protocol = protocol;
419 return 0;
420}
421
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700422static int netlink_create(struct net *net, struct socket *sock, int protocol)
Patrick McHardyab33a172005-08-14 19:31:36 -0700423{
424 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700425 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700426 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700427 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 sock->state = SS_UNCONNECTED;
430
431 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
432 return -ESOCKTNOSUPPORT;
433
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800434 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EPROTONOSUPPORT;
436
Patrick McHardy77247bb2005-08-14 19:27:13 -0700437 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700438#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700439 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700440 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700441 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700442 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700443 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700444#endif
445 if (nl_table[protocol].registered &&
446 try_module_get(nl_table[protocol].module))
447 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700448 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700449 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700450
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800451 err = __netlink_create(net, sock, cb_mutex, protocol);
452 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700453 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
David S. Miller6f756a82008-11-23 17:34:03 -0800455 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800456 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800457 local_bh_enable();
458
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700459 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700460 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700461out:
462 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Patrick McHardyab33a172005-08-14 19:31:36 -0700464out_module:
465 module_put(module);
466 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469static int netlink_release(struct socket *sock)
470{
471 struct sock *sk = sock->sk;
472 struct netlink_sock *nlk;
473
474 if (!sk)
475 return 0;
476
477 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700478 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 nlk = nlk_sk(sk);
480
Herbert Xu3f660d62007-05-03 03:17:14 -0700481 /*
482 * OK. Socket is unlinked, any packets that arrive now
483 * will be purged.
484 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 sock->sk = NULL;
487 wake_up_interruptible_all(&nlk->wait);
488
489 skb_queue_purge(&sk->sk_write_queue);
490
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700491 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900493 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 .protocol = sk->sk_protocol,
495 .pid = nlk->pid,
496 };
Alan Sterne041c682006-03-27 01:16:30 -0800497 atomic_notifier_call_chain(&netlink_chain,
498 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900499 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700500
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800501 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700502
Patrick McHardy4277a082006-03-20 18:52:01 -0800503 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700504 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800505 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
506 if (--nl_table[sk->sk_protocol].registered == 0) {
507 kfree(nl_table[sk->sk_protocol].listeners);
508 nl_table[sk->sk_protocol].module = NULL;
509 nl_table[sk->sk_protocol].registered = 0;
510 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800511 } else if (nlk->subscriptions)
512 netlink_update_listeners(sk);
513 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700514
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700515 kfree(nlk->groups);
516 nlk->groups = NULL;
517
Eric Dumazet37558102008-11-24 14:05:22 -0800518 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800519 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800520 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 sock_put(sk);
522 return 0;
523}
524
525static int netlink_autobind(struct socket *sock)
526{
527 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900528 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
530 struct hlist_head *head;
531 struct sock *osk;
532 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800533 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int err;
535 static s32 rover = -4097;
536
537retry:
538 cond_resched();
539 netlink_table_grab();
540 head = nl_pid_hashfn(hash, pid);
541 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900542 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200543 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (nlk_sk(osk)->pid == pid) {
545 /* Bind collision, search negative pid values. */
546 pid = rover--;
547 if (rover > -4097)
548 rover = -4097;
549 netlink_table_ungrab();
550 goto retry;
551 }
552 }
553 netlink_table_ungrab();
554
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200555 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (err == -EADDRINUSE)
557 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700558
559 /* If 2 threads race to autobind, that is fine. */
560 if (err == -EBUSY)
561 err = 0;
562
563 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900566static inline int netlink_capable(struct socket *sock, unsigned int flag)
567{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
569 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900570}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700572static void
573netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
574{
575 struct netlink_sock *nlk = nlk_sk(sk);
576
577 if (nlk->subscriptions && !subscriptions)
578 __sk_del_bind_node(sk);
579 else if (!nlk->subscriptions && subscriptions)
580 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
581 nlk->subscriptions = subscriptions;
582}
583
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700584static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700585{
586 struct netlink_sock *nlk = nlk_sk(sk);
587 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700588 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700589 int err = 0;
590
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700591 netlink_table_grab();
592
Patrick McHardy513c2502005-09-06 15:43:59 -0700593 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700594 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700595 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700596 goto out_unlock;
597 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700598
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700599 if (nlk->ngroups >= groups)
600 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700601
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700602 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
603 if (new_groups == NULL) {
604 err = -ENOMEM;
605 goto out_unlock;
606 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800607 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700608 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
609
610 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700611 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700612 out_unlock:
613 netlink_table_ungrab();
614 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700615}
616
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800617static int netlink_bind(struct socket *sock, struct sockaddr *addr,
618 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900621 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct netlink_sock *nlk = nlk_sk(sk);
623 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
624 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (nladdr->nl_family != AF_NETLINK)
627 return -EINVAL;
628
629 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700630 if (nladdr->nl_groups) {
631 if (!netlink_capable(sock, NL_NONROOT_RECV))
632 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700633 err = netlink_realloc_groups(sk);
634 if (err)
635 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (nlk->pid) {
639 if (nladdr->nl_pid != nlk->pid)
640 return -EINVAL;
641 } else {
642 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200643 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 netlink_autobind(sock);
645 if (err)
646 return err;
647 }
648
Patrick McHardy513c2502005-09-06 15:43:59 -0700649 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
651
652 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700653 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900654 hweight32(nladdr->nl_groups) -
655 hweight32(nlk->groups[0]));
656 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800657 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 netlink_table_ungrab();
659
660 return 0;
661}
662
663static int netlink_connect(struct socket *sock, struct sockaddr *addr,
664 int alen, int flags)
665{
666 int err = 0;
667 struct sock *sk = sock->sk;
668 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800669 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (addr->sa_family == AF_UNSPEC) {
672 sk->sk_state = NETLINK_UNCONNECTED;
673 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700674 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676 }
677 if (addr->sa_family != AF_NETLINK)
678 return -EINVAL;
679
680 /* Only superuser is allowed to send multicasts */
681 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
682 return -EPERM;
683
684 if (!nlk->pid)
685 err = netlink_autobind(sock);
686
687 if (err == 0) {
688 sk->sk_state = NETLINK_CONNECTED;
689 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700690 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
693 return err;
694}
695
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800696static int netlink_getname(struct socket *sock, struct sockaddr *addr,
697 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct sock *sk = sock->sk;
700 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800701 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 nladdr->nl_family = AF_NETLINK;
704 nladdr->nl_pad = 0;
705 *addr_len = sizeof(*nladdr);
706
707 if (peer) {
708 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700709 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 } else {
711 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700712 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 return 0;
715}
716
717static void netlink_overrun(struct sock *sk)
718{
719 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
720 sk->sk_err = ENOBUFS;
721 sk->sk_error_report(sk);
722 }
723}
724
725static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
726{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct sock *sock;
728 struct netlink_sock *nlk;
729
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900730 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!sock)
732 return ERR_PTR(-ECONNREFUSED);
733
734 /* Don't bother queuing skb if kernel socket has no input function */
735 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700736 if (sock->sk_state == NETLINK_CONNECTED &&
737 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 sock_put(sock);
739 return ERR_PTR(-ECONNREFUSED);
740 }
741 return sock;
742}
743
744struct sock *netlink_getsockbyfilp(struct file *filp)
745{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800746 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct sock *sock;
748
749 if (!S_ISSOCK(inode->i_mode))
750 return ERR_PTR(-ENOTSOCK);
751
752 sock = SOCKET_I(inode)->sk;
753 if (sock->sk_family != AF_NETLINK)
754 return ERR_PTR(-EINVAL);
755
756 sock_hold(sock);
757 return sock;
758}
759
760/*
761 * Attach a skb to a netlink socket.
762 * The caller must hold a reference to the destination socket. On error, the
763 * reference is dropped. The skb is not send to the destination, just all
764 * all error checks are performed and memory in the queue is reserved.
765 * Return values:
766 * < 0: error. skb freed, reference to sock dropped.
767 * 0: continue
768 * 1: repeat lookup - reference dropped while waiting for socket memory.
769 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700770int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800771 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 struct netlink_sock *nlk;
774
775 nlk = nlk_sk(sk);
776
777 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
778 test_bit(0, &nlk->state)) {
779 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800780 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700781 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 netlink_overrun(sk);
783 sock_put(sk);
784 kfree_skb(skb);
785 return -EAGAIN;
786 }
787
788 __set_current_state(TASK_INTERRUPTIBLE);
789 add_wait_queue(&nlk->wait, &wait);
790
791 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
792 test_bit(0, &nlk->state)) &&
793 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800794 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 __set_current_state(TASK_RUNNING);
797 remove_wait_queue(&nlk->wait, &wait);
798 sock_put(sk);
799
800 if (signal_pending(current)) {
801 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800802 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 return 1;
805 }
806 skb_set_owner_r(skb, sk);
807 return 0;
808}
809
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700810int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 int len = skb->len;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 skb_queue_tail(&sk->sk_receive_queue, skb);
815 sk->sk_data_ready(sk, len);
816 sock_put(sk);
817 return len;
818}
819
820void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
821{
822 kfree_skb(skb);
823 sock_put(sk);
824}
825
Victor Fusco37da6472005-07-18 13:35:43 -0700826static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100827 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 int delta;
830
831 skb_orphan(skb);
832
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700833 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (delta * 2 < skb->truesize)
835 return skb;
836
837 if (skb_shared(skb)) {
838 struct sk_buff *nskb = skb_clone(skb, allocation);
839 if (!nskb)
840 return skb;
841 kfree_skb(skb);
842 skb = nskb;
843 }
844
845 if (!pskb_expand_head(skb, 0, -delta, allocation))
846 skb->truesize -= delta;
847
848 return skb;
849}
850
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700851static inline void netlink_rcv_wake(struct sock *sk)
852{
853 struct netlink_sock *nlk = nlk_sk(sk);
854
855 if (skb_queue_empty(&sk->sk_receive_queue))
856 clear_bit(0, &nlk->state);
857 if (!test_bit(0, &nlk->state))
858 wake_up_interruptible(&nlk->wait);
859}
860
861static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
862{
863 int ret;
864 struct netlink_sock *nlk = nlk_sk(sk);
865
866 ret = -ECONNREFUSED;
867 if (nlk->netlink_rcv != NULL) {
868 ret = skb->len;
869 skb_set_owner_r(skb, sk);
870 nlk->netlink_rcv(skb);
871 }
872 kfree_skb(skb);
873 sock_put(sk);
874 return ret;
875}
876
877int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
878 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct sock *sk;
881 int err;
882 long timeo;
883
884 skb = netlink_trim(skb, gfp_any());
885
886 timeo = sock_sndtimeo(ssk, nonblock);
887retry:
888 sk = netlink_getsockbypid(ssk, pid);
889 if (IS_ERR(sk)) {
890 kfree_skb(skb);
891 return PTR_ERR(sk);
892 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700893 if (netlink_is_kernel(sk))
894 return netlink_unicast_kernel(sk, skb);
895
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700896 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700897 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700898 kfree_skb(skb);
899 sock_put(sk);
900 return err;
901 }
902
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700903 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (err == 1)
905 goto retry;
906 if (err)
907 return err;
908
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700909 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800911EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Patrick McHardy4277a082006-03-20 18:52:01 -0800913int netlink_has_listeners(struct sock *sk, unsigned int group)
914{
915 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700916 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800917
Denis V. Lunevaed81562007-10-10 21:14:32 -0700918 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700919
920 rcu_read_lock();
921 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
922
Patrick McHardy4277a082006-03-20 18:52:01 -0800923 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700924 res = test_bit(group - 1, listeners);
925
926 rcu_read_unlock();
927
Patrick McHardy4277a082006-03-20 18:52:01 -0800928 return res;
929}
930EXPORT_SYMBOL_GPL(netlink_has_listeners);
931
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800932static inline int netlink_broadcast_deliver(struct sock *sk,
933 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 struct netlink_sock *nlk = nlk_sk(sk);
936
937 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
938 !test_bit(0, &nlk->state)) {
939 skb_set_owner_r(skb, sk);
940 skb_queue_tail(&sk->sk_receive_queue, skb);
941 sk->sk_data_ready(sk, skb->len);
942 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
943 }
944 return -1;
945}
946
947struct netlink_broadcast_data {
948 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200949 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 u32 pid;
951 u32 group;
952 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800953 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 int congested;
955 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400956 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct sk_buff *skb, *skb2;
958};
959
960static inline int do_one_broadcast(struct sock *sk,
961 struct netlink_broadcast_data *p)
962{
963 struct netlink_sock *nlk = nlk_sk(sk);
964 int val;
965
966 if (p->exclude_sk == sk)
967 goto out;
968
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700969 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
970 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 goto out;
972
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900973 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200974 goto out;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (p->failure) {
977 netlink_overrun(sk);
978 goto out;
979 }
980
981 sock_hold(sk);
982 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700983 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 p->skb2 = skb_clone(p->skb, p->allocation);
985 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700986 p->skb2 = skb_get(p->skb);
987 /*
988 * skb ownership may have been set when
989 * delivered to a previous socket.
990 */
991 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 }
994 if (p->skb2 == NULL) {
995 netlink_overrun(sk);
996 /* Clone failed. Notify ALL listeners. */
997 p->failure = 1;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700998 } else if (sk_filter(sk, p->skb2)) {
999 kfree_skb(p->skb2);
1000 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1002 netlink_overrun(sk);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001003 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 } else {
1005 p->congested |= val;
1006 p->delivered = 1;
1007 p->skb2 = NULL;
1008 }
1009 sock_put(sk);
1010
1011out:
1012 return 0;
1013}
1014
1015int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +01001016 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001018 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct netlink_broadcast_data info;
1020 struct hlist_node *node;
1021 struct sock *sk;
1022
1023 skb = netlink_trim(skb, allocation);
1024
1025 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001026 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 info.pid = pid;
1028 info.group = group;
1029 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001030 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 info.congested = 0;
1032 info.delivered = 0;
1033 info.allocation = allocation;
1034 info.skb = skb;
1035 info.skb2 = NULL;
1036
1037 /* While we sleep in clone, do not allow to change socket list */
1038
1039 netlink_lock_table();
1040
1041 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1042 do_one_broadcast(sk, &info);
1043
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001044 kfree_skb(skb);
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 netlink_unlock_table();
1047
1048 if (info.skb2)
1049 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001051 if (info.delivery_failure || info.failure)
1052 return -ENOBUFS;
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (info.delivered) {
1055 if (info.congested && (allocation & __GFP_WAIT))
1056 yield();
1057 return 0;
1058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return -ESRCH;
1060}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001061EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063struct netlink_set_err_data {
1064 struct sock *exclude_sk;
1065 u32 pid;
1066 u32 group;
1067 int code;
1068};
1069
1070static inline int do_one_set_err(struct sock *sk,
1071 struct netlink_set_err_data *p)
1072{
1073 struct netlink_sock *nlk = nlk_sk(sk);
1074
1075 if (sk == p->exclude_sk)
1076 goto out;
1077
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001078 if (sock_net(sk) != sock_net(p->exclude_sk))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001079 goto out;
1080
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001081 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1082 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto out;
1084
1085 sk->sk_err = p->code;
1086 sk->sk_error_report(sk);
1087out:
1088 return 0;
1089}
1090
1091void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1092{
1093 struct netlink_set_err_data info;
1094 struct hlist_node *node;
1095 struct sock *sk;
1096
1097 info.exclude_sk = ssk;
1098 info.pid = pid;
1099 info.group = group;
1100 info.code = code;
1101
1102 read_lock(&nl_table_lock);
1103
1104 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1105 do_one_set_err(sk, &info);
1106
1107 read_unlock(&nl_table_lock);
1108}
1109
Johannes Berg84659eb2007-07-18 15:47:05 -07001110/* must be called with netlink table grabbed */
1111static void netlink_update_socket_mc(struct netlink_sock *nlk,
1112 unsigned int group,
1113 int is_new)
1114{
1115 int old, new = !!is_new, subscriptions;
1116
1117 old = test_bit(group - 1, nlk->groups);
1118 subscriptions = nlk->subscriptions - old + new;
1119 if (new)
1120 __set_bit(group - 1, nlk->groups);
1121 else
1122 __clear_bit(group - 1, nlk->groups);
1123 netlink_update_subscriptions(&nlk->sk, subscriptions);
1124 netlink_update_listeners(&nlk->sk);
1125}
1126
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001127static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001128 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001129{
1130 struct sock *sk = sock->sk;
1131 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001132 unsigned int val = 0;
1133 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001134
1135 if (level != SOL_NETLINK)
1136 return -ENOPROTOOPT;
1137
1138 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001139 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001140 return -EFAULT;
1141
1142 switch (optname) {
1143 case NETLINK_PKTINFO:
1144 if (val)
1145 nlk->flags |= NETLINK_RECV_PKTINFO;
1146 else
1147 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1148 err = 0;
1149 break;
1150 case NETLINK_ADD_MEMBERSHIP:
1151 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001152 if (!netlink_capable(sock, NL_NONROOT_RECV))
1153 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001154 err = netlink_realloc_groups(sk);
1155 if (err)
1156 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001157 if (!val || val - 1 >= nlk->ngroups)
1158 return -EINVAL;
1159 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001160 netlink_update_socket_mc(nlk, val,
1161 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001162 netlink_table_ungrab();
1163 err = 0;
1164 break;
1165 }
1166 default:
1167 err = -ENOPROTOOPT;
1168 }
1169 return err;
1170}
1171
1172static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001173 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001174{
1175 struct sock *sk = sock->sk;
1176 struct netlink_sock *nlk = nlk_sk(sk);
1177 int len, val, err;
1178
1179 if (level != SOL_NETLINK)
1180 return -ENOPROTOOPT;
1181
1182 if (get_user(len, optlen))
1183 return -EFAULT;
1184 if (len < 0)
1185 return -EINVAL;
1186
1187 switch (optname) {
1188 case NETLINK_PKTINFO:
1189 if (len < sizeof(int))
1190 return -EINVAL;
1191 len = sizeof(int);
1192 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001193 if (put_user(len, optlen) ||
1194 put_user(val, optval))
1195 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001196 err = 0;
1197 break;
1198 default:
1199 err = -ENOPROTOOPT;
1200 }
1201 return err;
1202}
1203
1204static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1205{
1206 struct nl_pktinfo info;
1207
1208 info.group = NETLINK_CB(skb).dst_group;
1209 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1213 struct msghdr *msg, size_t len)
1214{
1215 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1216 struct sock *sk = sock->sk;
1217 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001218 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001220 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct sk_buff *skb;
1222 int err;
1223 struct scm_cookie scm;
1224
1225 if (msg->msg_flags&MSG_OOB)
1226 return -EOPNOTSUPP;
1227
1228 if (NULL == siocb->scm)
1229 siocb->scm = &scm;
1230 err = scm_send(sock, msg, siocb->scm);
1231 if (err < 0)
1232 return err;
1233
1234 if (msg->msg_namelen) {
1235 if (addr->nl_family != AF_NETLINK)
1236 return -EINVAL;
1237 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001238 dst_group = ffs(addr->nl_groups);
1239 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return -EPERM;
1241 } else {
1242 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001243 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
1246 if (!nlk->pid) {
1247 err = netlink_autobind(sock);
1248 if (err)
1249 goto out;
1250 }
1251
1252 err = -EMSGSIZE;
1253 if (len > sk->sk_sndbuf - 32)
1254 goto out;
1255 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001256 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001257 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto out;
1259
1260 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001261 NETLINK_CB(skb).dst_group = dst_group;
Al Viro0c11b942008-01-10 04:20:52 -05001262 NETLINK_CB(skb).loginuid = audit_get_loginuid(current);
Eric Paris25323862008-04-18 10:09:25 -04001263 NETLINK_CB(skb).sessionid = audit_get_sessionid(current);
Ahmed S. Darwish0ce784c2008-03-01 21:56:22 +02001264 security_task_getsecid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1266
1267 /* What can I do? Netlink is asynchronous, so that
1268 we will have to save current capabilities to
1269 check them, when this message will be delivered
1270 to corresponding kernel module. --ANK (980802)
1271 */
1272
1273 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001274 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 kfree_skb(skb);
1276 goto out;
1277 }
1278
1279 err = security_netlink_send(sk, skb);
1280 if (err) {
1281 kfree_skb(skb);
1282 goto out;
1283 }
1284
Patrick McHardyd629b832005-08-14 19:27:50 -07001285 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001287 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
1289 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1290
1291out:
1292 return err;
1293}
1294
1295static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1296 struct msghdr *msg, size_t len,
1297 int flags)
1298{
1299 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1300 struct scm_cookie scm;
1301 struct sock *sk = sock->sk;
1302 struct netlink_sock *nlk = nlk_sk(sk);
1303 int noblock = flags&MSG_DONTWAIT;
1304 size_t copied;
1305 struct sk_buff *skb;
1306 int err;
1307
1308 if (flags&MSG_OOB)
1309 return -EOPNOTSUPP;
1310
1311 copied = 0;
1312
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001313 skb = skb_recv_datagram(sk, flags, noblock, &err);
1314 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto out;
1316
1317 msg->msg_namelen = 0;
1318
1319 copied = skb->len;
1320 if (len < copied) {
1321 msg->msg_flags |= MSG_TRUNC;
1322 copied = len;
1323 }
1324
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001325 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1327
1328 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001329 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 addr->nl_family = AF_NETLINK;
1331 addr->nl_pad = 0;
1332 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001333 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 msg->msg_namelen = sizeof(*addr);
1335 }
1336
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001337 if (nlk->flags & NETLINK_RECV_PKTINFO)
1338 netlink_cmsg_recv_pktinfo(msg, skb);
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (NULL == siocb->scm) {
1341 memset(&scm, 0, sizeof(scm));
1342 siocb->scm = &scm;
1343 }
1344 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001345 if (flags & MSG_TRUNC)
1346 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 skb_free_datagram(sk, skb);
1348
1349 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1350 netlink_dump(sk);
1351
1352 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353out:
1354 netlink_rcv_wake(sk);
1355 return err ? : copied;
1356}
1357
1358static void netlink_data_ready(struct sock *sk, int len)
1359{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001360 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001364 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * complete set of kernel non-blocking support for message
1366 * queueing.
1367 */
1368
1369struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001370netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001371 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001372 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct socket *sock;
1375 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001376 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001377 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001379 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001381 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return NULL;
1383
1384 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1385 return NULL;
1386
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001387 /*
1388 * We have to just have a reference on the net from sk, but don't
1389 * get_net it. Besides, we cannot get and then put the net here.
1390 * So we create one inside init_net and the move it to net.
1391 */
1392
1393 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1394 goto out_sock_release_nosk;
1395
1396 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001397 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001398
Patrick McHardy4277a082006-03-20 18:52:01 -08001399 if (groups < 32)
1400 groups = 32;
1401
1402 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1403 if (!listeners)
1404 goto out_sock_release;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 sk->sk_data_ready = netlink_data_ready;
1407 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001408 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001410 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001411 goto out_sock_release;
1412
1413 nlk = nlk_sk(sk);
1414 nlk->flags |= NETLINK_KERNEL_SOCKET;
1415
1416 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001417 if (!nl_table[unit].registered) {
1418 nl_table[unit].groups = groups;
1419 nl_table[unit].listeners = listeners;
1420 nl_table[unit].cb_mutex = cb_mutex;
1421 nl_table[unit].module = module;
1422 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001423 } else {
1424 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001425 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001426 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001427 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001428 return sk;
1429
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001430out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001431 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001432 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001433 return NULL;
1434
1435out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001436 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001437 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001439EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001441
1442void
1443netlink_kernel_release(struct sock *sk)
1444{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001445 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001446}
1447EXPORT_SYMBOL(netlink_kernel_release);
1448
1449
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001450/**
1451 * netlink_change_ngroups - change number of multicast groups
1452 *
1453 * This changes the number of multicast groups that are available
1454 * on a certain netlink family. Note that it is not possible to
Johannes Berg84659eb2007-07-18 15:47:05 -07001455 * change the number of groups to below 32. Also note that it does
1456 * not implicitly call netlink_clear_multicast_users() when the
1457 * number of groups is reduced.
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001458 *
1459 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1460 * @groups: The new number of groups.
1461 */
1462int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1463{
1464 unsigned long *listeners, *old = NULL;
1465 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1466 int err = 0;
1467
1468 if (groups < 32)
1469 groups = 32;
1470
1471 netlink_table_grab();
1472 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1473 listeners = kzalloc(NLGRPSZ(groups), GFP_ATOMIC);
1474 if (!listeners) {
1475 err = -ENOMEM;
1476 goto out_ungrab;
1477 }
1478 old = tbl->listeners;
1479 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1480 rcu_assign_pointer(tbl->listeners, listeners);
1481 }
1482 tbl->groups = groups;
1483
1484 out_ungrab:
1485 netlink_table_ungrab();
1486 synchronize_rcu();
1487 kfree(old);
1488 return err;
1489}
1490EXPORT_SYMBOL(netlink_change_ngroups);
1491
Johannes Berg84659eb2007-07-18 15:47:05 -07001492/**
1493 * netlink_clear_multicast_users - kick off multicast listeners
1494 *
1495 * This function removes all listeners from the given group.
1496 * @ksk: The kernel netlink socket, as returned by
1497 * netlink_kernel_create().
1498 * @group: The multicast group to clear.
1499 */
1500void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1501{
1502 struct sock *sk;
1503 struct hlist_node *node;
1504 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1505
1506 netlink_table_grab();
1507
1508 sk_for_each_bound(sk, node, &tbl->mc_list)
1509 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1510
1511 netlink_table_ungrab();
1512}
1513EXPORT_SYMBOL(netlink_clear_multicast_users);
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001516{
1517 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001519}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001520EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522static void netlink_destroy_callback(struct netlink_callback *cb)
1523{
1524 if (cb->skb)
1525 kfree_skb(cb->skb);
1526 kfree(cb);
1527}
1528
1529/*
1530 * It looks a bit ugly.
1531 * It would be better to create kernel thread.
1532 */
1533
1534static int netlink_dump(struct sock *sk)
1535{
1536 struct netlink_sock *nlk = nlk_sk(sk);
1537 struct netlink_callback *cb;
1538 struct sk_buff *skb;
1539 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001540 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1543 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001544 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001546 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 cb = nlk->cb;
1549 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001550 err = -EINVAL;
1551 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
1554 len = cb->dump(skb, cb);
1555
1556 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001557 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001558
1559 if (sk_filter(sk, skb))
1560 kfree_skb(skb);
1561 else {
1562 skb_queue_tail(&sk->sk_receive_queue, skb);
1563 sk->sk_data_ready(sk, skb->len);
1564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return 0;
1566 }
1567
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001568 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1569 if (!nlh)
1570 goto errout_skb;
1571
1572 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1573
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001574 if (sk_filter(sk, skb))
1575 kfree_skb(skb);
1576 else {
1577 skb_queue_tail(&sk->sk_receive_queue, skb);
1578 sk->sk_data_ready(sk, skb->len);
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Thomas Grafa8f74b22005-11-10 02:25:52 +01001581 if (cb->done)
1582 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001584 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001588
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001589errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001590 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001591 kfree_skb(skb);
1592errout:
1593 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1597 struct nlmsghdr *nlh,
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001598 int (*dump)(struct sk_buff *skb,
1599 struct netlink_callback *),
1600 int (*done)(struct netlink_callback *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 struct netlink_callback *cb;
1603 struct sock *sk;
1604 struct netlink_sock *nlk;
1605
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001606 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (cb == NULL)
1608 return -ENOBUFS;
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 cb->dump = dump;
1611 cb->done = done;
1612 cb->nlh = nlh;
1613 atomic_inc(&skb->users);
1614 cb->skb = skb;
1615
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001616 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (sk == NULL) {
1618 netlink_destroy_callback(cb);
1619 return -ECONNREFUSED;
1620 }
1621 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001622 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001623 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001624 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001625 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 netlink_destroy_callback(cb);
1627 sock_put(sk);
1628 return -EBUSY;
1629 }
1630 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001631 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 netlink_dump(sk);
1634 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001635
1636 /* We successfully started a dump, by returning -EINTR we
1637 * signal not to send ACK even if it was requested.
1638 */
1639 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001641EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1644{
1645 struct sk_buff *skb;
1646 struct nlmsghdr *rep;
1647 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001648 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Thomas Graf339bf982006-11-10 14:10:15 -08001650 /* error messages get the original request appened */
1651 if (err)
1652 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Thomas Graf339bf982006-11-10 14:10:15 -08001654 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (!skb) {
1656 struct sock *sk;
1657
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001658 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001659 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 NETLINK_CB(in_skb).pid);
1661 if (sk) {
1662 sk->sk_err = ENOBUFS;
1663 sk->sk_error_report(sk);
1664 sock_put(sk);
1665 }
1666 return;
1667 }
1668
1669 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001670 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001671 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001673 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1675}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001676EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001678int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001679 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001680{
Thomas Graf82ace472005-11-10 02:25:53 +01001681 struct nlmsghdr *nlh;
1682 int err;
1683
1684 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001685 int msglen;
1686
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001687 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001688 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001689
Martin Murrayad8e4b72006-01-10 13:02:29 -08001690 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001691 return 0;
1692
Thomas Grafd35b6852007-03-22 23:28:46 -07001693 /* Only requests are handled by the kernel */
1694 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001695 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001696
Thomas Graf45e7ae72007-03-22 23:29:10 -07001697 /* Skip control messages */
1698 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001699 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001700
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001701 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001702 if (err == -EINTR)
1703 goto skip;
1704
1705ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001706 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001707 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001708
Denis V. Lunev5c582982007-10-23 20:29:25 -07001709skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001710 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001711 if (msglen > skb->len)
1712 msglen = skb->len;
1713 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001714 }
1715
1716 return 0;
1717}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001718EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001719
1720/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001721 * nlmsg_notify - send a notification netlink message
1722 * @sk: netlink socket to use
1723 * @skb: notification message
1724 * @pid: destination netlink pid for reports or 0
1725 * @group: destination multicast group or 0
1726 * @report: 1 to report back, 0 to disable
1727 * @flags: allocation flags
1728 */
1729int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1730 unsigned int group, int report, gfp_t flags)
1731{
1732 int err = 0;
1733
1734 if (group) {
1735 int exclude_pid = 0;
1736
1737 if (report) {
1738 atomic_inc(&skb->users);
1739 exclude_pid = pid;
1740 }
1741
1742 /* errors reported via destination sk->sk_err */
1743 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1744 }
1745
1746 if (report)
1747 err = nlmsg_unicast(sk, skb, pid);
1748
1749 return err;
1750}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001751EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753#ifdef CONFIG_PROC_FS
1754struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001755 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 int link;
1757 int hash_idx;
1758};
1759
1760static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1761{
1762 struct nl_seq_iter *iter = seq->private;
1763 int i, j;
1764 struct sock *s;
1765 struct hlist_node *node;
1766 loff_t off = 0;
1767
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001768 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 struct nl_pid_hash *hash = &nl_table[i].hash;
1770
1771 for (j = 0; j <= hash->mask; j++) {
1772 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001773 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001774 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (off == pos) {
1776 iter->link = i;
1777 iter->hash_idx = j;
1778 return s;
1779 }
1780 ++off;
1781 }
1782 }
1783 }
1784 return NULL;
1785}
1786
1787static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001788 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
1790 read_lock(&nl_table_lock);
1791 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1792}
1793
1794static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1795{
1796 struct sock *s;
1797 struct nl_seq_iter *iter;
1798 int i, j;
1799
1800 ++*pos;
1801
1802 if (v == SEQ_START_TOKEN)
1803 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001804
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001805 iter = seq->private;
1806 s = v;
1807 do {
1808 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001809 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (s)
1811 return s;
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 i = iter->link;
1814 j = iter->hash_idx + 1;
1815
1816 do {
1817 struct nl_pid_hash *hash = &nl_table[i].hash;
1818
1819 for (; j <= hash->mask; j++) {
1820 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001821 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001822 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (s) {
1824 iter->link = i;
1825 iter->hash_idx = j;
1826 return s;
1827 }
1828 }
1829
1830 j = 0;
1831 } while (++i < MAX_LINKS);
1832
1833 return NULL;
1834}
1835
1836static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001837 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 read_unlock(&nl_table_lock);
1840}
1841
1842
1843static int netlink_seq_show(struct seq_file *seq, void *v)
1844{
1845 if (v == SEQ_START_TOKEN)
1846 seq_puts(seq,
1847 "sk Eth Pid Groups "
1848 "Rmem Wmem Dump Locks\n");
1849 else {
1850 struct sock *s = v;
1851 struct netlink_sock *nlk = nlk_sk(s);
1852
1853 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1854 s,
1855 s->sk_protocol,
1856 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001857 nlk->groups ? (u32)nlk->groups[0] : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 atomic_read(&s->sk_rmem_alloc),
1859 atomic_read(&s->sk_wmem_alloc),
1860 nlk->cb,
1861 atomic_read(&s->sk_refcnt)
1862 );
1863
1864 }
1865 return 0;
1866}
1867
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001868static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 .start = netlink_seq_start,
1870 .next = netlink_seq_next,
1871 .stop = netlink_seq_stop,
1872 .show = netlink_seq_show,
1873};
1874
1875
1876static int netlink_seq_open(struct inode *inode, struct file *file)
1877{
Denis V. Luneve372c412007-11-19 22:31:54 -08001878 return seq_open_net(inode, file, &netlink_seq_ops,
1879 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001880}
1881
Arjan van de Venda7071d2007-02-12 00:55:36 -08001882static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .owner = THIS_MODULE,
1884 .open = netlink_seq_open,
1885 .read = seq_read,
1886 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08001887 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888};
1889
1890#endif
1891
1892int netlink_register_notifier(struct notifier_block *nb)
1893{
Alan Sterne041c682006-03-27 01:16:30 -08001894 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001896EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898int netlink_unregister_notifier(struct notifier_block *nb)
1899{
Alan Sterne041c682006-03-27 01:16:30 -08001900 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001902EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001903
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001904static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 .family = PF_NETLINK,
1906 .owner = THIS_MODULE,
1907 .release = netlink_release,
1908 .bind = netlink_bind,
1909 .connect = netlink_connect,
1910 .socketpair = sock_no_socketpair,
1911 .accept = sock_no_accept,
1912 .getname = netlink_getname,
1913 .poll = datagram_poll,
1914 .ioctl = sock_no_ioctl,
1915 .listen = sock_no_listen,
1916 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001917 .setsockopt = netlink_setsockopt,
1918 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 .sendmsg = netlink_sendmsg,
1920 .recvmsg = netlink_recvmsg,
1921 .mmap = sock_no_mmap,
1922 .sendpage = sock_no_sendpage,
1923};
1924
1925static struct net_proto_family netlink_family_ops = {
1926 .family = PF_NETLINK,
1927 .create = netlink_create,
1928 .owner = THIS_MODULE, /* for consistency 8) */
1929};
1930
Pavel Emelyanov46650792007-10-08 20:38:39 -07001931static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001932{
1933#ifdef CONFIG_PROC_FS
1934 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
1935 return -ENOMEM;
1936#endif
1937 return 0;
1938}
1939
Pavel Emelyanov46650792007-10-08 20:38:39 -07001940static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001941{
1942#ifdef CONFIG_PROC_FS
1943 proc_net_remove(net, "netlink");
1944#endif
1945}
1946
Denis V. Lunev022cbae2007-11-13 03:23:50 -08001947static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001948 .init = netlink_net_init,
1949 .exit = netlink_net_exit,
1950};
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952static int __init netlink_proto_init(void)
1953{
1954 struct sk_buff *dummy_skb;
1955 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001956 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 unsigned int order;
1958 int err = proto_register(&netlink_proto, 0);
1959
1960 if (err != 0)
1961 goto out;
1962
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001963 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001965 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001966 if (!nl_table)
1967 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001970 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001972 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001974 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
1975 limit = (1UL << order) / sizeof(struct hlist_head);
1976 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 for (i = 0; i < MAX_LINKS; i++) {
1979 struct nl_pid_hash *hash = &nl_table[i].hash;
1980
Eric Dumazetea729122007-12-11 02:09:47 -08001981 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 if (!hash->table) {
1983 while (i-- > 0)
1984 nl_pid_hash_free(nl_table[i].hash.table,
1985 1 * sizeof(*hash->table));
1986 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001987 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 hash->max_shift = order;
1990 hash->shift = 0;
1991 hash->mask = 0;
1992 hash->rehash_time = jiffies;
1993 }
1994
1995 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001996 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001997 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 rtnetlink_init();
1999out:
2000 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002001panic:
2002 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005core_initcall(netlink_proto_init);