libafs: Remove support for length optimisation
[openafs.git] / src / afs / afs_segments.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  * --------------------- Required definitions ---------------------
12  */
13 #include <afsconfig.h>
14 #include "afs/param.h"
15
16
17 #include "afs/sysincludes.h"    /*Standard vendor system headers */
18 #include "afsincludes.h"        /*AFS-based standard headers */
19 #include "afs/afs_stats.h"      /* statistics */
20 #include "afs/afs_cbqueue.h"
21 #include "afs/afs_osidnlc.h"
22
23 afs_uint32 afs_stampValue = 0;
24
25 /*
26  * afs_StoreMini
27  *
28  * Description:
29  *      Send a truncation request to a FileServer.
30  *
31  * Parameters:
32  *      xxx : description
33  *
34  * Environment:
35  *      We're write-locked upon entry.
36  */
37
38 static int
39 afs_StoreMini(struct vcache *avc, struct vrequest *areq)
40 {
41     struct afs_conn *tc;
42     struct AFSStoreStatus InStatus;
43     struct AFSFetchStatus OutStatus;
44     struct AFSVolSync tsync;
45     afs_int32 code;
46     struct rx_call *tcall;
47     struct rx_connection *rxconn;
48     afs_size_t tlen, xlen = 0;
49     XSTATS_DECLS;
50     AFS_STATCNT(afs_StoreMini);
51     afs_Trace2(afs_iclSetp, CM_TRACE_STOREMINI, ICL_TYPE_POINTER, avc,
52                ICL_TYPE_INT32, avc->f.m.Length);
53     tlen = avc->f.m.Length;
54     if (avc->f.truncPos < tlen)
55         tlen = avc->f.truncPos;
56     avc->f.truncPos = AFS_NOTRUNC;
57     avc->f.states &= ~CExtendedFile;
58
59     do {
60         tc = afs_Conn(&avc->f.fid, areq, SHARED_LOCK, &rxconn);
61         if (tc) {
62 #ifdef AFS_64BIT_CLIENT
63           retry:
64 #endif
65             RX_AFS_GUNLOCK();
66             tcall = rx_NewCall(rxconn);
67             RX_AFS_GLOCK();
68             /* Set the client mod time since we always want the file
69              * to have the client's mod time and not the server's one
70              * (to avoid problems with make, etc.) It almost always
71              * works fine with standard afs because them server/client
72              * times are in sync and more importantly this storemini
73              * it's a special call that would typically be followed by
74              * the proper store-data or store-status calls.
75              */
76             InStatus.Mask = AFS_SETMODTIME;
77             InStatus.ClientModTime = avc->f.m.Date;
78             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_STOREDATA);
79             afs_Trace4(afs_iclSetp, CM_TRACE_STOREDATA64, ICL_TYPE_FID,
80                        &avc->f.fid.Fid, ICL_TYPE_OFFSET,
81                        ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_OFFSET,
82                        ICL_HANDLE_OFFSET(xlen), ICL_TYPE_OFFSET,
83                        ICL_HANDLE_OFFSET(tlen));
84             RX_AFS_GUNLOCK();
85 #ifdef AFS_64BIT_CLIENT
86             if (!afs_serverHasNo64Bit(tc)) {
87                 code =
88                     StartRXAFS_StoreData64(tcall,
89                                            (struct AFSFid *)&avc->f.fid.Fid,
90                                            &InStatus, avc->f.m.Length,
91                                            (afs_size_t) 0, tlen);
92             } else {
93                 afs_int32 l1, l2;
94                 l1 = avc->f.m.Length;
95                 l2 = tlen;
96                 if ((avc->f.m.Length > 0x7fffffff) ||
97                     (tlen > 0x7fffffff) ||
98                     ((0x7fffffff - tlen) < avc->f.m.Length)) {
99                     code = EFBIG;
100                     goto error;
101                 }
102                 code =
103                     StartRXAFS_StoreData(tcall,
104                                          (struct AFSFid *)&avc->f.fid.Fid,
105                                          &InStatus, l1, 0, l2);
106             }
107 #else /* AFS_64BIT_CLIENT */
108             code =
109                 StartRXAFS_StoreData(tcall, (struct AFSFid *)&avc->f.fid.Fid,
110                                      &InStatus, avc->f.m.Length, 0, tlen);
111 #endif /* AFS_64BIT_CLIENT */
112             if (code == 0) {
113                 code = EndRXAFS_StoreData(tcall, &OutStatus, &tsync);
114             }
115 #ifdef AFS_64BIT_CLIENT
116         error:
117 #endif
118             code = rx_EndCall(tcall, code);
119             RX_AFS_GLOCK();
120             XSTATS_END_TIME;
121 #ifdef AFS_64BIT_CLIENT
122             if (code == RXGEN_OPCODE && !afs_serverHasNo64Bit(tc)) {
123                 afs_serverSetNo64Bit(tc);
124                 goto retry;
125             }
126 #endif /* AFS_64BIT_CLIENT */
127         } else
128             code = -1;
129     } while (afs_Analyze
130              (tc, rxconn, code, &avc->f.fid, areq, AFS_STATS_FS_RPCIDX_STOREDATA,
131               SHARED_LOCK, NULL));
132
133     if (code == 0)
134         afs_ProcessFS(avc, &OutStatus, areq);
135
136     return code;
137 }                               /*afs_StoreMini */
138
139 /*
140  * afs_StoreAllSegments
141  *
142  * Description:
143  *      Stores all modified segments back to server
144  *
145  * Parameters:
146  *      avc  : Pointer to vcache entry.
147  *      areq : Pointer to request structure.
148  *
149  * Environment:
150  *      Called with avc write-locked.
151  */
152 #if defined (AFS_HPUX_ENV)
153 int NCHUNKSATONCE = 3;
154 #else
155 int NCHUNKSATONCE = 64;
156 #endif
157 int afs_dvhack = 0;
158
159
160 int
161 afs_StoreAllSegments(struct vcache *avc, struct vrequest *areq,
162                      int sync)
163 {
164     struct dcache *tdc;
165     afs_int32 code = 0;
166     afs_int32 index;
167     afs_int32 origCBs, foreign = 0;
168     int hash;
169     afs_hyper_t newDV, oldDV;   /* DV when we start, and finish, respectively */
170     struct dcache **dcList;
171     unsigned int i, j, minj, moredata, high, off;
172     afs_size_t maxStoredLength; /* highest offset we've written to server. */
173     int safety, marineronce = 0;
174
175     AFS_STATCNT(afs_StoreAllSegments);
176
177     hset(oldDV, avc->f.m.DataVersion);
178     hset(newDV, avc->f.m.DataVersion);
179     hash = DVHash(&avc->f.fid);
180     foreign = (avc->f.states & CForeign);
181     dcList = (struct dcache **)osi_AllocLargeSpace(AFS_LRALLOCSIZ);
182     afs_Trace2(afs_iclSetp, CM_TRACE_STOREALL, ICL_TYPE_POINTER, avc,
183                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length));
184 #if !defined(AFS_AIX32_ENV) && !defined(AFS_SGI65_ENV)
185     /* In the aix vm implementation we need to do the vm_writep even
186      * on the memcache case since that's we adjust the file's size
187      * and finish flushing partial vm pages.
188      */
189     if ((cacheDiskType != AFS_FCACHE_TYPE_MEM) ||
190         (sync & AFS_VMSYNC_INVAL) || (sync & AFS_VMSYNC) ||
191         (sync & AFS_LASTSTORE))
192 #endif /* !AFS_AIX32_ENV && !AFS_SGI65_ENV */
193     {
194         /* If we're not diskless, reading a file may stress the VM
195          * system enough to cause a pageout, and this vnode would be
196          * locked when the pageout occurs.  We can prevent this problem
197          * by making sure all dirty pages are already flushed.  We don't
198          * do this when diskless because reading a diskless (i.e.
199          * memory-resident) chunk doesn't require using new VM, and we
200          * also don't want to dump more dirty data into a diskless cache,
201          * since they're smaller, and we might exceed its available
202          * space.
203          */
204 #if     defined(AFS_SUN5_ENV)
205         if (sync & AFS_VMSYNC_INVAL)    /* invalidate VM pages */
206             osi_VM_TryToSmush(avc, CRED(), 1);
207         else
208 #endif
209             osi_VM_StoreAllSegments(avc);
210     }
211     if (AFS_IS_DISCONNECTED && !AFS_IN_SYNC) {
212         /* This will probably make someone sad ... */
213         /*printf("Net down in afs_StoreSegments\n");*/
214         return ENETDOWN;
215     }
216     ConvertWToSLock(&avc->lock);
217
218     /*
219      * Subsequent code expects a sorted list, and it expects all the
220      * chunks in the list to be contiguous, so we need a sort and a
221      * while loop in here, too - but this will work for a first pass...
222      * 92.10.05 - OK, there's a sort in here now.  It's kind of a modified
223      *            bin sort, I guess.  Chunk numbers start with 0
224      *
225      * - Have to get a write lock on xdcache because GetDSlot might need it (if
226      *   the chunk doesn't have a dcache struct).
227      *   This seems like overkill in most cases.
228      * - I'm not sure that it's safe to do "index = .hvNextp", then unlock
229      *   xdcache, then relock xdcache and try to use index.  It is done
230      *   a lot elsewhere in the CM, but I'm not buying that argument.
231      * - should be able to check IFDataMod without doing the GetDSlot (just
232      *   hold afs_xdcache).  That way, it's easy to do this without the
233      *   writelock on afs_xdcache, and we save unneccessary disk
234      *   operations. I don't think that works, 'cuz the next pointers
235      *   are still on disk.
236      */
237     origCBs = afs_allCBs;
238
239     maxStoredLength = 0;
240     minj = 0;
241
242     do {
243         memset(dcList, 0, NCHUNKSATONCE * sizeof(struct dcache *));
244         high = 0;
245         moredata = FALSE;
246
247         /* lock and start over from beginning of hash chain
248          * in order to avoid a race condition. */
249         ObtainWriteLock(&afs_xdcache, 284);
250         index = afs_dvhashTbl[hash];
251
252         for (j = 0; index != NULLIDX;) {
253             if ((afs_indexFlags[index] & IFDataMod)
254                 && (afs_indexUnique[index] == avc->f.fid.Fid.Unique)) {
255                 tdc = afs_GetDSlot(index, 0);   /* refcount+1. */
256                 ReleaseReadLock(&tdc->tlock);
257                 if (!FidCmp(&tdc->f.fid, &avc->f.fid) && tdc->f.chunk >= minj) {
258                     off = tdc->f.chunk - minj;
259                     if (off < NCHUNKSATONCE) {
260                         if (dcList[off])
261                             osi_Panic("dclist slot already in use!");
262                         if (afs_mariner && !marineronce) {
263                             /* first chunk only */
264                             afs_MarinerLog("store$Storing", avc);
265                             marineronce++;
266                         }
267                         dcList[off] = tdc;
268                         if (off > high)
269                             high = off;
270                         j++;
271                         /* DCLOCKXXX: chunkBytes is protected by tdc->lock which we
272                          * can't grab here, due to lock ordering with afs_xdcache.
273                          * So, disable this shortcut for now.  -- kolya 2001-10-13
274                          */
275                         /* shortcut: big win for little files */
276                         /* tlen -= tdc->f.chunkBytes;
277                          * if (tlen <= 0)
278                          *    break;
279                          */
280                     } else {
281                         moredata = TRUE;
282                         afs_PutDCache(tdc);
283                         if (j == NCHUNKSATONCE)
284                             break;
285                     }
286                 } else {
287                     afs_PutDCache(tdc);
288                 }
289             }
290             index = afs_dvnextTbl[index];
291         }
292         ReleaseWriteLock(&afs_xdcache);
293
294         /* this guy writes chunks, puts back dcache structs, and bumps newDV */
295         /* "moredata" just says "there are more dirty chunks yet to come".
296          */
297         if (j) {
298             code =
299                 afs_CacheStoreVCache(dcList, avc, areq, sync,
300                                    minj, high, moredata,
301                                    &newDV, &maxStoredLength);
302             /* Release any zero-length dcache entries in our interval
303              * that we locked but didn't store back above.
304              */
305             for (j = 0; j <= high; j++) {
306                 tdc = dcList[j];
307                 if (tdc) {
308                     osi_Assert(tdc->f.chunkBytes == 0);
309                     ReleaseSharedLock(&tdc->lock);
310                     afs_PutDCache(tdc);
311                 }
312             }
313         }
314         /* if (j) */
315         minj += NCHUNKSATONCE;
316     } while (!code && moredata);
317
318     UpgradeSToWLock(&avc->lock, 29);
319
320     /* send a trivial truncation store if did nothing else */
321     if (code == 0) {
322         /*
323          * Call StoreMini if we haven't written enough data to extend the
324          * file at the fileserver to the client's notion of the file length.
325          */
326         if ((avc->f.truncPos != AFS_NOTRUNC)
327             || ((avc->f.states & CExtendedFile)
328                 && (maxStoredLength < avc->f.m.Length))) {
329             code = afs_StoreMini(avc, areq);
330             if (code == 0)
331                 hadd32(newDV, 1);       /* just bumped here, too */
332         }
333         avc->f.states &= ~CExtendedFile;
334     }
335
336     /*
337      * Finally, turn off DWriting, turn on DFEntryMod,
338      * update f.versionNo.
339      * A lot of this could be integrated into the loop above
340      */
341     if (!code) {
342         afs_hyper_t h_unset;
343         hones(h_unset);
344
345         minj = 0;
346
347         do {
348             moredata = FALSE;
349             memset(dcList, 0,
350                    NCHUNKSATONCE * sizeof(struct dcache *));
351
352             /* overkill, but it gets the lock in case GetDSlot needs it */
353             ObtainWriteLock(&afs_xdcache, 285);
354
355             for (j = 0, safety = 0, index = afs_dvhashTbl[hash];
356                  index != NULLIDX && safety < afs_cacheFiles + 2;) {
357
358                 if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
359                     tdc = afs_GetDSlot(index, 0);
360                     ReleaseReadLock(&tdc->tlock);
361
362                     if (!FidCmp(&tdc->f.fid, &avc->f.fid)
363                         && tdc->f.chunk >= minj) {
364                         off = tdc->f.chunk - minj;
365                         if (off < NCHUNKSATONCE) {
366                             /* this is the file, and the correct chunk range */
367                             if (j >= NCHUNKSATONCE)
368                                 osi_Panic
369                                     ("Too many dcache entries in range\n");
370                             dcList[j++] = tdc;
371                         } else {
372                             moredata = TRUE;
373                             afs_PutDCache(tdc);
374                             if (j == NCHUNKSATONCE)
375                                 break;
376                         }
377                     } else {
378                         afs_PutDCache(tdc);
379                     }
380                 }
381
382                 index = afs_dvnextTbl[index];
383             }
384             ReleaseWriteLock(&afs_xdcache);
385
386             for (i = 0; i < j; i++) {
387                 /* Iterate over the dcache entries we collected above */
388                 tdc = dcList[i];
389                 ObtainSharedLock(&tdc->lock, 677);
390
391                 /* was code here to clear IFDataMod, but it should only be done
392                  * in storedcache and storealldcache.
393                  */
394                 /* Only increase DV if we had up-to-date data to start with.
395                  * Otherwise, we could be falsely upgrading an old chunk
396                  * (that we never read) into one labelled with the current
397                  * DV #.  Also note that we check that no intervening stores
398                  * occurred, otherwise we might mislabel cache information
399                  * for a chunk that we didn't store this time
400                  */
401                 /* Don't update the version number if it's not yet set. */
402                 if (!hsame(tdc->f.versionNo, h_unset)
403                     && hcmp(tdc->f.versionNo, oldDV) >= 0) {
404
405                     if ((!(afs_dvhack || foreign)
406                          && hsame(avc->f.m.DataVersion, newDV))
407                         || ((afs_dvhack || foreign)
408                             && (origCBs == afs_allCBs))) {
409                         /* no error, this is the DV */
410
411                         UpgradeSToWLock(&tdc->lock, 678);
412                         hset(tdc->f.versionNo, avc->f.m.DataVersion);
413                         tdc->dflags |= DFEntryMod;
414                         ConvertWToSLock(&tdc->lock);
415                     }
416                 }
417
418                 ReleaseSharedLock(&tdc->lock);
419                 afs_PutDCache(tdc);
420             }
421
422             minj += NCHUNKSATONCE;
423
424         } while (moredata);
425     }
426
427     if (code) {
428         /*
429          * Invalidate chunks after an error for ccores files since
430          * afs_inactive won't be called for these and they won't be
431          * invalidated. Also discard data if it's a permanent error from the
432          * fileserver.
433          */
434         if (areq->permWriteError || (avc->f.states & CCore)) {
435             afs_InvalidateAllSegments(avc);
436         }
437     }
438     afs_Trace3(afs_iclSetp, CM_TRACE_STOREALLDONE, ICL_TYPE_POINTER, avc,
439                ICL_TYPE_INT32, avc->f.m.Length, ICL_TYPE_INT32, code);
440     /* would like a Trace5, but it doesn't exist... */
441     afs_Trace3(afs_iclSetp, CM_TRACE_AVCLOCKER, ICL_TYPE_POINTER, avc,
442                ICL_TYPE_INT32, avc->lock.wait_states, ICL_TYPE_INT32,
443                avc->lock.excl_locked);
444     afs_Trace4(afs_iclSetp, CM_TRACE_AVCLOCKEE, ICL_TYPE_POINTER, avc,
445                ICL_TYPE_INT32, avc->lock.wait_states, ICL_TYPE_INT32,
446                avc->lock.readers_reading, ICL_TYPE_INT32,
447                avc->lock.num_waiting);
448
449     /*
450      * Finally, if updated DataVersion matches newDV, we did all of the
451      * stores.  If mapDV indicates that the page cache was flushed up
452      * to when we started the store, then we can relabel them as flushed
453      * as recently as newDV.
454      * Turn off CDirty bit because the stored data is now in sync with server.
455      */
456     if (code == 0 && hcmp(avc->mapDV, oldDV) >= 0) {
457         if ((!(afs_dvhack || foreign) && hsame(avc->f.m.DataVersion, newDV))
458             || ((afs_dvhack || foreign) && (origCBs == afs_allCBs))) {
459             hset(avc->mapDV, newDV);
460             avc->f.states &= ~CDirty;
461         }
462     }
463     osi_FreeLargeSpace(dcList);
464
465     /* If not the final write a temporary error is ok. */
466     if (code && !areq->permWriteError && !(sync & AFS_LASTSTORE))
467         code = 0;
468
469     return code;
470
471 }                               /*afs_StoreAllSegments (new 03/02/94) */
472
473
474 /*
475  * afs_InvalidateAllSegments
476  *
477  * Description:
478  *      Invalidates all chunks for a given file
479  *
480  * Parameters:
481  *      avc      : Pointer to vcache entry.
482  *
483  * Environment:
484  *      For example, called after an error has been detected.  Called
485  *      with avc write-locked, and afs_xdcache unheld.
486  */
487
488 int
489 afs_InvalidateAllSegments(struct vcache *avc)
490 {
491     struct dcache *tdc;
492     afs_int32 hash;
493     afs_int32 index;
494     struct dcache **dcList;
495     int i, dcListMax, dcListCount;
496
497     AFS_STATCNT(afs_InvalidateAllSegments);
498     afs_Trace2(afs_iclSetp, CM_TRACE_INVALL, ICL_TYPE_POINTER, avc,
499                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length));
500     hash = DVHash(&avc->f.fid);
501     avc->f.truncPos = AFS_NOTRUNC;      /* don't truncate later */
502     avc->f.states &= ~CExtendedFile;    /* not any more */
503     ObtainWriteLock(&afs_xcbhash, 459);
504     afs_DequeueCallback(avc);
505     avc->f.states &= ~(CStatd | CDirty);        /* mark status information as bad, too */
506     ReleaseWriteLock(&afs_xcbhash);
507     if (avc->f.fid.Fid.Vnode & 1 || (vType(avc) == VDIR))
508         osi_dnlc_purgedp(avc);
509     /* Blow away pages; for now, only for Solaris */
510 #if     (defined(AFS_SUN5_ENV))
511     if (WriteLocked(&avc->lock))
512         osi_ReleaseVM(avc, (afs_ucred_t *)0);
513 #endif
514     /*
515      * Block out others from screwing with this table; is a read lock
516      * sufficient?
517      */
518     ObtainWriteLock(&afs_xdcache, 286);
519     dcListMax = 0;
520
521     for (index = afs_dvhashTbl[hash]; index != NULLIDX;) {
522         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
523             tdc = afs_GetDSlot(index, 0);
524             ReleaseReadLock(&tdc->tlock);
525             if (!FidCmp(&tdc->f.fid, &avc->f.fid))
526                 dcListMax++;
527             afs_PutDCache(tdc);
528         }
529         index = afs_dvnextTbl[index];
530     }
531
532     dcList = osi_Alloc(dcListMax * sizeof(struct dcache *));
533     dcListCount = 0;
534
535     for (index = afs_dvhashTbl[hash]; index != NULLIDX;) {
536         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
537             tdc = afs_GetDSlot(index, 0);
538             ReleaseReadLock(&tdc->tlock);
539             if (!FidCmp(&tdc->f.fid, &avc->f.fid)) {
540                 /* same file? we'll zap it */
541                 if (afs_indexFlags[index] & IFDataMod) {
542                     afs_stats_cmperf.cacheCurrDirtyChunks--;
543                     /* don't write it back */
544                     afs_indexFlags[index] &= ~IFDataMod;
545                 }
546                 afs_indexFlags[index] &= ~IFAnyPages;
547                 if (dcListCount < dcListMax)
548                     dcList[dcListCount++] = tdc;
549                 else
550                     afs_PutDCache(tdc);
551             } else {
552                 afs_PutDCache(tdc);
553             }
554         }
555         index = afs_dvnextTbl[index];
556     }
557     ReleaseWriteLock(&afs_xdcache);
558
559     for (i = 0; i < dcListCount; i++) {
560         tdc = dcList[i];
561
562         ObtainWriteLock(&tdc->lock, 679);
563         ZapDCE(tdc);
564         if (vType(avc) == VDIR)
565             DZap(tdc);
566         ReleaseWriteLock(&tdc->lock);
567         afs_PutDCache(tdc);
568     }
569
570     osi_Free(dcList, dcListMax * sizeof(struct dcache *));
571
572     return 0;
573 }
574
575 /*!
576  *
577  * Extend a cache file
578  *
579  * \param avc pointer to vcache to extend data for
580  * \param alen Length to extend file to
581  * \param areq
582  *
583  * \note avc must be write locked. May release and reobtain avc and GLOCK
584  */
585 int
586 afs_ExtendSegments(struct vcache *avc, afs_size_t alen, struct vrequest *areq)
587 {
588     afs_size_t offset, toAdd;
589     struct osi_file *tfile;
590     afs_int32 code = 0;
591     struct dcache *tdc;
592     void *zeros;
593
594     zeros = afs_osi_Alloc(AFS_PAGESIZE);
595     if (zeros == NULL)
596         return ENOMEM;
597     memset(zeros, 0, AFS_PAGESIZE);
598
599     while (avc->f.m.Length < alen) {
600         tdc = afs_ObtainDCacheForWriting(avc, avc->f.m.Length, alen - avc->f.m.Length, areq, 0);
601         if (!tdc) {
602             code = EIO;
603             break;
604         }
605
606         toAdd = alen - avc->f.m.Length;
607
608         offset = avc->f.m.Length - AFS_CHUNKTOBASE(tdc->f.chunk);
609         if (offset + toAdd > AFS_CHUNKTOSIZE(tdc->f.chunk)) {
610             toAdd = AFS_CHUNKTOSIZE(tdc->f.chunk) - offset;
611         }
612         tfile = afs_CFileOpen(&tdc->f.inode);
613         while(tdc->validPos < avc->f.m.Length + toAdd) {
614              afs_size_t towrite;
615
616              towrite = (avc->f.m.Length + toAdd) - tdc->validPos;
617              if (towrite > AFS_PAGESIZE) towrite = AFS_PAGESIZE;
618
619              code = afs_CFileWrite(tfile,
620                                    tdc->validPos - AFS_CHUNKTOBASE(tdc->f.chunk),
621                                    zeros, towrite);
622              tdc->validPos += towrite;
623         }
624         afs_CFileClose(tfile);
625         afs_AdjustSize(tdc, offset + toAdd );
626         avc->f.m.Length += toAdd;
627         ReleaseWriteLock(&tdc->lock);
628         afs_PutDCache(tdc);
629     }
630
631     afs_osi_Free(zeros, AFS_PAGESIZE);
632     return code;
633 }
634
635 /*
636  * afs_TruncateAllSegments
637  *
638  * Description:
639  *      Truncate a cache file.
640  *
641  * Parameters:
642  *      avc  : Ptr to vcache entry to truncate.
643  *      alen : Number of bytes to make the file.
644  *      areq : Ptr to request structure.
645  *
646  * Environment:
647  *      Called with avc write-locked; in VFS40 systems, pvnLock is also
648  *      held.
649  */
650 int
651 afs_TruncateAllSegments(struct vcache *avc, afs_size_t alen,
652                         struct vrequest *areq, afs_ucred_t *acred)
653 {
654     struct dcache *tdc;
655     afs_int32 code;
656     afs_int32 index;
657     afs_size_t newSize;
658
659     int dcCount, dcPos;
660     struct dcache **tdcArray;
661
662     AFS_STATCNT(afs_TruncateAllSegments);
663     avc->f.m.Date = osi_Time();
664     afs_Trace3(afs_iclSetp, CM_TRACE_TRUNCALL, ICL_TYPE_POINTER, avc,
665                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length),
666                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(alen));
667     if (alen >= avc->f.m.Length) {
668         /*
669          * Special speedup since Sun's vm extends the file this way;
670          * we've never written to the file thus we can just set the new
671          * length and avoid the needless calls below.
672          * Also used for ftruncate calls which can extend the file.
673          * To completely minimize the possible extra StoreMini RPC, we really
674          * should keep the ExtendedPos as well and clear this flag if we
675          * truncate below that value before we store the file back.
676          */
677         avc->f.states |= CExtendedFile;
678         avc->f.m.Length = alen;
679         return 0;
680     }
681 #if     (defined(AFS_SUN5_ENV))
682
683     /* Zero unused portion of last page */
684     osi_VM_PreTruncate(avc, alen, acred);
685
686 #endif
687
688 #if     (defined(AFS_SUN5_ENV))
689     ObtainWriteLock(&avc->vlock, 546);
690     avc->activeV++;             /* Block new getpages */
691     ReleaseWriteLock(&avc->vlock);
692 #endif
693
694     ReleaseWriteLock(&avc->lock);
695     AFS_GUNLOCK();
696
697     /* Flush pages beyond end-of-file. */
698     osi_VM_Truncate(avc, alen, acred);
699
700     AFS_GLOCK();
701     ObtainWriteLock(&avc->lock, 79);
702
703     avc->f.m.Length = alen;
704
705     if (alen < avc->f.truncPos)
706         avc->f.truncPos = alen;
707     code = DVHash(&avc->f.fid);
708
709     /* block out others from screwing with this table */
710     ObtainWriteLock(&afs_xdcache, 287);
711
712     dcCount = 0;
713     for (index = afs_dvhashTbl[code]; index != NULLIDX;) {
714         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
715             tdc = afs_GetDSlot(index, 0);
716             ReleaseReadLock(&tdc->tlock);
717             if (!FidCmp(&tdc->f.fid, &avc->f.fid))
718                 dcCount++;
719             afs_PutDCache(tdc);
720         }
721         index = afs_dvnextTbl[index];
722     }
723
724     /* Now allocate space where we can save those dcache entries, and
725      * do a second pass over them..  Since we're holding xdcache, it
726      * shouldn't be changing.
727      */
728     tdcArray = osi_Alloc(dcCount * sizeof(struct dcache *));
729     dcPos = 0;
730
731     for (index = afs_dvhashTbl[code]; index != NULLIDX;) {
732         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
733             tdc = afs_GetDSlot(index, 0);
734             ReleaseReadLock(&tdc->tlock);
735             if (!FidCmp(&tdc->f.fid, &avc->f.fid)) {
736                 /* same file, and modified, we'll store it back */
737                 if (dcPos < dcCount) {
738                     tdcArray[dcPos++] = tdc;
739                 } else {
740                     afs_PutDCache(tdc);
741                 }
742             } else {
743                 afs_PutDCache(tdc);
744             }
745         }
746         index = afs_dvnextTbl[index];
747     }
748
749     ReleaseWriteLock(&afs_xdcache);
750
751     /* Now we loop over the array of dcache entries and truncate them */
752     for (index = 0; index < dcPos; index++) {
753         struct osi_file *tfile;
754
755         tdc = tdcArray[index];
756
757         newSize = alen - AFS_CHUNKTOBASE(tdc->f.chunk);
758         if (newSize < 0)
759             newSize = 0;
760         ObtainSharedLock(&tdc->lock, 672);
761         if (newSize < tdc->f.chunkBytes && newSize < MAX_AFS_UINT32) {
762             UpgradeSToWLock(&tdc->lock, 673);
763             tfile = afs_CFileOpen(&tdc->f.inode);
764             afs_CFileTruncate(tfile, (afs_int32)newSize);
765             afs_CFileClose(tfile);
766             afs_AdjustSize(tdc, (afs_int32)newSize);
767             if (alen < tdc->validPos) {
768                 if (alen < AFS_CHUNKTOBASE(tdc->f.chunk))
769                     tdc->validPos = 0;
770                 else
771                     tdc->validPos = alen;
772             }
773             ConvertWToSLock(&tdc->lock);
774         }
775         ReleaseSharedLock(&tdc->lock);
776         afs_PutDCache(tdc);
777     }
778
779     osi_Free(tdcArray, dcCount * sizeof(struct dcache *));
780
781 #if     (defined(AFS_SUN5_ENV))
782     ObtainWriteLock(&avc->vlock, 547);
783     if (--avc->activeV == 0 && (avc->vstates & VRevokeWait)) {
784         avc->vstates &= ~VRevokeWait;
785         afs_osi_Wakeup((char *)&avc->vstates);
786     }
787     ReleaseWriteLock(&avc->vlock);
788 #endif
789
790     return 0;
791 }