2 This is one of the technical documents describing a component of
3 Coda -- this document describes the client kernel-Venus interface.
6 http://www.coda.cs.cmu.edu
7 For user level software needed to run Coda:
8 ftp://ftp.coda.cs.cmu.edu
10 To run Coda you need to get a user level cache manager for the client,
11 named Venus, as well as tools to manipulate ACLs, to log in, etc. The
12 client needs to have the Coda filesystem selected in the kernel
15 The server needs a user level server and at present does not depend on
24 The Venus kernel interface
28 This document describes the communication between Venus and kernel
29 level filesystem code needed for the operation of the Coda file sys-
30 tem. This document version is meant to describe the current interface
31 (version 1.0) as well as improvements we envisage.
32 ______________________________________________________________________
92 2. Servicing Coda filesystem calls
96 3.1 Implementation details
98 4. The interface at the call level
100 4.1 Data structures shared by the kernel and Venus
101 4.2 The pioctl interface
129 5. The minicache and downcalls
140 6. Initialization and cleanup
145 ______________________________________________________________________
148 1
\b1.
\b. I
\bIn
\bnt
\btr
\bro
\bod
\bdu
\buc
\bct
\bti
\bio
\bon
\bn
152 A key component in the Coda Distributed File System is the cache
153 manager, _
\bV_
\be_
\bn_
\bu_
\bs.
156 When processes on a Coda enabled system access files in the Coda
157 filesystem, requests are directed at the filesystem layer in the
158 operating system. The operating system will communicate with Venus to
159 service the request for the process. Venus manages a persistent
160 client cache and makes remote procedure calls to Coda file servers and
161 related servers (such as authentication servers) to service these
162 requests it receives from the operating system. When Venus has
163 serviced a request it replies to the operating system with appropriate
164 return codes, and other data related to the request. Optionally the
165 kernel support for Coda may maintain a minicache of recently processed
166 requests to limit the number of interactions with Venus. Venus
167 possesses the facility to inform the kernel when elements from its
168 minicache are no longer valid.
170 This document describes precisely this communication between the
171 kernel and Venus. The definitions of so called upcalls and downcalls
172 will be given with the format of the data they handle. We shall also
173 describe the semantic invariants resulting from the calls.
175 Historically Coda was implemented in a BSD file system in Mach 2.6.
176 The interface between the kernel and Venus is very similar to the BSD
177 VFS interface. Similar functionality is provided, and the format of
178 the parameters and returned data is very similar to the BSD VFS. This
179 leads to an almost natural environment for implementing a kernel-level
180 filesystem driver for Coda in a BSD system. However, other operating
181 systems such as Linux and Windows 95 and NT have virtual filesystem
182 with different interfaces.
184 To implement Coda on these systems some reverse engineering of the
185 Venus/Kernel protocol is necessary. Also it came to light that other
186 systems could profit significantly from certain small optimizations
187 and modifications to the protocol. To facilitate this work as well as
188 to make future ports easier, communication between Venus and the
189 kernel should be documented in great detail. This is the aim of this
194 2
\b2.
\b. S
\bSe
\ber
\brv
\bvi
\bic
\bci
\bin
\bng
\bg C
\bCo
\bod
\bda
\ba f
\bfi
\bil
\ble
\bes
\bsy
\bys
\bst
\bte
\bem
\bm c
\bca
\bal
\bll
\bls
\bs
196 The service of a request for a Coda file system service originates in
197 a process P
\bP which accessing a Coda file. It makes a system call which
198 traps to the OS kernel. Examples of such calls trapping to the kernel
199 are _
\br_
\be_
\ba_
\bd_
\b, _
\bw_
\br_
\bi_
\bt_
\be_
\b, _
\bo_
\bp_
\be_
\bn_
\b, _
\bc_
\bl_
\bo_
\bs_
\be_
\b, _
\bc_
\br_
\be_
\ba_
\bt_
\be_
\b, _
\bm_
\bk_
\bd_
\bi_
\br_
\b, _
\br_
\bm_
\bd_
\bi_
\br_
\b, _
\bc_
\bh_
\bm_
\bo_
\bd in a Unix
200 context. Similar calls exist in the Win32 environment, and are named
201 _
\bC_
\br_
\be_
\ba_
\bt_
\be_
\bF_
\bi_
\bl_
\be_
\b, .
203 Generally the operating system handles the request in a virtual
204 filesystem (VFS) layer, which is named I/O Manager in NT and IFS
205 manager in Windows 95. The VFS is responsible for partial processing
206 of the request and for locating the specific filesystem(s) which will
207 service parts of the request. Usually the information in the path
208 assists in locating the correct FS drivers. Sometimes after extensive
209 pre-processing, the VFS starts invoking exported routines in the FS
210 driver. This is the point where the FS specific processing of the
211 request starts, and here the Coda specific kernel code comes into
214 The FS layer for Coda must expose and implement several interfaces.
215 First and foremost the VFS must be able to make all necessary calls to
216 the Coda FS layer, so the Coda FS driver must expose the VFS interface
217 as applicable in the operating system. These differ very significantly
218 among operating systems, but share features such as facilities to
219 read/write and create and remove objects. The Coda FS layer services
220 such VFS requests by invoking one or more well defined services
221 offered by the cache manager Venus. When the replies from Venus have
222 come back to the FS driver, servicing of the VFS call continues and
223 finishes with a reply to the kernel's VFS. Finally the VFS layer
224 returns to the process.
226 As a result of this design a basic interface exposed by the FS driver
227 must allow Venus to manage message traffic. In particular Venus must
228 be able to retrieve and place messages and to be notified of the
229 arrival of a new message. The notification must be through a mechanism
230 which does not block Venus since Venus must attend to other tasks even
231 when no messages are waiting or being processed.
238 Interfaces of the Coda FS Driver
240 Furthermore the FS layer provides for a special path of communication
241 between a user process and Venus, called the pioctl interface. The
242 pioctl interface is used for Coda specific services, such as
243 requesting detailed information about the persistent cache managed by
244 Venus. Here the involvement of the kernel is minimal. It identifies
245 the calling process and passes the information on to Venus. When
246 Venus replies the response is passed back to the caller in unmodified
249 Finally Venus allows the kernel FS driver to cache the results from
250 certain services. This is done to avoid excessive context switches
251 and results in an efficient system. However, Venus may acquire
252 information, for example from the network which implies that cached
253 information must be flushed or replaced. Venus then makes a downcall
254 to the Coda FS layer to request flushes or updates in the cache. The
255 kernel FS driver handles such requests synchronously.
257 Among these interfaces the VFS interface and the facility to place,
258 receive and be notified of messages are platform specific. We will
259 not go into the calls exported to the VFS layer but we will state the
260 requirements of the message exchange mechanism.
264 3
\b3.
\b. T
\bTh
\bhe
\be m
\bme
\bes
\bss
\bsa
\bag
\bge
\be l
\bla
\bay
\bye
\ber
\br
268 At the lowest level the communication between Venus and the FS driver
269 proceeds through messages. The synchronization between processes
270 requesting Coda file service and Venus relies on blocking and waking
271 up processes. The Coda FS driver processes VFS- and pioctl-requests
272 on behalf of a process P, creates messages for Venus, awaits replies
273 and finally returns to the caller. The implementation of the exchange
274 of messages is platform specific, but the semantics have (so far)
275 appeared to be generally applicable. Data buffers are created by the
276 FS Driver in kernel memory on behalf of P and copied to user memory in
279 The FS Driver while servicing P makes upcalls to Venus. Such an
280 upcall is dispatched to Venus by creating a message structure. The
281 structure contains the identification of P, the message sequence
282 number, the size of the request and a pointer to the data in kernel
283 memory for the request. Since the data buffer is re-used to hold the
284 reply from Venus, there is a field for the size of the reply. A flags
285 field is used in the message to precisely record the status of the
286 message. Additional platform dependent structures involve pointers to
287 determine the position of the message on queues and pointers to
288 synchronization objects. In the upcall routine the message structure
289 is filled in, flags are set to 0, and it is placed on the _
\bp_
\be_
\bn_
\bd_
\bi_
\bn_
\bg
290 queue. The routine calling upcall is responsible for allocating the
291 data buffer; its structure will be described in the next section.
293 A facility must exist to notify Venus that the message has been
294 created, and implemented using available synchronization objects in
295 the OS. This notification is done in the upcall context of the process
296 P. When the message is on the pending queue, process P cannot proceed
297 in upcall. The (kernel mode) processing of P in the filesystem
298 request routine must be suspended until Venus has replied. Therefore
299 the calling thread in P is blocked in upcall. A pointer in the
300 message structure will locate the synchronization object on which P is
303 Venus detects the notification that a message has arrived, and the FS
304 driver allow Venus to retrieve the message with a getmsg_from_kernel
305 call. This action finishes in the kernel by putting the message on the
306 queue of processing messages and setting flags to READ. Venus is
307 passed the contents of the data buffer. The getmsg_from_kernel call
308 now returns and Venus processes the request.
310 At some later point the FS driver receives a message from Venus,
311 namely when Venus calls sendmsg_to_kernel. At this moment the Coda FS
312 driver looks at the contents of the message and decides if:
315 +
\bo the message is a reply for a suspended thread P. If so it removes
316 the message from the processing queue and marks the message as
317 WRITTEN. Finally, the FS driver unblocks P (still in the kernel
318 mode context of Venus) and the sendmsg_to_kernel call returns to
319 Venus. The process P will be scheduled at some point and continues
320 processing its upcall with the data buffer replaced with the reply
323 +
\bo The message is a _
\bd_
\bo_
\bw_
\bn_
\bc_
\ba_
\bl_
\bl. A downcall is a request from Venus to
324 the FS Driver. The FS driver processes the request immediately
325 (usually a cache eviction or replacement) and when it finishes
326 sendmsg_to_kernel returns.
328 Now P awakes and continues processing upcall. There are some
329 subtleties to take account of. First P will determine if it was woken
330 up in upcall by a signal from some other source (for example an
331 attempt to terminate P) or as is normally the case by Venus in its
332 sendmsg_to_kernel call. In the normal case, the upcall routine will
333 deallocate the message structure and return. The FS routine can proceed
342 Sleeping and IPC arrangements
344 In case P is woken up by a signal and not by Venus, it will first look
345 at the flags field. If the message is not yet READ, the process P can
346 handle its signal without notifying Venus. If Venus has READ, and
347 the request should not be processed, P can send Venus a signal message
348 to indicate that it should disregard the previous message. Such
349 signals are put in the queue at the head, and read first by Venus. If
350 the message is already marked as WRITTEN it is too late to stop the
351 processing. The VFS routine will now continue. (-- If a VFS request
352 involves more than one upcall, this can lead to complicated state, an
353 extra field "handle_signals" could be added in the message structure
354 to indicate points of no return have been passed.--)
358 3
\b3.
\b.1
\b1.
\b. I
\bIm
\bmp
\bpl
\ble
\bem
\bme
\ben
\bnt
\bta
\bat
\bti
\bio
\bon
\bn d
\bde
\bet
\bta
\bai
\bil
\bls
\bs
360 The Unix implementation of this mechanism has been through the
361 implementation of a character device associated with Coda. Venus
362 retrieves messages by doing a read on the device, replies are sent
363 with a write and notification is through the select system call on the
364 file descriptor for the device. The process P is kept waiting on an
365 interruptible wait queue object.
367 In Windows NT and the DPMI Windows 95 implementation a DeviceIoControl
368 call is used. The DeviceIoControl call is designed to copy buffers
369 from user memory to kernel memory with OPCODES. The sendmsg_to_kernel
370 is issued as a synchronous call, while the getmsg_from_kernel call is
371 asynchronous. Windows EventObjects are used for notification of
372 message arrival. The process P is kept waiting on a KernelEvent
373 object in NT and a semaphore in Windows 95.
377 4
\b4.
\b. T
\bTh
\bhe
\be i
\bin
\bnt
\bte
\ber
\brf
\bfa
\bac
\bce
\be a
\bat
\bt t
\bth
\bhe
\be c
\bca
\bal
\bll
\bl l
\ble
\bev
\bve
\bel
\bl
380 This section describes the upcalls a Coda FS driver can make to Venus.
381 Each of these upcalls make use of two structures: inputArgs and
382 outputArgs. In pseudo BNF form the structures take the following
388 u_long unique; /* Keep multiple outstanding msgs distinct */
389 u_short pid; /* Common to all */
390 u_short pgid; /* Common to all */
391 struct CodaCred cred; /* Common to all */
393 <union "in" of call dependent parts of inputArgs>
398 u_long unique; /* Keep multiple outstanding msgs distinct */
401 <union "out" of call dependent parts of inputArgs>
406 Before going on let us elucidate the role of the various fields. The
407 inputArgs start with the opcode which defines the type of service
408 requested from Venus. There are approximately 30 upcalls at present
409 which we will discuss. The unique field labels the inputArg with a
410 unique number which will identify the message uniquely. A process and
411 process group id are passed. Finally the credentials of the caller
414 Before delving into the specific calls we need to discuss a variety of
415 data structures shared by the kernel and Venus.
420 4
\b4.
\b.1
\b1.
\b. D
\bDa
\bat
\bta
\ba s
\bst
\btr
\bru
\buc
\bct
\btu
\bur
\bre
\bes
\bs s
\bsh
\bha
\bar
\bre
\bed
\bd b
\bby
\by t
\bth
\bhe
\be k
\bke
\ber
\brn
\bne
\bel
\bl a
\ban
\bnd
\bd V
\bVe
\ben
\bnu
\bus
\bs
423 The CodaCred structure defines a variety of user and group ids as
424 they are set for the calling process. The vuid_t and guid_t are 32 bit
425 unsigned integers. It also defines group membership in an array. On
426 Unix the CodaCred has proven sufficient to implement good security
427 semantics for Coda but the structure may have to undergo modification
428 for the Windows environment when these mature.
431 vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, effective, set, fs uid*/
432 vgid_t cr_gid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */
433 vgid_t cr_groups[NGROUPS]; /* Group membership for caller */
438 N
\bNO
\bOT
\bTE
\bE It is questionable if we need CodaCreds in Venus. Finally Venus
439 doesn't know about groups, although it does create files with the
440 default uid/gid. Perhaps the list of group membership is superfluous.
443 The next item is the fundamental identifier used to identify Coda
444 files, the ViceFid. A fid of a file uniquely defines a file or
445 directory in the Coda filesystem within a _
\bc_
\be_
\bl_
\bl. (-- A _
\bc_
\be_
\bl_
\bl is a
446 group of Coda servers acting under the aegis of a single system
447 control machine or SCM. See the Coda Administration manual for a
448 detailed description of the role of the SCM.--)
451 typedef struct ViceFid {
459 Each of the constituent fields: VolumeId, VnodeId and Unique_t are
460 unsigned 32 bit integers. We envisage that a further field will need
461 to be prefixed to identify the Coda cell; this will probably take the
462 form of a Ipv6 size IP address naming the Coda cell through DNS.
464 The next important structure shared between Venus and the kernel is
465 the attributes of the file. The following structure is used to
466 exchange information. It has room for future extensions such as
467 support for device files (currently not present in Coda).
484 struct coda_timespec {
485 int64_t tv_sec; /* seconds */
486 long tv_nsec; /* nanoseconds */
490 enum coda_vtype va_type; /* vnode type (for create) */
491 u_short va_mode; /* files access mode and type */
492 short va_nlink; /* number of references to file */
493 vuid_t va_uid; /* owner user id */
494 vgid_t va_gid; /* owner group id */
495 long va_fsid; /* file system id (dev for now) */
496 long va_fileid; /* file id */
497 u_quad_t va_size; /* file size in bytes */
498 long va_blocksize; /* blocksize preferred for i/o */
499 struct coda_timespec va_atime; /* time of last access */
500 struct coda_timespec va_mtime; /* time of last modification */
501 struct coda_timespec va_ctime; /* time file changed */
502 u_long va_gen; /* generation number of file */
503 u_long va_flags; /* flags defined for file */
504 dev_t va_rdev; /* device special file represents */
505 u_quad_t va_bytes; /* bytes of disk space held by file */
506 u_quad_t va_filerev; /* file modification number */
507 u_int va_vaflags; /* operations flags, see below */
508 long va_spare; /* remain quad aligned */
514 4
\b4.
\b.2
\b2.
\b. T
\bTh
\bhe
\be p
\bpi
\bio
\boc
\bct
\btl
\bl i
\bin
\bnt
\bte
\ber
\brf
\bfa
\bac
\bce
\be
517 Coda specific requests can be made by application through the pioctl
518 interface. The pioctl is implemented as an ordinary ioctl on a
519 fictitious file /coda/.CONTROL. The pioctl call opens this file, gets
520 a file handle and makes the ioctl call. Finally it closes the file.
522 The kernel involvement in this is limited to providing the facility to
523 open and close and pass the ioctl message _
\ba_
\bn_
\bd to verify that a path in
524 the pioctl data buffers is a file in a Coda filesystem.
526 The kernel is handed a data packet of the form:
530 struct ViceIoctl vidata;
540 caddr_t in, out; /* Data to be transferred in, or out */
541 short in_size; /* Size of input buffer <= 2K */
542 short out_size; /* Maximum size of output buffer, <= 2K */
547 The path must be a Coda file, otherwise the ioctl upcall will not be
550 N
\bNO
\bOT
\bTE
\bE The data structures and code are a mess. We need to clean this
553 We now proceed to document the individual calls:
557 4
\b4.
\b.3
\b3.
\b. r
\bro
\boo
\bot
\bt
560 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
566 struct cfs_root_out {
572 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This call is made to Venus during the initialization of
573 the Coda filesystem. If the result is zero, the cfs_root structure
574 contains the ViceFid of the root of the Coda filesystem. If a non-zero
575 result is generated, its value is a platform dependent error code
576 indicating the difficulty Venus encountered in locating the root of
581 4
\b4.
\b.4
\b4.
\b. l
\blo
\boo
\bok
\bku
\bup
\bp
584 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Find the ViceFid and type of an object in a directory if it
587 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
591 struct cfs_lookup_in {
593 char *name; /* Place holder for data. */
600 struct cfs_lookup_out {
607 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This call is made to determine the ViceFid and filetype of
608 a directory entry. The directory entry requested carries name name
609 and Venus will search the directory identified by cfs_lookup_in.VFid.
610 The result may indicate that the name does not exist, or that
611 difficulty was encountered in finding it (e.g. due to disconnection).
612 If the result is zero, the field cfs_lookup_out.VFid contains the
613 targets ViceFid and cfs_lookup_out.vtype the coda_vtype giving the
614 type of object the name designates.
616 The name of the object is an 8 bit character string of maximum length
617 CFS_MAXNAMLEN, currently set to 256 (including a 0 terminator.)
619 It is extremely important to realize that Venus bitwise ors the field
620 cfs_lookup.vtype with CFS_NOCACHE to indicate that the object should
621 not be put in the kernel name cache.
623 N
\bNO
\bOT
\bTE
\bE The type of the vtype is currently wrong. It should be
624 coda_vtype. Linux does not take note of CFS_NOCACHE. It should.
628 4
\b4.
\b.5
\b5.
\b. g
\bge
\bet
\bta
\bat
\btt
\btr
\br
631 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Get the attributes of a file.
633 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
637 struct cfs_getattr_in {
639 struct coda_vattr attr; /* XXXXX */
646 struct cfs_getattr_out {
647 struct coda_vattr attr;
652 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This call returns the attributes of the file identified by
655 E
\bEr
\brr
\bro
\bor
\brs
\bs Errors can occur if the object with fid does not exist, is
656 unaccessible or if the caller does not have permission to fetch
659 N
\bNo
\bot
\bte
\be Many kernel FS drivers (Linux, NT and Windows 95) need to acquire
660 the attributes as well as the Fid for the instantiation of an internal
661 "inode" or "FileHandle". A significant improvement in performance on
662 such systems could be made by combining the _
\bl_
\bo_
\bo_
\bk_
\bu_
\bp and _
\bg_
\be_
\bt_
\ba_
\bt_
\bt_
\br calls
663 both at the Venus/kernel interaction level and at the RPC level.
665 The vattr structure included in the input arguments is superfluous and
670 4
\b4.
\b.6
\b6.
\b. s
\bse
\bet
\bta
\bat
\btt
\btr
\br
673 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Set the attributes of a file.
675 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
679 struct cfs_setattr_in {
681 struct coda_vattr attr;
690 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn The structure attr is filled with attributes to be changed
691 in BSD style. Attributes not to be changed are set to -1, apart from
692 vtype which is set to VNON. Other are set to the value to be assigned.
693 The only attributes which the FS driver may request to change are the
694 mode, owner, groupid, atime, mtime and ctime. The return value
695 indicates success or failure.
697 E
\bEr
\brr
\bro
\bor
\brs
\bs A variety of errors can occur. The object may not exist, may
698 be inaccessible, or permission may not be granted by Venus.
702 4
\b4.
\b.7
\b7.
\b. a
\bac
\bcc
\bce
\bes
\bss
\bs
705 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by
707 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
711 struct cfs_access_in {
721 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Verify if access to the object identified by VFid for
722 operations described by flags is permitted. The result indicates if
723 access will be granted. It is important to remember that Coda uses
724 ACLs to enforce protection and that ultimately the servers, not the
725 clients enforce the security of the system. The result of this call
726 will depend on whether a _
\bt_
\bo_
\bk_
\be_
\bn is held by the user.
728 E
\bEr
\brr
\bro
\bor
\brs
\bs The object may not exist, or the ACL describing the protection
729 may not be accessible.
733 4
\b4.
\b.8
\b8.
\b. c
\bcr
\bre
\bea
\bat
\bte
\be
736 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Invoked to create a file
738 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
742 struct cfs_create_in {
744 struct coda_vattr attr;
747 char *name; /* Place holder for data. */
755 struct cfs_create_out {
757 struct coda_vattr attr;
762 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This upcall is invoked to request creation of a file.
763 The file will be created in the directory identified by VFid, its name
764 will be name, and the mode will be mode. If excl is set an error will
765 be returned if the file already exists. If the size field in attr is
766 set to zero the file will be truncated. The uid and gid of the file
767 are set by converting the CodaCred to a uid using a macro CRTOUID
768 (this macro is platform dependent). Upon success the VFid and
769 attributes of the file are returned. The Coda FS Driver will normally
770 instantiate a vnode, inode or file handle at kernel level for the new
774 E
\bEr
\brr
\bro
\bor
\brs
\bs A variety of errors can occur. Permissions may be insufficient.
775 If the object exists and is not a file the error EISDIR is returned
778 N
\bNO
\bOT
\bTE
\bE The packing of parameters is very inefficient and appears to
779 indicate confusion between the system call creat and the VFS operation
780 create. The VFS operation create is only called to create new objects.
781 This create call differs from the Unix one in that it is not invoked
782 to return a file descriptor. The truncate and exclusive options,
783 together with the mode, could simply be part of the mode as it is
784 under Unix. There should be no flags argument; this is used in open
785 (2) to return a file descriptor for READ or WRITE mode.
787 The attributes of the directory should be returned too, since the size
792 4
\b4.
\b.9
\b9.
\b. m
\bmk
\bkd
\bdi
\bir
\br
795 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Create a new directory.
797 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
801 struct cfs_mkdir_in {
803 struct coda_vattr attr;
804 char *name; /* Place holder for data. */
811 struct cfs_mkdir_out {
813 struct coda_vattr attr;
819 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This call is similar to create but creates a directory.
820 Only the mode field in the input parameters is used for creation.
821 Upon successful creation, the attr returned contains the attributes of
824 E
\bEr
\brr
\bro
\bor
\brs
\bs As for create.
826 N
\bNO
\bOT
\bTE
\bE The input parameter should be changed to mode instead of
829 The attributes of the parent should be returned since the size and
834 4
\b4.
\b.1
\b10
\b0.
\b. l
\bli
\bin
\bnk
\bk
837 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Create a link to an existing file.
839 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
844 ViceFid sourceFid; /* cnode to link *to* */
845 ViceFid destFid; /* Directory in which to place link */
846 char *tname; /* Place holder for data. */
854 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This call creates a link to the sourceFid in the directory
855 identified by destFid with name tname. The source must reside in the
856 target's parent, i.e. the source must be have parent destFid, i.e. Coda
857 does not support cross directory hard links. Only the return value is
858 relevant. It indicates success or the type of failure.
860 E
\bEr
\brr
\bro
\bor
\brs
\bs The usual errors can occur.0wpage
862 4
\b4.
\b.1
\b11
\b1.
\b. s
\bsy
\bym
\bml
\bli
\bin
\bnk
\bk
865 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by create a symbolic link
867 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
871 struct cfs_symlink_in {
872 ViceFid VFid; /* Directory to put symlink in */
874 struct coda_vattr attr;
883 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Create a symbolic link. The link is to be placed in the
884 directory identified by VFid and named tname. It should point to the
885 pathname srcname. The attributes of the newly created object are to
888 E
\bEr
\brr
\bro
\bor
\brs
\bs
890 N
\bNO
\bOT
\bTE
\bE The attributes of the target directory should be returned since
895 4
\b4.
\b.1
\b12
\b2.
\b. r
\bre
\bem
\bmo
\bov
\bve
\be
898 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Remove a file
900 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
904 struct cfs_remove_in {
906 char *name; /* Place holder for data. */
914 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove file named cfs_remove_in.name in directory
917 E
\bEr
\brr
\bro
\bor
\brs
\bs
919 N
\bNO
\bOT
\bTE
\bE The attributes of the directory should be returned since its
920 mtime and size may change.
924 4
\b4.
\b.1
\b13
\b3.
\b. r
\brm
\bmd
\bdi
\bir
\br
927 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Remove a directory
929 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
933 struct cfs_rmdir_in {
935 char *name; /* Place holder for data. */
943 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove the directory with name name from the directory
946 E
\bEr
\brr
\bro
\bor
\brs
\bs
948 N
\bNO
\bOT
\bTE
\bE The attributes of the parent directory should be returned since
949 its mtime and size may change.
953 4
\b4.
\b.1
\b14
\b4.
\b. r
\bre
\bea
\bad
\bdl
\bli
\bin
\bnk
\bk
956 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Read the value of a symbolic link.
958 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
962 struct cfs_readlink_in {
970 struct cfs_readlink_out {
972 caddr_t data; /* Place holder for data. */
977 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This routine reads the contents of symbolic link
978 identified by VFid into the buffer data. The buffer data must be able
979 to hold any name up to CFS_MAXNAMLEN (PATH or NAM??).
981 E
\bEr
\brr
\bro
\bor
\brs
\bs No unusual errors.
985 4
\b4.
\b.1
\b15
\b5.
\b. o
\bop
\bpe
\ben
\bn
988 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Open a file.
990 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1003 struct cfs_open_out {
1010 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This request asks Venus to place the file identified by
1011 VFid in its cache and to note that the calling process wishes to open
1012 it with flags as in open(2). The return value to the kernel differs
1013 for Unix and Windows systems. For Unix systems the Coda FS Driver is
1014 informed of the device and inode number of the container file in the
1015 fields dev and inode. For Windows the path of the container file is
1016 returned to the kernel.
1017 E
\bEr
\brr
\bro
\bor
\brs
\bs
1019 N
\bNO
\bOT
\bTE
\bE Currently the cfs_open_out structure is not properly adapted to
1020 deal with the Windows case. It might be best to implement two
1021 upcalls, one to open aiming at a container file name, the other at a
1022 container file inode.
1026 4
\b4.
\b.1
\b16
\b6.
\b. c
\bcl
\blo
\bos
\bse
\be
1029 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Close a file, update it on the servers.
1031 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1035 struct cfs_close_in {
1045 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Close the file identified by VFid.
1047 E
\bEr
\brr
\bro
\bor
\brs
\bs
1049 N
\bNO
\bOT
\bTE
\bE The flags argument is bogus and not used. However, Venus' code
1050 has room to deal with an execp input field, probably this field should
1051 be used to inform Venus that the file was closed but is still memory
1052 mapped for execution. There are comments about fetching versus not
1053 fetching the data in Venus vproc_vfscalls. This seems silly. If a
1054 file is being closed, the data in the container file is to be the new
1055 data. Here again the execp flag might be in play to create confusion:
1056 currently Venus might think a file can be flushed from the cache when
1057 it is still memory mapped. This needs to be understood.
1061 4
\b4.
\b.1
\b17
\b7.
\b. i
\bio
\boc
\bct
\btl
\bl
1064 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Do an ioctl on a file. This includes the pioctl interface.
1066 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1070 struct cfs_ioctl_in {
1075 char *data; /* Place holder for data. */
1083 struct cfs_ioctl_out {
1085 caddr_t data; /* Place holder for data. */
1090 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Do an ioctl operation on a file. The command, len and
1091 data arguments are filled as usual. flags is not used by Venus.
1093 E
\bEr
\brr
\bro
\bor
\brs
\bs
1095 N
\bNO
\bOT
\bTE
\bE Another bogus parameter. flags is not used. What is the
1096 business about PREFETCHING in the Venus code?
1101 4
\b4.
\b.1
\b18
\b8.
\b. r
\bre
\ben
\bna
\bam
\bme
\be
1104 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Rename a fid.
1106 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1110 struct cfs_rename_in {
1122 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Rename the object with name srcname in directory
1123 sourceFid to destname in destFid. It is important that the names
1124 srcname and destname are 0 terminated strings. Strings in Unix
1125 kernels are not always null terminated.
1127 E
\bEr
\brr
\bro
\bor
\brs
\bs
1131 4
\b4.
\b.1
\b19
\b9.
\b. r
\bre
\bea
\bad
\bdd
\bdi
\bir
\br
1134 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Read directory entries.
1136 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1140 struct cfs_readdir_in {
1151 struct cfs_readdir_out {
1153 caddr_t data; /* Place holder for data. */
1158 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Read directory entries from VFid starting at offset and
1159 read at most count bytes. Returns the data in data and returns
1162 E
\bEr
\brr
\bro
\bor
\brs
\bs
1164 N
\bNO
\bOT
\bTE
\bE This call is not used. Readdir operations exploit container
1165 files. We will re-evaluate this during the directory revamp which is
1166 about to take place.
1170 4
\b4.
\b.2
\b20
\b0.
\b. v
\bvg
\bge
\bet
\bt
1173 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by instructs Venus to do an FSDB->Get.
1175 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1179 struct cfs_vget_in {
1187 struct cfs_vget_out {
1194 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This upcall asks Venus to do a get operation on an fsobj
1197 E
\bEr
\brr
\bro
\bor
\brs
\bs
1199 N
\bNO
\bOT
\bTE
\bE This operation is not used. However, it is extremely useful
1200 since it can be used to deal with read/write memory mapped files.
1201 These can be "pinned" in the Venus cache using vget and released with
1206 4
\b4.
\b.2
\b21
\b1.
\b. f
\bfs
\bsy
\byn
\bnc
\bc
1209 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Tell Venus to update the RVM attributes of a file.
1211 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1215 struct cfs_fsync_in {
1224 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Ask Venus to update RVM attributes of object VFid. This
1225 should be called as part of kernel level fsync type calls. The
1226 result indicates if the syncing was successful.
1228 E
\bEr
\brr
\bro
\bor
\brs
\bs
1230 N
\bNO
\bOT
\bTE
\bE Linux does not implement this call. It should.
1234 4
\b4.
\b.2
\b22
\b2.
\b. i
\bin
\bna
\bac
\bct
\bti
\biv
\bve
\be
1237 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Tell Venus a vnode is no longer in use.
1239 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1243 struct cfs_inactive_in {
1252 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This operation returns EOPNOTSUPP.
1254 E
\bEr
\brr
\bro
\bor
\brs
\bs
1256 N
\bNO
\bOT
\bTE
\bE This should perhaps be removed.
1260 4
\b4.
\b.2
\b23
\b3.
\b. r
\brd
\bdw
\bwr
\br
1263 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Read or write from a file
1265 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1269 struct cfs_rdwr_in {
1275 caddr_t data; /* Place holder for data. */
1283 struct cfs_rdwr_out {
1286 caddr_t data; /* Place holder for data. */
1291 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This upcall asks Venus to read or write from a file.
1293 E
\bEr
\brr
\bro
\bor
\brs
\bs
1295 N
\bNO
\bOT
\bTE
\bE It should be removed since it is against the Coda philosophy that
1296 read/write operations never reach Venus. I have been told the
1297 operation does not work. It is not currently used.
1302 4
\b4.
\b.2
\b24
\b4.
\b. o
\bod
\bdy
\bym
\bmo
\bou
\bun
\bnt
\bt
1305 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Allows mounting multiple Coda "filesystems" on one Unix mount
1308 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1312 struct ody_mount_in {
1313 char *name; /* Place holder for data. */
1320 struct ody_mount_out {
1326 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Asks Venus to return the rootfid of a Coda system named
1327 name. The fid is returned in VFid.
1329 E
\bEr
\brr
\bro
\bor
\brs
\bs
1331 N
\bNO
\bOT
\bTE
\bE This call was used by David for dynamic sets. It should be
1332 removed since it causes a jungle of pointers in the VFS mounting area.
1333 It is not used by Coda proper. Call is not implemented by Venus.
1337 4
\b4.
\b.2
\b25
\b5.
\b. o
\bod
\bdy
\by_
\b_l
\blo
\boo
\bok
\bku
\bup
\bp
1340 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Looks up something.
1342 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1350 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn
1352 E
\bEr
\brr
\bro
\bor
\brs
\bs
1354 N
\bNO
\bOT
\bTE
\bE Gut it. Call is not implemented by Venus.
1358 4
\b4.
\b.2
\b26
\b6.
\b. o
\bod
\bdy
\by_
\b_e
\bex
\bxp
\bpa
\ban
\bnd
\bd
1361 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by expands something in a dynamic set.
1363 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1370 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn
1372 E
\bEr
\brr
\bro
\bor
\brs
\bs
1374 N
\bNO
\bOT
\bTE
\bE Gut it. Call is not implemented by Venus.
1378 4
\b4.
\b.2
\b27
\b7.
\b. p
\bpr
\bre
\bef
\bfe
\bet
\btc
\bch
\bh
1381 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Prefetch a dynamic set.
1383 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1385 i
\bin
\bn Not documented.
1390 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Venus worker.cc has support for this call, although it is
1391 noted that it doesn't work. Not surprising, since the kernel does not
1392 have support for it. (ODY_PREFETCH is not a defined operation).
1394 E
\bEr
\brr
\bro
\bor
\brs
\bs
1396 N
\bNO
\bOT
\bTE
\bE Gut it. It isn't working and isn't used by Coda.
1401 4
\b4.
\b.2
\b28
\b8.
\b. s
\bsi
\big
\bgn
\bna
\bal
\bl
1404 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Send Venus a signal about an upcall.
1406 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1413 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This is an out-of-band upcall to Venus to inform Venus
1414 that the calling process received a signal after Venus read the
1415 message from the input queue. Venus is supposed to clean up the
1418 E
\bEr
\brr
\bro
\bor
\brs
\bs No reply is given.
1420 N
\bNO
\bOT
\bTE
\bE We need to better understand what Venus needs to clean up and if
1421 it is doing this correctly. Also we need to handle multiple upcall
1422 per system call situations correctly. It would be important to know
1423 what state changes in Venus take place after an upcall for which the
1424 kernel is responsible for notifying Venus to clean up (e.g. open
1425 definitely is such a state change, but many others are maybe not).
1429 5
\b5.
\b. T
\bTh
\bhe
\be m
\bmi
\bin
\bni
\bic
\bca
\bac
\bch
\bhe
\be a
\ban
\bnd
\bd d
\bdo
\bow
\bwn
\bnc
\bca
\bal
\bll
\bls
\bs
1432 The Coda FS Driver can cache results of lookup and access upcalls, to
1433 limit the frequency of upcalls. Upcalls carry a price since a process
1434 context switch needs to take place. The counterpart of caching the
1435 information is that Venus will notify the FS Driver that cached
1436 entries must be flushed or renamed.
1438 The kernel code generally has to maintain a structure which links the
1439 internal file handles (called vnodes in BSD, inodes in Linux and
1440 FileHandles in Windows) with the ViceFid's which Venus maintains. The
1441 reason is that frequent translations back and forth are needed in
1442 order to make upcalls and use the results of upcalls. Such linking
1443 objects are called c
\bcn
\bno
\bod
\bde
\bes
\bs.
1445 The current minicache implementations have cache entries which record
1448 1. the name of the file
1450 2. the cnode of the directory containing the object
1452 3. a list of CodaCred's for which the lookup is permitted.
1454 4. the cnode of the object
1456 The lookup call in the Coda FS Driver may request the cnode of the
1457 desired object from the cache, by passing its name, directory and the
1458 CodaCred's of the caller. The cache will return the cnode or indicate
1459 that it cannot be found. The Coda FS Driver must be careful to
1460 invalidate cache entries when it modifies or removes objects.
1462 When Venus obtains information that indicates that cache entries are
1463 no longer valid, it will make a downcall to the kernel. Downcalls are
1464 intercepted by the Coda FS Driver and lead to cache invalidations of
1465 the kind described below. The Coda FS Driver does not return an error
1466 unless the downcall data could not be read into kernel memory.
1469 5
\b5.
\b.1
\b1.
\b. I
\bIN
\bNV
\bVA
\bAL
\bLI
\bID
\bDA
\bAT
\bTE
\bE
1472 No information is available on this call.
1475 5
\b5.
\b.2
\b2.
\b. F
\bFL
\bLU
\bUS
\bSH
\bH
1479 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs None
1481 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Flush the name cache entirely.
1483 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Venus issues this call upon startup and when it dies. This
1484 is to prevent stale cache information being held. Some operating
1485 systems allow the kernel name cache to be switched off dynamically.
1486 When this is done, this downcall is made.
1489 5
\b5.
\b.3
\b3.
\b. P
\bPU
\bUR
\bRG
\bGE
\bEU
\bUS
\bSE
\bER
\bR
1492 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1494 struct cfs_purgeuser_out {/* CFS_PURGEUSER is a venus->kernel call */
1495 struct CodaCred cred;
1500 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove all entries in the cache carrying the Cred. This
1501 call is issued when tokens for a user expire or are flushed.
1504 5
\b5.
\b.4
\b4.
\b. Z
\bZA
\bAP
\bPF
\bFI
\bIL
\bLE
\bE
1507 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1509 struct cfs_zapfile_out { /* CFS_ZAPFILE is a venus->kernel call */
1515 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove all entries which have the (dir vnode, name) pair.
1516 This is issued as a result of an invalidation of cached attributes of
1519 N
\bNO
\bOT
\bTE
\bE Call is not named correctly in NetBSD and Mach. The minicache
1520 zapfile routine takes different arguments. Linux does not implement
1521 the invalidation of attributes correctly.
1525 5
\b5.
\b.5
\b5.
\b. Z
\bZA
\bAP
\bPD
\bDI
\bIR
\bR
1528 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1530 struct cfs_zapdir_out { /* CFS_ZAPDIR is a venus->kernel call */
1536 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove all entries in the cache lying in a directory
1537 CodaFid, and all children of this directory. This call is issued when
1538 Venus receives a callback on the directory.
1541 5
\b5.
\b.6
\b6.
\b. Z
\bZA
\bAP
\bPV
\bVN
\bNO
\bOD
\bDE
\bE
1545 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1547 struct cfs_zapvnode_out { /* CFS_ZAPVNODE is a venus->kernel call */
1548 struct CodaCred cred;
1554 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Remove all entries in the cache carrying the cred and VFid
1555 as in the arguments. This downcall is probably never issued.
1558 5
\b5.
\b.7
\b7.
\b. P
\bPU
\bUR
\bRG
\bGE
\bEF
\bFI
\bID
\bD
1561 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by
1563 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1565 struct cfs_purgefid_out { /* CFS_PURGEFID is a venus->kernel call */
1571 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn Flush the attribute for the file. If it is a dir (odd
1572 vnode), purge its children from the namecache and remove the file from the
1577 5
\b5.
\b.8
\b8.
\b. R
\bRE
\bEP
\bPL
\bLA
\bAC
\bCE
\bE
1580 S
\bSu
\bum
\bmm
\bma
\bar
\bry
\by Replace the Fid's for a collection of names.
1582 A
\bAr
\brg
\bgu
\bum
\bme
\ben
\bnt
\bts
\bs
1584 struct cfs_replace_out { /* cfs_replace is a venus->kernel call */
1591 D
\bDe
\bes
\bsc
\bcr
\bri
\bip
\bpt
\bti
\bio
\bon
\bn This routine replaces a ViceFid in the name cache with
1592 another. It is added to allow Venus during reintegration to replace
1593 locally allocated temp fids while disconnected with global fids even
1594 when the reference counts on those fids are not zero.
1598 6
\b6.
\b. I
\bIn
\bni
\bit
\bti
\bia
\bal
\bli
\biz
\bza
\bat
\bti
\bio
\bon
\bn a
\ban
\bnd
\bd c
\bcl
\ble
\bea
\ban
\bnu
\bup
\bp
1601 This section gives brief hints as to desirable features for the Coda
1602 FS Driver at startup and upon shutdown or Venus failures. Before
1603 entering the discussion it is useful to repeat that the Coda FS Driver
1604 maintains the following data:
1611 3. name cache entries
1613 The name cache entries are entirely private to the driver, so they
1614 can easily be manipulated. The message queues will generally have
1615 clear points of initialization and destruction. The cnodes are
1616 much more delicate. User processes hold reference counts in Coda
1617 filesystems and it can be difficult to clean up the cnodes.
1619 It can expect requests through:
1621 1. the message subsystem
1627 Currently the _
\bp_
\bi_
\bo_
\bc_
\bt_
\bl passes through the VFS for Coda so we can
1628 treat these similarly.
1631 6
\b6.
\b.1
\b1.
\b. R
\bRe
\beq
\bqu
\bui
\bir
\bre
\bem
\bme
\ben
\bnt
\bts
\bs
1634 The following requirements should be accommodated:
1636 1. The message queues should have open and close routines. On Unix
1637 the opening of the character devices are such routines.
1639 +
\bo Before opening, no messages can be placed.
1641 +
\bo Opening will remove any old messages still pending.
1643 +
\bo Close will notify any sleeping processes that their upcall cannot
1646 +
\bo Close will free all memory allocated by the message queues.
1649 2. At open the namecache shall be initialized to empty state.
1651 3. Before the message queues are open, all VFS operations will fail.
1652 Fortunately this can be achieved by making sure than mounting the
1653 Coda filesystem cannot succeed before opening.
1655 4. After closing of the queues, no VFS operations can succeed. Here
1656 one needs to be careful, since a few operations (lookup,
1657 read/write, readdir) can proceed without upcalls. These must be
1660 5. Upon closing the namecache shall be flushed and disabled.
1662 6. All memory held by cnodes can be freed without relying on upcalls.
1664 7. Unmounting the file system can be done without relying on upcalls.
1666 8. Mounting the Coda filesystem should fail gracefully if Venus cannot
1667 get the rootfid or the attributes of the rootfid. The latter is
1668 best implemented by Venus fetching these objects before attempting
1671 N
\bNO
\bOT
\bTE
\bE NetBSD in particular but also Linux have not implemented the
1672 above requirements fully. For smooth operation this needs to be