pandora: defconfig: update
[pandora-kernel.git] / net / unix / af_unix.c
1 /*
2  * NET4:        Implementation of BSD Unix domain sockets.
3  *
4  * Authors:     Alan Cox, <alan@lxorguk.ukuu.org.uk>
5  *
6  *              This program is free software; you can redistribute it and/or
7  *              modify it under the terms of the GNU General Public License
8  *              as published by the Free Software Foundation; either version
9  *              2 of the License, or (at your option) any later version.
10  *
11  * Fixes:
12  *              Linus Torvalds  :       Assorted bug cures.
13  *              Niibe Yutaka    :       async I/O support.
14  *              Carsten Paeth   :       PF_UNIX check, address fixes.
15  *              Alan Cox        :       Limit size of allocated blocks.
16  *              Alan Cox        :       Fixed the stupid socketpair bug.
17  *              Alan Cox        :       BSD compatibility fine tuning.
18  *              Alan Cox        :       Fixed a bug in connect when interrupted.
19  *              Alan Cox        :       Sorted out a proper draft version of
20  *                                      file descriptor passing hacked up from
21  *                                      Mike Shaver's work.
22  *              Marty Leisner   :       Fixes to fd passing
23  *              Nick Nevin      :       recvmsg bugfix.
24  *              Alan Cox        :       Started proper garbage collector
25  *              Heiko EiBfeldt  :       Missing verify_area check
26  *              Alan Cox        :       Started POSIXisms
27  *              Andreas Schwab  :       Replace inode by dentry for proper
28  *                                      reference counting
29  *              Kirk Petersen   :       Made this a module
30  *          Christoph Rohland   :       Elegant non-blocking accept/connect algorithm.
31  *                                      Lots of bug fixes.
32  *           Alexey Kuznetosv   :       Repaired (I hope) bugs introduces
33  *                                      by above two patches.
34  *           Andrea Arcangeli   :       If possible we block in connect(2)
35  *                                      if the max backlog of the listen socket
36  *                                      is been reached. This won't break
37  *                                      old apps and it will avoid huge amount
38  *                                      of socks hashed (this for unix_gc()
39  *                                      performances reasons).
40  *                                      Security fix that limits the max
41  *                                      number of socks to 2*max_files and
42  *                                      the number of skb queueable in the
43  *                                      dgram receiver.
44  *              Artur Skawina   :       Hash function optimizations
45  *           Alexey Kuznetsov   :       Full scale SMP. Lot of bugs are introduced 8)
46  *            Malcolm Beattie   :       Set peercred for socketpair
47  *           Michal Ostrowski   :       Module initialization cleanup.
48  *           Arnaldo C. Melo    :       Remove MOD_{INC,DEC}_USE_COUNT,
49  *                                      the core infrastructure is doing that
50  *                                      for all net proto families now (2.5.69+)
51  *
52  *
53  * Known differences from reference BSD that was tested:
54  *
55  *      [TO FIX]
56  *      ECONNREFUSED is not returned from one end of a connected() socket to the
57  *              other the moment one end closes.
58  *      fstat() doesn't return st_dev=0, and give the blksize as high water mark
59  *              and a fake inode identifier (nor the BSD first socket fstat twice bug).
60  *      [NOT TO FIX]
61  *      accept() returns a path name even if the connecting socket has closed
62  *              in the meantime (BSD loses the path and gives up).
63  *      accept() returns 0 length path for an unbound connector. BSD returns 16
64  *              and a null first byte in the path (but not for gethost/peername - BSD bug ??)
65  *      socketpair(...SOCK_RAW..) doesn't panic the kernel.
66  *      BSD af_unix apparently has connect forgetting to block properly.
67  *              (need to check this with the POSIX spec in detail)
68  *
69  * Differences from 2.0.0-11-... (ANK)
70  *      Bug fixes and improvements.
71  *              - client shutdown killed server socket.
72  *              - removed all useless cli/sti pairs.
73  *
74  *      Semantic changes/extensions.
75  *              - generic control message passing.
76  *              - SCM_CREDENTIALS control message.
77  *              - "Abstract" (not FS based) socket bindings.
78  *                Abstract names are sequences of bytes (not zero terminated)
79  *                started by 0, so that this name space does not intersect
80  *                with BSD names.
81  */
82
83 #include <linux/module.h>
84 #include <linux/kernel.h>
85 #include <linux/signal.h>
86 #include <linux/sched.h>
87 #include <linux/errno.h>
88 #include <linux/string.h>
89 #include <linux/stat.h>
90 #include <linux/dcache.h>
91 #include <linux/namei.h>
92 #include <linux/socket.h>
93 #include <linux/un.h>
94 #include <linux/fcntl.h>
95 #include <linux/termios.h>
96 #include <linux/sockios.h>
97 #include <linux/net.h>
98 #include <linux/in.h>
99 #include <linux/fs.h>
100 #include <linux/slab.h>
101 #include <asm/uaccess.h>
102 #include <linux/skbuff.h>
103 #include <linux/netdevice.h>
104 #include <net/net_namespace.h>
105 #include <net/sock.h>
106 #include <net/tcp_states.h>
107 #include <net/af_unix.h>
108 #include <linux/proc_fs.h>
109 #include <linux/seq_file.h>
110 #include <net/scm.h>
111 #include <linux/init.h>
112 #include <linux/poll.h>
113 #include <linux/rtnetlink.h>
114 #include <linux/mount.h>
115 #include <net/checksum.h>
116 #include <linux/security.h>
117
118 static struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1];
119 static DEFINE_SPINLOCK(unix_table_lock);
120 static atomic_long_t unix_nr_socks;
121
122 #define unix_sockets_unbound    (&unix_socket_table[UNIX_HASH_SIZE])
123
124 #define UNIX_ABSTRACT(sk)       (unix_sk(sk)->addr->hash != UNIX_HASH_SIZE)
125
126 #ifdef CONFIG_SECURITY_NETWORK
127 static void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb)
128 {
129         memcpy(UNIXSID(skb), &scm->secid, sizeof(u32));
130 }
131
132 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb)
133 {
134         scm->secid = *UNIXSID(skb);
135 }
136 #else
137 static inline void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb)
138 { }
139
140 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb)
141 { }
142 #endif /* CONFIG_SECURITY_NETWORK */
143
144 /*
145  *  SMP locking strategy:
146  *    hash table is protected with spinlock unix_table_lock
147  *    each socket state is protected by separate spin lock.
148  */
149
150 static inline unsigned unix_hash_fold(__wsum n)
151 {
152         unsigned int hash = (__force unsigned int)csum_fold(n);
153
154         hash ^= hash>>8;
155         return hash&(UNIX_HASH_SIZE-1);
156 }
157
158 #define unix_peer(sk) (unix_sk(sk)->peer)
159
160 static inline int unix_our_peer(struct sock *sk, struct sock *osk)
161 {
162         return unix_peer(osk) == sk;
163 }
164
165 static inline int unix_may_send(struct sock *sk, struct sock *osk)
166 {
167         return unix_peer(osk) == NULL || unix_our_peer(sk, osk);
168 }
169
170 static inline int unix_recvq_full(struct sock const *sk)
171 {
172         return skb_queue_len(&sk->sk_receive_queue) > sk->sk_max_ack_backlog;
173 }
174
175 static struct sock *unix_peer_get(struct sock *s)
176 {
177         struct sock *peer;
178
179         unix_state_lock(s);
180         peer = unix_peer(s);
181         if (peer)
182                 sock_hold(peer);
183         unix_state_unlock(s);
184         return peer;
185 }
186
187 static inline void unix_release_addr(struct unix_address *addr)
188 {
189         if (atomic_dec_and_test(&addr->refcnt))
190                 kfree(addr);
191 }
192
193 /*
194  *      Check unix socket name:
195  *              - should be not zero length.
196  *              - if started by not zero, should be NULL terminated (FS object)
197  *              - if started by zero, it is abstract name.
198  */
199
200 static int unix_mkname(struct sockaddr_un *sunaddr, int len, unsigned *hashp)
201 {
202         if (len <= sizeof(short) || len > sizeof(*sunaddr))
203                 return -EINVAL;
204         if (!sunaddr || sunaddr->sun_family != AF_UNIX)
205                 return -EINVAL;
206         if (sunaddr->sun_path[0]) {
207                 /*
208                  * This may look like an off by one error but it is a bit more
209                  * subtle. 108 is the longest valid AF_UNIX path for a binding.
210                  * sun_path[108] doesn't as such exist.  However in kernel space
211                  * we are guaranteed that it is a valid memory location in our
212                  * kernel address buffer.
213                  */
214                 ((char *)sunaddr)[len] = 0;
215                 len = strlen(sunaddr->sun_path)+1+sizeof(short);
216                 return len;
217         }
218
219         *hashp = unix_hash_fold(csum_partial(sunaddr, len, 0));
220         return len;
221 }
222
223 static void __unix_remove_socket(struct sock *sk)
224 {
225         sk_del_node_init(sk);
226 }
227
228 static void __unix_insert_socket(struct hlist_head *list, struct sock *sk)
229 {
230         WARN_ON(!sk_unhashed(sk));
231         sk_add_node(sk, list);
232 }
233
234 static inline void unix_remove_socket(struct sock *sk)
235 {
236         spin_lock(&unix_table_lock);
237         __unix_remove_socket(sk);
238         spin_unlock(&unix_table_lock);
239 }
240
241 static inline void unix_insert_socket(struct hlist_head *list, struct sock *sk)
242 {
243         spin_lock(&unix_table_lock);
244         __unix_insert_socket(list, sk);
245         spin_unlock(&unix_table_lock);
246 }
247
248 static struct sock *__unix_find_socket_byname(struct net *net,
249                                               struct sockaddr_un *sunname,
250                                               int len, int type, unsigned hash)
251 {
252         struct sock *s;
253         struct hlist_node *node;
254
255         sk_for_each(s, node, &unix_socket_table[hash ^ type]) {
256                 struct unix_sock *u = unix_sk(s);
257
258                 if (!net_eq(sock_net(s), net))
259                         continue;
260
261                 if (u->addr->len == len &&
262                     !memcmp(u->addr->name, sunname, len))
263                         goto found;
264         }
265         s = NULL;
266 found:
267         return s;
268 }
269
270 static inline struct sock *unix_find_socket_byname(struct net *net,
271                                                    struct sockaddr_un *sunname,
272                                                    int len, int type,
273                                                    unsigned hash)
274 {
275         struct sock *s;
276
277         spin_lock(&unix_table_lock);
278         s = __unix_find_socket_byname(net, sunname, len, type, hash);
279         if (s)
280                 sock_hold(s);
281         spin_unlock(&unix_table_lock);
282         return s;
283 }
284
285 static struct sock *unix_find_socket_byinode(struct inode *i)
286 {
287         struct sock *s;
288         struct hlist_node *node;
289
290         spin_lock(&unix_table_lock);
291         sk_for_each(s, node,
292                     &unix_socket_table[i->i_ino & (UNIX_HASH_SIZE - 1)]) {
293                 struct dentry *dentry = unix_sk(s)->dentry;
294
295                 if (dentry && dentry->d_inode == i) {
296                         sock_hold(s);
297                         goto found;
298                 }
299         }
300         s = NULL;
301 found:
302         spin_unlock(&unix_table_lock);
303         return s;
304 }
305
306 /* Support code for asymmetrically connected dgram sockets
307  *
308  * If a datagram socket is connected to a socket not itself connected
309  * to the first socket (eg, /dev/log), clients may only enqueue more
310  * messages if the present receive queue of the server socket is not
311  * "too large". This means there's a second writeability condition
312  * poll and sendmsg need to test. The dgram recv code will do a wake
313  * up on the peer_wait wait queue of a socket upon reception of a
314  * datagram which needs to be propagated to sleeping would-be writers
315  * since these might not have sent anything so far. This can't be
316  * accomplished via poll_wait because the lifetime of the server
317  * socket might be less than that of its clients if these break their
318  * association with it or if the server socket is closed while clients
319  * are still connected to it and there's no way to inform "a polling
320  * implementation" that it should let go of a certain wait queue
321  *
322  * In order to propagate a wake up, a wait_queue_t of the client
323  * socket is enqueued on the peer_wait queue of the server socket
324  * whose wake function does a wake_up on the ordinary client socket
325  * wait queue. This connection is established whenever a write (or
326  * poll for write) hit the flow control condition and broken when the
327  * association to the server socket is dissolved or after a wake up
328  * was relayed.
329  */
330
331 static int unix_dgram_peer_wake_relay(wait_queue_t *q, unsigned mode, int flags,
332                                       void *key)
333 {
334         struct unix_sock *u;
335         wait_queue_head_t *u_sleep;
336
337         u = container_of(q, struct unix_sock, peer_wake);
338
339         __remove_wait_queue(&unix_sk(u->peer_wake.private)->peer_wait,
340                             q);
341         u->peer_wake.private = NULL;
342
343         /* relaying can only happen while the wq still exists */
344         u_sleep = sk_sleep(&u->sk);
345         if (u_sleep)
346                 wake_up_interruptible_poll(u_sleep, key);
347
348         return 0;
349 }
350
351 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other)
352 {
353         struct unix_sock *u, *u_other;
354         int rc;
355
356         u = unix_sk(sk);
357         u_other = unix_sk(other);
358         rc = 0;
359         spin_lock(&u_other->peer_wait.lock);
360
361         if (!u->peer_wake.private) {
362                 u->peer_wake.private = other;
363                 __add_wait_queue(&u_other->peer_wait, &u->peer_wake);
364
365                 rc = 1;
366         }
367
368         spin_unlock(&u_other->peer_wait.lock);
369         return rc;
370 }
371
372 static void unix_dgram_peer_wake_disconnect(struct sock *sk,
373                                             struct sock *other)
374 {
375         struct unix_sock *u, *u_other;
376
377         u = unix_sk(sk);
378         u_other = unix_sk(other);
379         spin_lock(&u_other->peer_wait.lock);
380
381         if (u->peer_wake.private == other) {
382                 __remove_wait_queue(&u_other->peer_wait, &u->peer_wake);
383                 u->peer_wake.private = NULL;
384         }
385
386         spin_unlock(&u_other->peer_wait.lock);
387 }
388
389 static void unix_dgram_peer_wake_disconnect_wakeup(struct sock *sk,
390                                                    struct sock *other)
391 {
392         unix_dgram_peer_wake_disconnect(sk, other);
393         wake_up_interruptible_poll(sk_sleep(sk),
394                                    POLLOUT |
395                                    POLLWRNORM |
396                                    POLLWRBAND);
397 }
398
399 /* preconditions:
400  *      - unix_peer(sk) == other
401  *      - association is stable
402  */
403 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other)
404 {
405         int connected;
406
407         connected = unix_dgram_peer_wake_connect(sk, other);
408
409         if (unix_recvq_full(other))
410                 return 1;
411
412         if (connected)
413                 unix_dgram_peer_wake_disconnect(sk, other);
414
415         return 0;
416 }
417
418 static inline int unix_writable(struct sock *sk)
419 {
420         return (atomic_read(&sk->sk_wmem_alloc) << 2) <= sk->sk_sndbuf;
421 }
422
423 static void unix_write_space(struct sock *sk)
424 {
425         struct socket_wq *wq;
426
427         rcu_read_lock();
428         if (unix_writable(sk)) {
429                 wq = rcu_dereference(sk->sk_wq);
430                 if (wq_has_sleeper(wq))
431                         wake_up_interruptible_sync_poll(&wq->wait,
432                                 POLLOUT | POLLWRNORM | POLLWRBAND);
433                 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
434         }
435         rcu_read_unlock();
436 }
437
438 /* When dgram socket disconnects (or changes its peer), we clear its receive
439  * queue of packets arrived from previous peer. First, it allows to do
440  * flow control based only on wmem_alloc; second, sk connected to peer
441  * may receive messages only from that peer. */
442 static void unix_dgram_disconnected(struct sock *sk, struct sock *other)
443 {
444         if (!skb_queue_empty(&sk->sk_receive_queue)) {
445                 skb_queue_purge(&sk->sk_receive_queue);
446                 wake_up_interruptible_all(&unix_sk(sk)->peer_wait);
447
448                 /* If one link of bidirectional dgram pipe is disconnected,
449                  * we signal error. Messages are lost. Do not make this,
450                  * when peer was not connected to us.
451                  */
452                 if (!sock_flag(other, SOCK_DEAD) && unix_peer(other) == sk) {
453                         other->sk_err = ECONNRESET;
454                         other->sk_error_report(other);
455                 }
456         }
457 }
458
459 static void unix_sock_destructor(struct sock *sk)
460 {
461         struct unix_sock *u = unix_sk(sk);
462
463         skb_queue_purge(&sk->sk_receive_queue);
464
465         WARN_ON(atomic_read(&sk->sk_wmem_alloc));
466         WARN_ON(!sk_unhashed(sk));
467         WARN_ON(sk->sk_socket);
468         if (!sock_flag(sk, SOCK_DEAD)) {
469                 printk(KERN_INFO "Attempt to release alive unix socket: %p\n", sk);
470                 return;
471         }
472
473         if (u->addr)
474                 unix_release_addr(u->addr);
475
476         atomic_long_dec(&unix_nr_socks);
477         local_bh_disable();
478         sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
479         local_bh_enable();
480 #ifdef UNIX_REFCNT_DEBUG
481         printk(KERN_DEBUG "UNIX %p is destroyed, %ld are still alive.\n", sk,
482                 atomic_long_read(&unix_nr_socks));
483 #endif
484 }
485
486 static void unix_release_sock(struct sock *sk, int embrion)
487 {
488         struct unix_sock *u = unix_sk(sk);
489         struct dentry *dentry;
490         struct vfsmount *mnt;
491         struct sock *skpair;
492         struct sk_buff *skb;
493         int state;
494
495         unix_remove_socket(sk);
496
497         /* Clear state */
498         unix_state_lock(sk);
499         sock_orphan(sk);
500         sk->sk_shutdown = SHUTDOWN_MASK;
501         dentry       = u->dentry;
502         u->dentry    = NULL;
503         mnt          = u->mnt;
504         u->mnt       = NULL;
505         state = sk->sk_state;
506         sk->sk_state = TCP_CLOSE;
507         unix_state_unlock(sk);
508
509         wake_up_interruptible_all(&u->peer_wait);
510
511         skpair = unix_peer(sk);
512
513         if (skpair != NULL) {
514                 if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) {
515                         unix_state_lock(skpair);
516                         /* No more writes */
517                         skpair->sk_shutdown = SHUTDOWN_MASK;
518                         if (!skb_queue_empty(&sk->sk_receive_queue) || embrion)
519                                 skpair->sk_err = ECONNRESET;
520                         unix_state_unlock(skpair);
521                         skpair->sk_state_change(skpair);
522                         sk_wake_async(skpair, SOCK_WAKE_WAITD, POLL_HUP);
523                 }
524
525                 unix_dgram_peer_wake_disconnect(sk, skpair);
526                 sock_put(skpair); /* It may now die */
527                 unix_peer(sk) = NULL;
528         }
529
530         /* Try to flush out this socket. Throw out buffers at least */
531
532         while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
533                 if (state == TCP_LISTEN)
534                         unix_release_sock(skb->sk, 1);
535                 /* passed fds are erased in the kfree_skb hook        */
536                 kfree_skb(skb);
537         }
538
539         if (dentry) {
540                 dput(dentry);
541                 mntput(mnt);
542         }
543
544         sock_put(sk);
545
546         /* ---- Socket is dead now and most probably destroyed ---- */
547
548         /*
549          * Fixme: BSD difference: In BSD all sockets connected to use get
550          *        ECONNRESET and we die on the spot. In Linux we behave
551          *        like files and pipes do and wait for the last
552          *        dereference.
553          *
554          * Can't we simply set sock->err?
555          *
556          *        What the above comment does talk about? --ANK(980817)
557          */
558
559         if (unix_tot_inflight)
560                 unix_gc();              /* Garbage collect fds */
561 }
562
563 static void init_peercred(struct sock *sk)
564 {
565         put_pid(sk->sk_peer_pid);
566         if (sk->sk_peer_cred)
567                 put_cred(sk->sk_peer_cred);
568         sk->sk_peer_pid  = get_pid(task_tgid(current));
569         sk->sk_peer_cred = get_current_cred();
570 }
571
572 static void copy_peercred(struct sock *sk, struct sock *peersk)
573 {
574         put_pid(sk->sk_peer_pid);
575         if (sk->sk_peer_cred)
576                 put_cred(sk->sk_peer_cred);
577         sk->sk_peer_pid  = get_pid(peersk->sk_peer_pid);
578         sk->sk_peer_cred = get_cred(peersk->sk_peer_cred);
579 }
580
581 static int unix_listen(struct socket *sock, int backlog)
582 {
583         int err;
584         struct sock *sk = sock->sk;
585         struct unix_sock *u = unix_sk(sk);
586         struct pid *old_pid = NULL;
587         const struct cred *old_cred = NULL;
588
589         err = -EOPNOTSUPP;
590         if (sock->type != SOCK_STREAM && sock->type != SOCK_SEQPACKET)
591                 goto out;       /* Only stream/seqpacket sockets accept */
592         err = -EINVAL;
593         if (!u->addr)
594                 goto out;       /* No listens on an unbound socket */
595         unix_state_lock(sk);
596         if (sk->sk_state != TCP_CLOSE && sk->sk_state != TCP_LISTEN)
597                 goto out_unlock;
598         if (backlog > sk->sk_max_ack_backlog)
599                 wake_up_interruptible_all(&u->peer_wait);
600         sk->sk_max_ack_backlog  = backlog;
601         sk->sk_state            = TCP_LISTEN;
602         /* set credentials so connect can copy them */
603         init_peercred(sk);
604         err = 0;
605
606 out_unlock:
607         unix_state_unlock(sk);
608         put_pid(old_pid);
609         if (old_cred)
610                 put_cred(old_cred);
611 out:
612         return err;
613 }
614
615 static int unix_release(struct socket *);
616 static int unix_bind(struct socket *, struct sockaddr *, int);
617 static int unix_stream_connect(struct socket *, struct sockaddr *,
618                                int addr_len, int flags);
619 static int unix_socketpair(struct socket *, struct socket *);
620 static int unix_accept(struct socket *, struct socket *, int);
621 static int unix_getname(struct socket *, struct sockaddr *, int *, int);
622 static unsigned int unix_poll(struct file *, struct socket *, poll_table *);
623 static unsigned int unix_dgram_poll(struct file *, struct socket *,
624                                     poll_table *);
625 static int unix_ioctl(struct socket *, unsigned int, unsigned long);
626 static int unix_shutdown(struct socket *, int);
627 static int unix_stream_sendmsg(struct kiocb *, struct socket *,
628                                struct msghdr *, size_t);
629 static int unix_stream_recvmsg(struct kiocb *, struct socket *,
630                                struct msghdr *, size_t, int);
631 static int unix_dgram_sendmsg(struct kiocb *, struct socket *,
632                               struct msghdr *, size_t);
633 static int unix_dgram_recvmsg(struct kiocb *, struct socket *,
634                               struct msghdr *, size_t, int);
635 static int unix_dgram_connect(struct socket *, struct sockaddr *,
636                               int, int);
637 static int unix_seqpacket_sendmsg(struct kiocb *, struct socket *,
638                                   struct msghdr *, size_t);
639 static int unix_seqpacket_recvmsg(struct kiocb *, struct socket *,
640                                   struct msghdr *, size_t, int);
641
642 static const struct proto_ops unix_stream_ops = {
643         .family =       PF_UNIX,
644         .owner =        THIS_MODULE,
645         .release =      unix_release,
646         .bind =         unix_bind,
647         .connect =      unix_stream_connect,
648         .socketpair =   unix_socketpair,
649         .accept =       unix_accept,
650         .getname =      unix_getname,
651         .poll =         unix_poll,
652         .ioctl =        unix_ioctl,
653         .listen =       unix_listen,
654         .shutdown =     unix_shutdown,
655         .setsockopt =   sock_no_setsockopt,
656         .getsockopt =   sock_no_getsockopt,
657         .sendmsg =      unix_stream_sendmsg,
658         .recvmsg =      unix_stream_recvmsg,
659         .mmap =         sock_no_mmap,
660         .sendpage =     sock_no_sendpage,
661 };
662
663 static const struct proto_ops unix_dgram_ops = {
664         .family =       PF_UNIX,
665         .owner =        THIS_MODULE,
666         .release =      unix_release,
667         .bind =         unix_bind,
668         .connect =      unix_dgram_connect,
669         .socketpair =   unix_socketpair,
670         .accept =       sock_no_accept,
671         .getname =      unix_getname,
672         .poll =         unix_dgram_poll,
673         .ioctl =        unix_ioctl,
674         .listen =       sock_no_listen,
675         .shutdown =     unix_shutdown,
676         .setsockopt =   sock_no_setsockopt,
677         .getsockopt =   sock_no_getsockopt,
678         .sendmsg =      unix_dgram_sendmsg,
679         .recvmsg =      unix_dgram_recvmsg,
680         .mmap =         sock_no_mmap,
681         .sendpage =     sock_no_sendpage,
682 };
683
684 static const struct proto_ops unix_seqpacket_ops = {
685         .family =       PF_UNIX,
686         .owner =        THIS_MODULE,
687         .release =      unix_release,
688         .bind =         unix_bind,
689         .connect =      unix_stream_connect,
690         .socketpair =   unix_socketpair,
691         .accept =       unix_accept,
692         .getname =      unix_getname,
693         .poll =         unix_dgram_poll,
694         .ioctl =        unix_ioctl,
695         .listen =       unix_listen,
696         .shutdown =     unix_shutdown,
697         .setsockopt =   sock_no_setsockopt,
698         .getsockopt =   sock_no_getsockopt,
699         .sendmsg =      unix_seqpacket_sendmsg,
700         .recvmsg =      unix_seqpacket_recvmsg,
701         .mmap =         sock_no_mmap,
702         .sendpage =     sock_no_sendpage,
703 };
704
705 static struct proto unix_proto = {
706         .name                   = "UNIX",
707         .owner                  = THIS_MODULE,
708         .obj_size               = sizeof(struct unix_sock),
709 };
710
711 /*
712  * AF_UNIX sockets do not interact with hardware, hence they
713  * dont trigger interrupts - so it's safe for them to have
714  * bh-unsafe locking for their sk_receive_queue.lock. Split off
715  * this special lock-class by reinitializing the spinlock key:
716  */
717 static struct lock_class_key af_unix_sk_receive_queue_lock_key;
718
719 static struct sock *unix_create1(struct net *net, struct socket *sock)
720 {
721         struct sock *sk = NULL;
722         struct unix_sock *u;
723
724         atomic_long_inc(&unix_nr_socks);
725         if (atomic_long_read(&unix_nr_socks) > 2 * get_max_files())
726                 goto out;
727
728         sk = sk_alloc(net, PF_UNIX, GFP_KERNEL, &unix_proto);
729         if (!sk)
730                 goto out;
731
732         sock_init_data(sock, sk);
733         lockdep_set_class(&sk->sk_receive_queue.lock,
734                                 &af_unix_sk_receive_queue_lock_key);
735
736         sk->sk_write_space      = unix_write_space;
737         sk->sk_max_ack_backlog  = net->unx.sysctl_max_dgram_qlen;
738         sk->sk_destruct         = unix_sock_destructor;
739         u         = unix_sk(sk);
740         u->dentry = NULL;
741         u->mnt    = NULL;
742         spin_lock_init(&u->lock);
743         atomic_long_set(&u->inflight, 0);
744         INIT_LIST_HEAD(&u->link);
745         mutex_init(&u->readlock); /* single task reading lock */
746         init_waitqueue_head(&u->peer_wait);
747         init_waitqueue_func_entry(&u->peer_wake, unix_dgram_peer_wake_relay);
748         unix_insert_socket(unix_sockets_unbound, sk);
749 out:
750         if (sk == NULL)
751                 atomic_long_dec(&unix_nr_socks);
752         else {
753                 local_bh_disable();
754                 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
755                 local_bh_enable();
756         }
757         return sk;
758 }
759
760 static int unix_create(struct net *net, struct socket *sock, int protocol,
761                        int kern)
762 {
763         if (protocol && protocol != PF_UNIX)
764                 return -EPROTONOSUPPORT;
765
766         sock->state = SS_UNCONNECTED;
767
768         switch (sock->type) {
769         case SOCK_STREAM:
770                 sock->ops = &unix_stream_ops;
771                 break;
772                 /*
773                  *      Believe it or not BSD has AF_UNIX, SOCK_RAW though
774                  *      nothing uses it.
775                  */
776         case SOCK_RAW:
777                 sock->type = SOCK_DGRAM;
778         case SOCK_DGRAM:
779                 sock->ops = &unix_dgram_ops;
780                 break;
781         case SOCK_SEQPACKET:
782                 sock->ops = &unix_seqpacket_ops;
783                 break;
784         default:
785                 return -ESOCKTNOSUPPORT;
786         }
787
788         return unix_create1(net, sock) ? 0 : -ENOMEM;
789 }
790
791 static int unix_release(struct socket *sock)
792 {
793         struct sock *sk = sock->sk;
794
795         if (!sk)
796                 return 0;
797
798         unix_release_sock(sk, 0);
799         sock->sk = NULL;
800
801         return 0;
802 }
803
804 static int unix_autobind(struct socket *sock)
805 {
806         struct sock *sk = sock->sk;
807         struct net *net = sock_net(sk);
808         struct unix_sock *u = unix_sk(sk);
809         static u32 ordernum = 1;
810         struct unix_address *addr;
811         int err;
812         unsigned int retries = 0;
813
814         err = mutex_lock_interruptible(&u->readlock);
815         if (err)
816                 return err;
817
818         err = 0;
819         if (u->addr)
820                 goto out;
821
822         err = -ENOMEM;
823         addr = kzalloc(sizeof(*addr) + sizeof(short) + 16, GFP_KERNEL);
824         if (!addr)
825                 goto out;
826
827         addr->name->sun_family = AF_UNIX;
828         atomic_set(&addr->refcnt, 1);
829
830 retry:
831         addr->len = sprintf(addr->name->sun_path+1, "%05x", ordernum) + 1 + sizeof(short);
832         addr->hash = unix_hash_fold(csum_partial(addr->name, addr->len, 0));
833
834         spin_lock(&unix_table_lock);
835         ordernum = (ordernum+1)&0xFFFFF;
836
837         if (__unix_find_socket_byname(net, addr->name, addr->len, sock->type,
838                                       addr->hash)) {
839                 spin_unlock(&unix_table_lock);
840                 /*
841                  * __unix_find_socket_byname() may take long time if many names
842                  * are already in use.
843                  */
844                 cond_resched();
845                 /* Give up if all names seems to be in use. */
846                 if (retries++ == 0xFFFFF) {
847                         err = -ENOSPC;
848                         kfree(addr);
849                         goto out;
850                 }
851                 goto retry;
852         }
853         addr->hash ^= sk->sk_type;
854
855         __unix_remove_socket(sk);
856         u->addr = addr;
857         __unix_insert_socket(&unix_socket_table[addr->hash], sk);
858         spin_unlock(&unix_table_lock);
859         err = 0;
860
861 out:    mutex_unlock(&u->readlock);
862         return err;
863 }
864
865 static struct sock *unix_find_other(struct net *net,
866                                     struct sockaddr_un *sunname, int len,
867                                     int type, unsigned hash, int *error)
868 {
869         struct sock *u;
870         struct path path;
871         int err = 0;
872
873         if (sunname->sun_path[0]) {
874                 struct inode *inode;
875                 err = kern_path(sunname->sun_path, LOOKUP_FOLLOW, &path);
876                 if (err)
877                         goto fail;
878                 inode = path.dentry->d_inode;
879                 err = inode_permission(inode, MAY_WRITE);
880                 if (err)
881                         goto put_fail;
882
883                 err = -ECONNREFUSED;
884                 if (!S_ISSOCK(inode->i_mode))
885                         goto put_fail;
886                 u = unix_find_socket_byinode(inode);
887                 if (!u)
888                         goto put_fail;
889
890                 if (u->sk_type == type)
891                         touch_atime(path.mnt, path.dentry);
892
893                 path_put(&path);
894
895                 err = -EPROTOTYPE;
896                 if (u->sk_type != type) {
897                         sock_put(u);
898                         goto fail;
899                 }
900         } else {
901                 err = -ECONNREFUSED;
902                 u = unix_find_socket_byname(net, sunname, len, type, hash);
903                 if (u) {
904                         struct dentry *dentry;
905                         dentry = unix_sk(u)->dentry;
906                         if (dentry)
907                                 touch_atime(unix_sk(u)->mnt, dentry);
908                 } else
909                         goto fail;
910         }
911         return u;
912
913 put_fail:
914         path_put(&path);
915 fail:
916         *error = err;
917         return NULL;
918 }
919
920
921 static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
922 {
923         struct sock *sk = sock->sk;
924         struct net *net = sock_net(sk);
925         struct unix_sock *u = unix_sk(sk);
926         struct sockaddr_un *sunaddr = (struct sockaddr_un *)uaddr;
927         char *sun_path = sunaddr->sun_path;
928         struct dentry *dentry = NULL;
929         struct path path;
930         int err;
931         unsigned hash;
932         struct unix_address *addr;
933         struct hlist_head *list;
934
935         err = -EINVAL;
936         if (sunaddr->sun_family != AF_UNIX)
937                 goto out;
938
939         if (addr_len == sizeof(short)) {
940                 err = unix_autobind(sock);
941                 goto out;
942         }
943
944         err = unix_mkname(sunaddr, addr_len, &hash);
945         if (err < 0)
946                 goto out;
947         addr_len = err;
948
949         err = mutex_lock_interruptible(&u->readlock);
950         if (err)
951                 goto out;
952
953         err = -EINVAL;
954         if (u->addr)
955                 goto out_up;
956
957         err = -ENOMEM;
958         addr = kmalloc(sizeof(*addr)+addr_len, GFP_KERNEL);
959         if (!addr)
960                 goto out_up;
961
962         memcpy(addr->name, sunaddr, addr_len);
963         addr->len = addr_len;
964         addr->hash = hash ^ sk->sk_type;
965         atomic_set(&addr->refcnt, 1);
966
967         if (sun_path[0]) {
968                 unsigned int mode;
969                 err = 0;
970                 /*
971                  * Get the parent directory, calculate the hash for last
972                  * component.
973                  */
974                 dentry = kern_path_create(AT_FDCWD, sun_path, &path, 0);
975                 err = PTR_ERR(dentry);
976                 if (IS_ERR(dentry))
977                         goto out_mknod_parent;
978
979                 /*
980                  * All right, let's create it.
981                  */
982                 mode = S_IFSOCK |
983                        (SOCK_INODE(sock)->i_mode & ~current_umask());
984                 err = mnt_want_write(path.mnt);
985                 if (err)
986                         goto out_mknod_dput;
987                 err = security_path_mknod(&path, dentry, mode, 0);
988                 if (err)
989                         goto out_mknod_drop_write;
990                 err = vfs_mknod(path.dentry->d_inode, dentry, mode, 0);
991 out_mknod_drop_write:
992                 mnt_drop_write(path.mnt);
993                 if (err)
994                         goto out_mknod_dput;
995                 mutex_unlock(&path.dentry->d_inode->i_mutex);
996                 dput(path.dentry);
997                 path.dentry = dentry;
998
999                 addr->hash = UNIX_HASH_SIZE;
1000         }
1001
1002         spin_lock(&unix_table_lock);
1003
1004         if (!sun_path[0]) {
1005                 err = -EADDRINUSE;
1006                 if (__unix_find_socket_byname(net, sunaddr, addr_len,
1007                                               sk->sk_type, hash)) {
1008                         unix_release_addr(addr);
1009                         goto out_unlock;
1010                 }
1011
1012                 list = &unix_socket_table[addr->hash];
1013         } else {
1014                 list = &unix_socket_table[dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1)];
1015                 u->dentry = path.dentry;
1016                 u->mnt    = path.mnt;
1017         }
1018
1019         err = 0;
1020         __unix_remove_socket(sk);
1021         u->addr = addr;
1022         __unix_insert_socket(list, sk);
1023
1024 out_unlock:
1025         spin_unlock(&unix_table_lock);
1026 out_up:
1027         mutex_unlock(&u->readlock);
1028 out:
1029         return err;
1030
1031 out_mknod_dput:
1032         dput(dentry);
1033         mutex_unlock(&path.dentry->d_inode->i_mutex);
1034         path_put(&path);
1035 out_mknod_parent:
1036         if (err == -EEXIST)
1037                 err = -EADDRINUSE;
1038         unix_release_addr(addr);
1039         goto out_up;
1040 }
1041
1042 static void unix_state_double_lock(struct sock *sk1, struct sock *sk2)
1043 {
1044         if (unlikely(sk1 == sk2) || !sk2) {
1045                 unix_state_lock(sk1);
1046                 return;
1047         }
1048         if (sk1 < sk2) {
1049                 unix_state_lock(sk1);
1050                 unix_state_lock_nested(sk2);
1051         } else {
1052                 unix_state_lock(sk2);
1053                 unix_state_lock_nested(sk1);
1054         }
1055 }
1056
1057 static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2)
1058 {
1059         if (unlikely(sk1 == sk2) || !sk2) {
1060                 unix_state_unlock(sk1);
1061                 return;
1062         }
1063         unix_state_unlock(sk1);
1064         unix_state_unlock(sk2);
1065 }
1066
1067 static int unix_dgram_connect(struct socket *sock, struct sockaddr *addr,
1068                               int alen, int flags)
1069 {
1070         struct sock *sk = sock->sk;
1071         struct net *net = sock_net(sk);
1072         struct sockaddr_un *sunaddr = (struct sockaddr_un *)addr;
1073         struct sock *other;
1074         unsigned hash;
1075         int err;
1076
1077         if (addr->sa_family != AF_UNSPEC) {
1078                 err = unix_mkname(sunaddr, alen, &hash);
1079                 if (err < 0)
1080                         goto out;
1081                 alen = err;
1082
1083                 if (test_bit(SOCK_PASSCRED, &sock->flags) &&
1084                     !unix_sk(sk)->addr && (err = unix_autobind(sock)) != 0)
1085                         goto out;
1086
1087 restart:
1088                 other = unix_find_other(net, sunaddr, alen, sock->type, hash, &err);
1089                 if (!other)
1090                         goto out;
1091
1092                 unix_state_double_lock(sk, other);
1093
1094                 /* Apparently VFS overslept socket death. Retry. */
1095                 if (sock_flag(other, SOCK_DEAD)) {
1096                         unix_state_double_unlock(sk, other);
1097                         sock_put(other);
1098                         goto restart;
1099                 }
1100
1101                 err = -EPERM;
1102                 if (!unix_may_send(sk, other))
1103                         goto out_unlock;
1104
1105                 err = security_unix_may_send(sk->sk_socket, other->sk_socket);
1106                 if (err)
1107                         goto out_unlock;
1108
1109         } else {
1110                 /*
1111                  *      1003.1g breaking connected state with AF_UNSPEC
1112                  */
1113                 other = NULL;
1114                 unix_state_double_lock(sk, other);
1115         }
1116
1117         /*
1118          * If it was connected, reconnect.
1119          */
1120         if (unix_peer(sk)) {
1121                 struct sock *old_peer = unix_peer(sk);
1122                 unix_peer(sk) = other;
1123                 unix_dgram_peer_wake_disconnect_wakeup(sk, old_peer);
1124
1125                 unix_state_double_unlock(sk, other);
1126
1127                 if (other != old_peer)
1128                         unix_dgram_disconnected(sk, old_peer);
1129                 sock_put(old_peer);
1130         } else {
1131                 unix_peer(sk) = other;
1132                 unix_state_double_unlock(sk, other);
1133         }
1134         return 0;
1135
1136 out_unlock:
1137         unix_state_double_unlock(sk, other);
1138         sock_put(other);
1139 out:
1140         return err;
1141 }
1142
1143 static long unix_wait_for_peer(struct sock *other, long timeo)
1144 {
1145         struct unix_sock *u = unix_sk(other);
1146         int sched;
1147         DEFINE_WAIT(wait);
1148
1149         prepare_to_wait_exclusive(&u->peer_wait, &wait, TASK_INTERRUPTIBLE);
1150
1151         sched = !sock_flag(other, SOCK_DEAD) &&
1152                 !(other->sk_shutdown & RCV_SHUTDOWN) &&
1153                 unix_recvq_full(other);
1154
1155         unix_state_unlock(other);
1156
1157         if (sched)
1158                 timeo = schedule_timeout(timeo);
1159
1160         finish_wait(&u->peer_wait, &wait);
1161         return timeo;
1162 }
1163
1164 static int unix_stream_connect(struct socket *sock, struct sockaddr *uaddr,
1165                                int addr_len, int flags)
1166 {
1167         struct sockaddr_un *sunaddr = (struct sockaddr_un *)uaddr;
1168         struct sock *sk = sock->sk;
1169         struct net *net = sock_net(sk);
1170         struct unix_sock *u = unix_sk(sk), *newu, *otheru;
1171         struct sock *newsk = NULL;
1172         struct sock *other = NULL;
1173         struct sk_buff *skb = NULL;
1174         unsigned hash;
1175         int st;
1176         int err;
1177         long timeo;
1178
1179         err = unix_mkname(sunaddr, addr_len, &hash);
1180         if (err < 0)
1181                 goto out;
1182         addr_len = err;
1183
1184         if (test_bit(SOCK_PASSCRED, &sock->flags) && !u->addr &&
1185             (err = unix_autobind(sock)) != 0)
1186                 goto out;
1187
1188         timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
1189
1190         /* First of all allocate resources.
1191            If we will make it after state is locked,
1192            we will have to recheck all again in any case.
1193          */
1194
1195         err = -ENOMEM;
1196
1197         /* create new sock for complete connection */
1198         newsk = unix_create1(sock_net(sk), NULL);
1199         if (newsk == NULL)
1200                 goto out;
1201
1202         /* Allocate skb for sending to listening sock */
1203         skb = sock_wmalloc(newsk, 1, 0, GFP_KERNEL);
1204         if (skb == NULL)
1205                 goto out;
1206
1207 restart:
1208         /*  Find listening sock. */
1209         other = unix_find_other(net, sunaddr, addr_len, sk->sk_type, hash, &err);
1210         if (!other)
1211                 goto out;
1212
1213         /* Latch state of peer */
1214         unix_state_lock(other);
1215
1216         /* Apparently VFS overslept socket death. Retry. */
1217         if (sock_flag(other, SOCK_DEAD)) {
1218                 unix_state_unlock(other);
1219                 sock_put(other);
1220                 goto restart;
1221         }
1222
1223         err = -ECONNREFUSED;
1224         if (other->sk_state != TCP_LISTEN)
1225                 goto out_unlock;
1226         if (other->sk_shutdown & RCV_SHUTDOWN)
1227                 goto out_unlock;
1228
1229         if (unix_recvq_full(other)) {
1230                 err = -EAGAIN;
1231                 if (!timeo)
1232                         goto out_unlock;
1233
1234                 timeo = unix_wait_for_peer(other, timeo);
1235
1236                 err = sock_intr_errno(timeo);
1237                 if (signal_pending(current))
1238                         goto out;
1239                 sock_put(other);
1240                 goto restart;
1241         }
1242
1243         /* Latch our state.
1244
1245            It is tricky place. We need to grab our state lock and cannot
1246            drop lock on peer. It is dangerous because deadlock is
1247            possible. Connect to self case and simultaneous
1248            attempt to connect are eliminated by checking socket
1249            state. other is TCP_LISTEN, if sk is TCP_LISTEN we
1250            check this before attempt to grab lock.
1251
1252            Well, and we have to recheck the state after socket locked.
1253          */
1254         st = sk->sk_state;
1255
1256         switch (st) {
1257         case TCP_CLOSE:
1258                 /* This is ok... continue with connect */
1259                 break;
1260         case TCP_ESTABLISHED:
1261                 /* Socket is already connected */
1262                 err = -EISCONN;
1263                 goto out_unlock;
1264         default:
1265                 err = -EINVAL;
1266                 goto out_unlock;
1267         }
1268
1269         unix_state_lock_nested(sk);
1270
1271         if (sk->sk_state != st) {
1272                 unix_state_unlock(sk);
1273                 unix_state_unlock(other);
1274                 sock_put(other);
1275                 goto restart;
1276         }
1277
1278         err = security_unix_stream_connect(sk, other, newsk);
1279         if (err) {
1280                 unix_state_unlock(sk);
1281                 goto out_unlock;
1282         }
1283
1284         /* The way is open! Fastly set all the necessary fields... */
1285
1286         sock_hold(sk);
1287         unix_peer(newsk)        = sk;
1288         newsk->sk_state         = TCP_ESTABLISHED;
1289         newsk->sk_type          = sk->sk_type;
1290         init_peercred(newsk);
1291         newu = unix_sk(newsk);
1292         RCU_INIT_POINTER(newsk->sk_wq, &newu->peer_wq);
1293         otheru = unix_sk(other);
1294
1295         /* copy address information from listening to new sock*/
1296         if (otheru->addr) {
1297                 atomic_inc(&otheru->addr->refcnt);
1298                 newu->addr = otheru->addr;
1299         }
1300         if (otheru->dentry) {
1301                 newu->dentry    = dget(otheru->dentry);
1302                 newu->mnt       = mntget(otheru->mnt);
1303         }
1304
1305         /* Set credentials */
1306         copy_peercred(sk, other);
1307
1308         sock->state     = SS_CONNECTED;
1309         sk->sk_state    = TCP_ESTABLISHED;
1310         sock_hold(newsk);
1311
1312         smp_mb__after_atomic_inc();     /* sock_hold() does an atomic_inc() */
1313         unix_peer(sk)   = newsk;
1314
1315         unix_state_unlock(sk);
1316
1317         /* take ten and and send info to listening sock */
1318         spin_lock(&other->sk_receive_queue.lock);
1319         __skb_queue_tail(&other->sk_receive_queue, skb);
1320         spin_unlock(&other->sk_receive_queue.lock);
1321         unix_state_unlock(other);
1322         other->sk_data_ready(other, 0);
1323         sock_put(other);
1324         return 0;
1325
1326 out_unlock:
1327         if (other)
1328                 unix_state_unlock(other);
1329
1330 out:
1331         kfree_skb(skb);
1332         if (newsk)
1333                 unix_release_sock(newsk, 0);
1334         if (other)
1335                 sock_put(other);
1336         return err;
1337 }
1338
1339 static int unix_socketpair(struct socket *socka, struct socket *sockb)
1340 {
1341         struct sock *ska = socka->sk, *skb = sockb->sk;
1342
1343         /* Join our sockets back to back */
1344         sock_hold(ska);
1345         sock_hold(skb);
1346         unix_peer(ska) = skb;
1347         unix_peer(skb) = ska;
1348         init_peercred(ska);
1349         init_peercred(skb);
1350
1351         if (ska->sk_type != SOCK_DGRAM) {
1352                 ska->sk_state = TCP_ESTABLISHED;
1353                 skb->sk_state = TCP_ESTABLISHED;
1354                 socka->state  = SS_CONNECTED;
1355                 sockb->state  = SS_CONNECTED;
1356         }
1357         return 0;
1358 }
1359
1360 static void unix_sock_inherit_flags(const struct socket *old,
1361                                     struct socket *new)
1362 {
1363         if (test_bit(SOCK_PASSCRED, &old->flags))
1364                 set_bit(SOCK_PASSCRED, &new->flags);
1365         if (test_bit(SOCK_PASSSEC, &old->flags))
1366                 set_bit(SOCK_PASSSEC, &new->flags);
1367 }
1368
1369 static int unix_accept(struct socket *sock, struct socket *newsock, int flags)
1370 {
1371         struct sock *sk = sock->sk;
1372         struct sock *tsk;
1373         struct sk_buff *skb;
1374         int err;
1375
1376         err = -EOPNOTSUPP;
1377         if (sock->type != SOCK_STREAM && sock->type != SOCK_SEQPACKET)
1378                 goto out;
1379
1380         err = -EINVAL;
1381         if (sk->sk_state != TCP_LISTEN)
1382                 goto out;
1383
1384         /* If socket state is TCP_LISTEN it cannot change (for now...),
1385          * so that no locks are necessary.
1386          */
1387
1388         skb = skb_recv_datagram(sk, 0, flags&O_NONBLOCK, &err);
1389         if (!skb) {
1390                 /* This means receive shutdown. */
1391                 if (err == 0)
1392                         err = -EINVAL;
1393                 goto out;
1394         }
1395
1396         tsk = skb->sk;
1397         skb_free_datagram(sk, skb);
1398         wake_up_interruptible(&unix_sk(sk)->peer_wait);
1399
1400         /* attach accepted sock to socket */
1401         unix_state_lock(tsk);
1402         newsock->state = SS_CONNECTED;
1403         unix_sock_inherit_flags(sock, newsock);
1404         sock_graft(tsk, newsock);
1405         unix_state_unlock(tsk);
1406         return 0;
1407
1408 out:
1409         return err;
1410 }
1411
1412
1413 static int unix_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len, int peer)
1414 {
1415         struct sock *sk = sock->sk;
1416         struct unix_sock *u;
1417         DECLARE_SOCKADDR(struct sockaddr_un *, sunaddr, uaddr);
1418         int err = 0;
1419
1420         if (peer) {
1421                 sk = unix_peer_get(sk);
1422
1423                 err = -ENOTCONN;
1424                 if (!sk)
1425                         goto out;
1426                 err = 0;
1427         } else {
1428                 sock_hold(sk);
1429         }
1430
1431         u = unix_sk(sk);
1432         unix_state_lock(sk);
1433         if (!u->addr) {
1434                 sunaddr->sun_family = AF_UNIX;
1435                 sunaddr->sun_path[0] = 0;
1436                 *uaddr_len = sizeof(short);
1437         } else {
1438                 struct unix_address *addr = u->addr;
1439
1440                 *uaddr_len = addr->len;
1441                 memcpy(sunaddr, addr->name, *uaddr_len);
1442         }
1443         unix_state_unlock(sk);
1444         sock_put(sk);
1445 out:
1446         return err;
1447 }
1448
1449 static void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb)
1450 {
1451         int i;
1452
1453         scm->fp = UNIXCB(skb).fp;
1454         UNIXCB(skb).fp = NULL;
1455
1456         for (i = scm->fp->count-1; i >= 0; i--)
1457                 unix_notinflight(scm->fp->user, scm->fp->fp[i]);
1458 }
1459
1460 static void unix_destruct_scm(struct sk_buff *skb)
1461 {
1462         struct scm_cookie scm;
1463         memset(&scm, 0, sizeof(scm));
1464         scm.pid  = UNIXCB(skb).pid;
1465         scm.cred = UNIXCB(skb).cred;
1466         if (UNIXCB(skb).fp)
1467                 unix_detach_fds(&scm, skb);
1468
1469         /* Alas, it calls VFS */
1470         /* So fscking what? fput() had been SMP-safe since the last Summer */
1471         scm_destroy(&scm);
1472         sock_wfree(skb);
1473 }
1474
1475 /*
1476  * The "user->unix_inflight" variable is protected by the garbage
1477  * collection lock, and we just read it locklessly here. If you go
1478  * over the limit, there might be a tiny race in actually noticing
1479  * it across threads. Tough.
1480  */
1481 static inline bool too_many_unix_fds(struct task_struct *p)
1482 {
1483         struct user_struct *user = current_user();
1484
1485         if (unlikely(user->unix_inflight > task_rlimit(p, RLIMIT_NOFILE)))
1486                 return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN);
1487         return false;
1488 }
1489
1490 #define MAX_RECURSION_LEVEL 4
1491
1492 static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
1493 {
1494         int i;
1495         unsigned char max_level = 0;
1496         int unix_sock_count = 0;
1497
1498         if (too_many_unix_fds(current))
1499                 return -ETOOMANYREFS;
1500
1501         for (i = scm->fp->count - 1; i >= 0; i--) {
1502                 struct sock *sk = unix_get_socket(scm->fp->fp[i]);
1503
1504                 if (sk) {
1505                         unix_sock_count++;
1506                         max_level = max(max_level,
1507                                         unix_sk(sk)->recursion_level);
1508                 }
1509         }
1510         if (unlikely(max_level > MAX_RECURSION_LEVEL))
1511                 return -ETOOMANYREFS;
1512
1513         /*
1514          * Need to duplicate file references for the sake of garbage
1515          * collection.  Otherwise a socket in the fps might become a
1516          * candidate for GC while the skb is not yet queued.
1517          */
1518         UNIXCB(skb).fp = scm_fp_dup(scm->fp);
1519         if (!UNIXCB(skb).fp)
1520                 return -ENOMEM;
1521
1522         for (i = scm->fp->count - 1; i >= 0; i--)
1523                 unix_inflight(scm->fp->user, scm->fp->fp[i]);
1524         return max_level;
1525 }
1526
1527 static int unix_scm_to_skb(struct scm_cookie *scm, struct sk_buff *skb, bool send_fds)
1528 {
1529         int err = 0;
1530
1531         UNIXCB(skb).pid  = get_pid(scm->pid);
1532         if (scm->cred)
1533                 UNIXCB(skb).cred = get_cred(scm->cred);
1534         UNIXCB(skb).fp = NULL;
1535         if (scm->fp && send_fds)
1536                 err = unix_attach_fds(scm, skb);
1537
1538         skb->destructor = unix_destruct_scm;
1539         return err;
1540 }
1541
1542 /*
1543  * Some apps rely on write() giving SCM_CREDENTIALS
1544  * We include credentials if source or destination socket
1545  * asserted SOCK_PASSCRED.
1546  */
1547 static void maybe_add_creds(struct sk_buff *skb, const struct socket *sock,
1548                             const struct sock *other)
1549 {
1550         if (UNIXCB(skb).cred)
1551                 return;
1552         if (test_bit(SOCK_PASSCRED, &sock->flags) ||
1553             !other->sk_socket ||
1554             test_bit(SOCK_PASSCRED, &other->sk_socket->flags)) {
1555                 UNIXCB(skb).pid  = get_pid(task_tgid(current));
1556                 UNIXCB(skb).cred = get_current_cred();
1557         }
1558 }
1559
1560 /*
1561  *      Send AF_UNIX data.
1562  */
1563
1564 static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock,
1565                               struct msghdr *msg, size_t len)
1566 {
1567         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1568         struct sock *sk = sock->sk;
1569         struct net *net = sock_net(sk);
1570         struct unix_sock *u = unix_sk(sk);
1571         struct sockaddr_un *sunaddr = msg->msg_name;
1572         struct sock *other = NULL;
1573         int namelen = 0; /* fake GCC */
1574         int err;
1575         unsigned hash;
1576         struct sk_buff *skb;
1577         long timeo;
1578         struct scm_cookie tmp_scm;
1579         int max_level;
1580         int sk_locked;
1581
1582         if (NULL == siocb->scm)
1583                 siocb->scm = &tmp_scm;
1584         wait_for_unix_gc();
1585         err = scm_send(sock, msg, siocb->scm, false);
1586         if (err < 0)
1587                 return err;
1588
1589         err = -EOPNOTSUPP;
1590         if (msg->msg_flags&MSG_OOB)
1591                 goto out;
1592
1593         if (msg->msg_namelen) {
1594                 err = unix_mkname(sunaddr, msg->msg_namelen, &hash);
1595                 if (err < 0)
1596                         goto out;
1597                 namelen = err;
1598         } else {
1599                 sunaddr = NULL;
1600                 err = -ENOTCONN;
1601                 other = unix_peer_get(sk);
1602                 if (!other)
1603                         goto out;
1604         }
1605
1606         if (test_bit(SOCK_PASSCRED, &sock->flags) && !u->addr
1607             && (err = unix_autobind(sock)) != 0)
1608                 goto out;
1609
1610         err = -EMSGSIZE;
1611         if (len > sk->sk_sndbuf - 32)
1612                 goto out;
1613
1614         skb = sock_alloc_send_skb(sk, len, msg->msg_flags&MSG_DONTWAIT, &err);
1615         if (skb == NULL)
1616                 goto out;
1617
1618         err = unix_scm_to_skb(siocb->scm, skb, true);
1619         if (err < 0)
1620                 goto out_free;
1621         max_level = err + 1;
1622         unix_get_secdata(siocb->scm, skb);
1623
1624         skb_reset_transport_header(skb);
1625         err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1626         if (err)
1627                 goto out_free;
1628
1629         timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1630
1631 restart:
1632         if (!other) {
1633                 err = -ECONNRESET;
1634                 if (sunaddr == NULL)
1635                         goto out_free;
1636
1637                 other = unix_find_other(net, sunaddr, namelen, sk->sk_type,
1638                                         hash, &err);
1639                 if (other == NULL)
1640                         goto out_free;
1641         }
1642
1643         if (sk_filter(other, skb) < 0) {
1644                 /* Toss the packet but do not return any error to the sender */
1645                 err = len;
1646                 goto out_free;
1647         }
1648
1649         sk_locked = 0;
1650         unix_state_lock(other);
1651 restart_locked:
1652         err = -EPERM;
1653         if (!unix_may_send(sk, other))
1654                 goto out_unlock;
1655
1656         if (unlikely(sock_flag(other, SOCK_DEAD))) {
1657                 /*
1658                  *      Check with 1003.1g - what should
1659                  *      datagram error
1660                  */
1661                 unix_state_unlock(other);
1662                 sock_put(other);
1663
1664                 if (!sk_locked)
1665                         unix_state_lock(sk);
1666
1667                 err = 0;
1668                 if (unix_peer(sk) == other) {
1669                         unix_peer(sk) = NULL;
1670                         unix_dgram_peer_wake_disconnect_wakeup(sk, other);
1671
1672                         unix_state_unlock(sk);
1673
1674                         unix_dgram_disconnected(sk, other);
1675                         sock_put(other);
1676                         err = -ECONNREFUSED;
1677                 } else {
1678                         unix_state_unlock(sk);
1679                 }
1680
1681                 other = NULL;
1682                 if (err)
1683                         goto out_free;
1684                 goto restart;
1685         }
1686
1687         err = -EPIPE;
1688         if (other->sk_shutdown & RCV_SHUTDOWN)
1689                 goto out_unlock;
1690
1691         if (sk->sk_type != SOCK_SEQPACKET) {
1692                 err = security_unix_may_send(sk->sk_socket, other->sk_socket);
1693                 if (err)
1694                         goto out_unlock;
1695         }
1696
1697         /* other == sk && unix_peer(other) != sk if
1698          * - unix_peer(sk) == NULL, destination address bound to sk
1699          * - unix_peer(sk) == sk by time of get but disconnected before lock
1700          */
1701         if (other != sk &&
1702             unlikely(unix_peer(other) != sk && unix_recvq_full(other))) {
1703                 if (timeo) {
1704                         timeo = unix_wait_for_peer(other, timeo);
1705
1706                         err = sock_intr_errno(timeo);
1707                         if (signal_pending(current))
1708                                 goto out_free;
1709
1710                         goto restart;
1711                 }
1712
1713                 if (!sk_locked) {
1714                         unix_state_unlock(other);
1715                         unix_state_double_lock(sk, other);
1716                 }
1717
1718                 if (unix_peer(sk) != other ||
1719                     unix_dgram_peer_wake_me(sk, other)) {
1720                         err = -EAGAIN;
1721                         sk_locked = 1;
1722                         goto out_unlock;
1723                 }
1724
1725                 if (!sk_locked) {
1726                         sk_locked = 1;
1727                         goto restart_locked;
1728                 }
1729         }
1730
1731         if (unlikely(sk_locked))
1732                 unix_state_unlock(sk);
1733
1734         if (sock_flag(other, SOCK_RCVTSTAMP))
1735                 __net_timestamp(skb);
1736         maybe_add_creds(skb, sock, other);
1737         skb_queue_tail(&other->sk_receive_queue, skb);
1738         if (max_level > unix_sk(other)->recursion_level)
1739                 unix_sk(other)->recursion_level = max_level;
1740         unix_state_unlock(other);
1741         other->sk_data_ready(other, len);
1742         sock_put(other);
1743         scm_destroy(siocb->scm);
1744         return len;
1745
1746 out_unlock:
1747         if (sk_locked)
1748                 unix_state_unlock(sk);
1749         unix_state_unlock(other);
1750 out_free:
1751         kfree_skb(skb);
1752 out:
1753         if (other)
1754                 sock_put(other);
1755         scm_destroy(siocb->scm);
1756         return err;
1757 }
1758
1759
1760 static int unix_stream_sendmsg(struct kiocb *kiocb, struct socket *sock,
1761                                struct msghdr *msg, size_t len)
1762 {
1763         struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1764         struct sock *sk = sock->sk;
1765         struct sock *other = NULL;
1766         int err, size;
1767         struct sk_buff *skb;
1768         int sent = 0;
1769         struct scm_cookie tmp_scm;
1770         bool fds_sent = false;
1771         int max_level;
1772
1773         if (NULL == siocb->scm)
1774                 siocb->scm = &tmp_scm;
1775         wait_for_unix_gc();
1776         err = scm_send(sock, msg, siocb->scm, false);
1777         if (err < 0)
1778                 return err;
1779
1780         err = -EOPNOTSUPP;
1781         if (msg->msg_flags&MSG_OOB)
1782                 goto out_err;
1783
1784         if (msg->msg_namelen) {
1785                 err = sk->sk_state == TCP_ESTABLISHED ? -EISCONN : -EOPNOTSUPP;
1786                 goto out_err;
1787         } else {
1788                 err = -ENOTCONN;
1789                 other = unix_peer(sk);
1790                 if (!other)
1791                         goto out_err;
1792         }
1793
1794         if (sk->sk_shutdown & SEND_SHUTDOWN)
1795                 goto pipe_err;
1796
1797         while (sent < len) {
1798                 /*
1799                  *      Optimisation for the fact that under 0.01% of X
1800                  *      messages typically need breaking up.
1801                  */
1802
1803                 size = len-sent;
1804
1805                 /* Keep two messages in the pipe so it schedules better */
1806                 if (size > ((sk->sk_sndbuf >> 1) - 64))
1807                         size = (sk->sk_sndbuf >> 1) - 64;
1808
1809                 if (size > SKB_MAX_ALLOC)
1810                         size = SKB_MAX_ALLOC;
1811
1812                 /*
1813                  *      Grab a buffer
1814                  */
1815
1816                 skb = sock_alloc_send_skb(sk, size, msg->msg_flags&MSG_DONTWAIT,
1817                                           &err);
1818
1819                 if (skb == NULL)
1820                         goto out_err;
1821
1822                 /*
1823                  *      If you pass two values to the sock_alloc_send_skb
1824                  *      it tries to grab the large buffer with GFP_NOFS
1825                  *      (which can fail easily), and if it fails grab the
1826                  *      fallback size buffer which is under a page and will
1827                  *      succeed. [Alan]
1828                  */
1829                 size = min_t(int, size, skb_tailroom(skb));
1830
1831
1832                 /* Only send the fds in the first buffer */
1833                 err = unix_scm_to_skb(siocb->scm, skb, !fds_sent);
1834                 if (err < 0) {
1835                         kfree_skb(skb);
1836                         goto out_err;
1837                 }
1838                 max_level = err + 1;
1839                 fds_sent = true;
1840
1841                 err = memcpy_fromiovec(skb_put(skb, size), msg->msg_iov, size);
1842                 if (err) {
1843                         kfree_skb(skb);
1844                         goto out_err;
1845                 }
1846
1847                 unix_state_lock(other);
1848
1849                 if (sock_flag(other, SOCK_DEAD) ||
1850                     (other->sk_shutdown & RCV_SHUTDOWN))
1851                         goto pipe_err_free;
1852
1853                 maybe_add_creds(skb, sock, other);
1854                 skb_queue_tail(&other->sk_receive_queue, skb);
1855                 if (max_level > unix_sk(other)->recursion_level)
1856                         unix_sk(other)->recursion_level = max_level;
1857                 unix_state_unlock(other);
1858                 other->sk_data_ready(other, size);
1859                 sent += size;
1860         }
1861
1862         scm_destroy(siocb->scm);
1863         siocb->scm = NULL;
1864
1865         return sent;
1866
1867 pipe_err_free:
1868         unix_state_unlock(other);
1869         kfree_skb(skb);
1870 pipe_err:
1871         if (sent == 0 && !(msg->msg_flags&MSG_NOSIGNAL))
1872                 send_sig(SIGPIPE, current, 0);
1873         err = -EPIPE;
1874 out_err:
1875         scm_destroy(siocb->scm);
1876         siocb->scm = NULL;
1877         return sent ? : err;
1878 }
1879
1880 static int unix_seqpacket_sendmsg(struct kiocb *kiocb, struct socket *sock,
1881                                   struct msghdr *msg, size_t len)
1882 {
1883         int err;
1884         struct sock *sk = sock->sk;
1885
1886         err = sock_error(sk);
1887         if (err)
1888                 return err;
1889
1890         if (sk->sk_state != TCP_ESTABLISHED)
1891                 return -ENOTCONN;
1892
1893         if (msg->msg_namelen)
1894                 msg->msg_namelen = 0;
1895
1896         return unix_dgram_sendmsg(kiocb, sock, msg, len);
1897 }
1898
1899 static int unix_seqpacket_recvmsg(struct kiocb *iocb, struct socket *sock,
1900                               struct msghdr *msg, size_t size,
1901                               int flags)
1902 {
1903         struct sock *sk = sock->sk;
1904
1905         if (sk->sk_state != TCP_ESTABLISHED)
1906                 return -ENOTCONN;
1907
1908         return unix_dgram_recvmsg(iocb, sock, msg, size, flags);
1909 }
1910
1911 static void unix_copy_addr(struct msghdr *msg, struct sock *sk)
1912 {
1913         struct unix_sock *u = unix_sk(sk);
1914
1915         if (u->addr) {
1916                 msg->msg_namelen = u->addr->len;
1917                 memcpy(msg->msg_name, u->addr->name, u->addr->len);
1918         }
1919 }
1920
1921 static int unix_dgram_recvmsg(struct kiocb *iocb, struct socket *sock,
1922                               struct msghdr *msg, size_t size,
1923                               int flags)
1924 {
1925         struct sock_iocb *siocb = kiocb_to_siocb(iocb);
1926         struct scm_cookie tmp_scm;
1927         struct sock *sk = sock->sk;
1928         struct unix_sock *u = unix_sk(sk);
1929         int noblock = flags & MSG_DONTWAIT;
1930         struct sk_buff *skb;
1931         int err;
1932
1933         err = -EOPNOTSUPP;
1934         if (flags&MSG_OOB)
1935                 goto out;
1936
1937         err = mutex_lock_interruptible(&u->readlock);
1938         if (unlikely(err)) {
1939                 /* recvmsg() in non blocking mode is supposed to return -EAGAIN
1940                  * sk_rcvtimeo is not honored by mutex_lock_interruptible()
1941                  */
1942                 err = noblock ? -EAGAIN : -ERESTARTSYS;
1943                 goto out;
1944         }
1945
1946         skb = skb_recv_datagram(sk, flags, noblock, &err);
1947         if (!skb) {
1948                 unix_state_lock(sk);
1949                 /* Signal EOF on disconnected non-blocking SEQPACKET socket. */
1950                 if (sk->sk_type == SOCK_SEQPACKET && err == -EAGAIN &&
1951                     (sk->sk_shutdown & RCV_SHUTDOWN))
1952                         err = 0;
1953                 unix_state_unlock(sk);
1954                 goto out_unlock;
1955         }
1956
1957         wake_up_interruptible_sync_poll(&u->peer_wait,
1958                                         POLLOUT | POLLWRNORM | POLLWRBAND);
1959
1960         if (msg->msg_name)
1961                 unix_copy_addr(msg, skb->sk);
1962
1963         if (size > skb->len)
1964                 size = skb->len;
1965         else if (size < skb->len)
1966                 msg->msg_flags |= MSG_TRUNC;
1967
1968         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, size);
1969         if (err)
1970                 goto out_free;
1971
1972         if (sock_flag(sk, SOCK_RCVTSTAMP))
1973                 __sock_recv_timestamp(msg, sk, skb);
1974
1975         if (!siocb->scm) {
1976                 siocb->scm = &tmp_scm;
1977                 memset(&tmp_scm, 0, sizeof(tmp_scm));
1978         }
1979         scm_set_cred(siocb->scm, UNIXCB(skb).pid, UNIXCB(skb).cred);
1980         unix_set_secdata(siocb->scm, skb);
1981
1982         if (!(flags & MSG_PEEK)) {
1983                 if (UNIXCB(skb).fp)
1984                         unix_detach_fds(siocb->scm, skb);
1985         } else {
1986                 /* It is questionable: on PEEK we could:
1987                    - do not return fds - good, but too simple 8)
1988                    - return fds, and do not return them on read (old strategy,
1989                      apparently wrong)
1990                    - clone fds (I chose it for now, it is the most universal
1991                      solution)
1992
1993                    POSIX 1003.1g does not actually define this clearly
1994                    at all. POSIX 1003.1g doesn't define a lot of things
1995                    clearly however!
1996
1997                 */
1998                 if (UNIXCB(skb).fp)
1999                         siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp);
2000         }
2001         err = size;
2002
2003         scm_recv(sock, msg, siocb->scm, flags);
2004
2005 out_free:
2006         skb_free_datagram(sk, skb);
2007 out_unlock:
2008         mutex_unlock(&u->readlock);
2009 out:
2010         return err;
2011 }
2012
2013 /*
2014  *      Sleep until data has arrive. But check for races..
2015  */
2016
2017 static long unix_stream_data_wait(struct sock *sk, long timeo)
2018 {
2019         DEFINE_WAIT(wait);
2020
2021         unix_state_lock(sk);
2022
2023         for (;;) {
2024                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
2025
2026                 if (!skb_queue_empty(&sk->sk_receive_queue) ||
2027                     sk->sk_err ||
2028                     (sk->sk_shutdown & RCV_SHUTDOWN) ||
2029                     signal_pending(current) ||
2030                     !timeo)
2031                         break;
2032
2033                 set_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
2034                 unix_state_unlock(sk);
2035                 timeo = schedule_timeout(timeo);
2036                 unix_state_lock(sk);
2037
2038                 if (sock_flag(sk, SOCK_DEAD))
2039                         break;
2040
2041                 clear_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
2042         }
2043
2044         finish_wait(sk_sleep(sk), &wait);
2045         unix_state_unlock(sk);
2046         return timeo;
2047 }
2048
2049
2050
2051 static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
2052                                struct msghdr *msg, size_t size,
2053                                int flags)
2054 {
2055         struct sock_iocb *siocb = kiocb_to_siocb(iocb);
2056         struct scm_cookie tmp_scm;
2057         struct sock *sk = sock->sk;
2058         struct unix_sock *u = unix_sk(sk);
2059         struct sockaddr_un *sunaddr = msg->msg_name;
2060         int copied = 0;
2061         int noblock = flags & MSG_DONTWAIT;
2062         int check_creds = 0;
2063         int target;
2064         int err = 0;
2065         long timeo;
2066
2067         if (unlikely(sk->sk_state != TCP_ESTABLISHED)) {
2068                 err = -EINVAL;
2069                 goto out;
2070         }
2071
2072         if (unlikely(flags & MSG_OOB)) {
2073                 err = -EOPNOTSUPP;
2074                 goto out;
2075         }
2076
2077         target = sock_rcvlowat(sk, flags&MSG_WAITALL, size);
2078         timeo = sock_rcvtimeo(sk, noblock);
2079
2080         /* Lock the socket to prevent queue disordering
2081          * while sleeps in memcpy_tomsg
2082          */
2083
2084         if (!siocb->scm) {
2085                 siocb->scm = &tmp_scm;
2086                 memset(&tmp_scm, 0, sizeof(tmp_scm));
2087         }
2088
2089         mutex_lock(&u->readlock);
2090
2091         do {
2092                 int chunk;
2093                 struct sk_buff *skb;
2094
2095                 unix_state_lock(sk);
2096                 if (sock_flag(sk, SOCK_DEAD)) {
2097                         err = -ECONNRESET;
2098                         goto unlock;
2099                 }
2100                 skb = skb_peek(&sk->sk_receive_queue);
2101                 if (skb == NULL) {
2102                         unix_sk(sk)->recursion_level = 0;
2103                         if (copied >= target)
2104                                 goto unlock;
2105
2106                         /*
2107                          *      POSIX 1003.1g mandates this order.
2108                          */
2109
2110                         err = sock_error(sk);
2111                         if (err)
2112                                 goto unlock;
2113                         if (sk->sk_shutdown & RCV_SHUTDOWN)
2114                                 goto unlock;
2115
2116                         unix_state_unlock(sk);
2117                         if (!timeo) {
2118                                 err = -EAGAIN;
2119                                 break;
2120                         }
2121
2122                         mutex_unlock(&u->readlock);
2123
2124                         timeo = unix_stream_data_wait(sk, timeo);
2125
2126                         if (signal_pending(current)) {
2127                                 err = sock_intr_errno(timeo);
2128                                 scm_destroy(siocb->scm);
2129                                 goto out;
2130                         }
2131
2132                         mutex_lock(&u->readlock);
2133                         continue;
2134  unlock:
2135                         unix_state_unlock(sk);
2136                         break;
2137                 }
2138                 unix_state_unlock(sk);
2139
2140                 if (check_creds) {
2141                         /* Never glue messages from different writers */
2142                         if ((UNIXCB(skb).pid  != siocb->scm->pid) ||
2143                             (UNIXCB(skb).cred != siocb->scm->cred))
2144                                 break;
2145                 } else if (test_bit(SOCK_PASSCRED, &sock->flags)) {
2146                         /* Copy credentials */
2147                         scm_set_cred(siocb->scm, UNIXCB(skb).pid, UNIXCB(skb).cred);
2148                         check_creds = 1;
2149                 }
2150
2151                 /* Copy address just once */
2152                 if (sunaddr) {
2153                         unix_copy_addr(msg, skb->sk);
2154                         sunaddr = NULL;
2155                 }
2156
2157                 chunk = min_t(unsigned int, skb->len, size);
2158                 if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
2159                         if (copied == 0)
2160                                 copied = -EFAULT;
2161                         break;
2162                 }
2163                 copied += chunk;
2164                 size -= chunk;
2165
2166                 /* Mark read part of skb as used */
2167                 if (!(flags & MSG_PEEK)) {
2168                         skb_pull(skb, chunk);
2169
2170                         if (UNIXCB(skb).fp)
2171                                 unix_detach_fds(siocb->scm, skb);
2172
2173                         if (skb->len)
2174                                 break;
2175
2176                         skb_unlink(skb, &sk->sk_receive_queue);
2177                         consume_skb(skb);
2178
2179                         if (siocb->scm->fp)
2180                                 break;
2181                 } else {
2182                         /* It is questionable, see note in unix_dgram_recvmsg.
2183                          */
2184                         if (UNIXCB(skb).fp)
2185                                 siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp);
2186
2187                         break;
2188                 }
2189         } while (size);
2190
2191         mutex_unlock(&u->readlock);
2192         scm_recv(sock, msg, siocb->scm, flags);
2193 out:
2194         return copied ? : err;
2195 }
2196
2197 static int unix_shutdown(struct socket *sock, int mode)
2198 {
2199         struct sock *sk = sock->sk;
2200         struct sock *other;
2201
2202         mode = (mode+1)&(RCV_SHUTDOWN|SEND_SHUTDOWN);
2203
2204         if (!mode)
2205                 return 0;
2206
2207         unix_state_lock(sk);
2208         sk->sk_shutdown |= mode;
2209         other = unix_peer(sk);
2210         if (other)
2211                 sock_hold(other);
2212         unix_state_unlock(sk);
2213         sk->sk_state_change(sk);
2214
2215         if (other &&
2216                 (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET)) {
2217
2218                 int peer_mode = 0;
2219
2220                 if (mode&RCV_SHUTDOWN)
2221                         peer_mode |= SEND_SHUTDOWN;
2222                 if (mode&SEND_SHUTDOWN)
2223                         peer_mode |= RCV_SHUTDOWN;
2224                 unix_state_lock(other);
2225                 other->sk_shutdown |= peer_mode;
2226                 unix_state_unlock(other);
2227                 other->sk_state_change(other);
2228                 if (peer_mode == SHUTDOWN_MASK)
2229                         sk_wake_async(other, SOCK_WAKE_WAITD, POLL_HUP);
2230                 else if (peer_mode & RCV_SHUTDOWN)
2231                         sk_wake_async(other, SOCK_WAKE_WAITD, POLL_IN);
2232         }
2233         if (other)
2234                 sock_put(other);
2235
2236         return 0;
2237 }
2238
2239 static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
2240 {
2241         struct sock *sk = sock->sk;
2242         long amount = 0;
2243         int err;
2244
2245         switch (cmd) {
2246         case SIOCOUTQ:
2247                 amount = sk_wmem_alloc_get(sk);
2248                 err = put_user(amount, (int __user *)arg);
2249                 break;
2250         case SIOCINQ:
2251                 {
2252                         struct sk_buff *skb;
2253
2254                         if (sk->sk_state == TCP_LISTEN) {
2255                                 err = -EINVAL;
2256                                 break;
2257                         }
2258
2259                         spin_lock(&sk->sk_receive_queue.lock);
2260                         if (sk->sk_type == SOCK_STREAM ||
2261                             sk->sk_type == SOCK_SEQPACKET) {
2262                                 skb_queue_walk(&sk->sk_receive_queue, skb)
2263                                         amount += skb->len;
2264                         } else {
2265                                 skb = skb_peek(&sk->sk_receive_queue);
2266                                 if (skb)
2267                                         amount = skb->len;
2268                         }
2269                         spin_unlock(&sk->sk_receive_queue.lock);
2270                         err = put_user(amount, (int __user *)arg);
2271                         break;
2272                 }
2273
2274         default:
2275                 err = -ENOIOCTLCMD;
2276                 break;
2277         }
2278         return err;
2279 }
2280
2281 static unsigned int unix_poll(struct file *file, struct socket *sock, poll_table *wait)
2282 {
2283         struct sock *sk = sock->sk;
2284         unsigned int mask;
2285
2286         sock_poll_wait(file, sk_sleep(sk), wait);
2287         mask = 0;
2288
2289         /* exceptional events? */
2290         if (sk->sk_err)
2291                 mask |= POLLERR;
2292         if (sk->sk_shutdown == SHUTDOWN_MASK)
2293                 mask |= POLLHUP;
2294         if (sk->sk_shutdown & RCV_SHUTDOWN)
2295                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
2296
2297         /* readable? */
2298         if (!skb_queue_empty(&sk->sk_receive_queue))
2299                 mask |= POLLIN | POLLRDNORM;
2300
2301         /* Connection-based need to check for termination and startup */
2302         if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) &&
2303             sk->sk_state == TCP_CLOSE)
2304                 mask |= POLLHUP;
2305
2306         /*
2307          * we set writable also when the other side has shut down the
2308          * connection. This prevents stuck sockets.
2309          */
2310         if (unix_writable(sk))
2311                 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
2312
2313         return mask;
2314 }
2315
2316 static unsigned int unix_dgram_poll(struct file *file, struct socket *sock,
2317                                     poll_table *wait)
2318 {
2319         struct sock *sk = sock->sk, *other;
2320         unsigned int mask, writable;
2321
2322         sock_poll_wait(file, sk_sleep(sk), wait);
2323         mask = 0;
2324
2325         /* exceptional events? */
2326         if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
2327                 mask |= POLLERR;
2328         if (sk->sk_shutdown & RCV_SHUTDOWN)
2329                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
2330         if (sk->sk_shutdown == SHUTDOWN_MASK)
2331                 mask |= POLLHUP;
2332
2333         /* readable? */
2334         if (!skb_queue_empty(&sk->sk_receive_queue))
2335                 mask |= POLLIN | POLLRDNORM;
2336
2337         /* Connection-based need to check for termination and startup */
2338         if (sk->sk_type == SOCK_SEQPACKET) {
2339                 if (sk->sk_state == TCP_CLOSE)
2340                         mask |= POLLHUP;
2341                 /* connection hasn't started yet? */
2342                 if (sk->sk_state == TCP_SYN_SENT)
2343                         return mask;
2344         }
2345
2346         /* No write status requested, avoid expensive OUT tests. */
2347         if (wait && !(wait->key & (POLLWRBAND | POLLWRNORM | POLLOUT)))
2348                 return mask;
2349
2350         writable = unix_writable(sk);
2351         if (writable) {
2352                 unix_state_lock(sk);
2353
2354                 other = unix_peer(sk);
2355                 if (other && unix_peer(other) != sk &&
2356                     unix_recvq_full(other) &&
2357                     unix_dgram_peer_wake_me(sk, other))
2358                         writable = 0;
2359
2360                 unix_state_unlock(sk);
2361         }
2362
2363         if (writable)
2364                 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
2365         else
2366                 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
2367
2368         return mask;
2369 }
2370
2371 #ifdef CONFIG_PROC_FS
2372 static struct sock *first_unix_socket(int *i)
2373 {
2374         for (*i = 0; *i <= UNIX_HASH_SIZE; (*i)++) {
2375                 if (!hlist_empty(&unix_socket_table[*i]))
2376                         return __sk_head(&unix_socket_table[*i]);
2377         }
2378         return NULL;
2379 }
2380
2381 static struct sock *next_unix_socket(int *i, struct sock *s)
2382 {
2383         struct sock *next = sk_next(s);
2384         /* More in this chain? */
2385         if (next)
2386                 return next;
2387         /* Look for next non-empty chain. */
2388         for ((*i)++; *i <= UNIX_HASH_SIZE; (*i)++) {
2389                 if (!hlist_empty(&unix_socket_table[*i]))
2390                         return __sk_head(&unix_socket_table[*i]);
2391         }
2392         return NULL;
2393 }
2394
2395 struct unix_iter_state {
2396         struct seq_net_private p;
2397         int i;
2398 };
2399
2400 static struct sock *unix_seq_idx(struct seq_file *seq, loff_t pos)
2401 {
2402         struct unix_iter_state *iter = seq->private;
2403         loff_t off = 0;
2404         struct sock *s;
2405
2406         for (s = first_unix_socket(&iter->i); s; s = next_unix_socket(&iter->i, s)) {
2407                 if (sock_net(s) != seq_file_net(seq))
2408                         continue;
2409                 if (off == pos)
2410                         return s;
2411                 ++off;
2412         }
2413         return NULL;
2414 }
2415
2416 static void *unix_seq_start(struct seq_file *seq, loff_t *pos)
2417         __acquires(unix_table_lock)
2418 {
2419         spin_lock(&unix_table_lock);
2420         return *pos ? unix_seq_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2421 }
2422
2423 static void *unix_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2424 {
2425         struct unix_iter_state *iter = seq->private;
2426         struct sock *sk = v;
2427         ++*pos;
2428
2429         if (v == SEQ_START_TOKEN)
2430                 sk = first_unix_socket(&iter->i);
2431         else
2432                 sk = next_unix_socket(&iter->i, sk);
2433         while (sk && (sock_net(sk) != seq_file_net(seq)))
2434                 sk = next_unix_socket(&iter->i, sk);
2435         return sk;
2436 }
2437
2438 static void unix_seq_stop(struct seq_file *seq, void *v)
2439         __releases(unix_table_lock)
2440 {
2441         spin_unlock(&unix_table_lock);
2442 }
2443
2444 static int unix_seq_show(struct seq_file *seq, void *v)
2445 {
2446
2447         if (v == SEQ_START_TOKEN)
2448                 seq_puts(seq, "Num       RefCount Protocol Flags    Type St "
2449                          "Inode Path\n");
2450         else {
2451                 struct sock *s = v;
2452                 struct unix_sock *u = unix_sk(s);
2453                 unix_state_lock(s);
2454
2455                 seq_printf(seq, "%pK: %08X %08X %08X %04X %02X %5lu",
2456                         s,
2457                         atomic_read(&s->sk_refcnt),
2458                         0,
2459                         s->sk_state == TCP_LISTEN ? __SO_ACCEPTCON : 0,
2460                         s->sk_type,
2461                         s->sk_socket ?
2462                         (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTED : SS_UNCONNECTED) :
2463                         (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTING : SS_DISCONNECTING),
2464                         sock_i_ino(s));
2465
2466                 if (u->addr) {
2467                         int i, len;
2468                         seq_putc(seq, ' ');
2469
2470                         i = 0;
2471                         len = u->addr->len - sizeof(short);
2472                         if (!UNIX_ABSTRACT(s))
2473                                 len--;
2474                         else {
2475                                 seq_putc(seq, '@');
2476                                 i++;
2477                         }
2478                         for ( ; i < len; i++)
2479                                 seq_putc(seq, u->addr->name->sun_path[i]);
2480                 }
2481                 unix_state_unlock(s);
2482                 seq_putc(seq, '\n');
2483         }
2484
2485         return 0;
2486 }
2487
2488 static const struct seq_operations unix_seq_ops = {
2489         .start  = unix_seq_start,
2490         .next   = unix_seq_next,
2491         .stop   = unix_seq_stop,
2492         .show   = unix_seq_show,
2493 };
2494
2495 static int unix_seq_open(struct inode *inode, struct file *file)
2496 {
2497         return seq_open_net(inode, file, &unix_seq_ops,
2498                             sizeof(struct unix_iter_state));
2499 }
2500
2501 static const struct file_operations unix_seq_fops = {
2502         .owner          = THIS_MODULE,
2503         .open           = unix_seq_open,
2504         .read           = seq_read,
2505         .llseek         = seq_lseek,
2506         .release        = seq_release_net,
2507 };
2508
2509 #endif
2510
2511 static const struct net_proto_family unix_family_ops = {
2512         .family = PF_UNIX,
2513         .create = unix_create,
2514         .owner  = THIS_MODULE,
2515 };
2516
2517
2518 static int __net_init unix_net_init(struct net *net)
2519 {
2520         int error = -ENOMEM;
2521
2522         net->unx.sysctl_max_dgram_qlen = 10;
2523         if (unix_sysctl_register(net))
2524                 goto out;
2525
2526 #ifdef CONFIG_PROC_FS
2527         if (!proc_net_fops_create(net, "unix", 0, &unix_seq_fops)) {
2528                 unix_sysctl_unregister(net);
2529                 goto out;
2530         }
2531 #endif
2532         error = 0;
2533 out:
2534         return error;
2535 }
2536
2537 static void __net_exit unix_net_exit(struct net *net)
2538 {
2539         unix_sysctl_unregister(net);
2540         proc_net_remove(net, "unix");
2541 }
2542
2543 static struct pernet_operations unix_net_ops = {
2544         .init = unix_net_init,
2545         .exit = unix_net_exit,
2546 };
2547
2548 static int __init af_unix_init(void)
2549 {
2550         int rc = -1;
2551         struct sk_buff *dummy_skb;
2552
2553         BUILD_BUG_ON(sizeof(struct unix_skb_parms) > sizeof(dummy_skb->cb));
2554
2555         rc = proto_register(&unix_proto, 1);
2556         if (rc != 0) {
2557                 printk(KERN_CRIT "%s: Cannot create unix_sock SLAB cache!\n",
2558                        __func__);
2559                 goto out;
2560         }
2561
2562         sock_register(&unix_family_ops);
2563         register_pernet_subsys(&unix_net_ops);
2564 out:
2565         return rc;
2566 }
2567
2568 static void __exit af_unix_exit(void)
2569 {
2570         sock_unregister(PF_UNIX);
2571         proto_unregister(&unix_proto);
2572         unregister_pernet_subsys(&unix_net_ops);
2573 }
2574
2575 /* Earlier than device_initcall() so that other drivers invoking
2576    request_module() don't end up in a loop when modprobe tries
2577    to use a UNIX socket. But later than subsys_initcall() because
2578    we depend on stuff initialised there */
2579 fs_initcall(af_unix_init);
2580 module_exit(af_unix_exit);
2581
2582 MODULE_LICENSE("GPL");
2583 MODULE_ALIAS_NETPROTO(PF_UNIX);