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