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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-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 autofs_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 autofs_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. fput(sbi->pipe); /* Close the pipe */
  38. autofs_hash_dputall(&sbi->dirhash); /* Remove all dentry pointers */
  39. }
  40. static int autofs_write(struct file *file, const void *addr, int bytes)
  41. {
  42. unsigned long sigpipe, flags;
  43. mm_segment_t fs;
  44. const char *data = (const char *)addr;
  45. ssize_t wr = 0;
  46. /** WARNING: this is not safe for writing more than PIPE_BUF bytes! **/
  47. sigpipe = sigismember(&current->pending.signal, SIGPIPE);
  48. /* Save pointer to user space and point back to kernel space */
  49. fs = get_fs();
  50. set_fs(KERNEL_DS);
  51. while (bytes &&
  52.        (wr = file->f_op->write(file,data,bytes,&file->f_pos)) > 0) {
  53. data += wr;
  54. bytes -= wr;
  55. }
  56. set_fs(fs);
  57. /* Keep the currently executing process from receiving a
  58.    SIGPIPE unless it was already supposed to get one */
  59. if (wr == -EPIPE && !sigpipe) {
  60. spin_lock_irqsave(&current->sigmask_lock, flags);
  61. sigdelset(&current->pending.signal, SIGPIPE);
  62. recalc_sigpending(current);
  63. spin_unlock_irqrestore(&current->sigmask_lock, flags);
  64. }
  65. return (bytes > 0);
  66. }
  67. static void autofs_notify_daemon(struct autofs_sb_info *sbi, struct autofs_wait_queue *wq)
  68. {
  69. struct autofs_packet_missing pkt;
  70. DPRINTK(("autofs_wait: wait id = 0x%08lx, name = ", wq->wait_queue_token));
  71. autofs_say(wq->name,wq->len);
  72. memset(&pkt,0,sizeof pkt); /* For security reasons */
  73. pkt.hdr.proto_version = AUTOFS_PROTO_VERSION;
  74. pkt.hdr.type = autofs_ptype_missing;
  75. pkt.wait_queue_token = wq->wait_queue_token;
  76. pkt.len = wq->len;
  77.         memcpy(pkt.name, wq->name, pkt.len);
  78. pkt.name[pkt.len] = '';
  79. if ( autofs_write(sbi->pipe,&pkt,sizeof(struct autofs_packet_missing)) )
  80. autofs_catatonic_mode(sbi);
  81. }
  82. int autofs_wait(struct autofs_sb_info *sbi, struct qstr *name)
  83. {
  84. struct autofs_wait_queue *wq;
  85. int status;
  86. /* In catatonic mode, we don't wait for nobody */
  87. if ( sbi->catatonic )
  88. return -ENOENT;
  89. /* We shouldn't be able to get here, but just in case */
  90. if ( name->len > NAME_MAX )
  91. return -ENOENT;
  92. for ( wq = sbi->queues ; wq ; wq = wq->next ) {
  93. if ( wq->hash == name->hash &&
  94.      wq->len == name->len &&
  95.      wq->name && !memcmp(wq->name,name->name,name->len) )
  96. break;
  97. }
  98. if ( !wq ) {
  99. /* Create a new wait queue */
  100. wq = kmalloc(sizeof(struct autofs_wait_queue),GFP_KERNEL);
  101. if ( !wq )
  102. return -ENOMEM;
  103. wq->name = kmalloc(name->len,GFP_KERNEL);
  104. if ( !wq->name ) {
  105. kfree(wq);
  106. return -ENOMEM;
  107. }
  108. wq->wait_queue_token = autofs_next_wait_queue++;
  109. init_waitqueue_head(&wq->queue);
  110. wq->hash = name->hash;
  111. wq->len = name->len;
  112. wq->status = -EINTR; /* Status return if interrupted */
  113. memcpy(wq->name, name->name, name->len);
  114. wq->next = sbi->queues;
  115. sbi->queues = wq;
  116. /* autofs_notify_daemon() may block */
  117. wq->wait_ctr = 2;
  118. autofs_notify_daemon(sbi,wq);
  119. } else
  120. wq->wait_ctr++;
  121. /* wq->name is NULL if and only if the lock is already released */
  122. if ( sbi->catatonic ) {
  123. /* We might have slept, so check again for catatonic mode */
  124. wq->status = -ENOENT;
  125. if ( wq->name ) {
  126. kfree(wq->name);
  127. wq->name = NULL;
  128. }
  129. }
  130. if ( wq->name ) {
  131. /* Block all but "shutdown" signals while waiting */
  132. sigset_t oldset;
  133. unsigned long irqflags;
  134. spin_lock_irqsave(&current->sigmask_lock, irqflags);
  135. oldset = current->blocked;
  136. siginitsetinv(&current->blocked, SHUTDOWN_SIGS & ~oldset.sig[0]);
  137. recalc_sigpending(current);
  138. spin_unlock_irqrestore(&current->sigmask_lock, irqflags);
  139. interruptible_sleep_on(&wq->queue);
  140. spin_lock_irqsave(&current->sigmask_lock, irqflags);
  141. current->blocked = oldset;
  142. recalc_sigpending(current);
  143. spin_unlock_irqrestore(&current->sigmask_lock, irqflags);
  144. } else {
  145. DPRINTK(("autofs_wait: skipped sleepingn"));
  146. }
  147. status = wq->status;
  148. if ( ! --wq->wait_ctr ) /* Are we the last process to need status? */
  149. kfree(wq);
  150. return status;
  151. }
  152. int autofs_wait_release(struct autofs_sb_info *sbi, autofs_wqt_t wait_queue_token, int status)
  153. {
  154. struct autofs_wait_queue *wq, **wql;
  155. for ( wql = &sbi->queues ; (wq = *wql) ; wql = &wq->next ) {
  156. if ( wq->wait_queue_token == wait_queue_token )
  157. break;
  158. }
  159. if ( !wq )
  160. return -EINVAL;
  161. *wql = wq->next; /* Unlink from chain */
  162. kfree(wq->name);
  163. wq->name = NULL; /* Do not wait on this queue */
  164. wq->status = status;
  165. if ( ! --wq->wait_ctr ) /* Is anyone still waiting for this guy? */
  166. kfree(wq);
  167. else
  168. wake_up(&wq->queue);
  169. return 0;
  170. }