coda_vfsops.c revision 1.7.8.1 1 1.7.8.1 wrstuden /* $NetBSD: coda_vfsops.c,v 1.7.8.1 1999/12/27 18:34:22 wrstuden 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.3 rvb * @(#) cfs/coda_vfsops.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.2 rvb
47 1.5 rvb #ifdef _LKM
48 1.5 rvb #define NVCODA 4
49 1.5 rvb #else
50 1.3 rvb #include <vcoda.h>
51 1.5 rvb #endif
52 1.1 rvb
53 1.1 rvb #include <sys/param.h>
54 1.1 rvb #include <sys/systm.h>
55 1.1 rvb #include <sys/malloc.h>
56 1.1 rvb #include <sys/conf.h>
57 1.1 rvb #include <sys/namei.h>
58 1.1 rvb #include <sys/mount.h>
59 1.1 rvb #include <sys/proc.h>
60 1.1 rvb #include <sys/select.h>
61 1.1 rvb
62 1.4 rvb #include <coda/coda.h>
63 1.4 rvb #include <coda/cnode.h>
64 1.4 rvb #include <coda/coda_vfsops.h>
65 1.4 rvb #include <coda/coda_venus.h>
66 1.4 rvb #include <coda/coda_subr.h>
67 1.4 rvb #include <coda/coda_opstats.h>
68 1.1 rvb /* for VN_RDEV */
69 1.1 rvb #include <miscfs/specfs/specdev.h>
70 1.1 rvb
71 1.3 rvb int codadebug = 0;
72 1.1 rvb
73 1.3 rvb int coda_vfsop_print_entry = 0;
74 1.3 rvb #define ENTRY if(coda_vfsop_print_entry) myprintf(("Entered %s\n",__FUNCTION__))
75 1.1 rvb
76 1.3 rvb struct vnode *coda_ctlvp;
77 1.3 rvb struct coda_mntinfo coda_mnttbl[NVCODA]; /* indexed by minor device number */
78 1.1 rvb
79 1.1 rvb /* structure to keep statistics of internally generated/satisfied calls */
80 1.1 rvb
81 1.3 rvb struct coda_op_stats coda_vfsopstats[CODA_VFSOPS_SIZE];
82 1.1 rvb
83 1.3 rvb #define MARK_ENTRY(op) (coda_vfsopstats[op].entries++)
84 1.3 rvb #define MARK_INT_SAT(op) (coda_vfsopstats[op].sat_intrn++)
85 1.3 rvb #define MARK_INT_FAIL(op) (coda_vfsopstats[op].unsat_intrn++)
86 1.3 rvb #define MRAK_INT_GEN(op) (coda_vfsopstats[op].gen_intrn++)
87 1.1 rvb
88 1.3 rvb extern int coda_nc_initialized; /* Set if cache has been initialized */
89 1.1 rvb extern int vc_nb_open __P((dev_t, int, int, struct proc *));
90 1.3 rvb extern struct cdevsw cdevsw[]; /* For sanity check in coda_mount */
91 1.3 rvb extern struct vnodeopv_desc coda_vnodeop_opv_desc;
92 1.1 rvb
93 1.3 rvb struct vnodeopv_desc *coda_vnodeopv_descs[] = {
94 1.3 rvb &coda_vnodeop_opv_desc,
95 1.1 rvb NULL,
96 1.1 rvb };
97 1.1 rvb
98 1.3 rvb struct vfsops coda_vfsops = {
99 1.3 rvb MOUNT_CODA,
100 1.3 rvb coda_mount,
101 1.3 rvb coda_start,
102 1.3 rvb coda_unmount,
103 1.3 rvb coda_root,
104 1.3 rvb coda_quotactl,
105 1.3 rvb coda_nb_statfs,
106 1.3 rvb coda_sync,
107 1.3 rvb coda_vget,
108 1.7 wrstuden (int (*) (struct mount *, struct fid *, struct vnode ** ))
109 1.1 rvb eopnotsupp,
110 1.1 rvb (int (*) (struct vnode *, struct fid *)) eopnotsupp,
111 1.3 rvb coda_init,
112 1.3 rvb coda_sysctl,
113 1.1 rvb (int (*)(void)) eopnotsupp,
114 1.7 wrstuden (int (*)(struct mount *, struct mbuf *, int *, struct ucred **))
115 1.7 wrstuden eopnotsupp,
116 1.3 rvb coda_vnodeopv_descs,
117 1.1 rvb 0
118 1.1 rvb };
119 1.1 rvb
120 1.1 rvb int
121 1.3 rvb coda_vfsopstats_init(void)
122 1.1 rvb {
123 1.1 rvb register int i;
124 1.1 rvb
125 1.3 rvb for (i=0;i<CODA_VFSOPS_SIZE;i++) {
126 1.3 rvb coda_vfsopstats[i].opcode = i;
127 1.3 rvb coda_vfsopstats[i].entries = 0;
128 1.3 rvb coda_vfsopstats[i].sat_intrn = 0;
129 1.3 rvb coda_vfsopstats[i].unsat_intrn = 0;
130 1.3 rvb coda_vfsopstats[i].gen_intrn = 0;
131 1.1 rvb }
132 1.1 rvb
133 1.1 rvb return 0;
134 1.1 rvb }
135 1.1 rvb
136 1.1 rvb /*
137 1.1 rvb * cfs mount vfsop
138 1.1 rvb * Set up mount info record and attach it to vfs struct.
139 1.1 rvb */
140 1.1 rvb /*ARGSUSED*/
141 1.1 rvb int
142 1.3 rvb coda_mount(vfsp, path, data, ndp, p)
143 1.1 rvb struct mount *vfsp; /* Allocated and initialized by mount(2) */
144 1.1 rvb const char *path; /* path covered: ignored by the fs-layer */
145 1.1 rvb void *data; /* Need to define a data type for this in netbsd? */
146 1.1 rvb struct nameidata *ndp; /* Clobber this to lookup the device name */
147 1.1 rvb struct proc *p; /* The ever-famous proc pointer */
148 1.1 rvb {
149 1.1 rvb struct vnode *dvp;
150 1.1 rvb struct cnode *cp;
151 1.1 rvb dev_t dev;
152 1.3 rvb struct coda_mntinfo *mi;
153 1.1 rvb struct vnode *rootvp;
154 1.1 rvb ViceFid rootfid;
155 1.1 rvb ViceFid ctlfid;
156 1.1 rvb int error;
157 1.1 rvb
158 1.1 rvb ENTRY;
159 1.1 rvb
160 1.3 rvb coda_vfsopstats_init();
161 1.3 rvb coda_vnodeopstats_init();
162 1.1 rvb
163 1.3 rvb MARK_ENTRY(CODA_MOUNT_STATS);
164 1.3 rvb if (CODA_MOUNTED(vfsp)) {
165 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
166 1.1 rvb return(EBUSY);
167 1.1 rvb }
168 1.1 rvb
169 1.1 rvb /* Validate mount device. Similar to getmdev(). */
170 1.1 rvb
171 1.1 rvb NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, data, p);
172 1.1 rvb error = namei(ndp);
173 1.1 rvb dvp = ndp->ni_vp;
174 1.1 rvb
175 1.1 rvb if (error) {
176 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
177 1.1 rvb return (error);
178 1.1 rvb }
179 1.1 rvb if (dvp->v_type != VCHR) {
180 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
181 1.1 rvb vrele(dvp);
182 1.1 rvb return(ENXIO);
183 1.1 rvb }
184 1.1 rvb dev = dvp->v_specinfo->si_rdev;
185 1.1 rvb vrele(dvp);
186 1.1 rvb if (major(dev) >= nchrdev || major(dev) < 0) {
187 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
188 1.1 rvb return(ENXIO);
189 1.1 rvb }
190 1.1 rvb
191 1.1 rvb /*
192 1.1 rvb * See if the device table matches our expectations.
193 1.1 rvb */
194 1.1 rvb if (cdevsw[major(dev)].d_open != vc_nb_open)
195 1.1 rvb {
196 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
197 1.1 rvb return(ENXIO);
198 1.1 rvb }
199 1.1 rvb
200 1.3 rvb if (minor(dev) >= NVCODA || minor(dev) < 0) {
201 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
202 1.1 rvb return(ENXIO);
203 1.1 rvb }
204 1.1 rvb
205 1.1 rvb /*
206 1.1 rvb * Initialize the mount record and link it to the vfs struct
207 1.1 rvb */
208 1.3 rvb mi = &coda_mnttbl[minor(dev)];
209 1.1 rvb
210 1.1 rvb if (!VC_OPEN(&mi->mi_vcomm)) {
211 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
212 1.1 rvb return(ENODEV);
213 1.1 rvb }
214 1.1 rvb
215 1.1 rvb /* No initialization (here) of mi_vcomm! */
216 1.1 rvb vfsp->mnt_data = (qaddr_t)mi;
217 1.1 rvb vfsp->mnt_stat.f_fsid.val[0] = 0;
218 1.3 rvb vfsp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_CODA);
219 1.1 rvb mi->mi_vfsp = vfsp;
220 1.1 rvb
221 1.1 rvb /*
222 1.1 rvb * Make a root vnode to placate the Vnode interface, but don't
223 1.3 rvb * actually make the CODA_ROOT call to venus until the first call
224 1.3 rvb * to coda_root in case a server is down while venus is starting.
225 1.1 rvb */
226 1.1 rvb rootfid.Volume = 0;
227 1.1 rvb rootfid.Vnode = 0;
228 1.1 rvb rootfid.Unique = 0;
229 1.3 rvb cp = make_coda_node(&rootfid, vfsp, VDIR);
230 1.1 rvb rootvp = CTOV(cp);
231 1.1 rvb rootvp->v_flag |= VROOT;
232 1.1 rvb
233 1.1 rvb ctlfid.Volume = CTL_VOL;
234 1.1 rvb ctlfid.Vnode = CTL_VNO;
235 1.1 rvb ctlfid.Unique = CTL_UNI;
236 1.3 rvb /* cp = make_coda_node(&ctlfid, vfsp, VCHR);
237 1.1 rvb The above code seems to cause a loop in the cnode links.
238 1.1 rvb I don't totally understand when it happens, it is caught
239 1.1 rvb when closing down the system.
240 1.1 rvb */
241 1.3 rvb cp = make_coda_node(&ctlfid, 0, VCHR);
242 1.1 rvb
243 1.3 rvb coda_ctlvp = CTOV(cp);
244 1.1 rvb
245 1.1 rvb /* Add vfs and rootvp to chain of vfs hanging off mntinfo */
246 1.1 rvb mi->mi_vfsp = vfsp;
247 1.1 rvb mi->mi_rootvp = rootvp;
248 1.1 rvb
249 1.1 rvb /* set filesystem block size */
250 1.1 rvb vfsp->mnt_stat.f_bsize = 8192; /* XXX -JJK */
251 1.1 rvb
252 1.1 rvb /* error is currently guaranteed to be zero, but in case some
253 1.1 rvb code changes... */
254 1.3 rvb CODADEBUG(1,
255 1.3 rvb myprintf(("coda_mount returned %d\n",error)););
256 1.1 rvb if (error)
257 1.3 rvb MARK_INT_FAIL(CODA_MOUNT_STATS);
258 1.1 rvb else
259 1.3 rvb MARK_INT_SAT(CODA_MOUNT_STATS);
260 1.1 rvb
261 1.1 rvb return(error);
262 1.1 rvb }
263 1.1 rvb
264 1.1 rvb int
265 1.3 rvb coda_start(vfsp, flags, p)
266 1.1 rvb struct mount *vfsp;
267 1.1 rvb int flags;
268 1.1 rvb struct proc *p;
269 1.1 rvb {
270 1.1 rvb ENTRY;
271 1.1 rvb return (0);
272 1.1 rvb }
273 1.1 rvb
274 1.1 rvb int
275 1.3 rvb coda_unmount(vfsp, mntflags, p)
276 1.1 rvb struct mount *vfsp;
277 1.1 rvb int mntflags;
278 1.1 rvb struct proc *p;
279 1.1 rvb {
280 1.3 rvb struct coda_mntinfo *mi = vftomi(vfsp);
281 1.1 rvb int active, error = 0;
282 1.1 rvb
283 1.1 rvb ENTRY;
284 1.3 rvb MARK_ENTRY(CODA_UMOUNT_STATS);
285 1.3 rvb if (!CODA_MOUNTED(vfsp)) {
286 1.3 rvb MARK_INT_FAIL(CODA_UMOUNT_STATS);
287 1.1 rvb return(EINVAL);
288 1.1 rvb }
289 1.1 rvb
290 1.1 rvb if (mi->mi_vfsp == vfsp) { /* We found the victim */
291 1.1 rvb if (!IS_UNMOUNTING(VTOC(mi->mi_rootvp)))
292 1.1 rvb return (EBUSY); /* Venus is still running */
293 1.1 rvb
294 1.1 rvb #ifdef DEBUG
295 1.3 rvb printf("coda_unmount: ROOT: vp %p, cp %p\n", mi->mi_rootvp, VTOC(mi->mi_rootvp));
296 1.1 rvb #endif
297 1.1 rvb vrele(mi->mi_rootvp);
298 1.1 rvb
299 1.3 rvb active = coda_kill(vfsp, NOT_DOWNCALL);
300 1.6 rvb mi->mi_rootvp->v_flag &= ~VROOT;
301 1.1 rvb error = vflush(mi->mi_vfsp, NULLVP, FORCECLOSE);
302 1.3 rvb printf("coda_unmount: active = %d, vflush active %d\n", active, error);
303 1.1 rvb error = 0;
304 1.2 rvb
305 1.1 rvb /* I'm going to take this out to allow lookups to go through. I'm
306 1.1 rvb * not sure it's important anyway. -- DCS 2/2/94
307 1.1 rvb */
308 1.1 rvb /* vfsp->VFS_DATA = NULL; */
309 1.1 rvb
310 1.1 rvb /* No more vfsp's to hold onto */
311 1.1 rvb mi->mi_vfsp = NULL;
312 1.1 rvb mi->mi_rootvp = NULL;
313 1.1 rvb
314 1.1 rvb if (error)
315 1.3 rvb MARK_INT_FAIL(CODA_UMOUNT_STATS);
316 1.1 rvb else
317 1.3 rvb MARK_INT_SAT(CODA_UMOUNT_STATS);
318 1.1 rvb
319 1.1 rvb return(error);
320 1.1 rvb }
321 1.1 rvb return (EINVAL);
322 1.1 rvb }
323 1.1 rvb
324 1.1 rvb /*
325 1.1 rvb * find root of cfs
326 1.1 rvb */
327 1.1 rvb int
328 1.3 rvb coda_root(vfsp, vpp)
329 1.1 rvb struct mount *vfsp;
330 1.1 rvb struct vnode **vpp;
331 1.1 rvb {
332 1.3 rvb struct coda_mntinfo *mi = vftomi(vfsp);
333 1.1 rvb struct vnode **result;
334 1.1 rvb int error;
335 1.1 rvb struct proc *p = curproc; /* XXX - bnoble */
336 1.1 rvb ViceFid VFid;
337 1.1 rvb
338 1.1 rvb ENTRY;
339 1.3 rvb MARK_ENTRY(CODA_ROOT_STATS);
340 1.1 rvb result = NULL;
341 1.1 rvb
342 1.1 rvb if (vfsp == mi->mi_vfsp) {
343 1.1 rvb if ((VTOC(mi->mi_rootvp)->c_fid.Volume != 0) ||
344 1.1 rvb (VTOC(mi->mi_rootvp)->c_fid.Vnode != 0) ||
345 1.1 rvb (VTOC(mi->mi_rootvp)->c_fid.Unique != 0))
346 1.1 rvb { /* Found valid root. */
347 1.1 rvb *vpp = mi->mi_rootvp;
348 1.1 rvb /* On Mach, this is vref. On NetBSD, VOP_LOCK */
349 1.1 rvb vref(*vpp);
350 1.2 rvb vn_lock(*vpp, LK_EXCLUSIVE);
351 1.3 rvb MARK_INT_SAT(CODA_ROOT_STATS);
352 1.1 rvb return(0);
353 1.1 rvb }
354 1.1 rvb }
355 1.1 rvb
356 1.1 rvb error = venus_root(vftomi(vfsp), p->p_cred->pc_ucred, p, &VFid);
357 1.1 rvb
358 1.1 rvb if (!error) {
359 1.1 rvb /*
360 1.1 rvb * Save the new rootfid in the cnode, and rehash the cnode into the
361 1.1 rvb * cnode hash with the new fid key.
362 1.1 rvb */
363 1.3 rvb coda_unsave(VTOC(mi->mi_rootvp));
364 1.1 rvb VTOC(mi->mi_rootvp)->c_fid = VFid;
365 1.3 rvb coda_save(VTOC(mi->mi_rootvp));
366 1.1 rvb
367 1.1 rvb *vpp = mi->mi_rootvp;
368 1.1 rvb vref(*vpp);
369 1.2 rvb vn_lock(*vpp, LK_EXCLUSIVE);
370 1.3 rvb MARK_INT_SAT(CODA_ROOT_STATS);
371 1.1 rvb goto exit;
372 1.6 rvb } else if (error == ENODEV || error == EINTR) {
373 1.1 rvb /* Gross hack here! */
374 1.1 rvb /*
375 1.3 rvb * If Venus fails to respond to the CODA_ROOT call, coda_call returns
376 1.1 rvb * ENODEV. Return the uninitialized root vnode to allow vfs
377 1.1 rvb * operations such as unmount to continue. Without this hack,
378 1.1 rvb * there is no way to do an unmount if Venus dies before a
379 1.3 rvb * successful CODA_ROOT call is done. All vnode operations
380 1.1 rvb * will fail.
381 1.1 rvb */
382 1.1 rvb *vpp = mi->mi_rootvp;
383 1.1 rvb vref(*vpp);
384 1.2 rvb vn_lock(*vpp, LK_EXCLUSIVE);
385 1.3 rvb MARK_INT_FAIL(CODA_ROOT_STATS);
386 1.1 rvb error = 0;
387 1.1 rvb goto exit;
388 1.1 rvb } else {
389 1.3 rvb CODADEBUG( CODA_ROOT, myprintf(("error %d in CODA_ROOT\n", error)); );
390 1.3 rvb MARK_INT_FAIL(CODA_ROOT_STATS);
391 1.1 rvb
392 1.1 rvb goto exit;
393 1.1 rvb }
394 1.1 rvb exit:
395 1.1 rvb return(error);
396 1.1 rvb }
397 1.1 rvb
398 1.1 rvb int
399 1.3 rvb coda_quotactl(vfsp, cmd, uid, arg, p)
400 1.1 rvb struct mount *vfsp;
401 1.1 rvb int cmd;
402 1.1 rvb uid_t uid;
403 1.1 rvb caddr_t arg;
404 1.1 rvb struct proc *p;
405 1.1 rvb {
406 1.1 rvb ENTRY;
407 1.1 rvb return (EOPNOTSUPP);
408 1.1 rvb }
409 1.1 rvb
410 1.1 rvb /*
411 1.1 rvb * Get file system statistics.
412 1.1 rvb */
413 1.1 rvb int
414 1.3 rvb coda_nb_statfs(vfsp, sbp, p)
415 1.1 rvb register struct mount *vfsp;
416 1.1 rvb struct statfs *sbp;
417 1.1 rvb struct proc *p;
418 1.1 rvb {
419 1.1 rvb ENTRY;
420 1.3 rvb /* MARK_ENTRY(CODA_STATFS_STATS); */
421 1.3 rvb if (!CODA_MOUNTED(vfsp)) {
422 1.3 rvb /* MARK_INT_FAIL(CODA_STATFS_STATS);*/
423 1.1 rvb return(EINVAL);
424 1.1 rvb }
425 1.1 rvb
426 1.1 rvb bzero(sbp, sizeof(struct statfs));
427 1.1 rvb /* XXX - what to do about f_flags, others? --bnoble */
428 1.1 rvb /* Below This is what AFS does
429 1.1 rvb #define NB_SFS_SIZ 0x895440
430 1.1 rvb */
431 1.1 rvb /* Note: Normal fs's have a bsize of 0x400 == 1024 */
432 1.1 rvb sbp->f_type = 0;
433 1.1 rvb sbp->f_bsize = 8192; /* XXX */
434 1.1 rvb sbp->f_iosize = 8192; /* XXX */
435 1.1 rvb #define NB_SFS_SIZ 0x8AB75D
436 1.1 rvb sbp->f_blocks = NB_SFS_SIZ;
437 1.1 rvb sbp->f_bfree = NB_SFS_SIZ;
438 1.1 rvb sbp->f_bavail = NB_SFS_SIZ;
439 1.1 rvb sbp->f_files = NB_SFS_SIZ;
440 1.1 rvb sbp->f_ffree = NB_SFS_SIZ;
441 1.1 rvb bcopy((caddr_t)&(vfsp->mnt_stat.f_fsid), (caddr_t)&(sbp->f_fsid), sizeof (fsid_t));
442 1.3 rvb strncpy(sbp->f_fstypename, MOUNT_CODA, MFSNAMELEN-1);
443 1.1 rvb strcpy(sbp->f_mntonname, "/coda");
444 1.3 rvb strcpy(sbp->f_mntfromname, "CODA");
445 1.3 rvb /* MARK_INT_SAT(CODA_STATFS_STATS); */
446 1.1 rvb return(0);
447 1.1 rvb }
448 1.1 rvb
449 1.1 rvb /*
450 1.1 rvb * Flush any pending I/O.
451 1.1 rvb */
452 1.1 rvb int
453 1.3 rvb coda_sync(vfsp, waitfor, cred, p)
454 1.1 rvb struct mount *vfsp;
455 1.1 rvb int waitfor;
456 1.1 rvb struct ucred *cred;
457 1.1 rvb struct proc *p;
458 1.1 rvb {
459 1.1 rvb ENTRY;
460 1.3 rvb MARK_ENTRY(CODA_SYNC_STATS);
461 1.3 rvb MARK_INT_SAT(CODA_SYNC_STATS);
462 1.1 rvb return(0);
463 1.1 rvb }
464 1.1 rvb
465 1.1 rvb int
466 1.3 rvb coda_vget(vfsp, ino, vpp)
467 1.1 rvb struct mount *vfsp;
468 1.1 rvb ino_t ino;
469 1.1 rvb struct vnode **vpp;
470 1.1 rvb {
471 1.1 rvb ENTRY;
472 1.1 rvb return (EOPNOTSUPP);
473 1.1 rvb }
474 1.1 rvb
475 1.1 rvb /*
476 1.1 rvb * fhtovp is now what vget used to be in 4.3-derived systems. For
477 1.1 rvb * some silly reason, vget is now keyed by a 32 bit ino_t, rather than
478 1.1 rvb * a type-specific fid.
479 1.1 rvb */
480 1.1 rvb int
481 1.3 rvb coda_fhtovp(vfsp, fhp, nam, vpp, exflagsp, creadanonp)
482 1.1 rvb register struct mount *vfsp;
483 1.1 rvb struct fid *fhp;
484 1.1 rvb struct mbuf *nam;
485 1.1 rvb struct vnode **vpp;
486 1.1 rvb int *exflagsp;
487 1.1 rvb struct ucred **creadanonp;
488 1.1 rvb {
489 1.1 rvb struct cfid *cfid = (struct cfid *)fhp;
490 1.1 rvb struct cnode *cp = 0;
491 1.1 rvb int error;
492 1.1 rvb struct proc *p = curproc; /* XXX -mach */
493 1.1 rvb ViceFid VFid;
494 1.1 rvb int vtype;
495 1.1 rvb
496 1.1 rvb ENTRY;
497 1.1 rvb
498 1.3 rvb MARK_ENTRY(CODA_VGET_STATS);
499 1.1 rvb /* Check for vget of control object. */
500 1.1 rvb if (IS_CTL_FID(&cfid->cfid_fid)) {
501 1.3 rvb *vpp = coda_ctlvp;
502 1.3 rvb vref(coda_ctlvp);
503 1.3 rvb MARK_INT_SAT(CODA_VGET_STATS);
504 1.1 rvb return(0);
505 1.1 rvb }
506 1.1 rvb
507 1.1 rvb error = venus_fhtovp(vftomi(vfsp), &cfid->cfid_fid, p->p_cred->pc_ucred, p, &VFid, &vtype);
508 1.1 rvb
509 1.1 rvb if (error) {
510 1.3 rvb CODADEBUG(CODA_VGET, myprintf(("vget error %d\n",error));)
511 1.1 rvb *vpp = (struct vnode *)0;
512 1.1 rvb } else {
513 1.3 rvb CODADEBUG(CODA_VGET,
514 1.1 rvb myprintf(("vget: vol %lx vno %lx uni %lx type %d result %d\n",
515 1.1 rvb VFid.Volume, VFid.Vnode, VFid.Unique, vtype, error)); )
516 1.1 rvb
517 1.3 rvb cp = make_coda_node(&VFid, vfsp, vtype);
518 1.1 rvb *vpp = CTOV(cp);
519 1.1 rvb }
520 1.1 rvb return(error);
521 1.1 rvb }
522 1.1 rvb
523 1.1 rvb int
524 1.3 rvb coda_vptofh(vnp, fidp)
525 1.1 rvb struct vnode *vnp;
526 1.1 rvb struct fid *fidp;
527 1.1 rvb {
528 1.1 rvb ENTRY;
529 1.1 rvb return (EOPNOTSUPP);
530 1.1 rvb }
531 1.1 rvb
532 1.1 rvb void
533 1.3 rvb coda_init(void)
534 1.1 rvb {
535 1.1 rvb ENTRY;
536 1.1 rvb }
537 1.1 rvb
538 1.1 rvb int
539 1.3 rvb coda_sysctl(name, namelen, oldp, oldlp, newp, newl, p)
540 1.1 rvb int *name;
541 1.1 rvb u_int namelen;
542 1.1 rvb void *oldp;
543 1.1 rvb size_t *oldlp;
544 1.1 rvb void *newp;
545 1.1 rvb size_t newl;
546 1.1 rvb struct proc *p;
547 1.1 rvb {
548 1.1 rvb
549 1.1 rvb /* all sysctl names at this level are terminal */
550 1.1 rvb if (namelen != 1)
551 1.1 rvb return (ENOTDIR); /* overloaded */
552 1.1 rvb
553 1.1 rvb switch (name[0]) {
554 1.1 rvb /*
555 1.1 rvb case FFS_CLUSTERREAD:
556 1.1 rvb return (sysctl_int(oldp, oldlp, newp, newl, &doclusterread));
557 1.1 rvb */
558 1.1 rvb default:
559 1.1 rvb return (EOPNOTSUPP);
560 1.1 rvb }
561 1.1 rvb /* NOTREACHED */
562 1.1 rvb }
563 1.1 rvb
564 1.1 rvb /*
565 1.1 rvb * To allow for greater ease of use, some vnodes may be orphaned when
566 1.1 rvb * Venus dies. Certain operations should still be allowed to go
567 1.1 rvb * through, but without propagating ophan-ness. So this function will
568 1.1 rvb * get a new vnode for the file from the current run of Venus. */
569 1.1 rvb
570 1.1 rvb int
571 1.1 rvb getNewVnode(vpp)
572 1.1 rvb struct vnode **vpp;
573 1.1 rvb {
574 1.1 rvb struct cfid cfid;
575 1.3 rvb struct coda_mntinfo *mi = vftomi((*vpp)->v_mount);
576 1.1 rvb
577 1.1 rvb ENTRY;
578 1.1 rvb
579 1.1 rvb cfid.cfid_len = (short)sizeof(ViceFid);
580 1.1 rvb cfid.cfid_fid = VTOC(*vpp)->c_fid; /* Structure assignment. */
581 1.1 rvb /* XXX ? */
582 1.1 rvb
583 1.1 rvb /* We're guessing that if set, the 1st element on the list is a
584 1.1 rvb * valid vnode to use. If not, return ENODEV as venus is dead.
585 1.1 rvb */
586 1.1 rvb if (mi->mi_vfsp == NULL)
587 1.1 rvb return ENODEV;
588 1.1 rvb
589 1.3 rvb return coda_fhtovp(mi->mi_vfsp, (struct fid*)&cfid, NULL, vpp,
590 1.1 rvb NULL, NULL);
591 1.1 rvb }
592 1.1 rvb
593 1.1 rvb #include <ufs/ufs/quota.h>
594 1.1 rvb #include <ufs/ufs/ufsmount.h>
595 1.1 rvb /* get the mount structure corresponding to a given device. Assume
596 1.1 rvb * device corresponds to a UFS. Return NULL if no device is found.
597 1.1 rvb */
598 1.1 rvb struct mount *devtomp(dev)
599 1.1 rvb dev_t dev;
600 1.1 rvb {
601 1.1 rvb struct mount *mp, *nmp;
602 1.1 rvb
603 1.1 rvb for (mp = mountlist.cqh_first; mp != (void*)&mountlist; mp = nmp) {
604 1.1 rvb nmp = mp->mnt_list.cqe_next;
605 1.2 rvb if ((!strcmp(mp->mnt_op->vfs_name, MOUNT_UFS)) &&
606 1.1 rvb ((VFSTOUFS(mp))->um_dev == (dev_t) dev)) {
607 1.1 rvb /* mount corresponds to UFS and the device matches one we want */
608 1.1 rvb return(mp);
609 1.1 rvb }
610 1.1 rvb }
611 1.1 rvb /* mount structure wasn't found */
612 1.1 rvb return(NULL);
613 1.1 rvb }
614