darwin-updates-20020821
[openafs.git] / src / afs / VNOPS / afs_vnop_attrs.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  * afs_vnop_attrs.c - setattr and getattr vnodeops
12  *
13  * Implements:
14  * afs_CopyOutAttrs
15  * afs_getattr
16  * afs_VAttrToAS
17  * afs_setattr
18  *
19  */
20
21 #include <afsconfig.h>
22 #include "../afs/param.h"
23
24 RCSID("$Header$");
25
26 #include "../afs/sysincludes.h" /* Standard vendor system headers */
27 #include "../afs/afsincludes.h" /* Afs-based standard headers */
28 #include "../afs/afs_stats.h" /* statistics */
29 #include "../afs/afs_cbqueue.h"
30 #include "../afs/nfsclient.h"
31 #include "../afs/afs_osidnlc.h"
32
33 extern afs_rwlock_t afs_xcbhash;
34 struct afs_exporter *afs_nfsexporter;
35 extern struct vcache *afs_globalVp;
36
37 /* copy out attributes from cache entry */
38 int afs_CopyOutAttrs(register struct vcache *avc, register struct vattr *attrs)
39 {
40     register struct volume *tvp;
41     register struct cell *tcell;
42     register afs_int32 i;
43     int fakedir = 0;
44
45     AFS_STATCNT(afs_CopyOutAttrs);
46     if (afs_fakestat_enable && avc->mvstat == 1)
47         fakedir = 1;
48 #if     defined(AFS_MACH_ENV )
49     attrs->va_mode = fakedir ? VDIR | 0755 : vType(avc) | (avc->m.Mode&~VFMT);
50 #else /* AFS_MACH_ENV */
51     attrs->va_type = fakedir ? VDIR : vType(avc);
52 #if defined(AFS_SGI_ENV) || defined(AFS_AIX32_ENV) || defined(AFS_SUN5_ENV)
53     attrs->va_mode = fakedir ? 0755 : (mode_t)(avc->m.Mode & 0xffff);
54 #else
55     attrs->va_mode = fakedir ? VDIR | 0755 : avc->m.Mode;
56 #endif
57 #endif /* AFS_MACH_ENV */
58
59     if (avc->m.Mode & (VSUID|VSGID)) {
60         /* setuid or setgid, make sure we're allowed to run them from this cell */
61         tcell = afs_GetCell(avc->fid.Cell, 0);
62         if (tcell && (tcell->states & CNoSUID))
63             attrs->va_mode &= ~(VSUID|VSGID);
64     }
65     attrs->va_uid = fakedir ? 0 : avc->m.Owner;
66     attrs->va_gid = fakedir ? 0 : avc->m.Group;   /* yeah! */
67 #if     defined(AFS_SUN56_ENV)
68     attrs->va_fsid = avc->v.v_vfsp->vfs_fsid.val[0];
69 #else
70 #ifdef  AFS_SUN5_ENV
71     /* XXX We try making this match the vfs's dev field  XXX */
72     attrs->va_fsid = 1;
73 #else
74 #ifdef AFS_OSF_ENV
75     attrs->va_fsid = avc->v.v_mount->m_stat.f_fsid.val[0]; 
76 #else
77     attrs->va_fsid = 1;
78 #endif
79 #endif
80 #endif /* AFS_SUN56_ENV */
81     if (avc->mvstat == 2) {
82         tvp = afs_GetVolume(&avc->fid, 0, READ_LOCK);
83         /* The mount point's vnode. */
84         if (tvp) {
85             attrs->va_nodeid =
86                 tvp->mtpoint.Fid.Vnode + (tvp->mtpoint.Fid.Volume << 16);
87             if (FidCmp(&afs_rootFid, &avc->fid) && !attrs->va_nodeid)
88                 attrs->va_nodeid = 2;
89             afs_PutVolume(tvp, READ_LOCK);
90         }
91         else attrs->va_nodeid = 2;
92     }
93     else attrs->va_nodeid = avc->fid.Fid.Vnode + (avc->fid.Fid.Volume << 16);
94     attrs->va_nodeid &= 0x7fffffff;     /* Saber C hates negative inode #s! */
95     attrs->va_nlink = fakedir ? 100 : avc->m.LinkCount;
96     attrs->va_size = fakedir ? 4096 : avc->m.Length;
97     attrs->va_atime.tv_sec = attrs->va_mtime.tv_sec = attrs->va_ctime.tv_sec =
98         fakedir ? 0 : (int)avc->m.Date;
99     /* set microseconds to be dataversion # so that we approximate NFS-style
100      * use of mtime as a dataversion #.  We take it mod 512K because
101      * microseconds *must* be less than a million, and 512K is the biggest
102      * power of 2 less than such.  DataVersions are typically pretty small
103      * anyway, so the difference between 512K and 1000000 shouldn't matter
104      * much, and "&" is a lot faster than "%".
105      */
106 #if defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
107     /* nfs on these systems puts an 0 in nsec and stores the nfs usec (aka 
108        dataversion) in va_gen */
109
110     attrs->va_atime.tv_nsec = attrs->va_mtime.tv_nsec =
111         attrs->va_ctime.tv_nsec =0;
112     attrs->va_blocksize = PAGESIZE;             /* XXX Was 8192 XXX */
113     attrs->va_gen = hgetlo(avc->m.DataVersion);
114     attrs->va_flags = 0;
115 #else
116 #if defined(AFS_SGI_ENV) || defined(AFS_SUN5_ENV) || defined(AFS_AIX41_ENV) 
117     attrs->va_atime.tv_nsec = attrs->va_mtime.tv_nsec =
118         attrs->va_ctime.tv_nsec =
119             (hgetlo(avc->m.DataVersion) & 0x7ffff) * 1000;
120 #if defined(AFS_AIX41_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
121     attrs->va_blocksize = PAGESIZE;             /* XXX Was 8192 XXX */
122 #else
123     attrs->va_blksize = PAGESIZE;               /* XXX Was 8192 XXX */
124 #endif
125 #else
126     attrs->va_atime.tv_usec = attrs->va_mtime.tv_usec =
127         attrs->va_ctime.tv_usec =
128             (hgetlo(avc->m.DataVersion) & 0x7ffff);
129     attrs->va_blocksize = PAGESIZE;             /* XXX Was 8192 XXX */
130 #endif
131 #endif
132 #ifdef AFS_DEC_ENV
133     /* Have to use real device #s in Ultrix, since that's how FS type is
134      * encoded.  If rdev doesn't match Ultrix equivalent of statfs's rdev, then
135      * "df ." doesn't work.
136      */
137     if (afs_globalVFS && afs_globalVFS->vfs_data)
138         attrs->va_rdev = ((struct mount *)(afs_globalVFS->vfs_data))->m_dev;
139     else
140         attrs->va_rdev = 1;     /* better than nothing */
141 #else 
142     attrs->va_rdev = 1;
143 #endif
144     /*
145      * Below return 0 (and not 1) blocks if the file is zero length. This conforms
146      * better with the other filesystems that do return 0.      
147      */
148 #if   defined(AFS_OSF_ENV)
149 #ifdef  va_size_rsv
150     attrs->va_size_rsv = 0;
151 #endif
152 /* XXX do this */
153 /*    attrs->va_gen = avc->m.DataVersion;*/
154     attrs->va_flags = 0;
155 #endif  /* AFS_OSF_ENV || AFS_DARWIN_ENV */
156
157 #if !defined(AFS_OSF_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV)
158 #if !defined(AFS_HPUX_ENV)
159 #ifdef  AFS_SUN5_ENV
160     attrs->va_nblocks = (attrs->va_size? ((attrs->va_size + 1023)>>10) << 1 : 0);
161 #else
162 #if defined(AFS_SGI_ENV)
163     attrs->va_blocks = BTOBB(attrs->va_size);
164 #else
165     attrs->va_blocks = (attrs->va_size? ((attrs->va_size + 1023)>>10) << 1 : 0);
166 #endif
167 #endif
168 #else /* !defined(AFS_HPUX_ENV) */
169     attrs->va_blocks = (attrs->va_size? ((attrs->va_size + 1023)>>10) : 0);
170 #endif /* !defined(AFS_HPUX_ENV) */
171 #else   /* ! AFS_OSF_ENV && !AFS_FBSD_ENV */
172     attrs->va_bytes = (attrs->va_size? (attrs->va_size + 1023) : 1024);
173 #ifdef  va_bytes_rsv
174     attrs->va_bytes_rsv = -1;
175 #endif
176 #endif  /* ! AFS_OSF_ENV */
177
178 #ifdef AFS_LINUX22_ENV
179     /* And linux has it's own stash as well. */
180     vattr2inode(AFSTOV(avc), attrs);
181 #endif
182     return 0;
183 }
184
185
186
187 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
188 int afs_getattr(OSI_VC_DECL(avc), struct vattr *attrs, int flags, struct AFS_UCRED *acred)
189 #else
190 int afs_getattr(OSI_VC_DECL(avc), struct vattr *attrs, struct AFS_UCRED *acred)
191 #endif
192 {
193     afs_int32 code;
194     struct vrequest treq;
195     extern struct unixuser *afs_FindUser();
196     struct unixuser *au;
197     int inited = 0;
198     OSI_VC_CONVERT(avc)
199
200     AFS_STATCNT(afs_getattr);
201     afs_Trace2(afs_iclSetp, CM_TRACE_GETATTR, ICL_TYPE_POINTER, avc, 
202                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length));
203
204     if (afs_fakestat_enable && avc->mvstat == 1) {
205         struct afs_fakestat_state fakestat;
206
207         code = afs_InitReq(&treq, acred);
208         if (code) return code;
209         afs_InitFakeStat(&fakestat);
210         code = afs_TryEvalFakeStat(&avc, &fakestat, &treq);
211         if (code) {
212             afs_PutFakeStat(&fakestat);
213             return code;
214         }
215
216         code = afs_CopyOutAttrs(avc, attrs);
217         afs_PutFakeStat(&fakestat);
218         return code;
219     }
220
221 #if defined(AFS_SUN5_ENV)
222     if (flags & ATTR_HINT) {
223        code = afs_CopyOutAttrs(avc, attrs);
224        return code;
225     }
226 #endif
227 #if defined(AFS_DARWIN_ENV)
228     if (avc->states & CUBCinit) {
229        code = afs_CopyOutAttrs(avc, attrs);
230        return code;
231     }
232 #endif
233
234 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
235     afs_BozonLock(&avc->pvnLock, avc);
236 #endif
237
238     if (afs_shuttingdown) return EIO;
239
240     if (!(avc->states & CStatd)) {
241       if (!(code = afs_InitReq(&treq, acred))) {
242         code = afs_VerifyVCache2(avc, &treq);
243         inited = 1;
244       }
245     }
246     else code = 0;
247
248 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
249     if (code == 0) osi_FlushPages(avc, acred);
250     afs_BozonUnlock(&avc->pvnLock, avc);
251 #endif
252
253
254     if (code == 0) {
255         osi_FlushText(avc); /* only needed to flush text if text locked last time */
256         code = afs_CopyOutAttrs(avc, attrs);
257
258         if (afs_nfsexporter) {
259           if (!inited) {
260             if ((code = afs_InitReq(&treq, acred)))
261               return code;
262              inited = 1;
263           }
264           if (AFS_NFSXLATORREQ(acred)) {
265               if ((vType(avc) != VDIR) &&
266                   !afs_AccessOK(avc, PRSFS_READ, &treq,
267                                 CHECK_MODE_BITS|CMB_ALLOW_EXEC_AS_READ)) {
268                   return EACCES;
269               }
270               if (avc->mvstat == 2) {
271 #if defined(AFS_SGI_ENV) || defined(AFS_SUN5_ENV) || defined(AFS_AIX41_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
272                   attrs->va_mtime.tv_nsec += ((++avc->xlatordv) * 1000); 
273 #else
274                   attrs->va_mtime.tv_usec += ++avc->xlatordv; 
275 #endif
276               }
277           }
278           if ((au = afs_FindUser(treq.uid, -1, READ_LOCK))) {
279             register struct afs_exporter *exporter = au->exporter;
280
281             if (exporter && !(afs_nfsexporter->exp_states & EXP_UNIXMODE)) {
282                 unsigned int ubits;
283                 /*
284                  *  If the remote user wishes to enforce default Unix mode semantics,
285                  *  like in the nfs exporter case, we OR in the user bits
286                  *  into the group and other bits. We need to do this
287                  *  because there is no RFS_ACCESS call and thus nfs
288                  *  clients implement nfs_access by interpreting the 
289                  *  mode bits in the traditional way, which of course
290                  *  loses with afs.
291                  */
292                 ubits = (attrs->va_mode & 0700) >> 6;
293                 attrs->va_mode = attrs->va_mode | ubits | (ubits << 3);
294                 /* If it's the root of AFS, replace the inode number with the
295                  * inode number of the mounted on directory; otherwise this 
296                  * confuses getwd()... */
297 #ifdef AFS_LINUX22_ENV
298                 if (avc == afs_globalVp) {
299                     struct inode *ip = avc->v.i_sb->s_root->d_inode;
300                     attrs->va_nodeid = ip->i_ino;
301                 }
302 #else
303                 if (AFSTOV(avc)->v_flag & VROOT) {
304                     struct vnode *vp = AFSTOV(avc);
305
306                     vp = vp->v_vfsp->vfs_vnodecovered;
307                     if (vp) {   /* Ignore weird failures */
308 #ifdef AFS_SGI62_ENV
309                         attrs->va_nodeid = VnodeToIno(vp);
310 #else
311                         struct inode *ip;
312                         
313                         ip = (struct inode *) VTOI(vp);
314                         if (ip) /* Ignore weird failures */
315                             attrs->va_nodeid = ip->i_number;
316 #endif
317                     }
318                 }
319 #endif /* AFS_LINUX22_ENV */
320               }
321             afs_PutUser(au, READ_LOCK);
322           }
323         }
324     }
325     if (!code)
326       return 0;
327     code = afs_CheckCode(code, &treq, 14);
328     return code;
329 }
330
331 /* convert a Unix request into a status store request */
332 int afs_VAttrToAS(register struct vcache *avc, register struct vattr *av, 
333         register struct AFSStoreStatus *as)
334 {
335     register int mask;
336     mask = 0;
337     AFS_STATCNT(afs_VAttrToAS);
338 #if     defined(AFS_AIX_ENV)
339 /* Boy, was this machine dependent bogosity hard to swallow????.... */
340     if (av->va_mode != -1) {
341 #else
342 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
343     if (av->va_mask & AT_MODE) {
344 #else
345     if (av->va_mode != ((unsigned short)-1)) {
346 #endif
347 #endif
348         mask |= AFS_SETMODE;
349         as->UnixModeBits = av->va_mode & 0xffff;
350         if (avc->states & CForeign) {
351             ObtainWriteLock(&avc->lock,127);
352             afs_FreeAllAxs(&(avc->Access));
353             ReleaseWriteLock(&avc->lock);
354         }
355     }
356
357 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
358     if (av->va_mask & AT_GID) {
359 #else
360 #if (defined(AFS_HPUX_ENV) || defined(AFS_SUN_ENV))
361 #if     defined(AFS_HPUX102_ENV)
362     if (av->va_gid != GID_NO_CHANGE) {
363 #else
364     if (av->va_gid != ((unsigned short)-1)) {
365 #endif
366 #else
367     if (av->va_gid != -1) {
368 #endif
369 #endif /* AFS_SUN5_ENV */
370         mask |= AFS_SETGROUP;
371         as->Group = av->va_gid;
372     }
373
374 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
375     if (av->va_mask & AT_UID) {
376 #else
377 #if (defined(AFS_HPUX_ENV) || defined(AFS_SUN_ENV))
378 #if     defined(AFS_HPUX102_ENV)
379     if (av->va_uid != UID_NO_CHANGE) {
380 #else
381     if (av->va_uid != ((unsigned short)-1)) {
382 #endif
383 #else
384     if (av->va_uid != -1) {
385 #endif
386 #endif /* AFS_SUN5_ENV */
387         mask |= AFS_SETOWNER;
388         as->Owner = av->va_uid;
389     }
390 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
391     if (av->va_mask & AT_MTIME) {
392 #else
393     if (av->va_mtime.tv_sec != -1) {
394 #endif
395         mask |= AFS_SETMODTIME;
396 #ifndef AFS_SGI_ENV
397 #if     defined(AFS_SUN5_ENV) || defined(AFS_AIX41_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
398         if (av->va_mtime.tv_nsec == -1)
399 #else
400         if (av->va_mtime.tv_usec == -1)
401 #endif
402             as->ClientModTime = osi_Time();     /* special Sys V compat hack for Suns */
403         else
404 #endif
405             as->ClientModTime = av->va_mtime.tv_sec;
406     }
407     as->Mask = mask;
408     return 0;
409 }
410
411 /* We don't set CDirty bit in avc->states because setattr calls WriteVCache
412  * synchronously, therefore, it's not needed.
413  */
414 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
415 int afs_setattr(OSI_VC_DECL(avc), register struct vattr *attrs, int flags, struct AFS_UCRED *acred)
416 #else
417 int afs_setattr(OSI_VC_DECL(avc), register struct vattr *attrs, struct AFS_UCRED *acred)
418 #endif
419 {
420     struct vrequest treq;
421     struct AFSStoreStatus astat;
422     register afs_int32 code;
423     struct afs_fakestat_state fakestate;
424     OSI_VC_CONVERT(avc)
425
426     AFS_STATCNT(afs_setattr);
427     afs_Trace2(afs_iclSetp, CM_TRACE_SETATTR, ICL_TYPE_POINTER, avc, 
428                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length));
429     if ((code = afs_InitReq(&treq, acred))) return code;
430  
431     afs_InitFakeStat(&fakestate);
432     code = afs_EvalFakeStat(&avc, &fakestate, &treq);
433     if (code)
434         goto done;
435
436     if (avc->states & CRO) {
437         code=EROFS;
438         goto done;
439     }
440 #if defined(AFS_SGI_ENV)
441     /* ignore ATTR_LAZY calls - they are really only for keeping
442      * the access/mtime of mmaped files up to date
443      */
444     if (flags & ATTR_LAZY)
445         goto done;
446 #endif
447 #ifndef AFS_DEC_ENV
448     /* if file size has changed, we need write access, otherwise (e.g.
449      * chmod) give it a shot; if it fails, we'll discard the status
450      * info.
451      *
452      * Note that Ultrix actually defines ftruncate of a file you have open to
453      * be O.K., and does the proper access checks itself in the truncate
454      * path (unlike BSD or SUNOS), so we skip this check for Ultrix.
455      *
456      */
457 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
458     if (attrs->va_mask & AT_SIZE) {
459 #else
460 #ifdef  AFS_OSF_ENV
461     if (attrs->va_size != VNOVAL) {
462 #else
463 #ifdef  AFS_AIX41_ENV
464     if (attrs->va_size != -1) {
465 #else
466     if (attrs->va_size != ~0) {
467 #endif
468 #endif
469 #endif
470         if (!afs_AccessOK(avc, PRSFS_WRITE, &treq, DONT_CHECK_MODE_BITS)) {
471             code = EACCES;
472             goto done;
473         }
474     }
475 #endif
476
477     afs_VAttrToAS(avc, attrs, &astat);  /* interpret request */
478     code = 0;
479 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
480     afs_BozonLock(&avc->pvnLock, avc);
481 #endif
482 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
483     if (AFS_NFSXLATORREQ(acred)) {
484         avc->execsOrWriters++;
485     }
486 #endif
487
488 #if defined(AFS_SGI_ENV)
489     AFS_RWLOCK((vnode_t *)avc, VRWLOCK_WRITE);
490 #endif
491 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) || defined(AFS_LINUX22_ENV)
492     if (attrs->va_mask & AT_SIZE) {
493 #else
494 #if     defined(AFS_OSF_ENV)
495     if (attrs->va_size != VNOVAL) {
496 #else   /* AFS_OSF_ENV */
497     if (attrs->va_size != -1) {
498 #endif
499 #endif
500         afs_size_t tsize = attrs->va_size;
501         ObtainWriteLock(&avc->lock,128);
502         avc->states |= CDirty;
503         code = afs_TruncateAllSegments(avc, tsize, &treq, acred);
504         /* if date not explicitly set by this call, set it ourselves, since we
505          * changed the data */
506         if (!(astat.Mask & AFS_SETMODTIME)) {
507             astat.Mask |= AFS_SETMODTIME;
508             astat.ClientModTime = osi_Time();
509         }
510         if (code == 0) {
511           if ( ( (avc->execsOrWriters <= 0 ) && (avc->states & CCreating) == 0)
512                 || (  avc->execsOrWriters == 1 && AFS_NFSXLATORREQ(acred)) ) {
513             code = afs_StoreAllSegments(avc, &treq, AFS_ASYNC);
514             if (!code)
515               avc->states &= ~CDirty;
516           }
517         } else
518           avc->states &= ~CDirty;
519
520         ReleaseWriteLock(&avc->lock);
521         hzero(avc->flushDV);
522         osi_FlushText(avc);     /* do this after releasing all locks */
523 #ifdef AFS_DEC_ENV
524         /* in case we changed the size here, propagate it to gp->g_size */
525         afs_gfshack((struct gnode *)avc);
526 #endif
527     }
528     if (code == 0) {
529         ObtainSharedLock(&avc->lock,16);        /* lock entry */
530         code = afs_WriteVCache(avc, &astat, &treq);    /* send request */
531         ReleaseSharedLock(&avc->lock);  /* release lock */
532     }
533     if (code) {
534        ObtainWriteLock(&afs_xcbhash, 487);
535        afs_DequeueCallback(avc);
536        avc->states &= ~CStatd;      
537        ReleaseWriteLock(&afs_xcbhash);
538        if (avc->fid.Fid.Vnode & 1 || (vType(avc) == VDIR))
539            osi_dnlc_purgedp(avc);
540        /* error?  erase any changes we made to vcache entry */
541      }
542
543 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
544     if (AFS_NFSXLATORREQ(acred)) {
545         avc->execsOrWriters--;
546     }
547 #endif
548 #if defined(AFS_SUN_ENV) || defined(AFS_OSF_ENV) || defined(AFS_SUN5_ENV)
549     afs_BozonUnlock(&avc->pvnLock, avc);
550 #endif
551 #if defined(AFS_SGI_ENV)
552     AFS_RWUNLOCK((vnode_t *)avc, VRWLOCK_WRITE);
553 #endif
554 done:
555     afs_PutFakeStat(&fakestate);
556     code = afs_CheckCode(code, &treq, 15);
557     return code;
558 }