af_unix.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:42k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * NET4: Implementation of BSD Unix domain sockets.
  3.  *
  4.  * Authors: Alan Cox, <alan.cox@linux.org>
  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.  * Version: $Id: af_unix.c,v 1.126.2.5 2002/03/05 12:47:34 davem Exp $
  12.  *
  13.  * Fixes:
  14.  * Linus Torvalds : Assorted bug cures.
  15.  * Niibe Yutaka : async I/O support.
  16.  * Carsten Paeth : PF_UNIX check, address fixes.
  17.  * Alan Cox : Limit size of allocated blocks.
  18.  * Alan Cox : Fixed the stupid socketpair bug.
  19.  * Alan Cox : BSD compatibility fine tuning.
  20.  * Alan Cox : Fixed a bug in connect when interrupted.
  21.  * Alan Cox : Sorted out a proper draft version of
  22.  * file descriptor passing hacked up from
  23.  * Mike Shaver's work.
  24.  * Marty Leisner : Fixes to fd passing
  25.  * Nick Nevin : recvmsg bugfix.
  26.  * Alan Cox : Started proper garbage collector
  27.  * Heiko EiBfeldt : Missing verify_area check
  28.  * Alan Cox : Started POSIXisms
  29.  * Andreas Schwab : Replace inode by dentry for proper
  30.  * reference counting
  31.  * Kirk Petersen : Made this a module
  32.  *     Christoph Rohland : Elegant non-blocking accept/connect algorithm.
  33.  * Lots of bug fixes.
  34.  *      Alexey Kuznetosv : Repaired (I hope) bugs introduces
  35.  * by above two patches.
  36.  *      Andrea Arcangeli : If possible we block in connect(2)
  37.  * if the max backlog of the listen socket
  38.  * is been reached. This won't break
  39.  * old apps and it will avoid huge amount
  40.  * of socks hashed (this for unix_gc()
  41.  * performances reasons).
  42.  * Security fix that limits the max
  43.  * number of socks to 2*max_files and
  44.  * the number of skb queueable in the
  45.  * dgram receiver.
  46.  * Artur Skawina   : Hash function optimizations
  47.  *      Alexey Kuznetsov   : Full scale SMP. Lot of bugs are introduced 8)
  48.  *       Malcolm Beattie   : Set peercred for socketpair
  49.  *      Michal Ostrowski   :       Module initialization cleanup.
  50.  *
  51.  *
  52.  * Known differences from reference BSD that was tested:
  53.  *
  54.  * [TO FIX]
  55.  * ECONNREFUSED is not returned from one end of a connected() socket to the
  56.  * other the moment one end closes.
  57.  * fstat() doesn't return st_dev=NODEV, and give the blksize as high water mark
  58.  * and a fake inode identifier (nor the BSD first socket fstat twice bug).
  59.  * [NOT TO FIX]
  60.  * accept() returns a path name even if the connecting socket has closed
  61.  * in the meantime (BSD loses the path and gives up).
  62.  * accept() returns 0 length path for an unbound connector. BSD returns 16
  63.  * and a null first byte in the path (but not for gethost/peername - BSD bug ??)
  64.  * socketpair(...SOCK_RAW..) doesn't panic the kernel.
  65.  * BSD af_unix apparently has connect forgetting to block properly.
  66.  * (need to check this with the POSIX spec in detail)
  67.  *
  68.  * Differences from 2.0.0-11-... (ANK)
  69.  * Bug fixes and improvements.
  70.  * - client shutdown killed server socket.
  71.  * - removed all useless cli/sti pairs.
  72.  *
  73.  * Semantic changes/extensions.
  74.  * - generic control message passing.
  75.  * - SCM_CREDENTIALS control message.
  76.  * - "Abstract" (not FS based) socket bindings.
  77.  *   Abstract names are sequences of bytes (not zero terminated)
  78.  *   started by 0, so that this name space does not intersect
  79.  *   with BSD names.
  80.  */
  81. #include <linux/module.h>
  82. #include <linux/config.h>
  83. #include <linux/kernel.h>
  84. #include <linux/major.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/socket.h>
  91. #include <linux/un.h>
  92. #include <linux/fcntl.h>
  93. #include <linux/termios.h>
  94. #include <linux/sockios.h>
  95. #include <linux/net.h>
  96. #include <linux/in.h>
  97. #include <linux/fs.h>
  98. #include <linux/slab.h>
  99. #include <asm/uaccess.h>
  100. #include <linux/skbuff.h>
  101. #include <linux/netdevice.h>
  102. #include <net/sock.h>
  103. #include <linux/tcp.h>
  104. #include <net/af_unix.h>
  105. #include <linux/proc_fs.h>
  106. #include <net/scm.h>
  107. #include <linux/init.h>
  108. #include <linux/poll.h>
  109. #include <linux/smp_lock.h>
  110. #include <linux/rtnetlink.h>
  111. #include <asm/checksum.h>
  112. int sysctl_unix_max_dgram_qlen = 10;
  113. unix_socket *unix_socket_table[UNIX_HASH_SIZE+1];
  114. rwlock_t unix_table_lock = RW_LOCK_UNLOCKED;
  115. static atomic_t unix_nr_socks = ATOMIC_INIT(0);
  116. #define unix_sockets_unbound (unix_socket_table[UNIX_HASH_SIZE])
  117. #define UNIX_ABSTRACT(sk) ((sk)->protinfo.af_unix.addr->hash!=UNIX_HASH_SIZE)
  118. /*
  119.  *  SMP locking strategy:
  120.  *    hash table is protected with rwlock unix_table_lock
  121.  *    each socket state is protected by separate rwlock.
  122.  */
  123. static inline unsigned unix_hash_fold(unsigned hash)
  124. {
  125. hash ^= hash>>16;
  126. hash ^= hash>>8;
  127. return hash&(UNIX_HASH_SIZE-1);
  128. }
  129. #define unix_peer(sk) ((sk)->pair)
  130. static inline int unix_our_peer(unix_socket *sk, unix_socket *osk)
  131. {
  132. return unix_peer(osk) == sk;
  133. }
  134. static inline int unix_may_send(unix_socket *sk, unix_socket *osk)
  135. {
  136. return (unix_peer(osk) == NULL || unix_our_peer(sk, osk));
  137. }
  138. static inline unix_socket * unix_peer_get(unix_socket *s)
  139. {
  140. unix_socket *peer;
  141. unix_state_rlock(s);
  142. peer = unix_peer(s);
  143. if (peer)
  144. sock_hold(peer);
  145. unix_state_runlock(s);
  146. return peer;
  147. }
  148. extern inline void unix_release_addr(struct unix_address *addr)
  149. {
  150. if (atomic_dec_and_test(&addr->refcnt))
  151. kfree(addr);
  152. }
  153. /*
  154.  * Check unix socket name:
  155.  * - should be not zero length.
  156.  *         - if started by not zero, should be NULL terminated (FS object)
  157.  * - if started by zero, it is abstract name.
  158.  */
  159.  
  160. static int unix_mkname(struct sockaddr_un * sunaddr, int len, unsigned *hashp)
  161. {
  162. if (len <= sizeof(short) || len > sizeof(*sunaddr))
  163. return -EINVAL;
  164. if (!sunaddr || sunaddr->sun_family != AF_UNIX)
  165. return -EINVAL;
  166. if (sunaddr->sun_path[0])
  167. {
  168. /*
  169.  * This may look like an off by one error but it is
  170.  * a bit more subtle. 108 is the longest valid AF_UNIX
  171.  * path for a binding. sun_path[108] doesn't as such
  172.  * exist. However in kernel space we are guaranteed that
  173.  * it is a valid memory location in our kernel
  174.  * address buffer.
  175.  */
  176. if (len > sizeof(*sunaddr))
  177. len = sizeof(*sunaddr);
  178. ((char *)sunaddr)[len]=0;
  179. len = strlen(sunaddr->sun_path)+1+sizeof(short);
  180. return len;
  181. }
  182. *hashp = unix_hash_fold(csum_partial((char*)sunaddr, len, 0));
  183. return len;
  184. }
  185. static void __unix_remove_socket(unix_socket *sk)
  186. {
  187. unix_socket **list = sk->protinfo.af_unix.list;
  188. if (list) {
  189. if (sk->next)
  190. sk->next->prev = sk->prev;
  191. if (sk->prev)
  192. sk->prev->next = sk->next;
  193. if (*list == sk)
  194. *list = sk->next;
  195. sk->protinfo.af_unix.list = NULL;
  196. sk->prev = NULL;
  197. sk->next = NULL;
  198. __sock_put(sk);
  199. }
  200. }
  201. static void __unix_insert_socket(unix_socket **list, unix_socket *sk)
  202. {
  203. BUG_TRAP(sk->protinfo.af_unix.list==NULL);
  204. sk->protinfo.af_unix.list = list;
  205. sk->prev = NULL;
  206. sk->next = *list;
  207. if (*list)
  208. (*list)->prev = sk;
  209. *list=sk;
  210. sock_hold(sk);
  211. }
  212. static inline void unix_remove_socket(unix_socket *sk)
  213. {
  214. write_lock(&unix_table_lock);
  215. __unix_remove_socket(sk);
  216. write_unlock(&unix_table_lock);
  217. }
  218. static inline void unix_insert_socket(unix_socket **list, unix_socket *sk)
  219. {
  220. write_lock(&unix_table_lock);
  221. __unix_insert_socket(list, sk);
  222. write_unlock(&unix_table_lock);
  223. }
  224. static unix_socket *__unix_find_socket_byname(struct sockaddr_un *sunname,
  225.       int len, int type, unsigned hash)
  226. {
  227. unix_socket *s;
  228. for (s=unix_socket_table[hash^type]; s; s=s->next) {
  229. if(s->protinfo.af_unix.addr->len==len &&
  230.    memcmp(s->protinfo.af_unix.addr->name, sunname, len) == 0)
  231. return s;
  232. }
  233. return NULL;
  234. }
  235. static inline unix_socket *
  236. unix_find_socket_byname(struct sockaddr_un *sunname,
  237. int len, int type, unsigned hash)
  238. {
  239. unix_socket *s;
  240. read_lock(&unix_table_lock);
  241. s = __unix_find_socket_byname(sunname, len, type, hash);
  242. if (s)
  243. sock_hold(s);
  244. read_unlock(&unix_table_lock);
  245. return s;
  246. }
  247. static unix_socket *unix_find_socket_byinode(struct inode *i)
  248. {
  249. unix_socket *s;
  250. read_lock(&unix_table_lock);
  251. for (s=unix_socket_table[i->i_ino & (UNIX_HASH_SIZE-1)]; s; s=s->next)
  252. {
  253. struct dentry *dentry = s->protinfo.af_unix.dentry;
  254. if(dentry && dentry->d_inode == i)
  255. {
  256. sock_hold(s);
  257. break;
  258. }
  259. }
  260. read_unlock(&unix_table_lock);
  261. return s;
  262. }
  263. static inline int unix_writable(struct sock *sk)
  264. {
  265. return ((atomic_read(&sk->wmem_alloc)<<2) <= sk->sndbuf);
  266. }
  267. static void unix_write_space(struct sock *sk)
  268. {
  269. read_lock(&sk->callback_lock);
  270. if (unix_writable(sk)) {
  271. if (sk->sleep && waitqueue_active(sk->sleep))
  272. wake_up_interruptible(sk->sleep);
  273. sk_wake_async(sk, 2, POLL_OUT);
  274. }
  275. read_unlock(&sk->callback_lock);
  276. }
  277. /* When dgram socket disconnects (or changes its peer), we clear its receive
  278.  * queue of packets arrived from previous peer. First, it allows to do
  279.  * flow control based only on wmem_alloc; second, sk connected to peer
  280.  * may receive messages only from that peer. */
  281. static void unix_dgram_disconnected(struct sock *sk, struct sock *other)
  282. {
  283. if (skb_queue_len(&sk->receive_queue)) {
  284. skb_queue_purge(&sk->receive_queue);
  285. wake_up_interruptible_all(&sk->protinfo.af_unix.peer_wait);
  286. /* If one link of bidirectional dgram pipe is disconnected,
  287.  * we signal error. Messages are lost. Do not make this,
  288.  * when peer was not connected to us.
  289.  */
  290. if (!other->dead && unix_peer(other) == sk) {
  291. other->err = ECONNRESET;
  292. other->error_report(other);
  293. }
  294. }
  295. }
  296. static void unix_sock_destructor(struct sock *sk)
  297. {
  298. skb_queue_purge(&sk->receive_queue);
  299. BUG_TRAP(atomic_read(&sk->wmem_alloc) == 0);
  300. BUG_TRAP(sk->protinfo.af_unix.list==NULL);
  301. BUG_TRAP(sk->socket==NULL);
  302. if (sk->dead==0) {
  303. printk("Attempt to release alive unix socket: %pn", sk);
  304. return;
  305. }
  306. if (sk->protinfo.af_unix.addr)
  307. unix_release_addr(sk->protinfo.af_unix.addr);
  308. atomic_dec(&unix_nr_socks);
  309. #ifdef UNIX_REFCNT_DEBUG
  310. printk(KERN_DEBUG "UNIX %p is destroyed, %d are still alive.n", sk, atomic_read(&unix_nr_socks));
  311. #endif
  312. MOD_DEC_USE_COUNT;
  313. }
  314. static int unix_release_sock (unix_socket *sk, int embrion)
  315. {
  316. struct dentry *dentry;
  317. struct vfsmount *mnt;
  318. unix_socket *skpair;
  319. struct sk_buff *skb;
  320. int state;
  321. unix_remove_socket(sk);
  322. /* Clear state */
  323. unix_state_wlock(sk);
  324. sock_orphan(sk);
  325. sk->shutdown = SHUTDOWN_MASK;
  326. dentry = sk->protinfo.af_unix.dentry;
  327. sk->protinfo.af_unix.dentry=NULL;
  328. mnt = sk->protinfo.af_unix.mnt;
  329. sk->protinfo.af_unix.mnt=NULL;
  330. state = sk->state;
  331. sk->state = TCP_CLOSE;
  332. unix_state_wunlock(sk);
  333. wake_up_interruptible_all(&sk->protinfo.af_unix.peer_wait);
  334. skpair=unix_peer(sk);
  335. if (skpair!=NULL) {
  336. if (sk->type==SOCK_STREAM) {
  337. unix_state_wlock(skpair);
  338. skpair->shutdown=SHUTDOWN_MASK; /* No more writes*/
  339. if (!skb_queue_empty(&sk->receive_queue) || embrion)
  340. skpair->err = ECONNRESET;
  341. unix_state_wunlock(skpair);
  342. skpair->state_change(skpair);
  343. read_lock(&skpair->callback_lock);
  344. sk_wake_async(skpair,1,POLL_HUP);
  345. read_unlock(&skpair->callback_lock);
  346. }
  347. sock_put(skpair); /* It may now die */
  348. unix_peer(sk) = NULL;
  349. }
  350. /* Try to flush out this socket. Throw out buffers at least */
  351. while((skb=skb_dequeue(&sk->receive_queue))!=NULL)
  352. {
  353. if (state==TCP_LISTEN)
  354. unix_release_sock(skb->sk, 1);
  355. /* passed fds are erased in the kfree_skb hook       */
  356. kfree_skb(skb);
  357. }
  358. if (dentry) {
  359. dput(dentry);
  360. mntput(mnt);
  361. }
  362. sock_put(sk);
  363. /* ---- Socket is dead now and most probably destroyed ---- */
  364. /*
  365.  * Fixme: BSD difference: In BSD all sockets connected to use get
  366.  *   ECONNRESET and we die on the spot. In Linux we behave
  367.  *   like files and pipes do and wait for the last
  368.  *   dereference.
  369.  *
  370.  * Can't we simply set sock->err?
  371.  *
  372.  *   What the above comment does talk about? --ANK(980817)
  373.  */
  374. if (atomic_read(&unix_tot_inflight))
  375. unix_gc(); /* Garbage collect fds */
  376. return 0;
  377. }
  378. static int unix_listen(struct socket *sock, int backlog)
  379. {
  380. int err;
  381. struct sock *sk = sock->sk;
  382. err = -EOPNOTSUPP;
  383. if (sock->type!=SOCK_STREAM)
  384. goto out; /* Only stream sockets accept */
  385. err = -EINVAL;
  386. if (!sk->protinfo.af_unix.addr)
  387. goto out; /* No listens on an unbound socket */
  388. unix_state_wlock(sk);
  389. if (sk->state != TCP_CLOSE && sk->state != TCP_LISTEN)
  390. goto out_unlock;
  391. if (backlog > sk->max_ack_backlog)
  392. wake_up_interruptible_all(&sk->protinfo.af_unix.peer_wait);
  393. sk->max_ack_backlog=backlog;
  394. sk->state=TCP_LISTEN;
  395. /* set credentials so connect can copy them */
  396. sk->peercred.pid = current->pid;
  397. sk->peercred.uid = current->euid;
  398. sk->peercred.gid = current->egid;
  399. err = 0;
  400. out_unlock:
  401. unix_state_wunlock(sk);
  402. out:
  403. return err;
  404. }
  405. extern struct proto_ops unix_stream_ops;
  406. extern struct proto_ops unix_dgram_ops;
  407. static struct sock * unix_create1(struct socket *sock)
  408. {
  409. struct sock *sk;
  410. if (atomic_read(&unix_nr_socks) >= 2*files_stat.max_files)
  411. return NULL;
  412. MOD_INC_USE_COUNT;
  413. sk = sk_alloc(PF_UNIX, GFP_KERNEL, 1);
  414. if (!sk) {
  415. MOD_DEC_USE_COUNT;
  416. return NULL;
  417. }
  418. atomic_inc(&unix_nr_socks);
  419. sock_init_data(sock,sk);
  420. sk->write_space = unix_write_space;
  421. sk->max_ack_backlog = sysctl_unix_max_dgram_qlen;
  422. sk->destruct = unix_sock_destructor;
  423. sk->protinfo.af_unix.dentry=NULL;
  424. sk->protinfo.af_unix.mnt=NULL;
  425. sk->protinfo.af_unix.lock = RW_LOCK_UNLOCKED;
  426. atomic_set(&sk->protinfo.af_unix.inflight, sock ? 0 : -1);
  427. init_MUTEX(&sk->protinfo.af_unix.readsem);/* single task reading lock */
  428. init_waitqueue_head(&sk->protinfo.af_unix.peer_wait);
  429. sk->protinfo.af_unix.list=NULL;
  430. unix_insert_socket(&unix_sockets_unbound, sk);
  431. return sk;
  432. }
  433. static int unix_create(struct socket *sock, int protocol)
  434. {
  435. if (protocol && protocol != PF_UNIX)
  436. return -EPROTONOSUPPORT;
  437. sock->state = SS_UNCONNECTED;
  438. switch (sock->type) {
  439. case SOCK_STREAM:
  440. sock->ops = &unix_stream_ops;
  441. break;
  442. /*
  443.  * Believe it or not BSD has AF_UNIX, SOCK_RAW though
  444.  * nothing uses it.
  445.  */
  446. case SOCK_RAW:
  447. sock->type=SOCK_DGRAM;
  448. case SOCK_DGRAM:
  449. sock->ops = &unix_dgram_ops;
  450. break;
  451. default:
  452. return -ESOCKTNOSUPPORT;
  453. }
  454. return unix_create1(sock) ? 0 : -ENOMEM;
  455. }
  456. static int unix_release(struct socket *sock)
  457. {
  458. unix_socket *sk = sock->sk;
  459. if (!sk)
  460. return 0;
  461. sock->sk = NULL;
  462. return unix_release_sock (sk, 0);
  463. }
  464. static int unix_autobind(struct socket *sock)
  465. {
  466. struct sock *sk = sock->sk;
  467. static u32 ordernum = 1;
  468. struct unix_address * addr;
  469. int err;
  470. down(&sk->protinfo.af_unix.readsem);
  471. err = 0;
  472. if (sk->protinfo.af_unix.addr)
  473. goto out;
  474. err = -ENOMEM;
  475. addr = kmalloc(sizeof(*addr) + sizeof(short) + 16, GFP_KERNEL);
  476. if (!addr)
  477. goto out;
  478. memset(addr, 0, sizeof(*addr) + sizeof(short) + 16);
  479. addr->name->sun_family = AF_UNIX;
  480. atomic_set(&addr->refcnt, 1);
  481. retry:
  482. addr->len = sprintf(addr->name->sun_path+1, "%05x", ordernum) + 1 + sizeof(short);
  483. addr->hash = unix_hash_fold(csum_partial((void*)addr->name, addr->len, 0));
  484. write_lock(&unix_table_lock);
  485. ordernum = (ordernum+1)&0xFFFFF;
  486. if (__unix_find_socket_byname(addr->name, addr->len, sock->type,
  487.       addr->hash)) {
  488. write_unlock(&unix_table_lock);
  489. /* Sanity yield. It is unusual case, but yet... */
  490. if (!(ordernum&0xFF))
  491. yield();
  492. goto retry;
  493. }
  494. addr->hash ^= sk->type;
  495. __unix_remove_socket(sk);
  496. sk->protinfo.af_unix.addr = addr;
  497. __unix_insert_socket(&unix_socket_table[addr->hash], sk);
  498. write_unlock(&unix_table_lock);
  499. err = 0;
  500. out:
  501. up(&sk->protinfo.af_unix.readsem);
  502. return err;
  503. }
  504. static unix_socket *unix_find_other(struct sockaddr_un *sunname, int len,
  505.     int type, unsigned hash, int *error)
  506. {
  507. unix_socket *u;
  508. struct nameidata nd;
  509. int err = 0;
  510. if (sunname->sun_path[0]) {
  511. if (path_init(sunname->sun_path, 
  512.       LOOKUP_POSITIVE|LOOKUP_FOLLOW, &nd))
  513. err = path_walk(sunname->sun_path, &nd);
  514. if (err)
  515. goto fail;
  516. err = permission(nd.dentry->d_inode,MAY_WRITE);
  517. if (err)
  518. goto put_fail;
  519. err = -ECONNREFUSED;
  520. if (!S_ISSOCK(nd.dentry->d_inode->i_mode))
  521. goto put_fail;
  522. u=unix_find_socket_byinode(nd.dentry->d_inode);
  523. if (!u)
  524. goto put_fail;
  525. if (u->type == type)
  526. UPDATE_ATIME(nd.dentry->d_inode);
  527. path_release(&nd);
  528. err=-EPROTOTYPE;
  529. if (u->type != type) {
  530. sock_put(u);
  531. goto fail;
  532. }
  533. } else {
  534. err = -ECONNREFUSED;
  535. u=unix_find_socket_byname(sunname, len, type, hash);
  536. if (u) {
  537. struct dentry *dentry;
  538. dentry = u->protinfo.af_unix.dentry;
  539. if (dentry)
  540. UPDATE_ATIME(dentry->d_inode);
  541. } else
  542. goto fail;
  543. }
  544. return u;
  545. put_fail:
  546. path_release(&nd);
  547. fail:
  548. *error=err;
  549. return NULL;
  550. }
  551. static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  552. {
  553. struct sock *sk = sock->sk;
  554. struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
  555. struct dentry * dentry = NULL;
  556. struct nameidata nd;
  557. int err;
  558. unsigned hash;
  559. struct unix_address *addr;
  560. unix_socket **list;
  561. err = -EINVAL;
  562. if (sunaddr->sun_family != AF_UNIX)
  563. goto out;
  564. if (addr_len==sizeof(short)) {
  565. err = unix_autobind(sock);
  566. goto out;
  567. }
  568. err = unix_mkname(sunaddr, addr_len, &hash);
  569. if (err < 0)
  570. goto out;
  571. addr_len = err;
  572. down(&sk->protinfo.af_unix.readsem);
  573. err = -EINVAL;
  574. if (sk->protinfo.af_unix.addr)
  575. goto out_up;
  576. err = -ENOMEM;
  577. addr = kmalloc(sizeof(*addr)+addr_len, GFP_KERNEL);
  578. if (!addr)
  579. goto out_up;
  580. memcpy(addr->name, sunaddr, addr_len);
  581. addr->len = addr_len;
  582. addr->hash = hash^sk->type;
  583. atomic_set(&addr->refcnt, 1);
  584. if (sunaddr->sun_path[0]) {
  585. unsigned int mode;
  586. err = 0;
  587. /*
  588.  * Get the parent directory, calculate the hash for last
  589.  * component.
  590.  */
  591. if (path_init(sunaddr->sun_path, LOOKUP_PARENT, &nd))
  592. err = path_walk(sunaddr->sun_path, &nd);
  593. if (err)
  594. goto out_mknod_parent;
  595. /*
  596.  * Yucky last component or no last component at all?
  597.  * (foo/., foo/.., /////)
  598.  */
  599. err = -EEXIST;
  600. if (nd.last_type != LAST_NORM)
  601. goto out_mknod;
  602. /*
  603.  * Lock the directory.
  604.  */
  605. down(&nd.dentry->d_inode->i_sem);
  606. /*
  607.  * Do the final lookup.
  608.  */
  609. dentry = lookup_hash(&nd.last, nd.dentry);
  610. err = PTR_ERR(dentry);
  611. if (IS_ERR(dentry))
  612. goto out_mknod_unlock;
  613. err = -ENOENT;
  614. /*
  615.  * Special case - lookup gave negative, but... we had foo/bar/
  616.  * From the vfs_mknod() POV we just have a negative dentry -
  617.  * all is fine. Let's be bastards - you had / on the end, you've
  618.  * been asking for (non-existent) directory. -ENOENT for you.
  619.  */
  620. if (nd.last.name[nd.last.len] && !dentry->d_inode)
  621. goto out_mknod_dput;
  622. /*
  623.  * All right, let's create it.
  624.  */
  625. mode = S_IFSOCK | (sock->inode->i_mode & ~current->fs->umask);
  626. err = vfs_mknod(nd.dentry->d_inode, dentry, mode, 0);
  627. if (err)
  628. goto out_mknod_dput;
  629. up(&nd.dentry->d_inode->i_sem);
  630. dput(nd.dentry);
  631. nd.dentry = dentry;
  632. addr->hash = UNIX_HASH_SIZE;
  633. }
  634. write_lock(&unix_table_lock);
  635. if (!sunaddr->sun_path[0]) {
  636. err = -EADDRINUSE;
  637. if (__unix_find_socket_byname(sunaddr, addr_len,
  638.       sk->type, hash)) {
  639. unix_release_addr(addr);
  640. goto out_unlock;
  641. }
  642. list = &unix_socket_table[addr->hash];
  643. } else {
  644. list = &unix_socket_table[dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1)];
  645. sk->protinfo.af_unix.dentry = nd.dentry;
  646. sk->protinfo.af_unix.mnt = nd.mnt;
  647. }
  648. err = 0;
  649. __unix_remove_socket(sk);
  650. sk->protinfo.af_unix.addr = addr;
  651. __unix_insert_socket(list, sk);
  652. out_unlock:
  653. write_unlock(&unix_table_lock);
  654. out_up:
  655. up(&sk->protinfo.af_unix.readsem);
  656. out:
  657. return err;
  658. out_mknod_dput:
  659. dput(dentry);
  660. out_mknod_unlock:
  661. up(&nd.dentry->d_inode->i_sem);
  662. out_mknod:
  663. path_release(&nd);
  664. out_mknod_parent:
  665. if (err==-EEXIST)
  666. err=-EADDRINUSE;
  667. unix_release_addr(addr);
  668. goto out_up;
  669. }
  670. static int unix_dgram_connect(struct socket *sock, struct sockaddr *addr,
  671.       int alen, int flags)
  672. {
  673. struct sock *sk = sock->sk;
  674. struct sockaddr_un *sunaddr=(struct sockaddr_un*)addr;
  675. struct sock *other;
  676. unsigned hash;
  677. int err;
  678. if (addr->sa_family != AF_UNSPEC) {
  679. err = unix_mkname(sunaddr, alen, &hash);
  680. if (err < 0)
  681. goto out;
  682. alen = err;
  683. if (sock->passcred && !sk->protinfo.af_unix.addr &&
  684.     (err = unix_autobind(sock)) != 0)
  685. goto out;
  686. other=unix_find_other(sunaddr, alen, sock->type, hash, &err);
  687. if (!other)
  688. goto out;
  689. unix_state_wlock(sk);
  690. err = -EPERM;
  691. if (!unix_may_send(sk, other))
  692. goto out_unlock;
  693. } else {
  694. /*
  695.  * 1003.1g breaking connected state with AF_UNSPEC
  696.  */
  697. other = NULL;
  698. unix_state_wlock(sk);
  699. }
  700. /*
  701.  * If it was connected, reconnect.
  702.  */
  703. if (unix_peer(sk)) {
  704. struct sock *old_peer = unix_peer(sk);
  705. unix_peer(sk)=other;
  706. unix_state_wunlock(sk);
  707. if (other != old_peer)
  708. unix_dgram_disconnected(sk, old_peer);
  709. sock_put(old_peer);
  710. } else {
  711. unix_peer(sk)=other;
  712. unix_state_wunlock(sk);
  713. }
  714.   return 0;
  715. out_unlock:
  716. unix_state_wunlock(sk);
  717. sock_put(other);
  718. out:
  719. return err;
  720. }
  721. static long unix_wait_for_peer(unix_socket *other, long timeo)
  722. {
  723. int sched;
  724. DECLARE_WAITQUEUE(wait, current);
  725. __set_current_state(TASK_INTERRUPTIBLE);
  726. add_wait_queue_exclusive(&other->protinfo.af_unix.peer_wait, &wait);
  727. sched = (!other->dead &&
  728.  !(other->shutdown&RCV_SHUTDOWN) &&
  729.  skb_queue_len(&other->receive_queue) > other->max_ack_backlog);
  730. unix_state_runlock(other);
  731. if (sched)
  732. timeo = schedule_timeout(timeo);
  733. __set_current_state(TASK_RUNNING);
  734. remove_wait_queue(&other->protinfo.af_unix.peer_wait, &wait);
  735. return timeo;
  736. }
  737. static int unix_stream_connect(struct socket *sock, struct sockaddr *uaddr,
  738.        int addr_len, int flags)
  739. {
  740. struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
  741. struct sock *sk = sock->sk;
  742. struct sock *newsk = NULL;
  743. unix_socket *other = NULL;
  744. struct sk_buff *skb = NULL;
  745. unsigned hash;
  746. int st;
  747. int err;
  748. long timeo;
  749. err = unix_mkname(sunaddr, addr_len, &hash);
  750. if (err < 0)
  751. goto out;
  752. addr_len = err;
  753. if (sock->passcred && !sk->protinfo.af_unix.addr &&
  754.     (err = unix_autobind(sock)) != 0)
  755. goto out;
  756. timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
  757. /* First of all allocate resources.
  758.    If we will make it after state is locked,
  759.    we will have to recheck all again in any case.
  760.  */
  761. err = -ENOMEM;
  762. /* create new sock for complete connection */
  763. newsk = unix_create1(NULL);
  764. if (newsk == NULL)
  765. goto out;
  766. /* Allocate skb for sending to listening sock */
  767. skb = sock_wmalloc(newsk, 1, 0, GFP_KERNEL);
  768. if (skb == NULL)
  769. goto out;
  770. restart:
  771. /*  Find listening sock. */
  772. other=unix_find_other(sunaddr, addr_len, sk->type, hash, &err);
  773. if (!other)
  774. goto out;
  775. /* Latch state of peer */
  776. unix_state_rlock(other);
  777. /* Apparently VFS overslept socket death. Retry. */
  778. if (other->dead) {
  779. unix_state_runlock(other);
  780. sock_put(other);
  781. goto restart;
  782. }
  783. err = -ECONNREFUSED;
  784. if (other->state != TCP_LISTEN)
  785. goto out_unlock;
  786. if (skb_queue_len(&other->receive_queue) > other->max_ack_backlog) {
  787. err = -EAGAIN;
  788. if (!timeo)
  789. goto out_unlock;
  790. timeo = unix_wait_for_peer(other, timeo);
  791. err = sock_intr_errno(timeo);
  792. if (signal_pending(current))
  793. goto out;
  794. sock_put(other);
  795. goto restart;
  796.         }
  797. /* Latch our state.
  798.    It is tricky place. We need to grab write lock and cannot
  799.    drop lock on peer. It is dangerous because deadlock is
  800.    possible. Connect to self case and simultaneous
  801.    attempt to connect are eliminated by checking socket
  802.    state. other is TCP_LISTEN, if sk is TCP_LISTEN we
  803.    check this before attempt to grab lock.
  804.    Well, and we have to recheck the state after socket locked.
  805.  */
  806. st = sk->state;
  807. switch (st) {
  808. case TCP_CLOSE:
  809. /* This is ok... continue with connect */
  810. break;
  811. case TCP_ESTABLISHED:
  812. /* Socket is already connected */
  813. err = -EISCONN;
  814. goto out_unlock;
  815. default:
  816. err = -EINVAL;
  817. goto out_unlock;
  818. }
  819. unix_state_wlock(sk);
  820. if (sk->state != st) {
  821. unix_state_wunlock(sk);
  822. unix_state_runlock(other);
  823. sock_put(other);
  824. goto restart;
  825. }
  826. /* The way is open! Fastly set all the necessary fields... */
  827. sock_hold(sk);
  828. unix_peer(newsk)=sk;
  829. newsk->state=TCP_ESTABLISHED;
  830. newsk->type=SOCK_STREAM;
  831. newsk->peercred.pid = current->pid;
  832. newsk->peercred.uid = current->euid;
  833. newsk->peercred.gid = current->egid;
  834. newsk->sleep = &newsk->protinfo.af_unix.peer_wait;
  835. /* copy address information from listening to new sock*/
  836. if (other->protinfo.af_unix.addr)
  837. {
  838. atomic_inc(&other->protinfo.af_unix.addr->refcnt);
  839. newsk->protinfo.af_unix.addr=other->protinfo.af_unix.addr;
  840. }
  841. if (other->protinfo.af_unix.dentry) {
  842. newsk->protinfo.af_unix.dentry=dget(other->protinfo.af_unix.dentry);
  843. newsk->protinfo.af_unix.mnt=mntget(other->protinfo.af_unix.mnt);
  844. }
  845. /* Set credentials */
  846. sk->peercred = other->peercred;
  847. sock_hold(newsk);
  848. unix_peer(sk)=newsk;
  849. sock->state=SS_CONNECTED;
  850. sk->state=TCP_ESTABLISHED;
  851. unix_state_wunlock(sk);
  852. /* take ten and and send info to listening sock */
  853. spin_lock(&other->receive_queue.lock);
  854. __skb_queue_tail(&other->receive_queue,skb);
  855. /* Undo artificially decreased inflight after embrion
  856.  * is installed to listening socket. */
  857. atomic_inc(&newsk->protinfo.af_unix.inflight);
  858. spin_unlock(&other->receive_queue.lock);
  859. unix_state_runlock(other);
  860. other->data_ready(other, 0);
  861. sock_put(other);
  862. return 0;
  863. out_unlock:
  864. if (other)
  865. unix_state_runlock(other);
  866. out:
  867. if (skb)
  868. kfree_skb(skb);
  869. if (newsk)
  870. unix_release_sock(newsk, 0);
  871. if (other)
  872. sock_put(other);
  873. return err;
  874. }
  875. static int unix_socketpair(struct socket *socka, struct socket *sockb)
  876. {
  877. struct sock *ska=socka->sk, *skb = sockb->sk;
  878. /* Join our sockets back to back */
  879. sock_hold(ska);
  880. sock_hold(skb);
  881. unix_peer(ska)=skb;
  882. unix_peer(skb)=ska;
  883. ska->peercred.pid = skb->peercred.pid = current->pid;
  884. ska->peercred.uid = skb->peercred.uid = current->euid;
  885. ska->peercred.gid = skb->peercred.gid = current->egid;
  886. if (ska->type != SOCK_DGRAM)
  887. {
  888. ska->state=TCP_ESTABLISHED;
  889. skb->state=TCP_ESTABLISHED;
  890. socka->state=SS_CONNECTED;
  891. sockb->state=SS_CONNECTED;
  892. }
  893. return 0;
  894. }
  895. static int unix_accept(struct socket *sock, struct socket *newsock, int flags)
  896. {
  897. unix_socket *sk = sock->sk;
  898. unix_socket *tsk;
  899. struct sk_buff *skb;
  900. int err;
  901. err = -EOPNOTSUPP;
  902. if (sock->type!=SOCK_STREAM)
  903. goto out;
  904. err = -EINVAL;
  905. if (sk->state!=TCP_LISTEN)
  906. goto out;
  907. /* If socket state is TCP_LISTEN it cannot change (for now...),
  908.  * so that no locks are necessary.
  909.  */
  910. skb = skb_recv_datagram(sk, 0, flags&O_NONBLOCK, &err);
  911. if (!skb) {
  912. /* This means receive shutdown. */
  913. if (err == 0)
  914. err = -EINVAL;
  915. goto out;
  916. }
  917. tsk = skb->sk;
  918. skb_free_datagram(sk, skb);
  919. wake_up_interruptible(&sk->protinfo.af_unix.peer_wait);
  920. /* attach accepted sock to socket */
  921. unix_state_wlock(tsk);
  922. newsock->state = SS_CONNECTED;
  923. sock_graft(tsk, newsock);
  924. unix_state_wunlock(tsk);
  925. return 0;
  926. out:
  927. return err;
  928. }
  929. static int unix_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len, int peer)
  930. {
  931. struct sock *sk = sock->sk;
  932. struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
  933. int err = 0;
  934. if (peer) {
  935. sk = unix_peer_get(sk);
  936. err = -ENOTCONN;
  937. if (!sk)
  938. goto out;
  939. err = 0;
  940. } else {
  941. sock_hold(sk);
  942. }
  943. unix_state_rlock(sk);
  944. if (!sk->protinfo.af_unix.addr) {
  945. sunaddr->sun_family = AF_UNIX;
  946. sunaddr->sun_path[0] = 0;
  947. *uaddr_len = sizeof(short);
  948. } else {
  949. struct unix_address *addr = sk->protinfo.af_unix.addr;
  950. *uaddr_len = addr->len;
  951. memcpy(sunaddr, addr->name, *uaddr_len);
  952. }
  953. unix_state_runlock(sk);
  954. sock_put(sk);
  955. out:
  956. return err;
  957. }
  958. static void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb)
  959. {
  960. int i;
  961. scm->fp = UNIXCB(skb).fp;
  962. skb->destructor = sock_wfree;
  963. UNIXCB(skb).fp = NULL;
  964. for (i=scm->fp->count-1; i>=0; i--)
  965. unix_notinflight(scm->fp->fp[i]);
  966. }
  967. static void unix_destruct_fds(struct sk_buff *skb)
  968. {
  969. struct scm_cookie scm;
  970. memset(&scm, 0, sizeof(scm));
  971. unix_detach_fds(&scm, skb);
  972. /* Alas, it calls VFS */
  973. /* So fscking what? fput() had been SMP-safe since the last Summer */
  974. scm_destroy(&scm);
  975. sock_wfree(skb);
  976. }
  977. static void unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
  978. {
  979. int i;
  980. for (i=scm->fp->count-1; i>=0; i--)
  981. unix_inflight(scm->fp->fp[i]);
  982. UNIXCB(skb).fp = scm->fp;
  983. skb->destructor = unix_destruct_fds;
  984. scm->fp = NULL;
  985. }
  986. /*
  987.  * Send AF_UNIX data.
  988.  */
  989. static int unix_dgram_sendmsg(struct socket *sock, struct msghdr *msg, int len,
  990.       struct scm_cookie *scm)
  991. {
  992. struct sock *sk = sock->sk;
  993. struct sockaddr_un *sunaddr=msg->msg_name;
  994. unix_socket *other = NULL;
  995. int namelen = 0; /* fake GCC */
  996. int err;
  997. unsigned hash;
  998. struct sk_buff *skb;
  999. long timeo;
  1000. err = -EOPNOTSUPP;
  1001. if (msg->msg_flags&MSG_OOB)
  1002. goto out;
  1003. if (msg->msg_namelen) {
  1004. err = unix_mkname(sunaddr, msg->msg_namelen, &hash);
  1005. if (err < 0)
  1006. goto out;
  1007. namelen = err;
  1008. } else {
  1009. sunaddr = NULL;
  1010. err = -ENOTCONN;
  1011. other = unix_peer_get(sk);
  1012. if (!other)
  1013. goto out;
  1014. }
  1015. if (sock->passcred && !sk->protinfo.af_unix.addr &&
  1016.     (err = unix_autobind(sock)) != 0)
  1017. goto out;
  1018. err = -EMSGSIZE;
  1019. if ((unsigned)len > sk->sndbuf - 32)
  1020. goto out;
  1021. skb = sock_alloc_send_skb(sk, len, msg->msg_flags&MSG_DONTWAIT, &err);
  1022. if (skb==NULL)
  1023. goto out;
  1024. memcpy(UNIXCREDS(skb), &scm->creds, sizeof(struct ucred));
  1025. if (scm->fp)
  1026. unix_attach_fds(scm, skb);
  1027. skb->h.raw = skb->data;
  1028. err = memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len);
  1029. if (err)
  1030. goto out_free;
  1031. timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
  1032. restart:
  1033. if (!other) {
  1034. err = -ECONNRESET;
  1035. if (sunaddr == NULL)
  1036. goto out_free;
  1037. other = unix_find_other(sunaddr, namelen, sk->type, hash, &err);
  1038. if (other==NULL)
  1039. goto out_free;
  1040. }
  1041. unix_state_rlock(other);
  1042. err = -EPERM;
  1043. if (!unix_may_send(sk, other))
  1044. goto out_unlock;
  1045. if (other->dead) {
  1046. /*
  1047.  * Check with 1003.1g - what should
  1048.  * datagram error
  1049.  */
  1050. unix_state_runlock(other);
  1051. sock_put(other);
  1052. err = 0;
  1053. unix_state_wlock(sk);
  1054. if (unix_peer(sk) == other) {
  1055. unix_peer(sk)=NULL;
  1056. unix_state_wunlock(sk);
  1057. unix_dgram_disconnected(sk, other);
  1058. sock_put(other);
  1059. err = -ECONNREFUSED;
  1060. } else {
  1061. unix_state_wunlock(sk);
  1062. }
  1063. other = NULL;
  1064. if (err)
  1065. goto out_free;
  1066. goto restart;
  1067. }
  1068. err = -EPIPE;
  1069. if (other->shutdown&RCV_SHUTDOWN)
  1070. goto out_unlock;
  1071. if (unix_peer(other) != sk &&
  1072.     skb_queue_len(&other->receive_queue) > other->max_ack_backlog) {
  1073. if (!timeo) {
  1074. err = -EAGAIN;
  1075. goto out_unlock;
  1076. }
  1077. timeo = unix_wait_for_peer(other, timeo);
  1078. err = sock_intr_errno(timeo);
  1079. if (signal_pending(current))
  1080. goto out_free;
  1081. goto restart;
  1082. }
  1083. skb_queue_tail(&other->receive_queue, skb);
  1084. unix_state_runlock(other);
  1085. other->data_ready(other, len);
  1086. sock_put(other);
  1087. return len;
  1088. out_unlock:
  1089. unix_state_runlock(other);
  1090. out_free:
  1091. kfree_skb(skb);
  1092. out:
  1093. if (other)
  1094. sock_put(other);
  1095. return err;
  1096. }
  1097. static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg, int len,
  1098.        struct scm_cookie *scm)
  1099. {
  1100. struct sock *sk = sock->sk;
  1101. unix_socket *other = NULL;
  1102. struct sockaddr_un *sunaddr=msg->msg_name;
  1103. int err,size;
  1104. struct sk_buff *skb;
  1105. int sent=0;
  1106. err = -EOPNOTSUPP;
  1107. if (msg->msg_flags&MSG_OOB)
  1108. goto out_err;
  1109. if (msg->msg_namelen) {
  1110. err = (sk->state==TCP_ESTABLISHED ? -EISCONN : -EOPNOTSUPP);
  1111. goto out_err;
  1112. } else {
  1113. sunaddr = NULL;
  1114. err = -ENOTCONN;
  1115. other = unix_peer_get(sk);
  1116. if (!other)
  1117. goto out_err;
  1118. }
  1119. if (sk->shutdown&SEND_SHUTDOWN)
  1120. goto pipe_err;
  1121. while(sent < len)
  1122. {
  1123. /*
  1124.  * Optimisation for the fact that under 0.01% of X messages typically
  1125.  * need breaking up.
  1126.  */
  1127. size=len-sent;
  1128. /* Keep two messages in the pipe so it schedules better */
  1129. if (size > sk->sndbuf/2 - 64)
  1130. size = sk->sndbuf/2 - 64;
  1131. if (size > SKB_MAX_ALLOC)
  1132. size = SKB_MAX_ALLOC;
  1133. /*
  1134.  * Grab a buffer
  1135.  */
  1136.  
  1137. skb=sock_alloc_send_skb(sk,size,msg->msg_flags&MSG_DONTWAIT, &err);
  1138. if (skb==NULL)
  1139. goto out_err;
  1140. /*
  1141.  * If you pass two values to the sock_alloc_send_skb
  1142.  * it tries to grab the large buffer with GFP_NOFS
  1143.  * (which can fail easily), and if it fails grab the
  1144.  * fallback size buffer which is under a page and will
  1145.  * succeed. [Alan]
  1146.  */
  1147. size = min_t(int, size, skb_tailroom(skb));
  1148. memcpy(UNIXCREDS(skb), &scm->creds, sizeof(struct ucred));
  1149. if (scm->fp)
  1150. unix_attach_fds(scm, skb);
  1151. if ((err = memcpy_fromiovec(skb_put(skb,size), msg->msg_iov, size)) != 0) {
  1152. kfree_skb(skb);
  1153. goto out_err;
  1154. }
  1155. unix_state_rlock(other);
  1156. if (other->dead || (other->shutdown & RCV_SHUTDOWN))
  1157. goto pipe_err_free;
  1158. skb_queue_tail(&other->receive_queue, skb);
  1159. unix_state_runlock(other);
  1160. other->data_ready(other, size);
  1161. sent+=size;
  1162. }
  1163. sock_put(other);
  1164. return sent;
  1165. pipe_err_free:
  1166. unix_state_runlock(other);
  1167. kfree_skb(skb);
  1168. pipe_err:
  1169. if (sent==0 && !(msg->msg_flags&MSG_NOSIGNAL))
  1170. send_sig(SIGPIPE,current,0);
  1171. err = -EPIPE;
  1172. out_err:
  1173.         if (other)
  1174. sock_put(other);
  1175. return sent ? : err;
  1176. }
  1177. static void unix_copy_addr(struct msghdr *msg, struct sock *sk)
  1178. {
  1179. msg->msg_namelen = 0;
  1180. if (sk->protinfo.af_unix.addr) {
  1181. msg->msg_namelen=sk->protinfo.af_unix.addr->len;
  1182. memcpy(msg->msg_name,
  1183.        sk->protinfo.af_unix.addr->name,
  1184.        sk->protinfo.af_unix.addr->len);
  1185. }
  1186. }
  1187. static int unix_dgram_recvmsg(struct socket *sock, struct msghdr *msg, int size,
  1188.       int flags, struct scm_cookie *scm)
  1189. {
  1190. struct sock *sk = sock->sk;
  1191. int noblock = flags & MSG_DONTWAIT;
  1192. struct sk_buff *skb;
  1193. int err;
  1194. err = -EOPNOTSUPP;
  1195. if (flags&MSG_OOB)
  1196. goto out;
  1197. msg->msg_namelen = 0;
  1198. skb = skb_recv_datagram(sk, flags, noblock, &err);
  1199. if (!skb)
  1200. goto out;
  1201. wake_up_interruptible(&sk->protinfo.af_unix.peer_wait);
  1202. if (msg->msg_name)
  1203. unix_copy_addr(msg, skb->sk);
  1204. if (size > skb->len)
  1205. size = skb->len;
  1206. else if (size < skb->len)
  1207. msg->msg_flags |= MSG_TRUNC;
  1208. err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, size);
  1209. if (err)
  1210. goto out_free;
  1211. scm->creds = *UNIXCREDS(skb);
  1212. if (!(flags & MSG_PEEK))
  1213. {
  1214. if (UNIXCB(skb).fp)
  1215. unix_detach_fds(scm, skb);
  1216. }
  1217. else 
  1218. {
  1219. /* It is questionable: on PEEK we could:
  1220.    - do not return fds - good, but too simple 8)
  1221.    - return fds, and do not return them on read (old strategy,
  1222.      apparently wrong)
  1223.    - clone fds (I choosed it for now, it is the most universal
  1224.      solution)
  1225.            POSIX 1003.1g does not actually define this clearly
  1226.            at all. POSIX 1003.1g doesn't define a lot of things
  1227.            clearly however!      
  1228.    
  1229. */
  1230. if (UNIXCB(skb).fp)
  1231. scm->fp = scm_fp_dup(UNIXCB(skb).fp);
  1232. }
  1233. err = size;
  1234. out_free:
  1235. skb_free_datagram(sk,skb);
  1236. out:
  1237. return err;
  1238. }
  1239. /*
  1240.  * Sleep until data has arrive. But check for races..
  1241.  */
  1242.  
  1243. static long unix_stream_data_wait(unix_socket * sk, long timeo)
  1244. {
  1245. DECLARE_WAITQUEUE(wait, current);
  1246. unix_state_rlock(sk);
  1247. add_wait_queue(sk->sleep, &wait);
  1248. for (;;) {
  1249. set_current_state(TASK_INTERRUPTIBLE);
  1250. if (skb_queue_len(&sk->receive_queue) ||
  1251.     sk->err ||
  1252.     (sk->shutdown & RCV_SHUTDOWN) ||
  1253.     signal_pending(current) ||
  1254.     !timeo)
  1255. break;
  1256. set_bit(SOCK_ASYNC_WAITDATA, &sk->socket->flags);
  1257. unix_state_runlock(sk);
  1258. timeo = schedule_timeout(timeo);
  1259. unix_state_rlock(sk);
  1260. clear_bit(SOCK_ASYNC_WAITDATA, &sk->socket->flags);
  1261. }
  1262. __set_current_state(TASK_RUNNING);
  1263. remove_wait_queue(sk->sleep, &wait);
  1264. unix_state_runlock(sk);
  1265. return timeo;
  1266. }
  1267. static int unix_stream_recvmsg(struct socket *sock, struct msghdr *msg, int size,
  1268.        int flags, struct scm_cookie *scm)
  1269. {
  1270. struct sock *sk = sock->sk;
  1271. struct sockaddr_un *sunaddr=msg->msg_name;
  1272. int copied = 0;
  1273. int check_creds = 0;
  1274. int target;
  1275. int err = 0;
  1276. long timeo;
  1277. err = -EINVAL;
  1278. if (sk->state != TCP_ESTABLISHED)
  1279. goto out;
  1280. err = -EOPNOTSUPP;
  1281. if (flags&MSG_OOB)
  1282. goto out;
  1283. target = sock_rcvlowat(sk, flags&MSG_WAITALL, size);
  1284. timeo = sock_rcvtimeo(sk, flags&MSG_DONTWAIT);
  1285. msg->msg_namelen = 0;
  1286. /* Lock the socket to prevent queue disordering
  1287.  * while sleeps in memcpy_tomsg
  1288.  */
  1289. down(&sk->protinfo.af_unix.readsem);
  1290. do
  1291. {
  1292. int chunk;
  1293. struct sk_buff *skb;
  1294. skb=skb_dequeue(&sk->receive_queue);
  1295. if (skb==NULL)
  1296. {
  1297. if (copied >= target)
  1298. break;
  1299. /*
  1300.  * POSIX 1003.1g mandates this order.
  1301.  */
  1302.  
  1303. if ((err = sock_error(sk)) != 0)
  1304. break;
  1305. if (sk->shutdown & RCV_SHUTDOWN)
  1306. break;
  1307. err = -EAGAIN;
  1308. if (!timeo)
  1309. break;
  1310. up(&sk->protinfo.af_unix.readsem);
  1311. timeo = unix_stream_data_wait(sk, timeo);
  1312. if (signal_pending(current)) {
  1313. err = sock_intr_errno(timeo);
  1314. goto out;
  1315. }
  1316. down(&sk->protinfo.af_unix.readsem);
  1317. continue;
  1318. }
  1319. if (check_creds) {
  1320. /* Never glue messages from different writers */
  1321. if (memcmp(UNIXCREDS(skb), &scm->creds, sizeof(scm->creds)) != 0) {
  1322. skb_queue_head(&sk->receive_queue, skb);
  1323. break;
  1324. }
  1325. } else {
  1326. /* Copy credentials */
  1327. scm->creds = *UNIXCREDS(skb);
  1328. check_creds = 1;
  1329. }
  1330. /* Copy address just once */
  1331. if (sunaddr)
  1332. {
  1333. unix_copy_addr(msg, skb->sk);
  1334. sunaddr = NULL;
  1335. }
  1336. chunk = min_t(unsigned int, skb->len, size);
  1337. if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
  1338. skb_queue_head(&sk->receive_queue, skb);
  1339. if (copied == 0)
  1340. copied = -EFAULT;
  1341. break;
  1342. }
  1343. copied += chunk;
  1344. size -= chunk;
  1345. /* Mark read part of skb as used */
  1346. if (!(flags & MSG_PEEK))
  1347. {
  1348. skb_pull(skb, chunk);
  1349. if (UNIXCB(skb).fp)
  1350. unix_detach_fds(scm, skb);
  1351. /* put the skb back if we didn't use it up.. */
  1352. if (skb->len)
  1353. {
  1354. skb_queue_head(&sk->receive_queue, skb);
  1355. break;
  1356. }
  1357. kfree_skb(skb);
  1358. if (scm->fp)
  1359. break;
  1360. }
  1361. else
  1362. {
  1363. /* It is questionable, see note in unix_dgram_recvmsg.
  1364.  */
  1365. if (UNIXCB(skb).fp)
  1366. scm->fp = scm_fp_dup(UNIXCB(skb).fp);
  1367. /* put message back and return */
  1368. skb_queue_head(&sk->receive_queue, skb);
  1369. break;
  1370. }
  1371. } while (size);
  1372. up(&sk->protinfo.af_unix.readsem);
  1373. out:
  1374. return copied ? : err;
  1375. }
  1376. static int unix_shutdown(struct socket *sock, int mode)
  1377. {
  1378. struct sock *sk = sock->sk;
  1379. unix_socket *other;
  1380. mode = (mode+1)&(RCV_SHUTDOWN|SEND_SHUTDOWN);
  1381. if (mode) {
  1382. unix_state_wlock(sk);
  1383. sk->shutdown |= mode;
  1384. other=unix_peer(sk);
  1385. if (other)
  1386. sock_hold(other);
  1387. unix_state_wunlock(sk);
  1388. sk->state_change(sk);
  1389. if (other && sk->type == SOCK_STREAM) {
  1390. int peer_mode = 0;
  1391. if (mode&RCV_SHUTDOWN)
  1392. peer_mode |= SEND_SHUTDOWN;
  1393. if (mode&SEND_SHUTDOWN)
  1394. peer_mode |= RCV_SHUTDOWN;
  1395. unix_state_wlock(other);
  1396. other->shutdown |= peer_mode;
  1397. unix_state_wunlock(other);
  1398. other->state_change(other);
  1399. read_lock(&other->callback_lock);
  1400. if (peer_mode == SHUTDOWN_MASK)
  1401. sk_wake_async(other,1,POLL_HUP);
  1402. else if (peer_mode & RCV_SHUTDOWN)
  1403. sk_wake_async(other,1,POLL_IN);
  1404. read_unlock(&other->callback_lock);
  1405. }
  1406. if (other)
  1407. sock_put(other);
  1408. }
  1409. return 0;
  1410. }
  1411. static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  1412. {
  1413. struct sock *sk = sock->sk;
  1414. long amount=0;
  1415. int err;
  1416. switch(cmd)
  1417. {
  1418. case SIOCOUTQ:
  1419. amount = atomic_read(&sk->wmem_alloc);
  1420. err = put_user(amount, (int *)arg);
  1421. break;
  1422. case SIOCINQ:
  1423. {
  1424. struct sk_buff *skb;
  1425. if (sk->state==TCP_LISTEN) {
  1426. err = -EINVAL;
  1427. break;
  1428. }
  1429. spin_lock(&sk->receive_queue.lock);
  1430. if((skb=skb_peek(&sk->receive_queue))!=NULL)
  1431. amount=skb->len;
  1432. spin_unlock(&sk->receive_queue.lock);
  1433. err = put_user(amount, (int *)arg);
  1434. break;
  1435. }
  1436. default:
  1437. err = dev_ioctl(cmd, (void *)arg);
  1438. break;
  1439. }
  1440. return err;
  1441. }
  1442. static unsigned int unix_poll(struct file * file, struct socket *sock, poll_table *wait)
  1443. {
  1444. struct sock *sk = sock->sk;
  1445. unsigned int mask;
  1446. poll_wait(file, sk->sleep, wait);
  1447. mask = 0;
  1448. /* exceptional events? */
  1449. if (sk->err)
  1450. mask |= POLLERR;
  1451. if (sk->shutdown == SHUTDOWN_MASK)
  1452. mask |= POLLHUP;
  1453. /* readable? */
  1454. if (!skb_queue_empty(&sk->receive_queue) || (sk->shutdown&RCV_SHUTDOWN))
  1455. mask |= POLLIN | POLLRDNORM;
  1456. /* Connection-based need to check for termination and startup */
  1457. if (sk->type == SOCK_STREAM && sk->state==TCP_CLOSE)
  1458. mask |= POLLHUP;
  1459. /*
  1460.  * we set writable also when the other side has shut down the
  1461.  * connection. This prevents stuck sockets.
  1462.  */
  1463. if (unix_writable(sk))
  1464. mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
  1465. return mask;
  1466. }
  1467. #ifdef CONFIG_PROC_FS
  1468. static int unix_read_proc(char *buffer, char **start, off_t offset,
  1469.   int length, int *eof, void *data)
  1470. {
  1471. off_t pos=0;
  1472. off_t begin=0;
  1473. int len=0;
  1474. int i;
  1475. unix_socket *s;
  1476. len+= sprintf(buffer,"Num       RefCount Protocol Flags    Type St "
  1477.     "Inode Pathn");
  1478. read_lock(&unix_table_lock);
  1479. forall_unix_sockets (i,s)
  1480. {
  1481. unix_state_rlock(s);
  1482. len+=sprintf(buffer+len,"%p: %08X %08X %08X %04X %02X %5lu",
  1483. s,
  1484. atomic_read(&s->refcnt),
  1485. 0,
  1486. s->state == TCP_LISTEN ? __SO_ACCEPTCON : 0,
  1487. s->type,
  1488. s->socket ?
  1489. (s->state == TCP_ESTABLISHED ? SS_CONNECTED : SS_UNCONNECTED) :
  1490. (s->state == TCP_ESTABLISHED ? SS_CONNECTING : SS_DISCONNECTING),
  1491. sock_i_ino(s));
  1492. if (s->protinfo.af_unix.addr)
  1493. {
  1494. buffer[len++] = ' ';
  1495. memcpy(buffer+len, s->protinfo.af_unix.addr->name->sun_path,
  1496.        s->protinfo.af_unix.addr->len-sizeof(short));
  1497. if (!UNIX_ABSTRACT(s))
  1498. len--;
  1499. else
  1500. buffer[len] = '@';
  1501. len += s->protinfo.af_unix.addr->len - sizeof(short);
  1502. }
  1503. unix_state_runlock(s);
  1504. buffer[len++]='n';
  1505. pos = begin + len;
  1506. if(pos<offset)
  1507. {
  1508. len=0;
  1509. begin=pos;
  1510. }
  1511. if(pos>offset+length)
  1512. goto done;
  1513. }
  1514. *eof = 1;
  1515. done:
  1516. read_unlock(&unix_table_lock);
  1517. *start=buffer+(offset-begin);
  1518. len-=(offset-begin);
  1519. if(len>length)
  1520. len=length;
  1521. if (len < 0)
  1522. len = 0;
  1523. return len;
  1524. }
  1525. #endif
  1526. struct proto_ops unix_stream_ops = {
  1527. family: PF_UNIX,
  1528. release: unix_release,
  1529. bind: unix_bind,
  1530. connect: unix_stream_connect,
  1531. socketpair: unix_socketpair,
  1532. accept: unix_accept,
  1533. getname: unix_getname,
  1534. poll: unix_poll,
  1535. ioctl: unix_ioctl,
  1536. listen: unix_listen,
  1537. shutdown: unix_shutdown,
  1538. setsockopt: sock_no_setsockopt,
  1539. getsockopt: sock_no_getsockopt,
  1540. sendmsg: unix_stream_sendmsg,
  1541. recvmsg: unix_stream_recvmsg,
  1542. mmap: sock_no_mmap,
  1543. sendpage: sock_no_sendpage,
  1544. };
  1545. struct proto_ops unix_dgram_ops = {
  1546. family: PF_UNIX,
  1547. release: unix_release,
  1548. bind: unix_bind,
  1549. connect: unix_dgram_connect,
  1550. socketpair: unix_socketpair,
  1551. accept: sock_no_accept,
  1552. getname: unix_getname,
  1553. poll: datagram_poll,
  1554. ioctl: unix_ioctl,
  1555. listen: sock_no_listen,
  1556. shutdown: unix_shutdown,
  1557. setsockopt: sock_no_setsockopt,
  1558. getsockopt: sock_no_getsockopt,
  1559. sendmsg: unix_dgram_sendmsg,
  1560. recvmsg: unix_dgram_recvmsg,
  1561. mmap: sock_no_mmap,
  1562. sendpage: sock_no_sendpage,
  1563. };
  1564. struct net_proto_family unix_family_ops = {
  1565. family: PF_UNIX,
  1566. create: unix_create
  1567. };
  1568. #ifdef CONFIG_SYSCTL
  1569. extern void unix_sysctl_register(void);
  1570. extern void unix_sysctl_unregister(void);
  1571. #else
  1572. static inline void unix_sysctl_register(void) {}
  1573. static inline void unix_sysctl_unregister(void) {}
  1574. #endif
  1575. static char banner[] __initdata = KERN_INFO "NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.n";
  1576. static int __init af_unix_init(void)
  1577. {
  1578. struct sk_buff *dummy_skb;
  1579. printk(banner);
  1580. if (sizeof(struct unix_skb_parms) > sizeof(dummy_skb->cb))
  1581. {
  1582. printk(KERN_CRIT "unix_proto_init: panicn");
  1583. return -1;
  1584. }
  1585. sock_register(&unix_family_ops);
  1586. #ifdef CONFIG_PROC_FS
  1587. create_proc_read_entry("net/unix", 0, 0, unix_read_proc, NULL);
  1588. #endif
  1589. unix_sysctl_register();
  1590. return 0;
  1591. }
  1592. static void __exit af_unix_exit(void)
  1593. {
  1594. sock_unregister(PF_UNIX);
  1595. unix_sysctl_unregister();
  1596. remove_proc_entry("net/unix", 0);
  1597. }
  1598. module_init(af_unix_init);
  1599. module_exit(af_unix_exit);
  1600. MODULE_LICENSE("GPL");