No empty .Rs/.Re
[netbsd-mini2440.git] / sys / coda / coda_venus.c
blob033d5834f4685904e55b71c3bfdbcb414fc70f15
1 /* $NetBSD: coda_venus.c,v 1.26 2009/03/18 17:06:48 cegger Exp $ */
3 /*
5 * Coda: an Experimental Distributed File System
6 * Release 3.1
8 * Copyright (c) 1987-1998 Carnegie Mellon University
9 * All Rights Reserved
11 * Permission to use, copy, modify and distribute this software and its
12 * documentation is hereby granted, provided that both the copyright
13 * notice and this permission notice appear in all copies of the
14 * software, derivative works or modified versions, and any portions
15 * thereof, and that both notices appear in supporting documentation, and
16 * that credit is given to Carnegie Mellon University in all documents
17 * and publicity pertaining to direct or indirect use of this code or its
18 * derivatives.
20 * CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS KNOWN TO HAVE BUGS,
21 * SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON ALLOWS
22 * FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. CARNEGIE MELLON
23 * DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER
24 * RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF
25 * ANY DERIVATIVE WORK.
27 * Carnegie Mellon encourages users of this software to return any
28 * improvements or extensions that they make, and to grant Carnegie
29 * Mellon the rights to redistribute these changes without encumbrance.
31 * @(#) coda/coda_venus.c,v 1.1.1.1 1998/08/29 21:26:45 rvb Exp $
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: coda_venus.c,v 1.26 2009/03/18 17:06:48 cegger Exp $");
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/malloc.h>
40 #include <sys/proc.h>
41 #include <sys/select.h>
42 #include <sys/ioctl.h>
43 /* for CNV_OFLAGS below */
44 #include <sys/fcntl.h>
45 #include <sys/kauth.h>
47 #include <coda/coda.h>
48 #include <coda/cnode.h>
49 #include <coda/coda_venus.h>
50 #include <coda/coda_pioctl.h>
52 #ifdef _KERNEL_OPT
53 #include "opt_coda_compat.h"
54 #endif
57 * Isize and Osize are the sizes of the input and output arguments.
58 * SEMI-INVARIANT: name##_size (e.g. coda_readlink_size) is the max of
59 * the input and output. This invariant is not well maintained, but
60 * should be true after ALLOC_*. Isize is modified after allocation
61 * by STRCPY below - this is in general unsafe and needs fixing.
64 #define DECL_NO_IN(name) \
65 struct coda_in_hdr *inp; \
66 struct name ## _out *outp; \
67 int name ## _size = sizeof (struct coda_in_hdr); \
68 int Isize = sizeof (struct coda_in_hdr); \
69 int Osize = sizeof (struct name ## _out); \
70 int error
72 #define DECL(name) \
73 struct name ## _in *inp; \
74 struct name ## _out *outp; \
75 int name ## _size = sizeof (struct name ## _in); \
76 int Isize = sizeof (struct name ## _in); \
77 int Osize = sizeof (struct name ## _out); \
78 int error
80 #define DECL_NO_OUT(name) \
81 struct name ## _in *inp; \
82 struct coda_out_hdr *outp; \
83 int name ## _size = sizeof (struct name ## _in); \
84 int Isize = sizeof (struct name ## _in); \
85 int Osize = sizeof (struct coda_out_hdr); \
86 int error
88 #define ALLOC_NO_IN(name) \
89 if (Osize > name ## _size) \
90 name ## _size = Osize; \
91 CODA_ALLOC(inp, struct coda_in_hdr *, name ## _size);\
92 outp = (struct name ## _out *) inp
94 #define ALLOC(name) \
95 if (Osize > name ## _size) \
96 name ## _size = Osize; \
97 CODA_ALLOC(inp, struct name ## _in *, name ## _size);\
98 outp = (struct name ## _out *) inp
100 #define ALLOC_NO_OUT(name) \
101 if (Osize > name ## _size) \
102 name ## _size = Osize; \
103 CODA_ALLOC(inp, struct name ## _in *, name ## _size);\
104 outp = (struct coda_out_hdr *) inp
106 #define STRCPY(struc, name, len) \
107 memcpy((char *)inp + (int)inp->struc, name, len); \
108 ((char*)inp + (int)inp->struc)[len++] = 0; \
109 Isize += len
110 /* XXX verify that Isize has not overrun available storage */
112 #ifdef CODA_COMPAT_5
114 #define INIT_IN(in, op, ident, p) \
115 (in)->opcode = (op); \
116 (in)->pid = p ? p->p_pid : -1; \
117 (in)->pgid = p ? p->p_pgid : -1; \
118 (in)->sid = (p && p->p_session && p->p_session->s_leader) ? \
119 (p->p_session->s_leader->p_pid) : -1; \
120 KASSERT(cred != NULL); \
121 KASSERT(cred != FSCRED); \
122 if (ident != NOCRED) { \
123 (in)->cred.cr_uid = kauth_cred_geteuid(ident); \
124 (in)->cred.cr_groupid = kauth_cred_getegid(ident); \
125 } else { \
126 memset(&((in)->cred), 0, sizeof(struct coda_cred)); \
127 (in)->cred.cr_uid = -1; \
128 (in)->cred.cr_groupid = -1; \
131 #else
133 #define INIT_IN(in, op, ident, p) \
134 (in)->opcode = (op); \
135 (in)->pid = p ? p->p_pid : -1; \
136 (in)->pgid = p ? p->p_pgid : -1; \
137 KASSERT(cred != NULL); \
138 KASSERT(cred != FSCRED); \
139 if (ident != NOCRED) { \
140 (in)->uid = kauth_cred_geteuid(ident); \
141 } else { \
142 (in)->uid = -1; \
145 #endif
147 #define INIT_IN_L(in, op, ident, l) \
148 INIT_IN(in, op, ident, (l ? l->l_proc : NULL))
150 #define CNV_OFLAG(to, from) \
151 do { \
152 to = 0; \
153 if (from & FREAD) to |= C_O_READ; \
154 if (from & FWRITE) to |= C_O_WRITE; \
155 if (from & O_TRUNC) to |= C_O_TRUNC; \
156 if (from & O_EXCL) to |= C_O_EXCL; \
157 if (from & O_CREAT) to |= C_O_CREAT; \
158 } while (/*CONSTCOND*/ 0)
160 #define CNV_VV2V_ATTR(top, fromp) \
161 do { \
162 (top)->va_type = (fromp)->va_type; \
163 (top)->va_mode = (fromp)->va_mode; \
164 (top)->va_nlink = (fromp)->va_nlink; \
165 (top)->va_uid = (fromp)->va_uid; \
166 (top)->va_gid = (fromp)->va_gid; \
167 (top)->va_fsid = VNOVAL; \
168 (top)->va_fileid = (fromp)->va_fileid; \
169 (top)->va_size = (fromp)->va_size; \
170 (top)->va_blocksize = (fromp)->va_blocksize; \
171 (top)->va_atime = (fromp)->va_atime; \
172 (top)->va_mtime = (fromp)->va_mtime; \
173 (top)->va_ctime = (fromp)->va_ctime; \
174 (top)->va_gen = (fromp)->va_gen; \
175 (top)->va_flags = (fromp)->va_flags; \
176 (top)->va_rdev = (fromp)->va_rdev; \
177 (top)->va_bytes = (fromp)->va_bytes; \
178 (top)->va_filerev = (fromp)->va_filerev; \
179 (top)->va_vaflags = VNOVAL; \
180 (top)->va_spare = VNOVAL; \
181 } while (/*CONSTCOND*/ 0)
183 #define CNV_V2VV_ATTR(top, fromp) \
184 do { \
185 (top)->va_type = (fromp)->va_type; \
186 (top)->va_mode = (fromp)->va_mode; \
187 (top)->va_nlink = (fromp)->va_nlink; \
188 (top)->va_uid = (fromp)->va_uid; \
189 (top)->va_gid = (fromp)->va_gid; \
190 (top)->va_fileid = (fromp)->va_fileid; \
191 (top)->va_size = (fromp)->va_size; \
192 (top)->va_blocksize = (fromp)->va_blocksize; \
193 (top)->va_atime = (fromp)->va_atime; \
194 (top)->va_mtime = (fromp)->va_mtime; \
195 (top)->va_ctime = (fromp)->va_ctime; \
196 (top)->va_gen = (fromp)->va_gen; \
197 (top)->va_flags = (fromp)->va_flags; \
198 (top)->va_rdev = (fromp)->va_rdev; \
199 (top)->va_bytes = (fromp)->va_bytes; \
200 (top)->va_filerev = (fromp)->va_filerev; \
201 } while (/*CONSTCOND*/ 0)
204 int coda_kernel_version = CODA_KERNEL_VERSION;
207 venus_root(void *mdp,
208 kauth_cred_t cred, struct proc *p,
209 /*out*/ CodaFid *VFid)
211 DECL_NO_IN(coda_root); /* sets Isize & Osize */
212 ALLOC_NO_IN(coda_root); /* sets inp & outp */
214 /* send the open to venus. */
215 INIT_IN(inp, CODA_ROOT, cred, p);
217 error = coda_call(mdp, Isize, &Osize, (char *)inp);
218 if (!error)
219 *VFid = outp->Fid;
221 CODA_FREE(inp, coda_root_size);
222 return error;
226 venus_open(void *mdp, CodaFid *fid, int flag,
227 kauth_cred_t cred, struct lwp *l,
228 /*out*/ dev_t *dev, ino_t *inode)
230 int cflag;
231 DECL(coda_open); /* sets Isize & Osize */
232 ALLOC(coda_open); /* sets inp & outp */
234 /* send the open to venus. */
235 INIT_IN_L(&inp->ih, CODA_OPEN, cred, l);
236 inp->Fid = *fid;
237 CNV_OFLAG(cflag, flag);
238 inp->flags = cflag;
240 error = coda_call(mdp, Isize, &Osize, (char *)inp);
241 KASSERT(outp != NULL);
242 if (!error) {
243 *dev = outp->dev;
244 *inode = outp->inode;
247 CODA_FREE(inp, coda_open_size);
248 return error;
252 venus_close(void *mdp, CodaFid *fid, int flag,
253 kauth_cred_t cred, struct lwp *l)
255 int cflag;
256 DECL_NO_OUT(coda_close); /* sets Isize & Osize */
257 ALLOC_NO_OUT(coda_close); /* sets inp & outp */
259 INIT_IN_L(&inp->ih, CODA_CLOSE, cred, l);
260 inp->Fid = *fid;
261 CNV_OFLAG(cflag, flag);
262 inp->flags = cflag;
264 error = coda_call(mdp, Isize, &Osize, (char *)inp);
266 CODA_FREE(inp, coda_close_size);
267 return error;
271 * these two calls will not exist!!! the container file is read/written
272 * directly.
274 void
275 venus_read(void)
279 void
280 venus_write(void)
285 * this is a bit sad too. the ioctl's are for the control file, not for
286 * normal files.
289 venus_ioctl(void *mdp, CodaFid *fid,
290 int com, int flag, void *data,
291 kauth_cred_t cred, struct lwp *l)
293 DECL(coda_ioctl); /* sets Isize & Osize */
294 struct PioctlData *iap = (struct PioctlData *)data;
295 int tmp;
297 coda_ioctl_size = VC_MAXMSGSIZE;
298 ALLOC(coda_ioctl); /* sets inp & outp */
300 INIT_IN_L(&inp->ih, CODA_IOCTL, cred, l);
301 inp->Fid = *fid;
303 /* command was mutated by increasing its size field to reflect the
304 * path and follow args. we need to subtract that out before sending
305 * the command to venus.
307 inp->cmd = (com & ~(IOCPARM_MASK << 16));
308 tmp = ((com >> 16) & IOCPARM_MASK) - sizeof (char *) - sizeof (int);
309 inp->cmd |= (tmp & IOCPARM_MASK) << 16;
311 if (iap->vi.in_size < 0 || iap->vi.in_size > VC_MAXMSGSIZE) {
312 CODA_FREE(inp, coda_ioctl_size);
313 return (EINVAL);
316 inp->rwflag = flag;
317 inp->len = iap->vi.in_size;
318 inp->data = (char *)(sizeof (struct coda_ioctl_in));
320 error = copyin(iap->vi.in, (char*)inp + (int)(long)inp->data,
321 iap->vi.in_size);
322 if (error) {
323 CODA_FREE(inp, coda_ioctl_size);
324 return(error);
327 Osize = VC_MAXMSGSIZE;
328 error = coda_call(mdp, Isize + iap->vi.in_size, &Osize, (char *)inp);
330 /* copy out the out buffer. */
331 if (!error) {
332 if (outp->len > iap->vi.out_size) {
333 error = EINVAL;
334 } else {
335 error = copyout((char *)outp + (int)(long)outp->data,
336 iap->vi.out, iap->vi.out_size);
340 CODA_FREE(inp, coda_ioctl_size);
341 return error;
345 venus_getattr(void *mdp, CodaFid *fid,
346 kauth_cred_t cred, struct lwp *l,
347 /*out*/ struct vattr *vap)
349 DECL(coda_getattr); /* sets Isize & Osize */
350 ALLOC(coda_getattr); /* sets inp & outp */
352 /* send the open to venus. */
353 INIT_IN_L(&inp->ih, CODA_GETATTR, cred, l);
354 inp->Fid = *fid;
356 error = coda_call(mdp, Isize, &Osize, (char *)inp);
357 if (!error) {
358 CNV_VV2V_ATTR(vap, &outp->attr);
361 CODA_FREE(inp, coda_getattr_size);
362 return error;
366 venus_setattr(void *mdp, CodaFid *fid, struct vattr *vap,
367 kauth_cred_t cred, struct lwp *l)
369 DECL_NO_OUT(coda_setattr); /* sets Isize & Osize */
370 ALLOC_NO_OUT(coda_setattr); /* sets inp & outp */
372 /* send the open to venus. */
373 INIT_IN_L(&inp->ih, CODA_SETATTR, cred, l);
374 inp->Fid = *fid;
375 CNV_V2VV_ATTR(&inp->attr, vap);
377 error = coda_call(mdp, Isize, &Osize, (char *)inp);
379 CODA_FREE(inp, coda_setattr_size);
380 return error;
384 venus_access(void *mdp, CodaFid *fid, int mode,
385 kauth_cred_t cred, struct lwp *l)
387 DECL_NO_OUT(coda_access); /* sets Isize & Osize */
388 ALLOC_NO_OUT(coda_access); /* sets inp & outp */
390 /* send the open to venus. */
391 INIT_IN_L(&inp->ih, CODA_ACCESS, cred, l);
392 inp->Fid = *fid;
393 inp->flags = mode;
395 error = coda_call(mdp, Isize, &Osize, (char *)inp);
397 CODA_FREE(inp, coda_access_size);
398 return error;
402 venus_readlink(void *mdp, CodaFid *fid,
403 kauth_cred_t cred, struct lwp *l,
404 /*out*/ char **str, int *len)
406 DECL(coda_readlink); /* sets Isize & Osize */
407 /* XXX coda_readlink_size should not be set here */
408 coda_readlink_size += CODA_MAXPATHLEN;
409 Osize += CODA_MAXPATHLEN;
410 ALLOC(coda_readlink); /* sets inp & outp */
412 /* send the open to venus. */
413 INIT_IN_L(&inp->ih, CODA_READLINK, cred, l);
414 inp->Fid = *fid;
416 error = coda_call(mdp, Isize, &Osize, (char *)inp);
417 KASSERT(outp != NULL);
418 if (error != 0)
419 goto out;
421 /* Check count for reasonableness */
422 if (outp->count <= 0 || outp->count > CODA_MAXPATHLEN) {
423 printf("venus_readlink: bad count %d\n", outp->count);
424 error = EINVAL;
425 goto out;
429 * Check data pointer for reasonableness. It must point after
430 * itself, and within the allocated region.
432 if ((intptr_t) outp->data < sizeof(struct coda_readlink_out) ) {
433 printf("venus_readlink: data pointer %lld too low\n",
434 (long long)((intptr_t) outp->data));
435 error = EINVAL;
436 goto out;
439 if ((intptr_t) outp->data + outp->count >
440 sizeof(struct coda_readlink_out) + CODA_MAXPATHLEN) {
441 printf("venus_readlink: data pointer %lld too high\n",
442 (long long)((intptr_t) outp->data));
443 error = EINVAL;
444 goto out;
447 if (!error) {
448 CODA_ALLOC(*str, char *, outp->count);
449 *len = outp->count;
450 memcpy(*str, (char *)outp + (int)(long)outp->data, *len);
453 out:
454 CODA_FREE(inp, coda_readlink_size);
455 return error;
459 venus_fsync(void *mdp, CodaFid *fid,
460 kauth_cred_t cred, struct lwp *l)
462 DECL_NO_OUT(coda_fsync); /* sets Isize & Osize */
463 ALLOC_NO_OUT(coda_fsync); /* sets inp & outp */
465 /* send the open to venus. */
466 INIT_IN_L(&inp->ih, CODA_FSYNC, cred, l);
467 inp->Fid = *fid;
469 error = coda_call(mdp, Isize, &Osize, (char *)inp);
471 CODA_FREE(inp, coda_fsync_size);
472 return error;
476 venus_lookup(void *mdp, CodaFid *fid,
477 const char *nm, int len,
478 kauth_cred_t cred, struct lwp *l,
479 /*out*/ CodaFid *VFid, int *vtype)
481 DECL(coda_lookup); /* sets Isize & Osize */
482 coda_lookup_size += len + 1;
483 ALLOC(coda_lookup); /* sets inp & outp */
485 /* send the open to venus. */
486 INIT_IN_L(&inp->ih, CODA_LOOKUP, cred, l);
487 inp->Fid = *fid;
489 /* NOTE:
490 * Between version 1 and version 2 we have added an extra flag field
491 * to this structure. But because the string was at the end and because
492 * of the weird way we represent strings by having the slot point to
493 * where the string characters are in the "heap", we can just slip the
494 * flag parameter in after the string slot pointer and veni that don't
495 * know better won't see this new flag field ...
496 * Otherwise we'd need two different venus_lookup functions.
498 inp->name = Isize;
499 inp->flags = CLU_CASE_SENSITIVE; /* doesn't really matter for BSD */
500 /* This is safe because we preallocated len+1 extra. */
501 STRCPY(name, nm, len); /* increments Isize */
503 error = coda_call(mdp, Isize, &Osize, (char *)inp);
504 KASSERT(outp != NULL);
505 if (!error) {
506 *VFid = outp->Fid;
507 *vtype = outp->vtype;
510 CODA_FREE(inp, coda_lookup_size);
511 return error;
515 venus_create(void *mdp, CodaFid *fid,
516 const char *nm, int len, int exclusive, int mode, struct vattr *va,
517 kauth_cred_t cred, struct lwp *l,
518 /*out*/ CodaFid *VFid, struct vattr *attr)
520 DECL(coda_create); /* sets Isize & Osize */
521 coda_create_size += len + 1;
522 ALLOC(coda_create); /* sets inp & outp */
524 /* send the open to venus. */
525 INIT_IN_L(&inp->ih, CODA_CREATE, cred, l);
526 inp->Fid = *fid;
527 inp->excl = exclusive ? C_O_EXCL : 0;
528 inp->mode = mode<<6;
529 CNV_V2VV_ATTR(&inp->attr, va);
531 inp->name = Isize;
532 STRCPY(name, nm, len); /* increments Isize */
534 error = coda_call(mdp, Isize, &Osize, (char *)inp);
535 KASSERT(outp != NULL);
536 if (!error) {
537 *VFid = outp->Fid;
538 CNV_VV2V_ATTR(attr, &outp->attr);
541 CODA_FREE(inp, coda_create_size);
542 return error;
546 venus_remove(void *mdp, CodaFid *fid,
547 const char *nm, int len,
548 kauth_cred_t cred, struct lwp *l)
550 DECL_NO_OUT(coda_remove); /* sets Isize & Osize */
551 coda_remove_size += len + 1;
552 ALLOC_NO_OUT(coda_remove); /* sets inp & outp */
554 /* send the open to venus. */
555 INIT_IN_L(&inp->ih, CODA_REMOVE, cred, l);
556 inp->Fid = *fid;
558 inp->name = Isize;
559 STRCPY(name, nm, len); /* increments Isize */
561 error = coda_call(mdp, Isize, &Osize, (char *)inp);
563 CODA_FREE(inp, coda_remove_size);
564 return error;
568 venus_link(void *mdp, CodaFid *fid, CodaFid *tfid,
569 const char *nm, int len,
570 kauth_cred_t cred, struct lwp *l)
572 DECL_NO_OUT(coda_link); /* sets Isize & Osize */
573 coda_link_size += len + 1;
574 ALLOC_NO_OUT(coda_link); /* sets inp & outp */
576 /* send the open to venus. */
577 INIT_IN_L(&inp->ih, CODA_LINK, cred, l);
578 inp->sourceFid = *fid;
579 inp->destFid = *tfid;
581 inp->tname = Isize;
582 STRCPY(tname, nm, len); /* increments Isize */
584 error = coda_call(mdp, Isize, &Osize, (char *)inp);
586 CODA_FREE(inp, coda_link_size);
587 return error;
591 venus_rename(void *mdp, CodaFid *fid, CodaFid *tfid,
592 const char *nm, int len, const char *tnm, int tlen,
593 kauth_cred_t cred, struct lwp *l)
595 DECL_NO_OUT(coda_rename); /* sets Isize & Osize */
596 coda_rename_size += len + 1 + tlen + 1;
597 ALLOC_NO_OUT(coda_rename); /* sets inp & outp */
599 /* send the open to venus. */
600 INIT_IN_L(&inp->ih, CODA_RENAME, cred, l);
601 inp->sourceFid = *fid;
602 inp->destFid = *tfid;
604 inp->srcname = Isize;
605 STRCPY(srcname, nm, len); /* increments Isize */
607 inp->destname = Isize;
608 STRCPY(destname, tnm, tlen); /* increments Isize */
610 error = coda_call(mdp, Isize, &Osize, (char *)inp);
612 CODA_FREE(inp, coda_rename_size);
613 return error;
617 venus_mkdir(void *mdp, CodaFid *fid,
618 const char *nm, int len, struct vattr *va,
619 kauth_cred_t cred, struct lwp *l,
620 /*out*/ CodaFid *VFid, struct vattr *ova)
622 DECL(coda_mkdir); /* sets Isize & Osize */
623 coda_mkdir_size += len + 1;
624 ALLOC(coda_mkdir); /* sets inp & outp */
626 /* send the open to venus. */
627 INIT_IN_L(&inp->ih, CODA_MKDIR, cred, l);
628 inp->Fid = *fid;
629 CNV_V2VV_ATTR(&inp->attr, va);
631 inp->name = Isize;
632 STRCPY(name, nm, len); /* increments Isize */
634 error = coda_call(mdp, Isize, &Osize, (char *)inp);
635 KASSERT(outp != NULL);
636 if (!error) {
637 *VFid = outp->Fid;
638 CNV_VV2V_ATTR(ova, &outp->attr);
641 CODA_FREE(inp, coda_mkdir_size);
642 return error;
646 venus_rmdir(void *mdp, CodaFid *fid,
647 const char *nm, int len,
648 kauth_cred_t cred, struct lwp *l)
650 DECL_NO_OUT(coda_rmdir); /* sets Isize & Osize */
651 coda_rmdir_size += len + 1;
652 ALLOC_NO_OUT(coda_rmdir); /* sets inp & outp */
654 /* send the open to venus. */
655 INIT_IN_L(&inp->ih, CODA_RMDIR, cred, l);
656 inp->Fid = *fid;
658 inp->name = Isize;
659 STRCPY(name, nm, len); /* increments Isize */
661 error = coda_call(mdp, Isize, &Osize, (char *)inp);
663 CODA_FREE(inp, coda_rmdir_size);
664 return error;
668 venus_symlink(void *mdp, CodaFid *fid,
669 const char *lnm, int llen, const char *nm, int len, struct vattr *va,
670 kauth_cred_t cred, struct lwp *l)
672 DECL_NO_OUT(coda_symlink); /* sets Isize & Osize */
673 coda_symlink_size += llen + 1 + len + 1;
674 ALLOC_NO_OUT(coda_symlink); /* sets inp & outp */
676 /* send the open to venus. */
677 INIT_IN_L(&inp->ih, CODA_SYMLINK, cred, l);
678 inp->Fid = *fid;
679 CNV_V2VV_ATTR(&inp->attr, va);
681 inp->srcname = Isize;
682 STRCPY(srcname, lnm, llen); /* increments Isize */
684 inp->tname = Isize;
685 STRCPY(tname, nm, len); /* increments Isize */
687 error = coda_call(mdp, Isize, &Osize, (char *)inp);
689 CODA_FREE(inp, coda_symlink_size);
690 return error;
694 venus_readdir(void *mdp, CodaFid *fid,
695 int count, int offset,
696 kauth_cred_t cred, struct lwp *l,
697 /*out*/ char *buffer, int *len)
699 DECL(coda_readdir); /* sets Isize & Osize */
700 coda_readdir_size = VC_MAXMSGSIZE;
701 ALLOC(coda_readdir); /* sets inp & outp */
703 /* send the open to venus. */
704 INIT_IN_L(&inp->ih, CODA_READDIR, cred, l);
705 inp->Fid = *fid;
706 inp->count = count;
707 inp->offset = offset;
709 Osize = VC_MAXMSGSIZE;
710 error = coda_call(mdp, Isize, &Osize, (char *)inp);
711 KASSERT(outp != NULL);
712 if (!error) {
713 memcpy(buffer, (char *)outp + (int)(long)outp->data, outp->size);
714 *len = outp->size;
717 CODA_FREE(inp, coda_readdir_size);
718 return error;
722 venus_statfs(void *mdp, kauth_cred_t cred, struct lwp *l,
723 /*out*/ struct coda_statfs *fsp)
725 DECL(coda_statfs); /* sets Isize & Osize */
726 ALLOC(coda_statfs); /* sets inp & outp */
728 /* send the open to venus. */
729 INIT_IN_L(&inp->ih, CODA_STATFS, cred, l);
731 error = coda_call(mdp, Isize, &Osize, (char *)inp);
732 KASSERT(outp != NULL);
733 if (!error) {
734 *fsp = outp->stat;
737 CODA_FREE(inp, coda_statfs_size);
738 return error;
742 venus_fhtovp(void *mdp, CodaFid *fid,
743 kauth_cred_t cred, struct proc *p,
744 /*out*/ CodaFid *VFid, int *vtype)
746 DECL(coda_vget); /* sets Isize & Osize */
747 ALLOC(coda_vget); /* sets inp & outp */
749 /* Send the open to Venus. */
750 INIT_IN(&inp->ih, CODA_VGET, cred, p);
751 inp->Fid = *fid;
753 error = coda_call(mdp, Isize, &Osize, (char *)inp);
754 KASSERT(outp != NULL);
755 if (!error) {
756 *VFid = outp->Fid;
757 *vtype = outp->vtype;
760 CODA_FREE(inp, coda_vget_size);
761 return error;