Linux 3.2.102
[pandora-kernel.git] / net / netlink / af_netlink.c
1 /*
2  * NETLINK      Kernel-user communication protocol.
3  *
4  *              Authors:        Alan Cox <alan@lxorguk.ukuu.org.uk>
5  *                              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.
11  *
12  * 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)
16  * 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
22  */
23
24 #include <linux/module.h>
25
26 #include <linux/capability.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
29 #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>
48 #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>
56 #include <linux/audit.h>
57 #include <linux/mutex.h>
58
59 #include <net/net_namespace.h>
60 #include <net/sock.h>
61 #include <net/scm.h>
62 #include <net/netlink.h>
63
64 #define NLGRPSZ(x)      (ALIGN(x, sizeof(unsigned long) * 8) / 8)
65 #define NLGRPLONGS(x)   (NLGRPSZ(x)/sizeof(unsigned long))
66
67 struct netlink_sock {
68         /* struct sock has to be the first member of netlink_sock */
69         struct sock             sk;
70         u32                     pid;
71         u32                     dst_pid;
72         u32                     dst_group;
73         u32                     flags;
74         u32                     subscriptions;
75         u32                     ngroups;
76         unsigned long           *groups;
77         unsigned long           state;
78         wait_queue_head_t       wait;
79         struct netlink_callback *cb;
80         struct mutex            *cb_mutex;
81         struct mutex            cb_def_mutex;
82         void                    (*netlink_rcv)(struct sk_buff *skb);
83         struct module           *module;
84 };
85
86 struct listeners {
87         struct rcu_head         rcu;
88         unsigned long           masks[0];
89 };
90
91 #define NETLINK_KERNEL_SOCKET   0x1
92 #define NETLINK_RECV_PKTINFO    0x2
93 #define NETLINK_BROADCAST_SEND_ERROR    0x4
94 #define NETLINK_RECV_NO_ENOBUFS 0x8
95
96 static inline struct netlink_sock *nlk_sk(struct sock *sk)
97 {
98         return container_of(sk, struct netlink_sock, sk);
99 }
100
101 static inline int netlink_is_kernel(struct sock *sk)
102 {
103         return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
104 }
105
106 struct nl_pid_hash {
107         struct hlist_head *table;
108         unsigned long rehash_time;
109
110         unsigned int mask;
111         unsigned int shift;
112
113         unsigned int entries;
114         unsigned int max_shift;
115
116         u32 rnd;
117 };
118
119 struct netlink_table {
120         struct nl_pid_hash hash;
121         struct hlist_head mc_list;
122         struct listeners __rcu *listeners;
123         unsigned int nl_nonroot;
124         unsigned int groups;
125         struct mutex *cb_mutex;
126         struct module *module;
127         int registered;
128 };
129
130 static struct netlink_table *nl_table;
131
132 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
133
134 static int netlink_dump(struct sock *sk);
135 static void netlink_destroy_callback(struct netlink_callback *cb);
136
137 static DEFINE_RWLOCK(nl_table_lock);
138 static atomic_t nl_table_users = ATOMIC_INIT(0);
139
140 #define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
141
142 static ATOMIC_NOTIFIER_HEAD(netlink_chain);
143
144 static u32 netlink_group_mask(u32 group)
145 {
146         return group ? 1 << (group - 1) : 0;
147 }
148
149 static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
150 {
151         return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
152 }
153
154 static void netlink_sock_destruct(struct sock *sk)
155 {
156         struct netlink_sock *nlk = nlk_sk(sk);
157
158         if (nlk->cb) {
159                 if (nlk->cb->done)
160                         nlk->cb->done(nlk->cb);
161                 netlink_destroy_callback(nlk->cb);
162         }
163
164         skb_queue_purge(&sk->sk_receive_queue);
165
166         if (!sock_flag(sk, SOCK_DEAD)) {
167                 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
168                 return;
169         }
170
171         WARN_ON(atomic_read(&sk->sk_rmem_alloc));
172         WARN_ON(atomic_read(&sk->sk_wmem_alloc));
173         WARN_ON(nlk_sk(sk)->groups);
174 }
175
176 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
177  * SMP. Look, when several writers sleep and reader wakes them up, all but one
178  * immediately hit write lock and grab all the cpus. Exclusive sleep solves
179  * this, _but_ remember, it adds useless work on UP machines.
180  */
181
182 void netlink_table_grab(void)
183         __acquires(nl_table_lock)
184 {
185         might_sleep();
186
187         write_lock_irq(&nl_table_lock);
188
189         if (atomic_read(&nl_table_users)) {
190                 DECLARE_WAITQUEUE(wait, current);
191
192                 add_wait_queue_exclusive(&nl_table_wait, &wait);
193                 for (;;) {
194                         set_current_state(TASK_UNINTERRUPTIBLE);
195                         if (atomic_read(&nl_table_users) == 0)
196                                 break;
197                         write_unlock_irq(&nl_table_lock);
198                         schedule();
199                         write_lock_irq(&nl_table_lock);
200                 }
201
202                 __set_current_state(TASK_RUNNING);
203                 remove_wait_queue(&nl_table_wait, &wait);
204         }
205 }
206
207 void netlink_table_ungrab(void)
208         __releases(nl_table_lock)
209 {
210         write_unlock_irq(&nl_table_lock);
211         wake_up(&nl_table_wait);
212 }
213
214 static inline void
215 netlink_lock_table(void)
216 {
217         /* read_lock() synchronizes us to netlink_table_grab */
218
219         read_lock(&nl_table_lock);
220         atomic_inc(&nl_table_users);
221         read_unlock(&nl_table_lock);
222 }
223
224 static inline void
225 netlink_unlock_table(void)
226 {
227         if (atomic_dec_and_test(&nl_table_users))
228                 wake_up(&nl_table_wait);
229 }
230
231 static inline struct sock *netlink_lookup(struct net *net, int protocol,
232                                           u32 pid)
233 {
234         struct nl_pid_hash *hash = &nl_table[protocol].hash;
235         struct hlist_head *head;
236         struct sock *sk;
237         struct hlist_node *node;
238
239         read_lock(&nl_table_lock);
240         head = nl_pid_hashfn(hash, pid);
241         sk_for_each(sk, node, head) {
242                 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
243                         sock_hold(sk);
244                         goto found;
245                 }
246         }
247         sk = NULL;
248 found:
249         read_unlock(&nl_table_lock);
250         return sk;
251 }
252
253 static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
254 {
255         if (size <= PAGE_SIZE)
256                 return kzalloc(size, GFP_ATOMIC);
257         else
258                 return (struct hlist_head *)
259                         __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
260                                          get_order(size));
261 }
262
263 static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
264 {
265         if (size <= PAGE_SIZE)
266                 kfree(table);
267         else
268                 free_pages((unsigned long)table, get_order(size));
269 }
270
271 static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
272 {
273         unsigned int omask, mask, shift;
274         size_t osize, size;
275         struct hlist_head *otable, *table;
276         int i;
277
278         omask = mask = hash->mask;
279         osize = size = (mask + 1) * sizeof(*table);
280         shift = hash->shift;
281
282         if (grow) {
283                 if (++shift > hash->max_shift)
284                         return 0;
285                 mask = mask * 2 + 1;
286                 size *= 2;
287         }
288
289         table = nl_pid_hash_zalloc(size);
290         if (!table)
291                 return 0;
292
293         otable = hash->table;
294         hash->table = table;
295         hash->mask = mask;
296         hash->shift = shift;
297         get_random_bytes(&hash->rnd, sizeof(hash->rnd));
298
299         for (i = 0; i <= omask; i++) {
300                 struct sock *sk;
301                 struct hlist_node *node, *tmp;
302
303                 sk_for_each_safe(sk, node, tmp, &otable[i])
304                         __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
305         }
306
307         nl_pid_hash_free(otable, osize);
308         hash->rehash_time = jiffies + 10 * 60 * HZ;
309         return 1;
310 }
311
312 static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
313 {
314         int avg = hash->entries >> hash->shift;
315
316         if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
317                 return 1;
318
319         if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
320                 nl_pid_hash_rehash(hash, 0);
321                 return 1;
322         }
323
324         return 0;
325 }
326
327 static const struct proto_ops netlink_ops;
328
329 static void
330 netlink_update_listeners(struct sock *sk)
331 {
332         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
333         struct hlist_node *node;
334         unsigned long mask;
335         unsigned int i;
336         struct listeners *listeners;
337
338         listeners = nl_deref_protected(tbl->listeners);
339         if (!listeners)
340                 return;
341
342         for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
343                 mask = 0;
344                 sk_for_each_bound(sk, node, &tbl->mc_list) {
345                         if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
346                                 mask |= nlk_sk(sk)->groups[i];
347                 }
348                 listeners->masks[i] = mask;
349         }
350         /* this function is only called with the netlink table "grabbed", which
351          * makes sure updates are visible before bind or setsockopt return. */
352 }
353
354 static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
355 {
356         struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
357         struct hlist_head *head;
358         int err = -EADDRINUSE;
359         struct sock *osk;
360         struct hlist_node *node;
361         int len;
362
363         netlink_table_grab();
364         head = nl_pid_hashfn(hash, pid);
365         len = 0;
366         sk_for_each(osk, node, head) {
367                 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
368                         break;
369                 len++;
370         }
371         if (node)
372                 goto err;
373
374         err = -EBUSY;
375         if (nlk_sk(sk)->pid)
376                 goto err;
377
378         err = -ENOMEM;
379         if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
380                 goto err;
381
382         if (len && nl_pid_hash_dilute(hash, len))
383                 head = nl_pid_hashfn(hash, pid);
384         hash->entries++;
385         nlk_sk(sk)->pid = pid;
386         sk_add_node(sk, head);
387         err = 0;
388
389 err:
390         netlink_table_ungrab();
391         return err;
392 }
393
394 static void netlink_remove(struct sock *sk)
395 {
396         netlink_table_grab();
397         if (sk_del_node_init(sk))
398                 nl_table[sk->sk_protocol].hash.entries--;
399         if (nlk_sk(sk)->subscriptions)
400                 __sk_del_bind_node(sk);
401         netlink_table_ungrab();
402 }
403
404 static struct proto netlink_proto = {
405         .name     = "NETLINK",
406         .owner    = THIS_MODULE,
407         .obj_size = sizeof(struct netlink_sock),
408 };
409
410 static int __netlink_create(struct net *net, struct socket *sock,
411                             struct mutex *cb_mutex, int protocol)
412 {
413         struct sock *sk;
414         struct netlink_sock *nlk;
415
416         sock->ops = &netlink_ops;
417
418         sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
419         if (!sk)
420                 return -ENOMEM;
421
422         sock_init_data(sock, sk);
423
424         nlk = nlk_sk(sk);
425         if (cb_mutex)
426                 nlk->cb_mutex = cb_mutex;
427         else {
428                 nlk->cb_mutex = &nlk->cb_def_mutex;
429                 mutex_init(nlk->cb_mutex);
430         }
431         init_waitqueue_head(&nlk->wait);
432
433         sk->sk_destruct = netlink_sock_destruct;
434         sk->sk_protocol = protocol;
435         return 0;
436 }
437
438 static int netlink_create(struct net *net, struct socket *sock, int protocol,
439                           int kern)
440 {
441         struct module *module = NULL;
442         struct mutex *cb_mutex;
443         struct netlink_sock *nlk;
444         int err = 0;
445
446         sock->state = SS_UNCONNECTED;
447
448         if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
449                 return -ESOCKTNOSUPPORT;
450
451         if (protocol < 0 || protocol >= MAX_LINKS)
452                 return -EPROTONOSUPPORT;
453
454         netlink_lock_table();
455 #ifdef CONFIG_MODULES
456         if (!nl_table[protocol].registered) {
457                 netlink_unlock_table();
458                 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
459                 netlink_lock_table();
460         }
461 #endif
462         if (nl_table[protocol].registered &&
463             try_module_get(nl_table[protocol].module))
464                 module = nl_table[protocol].module;
465         else
466                 err = -EPROTONOSUPPORT;
467         cb_mutex = nl_table[protocol].cb_mutex;
468         netlink_unlock_table();
469
470         if (err < 0)
471                 goto out;
472
473         err = __netlink_create(net, sock, cb_mutex, protocol);
474         if (err < 0)
475                 goto out_module;
476
477         local_bh_disable();
478         sock_prot_inuse_add(net, &netlink_proto, 1);
479         local_bh_enable();
480
481         nlk = nlk_sk(sock->sk);
482         nlk->module = module;
483 out:
484         return err;
485
486 out_module:
487         module_put(module);
488         goto out;
489 }
490
491 static int netlink_release(struct socket *sock)
492 {
493         struct sock *sk = sock->sk;
494         struct netlink_sock *nlk;
495
496         if (!sk)
497                 return 0;
498
499         netlink_remove(sk);
500         sock_orphan(sk);
501         nlk = nlk_sk(sk);
502
503         /*
504          * OK. Socket is unlinked, any packets that arrive now
505          * will be purged.
506          */
507
508         sock->sk = NULL;
509         wake_up_interruptible_all(&nlk->wait);
510
511         skb_queue_purge(&sk->sk_write_queue);
512
513         if (nlk->pid) {
514                 struct netlink_notify n = {
515                                                 .net = sock_net(sk),
516                                                 .protocol = sk->sk_protocol,
517                                                 .pid = nlk->pid,
518                                           };
519                 atomic_notifier_call_chain(&netlink_chain,
520                                 NETLINK_URELEASE, &n);
521         }
522
523         module_put(nlk->module);
524
525         netlink_table_grab();
526         if (netlink_is_kernel(sk)) {
527                 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
528                 if (--nl_table[sk->sk_protocol].registered == 0) {
529                         struct listeners *old;
530
531                         old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
532                         RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
533                         kfree_rcu(old, rcu);
534                         nl_table[sk->sk_protocol].module = NULL;
535                         nl_table[sk->sk_protocol].registered = 0;
536                 }
537         } else if (nlk->subscriptions)
538                 netlink_update_listeners(sk);
539         netlink_table_ungrab();
540
541         kfree(nlk->groups);
542         nlk->groups = NULL;
543
544         local_bh_disable();
545         sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
546         local_bh_enable();
547         sock_put(sk);
548         return 0;
549 }
550
551 static int netlink_autobind(struct socket *sock)
552 {
553         struct sock *sk = sock->sk;
554         struct net *net = sock_net(sk);
555         struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
556         struct hlist_head *head;
557         struct sock *osk;
558         struct hlist_node *node;
559         s32 pid = task_tgid_vnr(current);
560         int err;
561         static s32 rover = -4097;
562
563 retry:
564         cond_resched();
565         netlink_table_grab();
566         head = nl_pid_hashfn(hash, pid);
567         sk_for_each(osk, node, head) {
568                 if (!net_eq(sock_net(osk), net))
569                         continue;
570                 if (nlk_sk(osk)->pid == pid) {
571                         /* Bind collision, search negative pid values. */
572                         pid = rover--;
573                         if (rover > -4097)
574                                 rover = -4097;
575                         netlink_table_ungrab();
576                         goto retry;
577                 }
578         }
579         netlink_table_ungrab();
580
581         err = netlink_insert(sk, net, pid);
582         if (err == -EADDRINUSE)
583                 goto retry;
584
585         /* If 2 threads race to autobind, that is fine.  */
586         if (err == -EBUSY)
587                 err = 0;
588
589         return err;
590 }
591
592 static inline int netlink_capable(struct socket *sock, unsigned int flag)
593 {
594         return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
595                capable(CAP_NET_ADMIN);
596 }
597
598 static void
599 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
600 {
601         struct netlink_sock *nlk = nlk_sk(sk);
602
603         if (nlk->subscriptions && !subscriptions)
604                 __sk_del_bind_node(sk);
605         else if (!nlk->subscriptions && subscriptions)
606                 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
607         nlk->subscriptions = subscriptions;
608 }
609
610 static int netlink_realloc_groups(struct sock *sk)
611 {
612         struct netlink_sock *nlk = nlk_sk(sk);
613         unsigned int groups;
614         unsigned long *new_groups;
615         int err = 0;
616
617         netlink_table_grab();
618
619         groups = nl_table[sk->sk_protocol].groups;
620         if (!nl_table[sk->sk_protocol].registered) {
621                 err = -ENOENT;
622                 goto out_unlock;
623         }
624
625         if (nlk->ngroups >= groups)
626                 goto out_unlock;
627
628         new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
629         if (new_groups == NULL) {
630                 err = -ENOMEM;
631                 goto out_unlock;
632         }
633         memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
634                NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
635
636         nlk->groups = new_groups;
637         nlk->ngroups = groups;
638  out_unlock:
639         netlink_table_ungrab();
640         return err;
641 }
642
643 static int netlink_bind(struct socket *sock, struct sockaddr *addr,
644                         int addr_len)
645 {
646         struct sock *sk = sock->sk;
647         struct net *net = sock_net(sk);
648         struct netlink_sock *nlk = nlk_sk(sk);
649         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
650         int err;
651
652         if (nladdr->nl_family != AF_NETLINK)
653                 return -EINVAL;
654
655         /* Only superuser is allowed to listen multicasts */
656         if (nladdr->nl_groups) {
657                 if (!netlink_capable(sock, NL_NONROOT_RECV))
658                         return -EPERM;
659                 err = netlink_realloc_groups(sk);
660                 if (err)
661                         return err;
662         }
663
664         if (nlk->pid) {
665                 if (nladdr->nl_pid != nlk->pid)
666                         return -EINVAL;
667         } else {
668                 err = nladdr->nl_pid ?
669                         netlink_insert(sk, net, nladdr->nl_pid) :
670                         netlink_autobind(sock);
671                 if (err)
672                         return err;
673         }
674
675         if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
676                 return 0;
677
678         netlink_table_grab();
679         netlink_update_subscriptions(sk, nlk->subscriptions +
680                                          hweight32(nladdr->nl_groups) -
681                                          hweight32(nlk->groups[0]));
682         nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
683         netlink_update_listeners(sk);
684         netlink_table_ungrab();
685
686         return 0;
687 }
688
689 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
690                            int alen, int flags)
691 {
692         int err = 0;
693         struct sock *sk = sock->sk;
694         struct netlink_sock *nlk = nlk_sk(sk);
695         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
696
697         if (alen < sizeof(addr->sa_family))
698                 return -EINVAL;
699
700         if (addr->sa_family == AF_UNSPEC) {
701                 sk->sk_state    = NETLINK_UNCONNECTED;
702                 nlk->dst_pid    = 0;
703                 nlk->dst_group  = 0;
704                 return 0;
705         }
706         if (addr->sa_family != AF_NETLINK)
707                 return -EINVAL;
708
709         if (alen < sizeof(struct sockaddr_nl))
710                 return -EINVAL;
711
712         /* Only superuser is allowed to send multicasts */
713         if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
714                 return -EPERM;
715
716         if (!nlk->pid)
717                 err = netlink_autobind(sock);
718
719         if (err == 0) {
720                 sk->sk_state    = NETLINK_CONNECTED;
721                 nlk->dst_pid    = nladdr->nl_pid;
722                 nlk->dst_group  = ffs(nladdr->nl_groups);
723         }
724
725         return err;
726 }
727
728 static int netlink_getname(struct socket *sock, struct sockaddr *addr,
729                            int *addr_len, int peer)
730 {
731         struct sock *sk = sock->sk;
732         struct netlink_sock *nlk = nlk_sk(sk);
733         DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
734
735         nladdr->nl_family = AF_NETLINK;
736         nladdr->nl_pad = 0;
737         *addr_len = sizeof(*nladdr);
738
739         if (peer) {
740                 nladdr->nl_pid = nlk->dst_pid;
741                 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
742         } else {
743                 nladdr->nl_pid = nlk->pid;
744                 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
745         }
746         return 0;
747 }
748
749 static void netlink_overrun(struct sock *sk)
750 {
751         struct netlink_sock *nlk = nlk_sk(sk);
752
753         if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
754                 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
755                         sk->sk_err = ENOBUFS;
756                         sk->sk_error_report(sk);
757                 }
758         }
759         atomic_inc(&sk->sk_drops);
760 }
761
762 static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
763 {
764         struct sock *sock;
765         struct netlink_sock *nlk;
766
767         sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
768         if (!sock)
769                 return ERR_PTR(-ECONNREFUSED);
770
771         /* Don't bother queuing skb if kernel socket has no input function */
772         nlk = nlk_sk(sock);
773         if (sock->sk_state == NETLINK_CONNECTED &&
774             nlk->dst_pid != nlk_sk(ssk)->pid) {
775                 sock_put(sock);
776                 return ERR_PTR(-ECONNREFUSED);
777         }
778         return sock;
779 }
780
781 struct sock *netlink_getsockbyfilp(struct file *filp)
782 {
783         struct inode *inode = filp->f_path.dentry->d_inode;
784         struct sock *sock;
785
786         if (!S_ISSOCK(inode->i_mode))
787                 return ERR_PTR(-ENOTSOCK);
788
789         sock = SOCKET_I(inode)->sk;
790         if (sock->sk_family != AF_NETLINK)
791                 return ERR_PTR(-EINVAL);
792
793         sock_hold(sock);
794         return sock;
795 }
796
797 /*
798  * Attach a skb to a netlink socket.
799  * The caller must hold a reference to the destination socket. On error, the
800  * reference is dropped. The skb is not send to the destination, just all
801  * all error checks are performed and memory in the queue is reserved.
802  * Return values:
803  * < 0: error. skb freed, reference to sock dropped.
804  * 0: continue
805  * 1: repeat lookup - reference dropped while waiting for socket memory.
806  */
807 int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
808                       long *timeo, struct sock *ssk)
809 {
810         struct netlink_sock *nlk;
811
812         nlk = nlk_sk(sk);
813
814         if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
815             test_bit(0, &nlk->state)) {
816                 DECLARE_WAITQUEUE(wait, current);
817                 if (!*timeo) {
818                         if (!ssk || netlink_is_kernel(ssk))
819                                 netlink_overrun(sk);
820                         sock_put(sk);
821                         kfree_skb(skb);
822                         return -EAGAIN;
823                 }
824
825                 __set_current_state(TASK_INTERRUPTIBLE);
826                 add_wait_queue(&nlk->wait, &wait);
827
828                 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
829                      test_bit(0, &nlk->state)) &&
830                     !sock_flag(sk, SOCK_DEAD))
831                         *timeo = schedule_timeout(*timeo);
832
833                 __set_current_state(TASK_RUNNING);
834                 remove_wait_queue(&nlk->wait, &wait);
835                 sock_put(sk);
836
837                 if (signal_pending(current)) {
838                         kfree_skb(skb);
839                         return sock_intr_errno(*timeo);
840                 }
841                 return 1;
842         }
843         skb_set_owner_r(skb, sk);
844         return 0;
845 }
846
847 static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
848 {
849         int len = skb->len;
850
851         skb_queue_tail(&sk->sk_receive_queue, skb);
852         sk->sk_data_ready(sk, len);
853         return len;
854 }
855
856 int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
857 {
858         int len = __netlink_sendskb(sk, skb);
859
860         sock_put(sk);
861         return len;
862 }
863
864 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
865 {
866         kfree_skb(skb);
867         sock_put(sk);
868 }
869
870 static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
871                                            gfp_t allocation)
872 {
873         int delta;
874
875         skb_orphan(skb);
876
877         delta = skb->end - skb->tail;
878         if (delta * 2 < skb->truesize)
879                 return skb;
880
881         if (skb_shared(skb)) {
882                 struct sk_buff *nskb = skb_clone(skb, allocation);
883                 if (!nskb)
884                         return skb;
885                 kfree_skb(skb);
886                 skb = nskb;
887         }
888
889         if (!pskb_expand_head(skb, 0, -delta, allocation))
890                 skb->truesize -= delta;
891
892         return skb;
893 }
894
895 static inline void netlink_rcv_wake(struct sock *sk)
896 {
897         struct netlink_sock *nlk = nlk_sk(sk);
898
899         if (skb_queue_empty(&sk->sk_receive_queue))
900                 clear_bit(0, &nlk->state);
901         if (!test_bit(0, &nlk->state))
902                 wake_up_interruptible(&nlk->wait);
903 }
904
905 static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
906 {
907         int ret;
908         struct netlink_sock *nlk = nlk_sk(sk);
909
910         ret = -ECONNREFUSED;
911         if (nlk->netlink_rcv != NULL) {
912                 ret = skb->len;
913                 skb_set_owner_r(skb, sk);
914                 nlk->netlink_rcv(skb);
915         }
916         kfree_skb(skb);
917         sock_put(sk);
918         return ret;
919 }
920
921 int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
922                     u32 pid, int nonblock)
923 {
924         struct sock *sk;
925         int err;
926         long timeo;
927
928         skb = netlink_trim(skb, gfp_any());
929
930         timeo = sock_sndtimeo(ssk, nonblock);
931 retry:
932         sk = netlink_getsockbypid(ssk, pid);
933         if (IS_ERR(sk)) {
934                 kfree_skb(skb);
935                 return PTR_ERR(sk);
936         }
937         if (netlink_is_kernel(sk))
938                 return netlink_unicast_kernel(sk, skb);
939
940         if (sk_filter(sk, skb)) {
941                 err = skb->len;
942                 kfree_skb(skb);
943                 sock_put(sk);
944                 return err;
945         }
946
947         err = netlink_attachskb(sk, skb, &timeo, ssk);
948         if (err == 1)
949                 goto retry;
950         if (err)
951                 return err;
952
953         return netlink_sendskb(sk, skb);
954 }
955 EXPORT_SYMBOL(netlink_unicast);
956
957 int netlink_has_listeners(struct sock *sk, unsigned int group)
958 {
959         int res = 0;
960         struct listeners *listeners;
961
962         BUG_ON(!netlink_is_kernel(sk));
963
964         rcu_read_lock();
965         listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
966
967         if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
968                 res = test_bit(group - 1, listeners->masks);
969
970         rcu_read_unlock();
971
972         return res;
973 }
974 EXPORT_SYMBOL_GPL(netlink_has_listeners);
975
976 static inline int netlink_broadcast_deliver(struct sock *sk,
977                                             struct sk_buff *skb)
978 {
979         struct netlink_sock *nlk = nlk_sk(sk);
980
981         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
982             !test_bit(0, &nlk->state)) {
983                 skb_set_owner_r(skb, sk);
984                 __netlink_sendskb(sk, skb);
985                 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
986         }
987         return -1;
988 }
989
990 struct netlink_broadcast_data {
991         struct sock *exclude_sk;
992         struct net *net;
993         u32 pid;
994         u32 group;
995         int failure;
996         int delivery_failure;
997         int congested;
998         int delivered;
999         gfp_t allocation;
1000         struct sk_buff *skb, *skb2;
1001         int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1002         void *tx_data;
1003 };
1004
1005 static inline int do_one_broadcast(struct sock *sk,
1006                                    struct netlink_broadcast_data *p)
1007 {
1008         struct netlink_sock *nlk = nlk_sk(sk);
1009         int val;
1010
1011         if (p->exclude_sk == sk)
1012                 goto out;
1013
1014         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1015             !test_bit(p->group - 1, nlk->groups))
1016                 goto out;
1017
1018         if (!net_eq(sock_net(sk), p->net))
1019                 goto out;
1020
1021         if (p->failure) {
1022                 netlink_overrun(sk);
1023                 goto out;
1024         }
1025
1026         sock_hold(sk);
1027         if (p->skb2 == NULL) {
1028                 if (skb_shared(p->skb)) {
1029                         p->skb2 = skb_clone(p->skb, p->allocation);
1030                 } else {
1031                         p->skb2 = skb_get(p->skb);
1032                         /*
1033                          * skb ownership may have been set when
1034                          * delivered to a previous socket.
1035                          */
1036                         skb_orphan(p->skb2);
1037                 }
1038         }
1039         if (p->skb2 == NULL) {
1040                 netlink_overrun(sk);
1041                 /* Clone failed. Notify ALL listeners. */
1042                 p->failure = 1;
1043                 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1044                         p->delivery_failure = 1;
1045         } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1046                 kfree_skb(p->skb2);
1047                 p->skb2 = NULL;
1048         } else if (sk_filter(sk, p->skb2)) {
1049                 kfree_skb(p->skb2);
1050                 p->skb2 = NULL;
1051         } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1052                 netlink_overrun(sk);
1053                 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1054                         p->delivery_failure = 1;
1055         } else {
1056                 p->congested |= val;
1057                 p->delivered = 1;
1058                 p->skb2 = NULL;
1059         }
1060         sock_put(sk);
1061
1062 out:
1063         return 0;
1064 }
1065
1066 int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1067         u32 group, gfp_t allocation,
1068         int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1069         void *filter_data)
1070 {
1071         struct net *net = sock_net(ssk);
1072         struct netlink_broadcast_data info;
1073         struct hlist_node *node;
1074         struct sock *sk;
1075
1076         skb = netlink_trim(skb, allocation);
1077
1078         info.exclude_sk = ssk;
1079         info.net = net;
1080         info.pid = pid;
1081         info.group = group;
1082         info.failure = 0;
1083         info.delivery_failure = 0;
1084         info.congested = 0;
1085         info.delivered = 0;
1086         info.allocation = allocation;
1087         info.skb = skb;
1088         info.skb2 = NULL;
1089         info.tx_filter = filter;
1090         info.tx_data = filter_data;
1091
1092         /* While we sleep in clone, do not allow to change socket list */
1093
1094         netlink_lock_table();
1095
1096         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1097                 do_one_broadcast(sk, &info);
1098
1099         consume_skb(skb);
1100
1101         netlink_unlock_table();
1102
1103         if (info.delivery_failure) {
1104                 kfree_skb(info.skb2);
1105                 return -ENOBUFS;
1106         } else
1107                 consume_skb(info.skb2);
1108
1109         if (info.delivered) {
1110                 if (info.congested && (allocation & __GFP_WAIT))
1111                         yield();
1112                 return 0;
1113         }
1114         return -ESRCH;
1115 }
1116 EXPORT_SYMBOL(netlink_broadcast_filtered);
1117
1118 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1119                       u32 group, gfp_t allocation)
1120 {
1121         return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1122                 NULL, NULL);
1123 }
1124 EXPORT_SYMBOL(netlink_broadcast);
1125
1126 struct netlink_set_err_data {
1127         struct sock *exclude_sk;
1128         u32 pid;
1129         u32 group;
1130         int code;
1131 };
1132
1133 static inline int do_one_set_err(struct sock *sk,
1134                                  struct netlink_set_err_data *p)
1135 {
1136         struct netlink_sock *nlk = nlk_sk(sk);
1137         int ret = 0;
1138
1139         if (sk == p->exclude_sk)
1140                 goto out;
1141
1142         if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
1143                 goto out;
1144
1145         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1146             !test_bit(p->group - 1, nlk->groups))
1147                 goto out;
1148
1149         if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1150                 ret = 1;
1151                 goto out;
1152         }
1153
1154         sk->sk_err = p->code;
1155         sk->sk_error_report(sk);
1156 out:
1157         return ret;
1158 }
1159
1160 /**
1161  * netlink_set_err - report error to broadcast listeners
1162  * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1163  * @pid: the PID of a process that we want to skip (if any)
1164  * @groups: the broadcast group that will notice the error
1165  * @code: error code, must be negative (as usual in kernelspace)
1166  *
1167  * This function returns the number of broadcast listeners that have set the
1168  * NETLINK_RECV_NO_ENOBUFS socket option.
1169  */
1170 int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1171 {
1172         struct netlink_set_err_data info;
1173         struct hlist_node *node;
1174         struct sock *sk;
1175         int ret = 0;
1176
1177         info.exclude_sk = ssk;
1178         info.pid = pid;
1179         info.group = group;
1180         /* sk->sk_err wants a positive error value */
1181         info.code = -code;
1182
1183         read_lock(&nl_table_lock);
1184
1185         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1186                 ret += do_one_set_err(sk, &info);
1187
1188         read_unlock(&nl_table_lock);
1189         return ret;
1190 }
1191 EXPORT_SYMBOL(netlink_set_err);
1192
1193 /* must be called with netlink table grabbed */
1194 static void netlink_update_socket_mc(struct netlink_sock *nlk,
1195                                      unsigned int group,
1196                                      int is_new)
1197 {
1198         int old, new = !!is_new, subscriptions;
1199
1200         old = test_bit(group - 1, nlk->groups);
1201         subscriptions = nlk->subscriptions - old + new;
1202         if (new)
1203                 __set_bit(group - 1, nlk->groups);
1204         else
1205                 __clear_bit(group - 1, nlk->groups);
1206         netlink_update_subscriptions(&nlk->sk, subscriptions);
1207         netlink_update_listeners(&nlk->sk);
1208 }
1209
1210 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1211                               char __user *optval, unsigned int optlen)
1212 {
1213         struct sock *sk = sock->sk;
1214         struct netlink_sock *nlk = nlk_sk(sk);
1215         unsigned int val = 0;
1216         int err;
1217
1218         if (level != SOL_NETLINK)
1219                 return -ENOPROTOOPT;
1220
1221         if (optlen >= sizeof(int) &&
1222             get_user(val, (unsigned int __user *)optval))
1223                 return -EFAULT;
1224
1225         switch (optname) {
1226         case NETLINK_PKTINFO:
1227                 if (val)
1228                         nlk->flags |= NETLINK_RECV_PKTINFO;
1229                 else
1230                         nlk->flags &= ~NETLINK_RECV_PKTINFO;
1231                 err = 0;
1232                 break;
1233         case NETLINK_ADD_MEMBERSHIP:
1234         case NETLINK_DROP_MEMBERSHIP: {
1235                 if (!netlink_capable(sock, NL_NONROOT_RECV))
1236                         return -EPERM;
1237                 err = netlink_realloc_groups(sk);
1238                 if (err)
1239                         return err;
1240                 if (!val || val - 1 >= nlk->ngroups)
1241                         return -EINVAL;
1242                 netlink_table_grab();
1243                 netlink_update_socket_mc(nlk, val,
1244                                          optname == NETLINK_ADD_MEMBERSHIP);
1245                 netlink_table_ungrab();
1246                 err = 0;
1247                 break;
1248         }
1249         case NETLINK_BROADCAST_ERROR:
1250                 if (val)
1251                         nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1252                 else
1253                         nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1254                 err = 0;
1255                 break;
1256         case NETLINK_NO_ENOBUFS:
1257                 if (val) {
1258                         nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1259                         clear_bit(0, &nlk->state);
1260                         wake_up_interruptible(&nlk->wait);
1261                 } else
1262                         nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1263                 err = 0;
1264                 break;
1265         default:
1266                 err = -ENOPROTOOPT;
1267         }
1268         return err;
1269 }
1270
1271 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1272                               char __user *optval, int __user *optlen)
1273 {
1274         struct sock *sk = sock->sk;
1275         struct netlink_sock *nlk = nlk_sk(sk);
1276         int len, val, err;
1277
1278         if (level != SOL_NETLINK)
1279                 return -ENOPROTOOPT;
1280
1281         if (get_user(len, optlen))
1282                 return -EFAULT;
1283         if (len < 0)
1284                 return -EINVAL;
1285
1286         switch (optname) {
1287         case NETLINK_PKTINFO:
1288                 if (len < sizeof(int))
1289                         return -EINVAL;
1290                 len = sizeof(int);
1291                 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
1292                 if (put_user(len, optlen) ||
1293                     put_user(val, optval))
1294                         return -EFAULT;
1295                 err = 0;
1296                 break;
1297         case NETLINK_BROADCAST_ERROR:
1298                 if (len < sizeof(int))
1299                         return -EINVAL;
1300                 len = sizeof(int);
1301                 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1302                 if (put_user(len, optlen) ||
1303                     put_user(val, optval))
1304                         return -EFAULT;
1305                 err = 0;
1306                 break;
1307         case NETLINK_NO_ENOBUFS:
1308                 if (len < sizeof(int))
1309                         return -EINVAL;
1310                 len = sizeof(int);
1311                 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1312                 if (put_user(len, optlen) ||
1313                     put_user(val, optval))
1314                         return -EFAULT;
1315                 err = 0;
1316                 break;
1317         default:
1318                 err = -ENOPROTOOPT;
1319         }
1320         return err;
1321 }
1322
1323 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1324 {
1325         struct nl_pktinfo info;
1326
1327         info.group = NETLINK_CB(skb).dst_group;
1328         put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1329 }
1330
1331 static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1332                            struct msghdr *msg, size_t len)
1333 {
1334         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1335         struct sock *sk = sock->sk;
1336         struct netlink_sock *nlk = nlk_sk(sk);
1337         struct sockaddr_nl *addr = msg->msg_name;
1338         u32 dst_pid;
1339         u32 dst_group;
1340         struct sk_buff *skb;
1341         int err;
1342         struct scm_cookie scm;
1343
1344         if (msg->msg_flags&MSG_OOB)
1345                 return -EOPNOTSUPP;
1346
1347         if (NULL == siocb->scm)
1348                 siocb->scm = &scm;
1349
1350         err = scm_send(sock, msg, siocb->scm, true);
1351         if (err < 0)
1352                 return err;
1353
1354         if (msg->msg_namelen) {
1355                 err = -EINVAL;
1356                 if (addr->nl_family != AF_NETLINK)
1357                         goto out;
1358                 dst_pid = addr->nl_pid;
1359                 dst_group = ffs(addr->nl_groups);
1360                 err =  -EPERM;
1361                 if ((dst_group || dst_pid) &&
1362                     !netlink_capable(sock, NL_NONROOT_SEND))
1363                         goto out;
1364         } else {
1365                 dst_pid = nlk->dst_pid;
1366                 dst_group = nlk->dst_group;
1367         }
1368
1369         if (!nlk->pid) {
1370                 err = netlink_autobind(sock);
1371                 if (err)
1372                         goto out;
1373         }
1374
1375         err = -EMSGSIZE;
1376         if (len > sk->sk_sndbuf - 32)
1377                 goto out;
1378         err = -ENOBUFS;
1379         skb = alloc_skb(len, GFP_KERNEL);
1380         if (skb == NULL)
1381                 goto out;
1382
1383         NETLINK_CB(skb).pid     = nlk->pid;
1384         NETLINK_CB(skb).dst_group = dst_group;
1385         memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1386
1387         err = -EFAULT;
1388         if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
1389                 kfree_skb(skb);
1390                 goto out;
1391         }
1392
1393         err = security_netlink_send(sk, skb);
1394         if (err) {
1395                 kfree_skb(skb);
1396                 goto out;
1397         }
1398
1399         if (dst_group) {
1400                 atomic_inc(&skb->users);
1401                 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1402         }
1403         err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1404
1405 out:
1406         scm_destroy(siocb->scm);
1407         return err;
1408 }
1409
1410 static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1411                            struct msghdr *msg, size_t len,
1412                            int flags)
1413 {
1414         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1415         struct scm_cookie scm;
1416         struct sock *sk = sock->sk;
1417         struct netlink_sock *nlk = nlk_sk(sk);
1418         int noblock = flags&MSG_DONTWAIT;
1419         size_t copied;
1420         struct sk_buff *skb, *data_skb;
1421         int err, ret;
1422
1423         if (flags&MSG_OOB)
1424                 return -EOPNOTSUPP;
1425
1426         copied = 0;
1427
1428         skb = skb_recv_datagram(sk, flags, noblock, &err);
1429         if (skb == NULL)
1430                 goto out;
1431
1432         data_skb = skb;
1433
1434 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1435         if (unlikely(skb_shinfo(skb)->frag_list)) {
1436                 /*
1437                  * If this skb has a frag_list, then here that means that we
1438                  * will have to use the frag_list skb's data for compat tasks
1439                  * and the regular skb's data for normal (non-compat) tasks.
1440                  *
1441                  * If we need to send the compat skb, assign it to the
1442                  * 'data_skb' variable so that it will be used below for data
1443                  * copying. We keep 'skb' for everything else, including
1444                  * freeing both later.
1445                  */
1446                 if (flags & MSG_CMSG_COMPAT)
1447                         data_skb = skb_shinfo(skb)->frag_list;
1448         }
1449 #endif
1450
1451         copied = data_skb->len;
1452         if (len < copied) {
1453                 msg->msg_flags |= MSG_TRUNC;
1454                 copied = len;
1455         }
1456
1457         skb_reset_transport_header(data_skb);
1458         err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
1459
1460         if (msg->msg_name) {
1461                 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
1462                 addr->nl_family = AF_NETLINK;
1463                 addr->nl_pad    = 0;
1464                 addr->nl_pid    = NETLINK_CB(skb).pid;
1465                 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1466                 msg->msg_namelen = sizeof(*addr);
1467         }
1468
1469         if (nlk->flags & NETLINK_RECV_PKTINFO)
1470                 netlink_cmsg_recv_pktinfo(msg, skb);
1471
1472         if (NULL == siocb->scm) {
1473                 memset(&scm, 0, sizeof(scm));
1474                 siocb->scm = &scm;
1475         }
1476         siocb->scm->creds = *NETLINK_CREDS(skb);
1477         if (flags & MSG_TRUNC)
1478                 copied = data_skb->len;
1479
1480         skb_free_datagram(sk, skb);
1481
1482         if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1483                 ret = netlink_dump(sk);
1484                 if (ret) {
1485                         sk->sk_err = ret;
1486                         sk->sk_error_report(sk);
1487                 }
1488         }
1489
1490         scm_recv(sock, msg, siocb->scm, flags);
1491 out:
1492         netlink_rcv_wake(sk);
1493         return err ? : copied;
1494 }
1495
1496 static void netlink_data_ready(struct sock *sk, int len)
1497 {
1498         BUG();
1499 }
1500
1501 /*
1502  *      We export these functions to other modules. They provide a
1503  *      complete set of kernel non-blocking support for message
1504  *      queueing.
1505  */
1506
1507 struct sock *
1508 netlink_kernel_create(struct net *net, int unit, unsigned int groups,
1509                       void (*input)(struct sk_buff *skb),
1510                       struct mutex *cb_mutex, struct module *module)
1511 {
1512         struct socket *sock;
1513         struct sock *sk;
1514         struct netlink_sock *nlk;
1515         struct listeners *listeners = NULL;
1516
1517         BUG_ON(!nl_table);
1518
1519         if (unit < 0 || unit >= MAX_LINKS)
1520                 return NULL;
1521
1522         if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1523                 return NULL;
1524
1525         /*
1526          * We have to just have a reference on the net from sk, but don't
1527          * get_net it. Besides, we cannot get and then put the net here.
1528          * So we create one inside init_net and the move it to net.
1529          */
1530
1531         if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1532                 goto out_sock_release_nosk;
1533
1534         sk = sock->sk;
1535         sk_change_net(sk, net);
1536
1537         if (groups < 32)
1538                 groups = 32;
1539
1540         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
1541         if (!listeners)
1542                 goto out_sock_release;
1543
1544         sk->sk_data_ready = netlink_data_ready;
1545         if (input)
1546                 nlk_sk(sk)->netlink_rcv = input;
1547
1548         if (netlink_insert(sk, net, 0))
1549                 goto out_sock_release;
1550
1551         nlk = nlk_sk(sk);
1552         nlk->flags |= NETLINK_KERNEL_SOCKET;
1553
1554         netlink_table_grab();
1555         if (!nl_table[unit].registered) {
1556                 nl_table[unit].groups = groups;
1557                 rcu_assign_pointer(nl_table[unit].listeners, listeners);
1558                 nl_table[unit].cb_mutex = cb_mutex;
1559                 nl_table[unit].module = module;
1560                 nl_table[unit].registered = 1;
1561         } else {
1562                 kfree(listeners);
1563                 nl_table[unit].registered++;
1564         }
1565         netlink_table_ungrab();
1566         return sk;
1567
1568 out_sock_release:
1569         kfree(listeners);
1570         netlink_kernel_release(sk);
1571         return NULL;
1572
1573 out_sock_release_nosk:
1574         sock_release(sock);
1575         return NULL;
1576 }
1577 EXPORT_SYMBOL(netlink_kernel_create);
1578
1579
1580 void
1581 netlink_kernel_release(struct sock *sk)
1582 {
1583         sk_release_kernel(sk);
1584 }
1585 EXPORT_SYMBOL(netlink_kernel_release);
1586
1587 int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
1588 {
1589         struct listeners *new, *old;
1590         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1591
1592         if (groups < 32)
1593                 groups = 32;
1594
1595         if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1596                 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1597                 if (!new)
1598                         return -ENOMEM;
1599                 old = nl_deref_protected(tbl->listeners);
1600                 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1601                 rcu_assign_pointer(tbl->listeners, new);
1602
1603                 kfree_rcu(old, rcu);
1604         }
1605         tbl->groups = groups;
1606
1607         return 0;
1608 }
1609
1610 /**
1611  * netlink_change_ngroups - change number of multicast groups
1612  *
1613  * This changes the number of multicast groups that are available
1614  * on a certain netlink family. Note that it is not possible to
1615  * change the number of groups to below 32. Also note that it does
1616  * not implicitly call netlink_clear_multicast_users() when the
1617  * number of groups is reduced.
1618  *
1619  * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1620  * @groups: The new number of groups.
1621  */
1622 int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1623 {
1624         int err;
1625
1626         netlink_table_grab();
1627         err = __netlink_change_ngroups(sk, groups);
1628         netlink_table_ungrab();
1629
1630         return err;
1631 }
1632
1633 void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1634 {
1635         struct sock *sk;
1636         struct hlist_node *node;
1637         struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1638
1639         sk_for_each_bound(sk, node, &tbl->mc_list)
1640                 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1641 }
1642
1643 /**
1644  * netlink_clear_multicast_users - kick off multicast listeners
1645  *
1646  * This function removes all listeners from the given group.
1647  * @ksk: The kernel netlink socket, as returned by
1648  *      netlink_kernel_create().
1649  * @group: The multicast group to clear.
1650  */
1651 void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1652 {
1653         netlink_table_grab();
1654         __netlink_clear_multicast_users(ksk, group);
1655         netlink_table_ungrab();
1656 }
1657
1658 void netlink_set_nonroot(int protocol, unsigned int flags)
1659 {
1660         if ((unsigned int)protocol < MAX_LINKS)
1661                 nl_table[protocol].nl_nonroot = flags;
1662 }
1663 EXPORT_SYMBOL(netlink_set_nonroot);
1664
1665 static void netlink_destroy_callback(struct netlink_callback *cb)
1666 {
1667         kfree_skb(cb->skb);
1668         kfree(cb);
1669 }
1670
1671 /*
1672  * It looks a bit ugly.
1673  * It would be better to create kernel thread.
1674  */
1675
1676 static int netlink_dump(struct sock *sk)
1677 {
1678         struct netlink_sock *nlk = nlk_sk(sk);
1679         struct netlink_callback *cb;
1680         struct sk_buff *skb = NULL;
1681         struct nlmsghdr *nlh;
1682         int len, err = -ENOBUFS;
1683         int alloc_size;
1684
1685         mutex_lock(nlk->cb_mutex);
1686
1687         cb = nlk->cb;
1688         if (cb == NULL) {
1689                 err = -EINVAL;
1690                 goto errout_skb;
1691         }
1692
1693         alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1694
1695         skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1696         if (!skb)
1697                 goto errout_skb;
1698
1699         len = cb->dump(skb, cb);
1700
1701         if (len > 0) {
1702                 mutex_unlock(nlk->cb_mutex);
1703
1704                 if (sk_filter(sk, skb))
1705                         kfree_skb(skb);
1706                 else
1707                         __netlink_sendskb(sk, skb);
1708                 return 0;
1709         }
1710
1711         nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1712         if (!nlh)
1713                 goto errout_skb;
1714
1715         nl_dump_check_consistent(cb, nlh);
1716
1717         memcpy(nlmsg_data(nlh), &len, sizeof(len));
1718
1719         if (sk_filter(sk, skb))
1720                 kfree_skb(skb);
1721         else
1722                 __netlink_sendskb(sk, skb);
1723
1724         if (cb->done)
1725                 cb->done(cb);
1726         nlk->cb = NULL;
1727         mutex_unlock(nlk->cb_mutex);
1728
1729         netlink_destroy_callback(cb);
1730         return 0;
1731
1732 errout_skb:
1733         mutex_unlock(nlk->cb_mutex);
1734         kfree_skb(skb);
1735         return err;
1736 }
1737
1738 int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1739                        const struct nlmsghdr *nlh,
1740                        int (*dump)(struct sk_buff *skb,
1741                                    struct netlink_callback *),
1742                        int (*done)(struct netlink_callback *),
1743                        u16 min_dump_alloc)
1744 {
1745         struct netlink_callback *cb;
1746         struct sock *sk;
1747         struct netlink_sock *nlk;
1748         int ret;
1749
1750         cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1751         if (cb == NULL)
1752                 return -ENOBUFS;
1753
1754         cb->dump = dump;
1755         cb->done = done;
1756         cb->nlh = nlh;
1757         cb->min_dump_alloc = min_dump_alloc;
1758         atomic_inc(&skb->users);
1759         cb->skb = skb;
1760
1761         sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
1762         if (sk == NULL) {
1763                 netlink_destroy_callback(cb);
1764                 return -ECONNREFUSED;
1765         }
1766         nlk = nlk_sk(sk);
1767         /* A dump is in progress... */
1768         mutex_lock(nlk->cb_mutex);
1769         if (nlk->cb) {
1770                 mutex_unlock(nlk->cb_mutex);
1771                 netlink_destroy_callback(cb);
1772                 sock_put(sk);
1773                 return -EBUSY;
1774         }
1775         nlk->cb = cb;
1776         mutex_unlock(nlk->cb_mutex);
1777
1778         ret = netlink_dump(sk);
1779
1780         sock_put(sk);
1781
1782         if (ret)
1783                 return ret;
1784
1785         /* We successfully started a dump, by returning -EINTR we
1786          * signal not to send ACK even if it was requested.
1787          */
1788         return -EINTR;
1789 }
1790 EXPORT_SYMBOL(netlink_dump_start);
1791
1792 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1793 {
1794         struct sk_buff *skb;
1795         struct nlmsghdr *rep;
1796         struct nlmsgerr *errmsg;
1797         size_t payload = sizeof(*errmsg);
1798
1799         /* error messages get the original request appened */
1800         if (err)
1801                 payload += nlmsg_len(nlh);
1802
1803         skb = nlmsg_new(payload, GFP_KERNEL);
1804         if (!skb) {
1805                 struct sock *sk;
1806
1807                 sk = netlink_lookup(sock_net(in_skb->sk),
1808                                     in_skb->sk->sk_protocol,
1809                                     NETLINK_CB(in_skb).pid);
1810                 if (sk) {
1811                         sk->sk_err = ENOBUFS;
1812                         sk->sk_error_report(sk);
1813                         sock_put(sk);
1814                 }
1815                 return;
1816         }
1817
1818         rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1819                           NLMSG_ERROR, payload, 0);
1820         errmsg = nlmsg_data(rep);
1821         errmsg->error = err;
1822         memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
1823         netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1824 }
1825 EXPORT_SYMBOL(netlink_ack);
1826
1827 int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1828                                                      struct nlmsghdr *))
1829 {
1830         struct nlmsghdr *nlh;
1831         int err;
1832
1833         while (skb->len >= nlmsg_total_size(0)) {
1834                 int msglen;
1835
1836                 nlh = nlmsg_hdr(skb);
1837                 err = 0;
1838
1839                 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
1840                         return 0;
1841
1842                 /* Only requests are handled by the kernel */
1843                 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1844                         goto ack;
1845
1846                 /* Skip control messages */
1847                 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
1848                         goto ack;
1849
1850                 err = cb(skb, nlh);
1851                 if (err == -EINTR)
1852                         goto skip;
1853
1854 ack:
1855                 if (nlh->nlmsg_flags & NLM_F_ACK || err)
1856                         netlink_ack(skb, nlh, err);
1857
1858 skip:
1859                 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1860                 if (msglen > skb->len)
1861                         msglen = skb->len;
1862                 skb_pull(skb, msglen);
1863         }
1864
1865         return 0;
1866 }
1867 EXPORT_SYMBOL(netlink_rcv_skb);
1868
1869 /**
1870  * nlmsg_notify - send a notification netlink message
1871  * @sk: netlink socket to use
1872  * @skb: notification message
1873  * @pid: destination netlink pid for reports or 0
1874  * @group: destination multicast group or 0
1875  * @report: 1 to report back, 0 to disable
1876  * @flags: allocation flags
1877  */
1878 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1879                  unsigned int group, int report, gfp_t flags)
1880 {
1881         int err = 0;
1882
1883         if (group) {
1884                 int exclude_pid = 0;
1885
1886                 if (report) {
1887                         atomic_inc(&skb->users);
1888                         exclude_pid = pid;
1889                 }
1890
1891                 /* errors reported via destination sk->sk_err, but propagate
1892                  * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1893                 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1894         }
1895
1896         if (report) {
1897                 int err2;
1898
1899                 err2 = nlmsg_unicast(sk, skb, pid);
1900                 if (!err || err == -ESRCH)
1901                         err = err2;
1902         }
1903
1904         return err;
1905 }
1906 EXPORT_SYMBOL(nlmsg_notify);
1907
1908 #ifdef CONFIG_PROC_FS
1909 struct nl_seq_iter {
1910         struct seq_net_private p;
1911         int link;
1912         int hash_idx;
1913 };
1914
1915 static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1916 {
1917         struct nl_seq_iter *iter = seq->private;
1918         int i, j;
1919         struct sock *s;
1920         struct hlist_node *node;
1921         loff_t off = 0;
1922
1923         for (i = 0; i < MAX_LINKS; i++) {
1924                 struct nl_pid_hash *hash = &nl_table[i].hash;
1925
1926                 for (j = 0; j <= hash->mask; j++) {
1927                         sk_for_each(s, node, &hash->table[j]) {
1928                                 if (sock_net(s) != seq_file_net(seq))
1929                                         continue;
1930                                 if (off == pos) {
1931                                         iter->link = i;
1932                                         iter->hash_idx = j;
1933                                         return s;
1934                                 }
1935                                 ++off;
1936                         }
1937                 }
1938         }
1939         return NULL;
1940 }
1941
1942 static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1943         __acquires(nl_table_lock)
1944 {
1945         read_lock(&nl_table_lock);
1946         return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1947 }
1948
1949 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1950 {
1951         struct sock *s;
1952         struct nl_seq_iter *iter;
1953         int i, j;
1954
1955         ++*pos;
1956
1957         if (v == SEQ_START_TOKEN)
1958                 return netlink_seq_socket_idx(seq, 0);
1959
1960         iter = seq->private;
1961         s = v;
1962         do {
1963                 s = sk_next(s);
1964         } while (s && sock_net(s) != seq_file_net(seq));
1965         if (s)
1966                 return s;
1967
1968         i = iter->link;
1969         j = iter->hash_idx + 1;
1970
1971         do {
1972                 struct nl_pid_hash *hash = &nl_table[i].hash;
1973
1974                 for (; j <= hash->mask; j++) {
1975                         s = sk_head(&hash->table[j]);
1976                         while (s && sock_net(s) != seq_file_net(seq))
1977                                 s = sk_next(s);
1978                         if (s) {
1979                                 iter->link = i;
1980                                 iter->hash_idx = j;
1981                                 return s;
1982                         }
1983                 }
1984
1985                 j = 0;
1986         } while (++i < MAX_LINKS);
1987
1988         return NULL;
1989 }
1990
1991 static void netlink_seq_stop(struct seq_file *seq, void *v)
1992         __releases(nl_table_lock)
1993 {
1994         read_unlock(&nl_table_lock);
1995 }
1996
1997
1998 static int netlink_seq_show(struct seq_file *seq, void *v)
1999 {
2000         if (v == SEQ_START_TOKEN)
2001                 seq_puts(seq,
2002                          "sk       Eth Pid    Groups   "
2003                          "Rmem     Wmem     Dump     Locks     Drops     Inode\n");
2004         else {
2005                 struct sock *s = v;
2006                 struct netlink_sock *nlk = nlk_sk(s);
2007
2008                 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
2009                            s,
2010                            s->sk_protocol,
2011                            nlk->pid,
2012                            nlk->groups ? (u32)nlk->groups[0] : 0,
2013                            sk_rmem_alloc_get(s),
2014                            sk_wmem_alloc_get(s),
2015                            nlk->cb,
2016                            atomic_read(&s->sk_refcnt),
2017                            atomic_read(&s->sk_drops),
2018                            sock_i_ino(s)
2019                         );
2020
2021         }
2022         return 0;
2023 }
2024
2025 static const struct seq_operations netlink_seq_ops = {
2026         .start  = netlink_seq_start,
2027         .next   = netlink_seq_next,
2028         .stop   = netlink_seq_stop,
2029         .show   = netlink_seq_show,
2030 };
2031
2032
2033 static int netlink_seq_open(struct inode *inode, struct file *file)
2034 {
2035         return seq_open_net(inode, file, &netlink_seq_ops,
2036                                 sizeof(struct nl_seq_iter));
2037 }
2038
2039 static const struct file_operations netlink_seq_fops = {
2040         .owner          = THIS_MODULE,
2041         .open           = netlink_seq_open,
2042         .read           = seq_read,
2043         .llseek         = seq_lseek,
2044         .release        = seq_release_net,
2045 };
2046
2047 #endif
2048
2049 int netlink_register_notifier(struct notifier_block *nb)
2050 {
2051         return atomic_notifier_chain_register(&netlink_chain, nb);
2052 }
2053 EXPORT_SYMBOL(netlink_register_notifier);
2054
2055 int netlink_unregister_notifier(struct notifier_block *nb)
2056 {
2057         return atomic_notifier_chain_unregister(&netlink_chain, nb);
2058 }
2059 EXPORT_SYMBOL(netlink_unregister_notifier);
2060
2061 static const struct proto_ops netlink_ops = {
2062         .family =       PF_NETLINK,
2063         .owner =        THIS_MODULE,
2064         .release =      netlink_release,
2065         .bind =         netlink_bind,
2066         .connect =      netlink_connect,
2067         .socketpair =   sock_no_socketpair,
2068         .accept =       sock_no_accept,
2069         .getname =      netlink_getname,
2070         .poll =         datagram_poll,
2071         .ioctl =        sock_no_ioctl,
2072         .listen =       sock_no_listen,
2073         .shutdown =     sock_no_shutdown,
2074         .setsockopt =   netlink_setsockopt,
2075         .getsockopt =   netlink_getsockopt,
2076         .sendmsg =      netlink_sendmsg,
2077         .recvmsg =      netlink_recvmsg,
2078         .mmap =         sock_no_mmap,
2079         .sendpage =     sock_no_sendpage,
2080 };
2081
2082 static const struct net_proto_family netlink_family_ops = {
2083         .family = PF_NETLINK,
2084         .create = netlink_create,
2085         .owner  = THIS_MODULE,  /* for consistency 8) */
2086 };
2087
2088 static int __net_init netlink_net_init(struct net *net)
2089 {
2090 #ifdef CONFIG_PROC_FS
2091         if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2092                 return -ENOMEM;
2093 #endif
2094         return 0;
2095 }
2096
2097 static void __net_exit netlink_net_exit(struct net *net)
2098 {
2099 #ifdef CONFIG_PROC_FS
2100         proc_net_remove(net, "netlink");
2101 #endif
2102 }
2103
2104 static void __init netlink_add_usersock_entry(void)
2105 {
2106         struct listeners *listeners;
2107         int groups = 32;
2108
2109         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
2110         if (!listeners)
2111                 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
2112
2113         netlink_table_grab();
2114
2115         nl_table[NETLINK_USERSOCK].groups = groups;
2116         rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
2117         nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2118         nl_table[NETLINK_USERSOCK].registered = 1;
2119         nl_table[NETLINK_USERSOCK].nl_nonroot = NL_NONROOT_SEND;
2120
2121         netlink_table_ungrab();
2122 }
2123
2124 static struct pernet_operations __net_initdata netlink_net_ops = {
2125         .init = netlink_net_init,
2126         .exit = netlink_net_exit,
2127 };
2128
2129 static int __init netlink_proto_init(void)
2130 {
2131         struct sk_buff *dummy_skb;
2132         int i;
2133         unsigned long limit;
2134         unsigned int order;
2135         int err = proto_register(&netlink_proto, 0);
2136
2137         if (err != 0)
2138                 goto out;
2139
2140         BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
2141
2142         nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
2143         if (!nl_table)
2144                 goto panic;
2145
2146         if (totalram_pages >= (128 * 1024))
2147                 limit = totalram_pages >> (21 - PAGE_SHIFT);
2148         else
2149                 limit = totalram_pages >> (23 - PAGE_SHIFT);
2150
2151         order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2152         limit = (1UL << order) / sizeof(struct hlist_head);
2153         order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
2154
2155         for (i = 0; i < MAX_LINKS; i++) {
2156                 struct nl_pid_hash *hash = &nl_table[i].hash;
2157
2158                 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
2159                 if (!hash->table) {
2160                         while (i-- > 0)
2161                                 nl_pid_hash_free(nl_table[i].hash.table,
2162                                                  1 * sizeof(*hash->table));
2163                         kfree(nl_table);
2164                         goto panic;
2165                 }
2166                 hash->max_shift = order;
2167                 hash->shift = 0;
2168                 hash->mask = 0;
2169                 hash->rehash_time = jiffies;
2170         }
2171
2172         netlink_add_usersock_entry();
2173
2174         sock_register(&netlink_family_ops);
2175         register_pernet_subsys(&netlink_net_ops);
2176         /* The netlink device handler may be needed early. */
2177         rtnetlink_init();
2178 out:
2179         return err;
2180 panic:
2181         panic("netlink_init: Cannot allocate nl_table\n");
2182 }
2183
2184 core_initcall(netlink_proto_init);