1 /* -*- c -*- --------------------------------------------------------------- *
3 * linux/fs/autofs/waitq.c
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 * Copyright 2001-2003 Ian Kent <raven@themaw.net>
8 * This file is part of the Linux kernel and is made available under
9 * the terms of the GNU General Public License, version 2, or at your
10 * option, any later version, incorporated herein by reference.
12 * ------------------------------------------------------------------------- */
14 #include <linux/slab.h>
15 #include <linux/time.h>
16 #include <linux/signal.h>
17 #include <linux/file.h>
20 /* We make this a static variable rather than a part of the superblock; it
21 is better if we don't reassign numbers easily even across filesystems */
22 static autofs_wqt_t autofs4_next_wait_queue
= 1;
24 /* These are the signals we allow interrupting a pending mount */
25 #define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGINT) | sigmask(SIGQUIT))
27 void autofs4_catatonic_mode(struct autofs_sb_info
*sbi
)
29 struct autofs_wait_queue
*wq
, *nwq
;
31 DPRINTK("entering catatonic mode");
35 sbi
->queues
= NULL
; /* Erase all wait queues */
38 wq
->status
= -ENOENT
; /* Magic is gone - report failure */
41 wake_up_interruptible(&wq
->queue
);
45 fput(sbi
->pipe
); /* Close the pipe */
49 shrink_dcache_sb(sbi
->sb
);
52 static int autofs4_write(struct file
*file
, const void *addr
, int bytes
)
54 unsigned long sigpipe
, flags
;
56 const char *data
= (const char *)addr
;
59 /** WARNING: this is not safe for writing more than PIPE_BUF bytes! **/
61 sigpipe
= sigismember(¤t
->pending
.signal
, SIGPIPE
);
63 /* Save pointer to user space and point back to kernel space */
68 (wr
= file
->f_op
->write(file
,data
,bytes
,&file
->f_pos
)) > 0) {
75 /* Keep the currently executing process from receiving a
76 SIGPIPE unless it was already supposed to get one */
77 if (wr
== -EPIPE
&& !sigpipe
) {
78 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
79 sigdelset(¤t
->pending
.signal
, SIGPIPE
);
81 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
87 static void autofs4_notify_daemon(struct autofs_sb_info
*sbi
,
88 struct autofs_wait_queue
*wq
,
91 union autofs_packet_union pkt
;
94 DPRINTK("wait id = 0x%08lx, name = %.*s, type=%d",
95 wq
->wait_queue_token
, wq
->len
, wq
->name
, type
);
97 memset(&pkt
,0,sizeof pkt
); /* For security reasons */
99 pkt
.hdr
.proto_version
= sbi
->version
;
101 if (type
== autofs_ptype_missing
) {
102 struct autofs_packet_missing
*mp
= &pkt
.missing
;
106 mp
->wait_queue_token
= wq
->wait_queue_token
;
108 memcpy(mp
->name
, wq
->name
, wq
->len
);
109 mp
->name
[wq
->len
] = '\0';
110 } else if (type
== autofs_ptype_expire_multi
) {
111 struct autofs_packet_expire_multi
*ep
= &pkt
.expire_multi
;
115 ep
->wait_queue_token
= wq
->wait_queue_token
;
117 memcpy(ep
->name
, wq
->name
, wq
->len
);
118 ep
->name
[wq
->len
] = '\0';
120 printk("autofs4_notify_daemon: bad type %d!\n", type
);
124 if (autofs4_write(sbi
->pipe
, &pkt
, pktsz
))
125 autofs4_catatonic_mode(sbi
);
128 static int autofs4_getpath(struct autofs_sb_info
*sbi
,
129 struct dentry
*dentry
, char **name
)
131 struct dentry
*root
= sbi
->sb
->s_root
;
137 spin_lock(&dcache_lock
);
138 for (tmp
= dentry
; tmp
!= root
; tmp
= tmp
->d_parent
)
139 len
+= tmp
->d_name
.len
+ 1;
141 if (--len
> NAME_MAX
) {
142 spin_unlock(&dcache_lock
);
147 p
= buf
+ len
- dentry
->d_name
.len
;
148 strncpy(p
, dentry
->d_name
.name
, dentry
->d_name
.len
);
150 for (tmp
= dentry
->d_parent
; tmp
!= root
; tmp
= tmp
->d_parent
) {
152 p
-= tmp
->d_name
.len
;
153 strncpy(p
, tmp
->d_name
.name
, tmp
->d_name
.len
);
155 spin_unlock(&dcache_lock
);
160 int autofs4_wait(struct autofs_sb_info
*sbi
, struct dentry
*dentry
,
161 enum autofs_notify notify
)
163 struct autofs_wait_queue
*wq
;
167 /* In catatonic mode, we don't wait for nobody */
168 if ( sbi
->catatonic
)
171 name
= kmalloc(NAME_MAX
+ 1, GFP_KERNEL
);
175 len
= autofs4_getpath(sbi
, dentry
, &name
);
181 if (down_interruptible(&sbi
->wq_sem
)) {
186 for (wq
= sbi
->queues
; wq
; wq
= wq
->next
) {
187 if (wq
->hash
== dentry
->d_name
.hash
&&
189 wq
->name
&& !memcmp(wq
->name
, name
, len
))
194 /* Can't wait for an expire if there's no mount */
195 if (notify
== NFY_NONE
&& !d_mountpoint(dentry
)) {
201 /* Create a new wait queue */
202 wq
= kmalloc(sizeof(struct autofs_wait_queue
),GFP_KERNEL
);
209 wq
->wait_queue_token
= autofs4_next_wait_queue
;
210 if (++autofs4_next_wait_queue
== 0)
211 autofs4_next_wait_queue
= 1;
212 wq
->next
= sbi
->queues
;
214 init_waitqueue_head(&wq
->queue
);
215 wq
->hash
= dentry
->d_name
.hash
;
218 wq
->status
= -EINTR
; /* Status return if interrupted */
219 atomic_set(&wq
->wait_ctr
, 2);
220 atomic_set(&wq
->notified
, 1);
223 atomic_inc(&wq
->wait_ctr
);
226 DPRINTK("existing wait id = 0x%08lx, name = %.*s, nfy=%d",
227 (unsigned long) wq
->wait_queue_token
, wq
->len
, wq
->name
, notify
);
230 if (notify
!= NFY_NONE
&& atomic_dec_and_test(&wq
->notified
)) {
231 int type
= (notify
== NFY_MOUNT
?
232 autofs_ptype_missing
: autofs_ptype_expire_multi
);
234 DPRINTK("new wait id = 0x%08lx, name = %.*s, nfy=%d\n",
235 (unsigned long) wq
->wait_queue_token
, wq
->len
, wq
->name
, notify
);
237 /* autofs4_notify_daemon() may block */
238 autofs4_notify_daemon(sbi
, wq
, type
);
241 /* wq->name is NULL if and only if the lock is already released */
243 if ( sbi
->catatonic
) {
244 /* We might have slept, so check again for catatonic mode */
245 wq
->status
= -ENOENT
;
251 /* Block all but "shutdown" signals while waiting */
253 unsigned long irqflags
;
255 spin_lock_irqsave(¤t
->sighand
->siglock
, irqflags
);
256 oldset
= current
->blocked
;
257 siginitsetinv(¤t
->blocked
, SHUTDOWN_SIGS
& ~oldset
.sig
[0]);
259 spin_unlock_irqrestore(¤t
->sighand
->siglock
, irqflags
);
261 wait_event_interruptible(wq
->queue
, wq
->name
== NULL
);
263 spin_lock_irqsave(¤t
->sighand
->siglock
, irqflags
);
264 current
->blocked
= oldset
;
266 spin_unlock_irqrestore(¤t
->sighand
->siglock
, irqflags
);
268 DPRINTK("skipped sleeping");
273 /* Are we the last process to need status? */
274 if (atomic_dec_and_test(&wq
->wait_ctr
))
281 int autofs4_wait_release(struct autofs_sb_info
*sbi
, autofs_wqt_t wait_queue_token
, int status
)
283 struct autofs_wait_queue
*wq
, **wql
;
286 for ( wql
= &sbi
->queues
; (wq
= *wql
) != 0 ; wql
= &wq
->next
) {
287 if ( wq
->wait_queue_token
== wait_queue_token
)
296 *wql
= wq
->next
; /* Unlink from chain */
299 wq
->name
= NULL
; /* Do not wait on this queue */
303 if (atomic_dec_and_test(&wq
->wait_ctr
)) /* Is anyone still waiting for this guy? */
306 wake_up_interruptible(&wq
->queue
);