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