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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * NET3: Garbage Collector For AF_UNIX sockets
  3.  *
  4.  * Garbage Collector:
  5.  * Copyright (C) Barak A. Pearlmutter.
  6.  * Released under the GPL version 2 or later.
  7.  *
  8.  * Chopped about by Alan Cox 22/3/96 to make it fit the AF_UNIX socket problem.
  9.  * If it doesn't work blame me, it worked when Barak sent it.
  10.  *
  11.  * Assumptions:
  12.  *
  13.  *  - object w/ a bit
  14.  *  - free list
  15.  *
  16.  * Current optimizations:
  17.  *
  18.  *  - explicit stack instead of recursion
  19.  *  - tail recurse on first born instead of immediate push/pop
  20.  *  - we gather the stuff that should not be killed into tree
  21.  *    and stack is just a path from root to the current pointer.
  22.  *
  23.  *  Future optimizations:
  24.  *
  25.  *  - don't just push entire root set; process in place
  26.  *
  27.  * This program is free software; you can redistribute it and/or
  28.  * modify it under the terms of the GNU General Public License
  29.  * as published by the Free Software Foundation; either version
  30.  * 2 of the License, or (at your option) any later version.
  31.  *
  32.  *  Fixes:
  33.  * Alan Cox 07 Sept 1997 Vmalloc internal stack as needed.
  34.  * Cope with changing max_files.
  35.  * Al Viro 11 Oct 1998
  36.  * Graph may have cycles. That is, we can send the descriptor
  37.  * of foo to bar and vice versa. Current code chokes on that.
  38.  * Fix: move SCM_RIGHTS ones into the separate list and then
  39.  * skb_free() them all instead of doing explicit fput's.
  40.  * Another problem: since fput() may block somebody may
  41.  * create a new unix_socket when we are in the middle of sweep
  42.  * phase. Fix: revert the logic wrt MARKED. Mark everything
  43.  * upon the beginning and unmark non-junk ones.
  44.  *
  45.  * [12 Oct 1998] AAARGH! New code purges all SCM_RIGHTS
  46.  * sent to connect()'ed but still not accept()'ed sockets.
  47.  * Fixed. Old code had slightly different problem here:
  48.  * extra fput() in situation when we passed the descriptor via
  49.  * such socket and closed it (descriptor). That would happen on
  50.  * each unix_gc() until the accept(). Since the struct file in
  51.  * question would go to the free list and might be reused...
  52.  * That might be the reason of random oopses on filp_close()
  53.  * in unrelated processes.
  54.  *
  55.  * AV 28 Feb 1999
  56.  * Kill the explicit allocation of stack. Now we keep the tree
  57.  * with root in dummy + pointer (gc_current) to one of the nodes.
  58.  * Stack is represented as path from gc_current to dummy. Unmark
  59.  * now means "add to tree". Push == "make it a son of gc_current".
  60.  * Pop == "move gc_current to parent". We keep only pointers to
  61.  * parents (->gc_tree).
  62.  * AV 1 Mar 1999
  63.  * Damn. Added missing check for ->dead in listen queues scanning.
  64.  *
  65.  */
  66.  
  67. #include <linux/kernel.h>
  68. #include <linux/sched.h>
  69. #include <linux/string.h>
  70. #include <linux/socket.h>
  71. #include <linux/un.h>
  72. #include <linux/net.h>
  73. #include <linux/fs.h>
  74. #include <linux/slab.h>
  75. #include <linux/skbuff.h>
  76. #include <linux/netdevice.h>
  77. #include <linux/file.h>
  78. #include <linux/proc_fs.h>
  79. #include <linux/tcp.h>
  80. #include <net/sock.h>
  81. #include <net/af_unix.h>
  82. #include <net/scm.h>
  83. /* Internal data structures and random procedures: */
  84. #define GC_HEAD ((unix_socket *)(-1))
  85. #define GC_ORPHAN ((unix_socket *)(-3))
  86. static unix_socket *gc_current=GC_HEAD; /* stack of objects to mark */
  87. atomic_t unix_tot_inflight = ATOMIC_INIT(0);
  88. extern inline unix_socket *unix_get_socket(struct file *filp)
  89. {
  90. unix_socket * u_sock = NULL;
  91. struct inode *inode = filp->f_dentry->d_inode;
  92. /*
  93.  * Socket ?
  94.  */
  95. if (inode->i_sock) {
  96. struct socket * sock = &inode->u.socket_i;
  97. struct sock * s = sock->sk;
  98. /*
  99.  * PF_UNIX ?
  100.  */
  101. if (s && sock->ops && sock->ops->family == PF_UNIX)
  102. u_sock = s;
  103. }
  104. return u_sock;
  105. }
  106. /*
  107.  * Keep the number of times in flight count for the file
  108.  * descriptor if it is for an AF_UNIX socket.
  109.  */
  110.  
  111. void unix_inflight(struct file *fp)
  112. {
  113. unix_socket *s=unix_get_socket(fp);
  114. if(s) {
  115. atomic_inc(&s->protinfo.af_unix.inflight);
  116. atomic_inc(&unix_tot_inflight);
  117. }
  118. }
  119. void unix_notinflight(struct file *fp)
  120. {
  121. unix_socket *s=unix_get_socket(fp);
  122. if(s) {
  123. atomic_dec(&s->protinfo.af_unix.inflight);
  124. atomic_dec(&unix_tot_inflight);
  125. }
  126. }
  127. /*
  128.  * Garbage Collector Support Functions
  129.  */
  130. extern inline unix_socket *pop_stack(void)
  131. {
  132. unix_socket *p=gc_current;
  133. gc_current = p->protinfo.af_unix.gc_tree;
  134. return p;
  135. }
  136. extern inline int empty_stack(void)
  137. {
  138. return gc_current == GC_HEAD;
  139. }
  140. extern inline void maybe_unmark_and_push(unix_socket *x)
  141. {
  142. if (x->protinfo.af_unix.gc_tree != GC_ORPHAN)
  143. return;
  144. sock_hold(x);
  145. x->protinfo.af_unix.gc_tree = gc_current;
  146. gc_current = x;
  147. }
  148. /* The external entry point: unix_gc() */
  149. void unix_gc(void)
  150. {
  151. static DECLARE_MUTEX(unix_gc_sem);
  152. int i;
  153. unix_socket *s;
  154. struct sk_buff_head hitlist;
  155. struct sk_buff *skb;
  156. /*
  157.  * Avoid a recursive GC.
  158.  */
  159. if (down_trylock(&unix_gc_sem))
  160. return;
  161. read_lock(&unix_table_lock);
  162. forall_unix_sockets(i, s)
  163. {
  164. s->protinfo.af_unix.gc_tree=GC_ORPHAN;
  165. }
  166. /*
  167.  * Everything is now marked 
  168.  */
  169. /* Invariant to be maintained:
  170. - everything unmarked is either:
  171. -- (a) on the stack, or
  172. -- (b) has all of its children unmarked
  173. - everything on the stack is always unmarked
  174. - nothing is ever pushed onto the stack twice, because:
  175. -- nothing previously unmarked is ever pushed on the stack
  176.  */
  177. /*
  178.  * Push root set
  179.  */
  180. forall_unix_sockets(i, s)
  181. {
  182. int open_count = 0;
  183. /*
  184.  * If all instances of the descriptor are not
  185.  * in flight we are in use.
  186.  *
  187.  * Special case: when socket s is embrion, it may be
  188.  * hashed but still not in queue of listening socket.
  189.  * In this case (see unix_create1()) we set artificial
  190.  * negative inflight counter to close race window.
  191.  * It is trick of course and dirty one.
  192.  */
  193. if(s->socket && s->socket->file)
  194. open_count = file_count(s->socket->file);
  195. if (open_count > atomic_read(&s->protinfo.af_unix.inflight))
  196. maybe_unmark_and_push(s);
  197. }
  198. /*
  199.  * Mark phase 
  200.  */
  201. while (!empty_stack())
  202. {
  203. unix_socket *x = pop_stack();
  204. unix_socket *sk;
  205. spin_lock(&x->receive_queue.lock);
  206. skb=skb_peek(&x->receive_queue);
  207. /*
  208.  * Loop through all but first born 
  209.  */
  210. while(skb && skb != (struct sk_buff *)&x->receive_queue)
  211. {
  212. /*
  213.  * Do we have file descriptors ?
  214.  */
  215. if(UNIXCB(skb).fp)
  216. {
  217. /*
  218.  * Process the descriptors of this socket
  219.  */
  220. int nfd=UNIXCB(skb).fp->count;
  221. struct file **fp = UNIXCB(skb).fp->fp;
  222. while(nfd--)
  223. {
  224. /*
  225.  * Get the socket the fd matches if
  226.  * it indeed does so
  227.  */
  228. if((sk=unix_get_socket(*fp++))!=NULL)
  229. {
  230. maybe_unmark_and_push(sk);
  231. }
  232. }
  233. }
  234. /* We have to scan not-yet-accepted ones too */
  235. if (x->state == TCP_LISTEN) {
  236. maybe_unmark_and_push(skb->sk);
  237. }
  238. skb=skb->next;
  239. }
  240. spin_unlock(&x->receive_queue.lock);
  241. sock_put(x);
  242. }
  243. skb_queue_head_init(&hitlist);
  244. forall_unix_sockets(i, s)
  245. {
  246. if (s->protinfo.af_unix.gc_tree == GC_ORPHAN)
  247. {
  248. struct sk_buff *nextsk;
  249. spin_lock(&s->receive_queue.lock);
  250. skb=skb_peek(&s->receive_queue);
  251. while(skb && skb != (struct sk_buff *)&s->receive_queue)
  252. {
  253. nextsk=skb->next;
  254. /*
  255.  * Do we have file descriptors ?
  256.  */
  257. if(UNIXCB(skb).fp)
  258. {
  259. __skb_unlink(skb, skb->list);
  260. __skb_queue_tail(&hitlist,skb);
  261. }
  262. skb=nextsk;
  263. }
  264. spin_unlock(&s->receive_queue.lock);
  265. }
  266. s->protinfo.af_unix.gc_tree = GC_ORPHAN;
  267. }
  268. read_unlock(&unix_table_lock);
  269. /*
  270.  * Here we are. Hitlist is filled. Die.
  271.  */
  272. __skb_queue_purge(&hitlist);
  273. up(&unix_gc_sem);
  274. }