Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / net / netlink / af_netlink.c
1 /*
2  * NETLINK      Kernel-user communication protocol.
3  *
4  *              Authors:        Alan Cox <alan@redhat.com>
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/smp_lock.h>
49 #include <linux/notifier.h>
50 #include <linux/security.h>
51 #include <linux/jhash.h>
52 #include <linux/jiffies.h>
53 #include <linux/random.h>
54 #include <linux/bitops.h>
55 #include <linux/mm.h>
56 #include <linux/types.h>
57 #include <linux/audit.h>
58 #include <linux/selinux.h>
59 #include <linux/vs_context.h>
60 #include <linux/vs_network.h>
61 #include <linux/vs_limit.h>
62
63 #include <net/sock.h>
64 #include <net/scm.h>
65 #include <net/netlink.h>
66
67 #define NLGRPSZ(x)      (ALIGN(x, sizeof(unsigned long) * 8) / 8)
68
69 struct netlink_sock {
70         /* struct sock has to be the first member of netlink_sock */
71         struct sock             sk;
72         u32                     pid;
73         u32                     dst_pid;
74         u32                     dst_group;
75         u32                     flags;
76         u32                     subscriptions;
77         u32                     ngroups;
78         unsigned long           *groups;
79         unsigned long           state;
80         wait_queue_head_t       wait;
81         struct netlink_callback *cb;
82         spinlock_t              cb_lock;
83         void                    (*data_ready)(struct sock *sk, int bytes);
84         struct module           *module;
85 };
86
87 #define NETLINK_KERNEL_SOCKET   0x1
88 #define NETLINK_RECV_PKTINFO    0x2
89
90 static inline struct netlink_sock *nlk_sk(struct sock *sk)
91 {
92         return (struct netlink_sock *)sk;
93 }
94
95 struct nl_pid_hash {
96         struct hlist_head *table;
97         unsigned long rehash_time;
98
99         unsigned int mask;
100         unsigned int shift;
101
102         unsigned int entries;
103         unsigned int max_shift;
104
105         u32 rnd;
106 };
107
108 struct netlink_table {
109         struct nl_pid_hash hash;
110         struct hlist_head mc_list;
111         unsigned long *listeners;
112         unsigned int nl_nonroot;
113         unsigned int groups;
114         struct module *module;
115         int registered;
116 };
117
118 static struct netlink_table *nl_table;
119
120 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
121
122 static int netlink_dump(struct sock *sk);
123 static void netlink_destroy_callback(struct netlink_callback *cb);
124
125 static DEFINE_RWLOCK(nl_table_lock);
126 static atomic_t nl_table_users = ATOMIC_INIT(0);
127
128 static ATOMIC_NOTIFIER_HEAD(netlink_chain);
129
130 static u32 netlink_group_mask(u32 group)
131 {
132         return group ? 1 << (group - 1) : 0;
133 }
134
135 static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
136 {
137         return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
138 }
139
140 static void netlink_sock_destruct(struct sock *sk)
141 {
142         skb_queue_purge(&sk->sk_receive_queue);
143
144         if (!sock_flag(sk, SOCK_DEAD)) {
145                 printk("Freeing alive netlink socket %p\n", sk);
146                 return;
147         }
148         BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
149         BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
150         BUG_TRAP(!nlk_sk(sk)->cb);
151         BUG_TRAP(!nlk_sk(sk)->groups);
152 }
153
154 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on SMP.
155  * Look, when several writers sleep and reader wakes them up, all but one
156  * immediately hit write lock and grab all the cpus. Exclusive sleep solves
157  * this, _but_ remember, it adds useless work on UP machines.
158  */
159
160 static void netlink_table_grab(void)
161 {
162         write_lock_irq(&nl_table_lock);
163
164         if (atomic_read(&nl_table_users)) {
165                 DECLARE_WAITQUEUE(wait, current);
166
167                 add_wait_queue_exclusive(&nl_table_wait, &wait);
168                 for(;;) {
169                         set_current_state(TASK_UNINTERRUPTIBLE);
170                         if (atomic_read(&nl_table_users) == 0)
171                                 break;
172                         write_unlock_irq(&nl_table_lock);
173                         schedule();
174                         write_lock_irq(&nl_table_lock);
175                 }
176
177                 __set_current_state(TASK_RUNNING);
178                 remove_wait_queue(&nl_table_wait, &wait);
179         }
180 }
181
182 static __inline__ void netlink_table_ungrab(void)
183 {
184         write_unlock_irq(&nl_table_lock);
185         wake_up(&nl_table_wait);
186 }
187
188 static __inline__ void
189 netlink_lock_table(void)
190 {
191         /* read_lock() synchronizes us to netlink_table_grab */
192
193         read_lock(&nl_table_lock);
194         atomic_inc(&nl_table_users);
195         read_unlock(&nl_table_lock);
196 }
197
198 static __inline__ void
199 netlink_unlock_table(void)
200 {
201         if (atomic_dec_and_test(&nl_table_users))
202                 wake_up(&nl_table_wait);
203 }
204
205 static __inline__ struct sock *netlink_lookup(int protocol, u32 pid)
206 {
207         struct nl_pid_hash *hash = &nl_table[protocol].hash;
208         struct hlist_head *head;
209         struct sock *sk;
210         struct hlist_node *node;
211
212         read_lock(&nl_table_lock);
213         head = nl_pid_hashfn(hash, pid);
214         sk_for_each(sk, node, head) {
215                 if (nlk_sk(sk)->pid == pid) {
216                         sock_hold(sk);
217                         goto found;
218                 }
219         }
220         sk = NULL;
221 found:
222         read_unlock(&nl_table_lock);
223         return sk;
224 }
225
226 static inline struct hlist_head *nl_pid_hash_alloc(size_t size)
227 {
228         if (size <= PAGE_SIZE)
229                 return kmalloc(size, GFP_ATOMIC);
230         else
231                 return (struct hlist_head *)
232                         __get_free_pages(GFP_ATOMIC, get_order(size));
233 }
234
235 static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
236 {
237         if (size <= PAGE_SIZE)
238                 kfree(table);
239         else
240                 free_pages((unsigned long)table, get_order(size));
241 }
242
243 static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
244 {
245         unsigned int omask, mask, shift;
246         size_t osize, size;
247         struct hlist_head *otable, *table;
248         int i;
249
250         omask = mask = hash->mask;
251         osize = size = (mask + 1) * sizeof(*table);
252         shift = hash->shift;
253
254         if (grow) {
255                 if (++shift > hash->max_shift)
256                         return 0;
257                 mask = mask * 2 + 1;
258                 size *= 2;
259         }
260
261         table = nl_pid_hash_alloc(size);
262         if (!table)
263                 return 0;
264
265         memset(table, 0, size);
266         otable = hash->table;
267         hash->table = table;
268         hash->mask = mask;
269         hash->shift = shift;
270         get_random_bytes(&hash->rnd, sizeof(hash->rnd));
271
272         for (i = 0; i <= omask; i++) {
273                 struct sock *sk;
274                 struct hlist_node *node, *tmp;
275
276                 sk_for_each_safe(sk, node, tmp, &otable[i])
277                         __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
278         }
279
280         nl_pid_hash_free(otable, osize);
281         hash->rehash_time = jiffies + 10 * 60 * HZ;
282         return 1;
283 }
284
285 static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
286 {
287         int avg = hash->entries >> hash->shift;
288
289         if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
290                 return 1;
291
292         if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
293                 nl_pid_hash_rehash(hash, 0);
294                 return 1;
295         }
296
297         return 0;
298 }
299
300 static const struct proto_ops netlink_ops;
301
302 static void
303 netlink_update_listeners(struct sock *sk)
304 {
305         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
306         struct hlist_node *node;
307         unsigned long mask;
308         unsigned int i;
309
310         for (i = 0; i < NLGRPSZ(tbl->groups)/sizeof(unsigned long); i++) {
311                 mask = 0;
312                 sk_for_each_bound(sk, node, &tbl->mc_list)
313                         mask |= nlk_sk(sk)->groups[i];
314                 tbl->listeners[i] = mask;
315         }
316         /* this function is only called with the netlink table "grabbed", which
317          * makes sure updates are visible before bind or setsockopt return. */
318 }
319
320 static int netlink_insert(struct sock *sk, u32 pid)
321 {
322         struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
323         struct hlist_head *head;
324         int err = -EADDRINUSE;
325         struct sock *osk;
326         struct hlist_node *node;
327         int len;
328
329         netlink_table_grab();
330         head = nl_pid_hashfn(hash, pid);
331         len = 0;
332         sk_for_each(osk, node, head) {
333                 if (nlk_sk(osk)->pid == pid)
334                         break;
335                 len++;
336         }
337         if (node)
338                 goto err;
339
340         err = -EBUSY;
341         if (nlk_sk(sk)->pid)
342                 goto err;
343
344         err = -ENOMEM;
345         if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
346                 goto err;
347
348         if (len && nl_pid_hash_dilute(hash, len))
349                 head = nl_pid_hashfn(hash, pid);
350         hash->entries++;
351         nlk_sk(sk)->pid = pid;
352         sk_add_node(sk, head);
353         err = 0;
354
355 err:
356         netlink_table_ungrab();
357         return err;
358 }
359
360 static void netlink_remove(struct sock *sk)
361 {
362         netlink_table_grab();
363         if (sk_del_node_init(sk))
364                 nl_table[sk->sk_protocol].hash.entries--;
365         if (nlk_sk(sk)->subscriptions)
366                 __sk_del_bind_node(sk);
367         netlink_table_ungrab();
368 }
369
370 static struct proto netlink_proto = {
371         .name     = "NETLINK",
372         .owner    = THIS_MODULE,
373         .obj_size = sizeof(struct netlink_sock),
374 };
375
376 static int __netlink_create(struct socket *sock, int protocol)
377 {
378         struct sock *sk;
379         struct netlink_sock *nlk;
380
381         sock->ops = &netlink_ops;
382
383         sk = sk_alloc(PF_NETLINK, GFP_KERNEL, &netlink_proto, 1);
384         if (!sk)
385                 return -ENOMEM;
386
387         sock_init_data(sock, sk);
388
389         nlk = nlk_sk(sk);
390         spin_lock_init(&nlk->cb_lock);
391         init_waitqueue_head(&nlk->wait);
392
393         sk->sk_destruct = netlink_sock_destruct;
394         sk->sk_protocol = protocol;
395         return 0;
396 }
397
398 static int netlink_create(struct socket *sock, int protocol)
399 {
400         struct module *module = NULL;
401         struct netlink_sock *nlk;
402         unsigned int groups;
403         int err = 0;
404
405         sock->state = SS_UNCONNECTED;
406
407         if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
408                 return -ESOCKTNOSUPPORT;
409
410         if (protocol<0 || protocol >= MAX_LINKS)
411                 return -EPROTONOSUPPORT;
412
413         netlink_lock_table();
414 #ifdef CONFIG_KMOD
415         if (!nl_table[protocol].registered) {
416                 netlink_unlock_table();
417                 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
418                 netlink_lock_table();
419         }
420 #endif
421         if (nl_table[protocol].registered &&
422             try_module_get(nl_table[protocol].module))
423                 module = nl_table[protocol].module;
424         groups = nl_table[protocol].groups;
425         netlink_unlock_table();
426
427         if ((err = __netlink_create(sock, protocol)) < 0)
428                 goto out_module;
429
430         nlk = nlk_sk(sock->sk);
431         nlk->module = module;
432 out:
433         return err;
434
435 out_module:
436         module_put(module);
437         goto out;
438 }
439
440 static int netlink_release(struct socket *sock)
441 {
442         struct sock *sk = sock->sk;
443         struct netlink_sock *nlk;
444
445         if (!sk)
446                 return 0;
447
448         netlink_remove(sk);
449         nlk = nlk_sk(sk);
450
451         spin_lock(&nlk->cb_lock);
452         if (nlk->cb) {
453                 if (nlk->cb->done)
454                         nlk->cb->done(nlk->cb);
455                 netlink_destroy_callback(nlk->cb);
456                 nlk->cb = NULL;
457         }
458         spin_unlock(&nlk->cb_lock);
459
460         /* OK. Socket is unlinked, and, therefore,
461            no new packets will arrive */
462
463         sock_orphan(sk);
464         sock->sk = NULL;
465         wake_up_interruptible_all(&nlk->wait);
466
467         skb_queue_purge(&sk->sk_write_queue);
468
469         if (nlk->pid && !nlk->subscriptions) {
470                 struct netlink_notify n = {
471                                                 .protocol = sk->sk_protocol,
472                                                 .pid = nlk->pid,
473                                           };
474                 atomic_notifier_call_chain(&netlink_chain,
475                                 NETLINK_URELEASE, &n);
476         }       
477
478         if (nlk->module)
479                 module_put(nlk->module);
480
481         netlink_table_grab();
482         if (nlk->flags & NETLINK_KERNEL_SOCKET) {
483                 kfree(nl_table[sk->sk_protocol].listeners);
484                 nl_table[sk->sk_protocol].module = NULL;
485                 nl_table[sk->sk_protocol].registered = 0;
486         } else if (nlk->subscriptions)
487                 netlink_update_listeners(sk);
488         netlink_table_ungrab();
489
490         kfree(nlk->groups);
491         nlk->groups = NULL;
492
493         sock_put(sk);
494         return 0;
495 }
496
497 static int netlink_autobind(struct socket *sock)
498 {
499         struct sock *sk = sock->sk;
500         struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
501         struct hlist_head *head;
502         struct sock *osk;
503         struct hlist_node *node;
504         s32 pid = current->tgid;
505         int err;
506         static s32 rover = -4097;
507
508 retry:
509         cond_resched();
510         netlink_table_grab();
511         head = nl_pid_hashfn(hash, pid);
512         sk_for_each(osk, node, head) {
513                 if (nlk_sk(osk)->pid == pid) {
514                         /* Bind collision, search negative pid values. */
515                         pid = rover--;
516                         if (rover > -4097)
517                                 rover = -4097;
518                         netlink_table_ungrab();
519                         goto retry;
520                 }
521         }
522         netlink_table_ungrab();
523
524         err = netlink_insert(sk, pid);
525         if (err == -EADDRINUSE)
526                 goto retry;
527
528         /* If 2 threads race to autobind, that is fine.  */
529         if (err == -EBUSY)
530                 err = 0;
531
532         return err;
533 }
534
535 static inline int netlink_capable(struct socket *sock, unsigned int flag) 
536
537         return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
538                capable(CAP_NET_ADMIN);
539
540
541 static void
542 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
543 {
544         struct netlink_sock *nlk = nlk_sk(sk);
545
546         if (nlk->subscriptions && !subscriptions)
547                 __sk_del_bind_node(sk);
548         else if (!nlk->subscriptions && subscriptions)
549                 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
550         nlk->subscriptions = subscriptions;
551 }
552
553 static int netlink_alloc_groups(struct sock *sk)
554 {
555         struct netlink_sock *nlk = nlk_sk(sk);
556         unsigned int groups;
557         int err = 0;
558
559         netlink_lock_table();
560         groups = nl_table[sk->sk_protocol].groups;
561         if (!nl_table[sk->sk_protocol].registered)
562                 err = -ENOENT;
563         netlink_unlock_table();
564
565         if (err)
566                 return err;
567
568         nlk->groups = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
569         if (nlk->groups == NULL)
570                 return -ENOMEM;
571         nlk->ngroups = groups;
572         return 0;
573 }
574
575 static int netlink_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
576 {
577         struct sock *sk = sock->sk;
578         struct netlink_sock *nlk = nlk_sk(sk);
579         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
580         int err;
581         
582         if (nladdr->nl_family != AF_NETLINK)
583                 return -EINVAL;
584
585         /* Only superuser is allowed to listen multicasts */
586         if (nladdr->nl_groups) {
587                 if (!netlink_capable(sock, NL_NONROOT_RECV))
588                         return -EPERM;
589                 if (nlk->groups == NULL) {
590                         err = netlink_alloc_groups(sk);
591                         if (err)
592                                 return err;
593                 }
594         }
595
596         if (nlk->pid) {
597                 if (nladdr->nl_pid != nlk->pid)
598                         return -EINVAL;
599         } else {
600                 err = nladdr->nl_pid ?
601                         netlink_insert(sk, nladdr->nl_pid) :
602                         netlink_autobind(sock);
603                 if (err)
604                         return err;
605         }
606
607         if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
608                 return 0;
609
610         netlink_table_grab();
611         netlink_update_subscriptions(sk, nlk->subscriptions +
612                                          hweight32(nladdr->nl_groups) -
613                                          hweight32(nlk->groups[0]));
614         nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups; 
615         netlink_update_listeners(sk);
616         netlink_table_ungrab();
617
618         return 0;
619 }
620
621 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
622                            int alen, int flags)
623 {
624         int err = 0;
625         struct sock *sk = sock->sk;
626         struct netlink_sock *nlk = nlk_sk(sk);
627         struct sockaddr_nl *nladdr=(struct sockaddr_nl*)addr;
628
629         if (addr->sa_family == AF_UNSPEC) {
630                 sk->sk_state    = NETLINK_UNCONNECTED;
631                 nlk->dst_pid    = 0;
632                 nlk->dst_group  = 0;
633                 return 0;
634         }
635         if (addr->sa_family != AF_NETLINK)
636                 return -EINVAL;
637
638         /* Only superuser is allowed to send multicasts */
639         if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
640                 return -EPERM;
641
642         if (!nlk->pid)
643                 err = netlink_autobind(sock);
644
645         if (err == 0) {
646                 sk->sk_state    = NETLINK_CONNECTED;
647                 nlk->dst_pid    = nladdr->nl_pid;
648                 nlk->dst_group  = ffs(nladdr->nl_groups);
649         }
650
651         return err;
652 }
653
654 static int netlink_getname(struct socket *sock, struct sockaddr *addr, int *addr_len, int peer)
655 {
656         struct sock *sk = sock->sk;
657         struct netlink_sock *nlk = nlk_sk(sk);
658         struct sockaddr_nl *nladdr=(struct sockaddr_nl *)addr;
659         
660         nladdr->nl_family = AF_NETLINK;
661         nladdr->nl_pad = 0;
662         *addr_len = sizeof(*nladdr);
663
664         if (peer) {
665                 nladdr->nl_pid = nlk->dst_pid;
666                 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
667         } else {
668                 nladdr->nl_pid = nlk->pid;
669                 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
670         }
671         return 0;
672 }
673
674 static void netlink_overrun(struct sock *sk)
675 {
676         if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
677                 sk->sk_err = ENOBUFS;
678                 sk->sk_error_report(sk);
679         }
680 }
681
682 static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
683 {
684         int protocol = ssk->sk_protocol;
685         struct sock *sock;
686         struct netlink_sock *nlk;
687
688         sock = netlink_lookup(protocol, pid);
689         if (!sock)
690                 return ERR_PTR(-ECONNREFUSED);
691
692         /* Don't bother queuing skb if kernel socket has no input function */
693         nlk = nlk_sk(sock);
694         if ((nlk->pid == 0 && !nlk->data_ready) ||
695             (sock->sk_state == NETLINK_CONNECTED &&
696              nlk->dst_pid != nlk_sk(ssk)->pid)) {
697                 sock_put(sock);
698                 return ERR_PTR(-ECONNREFUSED);
699         }
700         return sock;
701 }
702
703 struct sock *netlink_getsockbyfilp(struct file *filp)
704 {
705         struct inode *inode = filp->f_dentry->d_inode;
706         struct sock *sock;
707
708         if (!S_ISSOCK(inode->i_mode))
709                 return ERR_PTR(-ENOTSOCK);
710
711         sock = SOCKET_I(inode)->sk;
712         if (sock->sk_family != AF_NETLINK)
713                 return ERR_PTR(-EINVAL);
714
715         sock_hold(sock);
716         return sock;
717 }
718
719 /*
720  * Attach a skb to a netlink socket.
721  * The caller must hold a reference to the destination socket. On error, the
722  * reference is dropped. The skb is not send to the destination, just all
723  * all error checks are performed and memory in the queue is reserved.
724  * Return values:
725  * < 0: error. skb freed, reference to sock dropped.
726  * 0: continue
727  * 1: repeat lookup - reference dropped while waiting for socket memory.
728  */
729 int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
730                 long timeo, struct sock *ssk)
731 {
732         struct netlink_sock *nlk;
733
734         nlk = nlk_sk(sk);
735
736         if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
737             test_bit(0, &nlk->state)) {
738                 DECLARE_WAITQUEUE(wait, current);
739                 if (!timeo) {
740                         if (!ssk || nlk_sk(ssk)->pid == 0)
741                                 netlink_overrun(sk);
742                         sock_put(sk);
743                         kfree_skb(skb);
744                         return -EAGAIN;
745                 }
746
747                 __set_current_state(TASK_INTERRUPTIBLE);
748                 add_wait_queue(&nlk->wait, &wait);
749
750                 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
751                      test_bit(0, &nlk->state)) &&
752                     !sock_flag(sk, SOCK_DEAD))
753                         timeo = schedule_timeout(timeo);
754
755                 __set_current_state(TASK_RUNNING);
756                 remove_wait_queue(&nlk->wait, &wait);
757                 sock_put(sk);
758
759                 if (signal_pending(current)) {
760                         kfree_skb(skb);
761                         return sock_intr_errno(timeo);
762                 }
763                 return 1;
764         }
765         skb_set_owner_r(skb, sk);
766         return 0;
767 }
768
769 int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol)
770 {
771         int len = skb->len;
772
773         skb_queue_tail(&sk->sk_receive_queue, skb);
774         sk->sk_data_ready(sk, len);
775         sock_put(sk);
776         return len;
777 }
778
779 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
780 {
781         kfree_skb(skb);
782         sock_put(sk);
783 }
784
785 static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
786                                            gfp_t allocation)
787 {
788         int delta;
789
790         skb_orphan(skb);
791
792         delta = skb->end - skb->tail;
793         if (delta * 2 < skb->truesize)
794                 return skb;
795
796         if (skb_shared(skb)) {
797                 struct sk_buff *nskb = skb_clone(skb, allocation);
798                 if (!nskb)
799                         return skb;
800                 kfree_skb(skb);
801                 skb = nskb;
802         }
803
804         if (!pskb_expand_head(skb, 0, -delta, allocation))
805                 skb->truesize -= delta;
806
807         return skb;
808 }
809
810 int netlink_unicast(struct sock *ssk, struct sk_buff *skb, u32 pid, int nonblock)
811 {
812         struct sock *sk;
813         int err;
814         long timeo;
815
816         skb = netlink_trim(skb, gfp_any());
817
818         timeo = sock_sndtimeo(ssk, nonblock);
819 retry:
820         sk = netlink_getsockbypid(ssk, pid);
821         if (IS_ERR(sk)) {
822                 kfree_skb(skb);
823                 return PTR_ERR(sk);
824         }
825         err = netlink_attachskb(sk, skb, nonblock, timeo, ssk);
826         if (err == 1)
827                 goto retry;
828         if (err)
829                 return err;
830
831         return netlink_sendskb(sk, skb, ssk->sk_protocol);
832 }
833
834 int netlink_has_listeners(struct sock *sk, unsigned int group)
835 {
836         int res = 0;
837
838         BUG_ON(!(nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET));
839         if (group - 1 < nl_table[sk->sk_protocol].groups)
840                 res = test_bit(group - 1, nl_table[sk->sk_protocol].listeners);
841         return res;
842 }
843 EXPORT_SYMBOL_GPL(netlink_has_listeners);
844
845 static __inline__ int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
846 {
847         struct netlink_sock *nlk = nlk_sk(sk);
848
849         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
850             !test_bit(0, &nlk->state)) {
851                 skb_set_owner_r(skb, sk);
852                 skb_queue_tail(&sk->sk_receive_queue, skb);
853                 sk->sk_data_ready(sk, skb->len);
854                 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
855         }
856         return -1;
857 }
858
859 struct netlink_broadcast_data {
860         struct sock *exclude_sk;
861         u32 pid;
862         u32 group;
863         int failure;
864         int congested;
865         int delivered;
866         gfp_t allocation;
867         struct sk_buff *skb, *skb2;
868 };
869
870 static inline int do_one_broadcast(struct sock *sk,
871                                    struct netlink_broadcast_data *p)
872 {
873         struct netlink_sock *nlk = nlk_sk(sk);
874         int val;
875
876         if (p->exclude_sk == sk)
877                 goto out;
878
879         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
880             !test_bit(p->group - 1, nlk->groups))
881                 goto out;
882
883         if (p->failure) {
884                 netlink_overrun(sk);
885                 goto out;
886         }
887
888         sock_hold(sk);
889         if (p->skb2 == NULL) {
890                 if (skb_shared(p->skb)) {
891                         p->skb2 = skb_clone(p->skb, p->allocation);
892                 } else {
893                         p->skb2 = skb_get(p->skb);
894                         /*
895                          * skb ownership may have been set when
896                          * delivered to a previous socket.
897                          */
898                         skb_orphan(p->skb2);
899                 }
900         }
901         if (p->skb2 == NULL) {
902                 netlink_overrun(sk);
903                 /* Clone failed. Notify ALL listeners. */
904                 p->failure = 1;
905         } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
906                 netlink_overrun(sk);
907         } else {
908                 p->congested |= val;
909                 p->delivered = 1;
910                 p->skb2 = NULL;
911         }
912         sock_put(sk);
913
914 out:
915         return 0;
916 }
917
918 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
919                       u32 group, gfp_t allocation)
920 {
921         struct netlink_broadcast_data info;
922         struct hlist_node *node;
923         struct sock *sk;
924
925         skb = netlink_trim(skb, allocation);
926
927         info.exclude_sk = ssk;
928         info.pid = pid;
929         info.group = group;
930         info.failure = 0;
931         info.congested = 0;
932         info.delivered = 0;
933         info.allocation = allocation;
934         info.skb = skb;
935         info.skb2 = NULL;
936
937         /* While we sleep in clone, do not allow to change socket list */
938
939         netlink_lock_table();
940
941         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
942                 do_one_broadcast(sk, &info);
943
944         kfree_skb(skb);
945
946         netlink_unlock_table();
947
948         if (info.skb2)
949                 kfree_skb(info.skb2);
950
951         if (info.delivered) {
952                 if (info.congested && (allocation & __GFP_WAIT))
953                         yield();
954                 return 0;
955         }
956         if (info.failure)
957                 return -ENOBUFS;
958         return -ESRCH;
959 }
960
961 struct netlink_set_err_data {
962         struct sock *exclude_sk;
963         u32 pid;
964         u32 group;
965         int code;
966 };
967
968 static inline int do_one_set_err(struct sock *sk,
969                                  struct netlink_set_err_data *p)
970 {
971         struct netlink_sock *nlk = nlk_sk(sk);
972
973         if (sk == p->exclude_sk)
974                 goto out;
975
976         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
977             !test_bit(p->group - 1, nlk->groups))
978                 goto out;
979
980         sk->sk_err = p->code;
981         sk->sk_error_report(sk);
982 out:
983         return 0;
984 }
985
986 void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
987 {
988         struct netlink_set_err_data info;
989         struct hlist_node *node;
990         struct sock *sk;
991
992         info.exclude_sk = ssk;
993         info.pid = pid;
994         info.group = group;
995         info.code = code;
996
997         read_lock(&nl_table_lock);
998
999         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1000                 do_one_set_err(sk, &info);
1001
1002         read_unlock(&nl_table_lock);
1003 }
1004
1005 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1006                               char __user *optval, int optlen)
1007 {
1008         struct sock *sk = sock->sk;
1009         struct netlink_sock *nlk = nlk_sk(sk);
1010         int val = 0, err;
1011
1012         if (level != SOL_NETLINK)
1013                 return -ENOPROTOOPT;
1014
1015         if (optlen >= sizeof(int) &&
1016             get_user(val, (int __user *)optval))
1017                 return -EFAULT;
1018
1019         switch (optname) {
1020         case NETLINK_PKTINFO:
1021                 if (val)
1022                         nlk->flags |= NETLINK_RECV_PKTINFO;
1023                 else
1024                         nlk->flags &= ~NETLINK_RECV_PKTINFO;
1025                 err = 0;
1026                 break;
1027         case NETLINK_ADD_MEMBERSHIP:
1028         case NETLINK_DROP_MEMBERSHIP: {
1029                 unsigned int subscriptions;
1030                 int old, new = optname == NETLINK_ADD_MEMBERSHIP ? 1 : 0;
1031
1032                 if (!netlink_capable(sock, NL_NONROOT_RECV))
1033                         return -EPERM;
1034                 if (nlk->groups == NULL) {
1035                         err = netlink_alloc_groups(sk);
1036                         if (err)
1037                                 return err;
1038                 }
1039                 if (!val || val - 1 >= nlk->ngroups)
1040                         return -EINVAL;
1041                 netlink_table_grab();
1042                 old = test_bit(val - 1, nlk->groups);
1043                 subscriptions = nlk->subscriptions - old + new;
1044                 if (new)
1045                         __set_bit(val - 1, nlk->groups);
1046                 else
1047                         __clear_bit(val - 1, nlk->groups);
1048                 netlink_update_subscriptions(sk, subscriptions);
1049                 netlink_update_listeners(sk);
1050                 netlink_table_ungrab();
1051                 err = 0;
1052                 break;
1053         }
1054         default:
1055                 err = -ENOPROTOOPT;
1056         }
1057         return err;
1058 }
1059
1060 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1061                               char __user *optval, int __user *optlen)
1062 {
1063         struct sock *sk = sock->sk;
1064         struct netlink_sock *nlk = nlk_sk(sk);
1065         int len, val, err;
1066
1067         if (level != SOL_NETLINK)
1068                 return -ENOPROTOOPT;
1069
1070         if (get_user(len, optlen))
1071                 return -EFAULT;
1072         if (len < 0)
1073                 return -EINVAL;
1074
1075         switch (optname) {
1076         case NETLINK_PKTINFO:
1077                 if (len < sizeof(int))
1078                         return -EINVAL;
1079                 len = sizeof(int);
1080                 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
1081                 put_user(len, optlen);
1082                 put_user(val, optval);
1083                 err = 0;
1084                 break;
1085         default:
1086                 err = -ENOPROTOOPT;
1087         }
1088         return err;
1089 }
1090
1091 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1092 {
1093         struct nl_pktinfo info;
1094
1095         info.group = NETLINK_CB(skb).dst_group;
1096         put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1097 }
1098
1099 static inline void netlink_rcv_wake(struct sock *sk)
1100 {
1101         struct netlink_sock *nlk = nlk_sk(sk);
1102
1103         if (skb_queue_empty(&sk->sk_receive_queue))
1104                 clear_bit(0, &nlk->state);
1105         if (!test_bit(0, &nlk->state))
1106                 wake_up_interruptible(&nlk->wait);
1107 }
1108
1109 static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1110                            struct msghdr *msg, size_t len)
1111 {
1112         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1113         struct sock *sk = sock->sk;
1114         struct netlink_sock *nlk = nlk_sk(sk);
1115         struct sockaddr_nl *addr=msg->msg_name;
1116         u32 dst_pid;
1117         u32 dst_group;
1118         struct sk_buff *skb;
1119         int err;
1120         struct scm_cookie scm;
1121
1122         if (msg->msg_flags&MSG_OOB)
1123                 return -EOPNOTSUPP;
1124
1125         if (NULL == siocb->scm)
1126                 siocb->scm = &scm;
1127         err = scm_send(sock, msg, siocb->scm);
1128         if (err < 0)
1129                 return err;
1130
1131         if (msg->msg_namelen) {
1132                 if (addr->nl_family != AF_NETLINK)
1133                         return -EINVAL;
1134                 dst_pid = addr->nl_pid;
1135                 dst_group = ffs(addr->nl_groups);
1136                 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
1137                         return -EPERM;
1138         } else {
1139                 dst_pid = nlk->dst_pid;
1140                 dst_group = nlk->dst_group;
1141         }
1142
1143         if (!nlk->pid) {
1144                 err = netlink_autobind(sock);
1145                 if (err)
1146                         goto out;
1147         }
1148
1149         err = -EMSGSIZE;
1150         if (len > sk->sk_sndbuf - 32)
1151                 goto out;
1152         err = -ENOBUFS;
1153         skb = alloc_skb(len, GFP_KERNEL);
1154         if (skb==NULL)
1155                 goto out;
1156
1157         NETLINK_CB(skb).pid     = nlk->pid;
1158         NETLINK_CB(skb).dst_pid = dst_pid;
1159         NETLINK_CB(skb).dst_group = dst_group;
1160         NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
1161         selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
1162         memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1163
1164         /* What can I do? Netlink is asynchronous, so that
1165            we will have to save current capabilities to
1166            check them, when this message will be delivered
1167            to corresponding kernel module.   --ANK (980802)
1168          */
1169
1170         err = -EFAULT;
1171         if (memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len)) {
1172                 kfree_skb(skb);
1173                 goto out;
1174         }
1175
1176         err = security_netlink_send(sk, skb);
1177         if (err) {
1178                 kfree_skb(skb);
1179                 goto out;
1180         }
1181
1182         if (dst_group) {
1183                 atomic_inc(&skb->users);
1184                 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1185         }
1186         err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1187
1188 out:
1189         return err;
1190 }
1191
1192 static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1193                            struct msghdr *msg, size_t len,
1194                            int flags)
1195 {
1196         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1197         struct scm_cookie scm;
1198         struct sock *sk = sock->sk;
1199         struct netlink_sock *nlk = nlk_sk(sk);
1200         int noblock = flags&MSG_DONTWAIT;
1201         size_t copied;
1202         struct sk_buff *skb;
1203         int err;
1204
1205         if (flags&MSG_OOB)
1206                 return -EOPNOTSUPP;
1207
1208         copied = 0;
1209
1210         skb = skb_recv_datagram(sk,flags,noblock,&err);
1211         if (skb==NULL)
1212                 goto out;
1213
1214         msg->msg_namelen = 0;
1215
1216         copied = skb->len;
1217         if (len < copied) {
1218                 msg->msg_flags |= MSG_TRUNC;
1219                 copied = len;
1220         }
1221
1222         skb->h.raw = skb->data;
1223         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1224
1225         if (msg->msg_name) {
1226                 struct sockaddr_nl *addr = (struct sockaddr_nl*)msg->msg_name;
1227                 addr->nl_family = AF_NETLINK;
1228                 addr->nl_pad    = 0;
1229                 addr->nl_pid    = NETLINK_CB(skb).pid;
1230                 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1231                 msg->msg_namelen = sizeof(*addr);
1232         }
1233
1234         if (nlk->flags & NETLINK_RECV_PKTINFO)
1235                 netlink_cmsg_recv_pktinfo(msg, skb);
1236
1237         if (NULL == siocb->scm) {
1238                 memset(&scm, 0, sizeof(scm));
1239                 siocb->scm = &scm;
1240         }
1241         siocb->scm->creds = *NETLINK_CREDS(skb);
1242         skb_free_datagram(sk, skb);
1243
1244         if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1245                 netlink_dump(sk);
1246
1247         scm_recv(sock, msg, siocb->scm, flags);
1248
1249 out:
1250         netlink_rcv_wake(sk);
1251         return err ? : copied;
1252 }
1253
1254 static void netlink_data_ready(struct sock *sk, int len)
1255 {
1256         struct netlink_sock *nlk = nlk_sk(sk);
1257
1258         if (nlk->data_ready)
1259                 nlk->data_ready(sk, len);
1260         netlink_rcv_wake(sk);
1261 }
1262
1263 /*
1264  *      We export these functions to other modules. They provide a 
1265  *      complete set of kernel non-blocking support for message
1266  *      queueing.
1267  */
1268
1269 struct sock *
1270 netlink_kernel_create(int unit, unsigned int groups,
1271                       void (*input)(struct sock *sk, int len),
1272                       struct module *module)
1273 {
1274         struct socket *sock;
1275         struct sock *sk;
1276         struct netlink_sock *nlk;
1277         unsigned long *listeners = NULL;
1278
1279         BUG_ON(!nl_table);
1280
1281         if (unit<0 || unit>=MAX_LINKS)
1282                 return NULL;
1283
1284         if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1285                 return NULL;
1286
1287         if (__netlink_create(sock, unit) < 0)
1288                 goto out_sock_release;
1289
1290         if (groups < 32)
1291                 groups = 32;
1292
1293         listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1294         if (!listeners)
1295                 goto out_sock_release;
1296
1297         sk = sock->sk;
1298         sk->sk_data_ready = netlink_data_ready;
1299         if (input)
1300                 nlk_sk(sk)->data_ready = input;
1301
1302         if (netlink_insert(sk, 0))
1303                 goto out_sock_release;
1304
1305         nlk = nlk_sk(sk);
1306         nlk->flags |= NETLINK_KERNEL_SOCKET;
1307
1308         netlink_table_grab();
1309         nl_table[unit].groups = groups;
1310         nl_table[unit].listeners = listeners;
1311         nl_table[unit].module = module;
1312         nl_table[unit].registered = 1;
1313         netlink_table_ungrab();
1314
1315         return sk;
1316
1317 out_sock_release:
1318         kfree(listeners);
1319         sock_release(sock);
1320         return NULL;
1321 }
1322
1323 void netlink_set_nonroot(int protocol, unsigned int flags)
1324
1325         if ((unsigned int)protocol < MAX_LINKS) 
1326                 nl_table[protocol].nl_nonroot = flags;
1327
1328
1329 static void netlink_destroy_callback(struct netlink_callback *cb)
1330 {
1331         if (cb->skb)
1332                 kfree_skb(cb->skb);
1333         kfree(cb);
1334 }
1335
1336 /*
1337  * It looks a bit ugly.
1338  * It would be better to create kernel thread.
1339  */
1340
1341 static int netlink_dump(struct sock *sk)
1342 {
1343         struct netlink_sock *nlk = nlk_sk(sk);
1344         struct netlink_callback *cb;
1345         struct sk_buff *skb;
1346         struct nlmsghdr *nlh;
1347         int len;
1348         
1349         skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1350         if (!skb)
1351                 return -ENOBUFS;
1352
1353         spin_lock(&nlk->cb_lock);
1354
1355         cb = nlk->cb;
1356         if (cb == NULL) {
1357                 spin_unlock(&nlk->cb_lock);
1358                 kfree_skb(skb);
1359                 return -EINVAL;
1360         }
1361
1362         len = cb->dump(skb, cb);
1363
1364         if (len > 0) {
1365                 spin_unlock(&nlk->cb_lock);
1366                 skb_queue_tail(&sk->sk_receive_queue, skb);
1367                 sk->sk_data_ready(sk, len);
1368                 return 0;
1369         }
1370
1371         nlh = NLMSG_NEW_ANSWER(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1372         memcpy(NLMSG_DATA(nlh), &len, sizeof(len));
1373         skb_queue_tail(&sk->sk_receive_queue, skb);
1374         sk->sk_data_ready(sk, skb->len);
1375
1376         if (cb->done)
1377                 cb->done(cb);
1378         nlk->cb = NULL;
1379         spin_unlock(&nlk->cb_lock);
1380
1381         netlink_destroy_callback(cb);
1382         return 0;
1383
1384 nlmsg_failure:
1385         return -ENOBUFS;
1386 }
1387
1388 int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1389                        struct nlmsghdr *nlh,
1390                        int (*dump)(struct sk_buff *skb, struct netlink_callback*),
1391                        int (*done)(struct netlink_callback*))
1392 {
1393         struct netlink_callback *cb;
1394         struct sock *sk;
1395         struct netlink_sock *nlk;
1396
1397         cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1398         if (cb == NULL)
1399                 return -ENOBUFS;
1400
1401         cb->dump = dump;
1402         cb->done = done;
1403         cb->nlh = nlh;
1404         atomic_inc(&skb->users);
1405         cb->skb = skb;
1406
1407         sk = netlink_lookup(ssk->sk_protocol, NETLINK_CB(skb).pid);
1408         if (sk == NULL) {
1409                 netlink_destroy_callback(cb);
1410                 return -ECONNREFUSED;
1411         }
1412         nlk = nlk_sk(sk);
1413         /* A dump is in progress... */
1414         spin_lock(&nlk->cb_lock);
1415         if (nlk->cb) {
1416                 spin_unlock(&nlk->cb_lock);
1417                 netlink_destroy_callback(cb);
1418                 sock_put(sk);
1419                 return -EBUSY;
1420         }
1421         nlk->cb = cb;
1422         spin_unlock(&nlk->cb_lock);
1423
1424         netlink_dump(sk);
1425         sock_put(sk);
1426         return 0;
1427 }
1428
1429 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1430 {
1431         struct sk_buff *skb;
1432         struct nlmsghdr *rep;
1433         struct nlmsgerr *errmsg;
1434         int size;
1435
1436         if (err == 0)
1437                 size = NLMSG_SPACE(sizeof(struct nlmsgerr));
1438         else
1439                 size = NLMSG_SPACE(4 + NLMSG_ALIGN(nlh->nlmsg_len));
1440
1441         skb = alloc_skb(size, GFP_KERNEL);
1442         if (!skb) {
1443                 struct sock *sk;
1444
1445                 sk = netlink_lookup(in_skb->sk->sk_protocol,
1446                                     NETLINK_CB(in_skb).pid);
1447                 if (sk) {
1448                         sk->sk_err = ENOBUFS;
1449                         sk->sk_error_report(sk);
1450                         sock_put(sk);
1451                 }
1452                 return;
1453         }
1454
1455         rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1456                           NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
1457         errmsg = NLMSG_DATA(rep);
1458         errmsg->error = err;
1459         memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(struct nlmsghdr));
1460         netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1461 }
1462
1463 static int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1464                                                      struct nlmsghdr *, int *))
1465 {
1466         unsigned int total_len;
1467         struct nlmsghdr *nlh;
1468         int err;
1469
1470         while (skb->len >= nlmsg_total_size(0)) {
1471                 nlh = (struct nlmsghdr *) skb->data;
1472
1473                 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
1474                         return 0;
1475
1476                 total_len = min(NLMSG_ALIGN(nlh->nlmsg_len), skb->len);
1477
1478                 if (cb(skb, nlh, &err) < 0) {
1479                         /* Not an error, but we have to interrupt processing
1480                          * here. Note: that in this case we do not pull
1481                          * message from skb, it will be processed later.
1482                          */
1483                         if (err == 0)
1484                                 return -1;
1485                         netlink_ack(skb, nlh, err);
1486                 } else if (nlh->nlmsg_flags & NLM_F_ACK)
1487                         netlink_ack(skb, nlh, 0);
1488
1489                 skb_pull(skb, total_len);
1490         }
1491
1492         return 0;
1493 }
1494
1495 /**
1496  * nelink_run_queue - Process netlink receive queue.
1497  * @sk: Netlink socket containing the queue
1498  * @qlen: Place to store queue length upon entry
1499  * @cb: Callback function invoked for each netlink message found
1500  *
1501  * Processes as much as there was in the queue upon entry and invokes
1502  * a callback function for each netlink message found. The callback
1503  * function may refuse a message by returning a negative error code
1504  * but setting the error pointer to 0 in which case this function
1505  * returns with a qlen != 0.
1506  *
1507  * qlen must be initialized to 0 before the initial entry, afterwards
1508  * the function may be called repeatedly until qlen reaches 0.
1509  */
1510 void netlink_run_queue(struct sock *sk, unsigned int *qlen,
1511                        int (*cb)(struct sk_buff *, struct nlmsghdr *, int *))
1512 {
1513         struct sk_buff *skb;
1514
1515         if (!*qlen || *qlen > skb_queue_len(&sk->sk_receive_queue))
1516                 *qlen = skb_queue_len(&sk->sk_receive_queue);
1517
1518         for (; *qlen; (*qlen)--) {
1519                 skb = skb_dequeue(&sk->sk_receive_queue);
1520                 if (netlink_rcv_skb(skb, cb)) {
1521                         if (skb->len)
1522                                 skb_queue_head(&sk->sk_receive_queue, skb);
1523                         else {
1524                                 kfree_skb(skb);
1525                                 (*qlen)--;
1526                         }
1527                         break;
1528                 }
1529
1530                 kfree_skb(skb);
1531         }
1532 }
1533
1534 /**
1535  * netlink_queue_skip - Skip netlink message while processing queue.
1536  * @nlh: Netlink message to be skipped
1537  * @skb: Socket buffer containing the netlink messages.
1538  *
1539  * Pulls the given netlink message off the socket buffer so the next
1540  * call to netlink_queue_run() will not reconsider the message.
1541  */
1542 void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb)
1543 {
1544         int msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1545
1546         if (msglen > skb->len)
1547                 msglen = skb->len;
1548
1549         skb_pull(skb, msglen);
1550 }
1551
1552 #ifdef CONFIG_PROC_FS
1553 struct nl_seq_iter {
1554         int link;
1555         int hash_idx;
1556 };
1557
1558 static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1559 {
1560         struct nl_seq_iter *iter = seq->private;
1561         int i, j;
1562         struct sock *s;
1563         struct hlist_node *node;
1564         loff_t off = 0;
1565
1566         for (i=0; i<MAX_LINKS; i++) {
1567                 struct nl_pid_hash *hash = &nl_table[i].hash;
1568
1569                 for (j = 0; j <= hash->mask; j++) {
1570                         sk_for_each(s, node, &hash->table[j]) {
1571                                 if (off == pos) {
1572                                         iter->link = i;
1573                                         iter->hash_idx = j;
1574                                         return s;
1575                                 }
1576                                 ++off;
1577                         }
1578                 }
1579         }
1580         return NULL;
1581 }
1582
1583 static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1584 {
1585         read_lock(&nl_table_lock);
1586         return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1587 }
1588
1589 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1590 {
1591         struct sock *s;
1592         struct nl_seq_iter *iter;
1593         int i, j;
1594
1595         ++*pos;
1596
1597         if (v == SEQ_START_TOKEN)
1598                 return netlink_seq_socket_idx(seq, 0);
1599                 
1600         s = sk_next(v);
1601         if (s)
1602                 return s;
1603
1604         iter = seq->private;
1605         i = iter->link;
1606         j = iter->hash_idx + 1;
1607
1608         do {
1609                 struct nl_pid_hash *hash = &nl_table[i].hash;
1610
1611                 for (; j <= hash->mask; j++) {
1612                         s = sk_head(&hash->table[j]);
1613                         if (s) {
1614                                 iter->link = i;
1615                                 iter->hash_idx = j;
1616                                 return s;
1617                         }
1618                 }
1619
1620                 j = 0;
1621         } while (++i < MAX_LINKS);
1622
1623         return NULL;
1624 }
1625
1626 static void netlink_seq_stop(struct seq_file *seq, void *v)
1627 {
1628         read_unlock(&nl_table_lock);
1629 }
1630
1631
1632 static int netlink_seq_show(struct seq_file *seq, void *v)
1633 {
1634         if (v == SEQ_START_TOKEN)
1635                 seq_puts(seq,
1636                          "sk       Eth Pid    Groups   "
1637                          "Rmem     Wmem     Dump     Locks\n");
1638         else {
1639                 struct sock *s = v;
1640                 struct netlink_sock *nlk = nlk_sk(s);
1641
1642                 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1643                            s,
1644                            s->sk_protocol,
1645                            nlk->pid,
1646                            nlk->groups ? (u32)nlk->groups[0] : 0,
1647                            atomic_read(&s->sk_rmem_alloc),
1648                            atomic_read(&s->sk_wmem_alloc),
1649                            nlk->cb,
1650                            atomic_read(&s->sk_refcnt)
1651                         );
1652
1653         }
1654         return 0;
1655 }
1656
1657 static struct seq_operations netlink_seq_ops = {
1658         .start  = netlink_seq_start,
1659         .next   = netlink_seq_next,
1660         .stop   = netlink_seq_stop,
1661         .show   = netlink_seq_show,
1662 };
1663
1664
1665 static int netlink_seq_open(struct inode *inode, struct file *file)
1666 {
1667         struct seq_file *seq;
1668         struct nl_seq_iter *iter;
1669         int err;
1670
1671         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1672         if (!iter)
1673                 return -ENOMEM;
1674
1675         err = seq_open(file, &netlink_seq_ops);
1676         if (err) {
1677                 kfree(iter);
1678                 return err;
1679         }
1680
1681         seq = file->private_data;
1682         seq->private = iter;
1683         return 0;
1684 }
1685
1686 static struct file_operations netlink_seq_fops = {
1687         .owner          = THIS_MODULE,
1688         .open           = netlink_seq_open,
1689         .read           = seq_read,
1690         .llseek         = seq_lseek,
1691         .release        = seq_release_private,
1692 };
1693
1694 #endif
1695
1696 int netlink_register_notifier(struct notifier_block *nb)
1697 {
1698         return atomic_notifier_chain_register(&netlink_chain, nb);
1699 }
1700
1701 int netlink_unregister_notifier(struct notifier_block *nb)
1702 {
1703         return atomic_notifier_chain_unregister(&netlink_chain, nb);
1704 }
1705                 
1706 static const struct proto_ops netlink_ops = {
1707         .family =       PF_NETLINK,
1708         .owner =        THIS_MODULE,
1709         .release =      netlink_release,
1710         .bind =         netlink_bind,
1711         .connect =      netlink_connect,
1712         .socketpair =   sock_no_socketpair,
1713         .accept =       sock_no_accept,
1714         .getname =      netlink_getname,
1715         .poll =         datagram_poll,
1716         .ioctl =        sock_no_ioctl,
1717         .listen =       sock_no_listen,
1718         .shutdown =     sock_no_shutdown,
1719         .setsockopt =   netlink_setsockopt,
1720         .getsockopt =   netlink_getsockopt,
1721         .sendmsg =      netlink_sendmsg,
1722         .recvmsg =      netlink_recvmsg,
1723         .mmap =         sock_no_mmap,
1724         .sendpage =     sock_no_sendpage,
1725 };
1726
1727 static struct net_proto_family netlink_family_ops = {
1728         .family = PF_NETLINK,
1729         .create = netlink_create,
1730         .owner  = THIS_MODULE,  /* for consistency 8) */
1731 };
1732
1733 extern void netlink_skb_parms_too_large(void);
1734
1735 static int __init netlink_proto_init(void)
1736 {
1737         struct sk_buff *dummy_skb;
1738         int i;
1739         unsigned long max;
1740         unsigned int order;
1741         int err = proto_register(&netlink_proto, 0);
1742
1743         if (err != 0)
1744                 goto out;
1745
1746         if (sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb))
1747                 netlink_skb_parms_too_large();
1748
1749         nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
1750         if (!nl_table)
1751                 goto panic;
1752
1753         if (num_physpages >= (128 * 1024))
1754                 max = num_physpages >> (21 - PAGE_SHIFT);
1755         else
1756                 max = num_physpages >> (23 - PAGE_SHIFT);
1757
1758         order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
1759         max = (1UL << order) / sizeof(struct hlist_head);
1760         order = get_bitmask_order(max > UINT_MAX ? UINT_MAX : max) - 1;
1761
1762         for (i = 0; i < MAX_LINKS; i++) {
1763                 struct nl_pid_hash *hash = &nl_table[i].hash;
1764
1765                 hash->table = nl_pid_hash_alloc(1 * sizeof(*hash->table));
1766                 if (!hash->table) {
1767                         while (i-- > 0)
1768                                 nl_pid_hash_free(nl_table[i].hash.table,
1769                                                  1 * sizeof(*hash->table));
1770                         kfree(nl_table);
1771                         goto panic;
1772                 }
1773                 memset(hash->table, 0, 1 * sizeof(*hash->table));
1774                 hash->max_shift = order;
1775                 hash->shift = 0;
1776                 hash->mask = 0;
1777                 hash->rehash_time = jiffies;
1778         }
1779
1780         sock_register(&netlink_family_ops);
1781 #ifdef CONFIG_PROC_FS
1782         proc_net_fops_create("netlink", 0, &netlink_seq_fops);
1783 #endif
1784         /* The netlink device handler may be needed early. */ 
1785         rtnetlink_init();
1786 out:
1787         return err;
1788 panic:
1789         panic("netlink_init: Cannot allocate nl_table\n");
1790 }
1791
1792 core_initcall(netlink_proto_init);
1793
1794 EXPORT_SYMBOL(netlink_ack);
1795 EXPORT_SYMBOL(netlink_run_queue);
1796 EXPORT_SYMBOL(netlink_queue_skip);
1797 EXPORT_SYMBOL(netlink_broadcast);
1798 EXPORT_SYMBOL(netlink_dump_start);
1799 EXPORT_SYMBOL(netlink_kernel_create);
1800 EXPORT_SYMBOL(netlink_register_notifier);
1801 EXPORT_SYMBOL(netlink_set_err);
1802 EXPORT_SYMBOL(netlink_set_nonroot);
1803 EXPORT_SYMBOL(netlink_unicast);
1804 EXPORT_SYMBOL(netlink_unregister_notifier);
1805