disconnected-20080523
[openafs.git] / src / afs / VNOPS / afs_vnop_create.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  * Implements:
12  * afs_create
13  * afs_LocalHero
14  */
15
16 #include <afsconfig.h>
17 #include "afs/param.h"
18
19 RCSID
20     ("$Header$");
21
22 #include "afs/sysincludes.h"    /* Standard vendor system headers */
23 #include "afsincludes.h"        /* Afs-based standard headers */
24 #include "afs/afs_stats.h"      /* statistics */
25 #include "afs/afs_cbqueue.h"
26 #include "afs/nfsclient.h"
27 #include "afs/afs_osidnlc.h"
28 #include "afs/unified_afs.h"
29
30 /* question: does afs_create need to set CDirty in the adp or the avc?
31  * I think we can get away without it, but I'm not sure.  Note that
32  * afs_setattr is called in here for truncation.
33  */
34 #ifdef AFS_SGI64_ENV
35 int
36 afs_create(OSI_VC_DECL(adp), char *aname, struct vattr *attrs, int flags,
37            int amode, struct vcache **avcp, struct AFS_UCRED *acred)
38 #else /* AFS_SGI64_ENV */
39 int
40 afs_create(OSI_VC_DECL(adp), char *aname, struct vattr *attrs,
41            enum vcexcl aexcl, int amode, struct vcache **avcp,
42            struct AFS_UCRED *acred)
43 #endif                          /* AFS_SGI64_ENV */
44 {
45     afs_int32 origCBs, origZaps, finalZaps;
46     struct vrequest treq;
47     register afs_int32 code;
48     register struct conn *tc;
49     struct VenusFid newFid;
50     struct AFSStoreStatus InStatus;
51     struct AFSFetchStatus OutFidStatus, OutDirStatus;
52     struct AFSVolSync tsync;
53     struct AFSCallBack CallBack;
54     afs_int32 now;
55     struct dcache *tdc;
56     afs_size_t offset, len;
57     struct server *hostp = 0;
58     struct vcache *tvc;
59     struct volume *volp = 0;
60     struct afs_fakestat_state fakestate;
61     XSTATS_DECLS;
62     OSI_VC_CONVERT(adp);
63
64
65     AFS_STATCNT(afs_create);
66     if ((code = afs_InitReq(&treq, acred)))
67         goto done2;
68
69     afs_Trace3(afs_iclSetp, CM_TRACE_CREATE, ICL_TYPE_POINTER, adp,
70                ICL_TYPE_STRING, aname, ICL_TYPE_INT32, amode);
71
72     afs_InitFakeStat(&fakestate);
73
74 #ifdef AFS_SGI65_ENV
75     /* If avcp is passed not null, it's the old reference to this file.
76      * We can use this to avoid create races. For now, just decrement
77      * the reference count on it.
78      */
79     if (*avcp) {
80         AFS_RELE(AFSTOV(*avcp));
81         *avcp = NULL;
82     }
83 #endif
84
85     if (strlen(aname) > AFSNAMEMAX) {
86         code = ENAMETOOLONG;
87         goto done3;
88     }
89
90     if (!afs_ENameOK(aname)) {
91         code = EINVAL;
92         goto done3;
93     }
94     switch (attrs->va_type) {
95     case VBLK:
96     case VCHR:
97 #if     !defined(AFS_SUN5_ENV)
98     case VSOCK:
99 #endif
100     case VFIFO:
101         /* We don't support special devices or FIFOs */
102         code = EINVAL;
103         goto done3;
104     default:
105         ;
106     }
107     AFS_DISCON_LOCK();
108
109     code = afs_EvalFakeStat(&adp, &fakestate, &treq);
110     if (code)
111         goto done;
112   tagain:
113     code = afs_VerifyVCache(adp, &treq);
114     if (code)
115         goto done;
116
117     /** If the volume is read-only, return error without making an RPC to the
118       * fileserver
119       */
120     if (adp->states & CRO) {
121         code = EROFS;
122         goto done;
123     }
124
125     if (AFS_IS_DISCONNECTED && !AFS_IS_LOGGING) {
126         code = ENETDOWN;
127         goto done;
128     }
129
130     tdc = afs_GetDCache(adp, (afs_size_t) 0, &treq, &offset, &len, 1);
131     ObtainWriteLock(&adp->lock, 135);
132     if (tdc)
133         ObtainSharedLock(&tdc->lock, 630);
134
135     /*
136      * Make sure that the data in the cache is current. We may have
137      * received a callback while we were waiting for the write lock.
138      */
139     if (!(adp->states & CStatd)
140         || (tdc && !hsame(adp->m.DataVersion, tdc->f.versionNo))) {
141         ReleaseWriteLock(&adp->lock);
142         if (tdc) {
143             ReleaseSharedLock(&tdc->lock);
144             afs_PutDCache(tdc);
145         }
146         goto tagain;
147     }
148     if (tdc) {
149         /* see if file already exists.  If it does, we only set 
150          * the size attributes (to handle O_TRUNC) */
151         code = afs_dir_Lookup(tdc, aname, &newFid.Fid); /* use dnlc first xxx */
152         if (code == 0) {
153             ReleaseSharedLock(&tdc->lock);
154             afs_PutDCache(tdc);
155             ReleaseWriteLock(&adp->lock);
156 #ifdef AFS_SGI64_ENV
157             if (flags & VEXCL) {
158 #else
159             if (aexcl != NONEXCL) {
160 #endif
161                 code = EEXIST;  /* file exists in excl mode open */
162                 goto done;
163             }
164             /* found the file, so use it */
165             newFid.Cell = adp->fid.Cell;
166             newFid.Fid.Volume = adp->fid.Fid.Volume;
167             tvc = NULL;
168             if (newFid.Fid.Unique == 0) {
169                 tvc = afs_LookupVCache(&newFid, &treq, NULL, adp, aname);
170             }
171             if (!tvc)           /* lookup failed or wasn't called */
172                 tvc = afs_GetVCache(&newFid, &treq, NULL, NULL);
173
174             if (tvc) {
175                 /* if the thing exists, we need the right access to open it.
176                  * we must check that here, since no other checks are
177                  * made by the open system call */
178                 len = attrs->va_size;   /* only do the truncate */
179                 /*
180                  * We used to check always for READ access before; the
181                  * problem is that we will fail if the existing file
182                  * has mode -w-w-w, which is wrong.
183                  */
184                 if ((amode & VREAD)
185                     && !afs_AccessOK(tvc, PRSFS_READ, &treq, CHECK_MODE_BITS)) {
186                     afs_PutVCache(tvc);
187                     code = EACCES;
188                     goto done;
189                 }
190 #if defined(AFS_DARWIN80_ENV)
191                 if ((amode & VWRITE) || VATTR_IS_ACTIVE(attrs, va_data_size))
192 #elif defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
193                 if ((amode & VWRITE) || (attrs->va_mask & AT_SIZE))
194 #else
195                 if ((amode & VWRITE) || len != 0xffffffff)
196 #endif
197                 {
198                     /* needed for write access check */
199                     tvc->parentVnode = adp->fid.Fid.Vnode;
200                     tvc->parentUnique = adp->fid.Fid.Unique;
201                     /* need write mode for these guys */
202                     if (!afs_AccessOK
203                         (tvc, PRSFS_WRITE, &treq, CHECK_MODE_BITS)) {
204                         afs_PutVCache(tvc);
205                         code = EACCES;
206                         goto done;
207                     }
208                 }
209 #if defined(AFS_DARWIN80_ENV)
210                 if (VATTR_IS_ACTIVE(attrs, va_data_size))
211 #elif defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
212                 if (attrs->va_mask & AT_SIZE)
213 #else
214                 if (len != 0xffffffff)
215 #endif
216                 {
217                     if (vType(tvc) != VREG) {
218                         afs_PutVCache(tvc);
219                         code = EISDIR;
220                         goto done;
221                     }
222                     /* do a truncate */
223 #if defined(AFS_DARWIN80_ENV)
224                     VATTR_INIT(attrs);
225                     VATTR_SET_SUPPORTED(attrs, va_data_size);
226                     VATTR_SET_ACTIVE(attrs, va_data_size);
227 #elif defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
228                     attrs->va_mask = AT_SIZE;
229 #else
230                     VATTR_NULL(attrs);
231 #endif
232                     attrs->va_size = len;
233                     ObtainWriteLock(&tvc->lock, 136);
234                     tvc->states |= CCreating;
235                     ReleaseWriteLock(&tvc->lock);
236 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
237 #if defined(AFS_SGI64_ENV)
238                     code =
239                         afs_setattr(VNODE_TO_FIRST_BHV((vnode_t *) tvc),
240                                     attrs, 0, acred);
241 #else
242                     code = afs_setattr(tvc, attrs, 0, acred);
243 #endif /* AFS_SGI64_ENV */
244 #else /* SUN5 || SGI */
245                     code = afs_setattr(tvc, attrs, acred);
246 #endif /* SUN5 || SGI */
247                     ObtainWriteLock(&tvc->lock, 137);
248                     tvc->states &= ~CCreating;
249                     ReleaseWriteLock(&tvc->lock);
250                     if (code) {
251                         afs_PutVCache(tvc);
252                         goto done;
253                     }
254                 }
255                 *avcp = tvc;
256             } else
257                 code = ENOENT;  /* shouldn't get here */
258             /* make sure vrefCount bumped only if code == 0 */
259             goto done;
260         }
261     }
262     
263     if (AFS_IS_DISCONNECTED) {
264         /* XXX - If we get here, logging must be enabled (as we bypassed the
265          * earlier check. So - do that logging thang, then return */
266     }       
267
268     /* if we create the file, we don't do any access checks, since
269      * that's how O_CREAT is supposed to work */
270     if (adp->states & CForeign) {
271         origCBs = afs_allCBs;
272         origZaps = afs_allZaps;
273     } else {
274         origCBs = afs_evenCBs;  /* if changes, we don't really have a callback */
275         origZaps = afs_evenZaps;        /* number of even numbered vnodes discarded */
276     }
277     InStatus.Mask = AFS_SETMODTIME | AFS_SETMODE | AFS_SETGROUP;
278     InStatus.ClientModTime = osi_Time();
279     InStatus.Group = (afs_int32) acred->cr_gid;
280     if (AFS_NFSXLATORREQ(acred)) {
281         /*
282          * XXX The following is mainly used to fix a bug in the HP-UX
283          * nfs client where they create files with mode of 0 without
284          * doing any setattr later on to fix it.  * XXX
285          */
286 #if     defined(AFS_AIX_ENV)
287         if (attrs->va_mode != -1) {
288 #else
289 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
290         if (attrs->va_mask & AT_MODE) {
291 #else
292         if (attrs->va_mode != ((unsigned short)-1)) {
293 #endif
294 #endif
295             if (!attrs->va_mode)
296                 attrs->va_mode = 0x1b6; /* XXX default mode: rw-rw-rw XXX */
297         }
298     }
299     InStatus.UnixModeBits = attrs->va_mode & 0xffff;    /* only care about protection bits */
300     do {
301         tc = afs_Conn(&adp->fid, &treq, SHARED_LOCK);
302         if (tc) {
303             hostp = tc->srvr->server;   /* remember for callback processing */
304             now = osi_Time();
305             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_CREATEFILE);
306             RX_AFS_GUNLOCK();
307             code =
308                 RXAFS_CreateFile(tc->id, (struct AFSFid *)&adp->fid.Fid,
309                                  aname, &InStatus, (struct AFSFid *)
310                                  &newFid.Fid, &OutFidStatus, &OutDirStatus,
311                                  &CallBack, &tsync);
312             RX_AFS_GLOCK();
313             XSTATS_END_TIME;
314             CallBack.ExpirationTime += now;
315         } else
316             code = -1;
317     } while (afs_Analyze
318              (tc, code, &adp->fid, &treq, AFS_STATS_FS_RPCIDX_CREATEFILE,
319               SHARED_LOCK, NULL));
320
321     if ((code == EEXIST || code == UAEEXIST) &&
322 #ifdef AFS_SGI64_ENV
323     !(flags & VEXCL)
324 #else /* AFS_SGI64_ENV */
325     aexcl == NONEXCL
326 #endif
327     ) {
328         /* if we get an EEXIST in nonexcl mode, just do a lookup */
329         if (tdc) {
330             ReleaseSharedLock(&tdc->lock);
331             afs_PutDCache(tdc);
332         }
333         ReleaseWriteLock(&adp->lock);
334 #if !(defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV))
335 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
336 #if defined(AFS_SGI64_ENV)
337         code = afs_lookup(VNODE_TO_FIRST_BHV((vnode_t *) adp), aname, avcp, 
338                           NULL, 0, NULL, acred);
339 #else
340         code = afs_lookup(adp, aname, avcp, NULL, 0, NULL, acred);
341 #endif /* AFS_SGI64_ENV */
342 #else /* SUN5 || SGI */
343         code = afs_lookup(adp, aname, avcp, acred);
344 #endif /* SUN5 || SGI */
345 #endif /* !(AFS_OSF_ENV || AFS_DARWIN_ENV) */
346         goto done;
347     }
348     if (code) {
349         if (code < 0) {
350             ObtainWriteLock(&afs_xcbhash, 488);
351             afs_DequeueCallback(adp);
352             adp->states &= ~CStatd;
353             ReleaseWriteLock(&afs_xcbhash);
354             osi_dnlc_purgedp(adp);
355         }
356         ReleaseWriteLock(&adp->lock);
357         if (tdc) {
358             ReleaseSharedLock(&tdc->lock);
359             afs_PutDCache(tdc);
360         }
361         goto done;
362     }
363     /* otherwise, we should see if we can make the change to the dir locally */
364     if (tdc)
365         UpgradeSToWLock(&tdc->lock, 631);
366     if (afs_LocalHero(adp, tdc, &OutDirStatus, 1)) {
367         /* we can do it locally */
368         ObtainWriteLock(&afs_xdcache, 291);
369         code = afs_dir_Create(tdc, aname, &newFid.Fid);
370         ReleaseWriteLock(&afs_xdcache);
371         if (code) {
372             ZapDCE(tdc);
373             DZap(tdc);
374         }
375     }
376     if (tdc) {
377         ReleaseWriteLock(&tdc->lock);
378         afs_PutDCache(tdc);
379     }
380     newFid.Cell = adp->fid.Cell;
381     newFid.Fid.Volume = adp->fid.Fid.Volume;
382     ReleaseWriteLock(&adp->lock);
383     volp = afs_FindVolume(&newFid, READ_LOCK);
384
385     /* New tricky optimistic callback handling algorithm for file creation works
386      * as follows.  We create the file essentially with no locks set at all.  File
387      * server may thus handle operations from others cache managers as well as from
388      * this very own cache manager that reference the file in question before
389      * we managed to create the cache entry.  However, if anyone else changes
390      * any of the status information for a file, we'll see afs_evenCBs increase
391      * (files always have even fids).  If someone on this workstation manages
392      * to do something to the file, they'll end up having to create a cache
393      * entry for the new file.  Either we'll find it once we've got the afs_xvcache
394      * lock set, or it was also *deleted* the vnode before we got there, in which case
395      * we will find evenZaps has changed, too.  Thus, we only assume we have the right
396      * status information if no callbacks or vnode removals have occurred to even
397      * numbered files from the time the call started until the time that we got the xvcache
398      * lock set.  Of course, this also assumes that any call that modifies a file first
399      * gets a write lock on the file's vnode, but if that weren't true, the whole cache manager
400      * would fail, since no call would be able to update the local vnode status after modifying
401      * a file on a file server. */
402     ObtainWriteLock(&afs_xvcache, 138);
403     if (adp->states & CForeign)
404         finalZaps = afs_allZaps;        /* do this before calling newvcache */
405     else
406         finalZaps = afs_evenZaps;       /* do this before calling newvcache */
407     /* don't need to call RemoveVCB, since only path leaving a callback is the
408      * one where we pass through afs_NewVCache.  Can't have queued a VCB unless
409      * we created and freed an entry between file creation time and here, and the
410      * freeing of the vnode will change evenZaps.  Don't need to update the VLRU
411      * queue, since the find will only succeed in the event of a create race, and 
412      * then the vcache will be at the front of the VLRU queue anyway...  */
413     if (!(tvc = afs_FindVCache(&newFid, 0, DO_STATS))) {
414         tvc = afs_NewVCache(&newFid, hostp);
415         if (tvc) {
416             int finalCBs;
417             ObtainWriteLock(&tvc->lock, 139);
418
419             ObtainWriteLock(&afs_xcbhash, 489);
420             finalCBs = afs_evenCBs;
421             /* add the callback in */
422             if (adp->states & CForeign) {
423                 tvc->states |= CForeign;
424                 finalCBs = afs_allCBs;
425             }
426             if (origCBs == finalCBs && origZaps == finalZaps) {
427                 tvc->states |= CStatd;  /* we've fake entire thing, so don't stat */
428                 tvc->states &= ~CBulkFetching;
429                 tvc->cbExpires = CallBack.ExpirationTime;
430                 afs_QueueCallback(tvc, CBHash(CallBack.ExpirationTime), volp);
431             } else {
432                 afs_DequeueCallback(tvc);
433                 tvc->states &= ~(CStatd | CUnique);
434                 tvc->callback = 0;
435                 if (tvc->fid.Fid.Vnode & 1 || (vType(tvc) == VDIR))
436                     osi_dnlc_purgedp(tvc);
437             }
438             ReleaseWriteLock(&afs_xcbhash);
439             afs_ProcessFS(tvc, &OutFidStatus, &treq);
440             tvc->parentVnode = adp->fid.Fid.Vnode;
441             tvc->parentUnique = adp->fid.Fid.Unique;
442             ReleaseWriteLock(&tvc->lock);
443             *avcp = tvc;
444             code = 0;
445         } else
446             code = ENOENT;
447     } else {
448         /* otherwise cache entry already exists, someone else must
449          * have created it.  Comments used to say:  "don't need write
450          * lock to *clear* these flags" but we should do it anyway.
451          * Code used to clear stat bit and callback, but I don't see 
452          * the point -- we didn't have a create race, somebody else just
453          * snuck into NewVCache before we got here, probably a racing 
454          * lookup.
455          */
456         *avcp = tvc;
457         code = 0;
458     }
459     ReleaseWriteLock(&afs_xvcache);
460
461   done:
462     AFS_DISCON_UNLOCK();
463
464   done3:
465     if (volp)
466         afs_PutVolume(volp, READ_LOCK);
467
468     if (code == 0) {
469         afs_AddMarinerName(aname, *avcp);
470         /* return the new status in vattr */
471         afs_CopyOutAttrs(*avcp, attrs);
472     }
473 #ifdef  AFS_OSF_ENV
474     if (!code && !strcmp(aname, "core"))
475         tvc->states |= CCore1;
476 #endif
477
478     afs_PutFakeStat(&fakestate);
479     code = afs_CheckCode(code, &treq, 20);
480
481   done2:
482     return code;
483 }
484
485
486 /*
487  * Check to see if we can track the change locally: requires that
488  * we have sufficiently recent info in data cache.  If so, we
489  * know the new DataVersion number, and place it correctly in both the
490  * data and stat cache entries.  This routine returns 1 if we should
491  * do the operation locally, and 0 otherwise.
492  *
493  * This routine must be called with the stat cache entry write-locked,
494  * and dcache entry write-locked.
495  */
496 int
497 afs_LocalHero(register struct vcache *avc, register struct dcache *adc,
498               register AFSFetchStatus * astat, register int aincr)
499 {
500     register afs_int32 ok;
501     afs_hyper_t avers;
502
503     AFS_STATCNT(afs_LocalHero);
504     hset64(avers, astat->dataVersionHigh, astat->DataVersion);
505     /* this *is* the version number, no matter what */
506     if (adc) {
507         ok = (hsame(avc->m.DataVersion, adc->f.versionNo) && avc->callback
508               && (avc->states & CStatd) && avc->cbExpires >= osi_Time());
509     } else {
510         ok = 0;
511     }
512 #if defined(AFS_SGI_ENV)
513     osi_Assert(avc->v.v_type == VDIR);
514 #endif
515     /* The bulk status code used the length as a sequence number.  */
516     /* Don't update the vcache entry unless the stats are current. */
517     if (avc->states & CStatd) {
518         hset(avc->m.DataVersion, avers);
519 #ifdef AFS_64BIT_CLIENT
520         FillInt64(avc->m.Length, astat->Length_hi, astat->Length);
521 #else /* AFS_64BIT_CLIENT */
522         avc->m.Length = astat->Length;
523 #endif /* AFS_64BIT_CLIENT */
524         avc->m.Date = astat->ClientModTime;
525     }
526     if (ok) {
527         /* we've been tracking things correctly */
528         adc->dflags |= DFEntryMod;
529         adc->f.versionNo = avers;
530         return 1;
531     } else {
532         if (adc) {
533             ZapDCE(adc);
534             DZap(adc);
535         }
536         if (avc->states & CStatd) {
537             osi_dnlc_purgedp(avc);
538         }
539         return 0;
540     }
541 }