Home | History | Annotate | Line # | Download | only in coda
coda_psdev.c revision 1.6
      1  1.6   tv /*	$NetBSD: coda_psdev.c,v 1.6 1998/09/26 15:24:46 tv 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 /*
     53  1.1  rvb  * HISTORY
     54  1.4  rvb  * $Log: coda_psdev.c,v $
     55  1.6   tv  * Revision 1.6  1998/09/26 15:24:46  tv
     56  1.6   tv  * DIAGNOSTIC -> DEBUG for all non-panic messages.  DIAGNOSTIC is only for
     57  1.6   tv  * sanity checks and should not turn on any messages not already printed
     58  1.6   tv  * without it.
     59  1.6   tv  *
     60  1.5  rvb  * Revision 1.5  1998/09/25 15:01:13  rvb
     61  1.5  rvb  * Conditionalize "stray" printouts under DIAGNOSTIC and DEBUG.
     62  1.5  rvb  * Make files compile if DEBUG is on (from  Alan Barrett).  Finally,
     63  1.4  rvb  * make coda an lkm.
     64  1.4  rvb  *
     65  1.4  rvb  * Revision 1.4  1998/09/15 02:02:59  rvb
     66  1.4  rvb  * Final piece of rename cfs->coda
     67  1.3  rvb  *
     68  1.3  rvb  * Revision 1.3  1998/09/12 15:05:48  rvb
     69  1.3  rvb  * Change cfs/CFS in symbols, strings and constants to coda/CODA
     70  1.2  rvb  * to avoid fs conflicts.
     71  1.2  rvb  *
     72  1.2  rvb  * Revision 1.2  1998/09/08 17:12:47  rvb
     73  1.1  rvb  * Pass2 complete
     74  1.1  rvb  *
     75  1.1  rvb  * Revision 1.1.1.1  1998/08/29 21:26:45  rvb
     76  1.1  rvb  * Very Preliminary Coda
     77  1.1  rvb  *
     78  1.1  rvb  * Revision 1.9  1998/08/28 18:12:17  rvb
     79  1.1  rvb  * Now it also works on FreeBSD -current.  This code will be
     80  1.1  rvb  * committed to the FreeBSD -current and NetBSD -current
     81  1.1  rvb  * trees.  It will then be tailored to the particular platform
     82  1.1  rvb  * by flushing conditional code.
     83  1.1  rvb  *
     84  1.1  rvb  * Revision 1.8  1998/08/18 17:05:15  rvb
     85  1.1  rvb  * Don't use __RCSID now
     86  1.1  rvb  *
     87  1.1  rvb  * Revision 1.7  1998/08/18 16:31:41  rvb
     88  1.1  rvb  * Sync the code for NetBSD -current; test on 1.3 later
     89  1.1  rvb  *
     90  1.1  rvb  * Revision 1.8  1998/06/09 23:30:42  rvb
     91  1.1  rvb  * Try to allow ^C -- take 1
     92  1.1  rvb  *
     93  1.1  rvb  * Revision 1.5.2.8  98/01/23  11:21:04  rvb
     94  1.1  rvb  * Sync with 2.2.5
     95  1.3  rvb  *
     96  1.1  rvb  * Revision 1.5.2.7  98/01/22  22:22:21  rvb
     97  1.1  rvb  * sync 1.2 and 1.3
     98  1.1  rvb  *
     99  1.1  rvb  * Revision 1.5.2.6  98/01/22  13:11:24  rvb
    100  1.1  rvb  * Move make_coda_node ctlfid later so vfsp is known; work on ^c and ^z
    101  1.1  rvb  *
    102  1.1  rvb  * Revision 1.5.2.5  97/12/16  22:01:27  rvb
    103  1.1  rvb  * Oops add cfs_subr.h cfs_venus.h; sync with peter
    104  1.3  rvb  *
    105  1.1  rvb  * Revision 1.5.2.4  97/12/16  12:40:05  rvb
    106  1.1  rvb  * Sync with 1.3
    107  1.1  rvb  *
    108  1.1  rvb  * Revision 1.5.2.3  97/12/10  14:08:24  rvb
    109  1.1  rvb  * Fix O_ flags; check result in coda_call
    110  1.1  rvb  *
    111  1.1  rvb  * Revision 1.5.2.2  97/12/10  11:40:24  rvb
    112  1.1  rvb  * No more ody
    113  1.1  rvb  *
    114  1.1  rvb  * Revision 1.5.2.1  97/12/06  17:41:20  rvb
    115  1.1  rvb  * Sync with peters coda.h
    116  1.1  rvb  *
    117  1.1  rvb  * Revision 1.5  97/12/05  10:39:16  rvb
    118  1.1  rvb  * Read CHANGES
    119  1.1  rvb  *
    120  1.1  rvb  * Revision 1.4.18.9  97/12/05  08:58:07  rvb
    121  1.1  rvb  * peter found this one
    122  1.1  rvb  *
    123  1.1  rvb  * Revision 1.4.18.8  97/11/26  15:28:57  rvb
    124  1.1  rvb  * Cant make downcall pbuf == union cfs_downcalls yet
    125  1.1  rvb  *
    126  1.1  rvb  * Revision 1.4.18.7  97/11/25  09:40:49  rvb
    127  1.1  rvb  * Final cfs_venus.c w/o macros, but one locking bug
    128  1.1  rvb  *
    129  1.1  rvb  * Revision 1.4.18.6  97/11/20  11:46:41  rvb
    130  1.1  rvb  * Capture current cfs_venus
    131  1.1  rvb  *
    132  1.1  rvb  * Revision 1.4.18.5  97/11/18  10:27:15  rvb
    133  1.1  rvb  * cfs_nbsd.c is DEAD!!!; integrated into cfs_vf/vnops.c
    134  1.1  rvb  * cfs_nb_foo and cfs_foo are joined
    135  1.1  rvb  *
    136  1.1  rvb  * Revision 1.4.18.4  97/11/13  22:02:59  rvb
    137  1.1  rvb  * pass2 cfs_NetBSD.h mt
    138  1.1  rvb  *
    139  1.1  rvb  * Revision 1.4.18.3  97/11/12  12:09:38  rvb
    140  1.1  rvb  * reorg pass1
    141  1.1  rvb  *
    142  1.1  rvb  * Revision 1.4.18.2  97/10/29  16:06:09  rvb
    143  1.1  rvb  * Kill DYING
    144  1.1  rvb  *
    145  1.1  rvb  * Revision 1.4.18.1  1997/10/28 23:10:15  rvb
    146  1.1  rvb  * >64Meg; venus can be killed!
    147  1.1  rvb  *
    148  1.1  rvb  * Revision 1.4  1996/12/12 22:10:58  bnoble
    149  1.1  rvb  * Fixed the "downcall invokes venus operation" deadlock in all known cases.
    150  1.1  rvb  * There may be more
    151  1.1  rvb  *
    152  1.1  rvb  * Revision 1.3  1996/11/13 04:14:20  bnoble
    153  1.1  rvb  * Merging BNOBLE_WORK_6_20_96 into main line
    154  1.1  rvb  *
    155  1.1  rvb  * Revision 1.2.8.1  1996/08/22 14:25:04  bnoble
    156  1.1  rvb  * Added a return code from vc_nb_close
    157  1.3  rvb  *
    158  1.1  rvb  * Revision 1.2  1996/01/02 16:56:58  bnoble
    159  1.1  rvb  * Added support for Coda MiniCache and raw inode calls (final commit)
    160  1.1  rvb  *
    161  1.1  rvb  * Revision 1.1.2.1  1995/12/20 01:57:24  bnoble
    162  1.1  rvb  * Added CODA-specific files
    163  1.1  rvb  *
    164  1.1  rvb  * Revision 1.1  1995/03/14  20:52:15  bnoble
    165  1.1  rvb  * Initial revision
    166  1.3  rvb  *
    167  1.1  rvb  */
    168  1.5  rvb 
    169  1.5  rvb /* These routines are the device entry points for Venus. */
    170  1.5  rvb 
    171  1.3  rvb extern int coda_nc_initialized;    /* Set if cache has been initialized */
    172  1.5  rvb 
    173  1.5  rvb #ifdef	_LKM
    174  1.1  rvb #define	NVCODA 4
    175  1.1  rvb #else
    176  1.1  rvb #include <vcoda.h>
    177  1.1  rvb #endif
    178  1.1  rvb 
    179  1.1  rvb #include <sys/param.h>
    180  1.1  rvb #include <sys/systm.h>
    181  1.1  rvb #include <sys/kernel.h>
    182  1.1  rvb #include <sys/malloc.h>
    183  1.1  rvb #include <sys/proc.h>
    184  1.1  rvb #include <sys/mount.h>
    185  1.4  rvb #include <sys/file.h>
    186  1.4  rvb #include <sys/ioctl.h>
    187  1.4  rvb #include <sys/poll.h>
    188  1.4  rvb #include <sys/select.h>
    189  1.5  rvb 
    190  1.1  rvb #include <coda/coda.h>
    191  1.2  rvb #include <coda/cnode.h>
    192  1.2  rvb #include <coda/coda_namecache.h>
    193  1.3  rvb #include <coda/coda_io.h>
    194  1.3  rvb #include <coda/coda_psdev.h>
    195  1.3  rvb 
    196  1.1  rvb #define CTL_C
    197  1.3  rvb 
    198  1.1  rvb int coda_psdev_print_entry = 0;
    199  1.1  rvb 
    200  1.1  rvb #define ENTRY if(coda_psdev_print_entry) myprintf(("Entered %s\n",__FUNCTION__))
    201  1.1  rvb 
    202  1.1  rvb void vcodaattach(int n);
    203  1.1  rvb 
    204  1.1  rvb struct vmsg {
    205  1.1  rvb     struct queue vm_chain;
    206  1.1  rvb     caddr_t	 vm_data;
    207  1.1  rvb     u_short	 vm_flags;
    208  1.1  rvb     u_short      vm_inSize;	/* Size is at most 5000 bytes */
    209  1.1  rvb     u_short	 vm_outSize;
    210  1.1  rvb     u_short	 vm_opcode; 	/* copied from data to save ptr lookup */
    211  1.1  rvb     int		 vm_unique;
    212  1.1  rvb     caddr_t	 vm_sleep;	/* Not used by Mach. */
    213  1.1  rvb };
    214  1.3  rvb 
    215  1.1  rvb #define	VM_READ	    1
    216  1.3  rvb #define	VM_WRITE    2
    217  1.1  rvb #define	VM_INTR	    4
    218  1.1  rvb 
    219  1.1  rvb /* vcodaattach: do nothing */
    220  1.1  rvb void
    221  1.1  rvb vcodaattach(n)
    222  1.1  rvb     int n;
    223  1.1  rvb {
    224  1.1  rvb }
    225  1.1  rvb 
    226  1.1  rvb /*
    227  1.1  rvb  * These functions are written for NetBSD.
    228  1.1  rvb  */
    229  1.1  rvb int
    230  1.1  rvb vc_nb_open(dev, flag, mode, p)
    231  1.1  rvb     dev_t        dev;
    232  1.1  rvb     int          flag;
    233  1.1  rvb     int          mode;
    234  1.1  rvb     struct proc *p;             /* NetBSD only */
    235  1.3  rvb {
    236  1.1  rvb     register struct vcomm *vcp;
    237  1.1  rvb 
    238  1.3  rvb     ENTRY;
    239  1.3  rvb 
    240  1.1  rvb     if (minor(dev) >= NVCODA || minor(dev) < 0)
    241  1.3  rvb 	return(ENXIO);
    242  1.1  rvb 
    243  1.1  rvb     if (!coda_nc_initialized)
    244  1.1  rvb 	coda_nc_init();
    245  1.1  rvb 
    246  1.1  rvb     vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
    247  1.1  rvb     if (VC_OPEN(vcp))
    248  1.1  rvb 	return(EBUSY);
    249  1.1  rvb 
    250  1.3  rvb     bzero(&(vcp->vc_selproc), sizeof (struct selinfo));
    251  1.3  rvb     INIT_QUEUE(vcp->vc_requests);
    252  1.1  rvb     INIT_QUEUE(vcp->vc_replys);
    253  1.1  rvb     MARK_VC_OPEN(vcp);
    254  1.1  rvb 
    255  1.1  rvb     coda_mnttbl[minor(dev)].mi_vfsp = NULL;
    256  1.1  rvb     coda_mnttbl[minor(dev)].mi_rootvp = NULL;
    257  1.1  rvb 
    258  1.1  rvb     return(0);
    259  1.1  rvb }
    260  1.1  rvb 
    261  1.1  rvb int
    262  1.1  rvb vc_nb_close (dev, flag, mode, p)
    263  1.1  rvb     dev_t        dev;
    264  1.1  rvb     int          flag;
    265  1.3  rvb     int          mode;
    266  1.1  rvb     struct proc *p;
    267  1.1  rvb {
    268  1.1  rvb     register struct vcomm *vcp;
    269  1.1  rvb     register struct vmsg *vmp;
    270  1.3  rvb     struct coda_mntinfo *mi;
    271  1.1  rvb     int                 err;
    272  1.1  rvb 
    273  1.3  rvb     ENTRY;
    274  1.1  rvb 
    275  1.1  rvb     if (minor(dev) >= NVCODA || minor(dev) < 0)
    276  1.1  rvb 	return(ENXIO);
    277  1.1  rvb 
    278  1.1  rvb     mi = &coda_mnttbl[minor(dev)];
    279  1.1  rvb     vcp = &(mi->mi_vcomm);
    280  1.1  rvb 
    281  1.1  rvb     if (!VC_OPEN(vcp))
    282  1.1  rvb 	panic("vcclose: not open");
    283  1.1  rvb 
    284  1.1  rvb     /* prevent future operations on this vfs from succeeding by auto-
    285  1.1  rvb      * unmounting any vfs mounted via this device. This frees user or
    286  1.1  rvb      * sysadm from having to remember where all mount points are located.
    287  1.1  rvb      * Put this before WAKEUPs to avoid queuing new messages between
    288  1.1  rvb      * the WAKEUP and the unmount (which can happen if we're unlucky)
    289  1.1  rvb      */
    290  1.3  rvb     if (mi->mi_rootvp) {
    291  1.1  rvb 	/* Let unmount know this is for real */
    292  1.1  rvb 	VTOC(mi->mi_rootvp)->c_flags |= C_UNMOUNTING;
    293  1.1  rvb 	if (vfs_busy(mi->mi_vfsp, 0, 0))
    294  1.1  rvb 	    return (EBUSY);
    295  1.1  rvb 	coda_unmounting(mi->mi_vfsp);
    296  1.1  rvb 	err = dounmount(mi->mi_vfsp, flag, p);
    297  1.1  rvb 	if (err)
    298  1.1  rvb 	    myprintf(("Error %d unmounting vfs in vcclose(%d)\n",
    299  1.1  rvb 		      err, minor(dev)));
    300  1.1  rvb     }
    301  1.1  rvb 
    302  1.1  rvb     /* Wakeup clients so they can return. */
    303  1.1  rvb     for (vmp = (struct vmsg *)GETNEXT(vcp->vc_requests);
    304  1.3  rvb 	 !EOQ(vmp, vcp->vc_requests);
    305  1.3  rvb 	 vmp = (struct vmsg *)GETNEXT(vmp->vm_chain))
    306  1.3  rvb     {
    307  1.1  rvb 	/* Free signal request messages and don't wakeup cause
    308  1.1  rvb 	   no one is waiting. */
    309  1.1  rvb 	if (vmp->vm_opcode == CODA_SIGNAL) {
    310  1.1  rvb 	    CODA_FREE((caddr_t)vmp->vm_data, (u_int)VC_IN_NO_DATA);
    311  1.1  rvb 	    CODA_FREE((caddr_t)vmp, (u_int)sizeof(struct vmsg));
    312  1.1  rvb 	    continue;
    313  1.1  rvb 	}
    314  1.1  rvb 
    315  1.1  rvb 	wakeup(&vmp->vm_sleep);
    316  1.1  rvb     }
    317  1.1  rvb 
    318  1.1  rvb     for (vmp = (struct vmsg *)GETNEXT(vcp->vc_replys);
    319  1.1  rvb 	 !EOQ(vmp, vcp->vc_replys);
    320  1.1  rvb 	 vmp = (struct vmsg *)GETNEXT(vmp->vm_chain))
    321  1.1  rvb     {
    322  1.1  rvb 	wakeup(&vmp->vm_sleep);
    323  1.1  rvb     }
    324  1.1  rvb 
    325  1.1  rvb     MARK_VC_CLOSED(vcp);
    326  1.1  rvb     return 0;
    327  1.1  rvb }
    328  1.1  rvb 
    329  1.1  rvb int
    330  1.1  rvb vc_nb_read(dev, uiop, flag)
    331  1.1  rvb     dev_t        dev;
    332  1.1  rvb     struct uio  *uiop;
    333  1.1  rvb     int          flag;
    334  1.1  rvb {
    335  1.1  rvb     register struct vcomm *	vcp;
    336  1.3  rvb     register struct vmsg *vmp;
    337  1.1  rvb     int error = 0;
    338  1.1  rvb 
    339  1.3  rvb     ENTRY;
    340  1.1  rvb 
    341  1.1  rvb     if (minor(dev) >= NVCODA || minor(dev) < 0)
    342  1.1  rvb 	return(ENXIO);
    343  1.1  rvb 
    344  1.1  rvb     vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
    345  1.1  rvb     /* Get message at head of request queue. */
    346  1.1  rvb     if (EMPTY(vcp->vc_requests))
    347  1.1  rvb 	return(0);	/* Nothing to read */
    348  1.1  rvb 
    349  1.1  rvb     vmp = (struct vmsg *)GETNEXT(vcp->vc_requests);
    350  1.1  rvb 
    351  1.1  rvb     /* Move the input args into userspace */
    352  1.1  rvb     uiop->uio_rw = UIO_READ;
    353  1.1  rvb     error = uiomove(vmp->vm_data, vmp->vm_inSize, uiop);
    354  1.5  rvb     if (error) {
    355  1.1  rvb 	myprintf(("vcread: error (%d) on uiomove\n", error));
    356  1.1  rvb 	error = EINVAL;
    357  1.1  rvb     }
    358  1.1  rvb 
    359  1.1  rvb #ifdef OLD_DIAGNOSTIC
    360  1.1  rvb     if (vmp->vm_chain.forw == 0 || vmp->vm_chain.back == 0)
    361  1.1  rvb 	panic("vc_nb_read: bad chain");
    362  1.1  rvb #endif
    363  1.3  rvb 
    364  1.3  rvb     REMQUE(vmp->vm_chain);
    365  1.1  rvb 
    366  1.1  rvb     /* If request was a signal, free up the message and don't
    367  1.3  rvb        enqueue it in the reply queue. */
    368  1.3  rvb     if (vmp->vm_opcode == CODA_SIGNAL) {
    369  1.1  rvb 	if (codadebug)
    370  1.1  rvb 	    myprintf(("vcread: signal msg (%d, %d)\n",
    371  1.1  rvb 		      vmp->vm_opcode, vmp->vm_unique));
    372  1.1  rvb 	CODA_FREE((caddr_t)vmp->vm_data, (u_int)VC_IN_NO_DATA);
    373  1.1  rvb 	CODA_FREE((caddr_t)vmp, (u_int)sizeof(struct vmsg));
    374  1.1  rvb 	return(error);
    375  1.1  rvb     }
    376  1.1  rvb 
    377  1.1  rvb     vmp->vm_flags |= VM_READ;
    378  1.1  rvb     INSQUE(vmp->vm_chain, vcp->vc_replys);
    379  1.1  rvb 
    380  1.1  rvb     return(error);
    381  1.1  rvb }
    382  1.1  rvb 
    383  1.1  rvb int
    384  1.1  rvb vc_nb_write(dev, uiop, flag)
    385  1.1  rvb     dev_t        dev;
    386  1.3  rvb     struct uio  *uiop;
    387  1.1  rvb     int          flag;
    388  1.1  rvb {
    389  1.1  rvb     register struct vcomm *	vcp;
    390  1.1  rvb     register struct vmsg *vmp;
    391  1.1  rvb     struct coda_out_hdr *out;
    392  1.1  rvb     u_long seq;
    393  1.1  rvb     u_long opcode;
    394  1.3  rvb     int buf[2];
    395  1.1  rvb     int error = 0;
    396  1.1  rvb 
    397  1.3  rvb     ENTRY;
    398  1.1  rvb 
    399  1.1  rvb     if (minor(dev) >= NVCODA || minor(dev) < 0)
    400  1.1  rvb 	return(ENXIO);
    401  1.1  rvb 
    402  1.1  rvb     vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
    403  1.1  rvb 
    404  1.1  rvb     /* Peek at the opcode, unique without transfering the data. */
    405  1.1  rvb     uiop->uio_rw = UIO_WRITE;
    406  1.1  rvb     error = uiomove((caddr_t)buf, sizeof(int) * 2, uiop);
    407  1.1  rvb     if (error) {
    408  1.1  rvb 	myprintf(("vcwrite: error (%d) on uiomove\n", error));
    409  1.1  rvb 	return(EINVAL);
    410  1.3  rvb     }
    411  1.1  rvb 
    412  1.1  rvb     opcode = buf[0];
    413  1.1  rvb     seq = buf[1];
    414  1.1  rvb 
    415  1.1  rvb     if (codadebug)
    416  1.1  rvb 	myprintf(("vcwrite got a call for %ld.%ld\n", opcode, seq));
    417  1.1  rvb 
    418  1.3  rvb     if (DOWNCALL(opcode)) {
    419  1.1  rvb 	union outputArgs pbuf;
    420  1.1  rvb 
    421  1.1  rvb 	/* get the rest of the data. */
    422  1.1  rvb 	uiop->uio_rw = UIO_WRITE;
    423  1.1  rvb 	error = uiomove((caddr_t)&pbuf.coda_purgeuser.oh.result, sizeof(pbuf) - (sizeof(int)*2), uiop);
    424  1.1  rvb 	if (error) {
    425  1.1  rvb 	    myprintf(("vcwrite: error (%d) on uiomove (Op %ld seq %ld)\n",
    426  1.1  rvb 		      error, opcode, seq));
    427  1.1  rvb 	    return(EINVAL);
    428  1.1  rvb 	    }
    429  1.1  rvb 
    430  1.1  rvb 	return handleDownCall(opcode, &pbuf);
    431  1.1  rvb     }
    432  1.1  rvb 
    433  1.1  rvb     /* Look for the message on the (waiting for) reply queue. */
    434  1.1  rvb     for (vmp = (struct vmsg *)GETNEXT(vcp->vc_replys);
    435  1.1  rvb 	 !EOQ(vmp, vcp->vc_replys);
    436  1.1  rvb 	 vmp = (struct vmsg *)GETNEXT(vmp->vm_chain))
    437  1.3  rvb     {
    438  1.1  rvb 	if (vmp->vm_unique == seq) break;
    439  1.1  rvb     }
    440  1.1  rvb 
    441  1.1  rvb     if (EOQ(vmp, vcp->vc_replys)) {
    442  1.1  rvb 	if (codadebug)
    443  1.1  rvb 	    myprintf(("vcwrite: msg (%ld, %ld) not found\n", opcode, seq));
    444  1.1  rvb 
    445  1.1  rvb 	return(ESRCH);
    446  1.1  rvb 	}
    447  1.3  rvb 
    448  1.1  rvb     /* Remove the message from the reply queue */
    449  1.1  rvb     REMQUE(vmp->vm_chain);
    450  1.1  rvb 
    451  1.1  rvb     /* move data into response buffer. */
    452  1.1  rvb     out = (struct coda_out_hdr *)vmp->vm_data;
    453  1.1  rvb     /* Don't need to copy opcode and uniquifier. */
    454  1.1  rvb 
    455  1.1  rvb     /* get the rest of the data. */
    456  1.1  rvb     if (vmp->vm_outSize < uiop->uio_resid) {
    457  1.1  rvb 	myprintf(("vcwrite: more data than asked for (%d < %d)\n",
    458  1.1  rvb 		  vmp->vm_outSize, uiop->uio_resid));
    459  1.1  rvb 	wakeup(&vmp->vm_sleep); 	/* Notify caller of the error. */
    460  1.1  rvb 	return(EINVAL);
    461  1.1  rvb     }
    462  1.1  rvb 
    463  1.1  rvb     buf[0] = uiop->uio_resid; 	/* Save this value. */
    464  1.1  rvb     uiop->uio_rw = UIO_WRITE;
    465  1.1  rvb     error = uiomove((caddr_t) &out->result, vmp->vm_outSize - (sizeof(int) * 2), uiop);
    466  1.1  rvb     if (error) {
    467  1.1  rvb 	myprintf(("vcwrite: error (%d) on uiomove (op %ld seq %ld)\n",
    468  1.1  rvb 		  error, opcode, seq));
    469  1.1  rvb 	return(EINVAL);
    470  1.1  rvb     }
    471  1.1  rvb 
    472  1.1  rvb     /* I don't think these are used, but just in case. */
    473  1.1  rvb     /* XXX - aren't these two already correct? -bnoble */
    474  1.1  rvb     out->opcode = opcode;
    475  1.1  rvb     out->unique = seq;
    476  1.1  rvb     vmp->vm_outSize	= buf[0];	/* Amount of data transferred? */
    477  1.1  rvb     vmp->vm_flags |= VM_WRITE;
    478  1.1  rvb     wakeup(&vmp->vm_sleep);
    479  1.1  rvb 
    480  1.1  rvb     return(0);
    481  1.5  rvb }
    482  1.1  rvb 
    483  1.1  rvb int
    484  1.1  rvb vc_nb_ioctl(dev, cmd, addr, flag, p)
    485  1.1  rvb     dev_t         dev;
    486  1.1  rvb     u_long        cmd;
    487  1.1  rvb     caddr_t       addr;
    488  1.1  rvb     int           flag;
    489  1.3  rvb     struct proc  *p;
    490  1.3  rvb {
    491  1.3  rvb     ENTRY;
    492  1.1  rvb 
    493  1.1  rvb     switch(cmd) {
    494  1.3  rvb     case CODARESIZE: {
    495  1.3  rvb 	struct coda_resize *data = (struct coda_resize *)addr;
    496  1.3  rvb 	return(coda_nc_resize(data->hashsize, data->heapsize, IS_DOWNCALL));
    497  1.1  rvb 	break;
    498  1.1  rvb     }
    499  1.1  rvb     case CODASTATS:
    500  1.1  rvb 	if (coda_nc_use) {
    501  1.1  rvb 	    coda_nc_gather_stats();
    502  1.3  rvb 	    return(0);
    503  1.3  rvb 	} else {
    504  1.3  rvb 	    return(ENODEV);
    505  1.1  rvb 	}
    506  1.1  rvb 	break;
    507  1.1  rvb     case CODAPRINT:
    508  1.1  rvb 	if (coda_nc_use) {
    509  1.1  rvb 	    print_coda_nc();
    510  1.1  rvb 	    return(0);
    511  1.1  rvb 	} else {
    512  1.1  rvb 	    return(ENODEV);
    513  1.1  rvb 	}
    514  1.1  rvb 	break;
    515  1.1  rvb     default :
    516  1.1  rvb 	return(EINVAL);
    517  1.1  rvb 	break;
    518  1.1  rvb     }
    519  1.1  rvb }
    520  1.1  rvb 
    521  1.1  rvb int
    522  1.1  rvb vc_nb_poll(dev, events, p)
    523  1.1  rvb     dev_t         dev;
    524  1.1  rvb     int           events;
    525  1.1  rvb     struct proc  *p;
    526  1.1  rvb {
    527  1.3  rvb     register struct vcomm *vcp;
    528  1.1  rvb     int event_msk = 0;
    529  1.1  rvb 
    530  1.3  rvb     ENTRY;
    531  1.1  rvb 
    532  1.1  rvb     if (minor(dev) >= NVCODA || minor(dev) < 0)
    533  1.1  rvb 	return(ENXIO);
    534  1.1  rvb 
    535  1.1  rvb     vcp = &coda_mnttbl[minor(dev)].mi_vcomm;
    536  1.1  rvb 
    537  1.1  rvb     event_msk = events & (POLLIN|POLLRDNORM);
    538  1.1  rvb     if (!event_msk)
    539  1.1  rvb 	return(0);
    540  1.1  rvb 
    541  1.1  rvb     if (!EMPTY(vcp->vc_requests))
    542  1.1  rvb 	return(events & (POLLIN|POLLRDNORM));
    543  1.1  rvb 
    544  1.1  rvb     selrecord(p, &(vcp->vc_selproc));
    545  1.1  rvb 
    546  1.1  rvb     return(0);
    547  1.3  rvb }
    548  1.1  rvb 
    549  1.1  rvb /*
    550  1.1  rvb  * Statistics
    551  1.1  rvb  */
    552  1.1  rvb struct coda_clstat coda_clstat;
    553  1.1  rvb 
    554  1.1  rvb /*
    555  1.1  rvb  * Key question: whether to sleep interuptably or uninteruptably when
    556  1.1  rvb  * waiting for Venus.  The former seems better (cause you can ^C a
    557  1.1  rvb  * job), but then GNU-EMACS completion breaks. Use tsleep with no
    558  1.1  rvb  * timeout, and no longjmp happens. But, when sleeping
    559  1.3  rvb  * "uninterruptibly", we don't get told if it returns abnormally
    560  1.1  rvb  * (e.g. kill -9).
    561  1.3  rvb  */
    562  1.1  rvb 
    563  1.1  rvb /* If you want this to be interruptible, set this to > PZERO */
    564  1.1  rvb int coda_call_sleep = PZERO - 1;
    565  1.1  rvb #ifdef	CTL_C
    566  1.3  rvb int coda_pcatch = PCATCH;
    567  1.3  rvb #else
    568  1.1  rvb #endif
    569  1.1  rvb 
    570  1.1  rvb int
    571  1.1  rvb coda_call(mntinfo, inSize, outSize, buffer)
    572  1.1  rvb      struct coda_mntinfo *mntinfo; int inSize; int *outSize; caddr_t buffer;
    573  1.1  rvb {
    574  1.4  rvb 	struct vcomm *vcp;
    575  1.1  rvb 	struct vmsg *vmp;
    576  1.4  rvb 	int error;
    577  1.1  rvb #ifdef	CTL_C
    578  1.1  rvb 	struct proc *p = curproc;
    579  1.1  rvb 	sigset_t psig_omask;
    580  1.1  rvb 	int i;
    581  1.1  rvb 	psig_omask = p->p_siglist;	/* array assignment */
    582  1.1  rvb #endif
    583  1.1  rvb 	if (mntinfo == NULL) {
    584  1.1  rvb 	    /* Unlikely, but could be a race condition with a dying warden */
    585  1.3  rvb 	    return ENODEV;
    586  1.3  rvb 	}
    587  1.1  rvb 
    588  1.1  rvb 	vcp = &(mntinfo->mi_vcomm);
    589  1.1  rvb 
    590  1.1  rvb 	coda_clstat.ncalls++;
    591  1.3  rvb 	coda_clstat.reqs[((struct coda_in_hdr *)buffer)->opcode]++;
    592  1.1  rvb 
    593  1.1  rvb 	if (!VC_OPEN(vcp))
    594  1.1  rvb 	    return(ENODEV);
    595  1.1  rvb 
    596  1.1  rvb 	CODA_ALLOC(vmp,struct vmsg *,sizeof(struct vmsg));
    597  1.1  rvb 	/* Format the request message. */
    598  1.3  rvb 	vmp->vm_data = buffer;
    599  1.1  rvb 	vmp->vm_flags = 0;
    600  1.3  rvb 	vmp->vm_inSize = inSize;
    601  1.1  rvb 	vmp->vm_outSize
    602  1.1  rvb 	    = *outSize ? *outSize : inSize; /* |buffer| >= inSize */
    603  1.1  rvb 	vmp->vm_opcode = ((struct coda_in_hdr *)buffer)->opcode;
    604  1.1  rvb 	vmp->vm_unique = ++vcp->vc_seq;
    605  1.3  rvb 	if (codadebug)
    606  1.1  rvb 	    myprintf(("Doing a call for %d.%d\n",
    607  1.1  rvb 		      vmp->vm_opcode, vmp->vm_unique));
    608  1.1  rvb 
    609  1.1  rvb 	/* Fill in the common input args. */
    610  1.1  rvb 	((struct coda_in_hdr *)buffer)->unique = vmp->vm_unique;
    611  1.1  rvb 
    612  1.1  rvb 	/* Append msg to request queue and poke Venus. */
    613  1.1  rvb 	INSQUE(vmp->vm_chain, vcp->vc_requests);
    614  1.1  rvb 	selwakeup(&(vcp->vc_selproc));
    615  1.1  rvb 
    616  1.1  rvb 	/* We can be interrupted while we wait for Venus to process
    617  1.1  rvb 	 * our request.  If the interrupt occurs before Venus has read
    618  1.1  rvb 	 * the request, we dequeue and return. If it occurs after the
    619  1.1  rvb 	 * read but before the reply, we dequeue, send a signal
    620  1.1  rvb 	 * message, and return. If it occurs after the reply we ignore
    621  1.1  rvb 	 * it. In no case do we want to restart the syscall.  If it
    622  1.3  rvb 	 * was interrupted by a venus shutdown (vcclose), return
    623  1.1  rvb 	 * ENODEV.  */
    624  1.1  rvb 
    625  1.1  rvb 	/* Ignore return, We have to check anyway */
    626  1.1  rvb #ifdef	CTL_C
    627  1.1  rvb 	/* This is work in progress.  Setting coda_pcatch lets tsleep reawaken
    628  1.1  rvb 	   on a ^c or ^z.  The problem is that emacs sets certain interrupts
    629  1.1  rvb 	   as SA_RESTART.  This means that we should exit sleep handle the
    630  1.1  rvb 	   "signal" and then go to sleep again.  Mostly this is done by letting
    631  1.3  rvb 	   the syscall complete and be restarted.  We are not idempotent and
    632  1.1  rvb 	   can not do this.  A better solution is necessary.
    633  1.1  rvb 	 */
    634  1.1  rvb 	i = 0;
    635  1.6   tv 	do {
    636  1.3  rvb 	    error = tsleep(&vmp->vm_sleep, (coda_call_sleep|coda_pcatch), "coda_call", hz*2);
    637  1.5  rvb 	    if (error == 0)
    638  1.4  rvb 	    	break;
    639  1.4  rvb 	    else if (error == EWOULDBLOCK) {
    640  1.6   tv #ifdef	DEBUG
    641  1.3  rvb 		    printf("coda_call: tsleep TIMEOUT %d sec\n", 2+2*i);
    642  1.5  rvb #endif
    643  1.1  rvb     	    } else if (sigismember(&p->p_siglist, SIGIO)) {
    644  1.4  rvb 		    sigaddset(&p->p_sigmask, SIGIO);
    645  1.4  rvb #ifdef	DEBUG
    646  1.4  rvb 		    printf("coda_call: tsleep returns %d SIGIO, cnt %d\n", error, i);
    647  1.4  rvb #endif
    648  1.6   tv 	    } else {
    649  1.3  rvb 		    sigset_t tmp;
    650  1.4  rvb 		    tmp = p->p_siglist;		/* array assignment */
    651  1.4  rvb 		    sigminusset(&p->p_sigmask, &tmp);
    652  1.4  rvb 
    653  1.4  rvb #ifdef	DEBUG
    654  1.4  rvb 		    printf("coda_call: tsleep returns %d, cnt %d\n", error, i);
    655  1.4  rvb 		    printf("coda_call: siglist = %x.%x.%x.%x, sigmask = %x.%x.%x.%x, mask %x.%x.%x.%x\n",
    656  1.5  rvb 			    p->p_siglist.__bits[0], p->p_siglist.__bits[1],
    657  1.1  rvb 			    p->p_siglist.__bits[2], p->p_siglist.__bits[3],
    658  1.5  rvb 			    p->p_sigmask.__bits[0], p->p_sigmask.__bits[1],
    659  1.4  rvb 			    p->p_sigmask.__bits[2], p->p_sigmask.__bits[3],
    660  1.4  rvb 			    tmp.__bits[0], tmp.__bits[1], tmp.__bits[2], tmp.__bits[3]);
    661  1.4  rvb #endif
    662  1.4  rvb 		    break;
    663  1.4  rvb #ifdef	notyet
    664  1.4  rvb 		    sigminusset(&p->p_sigmask, &p->p_siglist);
    665  1.5  rvb 		    printf("coda_call: siglist = %x.%x.%x.%x, sigmask = %x.%x.%x.%x\n",
    666  1.1  rvb 			    p->p_siglist.__bits[0], p->p_siglist.__bits[1],
    667  1.1  rvb 			    p->p_siglist.__bits[2], p->p_siglist.__bits[3],
    668  1.4  rvb 			    p->p_sigmask.__bits[0], p->p_sigmask.__bits[1],
    669  1.1  rvb 			    p->p_sigmask.__bits[2], p->p_sigmask.__bits[3]);
    670  1.3  rvb #endif
    671  1.1  rvb 	    }
    672  1.1  rvb 	} while (error && i++ < 128);
    673  1.1  rvb 	p->p_siglist = psig_omask;	/* array assignment */
    674  1.1  rvb #else
    675  1.1  rvb 	(void) tsleep(&vmp->vm_sleep, coda_call_sleep, "coda_call", 0);
    676  1.1  rvb #endif
    677  1.1  rvb 	if (VC_OPEN(vcp)) {	/* Venus is still alive */
    678  1.1  rvb  	/* Op went through, interrupt or not... */
    679  1.1  rvb 	    if (vmp->vm_flags & VM_WRITE) {
    680  1.1  rvb 		error = 0;
    681  1.6   tv 		*outSize = vmp->vm_outSize;
    682  1.5  rvb 	    }
    683  1.5  rvb 
    684  1.1  rvb 	    else if (!(vmp->vm_flags & VM_READ)) {
    685  1.1  rvb 		/* Interrupted before venus read it. */
    686  1.1  rvb #ifndef	DEBUG
    687  1.1  rvb 		if (codadebug)
    688  1.1  rvb #endif
    689  1.1  rvb 		    myprintf(("interrupted before read: op = %d.%d, flags = %x\n",
    690  1.1  rvb 			   vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
    691  1.1  rvb 		REMQUE(vmp->vm_chain);
    692  1.1  rvb 		error = EINTR;
    693  1.1  rvb 	    }
    694  1.3  rvb 
    695  1.1  rvb 	    else {
    696  1.1  rvb 		/* (!(vmp->vm_flags & VM_WRITE)) means interrupted after
    697  1.6   tv                    upcall started */
    698  1.5  rvb 		/* Interrupted after start of upcall, send venus a signal */
    699  1.5  rvb 		struct coda_in_hdr *dog;
    700  1.1  rvb 		struct vmsg *svmp;
    701  1.1  rvb 
    702  1.1  rvb #ifndef	DEBUG
    703  1.1  rvb 		if (codadebug)
    704  1.1  rvb #endif
    705  1.1  rvb 		    myprintf(("Sending Venus a signal: op = %d.%d, flags = %x\n",
    706  1.3  rvb 			   vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
    707  1.1  rvb 
    708  1.3  rvb 		REMQUE(vmp->vm_chain);
    709  1.3  rvb 		error = EINTR;
    710  1.1  rvb 
    711  1.1  rvb 		CODA_ALLOC(svmp, struct vmsg *, sizeof (struct vmsg));
    712  1.3  rvb 
    713  1.1  rvb 		CODA_ALLOC((svmp->vm_data), char *, sizeof (struct coda_in_hdr));
    714  1.3  rvb 		dog = (struct coda_in_hdr *)svmp->vm_data;
    715  1.3  rvb 
    716  1.1  rvb 		svmp->vm_flags = 0;
    717  1.3  rvb 		dog->opcode = svmp->vm_opcode = CODA_SIGNAL;
    718  1.3  rvb 		dog->unique = svmp->vm_unique = vmp->vm_unique;
    719  1.1  rvb 		svmp->vm_inSize = sizeof (struct coda_in_hdr);
    720  1.1  rvb /*??? rvb */	svmp->vm_outSize = sizeof (struct coda_in_hdr);
    721  1.1  rvb 
    722  1.1  rvb 		if (codadebug)
    723  1.1  rvb 		    myprintf(("coda_call: enqueing signal msg (%d, %d)\n",
    724  1.1  rvb 			   svmp->vm_opcode, svmp->vm_unique));
    725  1.1  rvb 
    726  1.1  rvb 		/* insert at head of queue! */
    727  1.1  rvb 		INSQUE(svmp->vm_chain, vcp->vc_requests);
    728  1.3  rvb 		selwakeup(&(vcp->vc_selproc));
    729  1.1  rvb 	    }
    730  1.1  rvb 	}
    731  1.1  rvb 
    732  1.1  rvb 	else {	/* If venus died (!VC_OPEN(vcp)) */
    733  1.1  rvb 	    if (codadebug)
    734  1.1  rvb 		myprintf(("vcclose woke op %d.%d flags %d\n",
    735  1.3  rvb 		       vmp->vm_opcode, vmp->vm_unique, vmp->vm_flags));
    736  1.1  rvb 
    737  1.1  rvb 		error = ENODEV;
    738  1.3  rvb 	}
    739  1.1  rvb 
    740  1.1  rvb 	CODA_FREE(vmp, sizeof(struct vmsg));
    741  1.4  rvb 
    742           	if (!error)
    743           		error = ((struct coda_out_hdr *)buffer)->result;
    744           	return(error);
    745           }
    746           
    747