efe15c003e72ab4d1ed90f9f140d635078e67d0c
[openafs.git] / src / afs / NBSD / osi_vfsops.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * osi_vfsops.c for DUX
12  */
13 #include <afsconfig.h>
14 #include "../afs/param.h"
15
16 RCSID("$Header$");
17
18 #include "../afs/sysincludes.h" /* Standard vendor system headers */
19 #include "../afs/afsincludes.h" /* Afs-based standard headers */
20 #include "../afs/afs_stats.h"   /* statistics stuff */
21 #include <sys/types.h>
22 #include <kern/mach_param.h>
23 #include <sys/sysconfig.h>
24 #include <sys/systm.h>
25 #include <sys/resource.h>
26 #include <sys/errno.h>
27 #include <sys/conf.h>
28 #include <machine/machlimits.h>
29
30
31 struct vcache *afs_globalVp = 0;
32 struct mount *afs_globalVFS = 0;
33
34 static u_char afs_mntid;
35 int afs_vfsdev = 0;
36 udecl_simple_lock_data(, afsmntid_lock)
37 #define AFSMNTID_LOCK()         usimple_lock(&afsmntid_lock)
38 #define AFSMNTID_UNLOCK()       usimple_unlock(&afsmntid_lock)
39 #define AFSMNTID_LOCK_INIT()    usimple_lock_init(&afsmntid_lock)
40
41
42 int mp_afs_mount(struct mount *afsp,char * path, caddr_t data,
43                  struct nameidata *ndp)
44 {
45     u_int size;
46
47     fsid_t tfsid;
48     struct mount *xmp, *getvfs();
49     int code;
50
51     AFS_GLOCK();
52     AFS_STATCNT(afs_mount);
53
54     if (afs_globalVFS) { /* Don't allow remounts. */
55         AFS_GUNLOCK();
56         return (EBUSY);
57     }
58
59     afs_globalVFS = afsp;
60     afsp->vfs_bsize = 8192;
61 /*
62  * Generate a unique afs mount i.d. ( see nfs_mount() ).
63  */
64     afsp->m_stat.f_fsid.val[0] = makedev(130, 0);
65     afsp->m_stat.f_fsid.val[1] = MOUNT_AFS;
66     AFSMNTID_LOCK();
67     if (++afs_mntid == 0)
68         ++afs_mntid;
69     AFSMNTID_UNLOCK();
70     BM(AFSMNTID_LOCK());
71     tfsid.val[0] = makedev(130, afs_mntid);
72     tfsid.val[1] = MOUNT_AFS;
73     BM(AFSMNTID_UNLOCK());
74
75     while (xmp = getvfs(&tfsid)) {
76         UNMOUNT_READ_UNLOCK(xmp);
77         tfsid.val[0]++;
78         AFSMNTID_LOCK();
79         afs_mntid++;
80         AFSMNTID_UNLOCK();
81     }
82     if (major(tfsid.val[0]) != 130) {
83         AFS_GUNLOCK();
84         return (ENOENT);
85     }
86     afsp->m_stat.f_fsid.val[0] = tfsid.val[0];
87
88     afsp->m_stat.f_mntonname = AFS_KALLOC(MNAMELEN);
89     afsp->m_stat.f_mntfromname = AFS_KALLOC(MNAMELEN); 
90     if ( !afsp->m_stat.f_mntonname || !afsp->m_stat.f_mntfromname)
91         panic("malloc failure in afs_mount\n");
92
93     memset(afsp->m_stat.f_mntonname, 0, MNAMELEN);
94     memset(afsp->m_stat.f_mntfromname, 0, MNAMELEN);
95     AFS_COPYINSTR(path, (caddr_t)afsp->m_stat.f_mntonname, MNAMELEN, &size, code);
96     memcpy(afsp->m_stat.f_mntfromname, "AFS", 4);
97     AFS_GUNLOCK();
98     (void) mp_afs_statfs(afsp);
99     AFS_GLOCK();
100     afs_vfsdev = afsp->m_stat.f_fsid.val[0];
101
102 #ifndef AFS_NONFSTRANS
103     /* Set up the xlator in case it wasn't done elsewhere */
104     afs_xlatorinit_v2();
105     afs_xlatorinit_v3();
106 #endif
107     AFS_GUNLOCK();
108     return 0;
109 }
110
111
112 int mp_afs_unmount (struct mount *afsp, int flag)
113 {
114     AFS_GLOCK();
115     AFS_STATCNT(afs_unmount);
116     afs_globalVFS = 0;
117     afs_shutdown();
118     AFS_GUNLOCK();
119     return 0;
120 }
121
122
123 int mp_afs_start(struct mount *mp, int flags)
124 {
125     return(0);
126 }
127
128 int mp_afs_root (struct mount *afsp, struct vnode **avpp)
129 {
130     register afs_int32 code = 0;
131     struct vrequest treq;
132     register struct vcache *tvp=0;
133
134     AFS_GLOCK();
135     AFS_STATCNT(afs_root);
136     if (afs_globalVp && (afs_globalVp->states & CStatd)) {
137         tvp = afs_globalVp;
138     } else {
139         if (afs_globalVp) {
140             afs_PutVCache(afs_globalVp);
141             afs_globalVp = NULL;
142         }
143
144         if (!(code = afs_InitReq(&treq, cred)) &&
145             !(code = afs_CheckInit())) {
146             tvp = afs_GetVCache(&afs_rootFid, &treq, (afs_int32 *)0,
147                                 (struct vcache*)0, WRITE_LOCK);
148             /* we really want this to stay around */
149             if (tvp) {
150                 afs_globalVp = tvp;
151             } else
152                 code = ENOENT;
153         }
154     }
155     if (tvp) {
156         AFS_GUNLOCK();
157         VN_HOLD((struct vnode *)tvp);
158         VN_LOCK((struct vnode *)tvp);
159         tvp->v.v_flag |= VROOT;     /* No-op on Ultrix 2.2 */
160         VN_UNLOCK((struct vnode *)tvp);
161         AFS_GLOCK();
162
163         afs_globalVFS = afsp;
164         *avpp = (struct vnode *) tvp;
165     }
166
167     afs_Trace2(afs_iclSetp, CM_TRACE_VFSROOT, ICL_TYPE_POINTER, *avpp,
168                ICL_TYPE_INT32, code);
169     AFS_GUNLOCK();
170     return code;
171 }
172
173
174 mp_afs_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg)
175 {
176     return EOPNOTSUPP;
177 }
178
179 int mp_afs_statfs(struct mount *afsp)
180 {
181     struct nstatfs *abp = &afsp->m_stat;
182
183     AFS_GLOCK();
184     AFS_STATCNT(afs_statfs);
185
186     abp->f_type = MOUNT_AFS;
187     abp->f_bsize = afsp->vfs_bsize;
188
189     /* Fake a high number below to satisfy programs that use the statfs call
190      * to make sure that there's enough space in the device partition before
191      * storing something there.
192      */
193     abp->f_blocks = abp->f_bfree = abp->f_bavail = abp->f_files =
194         abp->f_ffree  = 2000000;
195     abp->f_fsize = 1024;
196
197     abp->f_fsid.val[0] = afsp->m_stat.f_fsid.val[0];
198     abp->f_fsid.val[1] = afsp->m_stat.f_fsid.val[1];
199
200     AFS_GUNLOCK();
201     return 0;
202 }
203
204
205 int mp_afs_sync(struct mount *mp, int flags)
206 {
207     AFS_STATCNT(afs_sync);
208     return 0;
209 }
210
211
212 int mp_afs_fhtovp(struct mount *afsp, struct fid *fidp, struct vnode **avcp)
213 {
214     struct vrequest treq;
215     register code = 0;
216
217     AFS_GLOCK();
218     AFS_STATCNT(afs_vget);
219
220     *avcp = NULL;
221
222     if ((code = afs_InitReq(&treq, cred)) == 0) {
223         code = afs_osi_vget((struct vcache**)avcp, fidp, &treq);
224     }
225
226     afs_Trace3(afs_iclSetp, CM_TRACE_VGET, ICL_TYPE_POINTER, *avcp,
227                ICL_TYPE_INT32, treq.uid, ICL_TYPE_FID, fidp);
228
229     code = afs_CheckCode(code, &treq, 42);
230     AFS_GUNLOCK();
231     return code;
232 }
233
234
235 /*
236  *  afs_vptofh
237  * 
238  * afs_vptofh can return two flavors of NFS fid, depending on if submounts are
239  * allowed. The reason for this is that we can't guarantee that we found all 
240  * the entry points any OS might use to get the fid for the NFS mountd.
241  * Hence we return a "magic" fid for all but /afs. If it goes through the
242  * translator code, it will get transformed into a SmallFid that we recognize.
243  * So, if submounts are disallowed, and an NFS client tries a submount, it will
244  * get a fid which we don't recognize and the mount will either fail or we
245  * will ignore subsequent requests for that mount.
246  *
247  * The Alpha fid is organized differently than for other platforms. Their
248  * intention was to have the data portion of the fid aligned on a 4 byte
249  * boundary. To do so, the fid is organized as:
250  * u_short reserved
251  * u_short len
252  * char data[8]
253  * The len field is the length of the entire fid, from reserved through data.
254  * This length is used by fid_copy to include copying the reserved field. 
255  * Alpha's zero the reserved field before handing us the fid, but they use
256  * it in fid_cmp. We use the reserved field to store the 16 bits of the Vnode.
257  *
258  * Note that the SmallFid only allows for 8 bits of the cell index and
259  * 16 bits of the vnode. 
260  */
261
262 #define AFS_FIDDATASIZE 8
263 #define AFS_SIZEOFSMALLFID 12 /* full size of fid, including len field */
264 extern int afs_NFSRootOnly; /* 1 => only allow NFS mounts of /afs. */
265 int afs_fid_vnodeoverflow=0, afs_fid_uniqueoverflow=0;
266
267 int mp_afs_vptofh(struct vnode *avn, struct fid *fidp)
268 {
269     struct SmallFid Sfid;
270     long addr[2];
271     register struct cell *tcell;
272     int rootvp = 0;
273     struct vcache *avc = VTOAFS(avn);
274
275     AFS_GLOCK();
276     AFS_STATCNT(afs_fid);
277
278     if (afs_shuttingdown) {
279         AFS_GUNLOCK();
280         return EIO;
281     }
282
283     if (afs_NFSRootOnly && (avc == afs_globalVp)) rootvp = 1;
284     if (!afs_NFSRootOnly || rootvp) {
285         tcell = afs_GetCell(avc->fid.Cell, READ_LOCK);
286         Sfid.Volume = avc->fid.Fid.Volume;
287         fidp->fid_reserved = avc->fid.Fid.Vnode;
288         Sfid.CellAndUnique = ((tcell->cellIndex << 24) +
289                               (avc->fid.Fid.Unique & 0xffffff));
290         afs_PutCell(tcell, READ_LOCK);
291         if (avc->fid.Fid.Vnode > 0xffff)
292             afs_fid_vnodeoverflow++;
293         if (avc->fid.Fid.Unique > 0xffffff)
294             afs_fid_uniqueoverflow++;
295     } else {
296         fidp->fid_reserved = AFS_XLATOR_MAGIC;
297         addr[0] = (long)avc;
298         AFS_GUNLOCK();
299         VN_HOLD((struct vnode *)avc);
300         AFS_GLOCK();
301     }
302
303     /* Use the fid pointer passed to us. */
304     fidp->fid_len = AFS_SIZEOFSMALLFID;
305     if (afs_NFSRootOnly) {
306         if (rootvp) {
307             memcpy(fidp->fid_data, (caddr_t)&Sfid, AFS_FIDDATASIZE);   
308         } else {
309             memcpy(fidp->fid_data, (caddr_t)addr, AFS_FIDDATASIZE);   
310         }
311     } else {
312         memcpy(fidp->fid_data, (caddr_t)&Sfid, AFS_FIDDATASIZE);   
313     }
314     AFS_GUNLOCK();
315     return 0;
316 }
317
318
319 int mp_Afs_init(void); /* vfs_init - defined below */
320
321
322 /* This is only called by vfs_mount when afs is going to be mounted as root.
323  * Since we don't support diskless clients we shouldn't come here.
324  */
325 int afsmountroot=0;
326 int mp_afs_mountroot(struct mount *afsp, struct vnode **vp)
327 {
328     AFS_GLOCK();
329     AFS_STATCNT(afs_mountroot);
330     afsmountroot++;
331     AFS_GUNLOCK();
332     return EINVAL;
333 }
334
335
336 /* It's called to setup swapping over the net for diskless clients; again
337  * not for us.
338  */
339 int afsswapvp=0;
340 int mp_afs_swapvp(void)
341 {
342     AFS_GLOCK();
343     AFS_STATCNT(afs_swapvp);
344     afsswapvp++;
345     AFS_GUNLOCK();
346     return EINVAL;
347 }
348
349
350 struct vfsops afs_vfsops = {
351     mp_afs_mount,
352     mp_afs_start,
353     mp_afs_unmount,
354     mp_afs_root,
355     mp_afs_quotactl,
356     mp_afs_statfs,
357     mp_afs_sync,
358     mp_afs_fhtovp,      /* afs_vget */
359     mp_afs_vptofh,
360     mp_Afs_init,
361     mp_afs_mountroot,
362     mp_afs_swapvp
363 };
364
365
366 /*
367  * System Call Entry Points
368  */
369 #define NULL_FUNC          (int (*)(int))0
370
371 int     (*afs_syscall_func)() = NULL_FUNC;
372 int     (*afs_xsetgroups_func)() = NULL_FUNC;
373 int     (*afs_xioctl_func)() = NULL_FUNC;
374
375 afssyscall(p, args, retval)
376     struct proc *p;
377     void *args;
378     long *retval;
379 {
380     int     (*func)();
381     int code;
382
383     AFS_GLOCK();
384     func = afs_syscall_func;
385     if (func == NULL_FUNC) {
386         code = nosys(p, args, retval);
387     } else {
388         code = (*func)(p, args, retval);
389     }
390     AFS_GUNLOCK();
391     return code;
392 }
393
394 afsxsetgroups(p, args, retval)
395     struct proc *p;
396     void *args;
397     long *retval;
398 {
399     int     (*func)();
400     int code;
401
402     AFS_GLOCK();
403     func = afs_xsetgroups_func;
404     if (func == NULL_FUNC) {
405         code = nosys(p, args, retval);
406     } else {
407         code = (*func)(p, args, retval);
408     }
409     AFS_GUNLOCK();
410     return code;
411 }
412
413 afsxioctl(p, args, retval)
414     struct proc *p;
415     void *args;
416     long *retval;
417 {
418     int     (*func)();
419     int code;
420
421     AFS_GLOCK();
422     func = afs_xioctl_func;
423     if (func == NULL_FUNC) {
424         code = nosys(p, args, retval);
425     } else {
426         code = (*func)(p, args, retval);
427     }
428     AFS_GUNLOCK();
429     return code;
430 }
431
432
433 /*
434  * VFS initialization and unload
435  */
436
437 afs_unconfig()
438 {
439     return EBUSY;
440 }
441
442
443 cfg_subsys_attr_t afs_attributes[]  = {
444     {"", 0, 0, 0, 0, 0, 0}      /* must be the last element */
445 };
446
447 afs_configure(cfg_op_t op, caddr_t indata, size_t indata_size, caddr_t outdata, size_t outdata_size)
448 {
449     cfg_attr_t  *attributes;
450     int ret = ESUCCESS;
451     int i, j, size;
452     caddr_t p;
453
454     switch (op) {
455     case CFG_OP_CONFIGURE:
456         /*
457          * The indata parameter is a list of attributes to be configured, and 
458          * indata_size is the count of attributes.
459          */
460         if ((ret = vfssw_add_fsname(MOUNT_AFS, &afs_vfsops, "afs")) != 0)
461             return(ret);
462         break;
463     case CFG_OP_UNCONFIGURE:
464         if ((ret = afs_unconfig()) != 0)
465             return(ret);
466         break;
467     default:
468         ret = EINVAL;
469         break;
470     }
471     return ret;
472 }
473
474
475 int mp_Afs_init(void)
476 {
477     extern int Afs_xsetgroups(), afs_xioctl(), afs3_syscall();
478     
479     AFS_GLOCK();
480     sysent[AFS_SYSCALL].sy_call = afs3_syscall;
481     sysent[AFS_SYSCALL].sy_parallel = 0;
482     sysent[AFS_SYSCALL].sy_narg = 6;
483     sysent[SYS_setgroups].sy_call = Afs_xsetgroups;
484     afs_xioctl_func = afsxioctl;    
485     afs_xsetgroups_func = afsxsetgroups;
486     afs_syscall_func = afssyscall;
487     AFS_GUNLOCK();
488
489     return 0;
490 }