Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | /* -*- linux-c -*- --------------------------------------------------------- * * * linux/fs/autofs/waitq.c * * Copyright 1997 Transmeta Corporation -- All Rights Reserved * * 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/malloc.h> #include <linux/sched.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 int autofs_next_wait_queue = 1; void autofs_catatonic_mode(struct autofs_sb_info *sbi) { struct autofs_wait_queue *wq, *nwq; DPRINTK(("autofs: entering catatonic mode\n")); sbi->catatonic = 1; wq = sbi->queues; sbi->queues = NULL; /* Erase all wait queues */ while ( wq ) { nwq = wq->next; wq->status = -ENOENT; /* Magic is gone - report failure */ kfree(wq->name); wq->name = NULL; wake_up(&wq->queue); wq = nwq; } fput(sbi->pipe); /* Close the pipe */ } static int autofs_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(¤t->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(¤t->sigmask_lock, flags); sigdelset(¤t->signal, SIGPIPE); recalc_sigpending(current); spin_unlock_irqrestore(¤t->sigmask_lock, flags); } return (bytes > 0); } static void autofs_notify_daemon(struct autofs_sb_info *sbi, struct autofs_wait_queue *wq) { struct autofs_packet_missing pkt; DPRINTK(("autofs_wait: wait id = 0x%08lx, name = ", wq->wait_queue_token)); autofs_say(wq->name,wq->len); memset(&pkt,0,sizeof pkt); /* For security reasons */ pkt.hdr.proto_version = AUTOFS_PROTO_VERSION; pkt.hdr.type = autofs_ptype_missing; pkt.wait_queue_token = wq->wait_queue_token; pkt.len = wq->len; memcpy(pkt.name, wq->name, pkt.len); pkt.name[pkt.len] = '\0'; if ( autofs_write(sbi->pipe,&pkt,sizeof(struct autofs_packet_missing)) ) autofs_catatonic_mode(sbi); } int autofs_wait(struct autofs_sb_info *sbi, struct qstr * name) { struct autofs_wait_queue *wq; int status; for ( wq = sbi->queues ; wq ; wq = wq->next ) { if ( wq->hash == name->hash && wq->len == name->len && wq->name && !memcmp(wq->name,name->name,name->len) ) break; } if ( !wq ) { /* Create a new wait queue */ wq = kmalloc(sizeof(struct autofs_wait_queue),GFP_KERNEL); if ( !wq ) return -ENOMEM; wq->name = kmalloc(name->len,GFP_KERNEL); if ( !wq->name ) { kfree(wq); return -ENOMEM; } wq->wait_queue_token = autofs_next_wait_queue++; init_waitqueue(&wq->queue); wq->hash = name->hash; wq->len = name->len; wq->status = -EINTR; /* Status return if interrupted */ memcpy(wq->name, name->name, name->len); wq->next = sbi->queues; sbi->queues = wq; /* autofs_notify_daemon() may block */ wq->wait_ctr = 2; autofs_notify_daemon(sbi,wq); } else wq->wait_ctr++; if ( wq->name ) { /* wq->name is NULL if and only if the lock is released */ interruptible_sleep_on(&wq->queue); } else { DPRINTK(("autofs_wait: skipped sleeping\n")); } status = wq->status; if ( ! --wq->wait_ctr ) /* Are we the last process to need status? */ kfree(wq); return status; } int autofs_wait_release(struct autofs_sb_info *sbi, unsigned long wait_queue_token, int status) { struct autofs_wait_queue *wq, **wql; for ( wql = &sbi->queues ; (wq = *wql) ; wql = &wq->next ) { if ( wq->wait_queue_token == wait_queue_token ) break; } if ( !wq ) return -EINVAL; *wql = wq->next; /* Unlink from chain */ kfree(wq->name); wq->name = NULL; /* Do not wait on this queue */ wq->status = status; if ( ! --wq->wait_ctr ) /* Is anyone still waiting for this guy? */ kfree(wq); else wake_up(&wq->queue); return 0; } |