convert-from-bsd-to-posix-string-and-memory-functions-20010807
[openafs.git] / src / afs / DUX / 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 (!(code = afs_InitReq(&treq, u.u_cred)) &&
140             !(code = afs_CheckInit())) {
141             tvp = afs_GetVCache(&afs_rootFid, &treq, (afs_int32 *)0,
142                                 (struct vcache*)0, WRITE_LOCK);
143             /* we really want this to stay around */
144             if (tvp) {
145                 afs_globalVp = tvp;
146             } else
147                 code = ENOENT;
148         }
149     }
150     if (tvp) {
151         AFS_GUNLOCK();
152         VN_HOLD((struct vnode *)tvp);
153         VN_LOCK((struct vnode *)tvp);
154         tvp->v.v_flag |= VROOT;     /* No-op on Ultrix 2.2 */
155         VN_UNLOCK((struct vnode *)tvp);
156         AFS_GLOCK();
157
158         afs_globalVFS = afsp;
159         *avpp = (struct vnode *) tvp;
160     }
161
162     afs_Trace2(afs_iclSetp, CM_TRACE_VFSROOT, ICL_TYPE_POINTER, *avpp,
163                ICL_TYPE_INT32, code);
164     AFS_GUNLOCK();
165     return code;
166 }
167
168
169 mp_afs_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg)
170 {
171     return EOPNOTSUPP;
172 }
173
174 int mp_afs_statfs(struct mount *afsp)
175 {
176     struct nstatfs *abp = &afsp->m_stat;
177
178     AFS_GLOCK();
179     AFS_STATCNT(afs_statfs);
180
181     abp->f_type = MOUNT_AFS;
182     abp->f_bsize = afsp->vfs_bsize;
183
184     /* Fake a high number below to satisfy programs that use the statfs call
185      * to make sure that there's enough space in the device partition before
186      * storing something there.
187      */
188     abp->f_blocks = abp->f_bfree = abp->f_bavail = abp->f_files =
189         abp->f_ffree  = 2000000;
190     abp->f_fsize = 1024;
191
192     abp->f_fsid.val[0] = afsp->m_stat.f_fsid.val[0];
193     abp->f_fsid.val[1] = afsp->m_stat.f_fsid.val[1];
194
195     AFS_GUNLOCK();
196     return 0;
197 }
198
199
200 int mp_afs_sync(struct mount *mp, int flags)
201 {
202     AFS_STATCNT(afs_sync);
203     return 0;
204 }
205
206
207 #ifdef AFS_DUX50_ENV
208 int mp_afs_smoothsync(struct mount *mp, u_int age, u_int smsync_flag)
209 {
210     AFS_STATCNT(afs_sync);
211     return 0;
212 }
213 #endif
214
215 int mp_afs_fhtovp(struct mount *afsp, struct fid *fidp, struct vnode **avcp)
216 {
217     struct vrequest treq;
218     register code = 0;
219
220     AFS_GLOCK();
221     AFS_STATCNT(afs_vget);
222
223     *avcp = NULL;
224
225     if ((code = afs_InitReq(&treq, u.u_cred)) == 0) {
226         code = afs_osi_vget((struct vcache**)avcp, fidp, &treq);
227     }
228
229     afs_Trace3(afs_iclSetp, CM_TRACE_VGET, ICL_TYPE_POINTER, *avcp,
230                ICL_TYPE_INT32, treq.uid, ICL_TYPE_FID, fidp);
231
232     code = afs_CheckCode(code, &treq, 42);
233     AFS_GUNLOCK();
234     return code;
235 }
236
237
238 /*
239  *  afs_vptofh
240  * 
241  * afs_vptofh can return two flavors of NFS fid, depending on if submounts are
242  * allowed. The reason for this is that we can't guarantee that we found all 
243  * the entry points any OS might use to get the fid for the NFS mountd.
244  * Hence we return a "magic" fid for all but /afs. If it goes through the
245  * translator code, it will get transformed into a SmallFid that we recognize.
246  * So, if submounts are disallowed, and an NFS client tries a submount, it will
247  * get a fid which we don't recognize and the mount will either fail or we
248  * will ignore subsequent requests for that mount.
249  *
250  * The Alpha fid is organized differently than for other platforms. Their
251  * intention was to have the data portion of the fid aligned on a 4 byte
252  * boundary. To do so, the fid is organized as:
253  * u_short reserved
254  * u_short len
255  * char data[8]
256  * The len field is the length of the entire fid, from reserved through data.
257  * This length is used by fid_copy to include copying the reserved field. 
258  * Alpha's zero the reserved field before handing us the fid, but they use
259  * it in fid_cmp. We use the reserved field to store the 16 bits of the Vnode.
260  *
261  * Note that the SmallFid only allows for 8 bits of the cell index and
262  * 16 bits of the vnode. 
263  */
264
265 #define AFS_FIDDATASIZE 8
266 #define AFS_SIZEOFSMALLFID 12 /* full size of fid, including len field */
267 extern int afs_NFSRootOnly; /* 1 => only allow NFS mounts of /afs. */
268 int afs_fid_vnodeoverflow=0, afs_fid_uniqueoverflow=0;
269
270 int mp_afs_vptofh(struct vnode *avn, struct fid *fidp)
271 {
272     struct SmallFid Sfid;
273     long addr[2];
274     register struct cell *tcell;
275     int rootvp = 0;
276     struct vcache *avc = (struct vcache *)avn;
277
278     AFS_GLOCK();
279     AFS_STATCNT(afs_fid);
280
281     if (afs_shuttingdown) {
282         AFS_GUNLOCK();
283         return EIO;
284     }
285
286     if (afs_NFSRootOnly && (avc == afs_globalVp)) rootvp = 1;
287     if (!afs_NFSRootOnly || rootvp) {
288         tcell = afs_GetCell(avc->fid.Cell, READ_LOCK);
289         Sfid.Volume = avc->fid.Fid.Volume;
290         fidp->fid_reserved = avc->fid.Fid.Vnode;
291         Sfid.CellAndUnique = ((tcell->cellIndex << 24) +
292                               (avc->fid.Fid.Unique & 0xffffff));
293         afs_PutCell(tcell, READ_LOCK);
294         if (avc->fid.Fid.Vnode > 0xffff)
295             afs_fid_vnodeoverflow++;
296         if (avc->fid.Fid.Unique > 0xffffff)
297             afs_fid_uniqueoverflow++;
298     } else {
299         fidp->fid_reserved = AFS_XLATOR_MAGIC;
300         addr[0] = (long)avc;
301         AFS_GUNLOCK();
302         VN_HOLD((struct vnode *)avc);
303         AFS_GLOCK();
304     }
305
306     /* Use the fid pointer passed to us. */
307     fidp->fid_len = AFS_SIZEOFSMALLFID;
308     if (afs_NFSRootOnly) {
309         if (rootvp) {
310             memcpy(fidp->fid_data, (caddr_t)&Sfid, AFS_FIDDATASIZE);   
311         } else {
312             memcpy(fidp->fid_data, (caddr_t)addr, AFS_FIDDATASIZE);   
313         }
314     } else {
315         memcpy(fidp->fid_data, (caddr_t)&Sfid, AFS_FIDDATASIZE);   
316     }
317     AFS_GUNLOCK();
318     return 0;
319 }
320
321
322 int mp_Afs_init(void); /* vfs_init - defined below */
323
324
325 /* This is only called by vfs_mount when afs is going to be mounted as root.
326  * Since we don't support diskless clients we shouldn't come here.
327  */
328 int afsmountroot=0;
329 int mp_afs_mountroot(struct mount *afsp, struct vnode **vp)
330 {
331     AFS_GLOCK();
332     AFS_STATCNT(afs_mountroot);
333     afsmountroot++;
334     AFS_GUNLOCK();
335     return EINVAL;
336 }
337
338
339 /* It's called to setup swapping over the net for diskless clients; again
340  * not for us.
341  */
342 int afsswapvp=0;
343 int mp_afs_swapvp(void)
344 {
345     AFS_GLOCK();
346     AFS_STATCNT(afs_swapvp);
347     afsswapvp++;
348     AFS_GUNLOCK();
349     return EINVAL;
350 }
351
352
353 struct vfsops afs_vfsops = {
354     mp_afs_mount,
355     mp_afs_start,
356     mp_afs_unmount,
357     mp_afs_root,
358     mp_afs_quotactl,
359     mp_afs_statfs,
360     mp_afs_sync,
361     mp_afs_fhtovp,      /* afs_vget */
362     mp_afs_vptofh,
363     mp_Afs_init,
364     mp_afs_mountroot,
365     mp_afs_swapvp,
366 #ifdef AFS_DUX50_ENV
367     mp_afs_smoothsync
368 #endif
369 };
370
371
372 /*
373  * System Call Entry Points
374  */
375 #define NULL_FUNC          (int (*)(int))0
376
377 int     (*afs_syscall_func)() = NULL_FUNC;
378 int     (*afs_xsetgroups_func)() = NULL_FUNC;
379 int     (*afs_xioctl_func)() = NULL_FUNC;
380
381 afssyscall(p, args, retval)
382     struct proc *p;
383     void *args;
384     long *retval;
385 {
386     int     (*func)();
387     int code;
388
389     AFS_GLOCK();
390     func = afs_syscall_func;
391     if (func == NULL_FUNC) {
392         code = nosys(p, args, retval);
393     } else {
394         code = (*func)(p, args, retval);
395     }
396     AFS_GUNLOCK();
397     return code;
398 }
399
400 afsxsetgroups(p, args, retval)
401     struct proc *p;
402     void *args;
403     long *retval;
404 {
405     int     (*func)();
406     int code;
407
408     AFS_GLOCK();
409     func = afs_xsetgroups_func;
410     if (func == NULL_FUNC) {
411         code = nosys(p, args, retval);
412     } else {
413         code = (*func)(p, args, retval);
414     }
415     AFS_GUNLOCK();
416     return code;
417 }
418
419 afsxioctl(p, args, retval)
420     struct proc *p;
421     void *args;
422     long *retval;
423 {
424     int     (*func)();
425     int code;
426
427     AFS_GLOCK();
428     func = afs_xioctl_func;
429     if (func == NULL_FUNC) {
430         code = nosys(p, args, retval);
431     } else {
432         code = (*func)(p, args, retval);
433     }
434     AFS_GUNLOCK();
435     return code;
436 }
437
438
439 /*
440  * VFS initialization and unload
441  */
442
443 afs_unconfig()
444 {
445     return EBUSY;
446 }
447
448
449 cfg_subsys_attr_t afs_attributes[]  = {
450     {"", 0, 0, 0, 0, 0, 0}      /* must be the last element */
451 };
452
453 afs_configure(cfg_op_t op, caddr_t indata, size_t indata_size, caddr_t outdata, size_t outdata_size)
454 {
455     cfg_attr_t  *attributes;
456     int ret = ESUCCESS;
457     int i, j, size;
458     caddr_t p;
459
460     switch (op) {
461     case CFG_OP_CONFIGURE:
462         /*
463          * The indata parameter is a list of attributes to be configured, and 
464          * indata_size is the count of attributes.
465          */
466         if ((ret = vfssw_add_fsname(MOUNT_AFS, &afs_vfsops, "afs")) != 0)
467             return(ret);
468         break;
469     case CFG_OP_UNCONFIGURE:
470         if ((ret = afs_unconfig()) != 0)
471             return(ret);
472         break;
473     default:
474         ret = EINVAL;
475         break;
476     }
477     return ret;
478 }
479
480
481 int mp_Afs_init(void)
482 {
483     extern int Afs_xsetgroups(), afs_xioctl(), afs3_syscall();
484     
485     AFS_GLOCK();
486     sysent[AFS_SYSCALL].sy_call = afs3_syscall;
487 #ifdef SY_NARG
488     sysent[AFS_SYSCALL].sy_info = 6;
489 #else
490     sysent[AFS_SYSCALL].sy_parallel = 0;
491     sysent[AFS_SYSCALL].sy_narg = 6;
492 #endif
493     sysent[SYS_setgroups].sy_call = Afs_xsetgroups;
494     afs_xioctl_func = afsxioctl;    
495     afs_xsetgroups_func = afsxsetgroups;
496     afs_syscall_func = afssyscall;
497     AFS_GUNLOCK();
498
499     return 0;
500 }