cm fetchstore should dereference unset ops
[openafs.git] / src / afs / afs_fetchstore.c
index 93060f8..6f2f354 100644 (file)
@@ -108,7 +108,7 @@ rxfs_storeMemPrepare(void *r, afs_uint32 size, afs_uint32 *tlen)
     RX_AFS_GLOCK();
     if (code <= 0) {
        code = rx_Error(v->call);
-       if ( !code )
+       if (!code)
            code = -33;
     }
     else {
@@ -196,14 +196,14 @@ afs_int32
 rxfs_storePadd(void *rock, afs_uint32 size)
 {
     afs_int32 code = 0;
-    int bsent, tlen;
+    afs_uint32 tlen;
     struct rxfs_storeVariables *v = (struct rxfs_storeVariables *)rock;
 
-    if ( !v->tbuffer )
+    if (!v->tbuffer)
        v->tbuffer = osi_AllocLargeSpace(AFS_LRALLOCSIZ);
     memset(v->tbuffer, 0, AFS_LRALLOCSIZ);
 
-    while (size > 0) {
+    while (size) {
        tlen = (size > AFS_LRALLOCSIZ ? AFS_LRALLOCSIZ : size);
        RX_AFS_GUNLOCK();
        code = rx_Write(v->call, v->tbuffer, tlen);
@@ -257,12 +257,11 @@ rxfs_storeDestroy(void **r, afs_int32 error)
 
     *r = NULL;
     if (v->call) {
-       afs_int32 code2;
        RX_AFS_GUNLOCK();
-       code2 = rx_EndCall(v->call, code);
+       code = rx_EndCall(v->call, error);
        RX_AFS_GLOCK();
-       if (code2)
-           code = code2;
+       if (!code && error)
+           code = error;
     }
     if (v->tbuffer)
        osi_FreeLargeSpace(v->tbuffer);
@@ -295,8 +294,8 @@ struct storeOps rxfs_storeMemOps = {
 };
 
 afs_int32
-rxfs_storeInit(struct vcache *avc, struct afs_conn *tc, afs_size_t tlen,
-               afs_size_t bytes, afs_size_t base,
+rxfs_storeInit(struct vcache *avc, struct afs_conn *tc, afs_size_t base,
+               afs_size_t bytes, afs_size_t length,
                int sync, struct storeOps **ops, void **rock)
 {
     afs_int32 code;
@@ -319,20 +318,21 @@ rxfs_storeInit(struct vcache *avc, struct afs_conn *tc, afs_size_t tlen,
     if (v->call) {
 #ifdef AFS_64BIT_CLIENT
        if (!afs_serverHasNo64Bit(tc))
-           code = StartRXAFS_StoreData64(v->call,(struct AFSFid*)&avc->f.fid.Fid,
-                                      &v->InStatus, base, bytes, tlen);
+           code = StartRXAFS_StoreData64(
+                               v->call, (struct AFSFid*)&avc->f.fid.Fid,
+                               &v->InStatus, base, bytes, length);
        else
-           if (tlen > 0xFFFFFFFF)
+           if (length > 0xFFFFFFFF)
                code = EFBIG;
            else {
-               afs_int32 t1 = base, t2 = bytes, t3 = tlen;
+               afs_int32 t1 = base, t2 = bytes, t3 = length;
                code = StartRXAFS_StoreData(v->call,
                                        (struct AFSFid *) &avc->f.fid.Fid,
                                         &v->InStatus, t1, t2, t3);
            }
 #else /* AFS_64BIT_CLIENT */
        code = StartRXAFS_StoreData(v->call, (struct AFSFid *)&avc->f.fid.Fid,
-                                   &v->InStatus, base, bytes, tlen);
+                                   &v->InStatus, base, bytes, length);
 #endif /* AFS_64BIT_CLIENT */
     } else
        code = -1;
@@ -358,9 +358,9 @@ rxfs_storeInit(struct vcache *avc, struct afs_conn *tc, afs_size_t tlen,
        /* for now, only do 'continue from close' code if file fits in one
         * chunk.  Could clearly do better: if only one modified chunk
         * then can still do this.  can do this on *last* modified chunk */
-       tlen = avc->f.m.Length - 1; /* byte position of last byte we'll store */
+       length = avc->f.m.Length - 1; /* byte position of last byte we'll store */
        if (shouldWake) {
-           if (AFS_CHUNK(tlen) != 0)
+           if (AFS_CHUNK(length) != 0)
                *shouldWake = 0;
            else
                *shouldWake = 1;
@@ -410,10 +410,10 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
 
     for (i = 0; i < nchunks && !code; i++) {
        int stored = 0;
-       struct osi_file *fP;
+       struct osi_file *tfile;
        int offset = 0;
        struct dcache *tdc = dclist[i];
-       afs_int32 alen = tdc->f.chunkBytes;
+       afs_int32 size = tdc->f.chunkBytes;
        if (!tdc) {
            afs_warn("afs: missing dcache!\n");
            storeallmissing++;
@@ -431,11 +431,11 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
            else if ((afs_uint32) avc->asynchrony >= (bytes - stored))
                shouldwake = &nomore;
        }
-       fP = afs_CFileOpen(&tdc->f.inode);
+       tfile = afs_CFileOpen(&tdc->f.inode);
 
        afs_Trace4(afs_iclSetp, CM_TRACE_STOREPROC, ICL_TYPE_POINTER, avc,
                    ICL_TYPE_FID, &(avc->f.fid), ICL_TYPE_OFFSET,
-                   ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, alen);
+                   ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, size);
 
        AFS_STATCNT(CacheStoreProc);
 
@@ -443,23 +443,23 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
        avc->f.truncPos = AFS_NOTRUNC;
 #ifndef AFS_NOSTATS
        /*
-        * In this case, alen is *always* the amount of data we'll be trying
+        * In this case, size is *always* the amount of data we'll be trying
         * to ship here.
         */
-       bytesToXfer = alen;
+       bytesToXfer = size;
        bytesXferred = 0;
 
        osi_GetuTime(&xferStartTime);
 #endif /* AFS_NOSTATS */
 
-       while ( alen > 0 ) {
+       while ( size > 0 ) {
            afs_uint32 tlen;
            afs_int32 bytesread, byteswritten;
-           code = (*ops->prepare)(rock, alen, &tlen);
+           code = (*ops->prepare)(rock, size, &tlen);
            if ( code )
                break;
 
-           code = (*ops->read)(rock, fP, offset, tlen, &bytesread);
+           code = (*ops->read)(rock, tfile, offset, tlen, &bytesread);
            if (code)
                break;
 
@@ -472,7 +472,7 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
 #endif /* AFS_NOSTATS */
 
            offset += tlen;
-           alen -= tlen;
+           size -= tlen;
            /*
             * if file has been locked on server, can allow
             * store to continue
@@ -484,14 +484,14 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
        }
        afs_Trace4(afs_iclSetp, CM_TRACE_STOREPROC, ICL_TYPE_POINTER, avc,
                    ICL_TYPE_FID, &(avc->f.fid), ICL_TYPE_OFFSET,
-                   ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, alen);
+                   ICL_HANDLE_OFFSET(avc->f.m.Length), ICL_TYPE_INT32, size);
 
 #ifndef AFS_NOSTATS
        FillStoreStats(code, AFS_STATS_FS_XFERIDX_STOREDATA,
                    &xferStartTime, bytesToXfer, bytesXferred);
 #endif /* AFS_NOSTATS */
 
-       afs_CFileClose(fP);
+       afs_CFileClose(tfile);
        if ((tdc->f.chunkBytes < afs_OtherCSize)
                && (i < (nchunks - 1)) && code == 0) {
            int bsent, tlen, sbytes = afs_OtherCSize - tdc->f.chunkBytes;
@@ -529,7 +529,8 @@ afs_CacheStoreDCaches(struct vcache *avc, struct dcache **dclist,
        }
        XSTATS_END_TIME;
     }
-    code = (*ops->destroy)(&rock, code);
+    if (ops)
+       code = (*ops->destroy)(&rock, code);
     return code;
 }
 
@@ -561,11 +562,9 @@ afs_CacheStoreVCache(struct dcache **dcList, struct vcache *avc,
     void * rock = NULL;
     unsigned int i, j;
 
-    struct AFSStoreStatus InStatus;
     struct AFSFetchStatus OutStatus;
     int doProcessFS = 0;
     afs_size_t base, bytes, length;
-    afs_uint32 nchunks;
     int nomore;
     unsigned int first = 0;
     struct afs_conn *tc;
@@ -584,6 +583,7 @@ afs_CacheStoreVCache(struct dcache **dcList, struct vcache *avc,
            }
        }
        if (bytes && (j == high || !dcList[j + 1])) {
+           afs_uint32 nchunks;
            struct dcache **dclist = &dcList[first];
            /* base = AFS_CHUNKTOBASE(dcList[first]->f.chunk); */
            base = AFS_CHUNKTOBASE(first + minj);
@@ -610,14 +610,13 @@ afs_CacheStoreVCache(struct dcache **dcList, struct vcache *avc,
                       ICL_HANDLE_OFFSET(base), ICL_TYPE_OFFSET,
                       ICL_HANDLE_OFFSET(bytes), ICL_TYPE_OFFSET,
                       ICL_HANDLE_OFFSET(length));
+           tc = afs_Conn(&avc->f.fid, areq, 0);
 
            do {
-               tc = afs_Conn(&avc->f.fid, areq, 0);
-
 #ifdef AFS_64BIT_CLIENT
              restart:
 #endif
-               code = rxfs_storeInit(avc, tc, length, bytes, base,
+               code = rxfs_storeInit(avc, tc, base, bytes, length,
                                        sync, &ops, &rock);
                if ( code )
                    goto nocall;
@@ -840,8 +839,7 @@ afs_int32
 rxfs_fetchMore(void *r, afs_uint32 *length, afs_uint32 *moredata)
 {
     afs_int32 code;
-    register struct rxfs_fetchVariables *v
-           = (struct rxfs_fetchVariables *)r;
+    struct rxfs_fetchVariables *v = (struct rxfs_fetchVariables *)r;
 
     /*
      * The fetch protocol is extended for the AFS/DFS translator
@@ -885,7 +883,7 @@ struct fetchOps rxfs_fetchMemOps = {
 };
 
 afs_int32
-rxfs_fetchInit(register struct afs_conn *tc, struct vcache *avc,afs_offs_t base,
+rxfs_fetchInit(struct afs_conn *tc, struct vcache *avc, afs_offs_t base,
                afs_uint32 size, afs_uint32 *alength, afs_uint32 *moredata,
                struct dcache *adc,
                struct osi_file *fP, struct fetchOps **ops, void **rock)
@@ -952,7 +950,11 @@ rxfs_fetchInit(register struct afs_conn *tc, struct vcache *avc,afs_offs_t base,
            if (bytes == sizeof(afs_int32))
                length = ntohl(length);
            else {
+               RX_AFS_GUNLOCK();
                code = rx_Error(v->call);
+                code1 = rx_EndCall(v->call, code);
+               v->call = NULL;
+               RX_AFS_GLOCK();
            }
        }
        FillInt64(length64, length_hi, length);
@@ -975,6 +977,8 @@ rxfs_fetchInit(register struct afs_conn *tc, struct vcache *avc,afs_offs_t base,
                 *alength = ntohl(length);
            } else {
                code = rx_Error(v->call);
+                code1 = rx_EndCall(v->call, code);
+               v->call = NULL;
            }
        }
 #endif /* AFS_64BIT_CLIENT */
@@ -1041,19 +1045,17 @@ rxfs_fetchInit(register struct afs_conn *tc, struct vcache *avc,afs_offs_t base,
  * \note Environment: Nothing interesting.
  */
 int
-afs_CacheFetchProc(register struct afs_conn *tc,
-                   register struct osi_file *fP, afs_size_t base,
-                   struct dcache *adc, struct vcache *avc,
-                   afs_int32 size,
+afs_CacheFetchProc(struct afs_conn *tc, struct osi_file *fP, afs_size_t base,
+                   struct dcache *adc, struct vcache *avc, afs_int32 size,
                    struct afs_FetchOutput *tsmall)
 {
-    register afs_int32 code;
+    afs_int32 code;
     afs_uint32 length;
     afs_uint32 bytesread, byteswritten;
     struct fetchOps *ops = NULL;
     void *rock = NULL;
     int moredata = 0;
-    register int offset = 0;
+    int offset = 0;
 
     XSTATS_DECLS;
 #ifndef AFS_NOSTATS
@@ -1065,6 +1067,12 @@ afs_CacheFetchProc(register struct afs_conn *tc,
 
     XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_FETCHDATA);
 
+    /*
+     * Locks held:
+     * avc->lock(R) if setLocks && !slowPass
+     * avc->lock(W) if !setLocks || slowPass
+     * adc->lock(W)
+     */
     code = rxfs_fetchInit(
                tc, avc, base, size, &length, &moredata, adc, fP, &ops, &rock);
 
@@ -1085,7 +1093,7 @@ afs_CacheFetchProc(register struct afs_conn *tc,
 #ifndef AFS_NOSTATS
        bytesToXfer += length;
 #endif /* AFS_NOSTATS */
-       while (length > 0) {
+       while (length) {
 #ifdef RX_KERNEL_TRACE
            afs_Trace1(afs_iclSetp, CM_TRACE_TIMESTAMP, ICL_TYPE_STRING,
                       "before rx_Read");
@@ -1122,10 +1130,11 @@ afs_CacheFetchProc(register struct afs_conn *tc,
     } while (moredata);
     if (!code)
        code = (*ops->close)(rock, avc, adc, tsmall);
-    (*ops->destroy)(&rock, code);
+    if (ops)
+       (*ops->destroy)(&rock, code);
 
 #ifndef AFS_NOSTATS
-    FillStoreStats(code, AFS_STATS_FS_XFERIDX_FETCHDATA,&xferStartTime,
+    FillStoreStats(code, AFS_STATS_FS_XFERIDX_FETCHDATA, &xferStartTime,
                        bytesToXfer, bytesXferred);
 #endif
     XSTATS_END_TIME;