blob: a2071dcfe9e8514cf9aad61aa6308bc596c8b176 [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
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800455 sock_prot_inuse_add(net, &netlink_proto, 1);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700456 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700457 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700458out:
459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Patrick McHardyab33a172005-08-14 19:31:36 -0700461out_module:
462 module_put(module);
463 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466static int netlink_release(struct socket *sock)
467{
468 struct sock *sk = sock->sk;
469 struct netlink_sock *nlk;
470
471 if (!sk)
472 return 0;
473
474 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700475 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 nlk = nlk_sk(sk);
477
Herbert Xu3f660d62007-05-03 03:17:14 -0700478 /*
479 * OK. Socket is unlinked, any packets that arrive now
480 * will be purged.
481 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 sock->sk = NULL;
484 wake_up_interruptible_all(&nlk->wait);
485
486 skb_queue_purge(&sk->sk_write_queue);
487
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700488 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900490 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .protocol = sk->sk_protocol,
492 .pid = nlk->pid,
493 };
Alan Sterne041c682006-03-27 01:16:30 -0800494 atomic_notifier_call_chain(&netlink_chain,
495 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900496 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700497
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800498 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700499
Patrick McHardy4277a082006-03-20 18:52:01 -0800500 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700501 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800502 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
503 if (--nl_table[sk->sk_protocol].registered == 0) {
504 kfree(nl_table[sk->sk_protocol].listeners);
505 nl_table[sk->sk_protocol].module = NULL;
506 nl_table[sk->sk_protocol].registered = 0;
507 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800508 } else if (nlk->subscriptions)
509 netlink_update_listeners(sk);
510 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700511
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700512 kfree(nlk->groups);
513 nlk->groups = NULL;
514
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800515 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 sock_put(sk);
517 return 0;
518}
519
520static int netlink_autobind(struct socket *sock)
521{
522 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900523 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
525 struct hlist_head *head;
526 struct sock *osk;
527 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800528 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int err;
530 static s32 rover = -4097;
531
532retry:
533 cond_resched();
534 netlink_table_grab();
535 head = nl_pid_hashfn(hash, pid);
536 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900537 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200538 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (nlk_sk(osk)->pid == pid) {
540 /* Bind collision, search negative pid values. */
541 pid = rover--;
542 if (rover > -4097)
543 rover = -4097;
544 netlink_table_ungrab();
545 goto retry;
546 }
547 }
548 netlink_table_ungrab();
549
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200550 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (err == -EADDRINUSE)
552 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700553
554 /* If 2 threads race to autobind, that is fine. */
555 if (err == -EBUSY)
556 err = 0;
557
558 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900561static inline int netlink_capable(struct socket *sock, unsigned int flag)
562{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
564 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900565}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700567static void
568netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
569{
570 struct netlink_sock *nlk = nlk_sk(sk);
571
572 if (nlk->subscriptions && !subscriptions)
573 __sk_del_bind_node(sk);
574 else if (!nlk->subscriptions && subscriptions)
575 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
576 nlk->subscriptions = subscriptions;
577}
578
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700579static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700580{
581 struct netlink_sock *nlk = nlk_sk(sk);
582 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700583 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700584 int err = 0;
585
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700586 netlink_table_grab();
587
Patrick McHardy513c2502005-09-06 15:43:59 -0700588 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700589 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700590 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700591 goto out_unlock;
592 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700593
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700594 if (nlk->ngroups >= groups)
595 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700596
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700597 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
598 if (new_groups == NULL) {
599 err = -ENOMEM;
600 goto out_unlock;
601 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800602 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700603 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
604
605 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700606 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700607 out_unlock:
608 netlink_table_ungrab();
609 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700610}
611
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800612static int netlink_bind(struct socket *sock, struct sockaddr *addr,
613 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900616 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct netlink_sock *nlk = nlk_sk(sk);
618 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
619 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (nladdr->nl_family != AF_NETLINK)
622 return -EINVAL;
623
624 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700625 if (nladdr->nl_groups) {
626 if (!netlink_capable(sock, NL_NONROOT_RECV))
627 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700628 err = netlink_realloc_groups(sk);
629 if (err)
630 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 if (nlk->pid) {
634 if (nladdr->nl_pid != nlk->pid)
635 return -EINVAL;
636 } else {
637 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200638 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 netlink_autobind(sock);
640 if (err)
641 return err;
642 }
643
Patrick McHardy513c2502005-09-06 15:43:59 -0700644 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
646
647 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700648 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900649 hweight32(nladdr->nl_groups) -
650 hweight32(nlk->groups[0]));
651 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800652 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 netlink_table_ungrab();
654
655 return 0;
656}
657
658static int netlink_connect(struct socket *sock, struct sockaddr *addr,
659 int alen, int flags)
660{
661 int err = 0;
662 struct sock *sk = sock->sk;
663 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800664 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 if (addr->sa_family == AF_UNSPEC) {
667 sk->sk_state = NETLINK_UNCONNECTED;
668 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700669 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671 }
672 if (addr->sa_family != AF_NETLINK)
673 return -EINVAL;
674
675 /* Only superuser is allowed to send multicasts */
676 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
677 return -EPERM;
678
679 if (!nlk->pid)
680 err = netlink_autobind(sock);
681
682 if (err == 0) {
683 sk->sk_state = NETLINK_CONNECTED;
684 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700685 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 return err;
689}
690
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800691static int netlink_getname(struct socket *sock, struct sockaddr *addr,
692 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 struct sock *sk = sock->sk;
695 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800696 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 nladdr->nl_family = AF_NETLINK;
699 nladdr->nl_pad = 0;
700 *addr_len = sizeof(*nladdr);
701
702 if (peer) {
703 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700704 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 } else {
706 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700707 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 return 0;
710}
711
712static void netlink_overrun(struct sock *sk)
713{
714 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
715 sk->sk_err = ENOBUFS;
716 sk->sk_error_report(sk);
717 }
718}
719
720static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct sock *sock;
723 struct netlink_sock *nlk;
724
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900725 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!sock)
727 return ERR_PTR(-ECONNREFUSED);
728
729 /* Don't bother queuing skb if kernel socket has no input function */
730 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700731 if (sock->sk_state == NETLINK_CONNECTED &&
732 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 sock_put(sock);
734 return ERR_PTR(-ECONNREFUSED);
735 }
736 return sock;
737}
738
739struct sock *netlink_getsockbyfilp(struct file *filp)
740{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800741 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct sock *sock;
743
744 if (!S_ISSOCK(inode->i_mode))
745 return ERR_PTR(-ENOTSOCK);
746
747 sock = SOCKET_I(inode)->sk;
748 if (sock->sk_family != AF_NETLINK)
749 return ERR_PTR(-EINVAL);
750
751 sock_hold(sock);
752 return sock;
753}
754
755/*
756 * Attach a skb to a netlink socket.
757 * The caller must hold a reference to the destination socket. On error, the
758 * reference is dropped. The skb is not send to the destination, just all
759 * all error checks are performed and memory in the queue is reserved.
760 * Return values:
761 * < 0: error. skb freed, reference to sock dropped.
762 * 0: continue
763 * 1: repeat lookup - reference dropped while waiting for socket memory.
764 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700765int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800766 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct netlink_sock *nlk;
769
770 nlk = nlk_sk(sk);
771
772 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
773 test_bit(0, &nlk->state)) {
774 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800775 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700776 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 netlink_overrun(sk);
778 sock_put(sk);
779 kfree_skb(skb);
780 return -EAGAIN;
781 }
782
783 __set_current_state(TASK_INTERRUPTIBLE);
784 add_wait_queue(&nlk->wait, &wait);
785
786 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
787 test_bit(0, &nlk->state)) &&
788 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800789 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 __set_current_state(TASK_RUNNING);
792 remove_wait_queue(&nlk->wait, &wait);
793 sock_put(sk);
794
795 if (signal_pending(current)) {
796 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800797 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 return 1;
800 }
801 skb_set_owner_r(skb, sk);
802 return 0;
803}
804
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700805int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 int len = skb->len;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 skb_queue_tail(&sk->sk_receive_queue, skb);
810 sk->sk_data_ready(sk, len);
811 sock_put(sk);
812 return len;
813}
814
815void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
816{
817 kfree_skb(skb);
818 sock_put(sk);
819}
820
Victor Fusco37da6472005-07-18 13:35:43 -0700821static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100822 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 int delta;
825
826 skb_orphan(skb);
827
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700828 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (delta * 2 < skb->truesize)
830 return skb;
831
832 if (skb_shared(skb)) {
833 struct sk_buff *nskb = skb_clone(skb, allocation);
834 if (!nskb)
835 return skb;
836 kfree_skb(skb);
837 skb = nskb;
838 }
839
840 if (!pskb_expand_head(skb, 0, -delta, allocation))
841 skb->truesize -= delta;
842
843 return skb;
844}
845
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700846static inline void netlink_rcv_wake(struct sock *sk)
847{
848 struct netlink_sock *nlk = nlk_sk(sk);
849
850 if (skb_queue_empty(&sk->sk_receive_queue))
851 clear_bit(0, &nlk->state);
852 if (!test_bit(0, &nlk->state))
853 wake_up_interruptible(&nlk->wait);
854}
855
856static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
857{
858 int ret;
859 struct netlink_sock *nlk = nlk_sk(sk);
860
861 ret = -ECONNREFUSED;
862 if (nlk->netlink_rcv != NULL) {
863 ret = skb->len;
864 skb_set_owner_r(skb, sk);
865 nlk->netlink_rcv(skb);
866 }
867 kfree_skb(skb);
868 sock_put(sk);
869 return ret;
870}
871
872int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
873 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875 struct sock *sk;
876 int err;
877 long timeo;
878
879 skb = netlink_trim(skb, gfp_any());
880
881 timeo = sock_sndtimeo(ssk, nonblock);
882retry:
883 sk = netlink_getsockbypid(ssk, pid);
884 if (IS_ERR(sk)) {
885 kfree_skb(skb);
886 return PTR_ERR(sk);
887 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700888 if (netlink_is_kernel(sk))
889 return netlink_unicast_kernel(sk, skb);
890
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700891 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700892 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700893 kfree_skb(skb);
894 sock_put(sk);
895 return err;
896 }
897
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700898 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (err == 1)
900 goto retry;
901 if (err)
902 return err;
903
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700904 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800906EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Patrick McHardy4277a082006-03-20 18:52:01 -0800908int netlink_has_listeners(struct sock *sk, unsigned int group)
909{
910 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700911 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800912
Denis V. Lunevaed81562007-10-10 21:14:32 -0700913 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700914
915 rcu_read_lock();
916 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
917
Patrick McHardy4277a082006-03-20 18:52:01 -0800918 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700919 res = test_bit(group - 1, listeners);
920
921 rcu_read_unlock();
922
Patrick McHardy4277a082006-03-20 18:52:01 -0800923 return res;
924}
925EXPORT_SYMBOL_GPL(netlink_has_listeners);
926
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800927static inline int netlink_broadcast_deliver(struct sock *sk,
928 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 struct netlink_sock *nlk = nlk_sk(sk);
931
932 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
933 !test_bit(0, &nlk->state)) {
934 skb_set_owner_r(skb, sk);
935 skb_queue_tail(&sk->sk_receive_queue, skb);
936 sk->sk_data_ready(sk, skb->len);
937 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
938 }
939 return -1;
940}
941
942struct netlink_broadcast_data {
943 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200944 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 u32 pid;
946 u32 group;
947 int failure;
948 int congested;
949 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400950 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 struct sk_buff *skb, *skb2;
952};
953
954static inline int do_one_broadcast(struct sock *sk,
955 struct netlink_broadcast_data *p)
956{
957 struct netlink_sock *nlk = nlk_sk(sk);
958 int val;
959
960 if (p->exclude_sk == sk)
961 goto out;
962
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700963 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
964 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto out;
966
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900967 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200968 goto out;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (p->failure) {
971 netlink_overrun(sk);
972 goto out;
973 }
974
975 sock_hold(sk);
976 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700977 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 p->skb2 = skb_clone(p->skb, p->allocation);
979 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700980 p->skb2 = skb_get(p->skb);
981 /*
982 * skb ownership may have been set when
983 * delivered to a previous socket.
984 */
985 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
988 if (p->skb2 == NULL) {
989 netlink_overrun(sk);
990 /* Clone failed. Notify ALL listeners. */
991 p->failure = 1;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700992 } else if (sk_filter(sk, p->skb2)) {
993 kfree_skb(p->skb2);
994 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
996 netlink_overrun(sk);
997 } else {
998 p->congested |= val;
999 p->delivered = 1;
1000 p->skb2 = NULL;
1001 }
1002 sock_put(sk);
1003
1004out:
1005 return 0;
1006}
1007
1008int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +01001009 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001011 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 struct netlink_broadcast_data info;
1013 struct hlist_node *node;
1014 struct sock *sk;
1015
1016 skb = netlink_trim(skb, allocation);
1017
1018 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001019 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 info.pid = pid;
1021 info.group = group;
1022 info.failure = 0;
1023 info.congested = 0;
1024 info.delivered = 0;
1025 info.allocation = allocation;
1026 info.skb = skb;
1027 info.skb2 = NULL;
1028
1029 /* While we sleep in clone, do not allow to change socket list */
1030
1031 netlink_lock_table();
1032
1033 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1034 do_one_broadcast(sk, &info);
1035
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001036 kfree_skb(skb);
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 netlink_unlock_table();
1039
1040 if (info.skb2)
1041 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 if (info.delivered) {
1044 if (info.congested && (allocation & __GFP_WAIT))
1045 yield();
1046 return 0;
1047 }
1048 if (info.failure)
1049 return -ENOBUFS;
1050 return -ESRCH;
1051}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001052EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054struct netlink_set_err_data {
1055 struct sock *exclude_sk;
1056 u32 pid;
1057 u32 group;
1058 int code;
1059};
1060
1061static inline int do_one_set_err(struct sock *sk,
1062 struct netlink_set_err_data *p)
1063{
1064 struct netlink_sock *nlk = nlk_sk(sk);
1065
1066 if (sk == p->exclude_sk)
1067 goto out;
1068
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001069 if (sock_net(sk) != sock_net(p->exclude_sk))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001070 goto out;
1071
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001072 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1073 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto out;
1075
1076 sk->sk_err = p->code;
1077 sk->sk_error_report(sk);
1078out:
1079 return 0;
1080}
1081
1082void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1083{
1084 struct netlink_set_err_data info;
1085 struct hlist_node *node;
1086 struct sock *sk;
1087
1088 info.exclude_sk = ssk;
1089 info.pid = pid;
1090 info.group = group;
1091 info.code = code;
1092
1093 read_lock(&nl_table_lock);
1094
1095 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1096 do_one_set_err(sk, &info);
1097
1098 read_unlock(&nl_table_lock);
1099}
1100
Johannes Berg84659eb2007-07-18 15:47:05 -07001101/* must be called with netlink table grabbed */
1102static void netlink_update_socket_mc(struct netlink_sock *nlk,
1103 unsigned int group,
1104 int is_new)
1105{
1106 int old, new = !!is_new, subscriptions;
1107
1108 old = test_bit(group - 1, nlk->groups);
1109 subscriptions = nlk->subscriptions - old + new;
1110 if (new)
1111 __set_bit(group - 1, nlk->groups);
1112 else
1113 __clear_bit(group - 1, nlk->groups);
1114 netlink_update_subscriptions(&nlk->sk, subscriptions);
1115 netlink_update_listeners(&nlk->sk);
1116}
1117
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001118static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001119 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001120{
1121 struct sock *sk = sock->sk;
1122 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001123 unsigned int val = 0;
1124 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001125
1126 if (level != SOL_NETLINK)
1127 return -ENOPROTOOPT;
1128
1129 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001130 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001131 return -EFAULT;
1132
1133 switch (optname) {
1134 case NETLINK_PKTINFO:
1135 if (val)
1136 nlk->flags |= NETLINK_RECV_PKTINFO;
1137 else
1138 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1139 err = 0;
1140 break;
1141 case NETLINK_ADD_MEMBERSHIP:
1142 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001143 if (!netlink_capable(sock, NL_NONROOT_RECV))
1144 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001145 err = netlink_realloc_groups(sk);
1146 if (err)
1147 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001148 if (!val || val - 1 >= nlk->ngroups)
1149 return -EINVAL;
1150 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001151 netlink_update_socket_mc(nlk, val,
1152 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001153 netlink_table_ungrab();
1154 err = 0;
1155 break;
1156 }
1157 default:
1158 err = -ENOPROTOOPT;
1159 }
1160 return err;
1161}
1162
1163static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001164 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001165{
1166 struct sock *sk = sock->sk;
1167 struct netlink_sock *nlk = nlk_sk(sk);
1168 int len, val, err;
1169
1170 if (level != SOL_NETLINK)
1171 return -ENOPROTOOPT;
1172
1173 if (get_user(len, optlen))
1174 return -EFAULT;
1175 if (len < 0)
1176 return -EINVAL;
1177
1178 switch (optname) {
1179 case NETLINK_PKTINFO:
1180 if (len < sizeof(int))
1181 return -EINVAL;
1182 len = sizeof(int);
1183 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001184 if (put_user(len, optlen) ||
1185 put_user(val, optval))
1186 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001187 err = 0;
1188 break;
1189 default:
1190 err = -ENOPROTOOPT;
1191 }
1192 return err;
1193}
1194
1195static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1196{
1197 struct nl_pktinfo info;
1198
1199 info.group = NETLINK_CB(skb).dst_group;
1200 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1204 struct msghdr *msg, size_t len)
1205{
1206 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1207 struct sock *sk = sock->sk;
1208 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001209 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001211 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct sk_buff *skb;
1213 int err;
1214 struct scm_cookie scm;
1215
1216 if (msg->msg_flags&MSG_OOB)
1217 return -EOPNOTSUPP;
1218
1219 if (NULL == siocb->scm)
1220 siocb->scm = &scm;
1221 err = scm_send(sock, msg, siocb->scm);
1222 if (err < 0)
1223 return err;
1224
1225 if (msg->msg_namelen) {
1226 if (addr->nl_family != AF_NETLINK)
1227 return -EINVAL;
1228 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001229 dst_group = ffs(addr->nl_groups);
1230 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return -EPERM;
1232 } else {
1233 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001234 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236
1237 if (!nlk->pid) {
1238 err = netlink_autobind(sock);
1239 if (err)
1240 goto out;
1241 }
1242
1243 err = -EMSGSIZE;
1244 if (len > sk->sk_sndbuf - 32)
1245 goto out;
1246 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001247 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001248 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 goto out;
1250
1251 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001252 NETLINK_CB(skb).dst_group = dst_group;
Al Viro0c11b942008-01-10 04:20:52 -05001253 NETLINK_CB(skb).loginuid = audit_get_loginuid(current);
Eric Paris25323862008-04-18 10:09:25 -04001254 NETLINK_CB(skb).sessionid = audit_get_sessionid(current);
Ahmed S. Darwish0ce784c2008-03-01 21:56:22 +02001255 security_task_getsecid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1257
1258 /* What can I do? Netlink is asynchronous, so that
1259 we will have to save current capabilities to
1260 check them, when this message will be delivered
1261 to corresponding kernel module. --ANK (980802)
1262 */
1263
1264 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001265 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 kfree_skb(skb);
1267 goto out;
1268 }
1269
1270 err = security_netlink_send(sk, skb);
1271 if (err) {
1272 kfree_skb(skb);
1273 goto out;
1274 }
1275
Patrick McHardyd629b832005-08-14 19:27:50 -07001276 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001278 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1281
1282out:
1283 return err;
1284}
1285
1286static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1287 struct msghdr *msg, size_t len,
1288 int flags)
1289{
1290 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1291 struct scm_cookie scm;
1292 struct sock *sk = sock->sk;
1293 struct netlink_sock *nlk = nlk_sk(sk);
1294 int noblock = flags&MSG_DONTWAIT;
1295 size_t copied;
1296 struct sk_buff *skb;
1297 int err;
1298
1299 if (flags&MSG_OOB)
1300 return -EOPNOTSUPP;
1301
1302 copied = 0;
1303
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001304 skb = skb_recv_datagram(sk, flags, noblock, &err);
1305 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 goto out;
1307
1308 msg->msg_namelen = 0;
1309
1310 copied = skb->len;
1311 if (len < copied) {
1312 msg->msg_flags |= MSG_TRUNC;
1313 copied = len;
1314 }
1315
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001316 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1318
1319 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001320 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 addr->nl_family = AF_NETLINK;
1322 addr->nl_pad = 0;
1323 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001324 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 msg->msg_namelen = sizeof(*addr);
1326 }
1327
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001328 if (nlk->flags & NETLINK_RECV_PKTINFO)
1329 netlink_cmsg_recv_pktinfo(msg, skb);
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (NULL == siocb->scm) {
1332 memset(&scm, 0, sizeof(scm));
1333 siocb->scm = &scm;
1334 }
1335 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001336 if (flags & MSG_TRUNC)
1337 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 skb_free_datagram(sk, skb);
1339
1340 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1341 netlink_dump(sk);
1342
1343 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344out:
1345 netlink_rcv_wake(sk);
1346 return err ? : copied;
1347}
1348
1349static void netlink_data_ready(struct sock *sk, int len)
1350{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001351 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001355 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * complete set of kernel non-blocking support for message
1357 * queueing.
1358 */
1359
1360struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001361netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001362 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001363 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 struct socket *sock;
1366 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001367 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001368 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001370 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001372 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return NULL;
1374
1375 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1376 return NULL;
1377
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001378 /*
1379 * We have to just have a reference on the net from sk, but don't
1380 * get_net it. Besides, we cannot get and then put the net here.
1381 * So we create one inside init_net and the move it to net.
1382 */
1383
1384 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1385 goto out_sock_release_nosk;
1386
1387 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001388 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001389
Patrick McHardy4277a082006-03-20 18:52:01 -08001390 if (groups < 32)
1391 groups = 32;
1392
1393 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1394 if (!listeners)
1395 goto out_sock_release;
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 sk->sk_data_ready = netlink_data_ready;
1398 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001399 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001401 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001402 goto out_sock_release;
1403
1404 nlk = nlk_sk(sk);
1405 nlk->flags |= NETLINK_KERNEL_SOCKET;
1406
1407 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001408 if (!nl_table[unit].registered) {
1409 nl_table[unit].groups = groups;
1410 nl_table[unit].listeners = listeners;
1411 nl_table[unit].cb_mutex = cb_mutex;
1412 nl_table[unit].module = module;
1413 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001414 } else {
1415 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001416 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001417 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001418 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001419 return sk;
1420
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001421out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001422 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001423 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001424 return NULL;
1425
1426out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001427 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001428 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001430EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001432
1433void
1434netlink_kernel_release(struct sock *sk)
1435{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001436 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001437}
1438EXPORT_SYMBOL(netlink_kernel_release);
1439
1440
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001441/**
1442 * netlink_change_ngroups - change number of multicast groups
1443 *
1444 * This changes the number of multicast groups that are available
1445 * on a certain netlink family. Note that it is not possible to
Johannes Berg84659eb2007-07-18 15:47:05 -07001446 * change the number of groups to below 32. Also note that it does
1447 * not implicitly call netlink_clear_multicast_users() when the
1448 * number of groups is reduced.
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001449 *
1450 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1451 * @groups: The new number of groups.
1452 */
1453int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1454{
1455 unsigned long *listeners, *old = NULL;
1456 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1457 int err = 0;
1458
1459 if (groups < 32)
1460 groups = 32;
1461
1462 netlink_table_grab();
1463 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1464 listeners = kzalloc(NLGRPSZ(groups), GFP_ATOMIC);
1465 if (!listeners) {
1466 err = -ENOMEM;
1467 goto out_ungrab;
1468 }
1469 old = tbl->listeners;
1470 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1471 rcu_assign_pointer(tbl->listeners, listeners);
1472 }
1473 tbl->groups = groups;
1474
1475 out_ungrab:
1476 netlink_table_ungrab();
1477 synchronize_rcu();
1478 kfree(old);
1479 return err;
1480}
1481EXPORT_SYMBOL(netlink_change_ngroups);
1482
Johannes Berg84659eb2007-07-18 15:47:05 -07001483/**
1484 * netlink_clear_multicast_users - kick off multicast listeners
1485 *
1486 * This function removes all listeners from the given group.
1487 * @ksk: The kernel netlink socket, as returned by
1488 * netlink_kernel_create().
1489 * @group: The multicast group to clear.
1490 */
1491void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1492{
1493 struct sock *sk;
1494 struct hlist_node *node;
1495 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1496
1497 netlink_table_grab();
1498
1499 sk_for_each_bound(sk, node, &tbl->mc_list)
1500 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1501
1502 netlink_table_ungrab();
1503}
1504EXPORT_SYMBOL(netlink_clear_multicast_users);
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001507{
1508 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001510}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001511EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513static void netlink_destroy_callback(struct netlink_callback *cb)
1514{
1515 if (cb->skb)
1516 kfree_skb(cb->skb);
1517 kfree(cb);
1518}
1519
1520/*
1521 * It looks a bit ugly.
1522 * It would be better to create kernel thread.
1523 */
1524
1525static int netlink_dump(struct sock *sk)
1526{
1527 struct netlink_sock *nlk = nlk_sk(sk);
1528 struct netlink_callback *cb;
1529 struct sk_buff *skb;
1530 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001531 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1534 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001535 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001537 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 cb = nlk->cb;
1540 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001541 err = -EINVAL;
1542 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
1545 len = cb->dump(skb, cb);
1546
1547 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001548 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001549
1550 if (sk_filter(sk, skb))
1551 kfree_skb(skb);
1552 else {
1553 skb_queue_tail(&sk->sk_receive_queue, skb);
1554 sk->sk_data_ready(sk, skb->len);
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return 0;
1557 }
1558
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001559 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1560 if (!nlh)
1561 goto errout_skb;
1562
1563 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1564
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001565 if (sk_filter(sk, skb))
1566 kfree_skb(skb);
1567 else {
1568 skb_queue_tail(&sk->sk_receive_queue, skb);
1569 sk->sk_data_ready(sk, skb->len);
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Thomas Grafa8f74b22005-11-10 02:25:52 +01001572 if (cb->done)
1573 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001575 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001579
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001580errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001581 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001582 kfree_skb(skb);
1583errout:
1584 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1588 struct nlmsghdr *nlh,
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001589 int (*dump)(struct sk_buff *skb,
1590 struct netlink_callback *),
1591 int (*done)(struct netlink_callback *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 struct netlink_callback *cb;
1594 struct sock *sk;
1595 struct netlink_sock *nlk;
1596
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001597 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (cb == NULL)
1599 return -ENOBUFS;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 cb->dump = dump;
1602 cb->done = done;
1603 cb->nlh = nlh;
1604 atomic_inc(&skb->users);
1605 cb->skb = skb;
1606
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001607 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (sk == NULL) {
1609 netlink_destroy_callback(cb);
1610 return -ECONNREFUSED;
1611 }
1612 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001613 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001614 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001615 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001616 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 netlink_destroy_callback(cb);
1618 sock_put(sk);
1619 return -EBUSY;
1620 }
1621 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001622 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 netlink_dump(sk);
1625 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001626
1627 /* We successfully started a dump, by returning -EINTR we
1628 * signal not to send ACK even if it was requested.
1629 */
1630 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001632EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1635{
1636 struct sk_buff *skb;
1637 struct nlmsghdr *rep;
1638 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001639 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Thomas Graf339bf982006-11-10 14:10:15 -08001641 /* error messages get the original request appened */
1642 if (err)
1643 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Thomas Graf339bf982006-11-10 14:10:15 -08001645 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (!skb) {
1647 struct sock *sk;
1648
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001649 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001650 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 NETLINK_CB(in_skb).pid);
1652 if (sk) {
1653 sk->sk_err = ENOBUFS;
1654 sk->sk_error_report(sk);
1655 sock_put(sk);
1656 }
1657 return;
1658 }
1659
1660 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001661 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001662 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001664 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1666}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001667EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001669int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001670 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001671{
Thomas Graf82ace472005-11-10 02:25:53 +01001672 struct nlmsghdr *nlh;
1673 int err;
1674
1675 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001676 int msglen;
1677
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001678 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001679 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001680
Martin Murrayad8e4b72006-01-10 13:02:29 -08001681 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001682 return 0;
1683
Thomas Grafd35b6852007-03-22 23:28:46 -07001684 /* Only requests are handled by the kernel */
1685 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001686 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001687
Thomas Graf45e7ae72007-03-22 23:29:10 -07001688 /* Skip control messages */
1689 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001690 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001691
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001692 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001693 if (err == -EINTR)
1694 goto skip;
1695
1696ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001697 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001698 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001699
Denis V. Lunev5c582982007-10-23 20:29:25 -07001700skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001701 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001702 if (msglen > skb->len)
1703 msglen = skb->len;
1704 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001705 }
1706
1707 return 0;
1708}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001709EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001710
1711/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001712 * nlmsg_notify - send a notification netlink message
1713 * @sk: netlink socket to use
1714 * @skb: notification message
1715 * @pid: destination netlink pid for reports or 0
1716 * @group: destination multicast group or 0
1717 * @report: 1 to report back, 0 to disable
1718 * @flags: allocation flags
1719 */
1720int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1721 unsigned int group, int report, gfp_t flags)
1722{
1723 int err = 0;
1724
1725 if (group) {
1726 int exclude_pid = 0;
1727
1728 if (report) {
1729 atomic_inc(&skb->users);
1730 exclude_pid = pid;
1731 }
1732
1733 /* errors reported via destination sk->sk_err */
1734 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1735 }
1736
1737 if (report)
1738 err = nlmsg_unicast(sk, skb, pid);
1739
1740 return err;
1741}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001742EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744#ifdef CONFIG_PROC_FS
1745struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001746 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 int link;
1748 int hash_idx;
1749};
1750
1751static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1752{
1753 struct nl_seq_iter *iter = seq->private;
1754 int i, j;
1755 struct sock *s;
1756 struct hlist_node *node;
1757 loff_t off = 0;
1758
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001759 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 struct nl_pid_hash *hash = &nl_table[i].hash;
1761
1762 for (j = 0; j <= hash->mask; j++) {
1763 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001764 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001765 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (off == pos) {
1767 iter->link = i;
1768 iter->hash_idx = j;
1769 return s;
1770 }
1771 ++off;
1772 }
1773 }
1774 }
1775 return NULL;
1776}
1777
1778static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001779 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 read_lock(&nl_table_lock);
1782 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1783}
1784
1785static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1786{
1787 struct sock *s;
1788 struct nl_seq_iter *iter;
1789 int i, j;
1790
1791 ++*pos;
1792
1793 if (v == SEQ_START_TOKEN)
1794 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001795
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001796 iter = seq->private;
1797 s = v;
1798 do {
1799 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001800 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (s)
1802 return s;
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 i = iter->link;
1805 j = iter->hash_idx + 1;
1806
1807 do {
1808 struct nl_pid_hash *hash = &nl_table[i].hash;
1809
1810 for (; j <= hash->mask; j++) {
1811 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001812 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001813 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (s) {
1815 iter->link = i;
1816 iter->hash_idx = j;
1817 return s;
1818 }
1819 }
1820
1821 j = 0;
1822 } while (++i < MAX_LINKS);
1823
1824 return NULL;
1825}
1826
1827static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001828 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 read_unlock(&nl_table_lock);
1831}
1832
1833
1834static int netlink_seq_show(struct seq_file *seq, void *v)
1835{
1836 if (v == SEQ_START_TOKEN)
1837 seq_puts(seq,
1838 "sk Eth Pid Groups "
1839 "Rmem Wmem Dump Locks\n");
1840 else {
1841 struct sock *s = v;
1842 struct netlink_sock *nlk = nlk_sk(s);
1843
1844 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1845 s,
1846 s->sk_protocol,
1847 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001848 nlk->groups ? (u32)nlk->groups[0] : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 atomic_read(&s->sk_rmem_alloc),
1850 atomic_read(&s->sk_wmem_alloc),
1851 nlk->cb,
1852 atomic_read(&s->sk_refcnt)
1853 );
1854
1855 }
1856 return 0;
1857}
1858
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001859static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 .start = netlink_seq_start,
1861 .next = netlink_seq_next,
1862 .stop = netlink_seq_stop,
1863 .show = netlink_seq_show,
1864};
1865
1866
1867static int netlink_seq_open(struct inode *inode, struct file *file)
1868{
Denis V. Luneve372c412007-11-19 22:31:54 -08001869 return seq_open_net(inode, file, &netlink_seq_ops,
1870 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001871}
1872
Arjan van de Venda7071d2007-02-12 00:55:36 -08001873static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 .owner = THIS_MODULE,
1875 .open = netlink_seq_open,
1876 .read = seq_read,
1877 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08001878 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879};
1880
1881#endif
1882
1883int netlink_register_notifier(struct notifier_block *nb)
1884{
Alan Sterne041c682006-03-27 01:16:30 -08001885 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001887EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889int netlink_unregister_notifier(struct notifier_block *nb)
1890{
Alan Sterne041c682006-03-27 01:16:30 -08001891 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001893EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001894
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001895static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 .family = PF_NETLINK,
1897 .owner = THIS_MODULE,
1898 .release = netlink_release,
1899 .bind = netlink_bind,
1900 .connect = netlink_connect,
1901 .socketpair = sock_no_socketpair,
1902 .accept = sock_no_accept,
1903 .getname = netlink_getname,
1904 .poll = datagram_poll,
1905 .ioctl = sock_no_ioctl,
1906 .listen = sock_no_listen,
1907 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001908 .setsockopt = netlink_setsockopt,
1909 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 .sendmsg = netlink_sendmsg,
1911 .recvmsg = netlink_recvmsg,
1912 .mmap = sock_no_mmap,
1913 .sendpage = sock_no_sendpage,
1914};
1915
1916static struct net_proto_family netlink_family_ops = {
1917 .family = PF_NETLINK,
1918 .create = netlink_create,
1919 .owner = THIS_MODULE, /* for consistency 8) */
1920};
1921
Pavel Emelyanov46650792007-10-08 20:38:39 -07001922static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001923{
1924#ifdef CONFIG_PROC_FS
1925 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
1926 return -ENOMEM;
1927#endif
1928 return 0;
1929}
1930
Pavel Emelyanov46650792007-10-08 20:38:39 -07001931static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001932{
1933#ifdef CONFIG_PROC_FS
1934 proc_net_remove(net, "netlink");
1935#endif
1936}
1937
Denis V. Lunev022cbae2007-11-13 03:23:50 -08001938static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001939 .init = netlink_net_init,
1940 .exit = netlink_net_exit,
1941};
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943static int __init netlink_proto_init(void)
1944{
1945 struct sk_buff *dummy_skb;
1946 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001947 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 unsigned int order;
1949 int err = proto_register(&netlink_proto, 0);
1950
1951 if (err != 0)
1952 goto out;
1953
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001954 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001956 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001957 if (!nl_table)
1958 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001961 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001963 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001965 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
1966 limit = (1UL << order) / sizeof(struct hlist_head);
1967 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 for (i = 0; i < MAX_LINKS; i++) {
1970 struct nl_pid_hash *hash = &nl_table[i].hash;
1971
Eric Dumazetea729122007-12-11 02:09:47 -08001972 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if (!hash->table) {
1974 while (i-- > 0)
1975 nl_pid_hash_free(nl_table[i].hash.table,
1976 1 * sizeof(*hash->table));
1977 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001978 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 hash->max_shift = order;
1981 hash->shift = 0;
1982 hash->mask = 0;
1983 hash->rehash_time = jiffies;
1984 }
1985
1986 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001987 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001988 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 rtnetlink_init();
1990out:
1991 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001992panic:
1993 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996core_initcall(netlink_proto_init);