coda_psdev.c revision 1.20 1 1.20 gehenna /* $NetBSD: coda_psdev.c,v 1.20 2002/09/06 13:18:43 gehenna Exp $ */
2 1.2 rvb
3 1.1 rvb /*
4 1.2 rvb *
5 1.2 rvb * Coda: an Experimental Distributed File System
6 1.2 rvb * Release 3.1
7 1.2 rvb *
8 1.2 rvb * Copyright (c) 1987-1998 Carnegie Mellon University
9 1.2 rvb * All Rights Reserved
10 1.2 rvb *
11 1.2 rvb * Permission to use, copy, modify and distribute this software and its
12 1.2 rvb * documentation is hereby granted, provided that both the copyright
13 1.2 rvb * notice and this permission notice appear in all copies of the
14 1.2 rvb * software, derivative works or modified versions, and any portions
15 1.2 rvb * thereof, and that both notices appear in supporting documentation, and
16 1.2 rvb * that credit is given to Carnegie Mellon University in all documents
17 1.2 rvb * and publicity pertaining to direct or indirect use of this code or its
18 1.2 rvb * derivatives.
19 1.2 rvb *
20 1.2 rvb * CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS KNOWN TO HAVE BUGS,
21 1.2 rvb * SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON ALLOWS
22 1.2 rvb * FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. CARNEGIE MELLON
23 1.2 rvb * DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER
24 1.2 rvb * RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF
25 1.2 rvb * ANY DERIVATIVE WORK.
26 1.2 rvb *
27 1.2 rvb * Carnegie Mellon encourages users of this software to return any
28 1.2 rvb * improvements or extensions that they make, and to grant Carnegie
29 1.2 rvb * Mellon the rights to redistribute these changes without encumbrance.
30 1.2 rvb *
31 1.4 rvb * @(#) coda/coda_psdev.c,v 1.1.1.1 1998/08/29 21:26:45 rvb Exp $
32 1.2 rvb */
33 1.1 rvb
34 1.1 rvb /*
35 1.1 rvb * Mach Operating System
36 1.1 rvb * Copyright (c) 1989 Carnegie-Mellon University
37 1.1 rvb * All rights reserved. The CMU software License Agreement specifies
38 1.1 rvb * the terms and conditions for use and redistribution.
39 1.1 rvb */
40 1.1 rvb
41 1.1 rvb /*
42 1.1 rvb * This code was written for the Coda file system at Carnegie Mellon
43 1.1 rvb * University. Contributers include David Steere, James Kistler, and
44 1.1 rvb * M. Satyanarayanan. */
45 1.1 rvb
46 1.1 rvb /* These routines define the psuedo device for communication between
47 1.1 rvb * Coda's Venus and Minicache in Mach 2.6. They used to be in cfs_subr.c,
48 1.1 rvb * but I moved them to make it easier to port the Minicache without
49 1.1 rvb * porting coda. -- DCS 10/12/94
50 1.1 rvb */
51 1.1 rvb
52 1.1 rvb /* These routines are the device entry points for Venus. */
53 1.18 lukem
54 1.18 lukem #include <sys/cdefs.h>
55 1.20 gehenna __KERNEL_RCSID(0, "$NetBSD: coda_psdev.c,v 1.20 2002/09/06 13:18:43 gehenna Exp $");
56 1.1 rvb
57 1.3 rvb extern int coda_nc_initialized; /* Set if cache has been initialized */
58 1.1 rvb
59 1.5 rvb #ifdef _LKM
60 1.5 rvb #define NVCODA 4
61 1.5 rvb #else
62 1.3 rvb #include <vcoda.h>
63 1.5 rvb #endif
64 1.5 rvb
65 1.1 rvb #include <sys/param.h>
66 1.1 rvb #include <sys/systm.h>
67 1.1 rvb #include <sys/kernel.h>
68 1.1 rvb #include <sys/malloc.h>
69 1.1 rvb #include <sys/proc.h>
70 1.1 rvb #include <sys/mount.h>
71 1.1 rvb #include <sys/file.h>
72 1.1 rvb #include <sys/ioctl.h>
73 1.1 rvb #include <sys/poll.h>
74 1.1 rvb #include <sys/select.h>
75 1.20 gehenna #include <sys/conf.h>
76 1.1 rvb
77 1.16 thorpej #include <miscfs/syncfs/syncfs.h>
78 1.16 thorpej
79 1.4 rvb #include <coda/coda.h>
80 1.4 rvb #include <coda/cnode.h>
81 1.4 rvb #include <coda/coda_namecache.h>
82 1.4 rvb #include <coda/coda_io.h>
83 1.1 rvb
84 1.2 rvb #define CTL_C
85 1.2 rvb
86 1.3 rvb int coda_psdev_print_entry = 0;
87 1.8 rvb static
88 1.8 rvb int outstanding_upcalls = 0;
89 1.8 rvb int coda_call_sleep = PZERO - 1;
90 1.8 rvb #ifdef CTL_C
91 1.8 rvb int coda_pcatch = PCATCH;
92 1.8 rvb #else
93 1.8 rvb #endif
94 1.3 rvb
95 1.19 perry #define ENTRY if(coda_psdev_print_entry) myprintf(("Entered %s\n",__func__))
96 1.1 rvb
97 1.3 rvb void vcodaattach(int n);
98 1.20 gehenna
99 1.20 gehenna dev_type_open(vc_nb_open);
100 1.20 gehenna dev_type_close(vc_nb_close);
101 1.20 gehenna dev_type_read(vc_nb_read);
102 1.20 gehenna dev_type_write(vc_nb_write);
103 1.20 gehenna dev_type_ioctl(vc_nb_ioctl);
104 1.20 gehenna dev_type_poll(vc_nb_poll);
105 1.20 gehenna
106 1.20 gehenna const struct cdevsw vcoda_cdevsw = {
107 1.20 gehenna vc_nb_open, vc_nb_close, vc_nb_read, vc_nb_write, vc_nb_ioctl,
108 1.20 gehenna nostop, notty, vc_nb_poll, nommap,
109 1.20 gehenna };
110 1.1 rvb
111 1.1 rvb struct vmsg {
112 1.1 rvb struct queue vm_chain;
113 1.1 rvb caddr_t vm_data;
114 1.1 rvb u_short vm_flags;
115 1.1 rvb u_short vm_inSize; /* Size is at most 5000 bytes */
116 1.1 rvb u_short vm_outSize;
117 1.1 rvb u_short vm_opcode; /* copied from data to save ptr lookup */
118 1.1 rvb int vm_unique;
119 1.1 rvb caddr_t vm_sleep; /* Not used by Mach. */
120 1.1 rvb };
121 1.1 rvb
122 1.1 rvb #define VM_READ 1
123 1.1 rvb #define VM_WRITE 2
124 1.1 rvb #define VM_INTR 4
125 1.1 rvb
126 1.3 rvb /* vcodaattach: do nothing */
127 1.1 rvb void
128 1.3 rvb vcodaattach(n)
129 1.1 rvb int n;
130 1.1 rvb {
131 1.1 rvb }
132 1.1 rvb
133 1.1 rvb /*
134 1.1 rvb * These functions are written for NetBSD.
135 1.1 rvb */
136 1.1 rvb int
137 1.1 rvb vc_nb_open(dev, flag, mode, p)
138 1.1 rvb dev_t dev;
139 1.1 rvb int flag;
140 1.1 rvb int mode;
141 1.1 rvb struct proc *p; /* NetBSD only */
142 1.1 rvb {
143 1.13 augustss struct vcomm *vcp;
144 1.1 rvb
145 1.1 rvb ENTRY;
146 1.1 rvb
147 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0)
148 1.1 rvb return(ENXIO);
149 1.1 rvb
150 1.3 rvb if (!coda_nc_initialized)
151 1.3 rvb coda_nc_init();
152 1.1 rvb
153 1.3 rvb vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
154 1.1 rvb if (VC_OPEN(vcp))
155 1.1 rvb return(EBUSY);
156 1.1 rvb
157 1.17 thorpej memset(&(vcp->vc_selproc), 0, sizeof (struct selinfo));
158 1.1 rvb INIT_QUEUE(vcp->vc_requests);
159 1.1 rvb INIT_QUEUE(vcp->vc_replys);
160 1.1 rvb MARK_VC_OPEN(vcp);
161 1.1 rvb
162 1.3 rvb coda_mnttbl[minor(dev)].mi_vfsp = NULL;
163 1.3 rvb coda_mnttbl[minor(dev)].mi_rootvp = NULL;
164 1.1 rvb
165 1.1 rvb return(0);
166 1.1 rvb }
167 1.1 rvb
168 1.1 rvb int
169 1.1 rvb vc_nb_close (dev, flag, mode, p)
170 1.1 rvb dev_t dev;
171 1.1 rvb int flag;
172 1.1 rvb int mode;
173 1.1 rvb struct proc *p;
174 1.1 rvb {
175 1.13 augustss struct vcomm *vcp;
176 1.13 augustss struct vmsg *vmp, *nvmp = NULL;
177 1.3 rvb struct coda_mntinfo *mi;
178 1.1 rvb int err;
179 1.1 rvb
180 1.1 rvb ENTRY;
181 1.1 rvb
182 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0)
183 1.1 rvb return(ENXIO);
184 1.1 rvb
185 1.3 rvb mi = &coda_mnttbl[minor(dev)];
186 1.1 rvb vcp = &(mi->mi_vcomm);
187 1.1 rvb
188 1.1 rvb if (!VC_OPEN(vcp))
189 1.1 rvb panic("vcclose: not open");
190 1.1 rvb
191 1.1 rvb /* prevent future operations on this vfs from succeeding by auto-
192 1.1 rvb * unmounting any vfs mounted via this device. This frees user or
193 1.1 rvb * sysadm from having to remember where all mount points are located.
194 1.1 rvb * Put this before WAKEUPs to avoid queuing new messages between
195 1.1 rvb * the WAKEUP and the unmount (which can happen if we're unlucky)
196 1.1 rvb */
197 1.8 rvb if (!mi->mi_rootvp) {
198 1.8 rvb /* just a simple open/close w no mount */
199 1.8 rvb MARK_VC_CLOSED(vcp);
200 1.8 rvb return 0;
201 1.1 rvb }
202 1.8 rvb
203 1.8 rvb /* Let unmount know this is for real */
204 1.16 thorpej /*
205 1.16 thorpej * XXX Freeze syncer. Must do this before locking the
206 1.16 thorpej * mount point. See dounmount for details().
207 1.16 thorpej */
208 1.16 thorpej lockmgr(&syncer_lock, LK_EXCLUSIVE, NULL);
209 1.8 rvb VTOC(mi->mi_rootvp)->c_flags |= C_UNMOUNTING;
210 1.16 thorpej if (vfs_busy(mi->mi_vfsp, 0, 0)) {
211 1.16 thorpej lockmgr(&syncer_lock, LK_RELEASE, NULL);
212 1.8 rvb return (EBUSY);
213 1.16 thorpej }
214 1.8 rvb coda_unmounting(mi->mi_vfsp);
215 1.1 rvb
216 1.1 rvb /* Wakeup clients so they can return. */
217 1.1 rvb for (vmp = (struct vmsg *)GETNEXT(vcp->vc_requests);
218 1.1 rvb !EOQ(vmp, vcp->vc_requests);
219 1.10 rvb vmp = nvmp)
220 1.1 rvb {
221 1.9 rvb nvmp = (struct vmsg *)GETNEXT(vmp->vm_chain);
222 1.1 rvb /* Free signal request messages and don't wakeup cause
223 1.1 rvb no one is waiting. */
224 1.3 rvb if (vmp->vm_opcode == CODA_SIGNAL) {
225 1.3 rvb CODA_FREE((caddr_t)vmp->vm_data, (u_int)VC_IN_NO_DATA);
226 1.3 rvb CODA_FREE((caddr_t)vmp, (u_int)sizeof(struct vmsg));
227 1.1 rvb continue;
228 1.1 rvb }
229 1.8 rvb outstanding_upcalls++;
230 1.1 rvb wakeup(&vmp->vm_sleep);
231 1.1 rvb }
232 1.8 rvb
233 1.1 rvb for (vmp = (struct vmsg *)GETNEXT(vcp->vc_replys);
234 1.1 rvb !EOQ(vmp, vcp->vc_replys);
235 1.1 rvb vmp = (struct vmsg *)GETNEXT(vmp->vm_chain))
236 1.1 rvb {
237 1.8 rvb outstanding_upcalls++;
238 1.1 rvb wakeup(&vmp->vm_sleep);
239 1.1 rvb }
240 1.8 rvb
241 1.1 rvb MARK_VC_CLOSED(vcp);
242 1.8 rvb
243 1.8 rvb if (outstanding_upcalls) {
244 1.8 rvb #ifdef CODA_VERBOSE
245 1.8 rvb printf("presleep: outstanding_upcalls = %d\n", outstanding_upcalls);
246 1.8 rvb (void) tsleep(&outstanding_upcalls, coda_call_sleep, "coda_umount", 0);
247 1.8 rvb printf("postsleep: outstanding_upcalls = %d\n", outstanding_upcalls);
248 1.8 rvb #else
249 1.8 rvb (void) tsleep(&outstanding_upcalls, coda_call_sleep, "coda_umount", 0);
250 1.8 rvb #endif
251 1.8 rvb }
252 1.8 rvb
253 1.8 rvb err = dounmount(mi->mi_vfsp, flag, p);
254 1.8 rvb if (err)
255 1.8 rvb myprintf(("Error %d unmounting vfs in vcclose(%d)\n",
256 1.8 rvb err, minor(dev)));
257 1.1 rvb return 0;
258 1.1 rvb }
259 1.1 rvb
260 1.1 rvb int
261 1.1 rvb vc_nb_read(dev, uiop, flag)
262 1.1 rvb dev_t dev;
263 1.1 rvb struct uio *uiop;
264 1.1 rvb int flag;
265 1.1 rvb {
266 1.13 augustss struct vcomm * vcp;
267 1.13 augustss struct vmsg *vmp;
268 1.1 rvb int error = 0;
269 1.1 rvb
270 1.1 rvb ENTRY;
271 1.1 rvb
272 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0)
273 1.1 rvb return(ENXIO);
274 1.1 rvb
275 1.3 rvb vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
276 1.1 rvb /* Get message at head of request queue. */
277 1.1 rvb if (EMPTY(vcp->vc_requests))
278 1.1 rvb return(0); /* Nothing to read */
279 1.1 rvb
280 1.1 rvb vmp = (struct vmsg *)GETNEXT(vcp->vc_requests);
281 1.1 rvb
282 1.1 rvb /* Move the input args into userspace */
283 1.1 rvb uiop->uio_rw = UIO_READ;
284 1.1 rvb error = uiomove(vmp->vm_data, vmp->vm_inSize, uiop);
285 1.1 rvb if (error) {
286 1.1 rvb myprintf(("vcread: error (%d) on uiomove\n", error));
287 1.1 rvb error = EINVAL;
288 1.1 rvb }
289 1.1 rvb
290 1.5 rvb #ifdef OLD_DIAGNOSTIC
291 1.1 rvb if (vmp->vm_chain.forw == 0 || vmp->vm_chain.back == 0)
292 1.1 rvb panic("vc_nb_read: bad chain");
293 1.1 rvb #endif
294 1.1 rvb
295 1.1 rvb REMQUE(vmp->vm_chain);
296 1.1 rvb
297 1.1 rvb /* If request was a signal, free up the message and don't
298 1.1 rvb enqueue it in the reply queue. */
299 1.3 rvb if (vmp->vm_opcode == CODA_SIGNAL) {
300 1.3 rvb if (codadebug)
301 1.1 rvb myprintf(("vcread: signal msg (%d, %d)\n",
302 1.1 rvb vmp->vm_opcode, vmp->vm_unique));
303 1.3 rvb CODA_FREE((caddr_t)vmp->vm_data, (u_int)VC_IN_NO_DATA);
304 1.3 rvb CODA_FREE((caddr_t)vmp, (u_int)sizeof(struct vmsg));
305 1.1 rvb return(error);
306 1.1 rvb }
307 1.1 rvb
308 1.1 rvb vmp->vm_flags |= VM_READ;
309 1.1 rvb INSQUE(vmp->vm_chain, vcp->vc_replys);
310 1.1 rvb
311 1.1 rvb return(error);
312 1.1 rvb }
313 1.1 rvb
314 1.1 rvb int
315 1.1 rvb vc_nb_write(dev, uiop, flag)
316 1.1 rvb dev_t dev;
317 1.1 rvb struct uio *uiop;
318 1.1 rvb int flag;
319 1.1 rvb {
320 1.13 augustss struct vcomm * vcp;
321 1.13 augustss struct vmsg *vmp;
322 1.3 rvb struct coda_out_hdr *out;
323 1.1 rvb u_long seq;
324 1.1 rvb u_long opcode;
325 1.1 rvb int buf[2];
326 1.1 rvb int error = 0;
327 1.1 rvb
328 1.1 rvb ENTRY;
329 1.1 rvb
330 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0)
331 1.1 rvb return(ENXIO);
332 1.1 rvb
333 1.3 rvb vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
334 1.1 rvb
335 1.1 rvb /* Peek at the opcode, unique without transfering the data. */
336 1.1 rvb uiop->uio_rw = UIO_WRITE;
337 1.1 rvb error = uiomove((caddr_t)buf, sizeof(int) * 2, uiop);
338 1.1 rvb if (error) {
339 1.1 rvb myprintf(("vcwrite: error (%d) on uiomove\n", error));
340 1.1 rvb return(EINVAL);
341 1.1 rvb }
342 1.1 rvb
343 1.1 rvb opcode = buf[0];
344 1.1 rvb seq = buf[1];
345 1.1 rvb
346 1.3 rvb if (codadebug)
347 1.1 rvb myprintf(("vcwrite got a call for %ld.%ld\n", opcode, seq));
348 1.1 rvb
349 1.1 rvb if (DOWNCALL(opcode)) {
350 1.1 rvb union outputArgs pbuf;
351 1.1 rvb
352 1.1 rvb /* get the rest of the data. */
353 1.1 rvb uiop->uio_rw = UIO_WRITE;
354 1.3 rvb error = uiomove((caddr_t)&pbuf.coda_purgeuser.oh.result, sizeof(pbuf) - (sizeof(int)*2), uiop);
355 1.1 rvb if (error) {
356 1.1 rvb myprintf(("vcwrite: error (%d) on uiomove (Op %ld seq %ld)\n",
357 1.1 rvb error, opcode, seq));
358 1.1 rvb return(EINVAL);
359 1.1 rvb }
360 1.1 rvb
361 1.1 rvb return handleDownCall(opcode, &pbuf);
362 1.1 rvb }
363 1.1 rvb
364 1.1 rvb /* Look for the message on the (waiting for) reply queue. */
365 1.1 rvb for (vmp = (struct vmsg *)GETNEXT(vcp->vc_replys);
366 1.1 rvb !EOQ(vmp, vcp->vc_replys);
367 1.1 rvb vmp = (struct vmsg *)GETNEXT(vmp->vm_chain))
368 1.1 rvb {
369 1.1 rvb if (vmp->vm_unique == seq) break;
370 1.1 rvb }
371 1.1 rvb
372 1.1 rvb if (EOQ(vmp, vcp->vc_replys)) {
373 1.3 rvb if (codadebug)
374 1.1 rvb myprintf(("vcwrite: msg (%ld, %ld) not found\n", opcode, seq));
375 1.1 rvb
376 1.1 rvb return(ESRCH);
377 1.1 rvb }
378 1.1 rvb
379 1.1 rvb /* Remove the message from the reply queue */
380 1.1 rvb REMQUE(vmp->vm_chain);
381 1.1 rvb
382 1.1 rvb /* move data into response buffer. */
383 1.3 rvb out = (struct coda_out_hdr *)vmp->vm_data;
384 1.1 rvb /* Don't need to copy opcode and uniquifier. */
385 1.1 rvb
386 1.1 rvb /* get the rest of the data. */
387 1.1 rvb if (vmp->vm_outSize < uiop->uio_resid) {
388 1.11 matt myprintf(("vcwrite: more data than asked for (%d < %lu)\n",
389 1.11 matt vmp->vm_outSize, (unsigned long) uiop->uio_resid));
390 1.1 rvb wakeup(&vmp->vm_sleep); /* Notify caller of the error. */
391 1.1 rvb return(EINVAL);
392 1.1 rvb }
393 1.1 rvb
394 1.1 rvb buf[0] = uiop->uio_resid; /* Save this value. */
395 1.1 rvb uiop->uio_rw = UIO_WRITE;
396 1.1 rvb error = uiomove((caddr_t) &out->result, vmp->vm_outSize - (sizeof(int) * 2), uiop);
397 1.1 rvb if (error) {
398 1.1 rvb myprintf(("vcwrite: error (%d) on uiomove (op %ld seq %ld)\n",
399 1.1 rvb error, opcode, seq));
400 1.1 rvb return(EINVAL);
401 1.1 rvb }
402 1.1 rvb
403 1.1 rvb /* I don't think these are used, but just in case. */
404 1.1 rvb /* XXX - aren't these two already correct? -bnoble */
405 1.1 rvb out->opcode = opcode;
406 1.1 rvb out->unique = seq;
407 1.1 rvb vmp->vm_outSize = buf[0]; /* Amount of data transferred? */
408 1.1 rvb vmp->vm_flags |= VM_WRITE;
409 1.1 rvb wakeup(&vmp->vm_sleep);
410 1.1 rvb
411 1.1 rvb return(0);
412 1.1 rvb }
413 1.1 rvb
414 1.1 rvb int
415 1.1 rvb vc_nb_ioctl(dev, cmd, addr, flag, p)
416 1.1 rvb dev_t dev;
417 1.5 rvb u_long cmd;
418 1.1 rvb caddr_t addr;
419 1.1 rvb int flag;
420 1.1 rvb struct proc *p;
421 1.1 rvb {
422 1.1 rvb ENTRY;
423 1.1 rvb
424 1.1 rvb switch(cmd) {
425 1.3 rvb case CODARESIZE: {
426 1.3 rvb struct coda_resize *data = (struct coda_resize *)addr;
427 1.3 rvb return(coda_nc_resize(data->hashsize, data->heapsize, IS_DOWNCALL));
428 1.1 rvb break;
429 1.1 rvb }
430 1.3 rvb case CODASTATS:
431 1.3 rvb if (coda_nc_use) {
432 1.3 rvb coda_nc_gather_stats();
433 1.1 rvb return(0);
434 1.1 rvb } else {
435 1.1 rvb return(ENODEV);
436 1.1 rvb }
437 1.1 rvb break;
438 1.3 rvb case CODAPRINT:
439 1.3 rvb if (coda_nc_use) {
440 1.3 rvb print_coda_nc();
441 1.1 rvb return(0);
442 1.1 rvb } else {
443 1.1 rvb return(ENODEV);
444 1.1 rvb }
445 1.1 rvb break;
446 1.9 rvb case CIOC_KERNEL_VERSION:
447 1.9 rvb switch (*(u_int *)addr) {
448 1.9 rvb case 0:
449 1.9 rvb *(u_int *)addr = coda_kernel_version;
450 1.9 rvb return 0;
451 1.9 rvb break;
452 1.9 rvb case 1:
453 1.9 rvb case 2:
454 1.9 rvb if (coda_kernel_version != *(u_int *)addr)
455 1.9 rvb return ENOENT;
456 1.9 rvb else
457 1.9 rvb return 0;
458 1.9 rvb default:
459 1.9 rvb return ENOENT;
460 1.9 rvb }
461 1.9 rvb break;
462 1.1 rvb default :
463 1.1 rvb return(EINVAL);
464 1.1 rvb break;
465 1.1 rvb }
466 1.1 rvb }
467 1.1 rvb
468 1.1 rvb int
469 1.1 rvb vc_nb_poll(dev, events, p)
470 1.1 rvb dev_t dev;
471 1.1 rvb int events;
472 1.1 rvb struct proc *p;
473 1.1 rvb {
474 1.13 augustss struct vcomm *vcp;
475 1.1 rvb int event_msk = 0;
476 1.1 rvb
477 1.1 rvb ENTRY;
478 1.1 rvb
479 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0)
480 1.1 rvb return(ENXIO);
481 1.1 rvb
482 1.3 rvb vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
483 1.1 rvb
484 1.1 rvb event_msk = events & (POLLIN|POLLRDNORM);
485 1.1 rvb if (!event_msk)
486 1.1 rvb return(0);
487 1.1 rvb
488 1.1 rvb if (!EMPTY(vcp->vc_requests))
489 1.1 rvb return(events & (POLLIN|POLLRDNORM));
490 1.1 rvb
491 1.1 rvb selrecord(p, &(vcp->vc_selproc));
492 1.1 rvb
493 1.1 rvb return(0);
494 1.1 rvb }
495 1.1 rvb
496 1.1 rvb /*
497 1.1 rvb * Statistics
498 1.1 rvb */
499 1.3 rvb struct coda_clstat coda_clstat;
500 1.1 rvb
501 1.1 rvb /*
502 1.1 rvb * Key question: whether to sleep interuptably or uninteruptably when
503 1.1 rvb * waiting for Venus. The former seems better (cause you can ^C a
504 1.1 rvb * job), but then GNU-EMACS completion breaks. Use tsleep with no
505 1.1 rvb * timeout, and no longjmp happens. But, when sleeping
506 1.1 rvb * "uninterruptibly", we don't get told if it returns abnormally
507 1.1 rvb * (e.g. kill -9).
508 1.1 rvb */
509 1.1 rvb
510 1.1 rvb int
511 1.3 rvb coda_call(mntinfo, inSize, outSize, buffer)
512 1.3 rvb struct coda_mntinfo *mntinfo; int inSize; int *outSize; caddr_t buffer;
513 1.1 rvb {
514 1.1 rvb struct vcomm *vcp;
515 1.1 rvb struct vmsg *vmp;
516 1.1 rvb int error;
517 1.1 rvb #ifdef CTL_C
518 1.1 rvb struct proc *p = curproc;
519 1.4 rvb sigset_t psig_omask;
520 1.1 rvb int i;
521 1.14 jdolecek psig_omask = p->p_sigctx.ps_siglist; /* array assignment */
522 1.1 rvb #endif
523 1.1 rvb if (mntinfo == NULL) {
524 1.1 rvb /* Unlikely, but could be a race condition with a dying warden */
525 1.1 rvb return ENODEV;
526 1.1 rvb }
527 1.1 rvb
528 1.1 rvb vcp = &(mntinfo->mi_vcomm);
529 1.1 rvb
530 1.3 rvb coda_clstat.ncalls++;
531 1.3 rvb coda_clstat.reqs[((struct coda_in_hdr *)buffer)->opcode]++;
532 1.1 rvb
533 1.1 rvb if (!VC_OPEN(vcp))
534 1.1 rvb return(ENODEV);
535 1.1 rvb
536 1.3 rvb CODA_ALLOC(vmp,struct vmsg *,sizeof(struct vmsg));
537 1.1 rvb /* Format the request message. */
538 1.1 rvb vmp->vm_data = buffer;
539 1.1 rvb vmp->vm_flags = 0;
540 1.1 rvb vmp->vm_inSize = inSize;
541 1.1 rvb vmp->vm_outSize
542 1.1 rvb = *outSize ? *outSize : inSize; /* |buffer| >= inSize */
543 1.3 rvb vmp->vm_opcode = ((struct coda_in_hdr *)buffer)->opcode;
544 1.1 rvb vmp->vm_unique = ++vcp->vc_seq;
545 1.3 rvb if (codadebug)
546 1.1 rvb myprintf(("Doing a call for %d.%d\n",
547 1.1 rvb vmp->vm_opcode, vmp->vm_unique));
548 1.1 rvb
549 1.1 rvb /* Fill in the common input args. */
550 1.3 rvb ((struct coda_in_hdr *)buffer)->unique = vmp->vm_unique;
551 1.1 rvb
552 1.1 rvb /* Append msg to request queue and poke Venus. */
553 1.1 rvb INSQUE(vmp->vm_chain, vcp->vc_requests);
554 1.1 rvb selwakeup(&(vcp->vc_selproc));
555 1.1 rvb
556 1.1 rvb /* We can be interrupted while we wait for Venus to process
557 1.1 rvb * our request. If the interrupt occurs before Venus has read
558 1.1 rvb * the request, we dequeue and return. If it occurs after the
559 1.1 rvb * read but before the reply, we dequeue, send a signal
560 1.1 rvb * message, and return. If it occurs after the reply we ignore
561 1.1 rvb * it. In no case do we want to restart the syscall. If it
562 1.1 rvb * was interrupted by a venus shutdown (vcclose), return
563 1.1 rvb * ENODEV. */
564 1.1 rvb
565 1.1 rvb /* Ignore return, We have to check anyway */
566 1.1 rvb #ifdef CTL_C
567 1.3 rvb /* This is work in progress. Setting coda_pcatch lets tsleep reawaken
568 1.1 rvb on a ^c or ^z. The problem is that emacs sets certain interrupts
569 1.1 rvb as SA_RESTART. This means that we should exit sleep handle the
570 1.1 rvb "signal" and then go to sleep again. Mostly this is done by letting
571 1.1 rvb the syscall complete and be restarted. We are not idempotent and
572 1.1 rvb can not do this. A better solution is necessary.
573 1.1 rvb */
574 1.1 rvb i = 0;
575 1.1 rvb do {
576 1.3 rvb error = tsleep(&vmp->vm_sleep, (coda_call_sleep|coda_pcatch), "coda_call", hz*2);
577 1.1 rvb if (error == 0)
578 1.1 rvb break;
579 1.1 rvb else if (error == EWOULDBLOCK) {
580 1.7 rvb #ifdef CODA_VERBOSE
581 1.3 rvb printf("coda_call: tsleep TIMEOUT %d sec\n", 2+2*i);
582 1.5 rvb #endif
583 1.14 jdolecek } else if (sigismember(&p->p_sigctx.ps_siglist, SIGIO)) {
584 1.14 jdolecek sigaddset(&p->p_sigctx.ps_sigmask, SIGIO);
585 1.7 rvb #ifdef CODA_VERBOSE
586 1.3 rvb printf("coda_call: tsleep returns %d SIGIO, cnt %d\n", error, i);
587 1.5 rvb #endif
588 1.14 jdolecek } else if (sigismember(&p->p_sigctx.ps_siglist, SIGALRM)) {
589 1.14 jdolecek sigaddset(&p->p_sigctx.ps_sigmask, SIGALRM);
590 1.8 rvb #ifdef CODA_VERBOSE
591 1.8 rvb printf("coda_call: tsleep returns %d SIGALRM, cnt %d\n", error, i);
592 1.8 rvb #endif
593 1.1 rvb } else {
594 1.4 rvb sigset_t tmp;
595 1.14 jdolecek tmp = p->p_sigctx.ps_siglist; /* array assignment */
596 1.14 jdolecek sigminusset(&p->p_sigctx.ps_sigmask, &tmp);
597 1.4 rvb
598 1.7 rvb #ifdef CODA_VERBOSE
599 1.3 rvb printf("coda_call: tsleep returns %d, cnt %d\n", error, i);
600 1.4 rvb printf("coda_call: siglist = %x.%x.%x.%x, sigmask = %x.%x.%x.%x, mask %x.%x.%x.%x\n",
601 1.14 jdolecek p->p_sigctx.ps_siglist.__bits[0], p->p_sigctx.ps_siglist.__bits[1],
602 1.14 jdolecek p->p_sigctx.ps_siglist.__bits[2], p->p_sigctx.ps_siglist.__bits[3],
603 1.14 jdolecek p->p_sigctx.ps_sigmask.__bits[0], p->p_sigctx.ps_sigmask.__bits[1],
604 1.14 jdolecek p->p_sigctx.ps_sigmask.__bits[2], p->p_sigctx.ps_sigmask.__bits[3],
605 1.4 rvb tmp.__bits[0], tmp.__bits[1], tmp.__bits[2], tmp.__bits[3]);
606 1.5 rvb #endif
607 1.1 rvb break;
608 1.5 rvb #ifdef notyet
609 1.14 jdolecek sigminusset(&p->p_sigctx.ps_sigmask, &p->p_sigctx.ps_siglist);
610 1.4 rvb printf("coda_call: siglist = %x.%x.%x.%x, sigmask = %x.%x.%x.%x\n",
611 1.15 jdolecek p->p_sigctx.ps_siglist.__bits[0], p->p_sigctx.ps_siglist.__bits[1],
612 1.15 jdolecek p->p_sigctx.ps_siglist.__bits[2], p->p_sigctx.ps_siglist.__bits[3],
613 1.15 jdolecek p->p_sigctx.ps_sigmask.__bits[0], p->p_sigctx.ps_sigmask.__bits[1],
614 1.15 jdolecek p->p_sigctx.ps_sigmask.__bits[2], p->p_sigctx.ps_sigmask.__bits[3]);
615 1.5 rvb #endif
616 1.1 rvb }
617 1.8 rvb } while (error && i++ < 128 && VC_OPEN(vcp));
618 1.14 jdolecek p->p_sigctx.ps_siglist = psig_omask; /* array assignment */
619 1.1 rvb #else
620 1.3 rvb (void) tsleep(&vmp->vm_sleep, coda_call_sleep, "coda_call", 0);
621 1.1 rvb #endif
622 1.1 rvb if (VC_OPEN(vcp)) { /* Venus is still alive */
623 1.1 rvb /* Op went through, interrupt or not... */
624 1.1 rvb if (vmp->vm_flags & VM_WRITE) {
625 1.1 rvb error = 0;
626 1.1 rvb *outSize = vmp->vm_outSize;
627 1.1 rvb }
628 1.1 rvb
629 1.1 rvb else if (!(vmp->vm_flags & VM_READ)) {
630 1.1 rvb /* Interrupted before venus read it. */
631 1.7 rvb #ifdef CODA_VERBOSE
632 1.7 rvb if (1)
633 1.7 rvb #else
634 1.5 rvb if (codadebug)
635 1.5 rvb #endif
636 1.1 rvb myprintf(("interrupted before read: op = %d.%d, flags = %x\n",
637 1.1 rvb vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
638 1.1 rvb REMQUE(vmp->vm_chain);
639 1.1 rvb error = EINTR;
640 1.1 rvb }
641 1.1 rvb
642 1.1 rvb else {
643 1.1 rvb /* (!(vmp->vm_flags & VM_WRITE)) means interrupted after
644 1.1 rvb upcall started */
645 1.1 rvb /* Interrupted after start of upcall, send venus a signal */
646 1.3 rvb struct coda_in_hdr *dog;
647 1.1 rvb struct vmsg *svmp;
648 1.1 rvb
649 1.7 rvb #ifdef CODA_VERBOSE
650 1.7 rvb if (1)
651 1.7 rvb #else
652 1.5 rvb if (codadebug)
653 1.5 rvb #endif
654 1.1 rvb myprintf(("Sending Venus a signal: op = %d.%d, flags = %x\n",
655 1.1 rvb vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
656 1.1 rvb
657 1.1 rvb REMQUE(vmp->vm_chain);
658 1.1 rvb error = EINTR;
659 1.1 rvb
660 1.3 rvb CODA_ALLOC(svmp, struct vmsg *, sizeof (struct vmsg));
661 1.1 rvb
662 1.3 rvb CODA_ALLOC((svmp->vm_data), char *, sizeof (struct coda_in_hdr));
663 1.3 rvb dog = (struct coda_in_hdr *)svmp->vm_data;
664 1.1 rvb
665 1.1 rvb svmp->vm_flags = 0;
666 1.3 rvb dog->opcode = svmp->vm_opcode = CODA_SIGNAL;
667 1.1 rvb dog->unique = svmp->vm_unique = vmp->vm_unique;
668 1.3 rvb svmp->vm_inSize = sizeof (struct coda_in_hdr);
669 1.3 rvb /*??? rvb */ svmp->vm_outSize = sizeof (struct coda_in_hdr);
670 1.1 rvb
671 1.3 rvb if (codadebug)
672 1.3 rvb myprintf(("coda_call: enqueing signal msg (%d, %d)\n",
673 1.1 rvb svmp->vm_opcode, svmp->vm_unique));
674 1.1 rvb
675 1.1 rvb /* insert at head of queue! */
676 1.1 rvb INSQUE(svmp->vm_chain, vcp->vc_requests);
677 1.1 rvb selwakeup(&(vcp->vc_selproc));
678 1.1 rvb }
679 1.1 rvb }
680 1.1 rvb
681 1.1 rvb else { /* If venus died (!VC_OPEN(vcp)) */
682 1.3 rvb if (codadebug)
683 1.1 rvb myprintf(("vcclose woke op %d.%d flags %d\n",
684 1.1 rvb vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
685 1.1 rvb
686 1.1 rvb error = ENODEV;
687 1.1 rvb }
688 1.1 rvb
689 1.3 rvb CODA_FREE(vmp, sizeof(struct vmsg));
690 1.8 rvb
691 1.8 rvb if (outstanding_upcalls > 0 && (--outstanding_upcalls == 0))
692 1.8 rvb wakeup(&outstanding_upcalls);
693 1.1 rvb
694 1.1 rvb if (!error)
695 1.3 rvb error = ((struct coda_out_hdr *)buffer)->result;
696 1.1 rvb return(error);
697 1.1 rvb }
698 1.4 rvb
699