waitq.c 11.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/* -*- c -*- --------------------------------------------------------------- *
 *
 * linux/fs/autofs/waitq.c
 *
 *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6
 *  Copyright 2001-2006 Ian Kent <raven@themaw.net>
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * ------------------------------------------------------------------------- */

#include <linux/slab.h>
#include <linux/time.h>
#include <linux/signal.h>
#include <linux/file.h>
#include "autofs_i.h"

/* We make this a static variable rather than a part of the superblock; it
   is better if we don't reassign numbers easily even across filesystems */
static autofs_wqt_t autofs4_next_wait_queue = 1;

/* These are the signals we allow interrupting a pending mount */
#define SHUTDOWN_SIGS	(sigmask(SIGKILL) | sigmask(SIGINT) | sigmask(SIGQUIT))

void autofs4_catatonic_mode(struct autofs_sb_info *sbi)
{
	struct autofs_wait_queue *wq, *nwq;

I
Ian Kent 已提交
31 32 33 34 35 36
	mutex_lock(&sbi->wq_mutex);
	if (sbi->catatonic) {
		mutex_unlock(&sbi->wq_mutex);
		return;
	}

L
Linus Torvalds 已提交
37 38 39 40 41
	DPRINTK("entering catatonic mode");

	sbi->catatonic = 1;
	wq = sbi->queues;
	sbi->queues = NULL;	/* Erase all wait queues */
42
	while (wq) {
L
Linus Torvalds 已提交
43 44
		nwq = wq->next;
		wq->status = -ENOENT; /* Magic is gone - report failure */
J
Jeff Moyer 已提交
45 46 47 48
		if (wq->name.name) {
			kfree(wq->name.name);
			wq->name.name = NULL;
		}
L
Linus Torvalds 已提交
49 50 51
		wake_up_interruptible(&wq->queue);
		wq = nwq;
	}
I
Ian Kent 已提交
52 53
	fput(sbi->pipe);	/* Close the pipe */
	sbi->pipe = NULL;
I
Ian Kent 已提交
54 55
	sbi->pipefd = -1;
	mutex_unlock(&sbi->wq_mutex);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
}

static int autofs4_write(struct file *file, const void *addr, int bytes)
{
	unsigned long sigpipe, flags;
	mm_segment_t fs;
	const char *data = (const char *)addr;
	ssize_t wr = 0;

	/** WARNING: this is not safe for writing more than PIPE_BUF bytes! **/

	sigpipe = sigismember(&current->pending.signal, SIGPIPE);

	/* Save pointer to user space and point back to kernel space */
	fs = get_fs();
	set_fs(KERNEL_DS);

	while (bytes &&
	       (wr = file->f_op->write(file,data,bytes,&file->f_pos)) > 0) {
		data += wr;
		bytes -= wr;
	}

	set_fs(fs);

	/* Keep the currently executing process from receiving a
	   SIGPIPE unless it was already supposed to get one */
	if (wr == -EPIPE && !sigpipe) {
		spin_lock_irqsave(&current->sighand->siglock, flags);
		sigdelset(&current->pending.signal, SIGPIPE);
		recalc_sigpending();
		spin_unlock_irqrestore(&current->sighand->siglock, flags);
	}

	return (bytes > 0);
}
	
static void autofs4_notify_daemon(struct autofs_sb_info *sbi,
				 struct autofs_wait_queue *wq,
				 int type)
{
I
Ian Kent 已提交
97 98 99 100 101
	union {
		struct autofs_packet_hdr hdr;
		union autofs_packet_union v4_pkt;
		union autofs_v5_packet_union v5_pkt;
	} pkt;
L
Linus Torvalds 已提交
102 103 104
	size_t pktsz;

	DPRINTK("wait id = 0x%08lx, name = %.*s, type=%d",
J
Jeff Moyer 已提交
105
		wq->wait_queue_token, wq->name.len, wq->name.name, type);
L
Linus Torvalds 已提交
106 107 108 109 110

	memset(&pkt,0,sizeof pkt); /* For security reasons */

	pkt.hdr.proto_version = sbi->version;
	pkt.hdr.type = type;
111 112 113 114
	switch (type) {
	/* Kernel protocol v4 missing and expire packets */
	case autofs_ptype_missing:
	{
I
Ian Kent 已提交
115
		struct autofs_packet_missing *mp = &pkt.v4_pkt.missing;
L
Linus Torvalds 已提交
116 117 118 119

		pktsz = sizeof(*mp);

		mp->wait_queue_token = wq->wait_queue_token;
J
Jeff Moyer 已提交
120 121 122
		mp->len = wq->name.len;
		memcpy(mp->name, wq->name.name, wq->name.len);
		mp->name[wq->name.len] = '\0';
123 124 125 126
		break;
	}
	case autofs_ptype_expire_multi:
	{
I
Ian Kent 已提交
127
		struct autofs_packet_expire_multi *ep = &pkt.v4_pkt.expire_multi;
L
Linus Torvalds 已提交
128 129 130 131

		pktsz = sizeof(*ep);

		ep->wait_queue_token = wq->wait_queue_token;
J
Jeff Moyer 已提交
132 133 134
		ep->len = wq->name.len;
		memcpy(ep->name, wq->name.name, wq->name.len);
		ep->name[wq->name.len] = '\0';
135 136 137 138 139 140 141 142 143 144 145
		break;
	}
	/*
	 * Kernel protocol v5 packet for handling indirect and direct
	 * mount missing and expire requests
	 */
	case autofs_ptype_missing_indirect:
	case autofs_ptype_expire_indirect:
	case autofs_ptype_missing_direct:
	case autofs_ptype_expire_direct:
	{
I
Ian Kent 已提交
146
		struct autofs_v5_packet *packet = &pkt.v5_pkt.v5_packet;
147 148 149 150

		pktsz = sizeof(*packet);

		packet->wait_queue_token = wq->wait_queue_token;
J
Jeff Moyer 已提交
151 152 153
		packet->len = wq->name.len;
		memcpy(packet->name, wq->name.name, wq->name.len);
		packet->name[wq->name.len] = '\0';
154 155 156 157 158 159 160 161 162
		packet->dev = wq->dev;
		packet->ino = wq->ino;
		packet->uid = wq->uid;
		packet->gid = wq->gid;
		packet->pid = wq->pid;
		packet->tgid = wq->tgid;
		break;
	}
	default:
L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
		printk("autofs4_notify_daemon: bad type %d!\n", type);
		return;
	}

	if (autofs4_write(sbi->pipe, &pkt, pktsz))
		autofs4_catatonic_mode(sbi);
}

static int autofs4_getpath(struct autofs_sb_info *sbi,
			   struct dentry *dentry, char **name)
{
	struct dentry *root = sbi->sb->s_root;
	struct dentry *tmp;
	char *buf = *name;
	char *p;
	int len = 0;

	spin_lock(&dcache_lock);
	for (tmp = dentry ; tmp != root ; tmp = tmp->d_parent)
		len += tmp->d_name.len + 1;

184
	if (!len || --len > NAME_MAX) {
L
Linus Torvalds 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
		spin_unlock(&dcache_lock);
		return 0;
	}

	*(buf + len) = '\0';
	p = buf + len - dentry->d_name.len;
	strncpy(p, dentry->d_name.name, dentry->d_name.len);

	for (tmp = dentry->d_parent; tmp != root ; tmp = tmp->d_parent) {
		*(--p) = '/';
		p -= tmp->d_name.len;
		strncpy(p, tmp->d_name.name, tmp->d_name.len);
	}
	spin_unlock(&dcache_lock);

	return len;
}

203
static struct autofs_wait_queue *
J
Jeff Moyer 已提交
204
autofs4_find_wait(struct autofs_sb_info *sbi, struct qstr *qstr)
205 206 207 208
{
	struct autofs_wait_queue *wq;

	for (wq = sbi->queues; wq; wq = wq->next) {
J
Jeff Moyer 已提交
209 210 211 212
		if (wq->name.hash == qstr->hash &&
		    wq->name.len == qstr->len &&
		    wq->name.name &&
			 !memcmp(wq->name.name, qstr->name, qstr->len))
213 214 215 216 217
			break;
	}
	return wq;
}

I
Ian Kent 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
/*
 * Check if we have a valid request.
 * Returns
 * 1 if the request should continue.
 *   In this case we can return an autofs_wait_queue entry if one is
 *   found or NULL to idicate a new wait needs to be created.
 * 0 or a negative errno if the request shouldn't continue.
 */
static int validate_request(struct autofs_wait_queue **wait,
			    struct autofs_sb_info *sbi,
			    struct qstr *qstr,
			    struct dentry*dentry, enum autofs_notify notify)
{
	struct autofs_wait_queue *wq;
	struct autofs_info *ino;

	/* Wait in progress, continue; */
	wq = autofs4_find_wait(sbi, qstr);
	if (wq) {
		*wait = wq;
		return 1;
	}

	*wait = NULL;

	/* If we don't yet have any info this is a new request */
	ino = autofs4_dentry_ino(dentry);
	if (!ino)
		return 1;

	/*
	 * If we've been asked to wait on an existing expire (NFY_NONE)
	 * but there is no wait in the queue ...
	 */
	if (notify == NFY_NONE) {
		/*
		 * Either we've betean the pending expire to post it's
		 * wait or it finished while we waited on the mutex.
		 * So we need to wait till either, the wait appears
		 * or the expire finishes.
		 */

		while (ino->flags & AUTOFS_INF_EXPIRING) {
			mutex_unlock(&sbi->wq_mutex);
			schedule_timeout_interruptible(HZ/10);
			if (mutex_lock_interruptible(&sbi->wq_mutex))
				return -EINTR;

			wq = autofs4_find_wait(sbi, qstr);
			if (wq) {
				*wait = wq;
				return 1;
			}
		}

		/*
		 * Not ideal but the status has already gone. Of the two
		 * cases where we wait on NFY_NONE neither depend on the
		 * return status of the wait.
		 */
		return 0;
	}

	/*
	 * If we've been asked to trigger a mount and the request
	 * completed while we waited on the mutex ...
	 */
	if (notify == NFY_MOUNT) {
		/*
		 * If the dentry isn't hashed just go ahead and try the
		 * mount again with a new wait (not much else we can do).
		*/
		if (!d_unhashed(dentry)) {
			/*
			 * But if the dentry is hashed, that means that we
			 * got here through the revalidate path.  Thus, we
			 * need to check if the dentry has been mounted
			 * while we waited on the wq_mutex. If it has,
			 * simply return success.
			 */
			if (d_mountpoint(dentry))
				return 0;
		}
	}

	return 1;
}

L
Linus Torvalds 已提交
306 307 308 309
int autofs4_wait(struct autofs_sb_info *sbi, struct dentry *dentry,
		enum autofs_notify notify)
{
	struct autofs_wait_queue *wq;
J
Jeff Moyer 已提交
310
	struct qstr qstr;
L
Linus Torvalds 已提交
311
	char *name;
I
Ian Kent 已提交
312
	int status, ret, type;
L
Linus Torvalds 已提交
313 314

	/* In catatonic mode, we don't wait for nobody */
315
	if (sbi->catatonic)
L
Linus Torvalds 已提交
316
		return -ENOENT;
I
Ian Kent 已提交
317

L
Linus Torvalds 已提交
318 319 320 321
	name = kmalloc(NAME_MAX + 1, GFP_KERNEL);
	if (!name)
		return -ENOMEM;

322
	/* If this is a direct mount request create a dummy name */
323
	if (IS_ROOT(dentry) && (sbi->type & AUTOFS_TYPE_DIRECT))
J
Jeff Moyer 已提交
324
		qstr.len = sprintf(name, "%p", dentry);
325
	else {
J
Jeff Moyer 已提交
326 327
		qstr.len = autofs4_getpath(sbi, dentry, &name);
		if (!qstr.len) {
328 329 330
			kfree(name);
			return -ENOENT;
		}
L
Linus Torvalds 已提交
331
	}
J
Jeff Moyer 已提交
332 333
	qstr.name = name;
	qstr.hash = full_name_hash(name, qstr.len);
L
Linus Torvalds 已提交
334

I
Ian Kent 已提交
335 336
	if (mutex_lock_interruptible(&sbi->wq_mutex)) {
		kfree(qstr.name);
L
Linus Torvalds 已提交
337
		return -EINTR;
I
Ian Kent 已提交
338
	}
339

I
Ian Kent 已提交
340 341 342
	ret = validate_request(&wq, sbi, &qstr, dentry, notify);
	if (ret <= 0) {
		if (ret == 0)
I
Ingo Molnar 已提交
343
			mutex_unlock(&sbi->wq_mutex);
I
Ian Kent 已提交
344 345
		kfree(qstr.name);
		return ret;
346
	}
I
Ian Kent 已提交
347

348
	if (!wq) {
L
Linus Torvalds 已提交
349 350
		/* Create a new wait queue */
		wq = kmalloc(sizeof(struct autofs_wait_queue),GFP_KERNEL);
351
		if (!wq) {
J
Jeff Moyer 已提交
352
			kfree(qstr.name);
I
Ingo Molnar 已提交
353
			mutex_unlock(&sbi->wq_mutex);
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361 362
			return -ENOMEM;
		}

		wq->wait_queue_token = autofs4_next_wait_queue;
		if (++autofs4_next_wait_queue == 0)
			autofs4_next_wait_queue = 1;
		wq->next = sbi->queues;
		sbi->queues = wq;
		init_waitqueue_head(&wq->queue);
J
Jeff Moyer 已提交
363
		memcpy(&wq->name, &qstr, sizeof(struct qstr));
364 365 366 367 368 369
		wq->dev = autofs4_get_dev(sbi);
		wq->ino = autofs4_get_ino(sbi);
		wq->uid = current->uid;
		wq->gid = current->gid;
		wq->pid = current->pid;
		wq->tgid = current->tgid;
L
Linus Torvalds 已提交
370 371
		wq->status = -EINTR; /* Status return if interrupted */
		atomic_set(&wq->wait_ctr, 2);
I
Ingo Molnar 已提交
372
		mutex_unlock(&sbi->wq_mutex);
I
Ian Kent 已提交
373

374 375 376 377 378 379 380
		if (sbi->version < 5) {
			if (notify == NFY_MOUNT)
				type = autofs_ptype_missing;
			else
				type = autofs_ptype_expire_multi;
		} else {
			if (notify == NFY_MOUNT)
381
				type = (sbi->type & AUTOFS_TYPE_DIRECT) ?
382 383 384
					autofs_ptype_missing_direct :
					 autofs_ptype_missing_indirect;
			else
385
				type = (sbi->type & AUTOFS_TYPE_DIRECT) ?
386 387 388
					autofs_ptype_expire_direct :
					autofs_ptype_expire_indirect;
		}
I
Ian Kent 已提交
389

390
		DPRINTK("new wait id = 0x%08lx, name = %.*s, nfy=%d\n",
J
Jeff Moyer 已提交
391 392
			(unsigned long) wq->wait_queue_token, wq->name.len,
			wq->name.name, notify);
I
Ian Kent 已提交
393 394 395

		/* autofs4_notify_daemon() may block */
		autofs4_notify_daemon(sbi, wq, type);
396 397 398
	} else {
		atomic_inc(&wq->wait_ctr);
		mutex_unlock(&sbi->wq_mutex);
J
Jeff Moyer 已提交
399
		kfree(qstr.name);
400
		DPRINTK("existing wait id = 0x%08lx, name = %.*s, nfy=%d",
J
Jeff Moyer 已提交
401 402
			(unsigned long) wq->wait_queue_token, wq->name.len,
			wq->name.name, notify);
I
Ian Kent 已提交
403 404
	}

I
Ian Kent 已提交
405 406 407 408
	/*
	 * wq->name.name is NULL iff the lock is already released
	 * or the mount has been made catatonic.
	 */
J
Jeff Moyer 已提交
409
	if (wq->name.name) {
L
Linus Torvalds 已提交
410 411 412 413 414 415 416 417 418 419
		/* Block all but "shutdown" signals while waiting */
		sigset_t oldset;
		unsigned long irqflags;

		spin_lock_irqsave(&current->sighand->siglock, irqflags);
		oldset = current->blocked;
		siginitsetinv(&current->blocked, SHUTDOWN_SIGS & ~oldset.sig[0]);
		recalc_sigpending();
		spin_unlock_irqrestore(&current->sighand->siglock, irqflags);

J
Jeff Moyer 已提交
420
		wait_event_interruptible(wq->queue, wq->name.name == NULL);
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443

		spin_lock_irqsave(&current->sighand->siglock, irqflags);
		current->blocked = oldset;
		recalc_sigpending();
		spin_unlock_irqrestore(&current->sighand->siglock, irqflags);
	} else {
		DPRINTK("skipped sleeping");
	}

	status = wq->status;

	/* Are we the last process to need status? */
	if (atomic_dec_and_test(&wq->wait_ctr))
		kfree(wq);

	return status;
}


int autofs4_wait_release(struct autofs_sb_info *sbi, autofs_wqt_t wait_queue_token, int status)
{
	struct autofs_wait_queue *wq, **wql;

I
Ingo Molnar 已提交
444
	mutex_lock(&sbi->wq_mutex);
445
	for (wql = &sbi->queues; (wq = *wql) != NULL; wql = &wq->next) {
446
		if (wq->wait_queue_token == wait_queue_token)
L
Linus Torvalds 已提交
447 448 449
			break;
	}

450
	if (!wq) {
I
Ingo Molnar 已提交
451
		mutex_unlock(&sbi->wq_mutex);
L
Linus Torvalds 已提交
452 453 454 455
		return -EINVAL;
	}

	*wql = wq->next;	/* Unlink from chain */
J
Jeff Moyer 已提交
456 457
	kfree(wq->name.name);
	wq->name.name = NULL;	/* Do not wait on this queue */
I
Ian Kent 已提交
458
	mutex_unlock(&sbi->wq_mutex);
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467 468 469

	wq->status = status;

	if (atomic_dec_and_test(&wq->wait_ctr))	/* Is anyone still waiting for this guy? */
		kfree(wq);
	else
		wake_up_interruptible(&wq->queue);

	return 0;
}