libafs: afs_CacheFetchProc can't be called without a dcache pointer
[openafs.git] / src / afs / afs_fetchstore.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 #include <afsconfig.h>
11 #include "afs/param.h"
12
13 #include "afs/sysincludes.h"    /* Standard vendor system headers */
14 #ifndef AFS_LINUX22_ENV
15 #include "rpc/types.h"
16 #endif
17 #ifdef  AFS_ALPHA_ENV
18 #undef kmem_alloc
19 #undef kmem_free
20 #undef mem_alloc
21 #undef mem_free
22 #endif /* AFS_ALPHA_ENV */
23 #include "afsincludes.h"        /* Afs-based standard headers */
24 #include "afs/afs_stats.h"      /* statistics */
25 #include "afs_prototypes.h"
26
27 extern int cacheDiskType;
28
29 #ifndef AFS_NOSTATS
30 static void
31 FillStoreStats(int code, int idx, osi_timeval_t xferStartTime,
32                afs_size_t bytesToXfer, afs_size_t bytesXferred)
33 {
34     struct afs_stats_xferData *xferP;
35     osi_timeval_t xferStopTime;
36     osi_timeval_t elapsedTime;
37
38     xferP = &(afs_stats_cmfullperf.rpc.fsXferTimes[idx]);
39     osi_GetuTime(&xferStopTime);
40     (xferP->numXfers)++;
41     if (!code) {
42         (xferP->numSuccesses)++;
43         afs_stats_XferSumBytes[idx] += bytesXferred;
44         (xferP->sumBytes) += (afs_stats_XferSumBytes[idx] >> 10);
45         afs_stats_XferSumBytes[idx] &= 0x3FF;
46         if (bytesXferred < xferP->minBytes)
47             xferP->minBytes = bytesXferred;
48         if (bytesXferred > xferP->maxBytes)
49             xferP->maxBytes = bytesXferred;
50
51         /*
52          * Tally the size of the object.  Note: we tally the actual size,
53          * NOT the number of bytes that made it out over the wire.
54          */
55         if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET0) (xferP->count[0])++;
56         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET1) (xferP->count[1])++;
57         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET2) (xferP->count[2])++;
58         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET3) (xferP->count[3])++;
59         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET4) (xferP->count[4])++;
60         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET5) (xferP->count[5])++;
61         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET6) (xferP->count[6])++;
62         else if (bytesToXfer <= AFS_STATS_MAXBYTES_BUCKET7) (xferP->count[7])++;
63         else
64             (xferP->count[8])++;
65
66         afs_stats_GetDiff(elapsedTime, xferStartTime, xferStopTime);
67         afs_stats_AddTo((xferP->sumTime), elapsedTime);
68         afs_stats_SquareAddTo((xferP->sqrTime), elapsedTime);
69         if (afs_stats_TimeLessThan(elapsedTime, (xferP->minTime))) {
70             afs_stats_TimeAssign((xferP->minTime), elapsedTime);
71         }
72         if (afs_stats_TimeGreaterThan(elapsedTime, (xferP->maxTime))) {
73             afs_stats_TimeAssign((xferP->maxTime), elapsedTime);
74         }
75     }
76 }
77 #endif /* AFS_NOSTATS */
78
79 /* rock and operations for RX_FILESERVER */
80
81
82
83 afs_int32
84 rxfs_storeUfsPrepare(void *r, afs_uint32 size, afs_uint32 *tlen)
85 {
86     *tlen = (size > AFS_LRALLOCSIZ ?  AFS_LRALLOCSIZ : size);
87     return 0;
88 }
89
90 afs_int32
91 rxfs_storeMemPrepare(void *r, afs_uint32 size, afs_uint32 *tlen)
92 {
93     afs_int32 code;
94     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *) r;
95
96     RX_AFS_GUNLOCK();
97     code = rx_WritevAlloc(v->call, v->tiov, &v->tnio, RX_MAXIOVECS, size);
98     RX_AFS_GLOCK();
99     if (code <= 0) {
100         code = rx_Error(v->call);
101         if (!code)
102             code = -33;
103     }
104     else {
105         *tlen = code;
106         code = 0;
107     }
108     return code;
109 }
110
111 afs_int32
112 rxfs_storeUfsRead(void *r, struct osi_file *tfile, afs_uint32 offset,
113                   afs_uint32 tlen, afs_uint32 *bytesread)
114 {
115     afs_int32 code;
116     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)r;
117
118     *bytesread = 0;
119     code = afs_osi_Read(tfile, -1, v->tbuffer, tlen);
120     if (code < 0)
121         return EIO;
122     *bytesread = code;
123     if (code == tlen)
124         return 0;
125 #if defined(KERNEL_HAVE_UERROR)
126     if (getuerror())
127         return EIO;
128 #endif
129     return 0;
130 }
131
132 afs_int32
133 rxfs_storeMemRead(void *r, struct osi_file *tfile, afs_uint32 offset,
134                   afs_uint32 tlen, afs_uint32 *bytesread)
135 {
136     afs_int32 code;
137     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)r;
138     struct memCacheEntry *mceP = (struct memCacheEntry *)tfile;
139
140     *bytesread = 0;
141     code = afs_MemReadvBlk(mceP, offset, v->tiov, v->tnio, tlen);
142     if (code != tlen)
143         return -33;
144     *bytesread = code;
145     return 0;
146 }
147
148 afs_int32
149 rxfs_storeMemWrite(void *r, afs_uint32 l, afs_uint32 *byteswritten)
150 {
151     afs_int32 code;
152     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)r;
153
154     RX_AFS_GUNLOCK();
155     code = rx_Writev(v->call, v->tiov, v->tnio, l);
156     RX_AFS_GLOCK();
157     if (code != l) {
158         code = rx_Error(v->call);
159         return (code ? code : -33);
160     }
161     *byteswritten = code;
162     return 0;
163 }
164
165 afs_int32
166 rxfs_storeUfsWrite(void *r, afs_uint32 l, afs_uint32 *byteswritten)
167 {
168     afs_int32 code;
169     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)r;
170
171     RX_AFS_GUNLOCK();
172     code = rx_Write(v->call, v->tbuffer, l);
173         /* writing 0 bytes will
174          * push a short packet.  Is that really what we want, just because the
175          * data didn't come back from the disk yet?  Let's try it and see. */
176     RX_AFS_GLOCK();
177     if (code != l) {
178         code = rx_Error(v->call);
179         return (code ? code : -33);
180     }
181     *byteswritten = code;
182     return 0;
183 }
184
185 afs_int32
186 rxfs_storePadd(void *rock, afs_uint32 size)
187 {
188     afs_int32 code = 0;
189     afs_uint32 tlen;
190     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)rock;
191
192     if (!v->tbuffer)
193         v->tbuffer = osi_AllocLargeSpace(AFS_LRALLOCSIZ);
194     memset(v->tbuffer, 0, AFS_LRALLOCSIZ);
195
196     while (size) {
197         tlen = (size > AFS_LRALLOCSIZ ? AFS_LRALLOCSIZ : size);
198         RX_AFS_GUNLOCK();
199         code = rx_Write(v->call, v->tbuffer, tlen);
200         RX_AFS_GLOCK();
201
202         if (code != tlen)
203             return -33; /* XXX */
204         size -= tlen;
205     }
206     return 0;
207 }
208
209 afs_int32
210 rxfs_storeStatus(void *rock)
211 {
212     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)rock;
213
214     if (rx_GetRemoteStatus(v->call) & 1)
215         return 0;
216     return 1;
217 }
218
219 afs_int32
220 rxfs_storeClose(void *r, struct AFSFetchStatus *OutStatus, int *doProcessFS)
221 {
222     afs_int32 code;
223     struct AFSVolSync tsync;
224     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)r;
225
226     if (!v->call)
227         return -1;
228     RX_AFS_GUNLOCK();
229 #ifdef AFS_64BIT_CLIENT
230     if (!v->hasNo64bit)
231         code = EndRXAFS_StoreData64(v->call, OutStatus, &tsync);
232     else
233 #endif
234         code = EndRXAFS_StoreData(v->call, OutStatus, &tsync);
235     RX_AFS_GLOCK();
236     if (!code)
237         *doProcessFS = 1;       /* Flag to run afs_ProcessFS() later on */
238
239     return code;
240 }
241
242 afs_int32
243 rxfs_storeDestroy(void **r, afs_int32 error)
244 {
245     afs_int32 code = error;
246     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)*r;
247
248     *r = NULL;
249     if (v->call) {
250         RX_AFS_GUNLOCK();
251         code = rx_EndCall(v->call, error);
252         RX_AFS_GLOCK();
253         if (!code && error)
254             code = error;
255     }
256     if (v->tbuffer)
257         osi_FreeLargeSpace(v->tbuffer);
258     if (v->tiov)
259         osi_FreeSmallSpace(v->tiov);
260     osi_FreeSmallSpace(v);
261     return code;
262 }
263
264 afs_int32
265 afs_GenericStoreProc(struct storeOps *ops, void *rock,
266                      struct dcache *tdc, int *shouldwake,
267                      afs_size_t *bytesXferred)
268 {
269     struct rxfs_storeVariables *svar = rock;
270     afs_uint32 tlen, bytesread, byteswritten;
271     afs_int32 code = 0;
272     int offset = 0;
273     afs_size_t size;
274     struct osi_file *tfile;
275
276     size = tdc->f.chunkBytes;
277
278     tfile = afs_CFileOpen(&tdc->f.inode);
279
280     while ( size > 0 ) {
281         code = (*ops->prepare)(rock, size, &tlen);
282         if ( code )
283             break;
284
285         code = (*ops->read)(rock, tfile, offset, tlen, &bytesread);
286         if (code)
287             break;
288
289         tlen = bytesread;
290         code = (*ops->write)(rock, tlen, &byteswritten);
291         if (code)
292             break;
293 #ifndef AFS_NOSTATS
294         *bytesXferred += byteswritten;
295 #endif /* AFS_NOSTATS */
296
297         offset += tlen;
298         size -= tlen;
299         /*
300          * if file has been locked on server, can allow
301          * store to continue
302          */
303         if (shouldwake && *shouldwake && ((*ops->status)(rock) == 0)) {
304             *shouldwake = 0;    /* only do this once */
305             afs_wakeup(svar->vcache);
306         }
307     }
308     afs_CFileClose(tfile);
309
310     return code;
311 }
312
313 static
314 struct storeOps rxfs_storeUfsOps = {
315 #ifndef HAVE_STRUCT_LABEL_SUPPORT
316     rxfs_storeUfsPrepare,
317     rxfs_storeUfsRead,
318     rxfs_storeUfsWrite,
319     rxfs_storeStatus,
320     rxfs_storePadd,
321     rxfs_storeClose,
322     rxfs_storeDestroy,
323     afs_GenericStoreProc
324 #else
325     .prepare =  rxfs_storeUfsPrepare,
326     .read =     rxfs_storeUfsRead,
327     .write =    rxfs_storeUfsWrite,
328     .status =   rxfs_storeStatus,
329     .padd =     rxfs_storePadd,
330     .close =    rxfs_storeClose,
331     .destroy =  rxfs_storeDestroy,
332 #ifdef AFS_LINUX26_ENV
333     .storeproc = afs_linux_storeproc
334 #else
335     .storeproc = afs_GenericStoreProc
336 #endif
337 #endif
338 };
339
340 static
341 struct storeOps rxfs_storeMemOps = {
342 #ifndef HAVE_STRUCT_LABEL_SUPPORT
343     rxfs_storeMemPrepare,
344     rxfs_storeMemRead,
345     rxfs_storeMemWrite,
346     rxfs_storeStatus,
347     rxfs_storePadd,
348     rxfs_storeClose,
349     rxfs_storeDestroy,
350     afs_GenericStoreProc
351 #else
352     .prepare =  rxfs_storeMemPrepare,
353     .read =     rxfs_storeMemRead,
354     .write =    rxfs_storeMemWrite,
355     .status =   rxfs_storeStatus,
356     .padd =     rxfs_storePadd,
357     .close =    rxfs_storeClose,
358     .destroy =  rxfs_storeDestroy,
359     .storeproc = afs_GenericStoreProc
360 #endif
361 };
362
363 afs_int32
364 rxfs_storeInit(struct vcache *avc, struct afs_conn *tc,
365                 struct rx_connection *rxconn, afs_size_t base,
366                 afs_size_t bytes, afs_size_t length,
367                 int sync, struct storeOps **ops, void **rock)
368 {
369     afs_int32 code;
370     struct rxfs_storeVariables *v;
371
372     if ( !tc )
373         return -1;
374
375     v = osi_AllocSmallSpace(sizeof(struct rxfs_storeVariables));
376     if (!v)
377         osi_Panic("rxfs_storeInit: osi_AllocSmallSpace returned NULL\n");
378     memset(v, 0, sizeof(struct rxfs_storeVariables));
379
380     v->InStatus.ClientModTime = avc->f.m.Date;
381     v->InStatus.Mask = AFS_SETMODTIME;
382     v->vcache = avc;
383     if (sync & AFS_SYNC)
384         v->InStatus.Mask |= AFS_FSYNC;
385     RX_AFS_GUNLOCK();
386     v->call = rx_NewCall(rxconn);
387     if (v->call) {
388 #ifdef AFS_64BIT_CLIENT
389         if (!afs_serverHasNo64Bit(tc))
390             code = StartRXAFS_StoreData64(
391                                 v->call, (struct AFSFid*)&avc->f.fid.Fid,
392                                 &v->InStatus, base, bytes, length);
393         else
394             if (length > 0xFFFFFFFF)
395                 code = EFBIG;
396             else {
397                 afs_int32 t1 = base, t2 = bytes, t3 = length;
398                 code = StartRXAFS_StoreData(v->call,
399                                         (struct AFSFid *) &avc->f.fid.Fid,
400                                          &v->InStatus, t1, t2, t3);
401             }
402 #else /* AFS_64BIT_CLIENT */
403         code = StartRXAFS_StoreData(v->call, (struct AFSFid *)&avc->f.fid.Fid,
404                                     &v->InStatus, base, bytes, length);
405 #endif /* AFS_64BIT_CLIENT */
406     } else
407         code = -1;
408     RX_AFS_GLOCK();
409     if (code) {
410         osi_FreeSmallSpace(v);
411         return code;
412     }
413     if (cacheDiskType == AFS_FCACHE_TYPE_UFS) {
414         v->tbuffer = osi_AllocLargeSpace(AFS_LRALLOCSIZ);
415         if (!v->tbuffer)
416             osi_Panic
417             ("rxfs_storeInit: osi_AllocLargeSpace for iovecs returned NULL\n");
418         *ops = (struct storeOps *) &rxfs_storeUfsOps;
419     } else {
420         v->tiov = osi_AllocSmallSpace(sizeof(struct iovec) * RX_MAXIOVECS);
421         if (!v->tiov)
422             osi_Panic
423             ("rxfs_storeInit: osi_AllocSmallSpace for iovecs returned NULL\n");
424         *ops = (struct storeOps *) &rxfs_storeMemOps;
425 #ifdef notdef
426         /* do this at a higher level now -- it's a parameter */
427         /* for now, only do 'continue from close' code if file fits in one
428          * chunk.  Could clearly do better: if only one modified chunk
429          * then can still do this.  can do this on *last* modified chunk */
430         length = avc->f.m.Length - 1; /* byte position of last byte we'll store */
431         if (shouldWake) {
432             if (AFS_CHUNK(length) != 0)
433                 *shouldWake = 0;
434             else
435                 *shouldWake = 1;
436         }
437 #endif /* notdef */
438     }
439
440     *rock = (void *)v;
441     return 0;
442 }
443 unsigned int storeallmissing = 0;
444 /*!
445  *      Called for each chunk upon store.
446  *
447  * \param avc Ptr to the vcache entry of the file being stored.
448  * \param dclist pointer to the list of dcaches
449  * \param bytes total number of bytes for the current operation
450  * \param anewDV Ptr to the dataversion after store
451  * \param doProcessFS pointer to the "do process FetchStatus" flag
452  * \param OutStatus pointer to the FetchStatus as returned by the fileserver
453  * \param nchunks number of dcaches to consider
454  * \param nomore copy of the "no more data" flag
455  * \param ops pointer to the block of storeOps to be used for this operation
456  * \param rock pointer to the opaque protocol-specific data of this operation
457  */
458 afs_int32
459 afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
460                       afs_size_t bytes, afs_hyper_t *anewDV, int *doProcessFS,
461                       struct AFSFetchStatus *OutStatus, afs_uint32 nchunks,
462                       int nomore, struct storeOps *ops, void *rock)
463 {
464     int *shouldwake = NULL;
465     unsigned int i;
466     afs_int32 code = 0;
467     afs_size_t bytesXferred;
468
469 #ifndef AFS_NOSTATS
470     osi_timeval_t xferStartTime;        /*FS xfer start time */
471     afs_size_t bytesToXfer = 10000;     /* # bytes to xfer */
472 #endif /* AFS_NOSTATS */
473     XSTATS_DECLS;
474     osi_Assert(nchunks != 0);
475
476     for (i = 0; i < nchunks && !code; i++) {
477         int stored = 0;
478         struct dcache *tdc = dclist[i];
479         afs_int32 size;
480
481         if (!tdc) {
482             afs_warn("afs: missing dcache!\n");
483             storeallmissing++;
484             continue;   /* panic? */
485         }
486         size = tdc->f.chunkBytes;
487         afs_Trace4(afs_iclSetp, CM_TRACE_STOREALL2, ICL_TYPE_POINTER, avc,
488                     ICL_TYPE_INT32, tdc->f.chunk, ICL_TYPE_INT32, tdc->index,
489                     ICL_TYPE_INT32, afs_inode2trace(&tdc->f.inode));
490         shouldwake = 0;
491         if (nomore) {
492             if (avc->asynchrony == -1) {
493                 if (afs_defaultAsynchrony > (bytes - stored))
494                     shouldwake = &nomore;
495             }
496             else if ((afs_uint32) avc->asynchrony >= (bytes - stored))
497                 shouldwake = &nomore;
498         }
499
500         afs_Trace4(afs_iclSetp, CM_TRACE_STOREPROC, ICL_TYPE_POINTER, avc,
501                     ICL_TYPE_FID, &(avc->f.fid), ICL_TYPE_OFFSET,
502                     ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, size);
503
504         AFS_STATCNT(CacheStoreProc);
505
506         XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_STOREDATA);
507         avc->f.truncPos = AFS_NOTRUNC;
508 #ifndef AFS_NOSTATS
509         /*
510          * In this case, size is *always* the amount of data we'll be trying
511          * to ship here.
512          */
513         bytesToXfer = size;
514
515         osi_GetuTime(&xferStartTime);
516 #endif /* AFS_NOSTATS */
517         bytesXferred = 0;
518
519         code = (*ops->storeproc)(ops, rock, tdc, shouldwake,
520                                      &bytesXferred);
521
522         afs_Trace4(afs_iclSetp, CM_TRACE_STOREPROC, ICL_TYPE_POINTER, avc,
523                     ICL_TYPE_FID, &(avc->f.fid), ICL_TYPE_OFFSET,
524                     ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, size);
525
526 #ifndef AFS_NOSTATS
527         FillStoreStats(code, AFS_STATS_FS_XFERIDX_STOREDATA,
528                     xferStartTime, bytesToXfer, bytesXferred);
529 #endif /* AFS_NOSTATS */
530
531         if ((tdc->f.chunkBytes < afs_OtherCSize)
532                 && (i < (nchunks - 1)) && code == 0) {
533             code = (*ops->padd)(rock, afs_OtherCSize - tdc->f.chunkBytes);
534         }
535         stored += tdc->f.chunkBytes;
536         /* ideally, I'd like to unlock the dcache and turn
537          * off the writing bit here, but that would
538          * require being able to retry StoreAllSegments in
539          * the event of a failure. It only really matters
540          * if user can't read from a 'locked' dcache or
541          * one which has the writing bit turned on. */
542     }
543
544     if (!code) {
545         code = (*ops->close)(rock, OutStatus, doProcessFS);
546         /* if this succeeds, dv has been bumped. */
547         if (*doProcessFS) {
548             hadd32(*anewDV, 1);
549         }
550         XSTATS_END_TIME;
551     }
552     if (ops)
553         code = (*ops->destroy)(&rock, code);
554
555     /* if we errored, can't trust this. */
556     if (code)
557         *doProcessFS = 0;
558
559     return code;
560 }
561
562 #define lmin(a,b) (((a) < (b)) ? (a) : (b))
563 /*!
564  *      Called upon store.
565  *
566  * \param dclist pointer to the list of dcaches
567  * \param avc Ptr to the vcache entry.
568  * \param areq Ptr to the request structure
569  * \param sync sync flag
570  * \param minj the chunk offset for this call
571  * \param high index of last dcache to store
572  * \param moredata the moredata flag
573  * \param anewDV Ptr to the dataversion after store
574  * \param amaxStoredLength Ptr to the amount of that is actually stored
575  *
576  * \note Environment: Nothing interesting.
577  */
578 int
579 afs_CacheStoreVCache(struct dcache **dcList, struct vcache *avc,
580                      struct vrequest *areq, int sync, unsigned int minj,
581                      unsigned int high, unsigned int moredata,
582                      afs_hyper_t *anewDV, afs_size_t *amaxStoredLength)
583 {
584     afs_int32 code = 0;
585     struct storeOps *ops;
586     void * rock = NULL;
587     unsigned int i, j;
588
589     struct AFSFetchStatus OutStatus;
590     int doProcessFS = 0;
591     afs_size_t base, bytes, length;
592     int nomore;
593     unsigned int first = 0;
594     struct afs_conn *tc;
595     struct rx_connection *rxconn;
596
597     for (bytes = 0, j = 0; !code && j <= high; j++) {
598         if (dcList[j]) {
599             ObtainSharedLock(&(dcList[j]->lock), 629);
600             if (!bytes)
601                 first = j;
602             bytes += dcList[j]->f.chunkBytes;
603             if ((dcList[j]->f.chunkBytes < afs_OtherCSize)
604                         && (dcList[j]->f.chunk - minj < high)
605                         && dcList[j + 1]) {
606                 int sbytes = afs_OtherCSize - dcList[j]->f.chunkBytes;
607                 bytes += sbytes;
608             }
609         }
610         if (bytes && (j == high || !dcList[j + 1])) {
611             afs_uint32 nchunks;
612             struct dcache **dclist = &dcList[first];
613             /* base = AFS_CHUNKTOBASE(dcList[first]->f.chunk); */
614             base = AFS_CHUNKTOBASE(first + minj);
615             /*
616              *
617              * take a list of dcache structs and send them all off to the server
618              * the list must be in order, and the chunks contiguous.
619              * Note - there is no locking done by this code currently.  For
620              * safety's sake, xdcache could be locked over the entire call.
621              * However, that pretty well ties up all the threads.  Meantime, all
622              * the chunks _MUST_ have their refcounts bumped.
623              * The writes done before a store back will clear setuid-ness
624              * in cache file.
625              * We can permit CacheStoreProc to wake up the user process IFF we
626              * are doing the last RPC for this close, ie, storing back the last
627              * set of contiguous chunks of a file.
628              */
629
630             nchunks = 1 + j - first;
631             nomore = !(moredata || (j != high));
632             length = lmin(avc->f.m.Length, avc->f.truncPos);
633             afs_Trace4(afs_iclSetp, CM_TRACE_STOREDATA64,
634                        ICL_TYPE_FID, &avc->f.fid.Fid, ICL_TYPE_OFFSET,
635                        ICL_HANDLE_OFFSET(base), ICL_TYPE_OFFSET,
636                        ICL_HANDLE_OFFSET(bytes), ICL_TYPE_OFFSET,
637                        ICL_HANDLE_OFFSET(length));
638
639             do {
640                 tc = afs_Conn(&avc->f.fid, areq, 0, &rxconn);
641
642 #ifdef AFS_64BIT_CLIENT
643               restart:
644 #endif
645                 code = rxfs_storeInit(avc, tc, rxconn, base, bytes, length,
646                                       sync, &ops, &rock);
647                 if ( !code ) {
648                     code = afs_CacheStoreDCaches(avc, dclist, bytes, anewDV,
649                                                  &doProcessFS, &OutStatus,
650                                                  nchunks, nomore, ops, rock);
651                 }
652
653 #ifdef AFS_64BIT_CLIENT
654                 if (code == RXGEN_OPCODE && !afs_serverHasNo64Bit(tc)) {
655                     afs_serverSetNo64Bit(tc);
656                     goto restart;
657                 }
658 #endif /* AFS_64BIT_CLIENT */
659             } while (afs_Analyze
660                      (tc, rxconn, code, &avc->f.fid, areq,
661                       AFS_STATS_FS_RPCIDX_STOREDATA, SHARED_LOCK,
662                       NULL));
663
664             /* put back all remaining locked dcache entries */
665             for (i = 0; i < nchunks; i++) {
666                 struct dcache *tdc = dclist[i];
667                 if (!code) {
668                     if (afs_indexFlags[tdc->index] & IFDataMod) {
669                         /*
670                          * LOCKXXX -- should hold afs_xdcache(W) when
671                          * modifying afs_indexFlags.
672                          */
673                         afs_indexFlags[tdc->index] &= ~IFDataMod;
674                         afs_stats_cmperf.cacheCurrDirtyChunks--;
675                         afs_indexFlags[tdc->index] &= ~IFDirtyPages;
676                         if (sync & AFS_VMSYNC_INVAL) {
677                             /* since we have invalidated all the pages of this
678                              ** vnode by calling osi_VM_TryToSmush, we can
679                              ** safely mark this dcache entry as not having
680                              ** any pages. This vnode now becomes eligible for
681                              ** reclamation by getDownD.
682                              */
683                             afs_indexFlags[tdc->index] &= ~IFAnyPages;
684                         }
685                     }
686                 }
687                 UpgradeSToWLock(&tdc->lock, 628);
688                 tdc->f.states &= ~DWriting;     /* correct? */
689                 tdc->dflags |= DFEntryMod;
690                 ReleaseWriteLock(&tdc->lock);
691                 afs_PutDCache(tdc);
692                 /* Mark the entry as released */
693                 dclist[i] = NULL;
694             }
695
696             if (doProcessFS) {
697                 /* Now copy out return params */
698                 UpgradeSToWLock(&avc->lock, 28);        /* keep out others for a while */
699                 afs_ProcessFS(avc, &OutStatus, areq);
700                 /* Keep last (max) size of file on server to see if
701                  * we need to call afs_StoreMini to extend the file.
702                  */
703                 if (!moredata)
704                     *amaxStoredLength = OutStatus.Length;
705                 ConvertWToSLock(&avc->lock);
706                 doProcessFS = 0;
707             }
708
709             if (code) {
710                 for (j++; j <= high; j++) {
711                     if (dcList[j]) {
712                         ReleaseSharedLock(&(dcList[j]->lock));
713                         afs_PutDCache(dcList[j]);
714                         /* Releasing entry */
715                         dcList[j] = NULL;
716                     }
717                 }
718             }
719
720             afs_Trace2(afs_iclSetp, CM_TRACE_STOREALLDCDONE,
721                        ICL_TYPE_POINTER, avc, ICL_TYPE_INT32, code);
722             bytes = 0;
723         }
724     }
725
726     return code;
727 }
728
729 /* rock and operations for RX_FILESERVER */
730
731 struct rxfs_fetchVariables {
732     struct rx_call *call;
733     char *tbuffer;
734     struct iovec *iov;
735     afs_int32 nio;
736     afs_int32 hasNo64bit;
737     afs_int32 iovno;
738     afs_int32 iovmax;
739 };
740
741 afs_int32
742 rxfs_fetchUfsRead(void *r, afs_uint32 size, afs_uint32 *bytesread)
743 {
744     afs_int32 code;
745     afs_uint32 tlen;
746     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
747
748     *bytesread = 0;
749     tlen = (size > AFS_LRALLOCSIZ ?  AFS_LRALLOCSIZ : size);
750     RX_AFS_GUNLOCK();
751     code = rx_Read(v->call, v->tbuffer, tlen);
752     RX_AFS_GLOCK();
753     if (code <= 0)
754         return -34;
755     *bytesread = code;
756     return 0;
757 }
758
759 afs_int32
760 rxfs_fetchMemRead(void *r, afs_uint32 tlen, afs_uint32 *bytesread)
761 {
762     afs_int32 code;
763     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
764
765     *bytesread = 0;
766     RX_AFS_GUNLOCK();
767     code = rx_Readv(v->call, v->iov, &v->nio, RX_MAXIOVECS, tlen);
768     RX_AFS_GLOCK();
769     if (code <= 0)
770         return -34;
771     *bytesread = code;
772     return 0;
773 }
774
775
776 afs_int32
777 rxfs_fetchMemWrite(void *r, struct osi_file *fP, afs_uint32 offset,
778                    afs_uint32 tlen, afs_uint32 *byteswritten)
779 {
780     afs_int32 code;
781     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
782     struct memCacheEntry *mceP = (struct memCacheEntry *)fP;
783
784     code = afs_MemWritevBlk(mceP, offset, v->iov, v->nio, tlen);
785     if (code != tlen) {
786         return EIO;
787     }
788     *byteswritten = code;
789     return 0;
790 }
791
792 afs_int32
793 rxfs_fetchUfsWrite(void *r, struct osi_file *fP, afs_uint32 offset,
794                    afs_uint32 tlen, afs_uint32 *byteswritten)
795 {
796     afs_int32 code;
797     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
798
799     code = afs_osi_Write(fP, -1, v->tbuffer, tlen);
800     if (code != tlen) {
801         return EIO;
802     }
803     *byteswritten = code;
804     return 0;
805 }
806
807
808 afs_int32
809 rxfs_fetchClose(void *r, struct vcache *avc, struct dcache * adc,
810                 struct afs_FetchOutput *o)
811 {
812     afs_int32 code, code1 = 0;
813     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
814
815     if (!v->call)
816         return -1;
817
818     RX_AFS_GUNLOCK();
819 #ifdef AFS_64BIT_CLIENT
820     if (!v->hasNo64bit)
821         code = EndRXAFS_FetchData64(v->call, &o->OutStatus, &o->CallBack,
822                                 &o->tsync);
823     else
824 #endif
825         code = EndRXAFS_FetchData(v->call, &o->OutStatus, &o->CallBack,
826                                 &o->tsync);
827     code1 = rx_EndCall(v->call, code);
828     RX_AFS_GLOCK();
829     if (!code && code1)
830         code = code1;
831
832     v->call = NULL;
833
834     return code;
835 }
836
837 afs_int32
838 rxfs_fetchDestroy(void **r, afs_int32 error)
839 {
840     afs_int32 code = error;
841     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)*r;
842
843     *r = NULL;
844     if (v->call) {
845         RX_AFS_GUNLOCK();
846         code = rx_EndCall(v->call, error);
847         RX_AFS_GLOCK();
848         if (error)
849             code = error;
850     }
851     if (v->tbuffer)
852         osi_FreeLargeSpace(v->tbuffer);
853     if (v->iov)
854         osi_FreeSmallSpace(v->iov);
855     osi_FreeSmallSpace(v);
856     return code;
857 }
858
859 afs_int32
860 rxfs_fetchMore(void *r, afs_int32 *length, afs_uint32 *moredata)
861 {
862     afs_int32 code;
863     struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
864
865     /*
866      * The fetch protocol is extended for the AFS/DFS translator
867      * to allow multiple blocks of data, each with its own length,
868      * to be returned. As long as the top bit is set, there are more
869      * blocks expected.
870      *
871      * We do not do this for AFS file servers because they sometimes
872      * return large negative numbers as the transfer size.
873      */
874     if (*moredata) {
875         RX_AFS_GUNLOCK();
876         code = rx_Read(v->call, (void *)length, sizeof(afs_int32));
877         RX_AFS_GLOCK();
878         *length = ntohl(*length);
879         if (code != sizeof(afs_int32)) {
880             code = rx_Error(v->call);
881             *moredata = 0;
882             return (code ? code : -1);  /* try to return code, not -1 */
883         }
884     }
885     *moredata = *length & 0x80000000;
886     *length &= ~0x80000000;
887     return 0;
888 }
889
890 static
891 struct fetchOps rxfs_fetchUfsOps = {
892     rxfs_fetchMore,
893     rxfs_fetchUfsRead,
894     rxfs_fetchUfsWrite,
895     rxfs_fetchClose,
896     rxfs_fetchDestroy
897 };
898
899 static
900 struct fetchOps rxfs_fetchMemOps = {
901     rxfs_fetchMore,
902     rxfs_fetchMemRead,
903     rxfs_fetchMemWrite,
904     rxfs_fetchClose,
905     rxfs_fetchDestroy
906 };
907
908 afs_int32
909 rxfs_fetchInit(struct afs_conn *tc, struct rx_connection *rxconn,
910                struct vcache *avc, afs_offs_t base,
911                afs_uint32 size, afs_int32 *alength, struct dcache *adc,
912                struct osi_file *fP, struct fetchOps **ops, void **rock)
913 {
914     struct rxfs_fetchVariables *v;
915     int code = 0, code1 = 0;
916 #ifdef AFS_64BIT_CLIENT
917     afs_uint32 length_hi = 0;
918 #endif
919     afs_uint32 length, bytes;
920
921     v = (struct rxfs_fetchVariables *)
922             osi_AllocSmallSpace(sizeof(struct rxfs_fetchVariables));
923     if (!v)
924         osi_Panic("rxfs_fetchInit: osi_AllocSmallSpace returned NULL\n");
925     memset(v, 0, sizeof(struct rxfs_fetchVariables));
926
927     RX_AFS_GUNLOCK();
928     v->call = rx_NewCall(rxconn);
929     RX_AFS_GLOCK();
930     if (v->call) {
931 #ifdef AFS_64BIT_CLIENT
932         afs_size_t length64;     /* as returned from server */
933         if (!afs_serverHasNo64Bit(tc)) {
934             afs_uint64 llbytes = size;
935             RX_AFS_GUNLOCK();
936             code = StartRXAFS_FetchData64(v->call,
937                                           (struct AFSFid *) &avc->f.fid.Fid,
938                                           base, llbytes);
939             if (code != 0) {
940                 RX_AFS_GLOCK();
941                 afs_Trace2(afs_iclSetp, CM_TRACE_FETCH64CODE,
942                                ICL_TYPE_POINTER, avc, ICL_TYPE_INT32, code);
943             } else {
944                 bytes = rx_Read(v->call, (char *)&length_hi, sizeof(afs_int32));
945                 RX_AFS_GLOCK();
946                 if (bytes == sizeof(afs_int32)) {
947                     length_hi = ntohl(length_hi);
948                 } else {
949                     code = rx_Error(v->call);
950                     RX_AFS_GUNLOCK();
951                     code1 = rx_EndCall(v->call, code);
952                     RX_AFS_GLOCK();
953                     v->call = NULL;
954                 }
955             }
956         }
957         if (code == RXGEN_OPCODE || afs_serverHasNo64Bit(tc)) {
958             if (base > 0x7FFFFFFF) {
959                 code = EFBIG;
960             } else {
961                 afs_uint32 pos;
962                 pos = base;
963                 RX_AFS_GUNLOCK();
964                 if (!v->call)
965                     v->call = rx_NewCall(rxconn);
966                 code =
967                     StartRXAFS_FetchData(
968                                 v->call, (struct AFSFid*)&avc->f.fid.Fid,
969                                 pos, size);
970                 RX_AFS_GLOCK();
971             }
972             afs_serverSetNo64Bit(tc);
973         }
974         if (!code) {
975             RX_AFS_GUNLOCK();
976             bytes = rx_Read(v->call, (char *)&length, sizeof(afs_int32));
977             RX_AFS_GLOCK();
978             if (bytes == sizeof(afs_int32))
979                 length = ntohl(length);
980             else {
981                 RX_AFS_GUNLOCK();
982                 code = rx_Error(v->call);
983                 code1 = rx_EndCall(v->call, code);
984                 v->call = NULL;
985                 RX_AFS_GLOCK();
986             }
987         }
988         FillInt64(length64, length_hi, length);
989         afs_Trace3(afs_iclSetp, CM_TRACE_FETCH64LENG,
990                    ICL_TYPE_POINTER, avc, ICL_TYPE_INT32, code,
991                    ICL_TYPE_OFFSET,
992                    ICL_HANDLE_OFFSET(length64));
993         *alength = length;
994 #else /* AFS_64BIT_CLIENT */
995         RX_AFS_GUNLOCK();
996         code = StartRXAFS_FetchData(v->call, (struct AFSFid *)&avc->f.fid.Fid,
997                                      base, size);
998         RX_AFS_GLOCK();
999         if (code == 0) {
1000             RX_AFS_GUNLOCK();
1001             bytes =
1002                 rx_Read(v->call, (char *)&length, sizeof(afs_int32));
1003             RX_AFS_GLOCK();
1004             if (bytes == sizeof(afs_int32)) {
1005                 *alength = ntohl(length);
1006             } else {
1007                 code = rx_Error(v->call);
1008                 code1 = rx_EndCall(v->call, code);
1009                 v->call = NULL;
1010             }
1011         }
1012 #endif /* AFS_64BIT_CLIENT */
1013     } else
1014         code = -1;
1015
1016     /* We need to cast here, in order to avoid issues if *alength is
1017      * negative. Some, older, fileservers can return a negative length,
1018      * which the rest of the code deals correctly with. */
1019     if (code == 0 && *alength > (afs_int32) size) {
1020         /* The fileserver told us it is going to send more data than we
1021          * requested. It shouldn't do that, and accepting that much data
1022          * can make us take up more cache space than we're supposed to,
1023          * so error. */
1024         code = rx_Error(v->call);
1025         RX_AFS_GUNLOCK();
1026         code1 = rx_EndCall(v->call, code);
1027         RX_AFS_GLOCK();
1028         v->call = NULL;
1029         code = EIO;
1030     }
1031
1032     if (!code && code1)
1033         code = code1;
1034
1035     if (code) {
1036         osi_FreeSmallSpace(v);
1037         return code;
1038     }
1039     if (cacheDiskType == AFS_FCACHE_TYPE_UFS) {
1040         v->tbuffer = osi_AllocLargeSpace(AFS_LRALLOCSIZ);
1041         if (!v->tbuffer)
1042             osi_Panic("rxfs_fetchInit: osi_AllocLargeSpace for iovecs returned NULL\n");
1043         osi_Assert(WriteLocked(&adc->lock));
1044         fP->offset = 0;
1045         *ops = (struct fetchOps *) &rxfs_fetchUfsOps;
1046     }
1047     else {
1048         afs_Trace4(afs_iclSetp, CM_TRACE_MEMFETCH, ICL_TYPE_POINTER, avc,
1049                    ICL_TYPE_POINTER, fP, ICL_TYPE_OFFSET,
1050                    ICL_HANDLE_OFFSET(base), ICL_TYPE_INT32, length);
1051         /*
1052          * We need to alloc the iovecs on the heap so that they are "pinned"
1053          * rather than declare them on the stack - defect 11272
1054          */
1055         v->iov = osi_AllocSmallSpace(sizeof(struct iovec) * RX_MAXIOVECS);
1056         if (!v->iov)
1057             osi_Panic("rxfs_fetchInit: osi_AllocSmallSpace for iovecs returned NULL\n");
1058         *ops = (struct fetchOps *) &rxfs_fetchMemOps;
1059     }
1060     *rock = (void *)v;
1061     return 0;
1062 }
1063
1064
1065 /*!
1066  * Routine called on fetch; also tells people waiting for data
1067  *      that more has arrived.
1068  *
1069  * \param tc Ptr to the AFS connection structure.
1070  * \param rxconn Ptr to the Rx connection structure.
1071  * \param fP File descriptor for the cache file.
1072  * \param base Base offset to fetch.
1073  * \param adc Ptr to the dcache entry for the file, write-locked.
1074  * \param avc Ptr to the vcache entry for the file.
1075  * \param size Amount of data that should be fetched.
1076  * \param tsmall Ptr to the afs_FetchOutput structure.
1077  *
1078  * \note Environment: Nothing interesting.
1079  */
1080 int
1081 afs_CacheFetchProc(struct afs_conn *tc, struct rx_connection *rxconn,
1082                    struct osi_file *fP, afs_size_t base,
1083                    struct dcache *adc, struct vcache *avc, afs_int32 size,
1084                    struct afs_FetchOutput *tsmall)
1085 {
1086     afs_int32 code;
1087     afs_int32 length;
1088     afs_uint32 bytesread, byteswritten;
1089     struct fetchOps *ops = NULL;
1090     void *rock = NULL;
1091     afs_uint32 moredata = 0;
1092     int offset = 0;
1093
1094     XSTATS_DECLS;
1095 #ifndef AFS_NOSTATS
1096     osi_timeval_t xferStartTime;        /*FS xfer start time */
1097     afs_size_t bytesToXfer = 0, bytesXferred = 0;
1098 #endif
1099
1100     AFS_STATCNT(CacheFetchProc);
1101
1102     XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_FETCHDATA);
1103
1104     /*
1105      * Locks held:
1106      * avc->lock(R) if setLocks && !slowPass
1107      * avc->lock(W) if !setLocks || slowPass
1108      * adc->lock(W)
1109      */
1110     code = rxfs_fetchInit(
1111                 tc, rxconn, avc, base, size, &length, adc, fP, &ops, &rock);
1112
1113 #ifndef AFS_NOSTATS
1114     osi_GetuTime(&xferStartTime);
1115 #endif /* AFS_NOSTATS */
1116
1117     adc->validPos = base;
1118
1119     if ( !code ) do {
1120         if (avc->f.states & CForeign) {
1121             code = (*ops->more)(rock, &length, &moredata);
1122             if ( code )
1123                 break;
1124         }
1125 #ifndef AFS_NOSTATS
1126         bytesToXfer += length;
1127 #endif /* AFS_NOSTATS */
1128         while (length > 0) {
1129 #ifdef RX_KERNEL_TRACE
1130             afs_Trace1(afs_iclSetp, CM_TRACE_TIMESTAMP, ICL_TYPE_STRING,
1131                        "before rx_Read");
1132 #endif
1133             code = (*ops->read)(rock, length, &bytesread);
1134 #ifdef RX_KERNEL_TRACE
1135             afs_Trace1(afs_iclSetp, CM_TRACE_TIMESTAMP, ICL_TYPE_STRING,
1136                        "after rx_Read");
1137 #endif
1138 #ifndef AFS_NOSTATS
1139             bytesXferred += bytesread;
1140 #endif /* AFS_NOSTATS */
1141             if ( code ) {
1142                 afs_Trace3(afs_iclSetp, CM_TRACE_FETCH64READ,
1143                            ICL_TYPE_POINTER, avc, ICL_TYPE_INT32, code,
1144                            ICL_TYPE_INT32, length);
1145                 code = -34;
1146                 break;
1147             }
1148             code = (*ops->write)(rock, fP, offset, bytesread, &byteswritten);
1149             if ( code )
1150                 break;
1151             offset += bytesread;
1152             base += bytesread;
1153             length -= bytesread;
1154             adc->validPos = base;
1155             if (afs_osi_Wakeup(&adc->validPos) == 0)
1156                 afs_Trace4(afs_iclSetp, CM_TRACE_DCACHEWAKE, ICL_TYPE_STRING,
1157                            __FILE__, ICL_TYPE_INT32, __LINE__,
1158                            ICL_TYPE_POINTER, adc, ICL_TYPE_INT32,
1159                            adc->dflags);
1160         }
1161         code = 0;
1162     } while (moredata);
1163     if (!code)
1164         code = (*ops->close)(rock, avc, adc, tsmall);
1165     if (ops)
1166         (*ops->destroy)(&rock, code);
1167
1168 #ifndef AFS_NOSTATS
1169     FillStoreStats(code, AFS_STATS_FS_XFERIDX_FETCHDATA, xferStartTime,
1170                         bytesToXfer, bytesXferred);
1171 #endif
1172     XSTATS_END_TIME;
1173     return code;
1174 }