blob: 3458dbc8fff0b1b7f2b709c819fab9cd1971977c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- c -*- --------------------------------------------------------------- *
2 *
3 * linux/fs/autofs/waitq.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
Ian Kent5c0a32f2006-03-27 01:14:55 -08006 * Copyright 2001-2006 Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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.
11 *
12 * ------------------------------------------------------------------------- */
13
14#include <linux/slab.h>
15#include <linux/time.h>
16#include <linux/signal.h>
17#include <linux/file.h>
18#include "autofs_i.h"
19
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 */
22static autofs_wqt_t autofs4_next_wait_queue = 1;
23
24/* These are the signals we allow interrupting a pending mount */
25#define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGINT) | sigmask(SIGQUIT))
26
27void autofs4_catatonic_mode(struct autofs_sb_info *sbi)
28{
29 struct autofs_wait_queue *wq, *nwq;
30
Ian Kent5a11d4d2008-07-23 21:30:17 -070031 mutex_lock(&sbi->wq_mutex);
32 if (sbi->catatonic) {
33 mutex_unlock(&sbi->wq_mutex);
34 return;
35 }
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 DPRINTK("entering catatonic mode");
38
39 sbi->catatonic = 1;
40 wq = sbi->queues;
41 sbi->queues = NULL; /* Erase all wait queues */
Ian Kente77fbdd2006-03-27 01:14:49 -080042 while (wq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 nwq = wq->next;
44 wq->status = -ENOENT; /* Magic is gone - report failure */
Jeff Moyer70b52a02008-07-23 21:30:16 -070045 if (wq->name.name) {
46 kfree(wq->name.name);
47 wq->name.name = NULL;
48 }
Ian Kent296f7bf2008-07-23 21:30:21 -070049 wq->wait_ctr--;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 wake_up_interruptible(&wq->queue);
51 wq = nwq;
52 }
Ian Kentba8df432006-11-14 02:03:29 -080053 fput(sbi->pipe); /* Close the pipe */
54 sbi->pipe = NULL;
Ian Kent5a11d4d2008-07-23 21:30:17 -070055 sbi->pipefd = -1;
56 mutex_unlock(&sbi->wq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59static int autofs4_write(struct file *file, const void *addr, int bytes)
60{
61 unsigned long sigpipe, flags;
62 mm_segment_t fs;
63 const char *data = (const char *)addr;
64 ssize_t wr = 0;
65
66 /** WARNING: this is not safe for writing more than PIPE_BUF bytes! **/
67
68 sigpipe = sigismember(&current->pending.signal, SIGPIPE);
69
70 /* Save pointer to user space and point back to kernel space */
71 fs = get_fs();
72 set_fs(KERNEL_DS);
73
74 while (bytes &&
75 (wr = file->f_op->write(file,data,bytes,&file->f_pos)) > 0) {
76 data += wr;
77 bytes -= wr;
78 }
79
80 set_fs(fs);
81
82 /* Keep the currently executing process from receiving a
83 SIGPIPE unless it was already supposed to get one */
84 if (wr == -EPIPE && !sigpipe) {
85 spin_lock_irqsave(&current->sighand->siglock, flags);
86 sigdelset(&current->pending.signal, SIGPIPE);
87 recalc_sigpending();
88 spin_unlock_irqrestore(&current->sighand->siglock, flags);
89 }
90
91 return (bytes > 0);
92}
93
94static void autofs4_notify_daemon(struct autofs_sb_info *sbi,
95 struct autofs_wait_queue *wq,
96 int type)
97{
Ian Kente8514472007-02-20 13:58:09 -080098 union {
99 struct autofs_packet_hdr hdr;
100 union autofs_packet_union v4_pkt;
101 union autofs_v5_packet_union v5_pkt;
102 } pkt;
Ian Kente64be332008-07-23 21:30:20 -0700103 struct file *pipe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 size_t pktsz;
105
106 DPRINTK("wait id = 0x%08lx, name = %.*s, type=%d",
Jeff Moyer70b52a02008-07-23 21:30:16 -0700107 wq->wait_queue_token, wq->name.len, wq->name.name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 memset(&pkt,0,sizeof pkt); /* For security reasons */
110
111 pkt.hdr.proto_version = sbi->version;
112 pkt.hdr.type = type;
Ian Kent5c0a32f2006-03-27 01:14:55 -0800113 switch (type) {
114 /* Kernel protocol v4 missing and expire packets */
115 case autofs_ptype_missing:
116 {
Ian Kente8514472007-02-20 13:58:09 -0800117 struct autofs_packet_missing *mp = &pkt.v4_pkt.missing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 pktsz = sizeof(*mp);
120
121 mp->wait_queue_token = wq->wait_queue_token;
Jeff Moyer70b52a02008-07-23 21:30:16 -0700122 mp->len = wq->name.len;
123 memcpy(mp->name, wq->name.name, wq->name.len);
124 mp->name[wq->name.len] = '\0';
Ian Kent5c0a32f2006-03-27 01:14:55 -0800125 break;
126 }
127 case autofs_ptype_expire_multi:
128 {
Ian Kente8514472007-02-20 13:58:09 -0800129 struct autofs_packet_expire_multi *ep = &pkt.v4_pkt.expire_multi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 pktsz = sizeof(*ep);
132
133 ep->wait_queue_token = wq->wait_queue_token;
Jeff Moyer70b52a02008-07-23 21:30:16 -0700134 ep->len = wq->name.len;
135 memcpy(ep->name, wq->name.name, wq->name.len);
136 ep->name[wq->name.len] = '\0';
Ian Kent5c0a32f2006-03-27 01:14:55 -0800137 break;
138 }
139 /*
140 * Kernel protocol v5 packet for handling indirect and direct
141 * mount missing and expire requests
142 */
143 case autofs_ptype_missing_indirect:
144 case autofs_ptype_expire_indirect:
145 case autofs_ptype_missing_direct:
146 case autofs_ptype_expire_direct:
147 {
Ian Kente8514472007-02-20 13:58:09 -0800148 struct autofs_v5_packet *packet = &pkt.v5_pkt.v5_packet;
Ian Kent5c0a32f2006-03-27 01:14:55 -0800149
150 pktsz = sizeof(*packet);
151
152 packet->wait_queue_token = wq->wait_queue_token;
Jeff Moyer70b52a02008-07-23 21:30:16 -0700153 packet->len = wq->name.len;
154 memcpy(packet->name, wq->name.name, wq->name.len);
155 packet->name[wq->name.len] = '\0';
Ian Kent5c0a32f2006-03-27 01:14:55 -0800156 packet->dev = wq->dev;
157 packet->ino = wq->ino;
158 packet->uid = wq->uid;
159 packet->gid = wq->gid;
160 packet->pid = wq->pid;
161 packet->tgid = wq->tgid;
162 break;
163 }
164 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 printk("autofs4_notify_daemon: bad type %d!\n", type);
166 return;
167 }
168
Ian Kente64be332008-07-23 21:30:20 -0700169 /* Check if we have become catatonic */
170 mutex_lock(&sbi->wq_mutex);
171 if (!sbi->catatonic) {
172 pipe = sbi->pipe;
173 get_file(pipe);
174 }
175 mutex_unlock(&sbi->wq_mutex);
176
177 if (pipe) {
178 if (autofs4_write(pipe, &pkt, pktsz))
179 autofs4_catatonic_mode(sbi);
180 fput(pipe);
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184static int autofs4_getpath(struct autofs_sb_info *sbi,
185 struct dentry *dentry, char **name)
186{
187 struct dentry *root = sbi->sb->s_root;
188 struct dentry *tmp;
189 char *buf = *name;
190 char *p;
191 int len = 0;
192
193 spin_lock(&dcache_lock);
194 for (tmp = dentry ; tmp != root ; tmp = tmp->d_parent)
195 len += tmp->d_name.len + 1;
196
Ian Kentcab09362008-05-01 04:35:07 -0700197 if (!len || --len > NAME_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 spin_unlock(&dcache_lock);
199 return 0;
200 }
201
202 *(buf + len) = '\0';
203 p = buf + len - dentry->d_name.len;
204 strncpy(p, dentry->d_name.name, dentry->d_name.len);
205
206 for (tmp = dentry->d_parent; tmp != root ; tmp = tmp->d_parent) {
207 *(--p) = '/';
208 p -= tmp->d_name.len;
209 strncpy(p, tmp->d_name.name, tmp->d_name.len);
210 }
211 spin_unlock(&dcache_lock);
212
213 return len;
214}
215
Ian Kenta5370552006-05-15 09:43:51 -0700216static struct autofs_wait_queue *
Jeff Moyer70b52a02008-07-23 21:30:16 -0700217autofs4_find_wait(struct autofs_sb_info *sbi, struct qstr *qstr)
Ian Kenta5370552006-05-15 09:43:51 -0700218{
219 struct autofs_wait_queue *wq;
220
221 for (wq = sbi->queues; wq; wq = wq->next) {
Jeff Moyer70b52a02008-07-23 21:30:16 -0700222 if (wq->name.hash == qstr->hash &&
223 wq->name.len == qstr->len &&
224 wq->name.name &&
225 !memcmp(wq->name.name, qstr->name, qstr->len))
Ian Kenta5370552006-05-15 09:43:51 -0700226 break;
227 }
228 return wq;
229}
230
Ian Kenta1362fe2008-07-23 21:30:19 -0700231/*
232 * Check if we have a valid request.
233 * Returns
234 * 1 if the request should continue.
235 * In this case we can return an autofs_wait_queue entry if one is
236 * found or NULL to idicate a new wait needs to be created.
237 * 0 or a negative errno if the request shouldn't continue.
238 */
239static int validate_request(struct autofs_wait_queue **wait,
240 struct autofs_sb_info *sbi,
241 struct qstr *qstr,
242 struct dentry*dentry, enum autofs_notify notify)
243{
244 struct autofs_wait_queue *wq;
245 struct autofs_info *ino;
246
247 /* Wait in progress, continue; */
248 wq = autofs4_find_wait(sbi, qstr);
249 if (wq) {
250 *wait = wq;
251 return 1;
252 }
253
254 *wait = NULL;
255
256 /* If we don't yet have any info this is a new request */
257 ino = autofs4_dentry_ino(dentry);
258 if (!ino)
259 return 1;
260
261 /*
262 * If we've been asked to wait on an existing expire (NFY_NONE)
263 * but there is no wait in the queue ...
264 */
265 if (notify == NFY_NONE) {
266 /*
267 * Either we've betean the pending expire to post it's
268 * wait or it finished while we waited on the mutex.
269 * So we need to wait till either, the wait appears
270 * or the expire finishes.
271 */
272
273 while (ino->flags & AUTOFS_INF_EXPIRING) {
274 mutex_unlock(&sbi->wq_mutex);
275 schedule_timeout_interruptible(HZ/10);
276 if (mutex_lock_interruptible(&sbi->wq_mutex))
277 return -EINTR;
278
279 wq = autofs4_find_wait(sbi, qstr);
280 if (wq) {
281 *wait = wq;
282 return 1;
283 }
284 }
285
286 /*
287 * Not ideal but the status has already gone. Of the two
288 * cases where we wait on NFY_NONE neither depend on the
289 * return status of the wait.
290 */
291 return 0;
292 }
293
294 /*
295 * If we've been asked to trigger a mount and the request
296 * completed while we waited on the mutex ...
297 */
298 if (notify == NFY_MOUNT) {
299 /*
300 * If the dentry isn't hashed just go ahead and try the
301 * mount again with a new wait (not much else we can do).
302 */
303 if (!d_unhashed(dentry)) {
304 /*
305 * But if the dentry is hashed, that means that we
306 * got here through the revalidate path. Thus, we
307 * need to check if the dentry has been mounted
308 * while we waited on the wq_mutex. If it has,
309 * simply return success.
310 */
311 if (d_mountpoint(dentry))
312 return 0;
313 }
314 }
315
316 return 1;
317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319int autofs4_wait(struct autofs_sb_info *sbi, struct dentry *dentry,
320 enum autofs_notify notify)
321{
322 struct autofs_wait_queue *wq;
Jeff Moyer70b52a02008-07-23 21:30:16 -0700323 struct qstr qstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 char *name;
Ian Kenta1362fe2008-07-23 21:30:19 -0700325 int status, ret, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* In catatonic mode, we don't wait for nobody */
Ian Kente77fbdd2006-03-27 01:14:49 -0800328 if (sbi->catatonic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return -ENOENT;
Ian Kenta1362fe2008-07-23 21:30:19 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 name = kmalloc(NAME_MAX + 1, GFP_KERNEL);
332 if (!name)
333 return -ENOMEM;
334
Ian Kent5c0a32f2006-03-27 01:14:55 -0800335 /* If this is a direct mount request create a dummy name */
Ian Kent44d53eb2006-03-27 01:14:56 -0800336 if (IS_ROOT(dentry) && (sbi->type & AUTOFS_TYPE_DIRECT))
Jeff Moyer70b52a02008-07-23 21:30:16 -0700337 qstr.len = sprintf(name, "%p", dentry);
Ian Kent5c0a32f2006-03-27 01:14:55 -0800338 else {
Jeff Moyer70b52a02008-07-23 21:30:16 -0700339 qstr.len = autofs4_getpath(sbi, dentry, &name);
340 if (!qstr.len) {
Ian Kent5c0a32f2006-03-27 01:14:55 -0800341 kfree(name);
342 return -ENOENT;
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Jeff Moyer70b52a02008-07-23 21:30:16 -0700345 qstr.name = name;
346 qstr.hash = full_name_hash(name, qstr.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Ian Kentf4c7da02008-07-23 21:30:19 -0700348 if (mutex_lock_interruptible(&sbi->wq_mutex)) {
349 kfree(qstr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -EINTR;
Ian Kentf4c7da02008-07-23 21:30:19 -0700351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ian Kenta1362fe2008-07-23 21:30:19 -0700353 ret = validate_request(&wq, sbi, &qstr, dentry, notify);
354 if (ret <= 0) {
355 if (ret == 0)
Ian Kenta5370552006-05-15 09:43:51 -0700356 mutex_unlock(&sbi->wq_mutex);
Ian Kenta1362fe2008-07-23 21:30:19 -0700357 kfree(qstr.name);
358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
Ian Kente77fbdd2006-03-27 01:14:49 -0800361 if (!wq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* Create a new wait queue */
363 wq = kmalloc(sizeof(struct autofs_wait_queue),GFP_KERNEL);
Ian Kente77fbdd2006-03-27 01:14:49 -0800364 if (!wq) {
Jeff Moyer70b52a02008-07-23 21:30:16 -0700365 kfree(qstr.name);
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800366 mutex_unlock(&sbi->wq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENOMEM;
368 }
369
370 wq->wait_queue_token = autofs4_next_wait_queue;
371 if (++autofs4_next_wait_queue == 0)
372 autofs4_next_wait_queue = 1;
373 wq->next = sbi->queues;
374 sbi->queues = wq;
375 init_waitqueue_head(&wq->queue);
Jeff Moyer70b52a02008-07-23 21:30:16 -0700376 memcpy(&wq->name, &qstr, sizeof(struct qstr));
Ian Kent5c0a32f2006-03-27 01:14:55 -0800377 wq->dev = autofs4_get_dev(sbi);
378 wq->ino = autofs4_get_ino(sbi);
379 wq->uid = current->uid;
380 wq->gid = current->gid;
381 wq->pid = current->pid;
382 wq->tgid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 wq->status = -EINTR; /* Status return if interrupted */
Ian Kent296f7bf2008-07-23 21:30:21 -0700384 wq->wait_ctr = 2;
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800385 mutex_unlock(&sbi->wq_mutex);
Ian Kent3e7b1912006-03-27 01:14:59 -0800386
Ian Kent5c0a32f2006-03-27 01:14:55 -0800387 if (sbi->version < 5) {
388 if (notify == NFY_MOUNT)
389 type = autofs_ptype_missing;
390 else
391 type = autofs_ptype_expire_multi;
392 } else {
393 if (notify == NFY_MOUNT)
Ian Kent44d53eb2006-03-27 01:14:56 -0800394 type = (sbi->type & AUTOFS_TYPE_DIRECT) ?
Ian Kent5c0a32f2006-03-27 01:14:55 -0800395 autofs_ptype_missing_direct :
396 autofs_ptype_missing_indirect;
397 else
Ian Kent44d53eb2006-03-27 01:14:56 -0800398 type = (sbi->type & AUTOFS_TYPE_DIRECT) ?
Ian Kent5c0a32f2006-03-27 01:14:55 -0800399 autofs_ptype_expire_direct :
400 autofs_ptype_expire_indirect;
401 }
Ian Kent4dcd00b2005-05-01 08:59:16 -0700402
Ian Kent682d4fc2005-07-07 17:57:02 -0700403 DPRINTK("new wait id = 0x%08lx, name = %.*s, nfy=%d\n",
Jeff Moyer70b52a02008-07-23 21:30:16 -0700404 (unsigned long) wq->wait_queue_token, wq->name.len,
405 wq->name.name, notify);
Ian Kent4dcd00b2005-05-01 08:59:16 -0700406
407 /* autofs4_notify_daemon() may block */
408 autofs4_notify_daemon(sbi, wq, type);
Ian Kenta5370552006-05-15 09:43:51 -0700409 } else {
Ian Kent296f7bf2008-07-23 21:30:21 -0700410 wq->wait_ctr++;
Ian Kenta5370552006-05-15 09:43:51 -0700411 mutex_unlock(&sbi->wq_mutex);
Jeff Moyer70b52a02008-07-23 21:30:16 -0700412 kfree(qstr.name);
Ian Kenta5370552006-05-15 09:43:51 -0700413 DPRINTK("existing wait id = 0x%08lx, name = %.*s, nfy=%d",
Jeff Moyer70b52a02008-07-23 21:30:16 -0700414 (unsigned long) wq->wait_queue_token, wq->name.len,
415 wq->name.name, notify);
Ian Kent4dcd00b2005-05-01 08:59:16 -0700416 }
417
Ian Kent5a11d4d2008-07-23 21:30:17 -0700418 /*
419 * wq->name.name is NULL iff the lock is already released
420 * or the mount has been made catatonic.
421 */
Jeff Moyer70b52a02008-07-23 21:30:16 -0700422 if (wq->name.name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* Block all but "shutdown" signals while waiting */
424 sigset_t oldset;
425 unsigned long irqflags;
426
427 spin_lock_irqsave(&current->sighand->siglock, irqflags);
428 oldset = current->blocked;
429 siginitsetinv(&current->blocked, SHUTDOWN_SIGS & ~oldset.sig[0]);
430 recalc_sigpending();
431 spin_unlock_irqrestore(&current->sighand->siglock, irqflags);
432
Jeff Moyer70b52a02008-07-23 21:30:16 -0700433 wait_event_interruptible(wq->queue, wq->name.name == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 spin_lock_irqsave(&current->sighand->siglock, irqflags);
436 current->blocked = oldset;
437 recalc_sigpending();
438 spin_unlock_irqrestore(&current->sighand->siglock, irqflags);
439 } else {
440 DPRINTK("skipped sleeping");
441 }
442
443 status = wq->status;
444
445 /* Are we the last process to need status? */
Ian Kent296f7bf2008-07-23 21:30:21 -0700446 mutex_lock(&sbi->wq_mutex);
447 if (!--wq->wait_ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 kfree(wq);
Ian Kent296f7bf2008-07-23 21:30:21 -0700449 mutex_unlock(&sbi->wq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 return status;
452}
453
454
455int autofs4_wait_release(struct autofs_sb_info *sbi, autofs_wqt_t wait_queue_token, int status)
456{
457 struct autofs_wait_queue *wq, **wql;
458
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800459 mutex_lock(&sbi->wq_mutex);
Stephen Hemmingerc80544d2007-10-18 03:07:05 -0700460 for (wql = &sbi->queues; (wq = *wql) != NULL; wql = &wq->next) {
Ian Kente77fbdd2006-03-27 01:14:49 -0800461 if (wq->wait_queue_token == wait_queue_token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
463 }
464
Ian Kente77fbdd2006-03-27 01:14:49 -0800465 if (!wq) {
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800466 mutex_unlock(&sbi->wq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -EINVAL;
468 }
469
470 *wql = wq->next; /* Unlink from chain */
Jeff Moyer70b52a02008-07-23 21:30:16 -0700471 kfree(wq->name.name);
472 wq->name.name = NULL; /* Do not wait on this queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 wq->status = status;
Ian Kent296f7bf2008-07-23 21:30:21 -0700474 wake_up_interruptible(&wq->queue);
475 if (!--wq->wait_ctr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 kfree(wq);
Ian Kent296f7bf2008-07-23 21:30:21 -0700477 mutex_unlock(&sbi->wq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 return 0;
480}
481