waitq.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- c -*- --------------------------------------------------------------- *
  2.  *
  3.  * linux/fs/autofs/waitq.c
  4.  *
  5.  *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
  6.  *
  7.  * This file is part of the Linux kernel and is made available under
  8.  * the terms of the GNU General Public License, version 2, or at your
  9.  * option, any later version, incorporated herein by reference.
  10.  *
  11.  * ------------------------------------------------------------------------- */
  12. #include <linux/slab.h>
  13. #include <linux/sched.h>
  14. #include <linux/signal.h>
  15. #include <linux/file.h>
  16. #include "autofs_i.h"
  17. /* We make this a static variable rather than a part of the superblock; it
  18.    is better if we don't reassign numbers easily even across filesystems */
  19. static autofs_wqt_t autofs4_next_wait_queue = 1;
  20. /* These are the signals we allow interrupting a pending mount */
  21. #define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGINT) | sigmask(SIGQUIT))
  22. void autofs4_catatonic_mode(struct autofs_sb_info *sbi)
  23. {
  24. struct autofs_wait_queue *wq, *nwq;
  25. DPRINTK(("autofs: entering catatonic moden"));
  26. sbi->catatonic = 1;
  27. wq = sbi->queues;
  28. sbi->queues = NULL; /* Erase all wait queues */
  29. while ( wq ) {
  30. nwq = wq->next;
  31. wq->status = -ENOENT; /* Magic is gone - report failure */
  32. kfree(wq->name);
  33. wq->name = NULL;
  34. wake_up(&wq->queue);
  35. wq = nwq;
  36. }
  37. if (sbi->pipe) {
  38. fput(sbi->pipe); /* Close the pipe */
  39. sbi->pipe = NULL;
  40. }
  41. shrink_dcache_sb(sbi->sb);
  42. }
  43. static int autofs4_write(struct file *file, const void *addr, int bytes)
  44. {
  45. unsigned long sigpipe, flags;
  46. mm_segment_t fs;
  47. const char *data = (const char *)addr;
  48. ssize_t wr = 0;
  49. /** WARNING: this is not safe for writing more than PIPE_BUF bytes! **/
  50. sigpipe = sigismember(&current->pending.signal, SIGPIPE);
  51. /* Save pointer to user space and point back to kernel space */
  52. fs = get_fs();
  53. set_fs(KERNEL_DS);
  54. while (bytes &&
  55.        (wr = file->f_op->write(file,data,bytes,&file->f_pos)) > 0) {
  56. data += wr;
  57. bytes -= wr;
  58. }
  59. set_fs(fs);
  60. /* Keep the currently executing process from receiving a
  61.    SIGPIPE unless it was already supposed to get one */
  62. if (wr == -EPIPE && !sigpipe) {
  63. spin_lock_irqsave(&current->sigmask_lock, flags);
  64. sigdelset(&current->pending.signal, SIGPIPE);
  65. recalc_sigpending(current);
  66. spin_unlock_irqrestore(&current->sigmask_lock, flags);
  67. }
  68. return (bytes > 0);
  69. }
  70. static void autofs4_notify_daemon(struct autofs_sb_info *sbi,
  71.  struct autofs_wait_queue *wq,
  72.  int type)
  73. {
  74. union autofs_packet_union pkt;
  75. size_t pktsz;
  76. DPRINTK(("autofs_notify: wait id = 0x%08lx, name = %.*s, type=%dn",
  77.  wq->wait_queue_token, wq->len, wq->name, type));
  78. memset(&pkt,0,sizeof pkt); /* For security reasons */
  79. pkt.hdr.proto_version = sbi->version;
  80. pkt.hdr.type = type;
  81. if (type == autofs_ptype_missing) {
  82. struct autofs_packet_missing *mp = &pkt.missing;
  83. pktsz = sizeof(*mp);
  84. mp->wait_queue_token = wq->wait_queue_token;
  85. mp->len = wq->len;
  86. memcpy(mp->name, wq->name, wq->len);
  87. mp->name[wq->len] = '';
  88. } else if (type == autofs_ptype_expire_multi) {
  89. struct autofs_packet_expire_multi *ep = &pkt.expire_multi;
  90. pktsz = sizeof(*ep);
  91. ep->wait_queue_token = wq->wait_queue_token;
  92. ep->len = wq->len;
  93. memcpy(ep->name, wq->name, wq->len);
  94. ep->name[wq->len] = '';
  95. } else {
  96. printk("autofs_notify_daemon: bad type %d!n", type);
  97. return;
  98. }
  99. if (autofs4_write(sbi->pipe, &pkt, pktsz))
  100. autofs4_catatonic_mode(sbi);
  101. }
  102. int autofs4_wait(struct autofs_sb_info *sbi, struct qstr *name,
  103. enum autofs_notify notify)
  104. {
  105. struct autofs_wait_queue *wq;
  106. int status;
  107. /* In catatonic mode, we don't wait for nobody */
  108. if ( sbi->catatonic )
  109. return -ENOENT;
  110. /* We shouldn't be able to get here, but just in case */
  111. if ( name->len > NAME_MAX )
  112. return -ENOENT;
  113. for ( wq = sbi->queues ; wq ; wq = wq->next ) {
  114. if ( wq->hash == name->hash &&
  115.      wq->len == name->len &&
  116.      wq->name && !memcmp(wq->name,name->name,name->len) )
  117. break;
  118. }
  119. if ( !wq ) {
  120. /* Create a new wait queue */
  121. wq = kmalloc(sizeof(struct autofs_wait_queue),GFP_KERNEL);
  122. if ( !wq )
  123. return -ENOMEM;
  124. wq->name = kmalloc(name->len,GFP_KERNEL);
  125. if ( !wq->name ) {
  126. kfree(wq);
  127. return -ENOMEM;
  128. }
  129. wq->wait_queue_token = autofs4_next_wait_queue;
  130. if (++autofs4_next_wait_queue == 0)
  131. autofs4_next_wait_queue = 1;
  132. init_waitqueue_head(&wq->queue);
  133. wq->hash = name->hash;
  134. wq->len = name->len;
  135. wq->status = -EINTR; /* Status return if interrupted */
  136. memcpy(wq->name, name->name, name->len);
  137. wq->next = sbi->queues;
  138. sbi->queues = wq;
  139. DPRINTK(("autofs_wait: new wait id = 0x%08lx, name = %.*s, nfy=%dn",
  140.  wq->wait_queue_token, wq->len, wq->name, notify));
  141. /* autofs4_notify_daemon() may block */
  142. wq->wait_ctr = 2;
  143. if (notify != NFY_NONE) {
  144. autofs4_notify_daemon(sbi,wq, 
  145.       notify == NFY_MOUNT ? autofs_ptype_missing :
  146.     autofs_ptype_expire_multi);
  147. }
  148. } else {
  149. wq->wait_ctr++;
  150. DPRINTK(("autofs_wait: existing wait id = 0x%08lx, name = %.*s, nfy=%dn",
  151.  wq->wait_queue_token, wq->len, wq->name, notify));
  152. }
  153. /* wq->name is NULL if and only if the lock is already released */
  154. if ( sbi->catatonic ) {
  155. /* We might have slept, so check again for catatonic mode */
  156. wq->status = -ENOENT;
  157. if ( wq->name ) {
  158. kfree(wq->name);
  159. wq->name = NULL;
  160. }
  161. }
  162. if ( wq->name ) {
  163. /* Block all but "shutdown" signals while waiting */
  164. sigset_t oldset;
  165. unsigned long irqflags;
  166. spin_lock_irqsave(&current->sigmask_lock, irqflags);
  167. oldset = current->blocked;
  168. siginitsetinv(&current->blocked, SHUTDOWN_SIGS & ~oldset.sig[0]);
  169. recalc_sigpending(current);
  170. spin_unlock_irqrestore(&current->sigmask_lock, irqflags);
  171. interruptible_sleep_on(&wq->queue);
  172. spin_lock_irqsave(&current->sigmask_lock, irqflags);
  173. current->blocked = oldset;
  174. recalc_sigpending(current);
  175. spin_unlock_irqrestore(&current->sigmask_lock, irqflags);
  176. } else {
  177. DPRINTK(("autofs_wait: skipped sleepingn"));
  178. }
  179. status = wq->status;
  180. if (--wq->wait_ctr == 0) /* Are we the last process to need status? */
  181. kfree(wq);
  182. return status;
  183. }
  184. int autofs4_wait_release(struct autofs_sb_info *sbi, autofs_wqt_t wait_queue_token, int status)
  185. {
  186. struct autofs_wait_queue *wq, **wql;
  187. for ( wql = &sbi->queues ; (wq = *wql) ; wql = &wq->next ) {
  188. if ( wq->wait_queue_token == wait_queue_token )
  189. break;
  190. }
  191. if ( !wq )
  192. return -EINVAL;
  193. *wql = wq->next; /* Unlink from chain */
  194. kfree(wq->name);
  195. wq->name = NULL; /* Do not wait on this queue */
  196. wq->status = status;
  197. if (--wq->wait_ctr == 0) /* Is anyone still waiting for this guy? */
  198. kfree(wq);
  199. else
  200. wake_up(&wq->queue);
  201. return 0;
  202. }