fedora core 6 1.2949 + vserver 2.2.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         module_put(nlk->module);
479
480         netlink_table_grab();
481         if (nlk->flags & NETLINK_KERNEL_SOCKET) {
482                 kfree(nl_table[sk->sk_protocol].listeners);
483                 nl_table[sk->sk_protocol].module = NULL;
484                 nl_table[sk->sk_protocol].registered = 0;
485         } else if (nlk->subscriptions)
486                 netlink_update_listeners(sk);
487         netlink_table_ungrab();
488
489         kfree(nlk->groups);
490         nlk->groups = NULL;
491
492         sock_put(sk);
493         return 0;
494 }
495
496 static int netlink_autobind(struct socket *sock)
497 {
498         struct sock *sk = sock->sk;
499         struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
500         struct hlist_head *head;
501         struct sock *osk;
502         struct hlist_node *node;
503         s32 pid = current->tgid;
504         int err;
505         static s32 rover = -4097;
506
507 retry:
508         cond_resched();
509         netlink_table_grab();
510         head = nl_pid_hashfn(hash, pid);
511         sk_for_each(osk, node, head) {
512                 if (nlk_sk(osk)->pid == pid) {
513                         /* Bind collision, search negative pid values. */
514                         pid = rover--;
515                         if (rover > -4097)
516                                 rover = -4097;
517                         netlink_table_ungrab();
518                         goto retry;
519                 }
520         }
521         netlink_table_ungrab();
522
523         err = netlink_insert(sk, pid);
524         if (err == -EADDRINUSE)
525                 goto retry;
526
527         /* If 2 threads race to autobind, that is fine.  */
528         if (err == -EBUSY)
529                 err = 0;
530
531         return err;
532 }
533
534 static inline int netlink_capable(struct socket *sock, unsigned int flag) 
535
536         return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
537                capable(CAP_NET_ADMIN);
538
539
540 static void
541 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
542 {
543         struct netlink_sock *nlk = nlk_sk(sk);
544
545         if (nlk->subscriptions && !subscriptions)
546                 __sk_del_bind_node(sk);
547         else if (!nlk->subscriptions && subscriptions)
548                 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
549         nlk->subscriptions = subscriptions;
550 }
551
552 static int netlink_alloc_groups(struct sock *sk)
553 {
554         struct netlink_sock *nlk = nlk_sk(sk);
555         unsigned int groups;
556         int err = 0;
557
558         netlink_lock_table();
559         groups = nl_table[sk->sk_protocol].groups;
560         if (!nl_table[sk->sk_protocol].registered)
561                 err = -ENOENT;
562         netlink_unlock_table();
563
564         if (err)
565                 return err;
566
567         nlk->groups = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
568         if (nlk->groups == NULL)
569                 return -ENOMEM;
570         nlk->ngroups = groups;
571         return 0;
572 }
573
574 static int netlink_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
575 {
576         struct sock *sk = sock->sk;
577         struct netlink_sock *nlk = nlk_sk(sk);
578         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
579         int err;
580         
581         if (nladdr->nl_family != AF_NETLINK)
582                 return -EINVAL;
583
584         /* Only superuser is allowed to listen multicasts */
585         if (nladdr->nl_groups) {
586                 if (!netlink_capable(sock, NL_NONROOT_RECV))
587                         return -EPERM;
588                 if (nlk->groups == NULL) {
589                         err = netlink_alloc_groups(sk);
590                         if (err)
591                                 return err;
592                 }
593         }
594
595         if (nlk->pid) {
596                 if (nladdr->nl_pid != nlk->pid)
597                         return -EINVAL;
598         } else {
599                 err = nladdr->nl_pid ?
600                         netlink_insert(sk, nladdr->nl_pid) :
601                         netlink_autobind(sock);
602                 if (err)
603                         return err;
604         }
605
606         if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
607                 return 0;
608
609         netlink_table_grab();
610         netlink_update_subscriptions(sk, nlk->subscriptions +
611                                          hweight32(nladdr->nl_groups) -
612                                          hweight32(nlk->groups[0]));
613         nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups; 
614         netlink_update_listeners(sk);
615         netlink_table_ungrab();
616
617         return 0;
618 }
619
620 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
621                            int alen, int flags)
622 {
623         int err = 0;
624         struct sock *sk = sock->sk;
625         struct netlink_sock *nlk = nlk_sk(sk);
626         struct sockaddr_nl *nladdr=(struct sockaddr_nl*)addr;
627
628         if (addr->sa_family == AF_UNSPEC) {
629                 sk->sk_state    = NETLINK_UNCONNECTED;
630                 nlk->dst_pid    = 0;
631                 nlk->dst_group  = 0;
632                 return 0;
633         }
634         if (addr->sa_family != AF_NETLINK)
635                 return -EINVAL;
636
637         /* Only superuser is allowed to send multicasts */
638         if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
639                 return -EPERM;
640
641         if (!nlk->pid)
642                 err = netlink_autobind(sock);
643
644         if (err == 0) {
645                 sk->sk_state    = NETLINK_CONNECTED;
646                 nlk->dst_pid    = nladdr->nl_pid;
647                 nlk->dst_group  = ffs(nladdr->nl_groups);
648         }
649
650         return err;
651 }
652
653 static int netlink_getname(struct socket *sock, struct sockaddr *addr, int *addr_len, int peer)
654 {
655         struct sock *sk = sock->sk;
656         struct netlink_sock *nlk = nlk_sk(sk);
657         struct sockaddr_nl *nladdr=(struct sockaddr_nl *)addr;
658         
659         nladdr->nl_family = AF_NETLINK;
660         nladdr->nl_pad = 0;
661         *addr_len = sizeof(*nladdr);
662
663         if (peer) {
664                 nladdr->nl_pid = nlk->dst_pid;
665                 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
666         } else {
667                 nladdr->nl_pid = nlk->pid;
668                 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
669         }
670         return 0;
671 }
672
673 static void netlink_overrun(struct sock *sk)
674 {
675         if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
676                 sk->sk_err = ENOBUFS;
677                 sk->sk_error_report(sk);
678         }
679 }
680
681 static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
682 {
683         int protocol = ssk->sk_protocol;
684         struct sock *sock;
685         struct netlink_sock *nlk;
686
687         sock = netlink_lookup(protocol, pid);
688         if (!sock)
689                 return ERR_PTR(-ECONNREFUSED);
690
691         /* Don't bother queuing skb if kernel socket has no input function */
692         nlk = nlk_sk(sock);
693         if ((nlk->pid == 0 && !nlk->data_ready) ||
694             (sock->sk_state == NETLINK_CONNECTED &&
695              nlk->dst_pid != nlk_sk(ssk)->pid)) {
696                 sock_put(sock);
697                 return ERR_PTR(-ECONNREFUSED);
698         }
699         return sock;
700 }
701
702 struct sock *netlink_getsockbyfilp(struct file *filp)
703 {
704         struct inode *inode = filp->f_path.dentry->d_inode;
705         struct sock *sock;
706
707         if (!S_ISSOCK(inode->i_mode))
708                 return ERR_PTR(-ENOTSOCK);
709
710         sock = SOCKET_I(inode)->sk;
711         if (sock->sk_family != AF_NETLINK)
712                 return ERR_PTR(-EINVAL);
713
714         sock_hold(sock);
715         return sock;
716 }
717
718 /*
719  * Attach a skb to a netlink socket.
720  * The caller must hold a reference to the destination socket. On error, the
721  * reference is dropped. The skb is not send to the destination, just all
722  * all error checks are performed and memory in the queue is reserved.
723  * Return values:
724  * < 0: error. skb freed, reference to sock dropped.
725  * 0: continue
726  * 1: repeat lookup - reference dropped while waiting for socket memory.
727  */
728 int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
729                 long timeo, struct sock *ssk)
730 {
731         struct netlink_sock *nlk;
732
733         nlk = nlk_sk(sk);
734
735         if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
736             test_bit(0, &nlk->state)) {
737                 DECLARE_WAITQUEUE(wait, current);
738                 if (!timeo) {
739                         if (!ssk || nlk_sk(ssk)->pid == 0)
740                                 netlink_overrun(sk);
741                         sock_put(sk);
742                         kfree_skb(skb);
743                         return -EAGAIN;
744                 }
745
746                 __set_current_state(TASK_INTERRUPTIBLE);
747                 add_wait_queue(&nlk->wait, &wait);
748
749                 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
750                      test_bit(0, &nlk->state)) &&
751                     !sock_flag(sk, SOCK_DEAD))
752                         timeo = schedule_timeout(timeo);
753
754                 __set_current_state(TASK_RUNNING);
755                 remove_wait_queue(&nlk->wait, &wait);
756                 sock_put(sk);
757
758                 if (signal_pending(current)) {
759                         kfree_skb(skb);
760                         return sock_intr_errno(timeo);
761                 }
762                 return 1;
763         }
764         skb_set_owner_r(skb, sk);
765         return 0;
766 }
767
768 int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol)
769 {
770         int len = skb->len;
771
772         skb_queue_tail(&sk->sk_receive_queue, skb);
773         sk->sk_data_ready(sk, len);
774         sock_put(sk);
775         return len;
776 }
777
778 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
779 {
780         kfree_skb(skb);
781         sock_put(sk);
782 }
783
784 static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
785                                            gfp_t allocation)
786 {
787         int delta;
788
789         skb_orphan(skb);
790
791         delta = skb->end - skb->tail;
792         if (delta * 2 < skb->truesize)
793                 return skb;
794
795         if (skb_shared(skb)) {
796                 struct sk_buff *nskb = skb_clone(skb, allocation);
797                 if (!nskb)
798                         return skb;
799                 kfree_skb(skb);
800                 skb = nskb;
801         }
802
803         if (!pskb_expand_head(skb, 0, -delta, allocation))
804                 skb->truesize -= delta;
805
806         return skb;
807 }
808
809 int netlink_unicast(struct sock *ssk, struct sk_buff *skb, u32 pid, int nonblock)
810 {
811         struct sock *sk;
812         int err;
813         long timeo;
814
815         skb = netlink_trim(skb, gfp_any());
816
817         timeo = sock_sndtimeo(ssk, nonblock);
818 retry:
819         sk = netlink_getsockbypid(ssk, pid);
820         if (IS_ERR(sk)) {
821                 kfree_skb(skb);
822                 return PTR_ERR(sk);
823         }
824         err = netlink_attachskb(sk, skb, nonblock, timeo, ssk);
825         if (err == 1)
826                 goto retry;
827         if (err)
828                 return err;
829
830         return netlink_sendskb(sk, skb, ssk->sk_protocol);
831 }
832
833 int netlink_has_listeners(struct sock *sk, unsigned int group)
834 {
835         int res = 0;
836
837         BUG_ON(!(nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET));
838         if (group - 1 < nl_table[sk->sk_protocol].groups)
839                 res = test_bit(group - 1, nl_table[sk->sk_protocol].listeners);
840         return res;
841 }
842 EXPORT_SYMBOL_GPL(netlink_has_listeners);
843
844 static __inline__ int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
845 {
846         struct netlink_sock *nlk = nlk_sk(sk);
847
848         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
849             !test_bit(0, &nlk->state)) {
850                 skb_set_owner_r(skb, sk);
851                 skb_queue_tail(&sk->sk_receive_queue, skb);
852                 sk->sk_data_ready(sk, skb->len);
853                 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
854         }
855         return -1;
856 }
857
858 struct netlink_broadcast_data {
859         struct sock *exclude_sk;
860         u32 pid;
861         u32 group;
862         int failure;
863         int congested;
864         int delivered;
865         gfp_t allocation;
866         struct sk_buff *skb, *skb2;
867 };
868
869 static inline int do_one_broadcast(struct sock *sk,
870                                    struct netlink_broadcast_data *p)
871 {
872         struct netlink_sock *nlk = nlk_sk(sk);
873         int val;
874
875         if (p->exclude_sk == sk)
876                 goto out;
877
878         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
879             !test_bit(p->group - 1, nlk->groups))
880                 goto out;
881
882         if (p->failure) {
883                 netlink_overrun(sk);
884                 goto out;
885         }
886
887         sock_hold(sk);
888         if (p->skb2 == NULL) {
889                 if (skb_shared(p->skb)) {
890                         p->skb2 = skb_clone(p->skb, p->allocation);
891                 } else {
892                         p->skb2 = skb_get(p->skb);
893                         /*
894                          * skb ownership may have been set when
895                          * delivered to a previous socket.
896                          */
897                         skb_orphan(p->skb2);
898                 }
899         }
900         if (p->skb2 == NULL) {
901                 netlink_overrun(sk);
902                 /* Clone failed. Notify ALL listeners. */
903                 p->failure = 1;
904         } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
905                 netlink_overrun(sk);
906         } else {
907                 p->congested |= val;
908                 p->delivered = 1;
909                 p->skb2 = NULL;
910         }
911         sock_put(sk);
912
913 out:
914         return 0;
915 }
916
917 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
918                       u32 group, gfp_t allocation)
919 {
920         struct netlink_broadcast_data info;
921         struct hlist_node *node;
922         struct sock *sk;
923
924         skb = netlink_trim(skb, allocation);
925
926         info.exclude_sk = ssk;
927         info.pid = pid;
928         info.group = group;
929         info.failure = 0;
930         info.congested = 0;
931         info.delivered = 0;
932         info.allocation = allocation;
933         info.skb = skb;
934         info.skb2 = NULL;
935
936         /* While we sleep in clone, do not allow to change socket list */
937
938         netlink_lock_table();
939
940         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
941                 do_one_broadcast(sk, &info);
942
943         kfree_skb(skb);
944
945         netlink_unlock_table();
946
947         if (info.skb2)
948                 kfree_skb(info.skb2);
949
950         if (info.delivered) {
951                 if (info.congested && (allocation & __GFP_WAIT))
952                         yield();
953                 return 0;
954         }
955         if (info.failure)
956                 return -ENOBUFS;
957         return -ESRCH;
958 }
959
960 struct netlink_set_err_data {
961         struct sock *exclude_sk;
962         u32 pid;
963         u32 group;
964         int code;
965 };
966
967 static inline int do_one_set_err(struct sock *sk,
968                                  struct netlink_set_err_data *p)
969 {
970         struct netlink_sock *nlk = nlk_sk(sk);
971
972         if (sk == p->exclude_sk)
973                 goto out;
974
975         if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
976             !test_bit(p->group - 1, nlk->groups))
977                 goto out;
978
979         sk->sk_err = p->code;
980         sk->sk_error_report(sk);
981 out:
982         return 0;
983 }
984
985 void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
986 {
987         struct netlink_set_err_data info;
988         struct hlist_node *node;
989         struct sock *sk;
990
991         info.exclude_sk = ssk;
992         info.pid = pid;
993         info.group = group;
994         info.code = code;
995
996         read_lock(&nl_table_lock);
997
998         sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
999                 do_one_set_err(sk, &info);
1000
1001         read_unlock(&nl_table_lock);
1002 }
1003
1004 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1005                               char __user *optval, int optlen)
1006 {
1007         struct sock *sk = sock->sk;
1008         struct netlink_sock *nlk = nlk_sk(sk);
1009         int val = 0, err;
1010
1011         if (level != SOL_NETLINK)
1012                 return -ENOPROTOOPT;
1013
1014         if (optlen >= sizeof(int) &&
1015             get_user(val, (int __user *)optval))
1016                 return -EFAULT;
1017
1018         switch (optname) {
1019         case NETLINK_PKTINFO:
1020                 if (val)
1021                         nlk->flags |= NETLINK_RECV_PKTINFO;
1022                 else
1023                         nlk->flags &= ~NETLINK_RECV_PKTINFO;
1024                 err = 0;
1025                 break;
1026         case NETLINK_ADD_MEMBERSHIP:
1027         case NETLINK_DROP_MEMBERSHIP: {
1028                 unsigned int subscriptions;
1029                 int old, new = optname == NETLINK_ADD_MEMBERSHIP ? 1 : 0;
1030
1031                 if (!netlink_capable(sock, NL_NONROOT_RECV))
1032                         return -EPERM;
1033                 if (nlk->groups == NULL) {
1034                         err = netlink_alloc_groups(sk);
1035                         if (err)
1036                                 return err;
1037                 }
1038                 if (!val || val - 1 >= nlk->ngroups)
1039                         return -EINVAL;
1040                 netlink_table_grab();
1041                 old = test_bit(val - 1, nlk->groups);
1042                 subscriptions = nlk->subscriptions - old + new;
1043                 if (new)
1044                         __set_bit(val - 1, nlk->groups);
1045                 else
1046                         __clear_bit(val - 1, nlk->groups);
1047                 netlink_update_subscriptions(sk, subscriptions);
1048                 netlink_update_listeners(sk);
1049                 netlink_table_ungrab();
1050                 err = 0;
1051                 break;
1052         }
1053         default:
1054                 err = -ENOPROTOOPT;
1055         }
1056         return err;
1057 }
1058
1059 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1060                               char __user *optval, int __user *optlen)
1061 {
1062         struct sock *sk = sock->sk;
1063         struct netlink_sock *nlk = nlk_sk(sk);
1064         int len, val, err;
1065
1066         if (level != SOL_NETLINK)
1067                 return -ENOPROTOOPT;
1068
1069         if (get_user(len, optlen))
1070                 return -EFAULT;
1071         if (len < 0)
1072                 return -EINVAL;
1073
1074         switch (optname) {
1075         case NETLINK_PKTINFO:
1076                 if (len < sizeof(int))
1077                         return -EINVAL;
1078                 len = sizeof(int);
1079                 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
1080                 if (put_user(len, optlen) ||
1081                     put_user(val, optval))
1082                         return -EFAULT;
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_group = dst_group;
1159         NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
1160         selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
1161         memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1162
1163         /* What can I do? Netlink is asynchronous, so that
1164            we will have to save current capabilities to
1165            check them, when this message will be delivered
1166            to corresponding kernel module.   --ANK (980802)
1167          */
1168
1169         err = -EFAULT;
1170         if (memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len)) {
1171                 kfree_skb(skb);
1172                 goto out;
1173         }
1174
1175         err = security_netlink_send(sk, skb);
1176         if (err) {
1177                 kfree_skb(skb);
1178                 goto out;
1179         }
1180
1181         if (dst_group) {
1182                 atomic_inc(&skb->users);
1183                 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1184         }
1185         err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1186
1187 out:
1188         return err;
1189 }
1190
1191 static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1192                            struct msghdr *msg, size_t len,
1193                            int flags)
1194 {
1195         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1196         struct scm_cookie scm;
1197         struct sock *sk = sock->sk;
1198         struct netlink_sock *nlk = nlk_sk(sk);
1199         int noblock = flags&MSG_DONTWAIT;
1200         size_t copied;
1201         struct sk_buff *skb;
1202         int err;
1203
1204         if (flags&MSG_OOB)
1205                 return -EOPNOTSUPP;
1206
1207         copied = 0;
1208
1209         skb = skb_recv_datagram(sk,flags,noblock,&err);
1210         if (skb==NULL)
1211                 goto out;
1212
1213         msg->msg_namelen = 0;
1214
1215         copied = skb->len;
1216         if (len < copied) {
1217                 msg->msg_flags |= MSG_TRUNC;
1218                 copied = len;
1219         }
1220
1221         skb->h.raw = skb->data;
1222         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1223
1224         if (msg->msg_name) {
1225                 struct sockaddr_nl *addr = (struct sockaddr_nl*)msg->msg_name;
1226                 addr->nl_family = AF_NETLINK;
1227                 addr->nl_pad    = 0;
1228                 addr->nl_pid    = NETLINK_CB(skb).pid;
1229                 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1230                 msg->msg_namelen = sizeof(*addr);
1231         }
1232
1233         if (nlk->flags & NETLINK_RECV_PKTINFO)
1234                 netlink_cmsg_recv_pktinfo(msg, skb);
1235
1236         if (NULL == siocb->scm) {
1237                 memset(&scm, 0, sizeof(scm));
1238                 siocb->scm = &scm;
1239         }
1240         siocb->scm->creds = *NETLINK_CREDS(skb);
1241         skb_free_datagram(sk, skb);
1242
1243         if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1244                 netlink_dump(sk);
1245
1246         scm_recv(sock, msg, siocb->scm, flags);
1247
1248 out:
1249         netlink_rcv_wake(sk);
1250         return err ? : copied;
1251 }
1252
1253 static void netlink_data_ready(struct sock *sk, int len)
1254 {
1255         struct netlink_sock *nlk = nlk_sk(sk);
1256
1257         if (nlk->data_ready)
1258                 nlk->data_ready(sk, len);
1259         netlink_rcv_wake(sk);
1260 }
1261
1262 /*
1263  *      We export these functions to other modules. They provide a 
1264  *      complete set of kernel non-blocking support for message
1265  *      queueing.
1266  */
1267
1268 struct sock *
1269 netlink_kernel_create(int unit, unsigned int groups,
1270                       void (*input)(struct sock *sk, int len),
1271                       struct module *module)
1272 {
1273         struct socket *sock;
1274         struct sock *sk;
1275         struct netlink_sock *nlk;
1276         unsigned long *listeners = NULL;
1277
1278         BUG_ON(!nl_table);
1279
1280         if (unit<0 || unit>=MAX_LINKS)
1281                 return NULL;
1282
1283         if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1284                 return NULL;
1285
1286         if (__netlink_create(sock, unit) < 0)
1287                 goto out_sock_release;
1288
1289         if (groups < 32)
1290                 groups = 32;
1291
1292         listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1293         if (!listeners)
1294                 goto out_sock_release;
1295
1296         sk = sock->sk;
1297         sk->sk_data_ready = netlink_data_ready;
1298         if (input)
1299                 nlk_sk(sk)->data_ready = input;
1300
1301         if (netlink_insert(sk, 0))
1302                 goto out_sock_release;
1303
1304         nlk = nlk_sk(sk);
1305         nlk->flags |= NETLINK_KERNEL_SOCKET;
1306
1307         netlink_table_grab();
1308         nl_table[unit].groups = groups;
1309         nl_table[unit].listeners = listeners;
1310         nl_table[unit].module = module;
1311         nl_table[unit].registered = 1;
1312         netlink_table_ungrab();
1313
1314         return sk;
1315
1316 out_sock_release:
1317         kfree(listeners);
1318         sock_release(sock);
1319         return NULL;
1320 }
1321
1322 void netlink_set_nonroot(int protocol, unsigned int flags)
1323
1324         if ((unsigned int)protocol < MAX_LINKS) 
1325                 nl_table[protocol].nl_nonroot = flags;
1326
1327
1328 static void netlink_destroy_callback(struct netlink_callback *cb)
1329 {
1330         if (cb->skb)
1331                 kfree_skb(cb->skb);
1332         kfree(cb);
1333 }
1334
1335 /*
1336  * It looks a bit ugly.
1337  * It would be better to create kernel thread.
1338  */
1339
1340 static int netlink_dump(struct sock *sk)
1341 {
1342         struct netlink_sock *nlk = nlk_sk(sk);
1343         struct netlink_callback *cb;
1344         struct sk_buff *skb;
1345         struct nlmsghdr *nlh;
1346         int len, err = -ENOBUFS;
1347         
1348         skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1349         if (!skb)
1350                 goto errout;
1351
1352         spin_lock(&nlk->cb_lock);
1353
1354         cb = nlk->cb;
1355         if (cb == NULL) {
1356                 err = -EINVAL;
1357                 goto errout_skb;
1358         }
1359
1360         len = cb->dump(skb, cb);
1361
1362         if (len > 0) {
1363                 spin_unlock(&nlk->cb_lock);
1364                 skb_queue_tail(&sk->sk_receive_queue, skb);
1365                 sk->sk_data_ready(sk, len);
1366                 return 0;
1367         }
1368
1369         nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1370         if (!nlh)
1371                 goto errout_skb;
1372
1373         memcpy(nlmsg_data(nlh), &len, sizeof(len));
1374
1375         skb_queue_tail(&sk->sk_receive_queue, skb);
1376         sk->sk_data_ready(sk, skb->len);
1377
1378         if (cb->done)
1379                 cb->done(cb);
1380         nlk->cb = NULL;
1381         spin_unlock(&nlk->cb_lock);
1382
1383         netlink_destroy_callback(cb);
1384         return 0;
1385
1386 errout_skb:
1387         spin_unlock(&nlk->cb_lock);
1388         kfree_skb(skb);
1389 errout:
1390         return err;
1391 }
1392
1393 int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1394                        struct nlmsghdr *nlh,
1395                        int (*dump)(struct sk_buff *skb, struct netlink_callback*),
1396                        int (*done)(struct netlink_callback*))
1397 {
1398         struct netlink_callback *cb;
1399         struct sock *sk;
1400         struct netlink_sock *nlk;
1401
1402         cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1403         if (cb == NULL)
1404                 return -ENOBUFS;
1405
1406         cb->dump = dump;
1407         cb->done = done;
1408         cb->nlh = nlh;
1409         atomic_inc(&skb->users);
1410         cb->skb = skb;
1411
1412         sk = netlink_lookup(ssk->sk_protocol, NETLINK_CB(skb).pid);
1413         if (sk == NULL) {
1414                 netlink_destroy_callback(cb);
1415                 return -ECONNREFUSED;
1416         }
1417         nlk = nlk_sk(sk);
1418         /* A dump is in progress... */
1419         spin_lock(&nlk->cb_lock);
1420         if (nlk->cb) {
1421                 spin_unlock(&nlk->cb_lock);
1422                 netlink_destroy_callback(cb);
1423                 sock_put(sk);
1424                 return -EBUSY;
1425         }
1426         nlk->cb = cb;
1427         spin_unlock(&nlk->cb_lock);
1428
1429         netlink_dump(sk);
1430         sock_put(sk);
1431         return 0;
1432 }
1433
1434 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1435 {
1436         struct sk_buff *skb;
1437         struct nlmsghdr *rep;
1438         struct nlmsgerr *errmsg;
1439         size_t payload = sizeof(*errmsg);
1440
1441         /* error messages get the original request appened */
1442         if (err)
1443                 payload += nlmsg_len(nlh);
1444
1445         skb = nlmsg_new(payload, GFP_KERNEL);
1446         if (!skb) {
1447                 struct sock *sk;
1448
1449                 sk = netlink_lookup(in_skb->sk->sk_protocol,
1450                                     NETLINK_CB(in_skb).pid);
1451                 if (sk) {
1452                         sk->sk_err = ENOBUFS;
1453                         sk->sk_error_report(sk);
1454                         sock_put(sk);
1455                 }
1456                 return;
1457         }
1458
1459         rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1460                           NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
1461         errmsg = nlmsg_data(rep);
1462         errmsg->error = err;
1463         memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
1464         netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1465 }
1466
1467 static int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1468                                                      struct nlmsghdr *, int *))
1469 {
1470         struct nlmsghdr *nlh;
1471         int err;
1472
1473         while (skb->len >= nlmsg_total_size(0)) {
1474                 nlh = (struct nlmsghdr *) skb->data;
1475
1476                 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
1477                         return 0;
1478
1479                 if (cb(skb, nlh, &err) < 0) {
1480                         /* Not an error, but we have to interrupt processing
1481                          * here. Note: that in this case we do not pull
1482                          * message from skb, it will be processed later.
1483                          */
1484                         if (err == 0)
1485                                 return -1;
1486                         netlink_ack(skb, nlh, err);
1487                 } else if (nlh->nlmsg_flags & NLM_F_ACK)
1488                         netlink_ack(skb, nlh, 0);
1489
1490                 netlink_queue_skip(nlh, skb);
1491         }
1492
1493         return 0;
1494 }
1495
1496 /**
1497  * nelink_run_queue - Process netlink receive queue.
1498  * @sk: Netlink socket containing the queue
1499  * @qlen: Place to store queue length upon entry
1500  * @cb: Callback function invoked for each netlink message found
1501  *
1502  * Processes as much as there was in the queue upon entry and invokes
1503  * a callback function for each netlink message found. The callback
1504  * function may refuse a message by returning a negative error code
1505  * but setting the error pointer to 0 in which case this function
1506  * returns with a qlen != 0.
1507  *
1508  * qlen must be initialized to 0 before the initial entry, afterwards
1509  * the function may be called repeatedly until qlen reaches 0.
1510  */
1511 void netlink_run_queue(struct sock *sk, unsigned int *qlen,
1512                        int (*cb)(struct sk_buff *, struct nlmsghdr *, int *))
1513 {
1514         struct sk_buff *skb;
1515
1516         if (!*qlen || *qlen > skb_queue_len(&sk->sk_receive_queue))
1517                 *qlen = skb_queue_len(&sk->sk_receive_queue);
1518
1519         for (; *qlen; (*qlen)--) {
1520                 skb = skb_dequeue(&sk->sk_receive_queue);
1521                 if (netlink_rcv_skb(skb, cb)) {
1522                         if (skb->len)
1523                                 skb_queue_head(&sk->sk_receive_queue, skb);
1524                         else {
1525                                 kfree_skb(skb);
1526                                 (*qlen)--;
1527                         }
1528                         break;
1529                 }
1530
1531                 kfree_skb(skb);
1532         }
1533 }
1534
1535 /**
1536  * netlink_queue_skip - Skip netlink message while processing queue.
1537  * @nlh: Netlink message to be skipped
1538  * @skb: Socket buffer containing the netlink messages.
1539  *
1540  * Pulls the given netlink message off the socket buffer so the next
1541  * call to netlink_queue_run() will not reconsider the message.
1542  */
1543 void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb)
1544 {
1545         int msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1546
1547         if (msglen > skb->len)
1548                 msglen = skb->len;
1549
1550         skb_pull(skb, msglen);
1551 }
1552
1553 /**
1554  * nlmsg_notify - send a notification netlink message
1555  * @sk: netlink socket to use
1556  * @skb: notification message
1557  * @pid: destination netlink pid for reports or 0
1558  * @group: destination multicast group or 0
1559  * @report: 1 to report back, 0 to disable
1560  * @flags: allocation flags
1561  */
1562 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1563                  unsigned int group, int report, gfp_t flags)
1564 {
1565         int err = 0;
1566
1567         if (group) {
1568                 int exclude_pid = 0;
1569
1570                 if (report) {
1571                         atomic_inc(&skb->users);
1572                         exclude_pid = pid;
1573                 }
1574
1575                 /* errors reported via destination sk->sk_err */
1576                 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1577         }
1578
1579         if (report)
1580                 err = nlmsg_unicast(sk, skb, pid);
1581
1582         return err;
1583 }
1584
1585 #ifdef CONFIG_PROC_FS
1586 struct nl_seq_iter {
1587         int link;
1588         int hash_idx;
1589 };
1590
1591 static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1592 {
1593         struct nl_seq_iter *iter = seq->private;
1594         int i, j;
1595         struct sock *s;
1596         struct hlist_node *node;
1597         loff_t off = 0;
1598
1599         for (i=0; i<MAX_LINKS; i++) {
1600                 struct nl_pid_hash *hash = &nl_table[i].hash;
1601
1602                 for (j = 0; j <= hash->mask; j++) {
1603                         sk_for_each(s, node, &hash->table[j]) {
1604                                 if (off == pos) {
1605                                         iter->link = i;
1606                                         iter->hash_idx = j;
1607                                         return s;
1608                                 }
1609                                 ++off;
1610                         }
1611                 }
1612         }
1613         return NULL;
1614 }
1615
1616 static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1617 {
1618         read_lock(&nl_table_lock);
1619         return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1620 }
1621
1622 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1623 {
1624         struct sock *s;
1625         struct nl_seq_iter *iter;
1626         int i, j;
1627
1628         ++*pos;
1629
1630         if (v == SEQ_START_TOKEN)
1631                 return netlink_seq_socket_idx(seq, 0);
1632                 
1633         s = sk_next(v);
1634         if (s)
1635                 return s;
1636
1637         iter = seq->private;
1638         i = iter->link;
1639         j = iter->hash_idx + 1;
1640
1641         do {
1642                 struct nl_pid_hash *hash = &nl_table[i].hash;
1643
1644                 for (; j <= hash->mask; j++) {
1645                         s = sk_head(&hash->table[j]);
1646                         if (s) {
1647                                 iter->link = i;
1648                                 iter->hash_idx = j;
1649                                 return s;
1650                         }
1651                 }
1652
1653                 j = 0;
1654         } while (++i < MAX_LINKS);
1655
1656         return NULL;
1657 }
1658
1659 static void netlink_seq_stop(struct seq_file *seq, void *v)
1660 {
1661         read_unlock(&nl_table_lock);
1662 }
1663
1664
1665 static int netlink_seq_show(struct seq_file *seq, void *v)
1666 {
1667         if (v == SEQ_START_TOKEN)
1668                 seq_puts(seq,
1669                          "sk       Eth Pid    Groups   "
1670                          "Rmem     Wmem     Dump     Locks\n");
1671         else {
1672                 struct sock *s = v;
1673                 struct netlink_sock *nlk = nlk_sk(s);
1674
1675                 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1676                            s,
1677                            s->sk_protocol,
1678                            nlk->pid,
1679                            nlk->groups ? (u32)nlk->groups[0] : 0,
1680                            atomic_read(&s->sk_rmem_alloc),
1681                            atomic_read(&s->sk_wmem_alloc),
1682                            nlk->cb,
1683                            atomic_read(&s->sk_refcnt)
1684                         );
1685
1686         }
1687         return 0;
1688 }
1689
1690 static struct seq_operations netlink_seq_ops = {
1691         .start  = netlink_seq_start,
1692         .next   = netlink_seq_next,
1693         .stop   = netlink_seq_stop,
1694         .show   = netlink_seq_show,
1695 };
1696
1697
1698 static int netlink_seq_open(struct inode *inode, struct file *file)
1699 {
1700         struct seq_file *seq;
1701         struct nl_seq_iter *iter;
1702         int err;
1703
1704         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1705         if (!iter)
1706                 return -ENOMEM;
1707
1708         err = seq_open(file, &netlink_seq_ops);
1709         if (err) {
1710                 kfree(iter);
1711                 return err;
1712         }
1713
1714         seq = file->private_data;
1715         seq->private = iter;
1716         return 0;
1717 }
1718
1719 static struct file_operations netlink_seq_fops = {
1720         .owner          = THIS_MODULE,
1721         .open           = netlink_seq_open,
1722         .read           = seq_read,
1723         .llseek         = seq_lseek,
1724         .release        = seq_release_private,
1725 };
1726
1727 #endif
1728
1729 int netlink_register_notifier(struct notifier_block *nb)
1730 {
1731         return atomic_notifier_chain_register(&netlink_chain, nb);
1732 }
1733
1734 int netlink_unregister_notifier(struct notifier_block *nb)
1735 {
1736         return atomic_notifier_chain_unregister(&netlink_chain, nb);
1737 }
1738                 
1739 static const struct proto_ops netlink_ops = {
1740         .family =       PF_NETLINK,
1741         .owner =        THIS_MODULE,
1742         .release =      netlink_release,
1743         .bind =         netlink_bind,
1744         .connect =      netlink_connect,
1745         .socketpair =   sock_no_socketpair,
1746         .accept =       sock_no_accept,
1747         .getname =      netlink_getname,
1748         .poll =         datagram_poll,
1749         .ioctl =        sock_no_ioctl,
1750         .listen =       sock_no_listen,
1751         .shutdown =     sock_no_shutdown,
1752         .setsockopt =   netlink_setsockopt,
1753         .getsockopt =   netlink_getsockopt,
1754         .sendmsg =      netlink_sendmsg,
1755         .recvmsg =      netlink_recvmsg,
1756         .mmap =         sock_no_mmap,
1757         .sendpage =     sock_no_sendpage,
1758 };
1759
1760 static struct net_proto_family netlink_family_ops = {
1761         .family = PF_NETLINK,
1762         .create = netlink_create,
1763         .owner  = THIS_MODULE,  /* for consistency 8) */
1764 };
1765
1766 static int __init netlink_proto_init(void)
1767 {
1768         struct sk_buff *dummy_skb;
1769         int i;
1770         unsigned long max;
1771         unsigned int order;
1772         int err = proto_register(&netlink_proto, 0);
1773
1774         if (err != 0)
1775                 goto out;
1776
1777         BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
1778
1779         nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
1780         if (!nl_table)
1781                 goto panic;
1782
1783         if (num_physpages >= (128 * 1024))
1784                 max = num_physpages >> (21 - PAGE_SHIFT);
1785         else
1786                 max = num_physpages >> (23 - PAGE_SHIFT);
1787
1788         order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
1789         max = (1UL << order) / sizeof(struct hlist_head);
1790         order = get_bitmask_order(max > UINT_MAX ? UINT_MAX : max) - 1;
1791
1792         for (i = 0; i < MAX_LINKS; i++) {
1793                 struct nl_pid_hash *hash = &nl_table[i].hash;
1794
1795                 hash->table = nl_pid_hash_alloc(1 * sizeof(*hash->table));
1796                 if (!hash->table) {
1797                         while (i-- > 0)
1798                                 nl_pid_hash_free(nl_table[i].hash.table,
1799                                                  1 * sizeof(*hash->table));
1800                         kfree(nl_table);
1801                         goto panic;
1802                 }
1803                 memset(hash->table, 0, 1 * sizeof(*hash->table));
1804                 hash->max_shift = order;
1805                 hash->shift = 0;
1806                 hash->mask = 0;
1807                 hash->rehash_time = jiffies;
1808         }
1809
1810         sock_register(&netlink_family_ops);
1811 #ifdef CONFIG_PROC_FS
1812         proc_net_fops_create("netlink", 0, &netlink_seq_fops);
1813 #endif
1814         /* The netlink device handler may be needed early. */ 
1815         rtnetlink_init();
1816 out:
1817         return err;
1818 panic:
1819         panic("netlink_init: Cannot allocate nl_table\n");
1820 }
1821
1822 core_initcall(netlink_proto_init);
1823
1824 EXPORT_SYMBOL(netlink_ack);
1825 EXPORT_SYMBOL(netlink_run_queue);
1826 EXPORT_SYMBOL(netlink_queue_skip);
1827 EXPORT_SYMBOL(netlink_broadcast);
1828 EXPORT_SYMBOL(netlink_dump_start);
1829 EXPORT_SYMBOL(netlink_kernel_create);
1830 EXPORT_SYMBOL(netlink_register_notifier);
1831 EXPORT_SYMBOL(netlink_set_err);
1832 EXPORT_SYMBOL(netlink_set_nonroot);
1833 EXPORT_SYMBOL(netlink_unicast);
1834 EXPORT_SYMBOL(netlink_unregister_notifier);
1835 EXPORT_SYMBOL(nlmsg_notify);