Fix df size problem
[yaffs2.git] / yaffs_guts.c
1
2 /*
3  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
4  *
5  * Copyright (C) 2002 Aleph One Ltd.
6  *   for Toby Churchill Ltd and Brightstar Engineering
7  *
8  * Created by Charles Manning <charles@aleph1.co.uk>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  */
15  //yaffs_guts.c
16
17 const char *yaffs_guts_c_version="$Id: yaffs_guts.c,v 1.6 2005-04-24 09:57:06 charles Exp $";
18
19 #include "yportenv.h"
20
21 #include "yaffsinterface.h"
22 #include "yaffs_guts.h"
23 #include "yaffs_tagsvalidity.h"
24
25
26 #include "yaffs_tagscompat.h"
27
28 #ifdef CONFIG_YAFFS_WINCE
29 void yfsd_LockYAFFS(BOOL fsLockOnly);
30 void yfsd_UnlockYAFFS(BOOL fsLockOnly);
31 #endif
32
33 #define YAFFS_PASSIVE_GC_CHUNKS 2
34
35 #if 0
36 // Use Steven Hill's ECC struff instead
37 // External functions for ECC on data
38 void nand_calculate_ecc (const u_char *dat, u_char *ecc_code);
39 int nand_correct_data (u_char *dat, u_char *read_ecc, u_char *calc_ecc);
40 #define yaffs_ECCCalculate(data,ecc) nand_calculate_ecc(data,ecc)
41 #define yaffs_ECCCorrect(data,read_ecc,calc_ecc) nand_correct_ecc(data,read_ecc,calc_ecc)
42 #else
43 #include "yaffs_ecc.h"
44 #endif
45
46 #if 0
47 // countBits is a quick way of counting the number of bits in a byte.
48 // ie. countBits[n] holds the number of 1 bits in a byte with the value n.
49
50 static const char yaffs_countBitsTable[256] =
51 {
52 0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,
53 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
54 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
55 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
56 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
57 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
58 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
59 3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
60 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
61 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
62 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
63 3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
64 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
65 3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
66 3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
67 4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8
68 };
69
70 static int yaffs_CountBits(__u8 x)
71 {
72         int retVal;
73         retVal = yaffs_countBitsTable[x];
74         return retVal;
75 }
76
77 #endif
78
79
80 #if 0
81 // Stuff using yea olde tags
82 static void yaffs_LoadTagsIntoSpare(yaffs_Spare *sparePtr, yaffs_Tags *tagsPtr);
83 static void yaffs_GetTagsFromSpare(yaffs_Device *dev, yaffs_Spare *sparePtr,yaffs_Tags *tagsPtr);
84
85 static int yaffs_ReadChunkTagsFromNAND(yaffs_Device *dev,int chunkInNAND, yaffs_Tags *tags, int *chunkDeleted);
86 static int yaffs_TagsMatch(const yaffs_Tags *tags, int objectId, int chunkInObject, int chunkDeleted);
87 #else
88 #endif
89
90 // NAND access
91
92
93 static Y_INLINE int yaffs_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *buffer, yaffs_ExtendedTags *tags);
94 static Y_INLINE int yaffs_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND, const __u8 *data, yaffs_ExtendedTags *tags);
95 static Y_INLINE int yaffs_MarkBlockBad(yaffs_Device *dev, int blockNo);
96 static Y_INLINE int yaffs_QueryInitialBlockState(yaffs_Device *dev,int blockNo, yaffs_BlockState *state,unsigned *sequenceNumber);
97 // Local prototypes
98 static int yaffs_WriteNewChunkWithTagsToNAND(yaffs_Device *dev, const __u8 *buffer, yaffs_ExtendedTags *tags, int useReserve);
99 #if 0
100 static int yaffs_CheckObjectHashSanity(yaffs_Device *dev);
101 #endif
102 static int yaffs_PutChunkIntoFile(yaffs_Object *in,int chunkInInode, int chunkInNAND, int inScan);
103
104 static yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev,int number,yaffs_ObjectType type);
105 static void yaffs_AddObjectToDirectory(yaffs_Object *directory, yaffs_Object *obj);
106 static int yaffs_UpdateObjectHeader(yaffs_Object *in,const YCHAR *name, int force,int isShrink);
107 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj);
108 static int yaffs_CheckStructures(void);
109 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level, int chunkOffset,int *limit);
110 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in);
111
112 static yaffs_BlockInfo *yaffs_GetBlockInfo(yaffs_Device *dev,int blockNo);
113
114 static __u8 *yaffs_GetTempBuffer(yaffs_Device *dev,int lineNo);
115 static void yaffs_ReleaseTempBuffer(yaffs_Device *dev, __u8 *buffer, int lineNo);
116
117
118 // Robustification (if it ever comes about...)
119 static void yaffs_RetireBlock(yaffs_Device *dev,int blockInNAND);
120 #if 0
121 static void yaffs_HandleReadDataError(yaffs_Device *dev,int chunkInNAND);
122 #endif
123 static void yaffs_HandleWriteChunkError(yaffs_Device *dev,int chunkInNAND);
124 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev,int chunkInNAND,const __u8 *data, const yaffs_ExtendedTags *tags);
125 static void yaffs_HandleUpdateChunk(yaffs_Device *dev,int chunkInNAND,  const yaffs_ExtendedTags *tags);
126
127 static int  yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,int chunkInNAND);
128
129 static int yaffs_UnlinkWorker(yaffs_Object *obj);
130 static void yaffs_DestroyObject(yaffs_Object *obj);
131
132 #if 0
133 static int yaffs_VerifyCompare(const __u8 *d0, const __u8 * d1, const yaffs_Spare *s0, const yaffs_Spare *s1,int dataSize);
134 #endif
135
136 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId, int chunkInObject);
137
138
139 loff_t yaffs_GetFileSize(yaffs_Object *obj);
140
141
142 static int yaffs_AllocateChunk(yaffs_Device *dev,int useReserve);
143
144 #ifdef YAFFS_PARANOID
145 static int yaffs_CheckFileSanity(yaffs_Object *in);
146 #else
147 #define yaffs_CheckFileSanity(in)
148 #endif
149
150 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in);
151 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId);
152
153 static int yaffs_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *buffer, yaffs_ExtendedTags *tags)
154 {
155         if(dev->readChunkWithTagsFromNAND)
156                 return dev->readChunkWithTagsFromNAND(dev,chunkInNAND,buffer,tags);
157         else
158                 return yaffs_TagsCompatabilityReadChunkWithTagsFromNAND(dev,chunkInNAND,buffer,tags);
159 }
160
161 static Y_INLINE int yaffs_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND, const __u8 *buffer, yaffs_ExtendedTags *tags)
162 {
163         if(tags)
164         {
165                 tags->sequenceNumber = dev->sequenceNumber;
166                 tags->chunkUsed = 1;
167                 if(!yaffs_ValidateTags(tags))
168                 {
169                         T(YAFFS_TRACE_ERROR,(TSTR("Writing uninitialised tags" TENDSTR)));
170                         YBUG();
171                 }
172                 T(YAFFS_TRACE_WRITE,(TSTR("Writing chunk %d tags %d %d"TENDSTR),chunkInNAND,tags->objectId,tags->chunkId));
173         }
174         else
175         {
176                         T(YAFFS_TRACE_ERROR,(TSTR("Writing with no tags" TENDSTR)));
177                         YBUG();
178         }
179
180         if(dev->writeChunkWithTagsToNAND)
181                 return dev->writeChunkWithTagsToNAND(dev,chunkInNAND,buffer,tags);
182         else
183                 return yaffs_TagsCompatabilityWriteChunkWithTagsToNAND(dev,chunkInNAND,buffer,tags);
184 }
185
186 static Y_INLINE int yaffs_MarkBlockBad(yaffs_Device *dev, int blockNo)
187 {
188         if(dev->markNANDBlockBad)
189                 return dev->markNANDBlockBad(dev,blockNo);
190         else
191                 return yaffs_TagsCompatabilityMarkNANDBlockBad(dev,blockNo);
192 }
193 static Y_INLINE int yaffs_QueryInitialBlockState(yaffs_Device *dev,int blockNo, yaffs_BlockState *state, unsigned *sequenceNumber)
194 {
195         if(dev->queryNANDBlock)
196                 return dev->queryNANDBlock(dev,blockNo,state,sequenceNumber);
197         else
198                 return yaffs_TagsCompatabilityQueryNANDBlock(dev,blockNo,state,sequenceNumber);
199 }
200
201 int yaffs_EraseBlockInNAND(struct yaffs_DeviceStruct *dev,int blockInNAND)
202 {
203         int result;
204
205         dev->nBlockErasures++;
206         result = dev->eraseBlockInNAND(dev,blockInNAND);
207
208         if(!result)result = dev->eraseBlockInNAND(dev,blockInNAND); // If at first we don't succeed, try again *once*.
209         return result;
210 }
211
212 static int yaffs_InitialiseNAND(struct yaffs_DeviceStruct *dev)
213 {
214         return dev->initialiseNAND(dev);
215 }
216
217
218
219
220 // Temporary buffer manipulations
221
222 static __u8 *yaffs_GetTempBuffer(yaffs_Device *dev,int lineNo)
223 {
224         int i,j;
225         for(i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
226         {
227                 if(dev->tempBuffer[i].line == 0)
228                 {
229                         dev->tempBuffer[i].line = lineNo;
230                         if((i+1) > dev->maxTemp)
231                         {
232                                 dev->maxTemp = i + 1;
233                                 for(j = 0; j <= i; j++)
234                                         dev->tempBuffer[j].maxLine = dev->tempBuffer[j].line;
235                         }       
236                         
237                         return dev->tempBuffer[i].buffer;
238                 }
239         }
240
241         T(YAFFS_TRACE_BUFFERS,(TSTR("Out of temp buffers at line %d, other held by lines:"),lineNo));
242         for(i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
243         {
244                 T(YAFFS_TRACE_BUFFERS,(TSTR(" %d "),dev->tempBuffer[i].line));
245         }
246         T(YAFFS_TRACE_BUFFERS,(TSTR(" "TENDSTR)));
247         
248         dev->unmanagedTempAllocations++;
249         // Get an unmanaged one
250         return YMALLOC(dev->nBytesPerChunk);    
251         
252         
253 }
254
255 static void yaffs_ReleaseTempBuffer(yaffs_Device *dev, __u8 *buffer, int lineNo)
256 {
257         int i;
258         for(i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
259         {
260                 if(dev->tempBuffer[i].buffer == buffer)
261                 {
262                         dev->tempBuffer[i].line = 0;
263                         return;
264                 }
265         }
266         
267         if(buffer)
268         {
269                 // assume it is an unmanaged one.
270                 T(YAFFS_TRACE_BUFFERS,(TSTR("Releasing unmanaged temp buffer in line %d" TENDSTR),lineNo));
271                 YFREE(buffer);
272                 dev->unmanagedTempDeallocations++;
273         }
274
275 }
276
277
278 // Chunk bitmap manipulations
279
280 static Y_INLINE __u8 *yaffs_BlockBits(yaffs_Device *dev, int blk)
281 {
282         if(blk < dev->startBlock || blk > dev->endBlock)
283         {
284                 T(YAFFS_TRACE_ERROR,(TSTR("**>> yaffs: BlockBits block %d is not valid" TENDSTR),blk));
285                 YBUG();
286         }
287         return dev->chunkBits + (dev->chunkBitmapStride * (blk - dev->startBlock));
288 }
289
290 static Y_INLINE void yaffs_ClearChunkBits(yaffs_Device *dev,int blk)
291 {
292         __u8 *blkBits = yaffs_BlockBits(dev,blk);
293
294          memset(blkBits,0,dev->chunkBitmapStride);
295 }
296
297 static Y_INLINE void yaffs_ClearChunkBit(yaffs_Device *dev,int blk,int chunk)
298 {
299         __u8 *blkBits = yaffs_BlockBits(dev,blk);
300         
301         blkBits[chunk/8] &=  ~ (1<<(chunk & 7));
302 }
303
304 static Y_INLINE void yaffs_SetChunkBit(yaffs_Device *dev,int blk,int chunk)
305 {
306         __u8 *blkBits = yaffs_BlockBits(dev,blk);
307
308         blkBits[chunk/8] |=   (1<<(chunk & 7));
309 }
310
311 static Y_INLINE int yaffs_CheckChunkBit(yaffs_Device *dev,int blk,int chunk)
312 {
313         __u8 *blkBits = yaffs_BlockBits(dev,blk);
314         return (blkBits[chunk/8] &  (1<<(chunk & 7))) ? 1 :0;
315 }
316
317 static Y_INLINE int yaffs_StillSomeChunkBits(yaffs_Device *dev,int blk)
318 {
319         __u8 *blkBits = yaffs_BlockBits(dev,blk);
320         int i;
321         for(i = 0; i < dev->chunkBitmapStride; i++)
322         {
323                 if(*blkBits) return 1;
324                 blkBits++;
325         }
326         return 0;
327 }
328
329 #if 0
330 // Function to manipulate block info
331 static  Y_INLINE yaffs_BlockInfo* yaffs_GetBlockInfo(yaffs_Device *dev, int blk)
332 {
333         if(blk < dev->startBlock || blk > dev->endBlock)
334         {
335                 T(YAFFS_TRACE_ERROR,(TSTR("**>> yaffs: getBlockInfo block %d is not valid" TENDSTR),blk));
336                 YBUG();
337         }
338         return &dev->blockInfo[blk - dev->startBlock];
339 }
340 #endif
341
342
343 static  Y_INLINE int yaffs_HashFunction(int n)
344 {
345         return (n % YAFFS_NOBJECT_BUCKETS);
346 }
347
348
349 yaffs_Object *yaffs_Root(yaffs_Device *dev)
350 {
351         return dev->rootDir;
352 }
353
354 yaffs_Object *yaffs_LostNFound(yaffs_Device *dev)
355 {
356         return dev->lostNFoundDir;
357 }
358
359 #if 0
360 static int yaffs_WriteChunkToNAND(struct yaffs_DeviceStruct *dev,int chunkInNAND, const __u8 *data, yaffs_Spare *spare)
361 {
362         if(chunkInNAND < dev->startBlock * dev->nChunksPerBlock)
363         {
364                 T(YAFFS_TRACE_ERROR,(TSTR("**>> yaffs chunk %d is not valid" TENDSTR),chunkInNAND));
365                 return YAFFS_FAIL;
366         }
367
368         dev->nPageWrites++;
369         return dev->writeChunkToNAND(dev,chunkInNAND,data,spare);
370 }
371
372
373
374 static int yaffs_ReadChunkFromNAND(struct yaffs_DeviceStruct *dev,
375                                                         int chunkInNAND, 
376                                                         __u8 *data, 
377                                                         yaffs_Spare *spare, 
378                                                         int doErrorCorrection)
379 {
380         int retVal;
381         yaffs_Spare localSpare;
382
383         dev->nPageReads++;
384         
385         
386
387         
388         if(!spare && data)
389         {
390                 // If we don't have a real spare, then we use a local one.
391                 // Need this for the calculation of the ecc
392                 spare = &localSpare;
393         }
394         
395
396         if(!dev->useNANDECC)
397         {
398                 retVal  = dev->readChunkFromNAND(dev,chunkInNAND,data,spare);
399                 if(data && doErrorCorrection)
400                 {
401                         // Do ECC correction
402                         //Todo handle any errors
403                 int eccResult1,eccResult2;
404                 __u8 calcEcc[3];
405                 
406                         yaffs_ECCCalculate(data,calcEcc);
407                         eccResult1 = yaffs_ECCCorrect (data,spare->ecc1, calcEcc);
408                         yaffs_ECCCalculate(&data[256],calcEcc);
409                         eccResult2 = yaffs_ECCCorrect(&data[256],spare->ecc2, calcEcc);
410
411                         if(eccResult1>0)
412                         {
413                                 T(YAFFS_TRACE_ERROR, (TSTR("**>>ecc error fix performed on chunk %d:0" TENDSTR),chunkInNAND));
414                                 dev->eccFixed++;
415                         }
416                         else if(eccResult1<0)
417                         {
418                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error unfixed on chunk %d:0" TENDSTR),chunkInNAND));
419                                 dev->eccUnfixed++;
420                         }
421
422                         if(eccResult2>0)
423                         {
424                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error fix performed on chunk %d:1" TENDSTR),chunkInNAND));
425                                 dev->eccFixed++;
426                         }
427                         else if(eccResult2<0)
428                         {
429                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error unfixed on chunk %d:1" TENDSTR),chunkInNAND));
430                                 dev->eccUnfixed++;
431                         }
432
433                         if(eccResult1 || eccResult2)
434                         {
435                                 // Hoosterman, we had a data problem on this page
436                                 yaffs_HandleReadDataError(dev,chunkInNAND);
437                         }
438                 }
439         }
440         else
441         {
442         // Must allocate enough memory for spare+2*sizeof(int) for ecc results from device.
443         struct yaffs_NANDSpare nspare;
444                 retVal  = dev->readChunkFromNAND(dev,chunkInNAND,data,(yaffs_Spare*)&nspare);
445                 memcpy (spare, &nspare, sizeof(yaffs_Spare));
446                 if(data && doErrorCorrection)
447                 {
448                         if(nspare.eccres1>0)
449                         {
450                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error fix performed on chunk %d:0" TENDSTR),chunkInNAND));
451                         }
452                         else if(nspare.eccres1<0)
453                         {
454                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error unfixed on chunk %d:0" TENDSTR),chunkInNAND));
455                         }
456
457                         if(nspare.eccres2>0)
458                         {
459                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error fix performed on chunk %d:1" TENDSTR),chunkInNAND));
460                         }
461                         else if(nspare.eccres2<0)
462                         {
463                                 T(YAFFS_TRACE_ERROR,(TSTR("**>>ecc error unfixed on chunk %d:1" TENDSTR),chunkInNAND));
464                         }
465
466                         if(nspare.eccres1 || nspare.eccres2)
467                         {
468                                 // Hoosterman, we had a data problem on this page
469                                 yaffs_HandleReadDataError(dev,chunkInNAND);
470                         }
471
472                 }
473         }
474         return retVal;
475 }
476
477 #endif
478
479
480
481 int yaffs_CheckFF(__u8 *buffer,int nBytes)
482 {
483         //Horrible, slow implementation
484         while(nBytes--)
485         {
486                 if(*buffer != 0xFF) return 0;
487                 buffer++;
488         }
489         return 1;
490 }
491
492 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,int chunkInNAND)
493 {
494
495         int retval = YAFFS_OK;
496         __u8 *data = yaffs_GetTempBuffer(dev,__LINE__);
497         yaffs_ExtendedTags tags;
498
499 // NCB          dev->readChunkWithTagsFromNAND(dev,chunkInNAND,data,&tags);
500         yaffs_ReadChunkWithTagsFromNAND(dev,chunkInNAND,data,&tags);
501         
502         if(!yaffs_CheckFF(data,dev->nBytesPerChunk) || tags.chunkUsed)
503         {
504                 T(YAFFS_TRACE_NANDACCESS,(TSTR("Chunk %d not erased" TENDSTR),chunkInNAND));
505                 retval = YAFFS_FAIL;
506         }
507
508         yaffs_ReleaseTempBuffer(dev,data,__LINE__);
509         
510         return retval;
511         
512 }
513
514
515
516 #if 1
517 static int yaffs_WriteNewChunkWithTagsToNAND(struct yaffs_DeviceStruct *dev, const __u8 *data, yaffs_ExtendedTags *tags,int useReserve)
518 {
519         int chunk;
520         
521         int writeOk = 1;
522         int attempts = 0;
523         
524
525         
526         do{
527                 chunk = yaffs_AllocateChunk(dev,useReserve);
528         
529                 if(chunk >= 0)
530                 {
531
532                         // First check this chunk is erased...
533 #ifndef CONFIG_YAFFS_DISABLE_CHUNK_ERASED_CHECK
534                         writeOk = yaffs_CheckChunkErased(dev,chunk);
535 #endif          
536                         if(!writeOk)
537                         {
538                                 T(YAFFS_TRACE_ERROR,(TSTR("**>> yaffs chunk %d was not erased" TENDSTR),chunk));
539                         }
540                         else
541                         {
542                                 writeOk =  yaffs_WriteChunkWithTagsToNAND(dev,chunk,data,tags);
543                         }
544                         attempts++;
545
546                         if(writeOk)
547                         {
548                                 // Copy the data into the robustification buffer.
549                                 // NB We do this at the end to prevent duplicates in the case of a write error.
550                                 //Todo
551                                 yaffs_HandleWriteChunkOk(dev,chunk,data,tags);
552                         }
553                         else
554                         {
555                                 yaffs_HandleWriteChunkError(dev,chunk);
556                         }
557                 }
558                 
559         } while(chunk >= 0 && ! writeOk);
560         
561         if(attempts > 1)
562         {
563                 T(YAFFS_TRACE_ERROR,(TSTR("**>> yaffs write required %d attempts" TENDSTR),attempts));
564                 dev->nRetriedWrites+= (attempts - 1);   
565         }
566         
567
568         
569         return chunk;
570 }
571 #endif
572
573
574 ///
575 // Functions for robustisizing
576 //
577 //
578
579 static void yaffs_RetireBlock(yaffs_Device *dev,int blockInNAND)
580 {
581         
582         yaffs_MarkBlockBad(dev,blockInNAND);
583         
584         yaffs_GetBlockInfo(dev,blockInNAND)->blockState = YAFFS_BLOCK_STATE_DEAD;
585
586         dev->nRetiredBlocks++;
587 }
588
589
590 #if 0
591 static int yaffs_RewriteBufferedBlock(yaffs_Device *dev)
592 {
593         dev->doingBufferedBlockRewrite = 1;
594         //
595         //      Remove erased chunks
596         //  Rewrite existing chunks to a new block
597         //      Set current write block to the new block
598         
599         dev->doingBufferedBlockRewrite = 0;
600         
601         return 1;
602 }
603
604
605 static void yaffs_HandleReadDataError(yaffs_Device *dev,int chunkInNAND)
606 {
607         int blockInNAND = chunkInNAND/dev->nChunksPerBlock;
608
609         // Mark the block for retirement
610         yaffs_GetBlockInfo(dev,blockInNAND)->needsRetiring = 1;
611         T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,(TSTR("**>>Block %d marked for retirement" TENDSTR),blockInNAND));
612
613
614         //TODO  
615         // Just do a garbage collection on the affected block then retire the block
616         // NB recursion
617 }
618
619
620 static void yaffs_CheckWrittenBlock(yaffs_Device *dev,int chunkInNAND)
621 {
622 }
623
624 #endif
625
626 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev,int chunkInNAND,const __u8 *data, const yaffs_ExtendedTags *tags)
627 {
628 }
629
630 static void yaffs_HandleUpdateChunk(yaffs_Device *dev,int chunkInNAND, const yaffs_ExtendedTags *tags)
631 {
632 }
633
634 static void yaffs_HandleWriteChunkError(yaffs_Device *dev,int chunkInNAND)
635 {
636         int blockInNAND = chunkInNAND/dev->nChunksPerBlock;
637
638         // Mark the block for retirement
639         yaffs_GetBlockInfo(dev,blockInNAND)->needsRetiring = 1;
640         // Delete the chunk
641         yaffs_DeleteChunk(dev,chunkInNAND,1,__LINE__);
642 }
643
644
645
646 #if 0
647 static int yaffs_VerifyCompare(const __u8 *d0, const __u8 * d1, const yaffs_Spare *s0, const yaffs_Spare *s1,int dataSize)
648 {
649
650
651         if( memcmp(d0,d1,dataSize) != 0 ||
652                 s0->tagByte0 != s1->tagByte0 ||
653                 s0->tagByte1 != s1->tagByte1 ||
654                 s0->tagByte2 != s1->tagByte2 ||
655                 s0->tagByte3 != s1->tagByte3 ||
656                 s0->tagByte4 != s1->tagByte4 ||
657                 s0->tagByte5 != s1->tagByte5 ||
658                 s0->tagByte6 != s1->tagByte6 ||
659                 s0->tagByte7 != s1->tagByte7 ||
660                 s0->ecc1[0]  != s1->ecc1[0]  ||
661                 s0->ecc1[1]  != s1->ecc1[1]  ||
662                 s0->ecc1[2]  != s1->ecc1[2]  ||
663                 s0->ecc2[0]  != s1->ecc2[0]  ||
664                 s0->ecc2[1]  != s1->ecc2[1]  ||
665                 s0->ecc2[2]  != s1->ecc2[2] )
666                 {
667                         return 0;
668                 }
669         
670         return 1;
671 }
672 #endif
673
674
675 ///////////////////////// Object management //////////////////
676 // List of spare objects
677 // The list is hooked together using the first pointer
678 // in the object
679
680 // static yaffs_Object *yaffs_freeObjects = NULL;
681
682 // static int yaffs_nFreeObjects;
683
684 // static yaffs_ObjectList *yaffs_allocatedObjectList = NULL;
685
686 // static yaffs_ObjectBucket yaffs_objectBucket[YAFFS_NOBJECT_BUCKETS];
687
688
689 static __u16 yaffs_CalcNameSum(const YCHAR *name)
690 {
691         __u16 sum = 0;
692         __u16 i = 1;
693         
694         YUCHAR *bname = (YUCHAR *)name;
695         if(bname)
696         {
697                 while ((*bname) && (i <=YAFFS_MAX_NAME_LENGTH))
698                 {
699
700 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
701                         sum += yaffs_toupper(*bname) * i;
702 #else
703                         sum += (*bname) * i;
704 #endif
705                         i++;
706                         bname++;
707                 }
708         }
709         return sum;
710 }
711
712 void yaffs_SetObjectName(yaffs_Object *obj, const YCHAR *name)
713 {
714 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
715                                         if(name && yaffs_strlen(name) <= YAFFS_SHORT_NAME_LENGTH)
716                                         {
717                                                 yaffs_strcpy(obj->shortName,name);
718                                         }
719                                         else
720                                         {
721                                                 obj->shortName[0]=_Y('\0');
722                                         }
723 #endif
724                                         obj->sum = yaffs_CalcNameSum(name);
725 }
726
727 #if 0
728 void yaffs_CalcECC(const __u8 *data, yaffs_Spare *spare)
729 {
730         yaffs_ECCCalculate(data , spare->ecc1);
731         yaffs_ECCCalculate(&data[256] , spare->ecc2);
732 }
733 #endif
734
735
736 ///////////////////////// TNODES ///////////////////////
737
738 // List of spare tnodes
739 // The list is hooked together using the first pointer
740 // in the tnode.
741
742 //static yaffs_Tnode *yaffs_freeTnodes = NULL;
743
744 // static int yaffs_nFreeTnodes;
745
746 //static yaffs_TnodeList *yaffs_allocatedTnodeList = NULL;
747
748
749
750 // yaffs_CreateTnodes creates a bunch more tnodes and
751 // adds them to the tnode free list.
752 // Don't use this function directly
753
754 static int yaffs_CreateTnodes(yaffs_Device *dev,int nTnodes)
755 {
756     int i;
757     yaffs_Tnode *newTnodes;
758     yaffs_TnodeList *tnl;
759     
760     if(nTnodes < 1) return YAFFS_OK;
761    
762         // make these things
763         
764     newTnodes = YMALLOC(nTnodes * sizeof(yaffs_Tnode));
765    
766     if (!newTnodes)
767     {
768                 T(YAFFS_TRACE_ERROR,(TSTR("yaffs: Could not allocate Tnodes"TENDSTR)));
769                 return YAFFS_FAIL;
770     }
771     
772     // Hook them into the free list
773     for(i = 0; i < nTnodes - 1; i++)
774     {
775         newTnodes[i].internal[0] = &newTnodes[i+1];
776 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
777         newTnodes[i].internal[YAFFS_NTNODES_INTERNAL] = 1;
778 #endif
779     }
780         
781         newTnodes[nTnodes - 1].internal[0] = dev->freeTnodes;
782 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
783         newTnodes[nTnodes - 1].internal[YAFFS_NTNODES_INTERNAL] = 1;
784 #endif
785         dev->freeTnodes = newTnodes;
786         dev->nFreeTnodes+= nTnodes;
787         dev->nTnodesCreated += nTnodes;
788
789         // Now add this bunch of tnodes to a list for freeing up.
790         // NB If we can't add this to the management list it isn't fatal
791         // but it just means we can't free this bunch of tnodes later.
792         tnl = YMALLOC(sizeof(yaffs_TnodeList));
793         if(!tnl)
794         {
795                 T(YAFFS_TRACE_ERROR,(TSTR("yaffs: Could not add tnodes to management list" TENDSTR)));
796                 
797         }
798         else
799         {
800                 tnl->tnodes = newTnodes;
801                 tnl->next = dev->allocatedTnodeList;
802                 dev->allocatedTnodeList = tnl;
803         }
804
805
806         T(YAFFS_TRACE_ALLOCATE,(TSTR("yaffs: Tnodes added" TENDSTR)));
807
808
809         return YAFFS_OK;
810 }
811
812
813 // GetTnode gets us a clean tnode. Tries to make allocate more if we run out
814 static yaffs_Tnode *yaffs_GetTnode(yaffs_Device *dev)
815 {
816         yaffs_Tnode *tn = NULL;
817         
818         // If there are none left make more
819         if(!dev->freeTnodes)
820         {
821                 yaffs_CreateTnodes(dev,YAFFS_ALLOCATION_NTNODES);
822         }
823         
824         if(dev->freeTnodes)
825         {
826                 tn = dev->freeTnodes;
827 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
828         if(tn->internal[YAFFS_NTNODES_INTERNAL] != 1)
829                 {
830                         // Hoosterman, this thing looks like it isn't in the list
831                                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: Tnode list bug 1" TENDSTR)));
832                 }
833 #endif
834                 dev->freeTnodes = dev->freeTnodes->internal[0];
835                 dev->nFreeTnodes--;
836                 // zero out
837                 memset(tn,0,sizeof(yaffs_Tnode));
838         }
839         
840
841         return tn;
842 }
843
844
845 // FreeTnode frees up a tnode and puts it back on the free list
846 static void yaffs_FreeTnode(yaffs_Device*dev, yaffs_Tnode *tn)
847 {
848         if(tn)
849         {
850 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
851         if(tn->internal[YAFFS_NTNODES_INTERNAL] != 0)
852                 {
853                         // Hoosterman, this thing looks like it is already in the list
854                                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: Tnode list bug 2" TENDSTR)));
855                 }
856                 tn->internal[YAFFS_NTNODES_INTERNAL] = 1;
857 #endif
858                 tn->internal[0] = dev->freeTnodes;
859                 dev->freeTnodes = tn;
860                 dev->nFreeTnodes++;
861         }
862 }
863
864
865 static void yaffs_DeinitialiseTnodes(yaffs_Device*dev)
866 {
867         // Free the list of allocated tnodes
868         yaffs_TnodeList *tmp;
869                 
870         while(dev->allocatedTnodeList)
871         {
872                 tmp =  dev->allocatedTnodeList->next;
873
874                 YFREE(dev->allocatedTnodeList->tnodes);
875                 YFREE(dev->allocatedTnodeList);
876                 dev->allocatedTnodeList = tmp;
877                 
878         }
879         
880         dev->freeTnodes = NULL;
881         dev->nFreeTnodes = 0;
882 }
883
884 static void yaffs_InitialiseTnodes(yaffs_Device*dev)
885 {
886         dev->allocatedTnodeList = NULL;
887         dev->freeTnodes = NULL;
888         dev->nFreeTnodes = 0;
889         dev->nTnodesCreated = 0;
890
891 }
892
893 #if 0
894 void yaffs_TnodeTest(yaffs_Device *dev)
895 {
896
897         int i;
898         int j;
899         yaffs_Tnode *tn[1000];
900         
901         YINFO("Testing TNodes");
902         
903         for(j = 0; j < 50; j++)
904         {
905                 for(i = 0; i < 1000; i++)
906                 {
907                         tn[i] = yaffs_GetTnode(dev);
908                         if(!tn[i])
909                         {
910                                 YALERT("Getting tnode failed");
911                         }
912                 }
913                 for(i = 0; i < 1000; i+=3)
914                 {
915                         yaffs_FreeTnode(dev,tn[i]);
916                         tn[i] = NULL;
917                 }
918                 
919         }
920 }
921 #endif
922
923
924 ////////////////// END OF TNODE MANIPULATION ///////////////////////////
925
926 /////////////// Functions to manipulate the look-up tree (made up of tnodes)
927 // The look up tree is represented by the top tnode and the number of topLevel
928 // in the tree. 0 means only the level 0 tnode is in the tree.
929
930
931 // FindLevel0Tnode finds the level 0 tnode, if one exists.
932 // Used when reading.....
933 static yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,yaffs_FileStructure *fStruct, __u32 chunkId)
934 {
935         
936         yaffs_Tnode *tn = fStruct->top;
937         __u32 i;
938         int requiredTallness;   
939         int level = fStruct->topLevel;
940         
941         // Check sane level and chunk Id
942         if(level < 0 || level > YAFFS_TNODES_MAX_LEVEL)
943         {
944 //              char str[50];
945 //              sprintf(str,"Bad level %d",level);
946 //              YALERT(str);
947                 return NULL;
948         }
949         
950         if(chunkId > YAFFS_MAX_CHUNK_ID)
951         {
952 //              char str[50];
953 //              sprintf(str,"Bad chunkId %d",chunkId);
954 //              YALERT(str);
955                 return NULL;
956         }
957
958         // First check we're tall enough (ie enough topLevel)
959         
960         i = chunkId >> (/*dev->chunkGroupBits  + */YAFFS_TNODES_LEVEL0_BITS);
961         requiredTallness = 0;
962         while(i)
963         {
964                 i >>= YAFFS_TNODES_INTERNAL_BITS;
965                 requiredTallness++;
966         }
967         
968         
969         if(requiredTallness > fStruct->topLevel)
970         {
971                 // Not tall enough, so we can't find it, return NULL.
972                 return NULL;
973         }
974                 
975         
976         // Traverse down to level 0
977         while (level > 0 && tn)
978         {
979             tn = tn->internal[(chunkId >>(/* dev->chunkGroupBits + */ YAFFS_TNODES_LEVEL0_BITS + (level-1) * YAFFS_TNODES_INTERNAL_BITS)) & 
980                                YAFFS_TNODES_INTERNAL_MASK]; 
981                 level--;
982         
983         }
984         
985         return tn;              
986 }
987
988 // AddOrFindLevel0Tnode finds the level 0 tnode if it exists, otherwise first expands the tree.
989 // This happens in two steps:
990 //  1. If the tree isn't tall enough, then make it taller.
991 //  2. Scan down the tree towards the level 0 tnode adding tnodes if required.
992 //
993 // Used when modifying the tree.
994 //
995 static yaffs_Tnode *yaffs_AddOrFindLevel0Tnode(yaffs_Device *dev, yaffs_FileStructure *fStruct, __u32 chunkId)
996 {
997         
998         yaffs_Tnode *tn; 
999         
1000         int requiredTallness;
1001         int i;
1002         int l;
1003         
1004         __u32 x;
1005                 
1006         
1007         //T((TSTR("AddOrFind topLevel=%d, chunk=%d"),fStruct->topLevel,chunkId));
1008         
1009         // Check sane level and page Id
1010         if(fStruct->topLevel < 0 || fStruct->topLevel > YAFFS_TNODES_MAX_LEVEL)
1011         {
1012 //              char str[50];
1013 //              sprintf(str,"Bad level %d",fStruct->topLevel);
1014 //              YALERT(str);
1015                 return NULL;
1016         }
1017         
1018         if(chunkId > YAFFS_MAX_CHUNK_ID)
1019         {
1020 //              char str[50];
1021 //              sprintf(str,"Bad chunkId %d",chunkId);
1022 //              YALERT(str);
1023                 return NULL;
1024         }
1025         
1026         // First check we're tall enough (ie enough topLevel)
1027         
1028         x = chunkId >> (/*dev->chunkGroupBits + */YAFFS_TNODES_LEVEL0_BITS);
1029         requiredTallness = 0;
1030         while(x)
1031         {
1032                 x >>= YAFFS_TNODES_INTERNAL_BITS;
1033                 requiredTallness++;
1034         }
1035         
1036         //T((TSTR(" required=%d"),requiredTallness));
1037         
1038         
1039         if(requiredTallness > fStruct->topLevel)
1040         {
1041                 // Not tall enough,gotta make the tree taller
1042                 for(i = fStruct->topLevel; i < requiredTallness; i++)
1043                 {
1044                         //T((TSTR(" add new top")));
1045                         
1046                         tn = yaffs_GetTnode(dev);
1047                         
1048                         if(tn)
1049                         {
1050                                 tn->internal[0] = fStruct->top;
1051                                 fStruct->top = tn;
1052                         }
1053                         else
1054                         {
1055                                         T(YAFFS_TRACE_ERROR,(TSTR("yaffs: no more tnodes" TENDSTR)));
1056                         }
1057                 }
1058                 
1059                 fStruct->topLevel = requiredTallness;
1060         }
1061         
1062         
1063         // Traverse down to level 0, adding anything we need
1064         
1065         l = fStruct->topLevel;
1066         tn = fStruct->top;
1067         while (l > 0 && tn)
1068         {
1069                 x = (chunkId >> (/*dev->chunkGroupBits + */YAFFS_TNODES_LEVEL0_BITS + (l-1) * YAFFS_TNODES_INTERNAL_BITS)) & 
1070                                YAFFS_TNODES_INTERNAL_MASK;
1071                                
1072                 //T((TSTR(" [%d:%d]"),l,i));
1073                 
1074             if(!tn->internal[x])
1075             {
1076                 //T((TSTR(" added")));
1077                 
1078                 tn->internal[x] = yaffs_GetTnode(dev);
1079             }
1080             
1081             tn =        tn->internal[x];
1082                 l--;
1083         
1084         }
1085         
1086         //TSTR(TENDSTR)));
1087         
1088         return tn;              
1089 }
1090
1091
1092 int yaffs_FindChunkInGroup(yaffs_Device *dev, int theChunk, yaffs_ExtendedTags *tags, int objectId, int chunkInInode)
1093 {
1094         int j;
1095         
1096                                         
1097         for(j = 0; theChunk && j < dev->chunkGroupSize; j++)
1098         {
1099                 if(yaffs_CheckChunkBit(dev,theChunk / dev->nChunksPerBlock,theChunk % dev->nChunksPerBlock))
1100                 {
1101                         yaffs_ReadChunkWithTagsFromNAND(dev,theChunk,NULL,tags);
1102                         if(yaffs_TagsMatch(tags,objectId,chunkInInode))
1103                         {
1104                                 // found it;
1105                                 return theChunk;
1106                                         
1107                         }
1108                 }
1109                 theChunk++;
1110         }
1111         return -1;
1112 }
1113
1114 // DeleteWorker scans backwards through the tnode tree and deletes all the
1115 // chunks and tnodes in the file
1116 // Returns 1 if the tree was deleted. Returns 0 if it stopped early due to hitting the limit and the delete is incomplete.
1117
1118 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level, int chunkOffset,int *limit)
1119 {
1120         int i;
1121         int chunkInInode;
1122         int theChunk;
1123         yaffs_ExtendedTags tags;
1124         int foundChunk;
1125         yaffs_Device *dev = in->myDev;
1126
1127         int allDone = 1;
1128         
1129         
1130         if(tn)
1131         {
1132                 if(level > 0)
1133                 {
1134                 
1135                         for(i = YAFFS_NTNODES_INTERNAL -1; allDone && i >= 0; i--)
1136                         {
1137                             if(tn->internal[i])
1138                         {
1139                                         if(limit && (*limit) < 0)
1140                                         {
1141                                                 allDone = 0;
1142                                         }
1143                                         else
1144                                         {
1145                                                 allDone = yaffs_DeleteWorker(in,tn->internal[i],level - 1,
1146                                                                                 (chunkOffset << YAFFS_TNODES_INTERNAL_BITS ) + i ,limit);
1147                                         }
1148                                         if(allDone)
1149                                         {
1150                                                 yaffs_FreeTnode(dev,tn->internal[i]);
1151                                         tn->internal[i] = NULL;
1152                                         }
1153                             }
1154                     
1155                         }
1156                         return (allDone) ? 1 : 0;
1157                 }
1158                 else if(level == 0)
1159                 {
1160                         int hitLimit = 0;
1161                         
1162                         for(i = YAFFS_NTNODES_LEVEL0 -1; i >= 0 && !hitLimit; i--)
1163                         {
1164                             if(tn->level0[i])
1165                         {
1166                                         
1167                                         chunkInInode = (chunkOffset << YAFFS_TNODES_LEVEL0_BITS ) + i;
1168                                         
1169                                         theChunk =  tn->level0[i] << dev->chunkGroupBits;
1170                                         
1171                                         foundChunk = yaffs_FindChunkInGroup(dev,theChunk,&tags,in->objectId,chunkInInode);
1172                                         
1173                                         if(foundChunk > 0)
1174                                         {
1175                                                 yaffs_DeleteChunk(dev,foundChunk,1,__LINE__);
1176                                                 in->nDataChunks--;
1177                                                 if(limit)
1178                                                 { 
1179                                                         *limit = *limit-1;
1180                                                         if(*limit <= 0) 
1181                                                         { 
1182                                                                 hitLimit = 1;
1183                                                         }
1184                                                 }
1185                                         
1186                                         }
1187                                         
1188                                 tn->level0[i] = 0;
1189                             }
1190                     
1191                         }
1192                         return (i < 0) ? 1 : 0;
1193
1194                         
1195                 }
1196                 
1197         }
1198         
1199         return 1;
1200         
1201 }
1202
1203
1204 static void yaffs_SoftDeleteChunk(yaffs_Device *dev, int chunk)
1205 {
1206
1207         yaffs_BlockInfo *theBlock;                                      
1208         
1209         T(YAFFS_TRACE_DELETION,(TSTR("soft delete chunk %d" TENDSTR),chunk));
1210                                                 
1211         theBlock =      yaffs_GetBlockInfo(dev,  chunk/dev->nChunksPerBlock);
1212         if(theBlock)
1213         {
1214                 theBlock->softDeletions++;
1215         }
1216 }
1217
1218 // SoftDeleteWorker scans backwards through the tnode tree and soft deletes all the chunks in the file.
1219 // All soft deleting does is increment the block's softdelete count and pulls the chunk out
1220 // of the tnode.
1221 // THus, essentially this is the same as DeleteWorker except that the chunks are soft deleted.
1222 //
1223 static int yaffs_SoftDeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level, int chunkOffset)
1224 {
1225         int i;
1226         int theChunk;
1227         int allDone = 1;
1228         yaffs_Device *dev = in->myDev;
1229         
1230         
1231         if(tn)
1232         {
1233                 if(level > 0)
1234                 {
1235                 
1236                         for(i = YAFFS_NTNODES_INTERNAL -1; allDone && i >= 0; i--)
1237                         {
1238                             if(tn->internal[i])
1239                         {
1240                                                 allDone = yaffs_SoftDeleteWorker(in,tn->internal[i],level - 1,
1241                                                                                 (chunkOffset << YAFFS_TNODES_INTERNAL_BITS ) + i);
1242                                         if(allDone)
1243                                         {
1244                                                 yaffs_FreeTnode(dev,tn->internal[i]);
1245                                         tn->internal[i] = NULL;
1246                                         }
1247                                         else
1248                                         {
1249                                                 //Hoosterman... how could this happen.
1250                                         }                           
1251                                 }                   
1252                         }
1253                         return (allDone) ? 1 : 0;
1254                 }
1255                 else if(level == 0)
1256                 {
1257                         
1258                         for(i = YAFFS_NTNODES_LEVEL0 -1; i >=0; i--)
1259                         {
1260                             if(tn->level0[i])
1261                         {
1262                                         // Note this does not find the real chunk, only the chunk group.
1263                                         // We make an assumption that a chunk group is niot larger than a block.
1264                                         theChunk =  (tn->level0[i] << dev->chunkGroupBits);
1265                                         
1266                                         yaffs_SoftDeleteChunk(dev,theChunk);
1267                                 tn->level0[i] = 0;
1268                             }
1269                     
1270                         }
1271                         return 1;
1272                         
1273                 }
1274                 
1275         }
1276         
1277         return 1;
1278                 
1279 }
1280
1281
1282
1283 static void yaffs_SoftDeleteFile(yaffs_Object *obj)
1284 {
1285         if(obj->deleted &&
1286            obj->variantType == YAFFS_OBJECT_TYPE_FILE &&
1287            !obj->softDeleted)
1288         {
1289                 if(obj->nDataChunks <= 0)
1290                 {
1291                                 // Empty file with no duplicate object headers, just delete it immediately
1292                                 yaffs_FreeTnode(obj->myDev,obj->variant.fileVariant.top);
1293                                 obj->variant.fileVariant.top = NULL;
1294                                 T(YAFFS_TRACE_TRACING,(TSTR("yaffs: Deleting empty file %d" TENDSTR),obj->objectId));
1295                                 yaffs_DoGenericObjectDeletion(obj);     
1296                 }
1297                 else
1298                 {
1299                         yaffs_SoftDeleteWorker(obj, obj->variant.fileVariant.top, obj->variant.fileVariant.topLevel, 0);
1300                         obj->softDeleted = 1;
1301                 }
1302         }
1303 }
1304
1305
1306
1307
1308
1309 // Pruning removes any part of the file structure tree that is beyond the
1310 // bounds of the file (ie that does not point to chunks).
1311 //
1312 // A file should only get pruned when its size is reduced.
1313 //
1314 // Before pruning, the chunks must be pulled from the tree and the
1315 // level 0 tnode entries must be zeroed out.
1316 // Could also use this for file deletion, but that's probably better handled
1317 // by a special case.
1318
1319 // yaffs_PruneWorker should only be called by yaffs_PruneFileStructure()
1320
1321 static yaffs_Tnode *yaffs_PruneWorker(yaffs_Device *dev, yaffs_Tnode *tn, __u32 level, int del0)
1322 {
1323         int i;
1324         int hasData;
1325         
1326         if(tn)
1327         {
1328                 hasData = 0;
1329                 
1330                 for(i = 0; i < YAFFS_NTNODES_INTERNAL; i++)
1331                 {
1332                     if(tn->internal[i] && level > 0)
1333                     {
1334                         tn->internal[i] = yaffs_PruneWorker(dev,tn->internal[i],level - 1, ( i == 0) ? del0 : 1);
1335                     }
1336                     
1337                     if(tn->internal[i])
1338                     {
1339                         hasData++;
1340                         }
1341                 }
1342                 
1343                 if(hasData == 0 && del0)
1344                 {
1345                         // Free and return NULL
1346                         
1347                         yaffs_FreeTnode(dev,tn);
1348                         tn = NULL;
1349                 }
1350                 
1351         }
1352
1353         return tn;
1354         
1355 }
1356
1357 static int yaffs_PruneFileStructure(yaffs_Device *dev, yaffs_FileStructure *fStruct)
1358 {
1359         int i;
1360         int hasData;
1361         int done = 0;
1362         yaffs_Tnode *tn;
1363         
1364         if(fStruct->topLevel > 0)
1365         {
1366                 fStruct->top = yaffs_PruneWorker(dev,fStruct->top, fStruct->topLevel,0);
1367                 
1368                 // Now we have a tree with all the non-zero branches NULL but the height
1369                 // is the same as it was.
1370                 // Let's see if we can trim internal tnodes to shorten the tree.
1371                 // We can do this if only the 0th element in the tnode is in use 
1372                 // (ie all the non-zero are NULL)
1373                 
1374                 while(fStruct->topLevel && !done)
1375                 {
1376                         tn = fStruct->top;
1377                         
1378                         hasData = 0;
1379                         for(i = 1; i <YAFFS_NTNODES_INTERNAL; i++)
1380                         {
1381                                 if(tn->internal[i])
1382                         {
1383                                 hasData++;
1384                                 }
1385                         }
1386                         
1387                         if(!hasData)
1388                         {
1389                                 fStruct->top = tn->internal[0];
1390                                 fStruct->topLevel--;
1391                                 yaffs_FreeTnode(dev,tn);
1392                         }
1393                         else
1394                         {
1395                                 done = 1;
1396                         }
1397                 }
1398         }
1399         
1400         return YAFFS_OK;
1401 }
1402
1403
1404
1405
1406
1407 /////////////////////// End of File Structure functions. /////////////////
1408
1409 // yaffs_CreateFreeObjects creates a bunch more objects and
1410 // adds them to the object free list.
1411 static int yaffs_CreateFreeObjects(yaffs_Device *dev, int nObjects)
1412 {
1413     int i;
1414     yaffs_Object *newObjects;
1415     yaffs_ObjectList *list;
1416     
1417     if(nObjects < 1) return YAFFS_OK;
1418    
1419         // make these things
1420         
1421     newObjects = YMALLOC(nObjects * sizeof(yaffs_Object));
1422    
1423     if (!newObjects)
1424     {
1425                 T(YAFFS_TRACE_ALLOCATE,(TSTR("yaffs: Could not allocate more objects" TENDSTR)));
1426                 return YAFFS_FAIL;
1427     }
1428     
1429     // Hook them into the free list
1430     for(i = 0; i < nObjects - 1; i++)
1431     {
1432         newObjects[i].siblings.next = (struct list_head *)(&newObjects[i+1]);
1433     }
1434         
1435         newObjects[nObjects - 1].siblings.next = (void *)dev->freeObjects;
1436         dev->freeObjects = newObjects;
1437         dev->nFreeObjects+= nObjects;
1438         dev->nObjectsCreated+= nObjects;
1439         
1440         // Now add this bunch of Objects to a list for freeing up.
1441         
1442         list = YMALLOC(sizeof(yaffs_ObjectList));
1443         if(!list)
1444         {
1445                 T(YAFFS_TRACE_ALLOCATE,(TSTR("Could not add objects to management list" TENDSTR)));
1446         }
1447         else
1448         {
1449                 list->objects = newObjects;
1450                 list->next = dev->allocatedObjectList;
1451                 dev->allocatedObjectList = list;
1452         }
1453         
1454         
1455         
1456         return YAFFS_OK;
1457 }
1458
1459
1460 // AllocateEmptyObject gets us a clean Object. Tries to make allocate more if we run out
1461 static yaffs_Object *yaffs_AllocateEmptyObject(yaffs_Device *dev)
1462 {
1463         yaffs_Object *tn = NULL;
1464         
1465         // If there are none left make more
1466         if(!dev->freeObjects)
1467         {
1468                 yaffs_CreateFreeObjects(dev,YAFFS_ALLOCATION_NOBJECTS);
1469         }
1470         
1471         if(dev->freeObjects)
1472         {
1473                 tn = dev->freeObjects;
1474                 dev->freeObjects = (yaffs_Object *)(dev->freeObjects->siblings.next);
1475                 dev->nFreeObjects--;
1476                 
1477                 // Now sweeten it up...
1478         
1479                 memset(tn,0,sizeof(yaffs_Object));
1480                 tn->myDev = dev;
1481                 tn->chunkId = -1;
1482                 tn->variantType = YAFFS_OBJECT_TYPE_UNKNOWN;
1483                 INIT_LIST_HEAD(&(tn->hardLinks));
1484                 INIT_LIST_HEAD(&(tn->hashLink));
1485                 INIT_LIST_HEAD(&tn->siblings);
1486                 
1487                 // Add it to the lost and found directory.
1488                 // NB Can't put root or lostNFound in lostNFound so
1489                 // check if lostNFound exists first
1490                 if(dev->lostNFoundDir)
1491                 {
1492                         yaffs_AddObjectToDirectory(dev->lostNFoundDir,tn);      
1493                 }
1494         }
1495         
1496
1497         return tn;
1498 }
1499
1500 static yaffs_Object *yaffs_CreateFakeDirectory(yaffs_Device *dev,int number,__u32 mode)
1501 {
1502
1503         yaffs_Object *obj = yaffs_CreateNewObject(dev,number,YAFFS_OBJECT_TYPE_DIRECTORY);              
1504         if(obj)
1505         {
1506                 obj->fake = 1;                  // it is fake so it has no NAND presence...
1507                 obj->renameAllowed= 0;  // ... and we're not allowed to rename it...
1508                 obj->unlinkAllowed= 0;  // ... or unlink it
1509                 obj->deleted = 0;
1510                 obj->unlinked = 0;
1511                 obj->st_mode = mode;
1512                 obj->myDev = dev;
1513                 obj->chunkId = 0; // Not a valid chunk.
1514         }
1515         
1516         return obj;
1517         
1518 }
1519
1520
1521 static void yaffs_UnhashObject(yaffs_Object *tn)
1522 {
1523         int bucket;
1524         yaffs_Device *dev = tn->myDev;
1525         
1526         
1527         // If it is still linked into the bucket list, free from the list
1528         if(!list_empty(&tn->hashLink))
1529         {
1530                 list_del_init(&tn->hashLink);
1531                 bucket =  yaffs_HashFunction(tn->objectId);
1532                 dev->objectBucket[bucket].count--;
1533         }
1534         
1535 }
1536
1537
1538 // FreeObject frees up a Object and puts it back on the free list
1539 static void yaffs_FreeObject(yaffs_Object *tn)
1540 {
1541
1542         yaffs_Device *dev = tn->myDev;
1543         
1544 #ifdef  __KERNEL__
1545         if(tn->myInode)
1546         {
1547                 // We're still hooked up to a cached inode.
1548                 // Don't delete now, but mark for later deletion
1549                 tn->deferedFree = 1;
1550                 return;
1551         }
1552 #endif
1553         
1554         yaffs_UnhashObject(tn);
1555         
1556         // Link into the free list.
1557         tn->siblings.next = (struct list_head *)(dev->freeObjects);
1558         dev->freeObjects = tn;
1559         dev->nFreeObjects++;
1560 }
1561
1562
1563
1564 #ifdef __KERNEL__
1565
1566 void yaffs_HandleDeferedFree(yaffs_Object *obj)
1567 {
1568         if(obj->deferedFree)
1569         {
1570            yaffs_FreeObject(obj);
1571         }
1572 }
1573
1574 #endif
1575
1576
1577
1578 static void yaffs_DeinitialiseObjects(yaffs_Device *dev)
1579 {
1580         // Free the list of allocated Objects
1581         
1582         yaffs_ObjectList *tmp;
1583         
1584         while( dev->allocatedObjectList)
1585         {
1586                 tmp =  dev->allocatedObjectList->next;
1587                 YFREE(dev->allocatedObjectList->objects);
1588                 YFREE(dev->allocatedObjectList);
1589                 
1590                 dev->allocatedObjectList =  tmp;
1591         }
1592         
1593         dev->freeObjects = NULL;
1594         dev->nFreeObjects = 0;
1595 }
1596
1597 static void yaffs_InitialiseObjects(yaffs_Device *dev)
1598 {
1599         int i;
1600         
1601         dev->allocatedObjectList = NULL;
1602         dev->freeObjects = NULL;
1603         dev->nFreeObjects = 0;
1604         
1605         for(i = 0; i < YAFFS_NOBJECT_BUCKETS; i++)
1606         {
1607                 INIT_LIST_HEAD(&dev->objectBucket[i].list);
1608                 dev->objectBucket[i].count = 0; 
1609         }
1610
1611 }
1612
1613
1614
1615
1616
1617
1618 int yaffs_FindNiceObjectBucket(yaffs_Device *dev)
1619 {
1620         static int x = 0;
1621         int i;
1622         int l = 999;
1623         int lowest = 999999;
1624
1625                 
1626         // First let's see if we can find one that's empty.
1627         
1628         for(i = 0; i < 10 && lowest > 0; i++)
1629          {
1630                 x++;
1631                 x %=  YAFFS_NOBJECT_BUCKETS;
1632                 if(dev->objectBucket[x].count < lowest)
1633                 {
1634                         lowest = dev->objectBucket[x].count;
1635                         l = x;
1636                 }
1637                 
1638         }
1639         
1640         // If we didn't find an empty list, then try
1641         // looking a bit further for a short one
1642         
1643         for(i = 0; i < 10 && lowest > 3; i++)
1644          {
1645                 x++;
1646                 x %=  YAFFS_NOBJECT_BUCKETS;
1647                 if(dev->objectBucket[x].count < lowest)
1648                 {
1649                         lowest = dev->objectBucket[x].count;
1650                         l = x;
1651                 }
1652                 
1653         }
1654         
1655         return l;
1656 }
1657
1658 static int yaffs_CreateNewObjectNumber(yaffs_Device *dev)
1659 {
1660         int bucket = yaffs_FindNiceObjectBucket(dev);
1661         
1662         // Now find an object value that has not already been taken
1663         // by scanning the list.
1664         
1665         int found = 0;
1666         struct list_head *i;
1667         
1668         __u32 n = (__u32)bucket;
1669
1670         //yaffs_CheckObjectHashSanity();        
1671         
1672         while(!found)
1673         {
1674                 found = 1;
1675                 n +=  YAFFS_NOBJECT_BUCKETS;
1676                 if(1 ||dev->objectBucket[bucket].count > 0)
1677                 {
1678                         list_for_each(i,&dev->objectBucket[bucket].list)
1679                         {
1680                                 // If there is already one in the list
1681                                 if(i && list_entry(i, yaffs_Object,hashLink)->objectId == n)
1682                                 {
1683                                         found = 0;
1684                                 }
1685                         }
1686                 }
1687         }
1688         
1689         //T(("bucket %d count %d inode %d\n",bucket,yaffs_objectBucket[bucket].count,n);
1690         
1691         return n;       
1692 }
1693
1694 void yaffs_HashObject(yaffs_Object *in)
1695 {
1696         int bucket = yaffs_HashFunction(in->objectId);
1697         yaffs_Device *dev = in->myDev;
1698         
1699         if(!list_empty(&in->hashLink))
1700         {
1701                 //YINFO("!!!");
1702         }
1703
1704         
1705         list_add(&in->hashLink,&dev->objectBucket[bucket].list);
1706         dev->objectBucket[bucket].count++;
1707
1708 }
1709
1710 yaffs_Object *yaffs_FindObjectByNumber(yaffs_Device *dev,__u32 number)
1711 {
1712         int bucket = yaffs_HashFunction(number);
1713         struct list_head *i;
1714         yaffs_Object *in;
1715         
1716         list_for_each(i,&dev->objectBucket[bucket].list)
1717         {
1718                 // Look if it is in the list
1719                 if(i)
1720                 {
1721                         in = list_entry(i, yaffs_Object,hashLink);
1722                         if(in->objectId == number)
1723                         {
1724 #ifdef __KERNEL__
1725                                 // Don't tell the VFS about this one if it is defered free
1726                                 if(in->deferedFree)
1727                                   return NULL;
1728 #endif
1729                                   
1730                                 return in;
1731                         }
1732                 }
1733         }
1734         
1735         return NULL;
1736 }
1737
1738
1739
1740 yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev,int number,yaffs_ObjectType type)
1741 {
1742                 
1743         yaffs_Object *theObject;
1744
1745         if(number < 0)
1746         {
1747                 number = yaffs_CreateNewObjectNumber(dev);
1748         }
1749         
1750         theObject = yaffs_AllocateEmptyObject(dev);
1751         
1752         if(theObject)
1753         {
1754                 theObject->fake = 0;
1755                 theObject->renameAllowed = 1;
1756                 theObject->unlinkAllowed = 1;
1757                 theObject->objectId = number;
1758                 yaffs_HashObject(theObject);
1759                 theObject->variantType = type;
1760 #ifdef CONFIG_YAFFS_WINCE
1761                 yfsd_WinFileTimeNow(theObject->win_atime);
1762                 theObject->win_ctime[0] = theObject->win_mtime[0] = theObject->win_atime[0];
1763                 theObject->win_ctime[1] = theObject->win_mtime[1] = theObject->win_atime[1];
1764
1765 #else
1766
1767                 theObject->st_atime = theObject->st_mtime = theObject->st_ctime = Y_CURRENT_TIME;               
1768 #endif
1769                 switch(type)
1770                 {
1771                         case YAFFS_OBJECT_TYPE_FILE: 
1772                                 theObject->variant.fileVariant.fileSize = 0;
1773                                 theObject->variant.fileVariant.scannedFileSize = 0;
1774                                 theObject->variant.fileVariant.shrinkSize = 0xFFFFFFFF; // max __u32
1775                                 theObject->variant.fileVariant.topLevel = 0;
1776                                 theObject->variant.fileVariant.top  = yaffs_GetTnode(dev);
1777                                 break;
1778                         case YAFFS_OBJECT_TYPE_DIRECTORY:
1779                                 INIT_LIST_HEAD(&theObject->variant.directoryVariant.children);
1780                                 break;
1781                         case YAFFS_OBJECT_TYPE_SYMLINK:
1782                                 // No action required
1783                                 break;
1784                         case YAFFS_OBJECT_TYPE_HARDLINK:
1785                                 // No action required
1786                                 break;
1787                         case YAFFS_OBJECT_TYPE_SPECIAL:
1788                                 // No action required
1789                                 break;
1790                         case YAFFS_OBJECT_TYPE_UNKNOWN:
1791                                 // todo this should not happen
1792                                 break;
1793                 }
1794         }
1795         
1796         return theObject;
1797 }
1798
1799 yaffs_Object *yaffs_FindOrCreateObjectByNumber(yaffs_Device *dev, int number,yaffs_ObjectType type)
1800 {
1801         yaffs_Object *theObject = NULL;
1802         
1803         if(number > 0)
1804         {
1805                 theObject = yaffs_FindObjectByNumber(dev,number);
1806         }
1807         
1808         if(!theObject)
1809         {
1810                 theObject = yaffs_CreateNewObject(dev,number,type);
1811         }
1812         
1813         return theObject;
1814
1815 }
1816
1817 YCHAR *yaffs_CloneString(const YCHAR *str)
1818 {
1819         YCHAR *newStr = NULL;
1820         
1821         if(str && *str)
1822         {
1823                 newStr = YMALLOC((yaffs_strlen(str) + 1) * sizeof(YCHAR));
1824                 yaffs_strcpy(newStr,str);
1825         }
1826
1827         return newStr;
1828         
1829 }
1830
1831 //
1832 // Mknod (create) a new object.
1833 // equivalentObject only has meaning for a hard link;
1834 // aliasString only has meaning for a sumlink.
1835 // rdev only has meaning for devices (a subset of special objects)
1836 yaffs_Object *yaffs_MknodObject( yaffs_ObjectType type,
1837                                                                  yaffs_Object *parent,
1838                                                                  const YCHAR *name, 
1839                                                                  __u32 mode,
1840                                                                  __u32 uid,
1841                                                                  __u32 gid,
1842                                                                  yaffs_Object *equivalentObject,
1843                                                                  const YCHAR *aliasString,
1844                                                                  __u32 rdev)
1845 {
1846         yaffs_Object *in;
1847
1848         yaffs_Device *dev = parent->myDev;
1849         
1850         // Check if the entry exists. If it does then fail the call since we don't want a dup.
1851         if(yaffs_FindObjectByName(parent,name))
1852         {
1853                 return NULL;
1854         }
1855         
1856         in = yaffs_CreateNewObject(dev,-1,type);
1857         
1858         if(in)
1859         {
1860                 in->chunkId = -1;
1861                 in->valid = 1;
1862                 in->variantType = type;
1863
1864                 in->st_mode  = mode;
1865                 
1866 #ifdef CONFIG_YAFFS_WINCE
1867                 yfsd_WinFileTimeNow(in->win_atime);
1868                 in->win_ctime[0] = in->win_mtime[0] = in->win_atime[0];
1869                 in->win_ctime[1] = in->win_mtime[1] = in->win_atime[1];
1870                 
1871 #else
1872                 in->st_atime = in->st_mtime = in->st_ctime = Y_CURRENT_TIME;
1873
1874                 in->st_rdev  = rdev;
1875                 in->st_uid   = uid;
1876                 in->st_gid   = gid;
1877 #endif          
1878                 in->nDataChunks = 0;
1879
1880                 yaffs_SetObjectName(in,name);
1881                 in->dirty = 1;
1882                 
1883                 yaffs_AddObjectToDirectory(parent,in);
1884                 
1885                 in->myDev = parent->myDev;
1886                 
1887                                 
1888                 switch(type)
1889                 {
1890                         case YAFFS_OBJECT_TYPE_SYMLINK:
1891                                 in->variant.symLinkVariant.alias = yaffs_CloneString(aliasString);
1892                                 break;
1893                         case YAFFS_OBJECT_TYPE_HARDLINK:
1894                                 in->variant.hardLinkVariant.equivalentObject = equivalentObject;
1895                                 in->variant.hardLinkVariant.equivalentObjectId = equivalentObject->objectId;
1896                                 list_add(&in->hardLinks,&equivalentObject->hardLinks);
1897                                 break;
1898                         case YAFFS_OBJECT_TYPE_FILE: // do nothing
1899                         case YAFFS_OBJECT_TYPE_DIRECTORY: // do nothing
1900                         case YAFFS_OBJECT_TYPE_SPECIAL: // do nothing
1901                         case YAFFS_OBJECT_TYPE_UNKNOWN:
1902                                 break;
1903                 }
1904
1905                 if(/*yaffs_GetNumberOfFreeChunks(dev) <= 0 || */
1906                    yaffs_UpdateObjectHeader(in,name,0,0) < 0)
1907                 {
1908                         // Could not create the object header, fail the creation
1909                         yaffs_DestroyObject(in);
1910                         in = NULL;
1911                 }
1912
1913         }
1914         
1915         return in;
1916 }
1917
1918 yaffs_Object *yaffs_MknodFile(yaffs_Object *parent,const YCHAR *name, __u32 mode, __u32 uid, __u32 gid)
1919 {
1920         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_FILE,parent,name,mode,uid,gid,NULL,NULL,0);
1921 }
1922
1923 yaffs_Object *yaffs_MknodDirectory(yaffs_Object *parent,const YCHAR *name, __u32 mode, __u32 uid, __u32 gid)
1924 {
1925         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_DIRECTORY,parent,name,mode,uid,gid,NULL,NULL,0);
1926 }
1927
1928 yaffs_Object *yaffs_MknodSpecial(yaffs_Object *parent,const YCHAR *name, __u32 mode, __u32 uid, __u32 gid, __u32 rdev)
1929 {
1930         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SPECIAL,parent,name,mode,uid,gid,NULL,NULL,rdev);
1931 }
1932
1933 yaffs_Object *yaffs_MknodSymLink(yaffs_Object *parent,const YCHAR *name, __u32 mode, __u32 uid, __u32 gid,const YCHAR *alias)
1934 {
1935         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SYMLINK,parent,name,mode,uid,gid,NULL,alias,0);
1936 }
1937
1938 // NB yaffs_Link returns the object id of the equivalent object.
1939 yaffs_Object *yaffs_Link(yaffs_Object *parent, const YCHAR *name, yaffs_Object *equivalentObject)
1940 {
1941         // Get the real object in case we were fed a hard link as an equivalent object
1942         equivalentObject = yaffs_GetEquivalentObject(equivalentObject);
1943         
1944         if(yaffs_MknodObject(YAFFS_OBJECT_TYPE_HARDLINK,parent,name,0,0,0,equivalentObject,NULL,0))
1945         {
1946                 return equivalentObject;
1947         }
1948         else
1949         {
1950                 return NULL;
1951         }
1952         
1953 }
1954
1955
1956 static int yaffs_ChangeObjectName(yaffs_Object *obj, yaffs_Object *newDir, const YCHAR *newName,int force)
1957 {
1958         int unlinkOp;
1959         int deleteOp;
1960
1961         if(newDir == NULL)
1962         {
1963                 newDir = obj->parent; // use the old directory
1964         }
1965         
1966         if(newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
1967         {
1968                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragendy: yaffs_ChangeObjectName: newDir is not a directory"TENDSTR)));
1969                 YBUG();
1970         }
1971
1972         // TODO: Do we need this different handling for YAFFS2 and YAFFS1??
1973         if(obj->myDev->isYaffs2)
1974         {
1975                 unlinkOp = (newDir == obj->myDev->unlinkedDir);
1976         }
1977         else
1978         {
1979                 unlinkOp = (newDir == obj->myDev->unlinkedDir && obj->variantType == YAFFS_OBJECT_TYPE_FILE);
1980         }
1981
1982         deleteOp = (newDir == obj->myDev->deletedDir);
1983         
1984         // If the object is a file going into the unlinked directory, then it is OK to just stuff it in since
1985         // duplicate names are allowed.
1986         // Otherwise only proceed if the new name does not exist and if we're putting it into a directory.
1987         if( (unlinkOp|| 
1988                  deleteOp ||
1989                  force || 
1990                  !yaffs_FindObjectByName(newDir,newName))  &&
1991              newDir->variantType == YAFFS_OBJECT_TYPE_DIRECTORY)
1992         {
1993                 yaffs_SetObjectName(obj,newName);
1994                 obj->dirty = 1;
1995                 
1996                 yaffs_AddObjectToDirectory(newDir,obj);
1997                 
1998                 if(unlinkOp) obj->unlinked = 1;
1999                 
2000                 // If it is a deletion then we mark it as a shrink for gc purposes.
2001                 if(yaffs_UpdateObjectHeader(obj,newName,0,deleteOp) >= 0)
2002                 {
2003                         return YAFFS_OK;
2004                 }
2005         }
2006         
2007         return YAFFS_FAIL;
2008 }
2009
2010
2011
2012 int yaffs_RenameObject(yaffs_Object *oldDir, const YCHAR *oldName, yaffs_Object *newDir, const YCHAR *newName)
2013 {
2014         yaffs_Object *obj;
2015         int force = 0;
2016         
2017 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
2018         // Special case for case insemsitive systems (eg. WinCE).
2019         // While look-up is case insensitive, the name isn't.
2020         // THerefore we might want to change x.txt to X.txt
2021         if(oldDir == newDir && yaffs_strcmp(oldName,newName) == 0)
2022         {
2023                 force = 1;
2024         }       
2025 #endif
2026         
2027         obj = yaffs_FindObjectByName(oldDir,oldName);
2028         if(obj && obj->renameAllowed)
2029         {
2030                 return yaffs_ChangeObjectName(obj,newDir,newName,force);
2031         }
2032         return YAFFS_FAIL;
2033 }
2034
2035
2036 #if 0
2037
2038 static int yaffs_CheckObjectHashSanity(yaffs_Device *dev)
2039 {
2040         // Scan the buckets and check that the lists 
2041         // have as many members as the count says there are
2042         int bucket;
2043         int countEm;
2044         struct list_head *j;
2045         int ok = YAFFS_OK;
2046         
2047         for(bucket = 0; bucket < YAFFS_NOBJECT_BUCKETS; bucket++)
2048         {
2049                 countEm = 0;
2050                 
2051                 list_for_each(j,&dev->objectBucket[bucket].list)
2052                 {
2053                         countEm++;
2054                 }
2055                 
2056                 if(countEm != dev->objectBucket[bucket].count)
2057                 {
2058                         T(YAFFS_TRACE_ERROR,(TSTR("Inode hash inconsistency" TENDSTR)));
2059                         ok = YAFFS_FAIL;
2060                 }
2061         }
2062
2063         return ok;
2064 }
2065
2066
2067 void yaffs_ObjectTest(yaffs_Device *dev)
2068 {
2069         yaffs_Object *in[1000];
2070         int inNo[1000];
2071         yaffs_Object *inold[1000];
2072         int i;
2073         int j;
2074         
2075         memset(in,0,1000*sizeof(yaffs_Object *));
2076         memset(inold,0,1000*sizeof(yaffs_Object *));
2077         
2078         yaffs_CheckObjectHashSanity(dev);
2079         
2080         for(j = 0; j < 10; j++)
2081         {
2082                 //T(("%d\n",j));
2083                 
2084                 for(i = 0; i < 1000; i++)
2085                 {
2086                         in[i] = yaffs_CreateNewObject(dev,-1,YAFFS_OBJECT_TYPE_FILE);
2087                         if(!in[i])
2088                         {
2089                                 YINFO("No more inodes");
2090                         }
2091                         else
2092                         {
2093                                 inNo[i] = in[i]->objectId;
2094                         }
2095                 }
2096                 
2097                 for(i = 0; i < 1000; i++)
2098                 {
2099                         if(yaffs_FindObjectByNumber(dev,inNo[i]) != in[i])
2100                         {
2101                                 //T(("Differnce in look up test\n"));
2102                         }
2103                         else
2104                         {
2105                                 // T(("Look up ok\n"));
2106                         }
2107                 }
2108                 
2109                 yaffs_CheckObjectHashSanity(dev);
2110         
2111                 for(i = 0; i < 1000; i+=3)
2112                 {
2113                         yaffs_FreeObject(in[i]);        
2114                         in[i] = NULL;
2115                 }
2116                 
2117         
2118                 yaffs_CheckObjectHashSanity(dev);
2119         }
2120                 
2121 }
2122
2123 #endif
2124
2125 /////////////////////////// Block Management and Page Allocation ///////////////////
2126
2127
2128 static int yaffs_InitialiseBlocks(yaffs_Device *dev,int nBlocks)
2129 {
2130         dev->allocationBlock = -1; // force it to get a new one
2131         //Todo we're assuming the malloc will pass.
2132         dev->blockInfo = YMALLOC(nBlocks * sizeof(yaffs_BlockInfo));
2133         // Set up dynamic blockinfo stuff.
2134         dev->chunkBitmapStride = (dev->nChunksPerBlock+7)/8;
2135         dev->chunkBits = YMALLOC(dev->chunkBitmapStride * nBlocks);
2136         if(dev->blockInfo && dev->chunkBits)
2137         {
2138                 memset(dev->blockInfo,0,nBlocks * sizeof(yaffs_BlockInfo));
2139                 memset(dev->chunkBits,0,dev->chunkBitmapStride * nBlocks);
2140                 return YAFFS_OK;
2141         }
2142         
2143         return YAFFS_FAIL;
2144         
2145 }
2146
2147 static void yaffs_DeinitialiseBlocks(yaffs_Device *dev)
2148 {
2149         YFREE(dev->blockInfo);
2150         dev->blockInfo = NULL;
2151         YFREE(dev->chunkBits);
2152         dev->chunkBits = NULL;
2153 }
2154
2155
2156 static int yaffs_BlockNotDisqualifiedFromGC(yaffs_Device *dev, yaffs_BlockInfo *bi)
2157 {
2158         int i;
2159         __u32 seq;
2160         yaffs_BlockInfo *b;
2161         
2162         if(!dev->isYaffs2) return 1; // disqualification only applies to yaffs2.
2163         
2164         if(!bi->hasShrinkHeader) return 1; // can gc
2165
2166
2167         // Find the oldest dirty sequence number if we don't know it and save it
2168         // so we don't have to keep recomputing it.
2169         if(!dev->oldestDirtySequence)
2170         {
2171                 seq = dev->sequenceNumber;
2172
2173                 for(i = dev->startBlock; i <= dev->endBlock; i++)
2174                 {
2175                         b = yaffs_GetBlockInfo(dev,i);
2176                         if(b->blockState == YAFFS_BLOCK_STATE_FULL &&
2177                         (b->pagesInUse - b->softDeletions )< dev->nChunksPerBlock &&
2178                         b->sequenceNumber < seq)
2179                         {
2180                                 seq = b->sequenceNumber;
2181                         }
2182                 }
2183                 dev->oldestDirtySequence = seq;
2184         }
2185
2186
2187         // Can't do gc of this block if there are any blocks older than this one that have
2188         // discarded pages.
2189         return (bi->sequenceNumber <= dev->oldestDirtySequence);
2190         
2191         
2192         return 1;
2193
2194 }
2195
2196 // FindDiretiestBlock is used to select the dirtiest block (or close enough)
2197 // for garbage collection.
2198 //
2199
2200
2201
2202 static int yaffs_FindBlockForGarbageCollection(yaffs_Device *dev,int aggressive)
2203 {
2204
2205         int b = dev->currentDirtyChecker;
2206         
2207         int i;
2208         int iterations;
2209         int dirtiest = -1;
2210         int pagesInUse; 
2211         yaffs_BlockInfo *bi;
2212         static int  nonAggressiveSkip = 0;
2213
2214         // If we're doing aggressive GC then we are happy to take a less-dirty block, and
2215         // search harder.
2216         // else (we're doing a leasurely gc), then we only bother to do this if the
2217         // block has only a few pages in use.
2218         
2219
2220         nonAggressiveSkip--;
2221
2222         if(!aggressive &&(nonAggressiveSkip > 0))
2223         {
2224                 return -1;
2225         }
2226
2227         pagesInUse = (aggressive)? dev->nChunksPerBlock : YAFFS_PASSIVE_GC_CHUNKS + 1;
2228         if(aggressive)
2229         {
2230                 iterations = dev->endBlock - dev->startBlock + 1;
2231         }
2232         else
2233         {
2234                 iterations = dev->endBlock - dev->startBlock + 1;
2235                 iterations = iterations / 16; 
2236                 if(iterations > 200)
2237                 {
2238                         iterations = 200;
2239                 }
2240         }
2241         
2242         for(i = 0; i <= iterations && pagesInUse > 0 ; i++)
2243         {
2244                 b++;
2245                 if ( b < dev->startBlock || b > dev->endBlock)
2246                 {
2247                         b =  dev->startBlock;
2248                 }
2249
2250                 if(b < dev->startBlock || b > dev->endBlock)
2251                 {
2252                         T(YAFFS_TRACE_ERROR,(TSTR("**>> Block %d is not valid" TENDSTR),b));
2253                         YBUG();
2254                 }
2255                 
2256                 bi = yaffs_GetBlockInfo(dev,b);
2257                 
2258                 if(bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2259                    (bi->pagesInUse - bi->softDeletions )< pagesInUse &&
2260                    yaffs_BlockNotDisqualifiedFromGC(dev,bi))
2261                 {
2262                         dirtiest = b;
2263                         pagesInUse = (bi->pagesInUse - bi->softDeletions);
2264                 }
2265         }
2266         
2267         dev->currentDirtyChecker = b;
2268         
2269         if(dirtiest > 0)
2270         {
2271                 T(YAFFS_TRACE_GC,(TSTR("GC Selected block %d with %d free" TENDSTR),dirtiest,dev->nChunksPerBlock - pagesInUse));
2272         }
2273         
2274         dev->oldestDirtySequence = 0; // clear this
2275         
2276         if(dirtiest > 0)
2277         {
2278                 nonAggressiveSkip = 4;
2279         }
2280
2281         return dirtiest;
2282 }
2283
2284
2285 static void yaffs_BlockBecameDirty(yaffs_Device *dev,int blockNo)
2286 {
2287         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev,blockNo);
2288         
2289         int erasedOk = 0;
2290         
2291         // If the block is still healthy erase it and mark as clean.
2292         // If the block has had a data failure, then retire it.
2293         bi->blockState = YAFFS_BLOCK_STATE_DIRTY;
2294
2295         if(!bi->needsRetiring)
2296         {
2297                 erasedOk = yaffs_EraseBlockInNAND(dev,blockNo);
2298                 if(!erasedOk)
2299                 {
2300                         dev->nErasureFailures++;
2301                         T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,(TSTR("**>> Erasure failed %d" TENDSTR),blockNo));
2302                 }
2303         }
2304
2305         if(erasedOk && (yaffs_traceMask & YAFFS_TRACE_ERASE))
2306         {
2307                         int i;
2308                         for(i = 0; i < dev->nChunksPerBlock; i++)
2309                         {
2310                                         if(!yaffs_CheckChunkErased(dev,blockNo * dev->nChunksPerBlock + i))
2311                                         {
2312                                                 T(YAFFS_TRACE_ERROR,(TSTR(">>Block %d erasure supposedly OK, but chunk %d not erased" TENDSTR),blockNo,i));
2313                                         }
2314                         }
2315         }
2316         
2317         if( erasedOk )
2318         {
2319                 // Clean it up...
2320                 bi->blockState = YAFFS_BLOCK_STATE_EMPTY;
2321                 dev->nErasedBlocks++;
2322                 bi->pagesInUse = 0;
2323                 bi->softDeletions = 0;
2324                 bi->hasShrinkHeader=0;
2325                 yaffs_ClearChunkBits(dev,blockNo);
2326         
2327                 T(YAFFS_TRACE_ERASE,(TSTR("Erased block %d" TENDSTR),blockNo));
2328         }
2329         else
2330         {
2331                 yaffs_RetireBlock(dev,blockNo);
2332                 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,(TSTR("**>> Block %d retired" TENDSTR),blockNo));
2333         }
2334 }
2335
2336 #if 0
2337 static void yaffs_DumpBlockStats(yaffs_Device *dev)
2338 {
2339         int i,j;
2340         yaffs_BlockInfo *bi;
2341         
2342         for(i= dev->startBlock; i <=dev->endBlock; i++)
2343         {
2344                 bi = yaffs_GetBlockInfo(dev,i);
2345                 T(YAFFS_TRACE_ALLOCATE,(TSTR("%3d state %d shrink %d inuse %d/%d seq %d pages"),i,
2346                 bi->blockState,bi->hasShrinkHeader,bi->pagesInUse,bi->softDeletions,bi->sequenceNumber));       
2347                 
2348                 for(j = 0; j < dev->nChunksPerBlock; j++)
2349                 {
2350                         if(yaffs_CheckChunkBit(dev,i,j))
2351                         {
2352                                 T(YAFFS_TRACE_ALLOCATE,(TSTR(" %d"),j));
2353
2354                         }
2355                 }
2356                 T(YAFFS_TRACE_ALLOCATE,(TSTR(" " TENDSTR)));
2357
2358         }
2359 }
2360 #endif
2361
2362
2363 static int yaffs_FindBlockForAllocation(yaffs_Device *dev)
2364 {
2365         int i;
2366         
2367         yaffs_BlockInfo *bi;
2368         
2369 #if 0
2370         static int j = 0;
2371         j++;
2372         if(j < 0 || j > 100)
2373         {
2374                 j = 0;
2375                 yaffs_DumpBlockStats(dev);
2376         }
2377         
2378 #endif
2379         
2380         if(dev->nErasedBlocks < 1)
2381         {
2382                 // Hoosterman we've got a problem.
2383                 // Can't get space to gc
2384                 T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: no more eraased blocks" TENDSTR)));
2385
2386                 return -1;
2387         }
2388         
2389         // Find an empty block.
2390         
2391         for(i = dev->startBlock; i <= dev->endBlock; i++)
2392         {
2393                 dev->allocationBlockFinder++;
2394                 if(dev->allocationBlockFinder < dev->startBlock || dev->allocationBlockFinder> dev->endBlock) 
2395                 {
2396                         dev->allocationBlockFinder = dev->startBlock;
2397                 }
2398                 
2399                 bi = yaffs_GetBlockInfo(dev,dev->allocationBlockFinder);
2400
2401                 if(bi->blockState == YAFFS_BLOCK_STATE_EMPTY)
2402                 {
2403                         bi->blockState = YAFFS_BLOCK_STATE_ALLOCATING;
2404                         dev->sequenceNumber++;
2405                         bi->sequenceNumber = dev->sequenceNumber;
2406                         dev->nErasedBlocks--;           
2407                         T(YAFFS_TRACE_ALLOCATE,(TSTR("Allocated block %d, seq  %d, %d left" TENDSTR),dev->allocationBlockFinder,dev->sequenceNumber, dev->nErasedBlocks));      
2408                         return dev->allocationBlockFinder;
2409                 }
2410         }
2411         
2412         
2413         T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs tragedy: no more eraased blocks, but there should have been %d" TENDSTR),dev->nErasedBlocks));
2414         
2415         
2416         
2417
2418         
2419         return -1;      
2420 }
2421
2422
2423
2424 static int yaffs_AllocateChunk(yaffs_Device *dev,int useReserve)
2425 {
2426         int retVal;
2427         yaffs_BlockInfo *bi;
2428         
2429         if(dev->allocationBlock < 0)
2430         {
2431                 // Get next block to allocate off
2432                 dev->allocationBlock = yaffs_FindBlockForAllocation(dev);
2433                 dev->allocationPage = 0;
2434         }
2435         
2436         if(!useReserve &&  dev->nErasedBlocks </*=*/ dev->nReservedBlocks)
2437         {
2438                 // Not enough space to allocate unless we're allowed to use the reserve.
2439                 return -1;
2440         }
2441
2442         if(dev->nErasedBlocks < dev->nReservedBlocks && dev->allocationPage == 0)
2443         {
2444                 T(YAFFS_TRACE_ALLOCATE,(TSTR("Allocating reserve" TENDSTR)));   
2445         }
2446
2447         
2448         // Next page please....
2449         if(dev->allocationBlock >= 0)
2450         {
2451                 bi = yaffs_GetBlockInfo(dev,dev->allocationBlock);
2452                 
2453                 retVal = (dev->allocationBlock * dev->nChunksPerBlock) + 
2454                                   dev->allocationPage;
2455                 bi->pagesInUse++;
2456                 yaffs_SetChunkBit(dev,dev->allocationBlock,dev->allocationPage);
2457
2458                 dev->allocationPage++;
2459                 
2460                 dev->nFreeChunks--;
2461                 
2462                 // If the block is full set the state to full
2463                 if(dev->allocationPage >= dev->nChunksPerBlock)
2464                 {
2465                         bi->blockState = YAFFS_BLOCK_STATE_FULL;
2466                         dev->allocationBlock = -1;
2467                 }
2468
2469
2470                 return retVal;
2471                 
2472         }
2473         T(YAFFS_TRACE_ERROR,(TSTR("!!!!!!!!! Allocator out !!!!!!!!!!!!!!!!!" TENDSTR)));
2474
2475         return -1;      
2476 }
2477
2478
2479 // To determine if we have enough space we just look at the 
2480 // number of erased blocks.
2481 // The cache is allowed to use reserved blocks.
2482
2483 static int yaffs_CheckSpaceForChunkCache(yaffs_Device *dev)
2484 {
2485         return (dev->nErasedBlocks >= dev->nReservedBlocks);
2486 }
2487
2488
2489 static int yaffs_GetErasedChunks(yaffs_Device *dev)
2490 {
2491                 int n;
2492
2493                 n = dev->nErasedBlocks * dev->nChunksPerBlock;
2494
2495                 if(dev->allocationBlock> 0)
2496                 {
2497                         n += (dev->nChunksPerBlock - dev->allocationPage);
2498                 }
2499
2500                 return n;
2501
2502 }
2503
2504 int  yaffs_GarbageCollectBlock(yaffs_Device *dev,int block)
2505 {
2506         int oldChunk;
2507         int newChunk;
2508         int chunkInBlock;
2509         int markNAND;
2510         int retVal = YAFFS_OK;
2511         int cleanups = 0;
2512         int i;
2513
2514         int chunksBefore = yaffs_GetErasedChunks(dev);
2515         int chunksAfter;
2516
2517         yaffs_ExtendedTags  tags;
2518         
2519         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev,block);
2520         
2521         yaffs_Object *object;
2522         
2523         bi->blockState = YAFFS_BLOCK_STATE_COLLECTING;
2524
2525         T(YAFFS_TRACE_TRACING,(TSTR("Collecting block %d, in use %d, shrink %d, " TENDSTR),block,bi->pagesInUse,bi->hasShrinkHeader));
2526         //T(("Collecting block %d n %d bits %x\n",block, bi->pagesInUse, bi->pageBits));        
2527
2528         bi->hasShrinkHeader = 0; // clear the flag so that the block can erase
2529
2530
2531         if(!yaffs_StillSomeChunkBits(dev,block))
2532         {
2533                 T(YAFFS_TRACE_TRACING,(TSTR("Collecting block %d that has no chunks in use" TENDSTR),block));
2534                 yaffs_BlockBecameDirty(dev,block);
2535         }
2536         else
2537         {
2538
2539                         __u8  *buffer = yaffs_GetTempBuffer(dev,__LINE__);
2540
2541         for(chunkInBlock = 0,oldChunk = block * dev->nChunksPerBlock; 
2542             chunkInBlock < dev->nChunksPerBlock && yaffs_StillSomeChunkBits(dev,block);
2543             chunkInBlock++, oldChunk++ )
2544         {
2545                 if(yaffs_CheckChunkBit(dev,block,chunkInBlock))
2546                 {
2547                         
2548                         // This page is in use and might need to be copied off
2549                         
2550                         markNAND = 1;
2551                         
2552                         //T(("copying page %x from %d to %d\n",mask,oldChunk,newChunk));
2553                         
2554                         yaffs_InitialiseTags(&tags);
2555                         
2556                         yaffs_ReadChunkWithTagsFromNAND(dev,oldChunk,buffer, &tags);
2557
2558                         object = yaffs_FindObjectByNumber(dev,tags.objectId);
2559                         
2560                         T(YAFFS_TRACE_GC_DETAIL,(TSTR("Collecting page %d, %d %d %d " TENDSTR),chunkInBlock,tags.objectId,tags.chunkId,tags.byteCount));
2561                         
2562                         if(!object)
2563                         {
2564                                 T(YAFFS_TRACE_ERROR,(TSTR("page %d in gc has no object " TENDSTR),oldChunk));
2565                         }
2566                         
2567                         if(object && object->deleted && tags.chunkId != 0)
2568                         {
2569                                 // Data chunk in a deleted file, throw it away
2570                                 // It's a deleted data chunk,
2571                                 // No need to copy this, just forget about it and fix up the
2572                                 // object.
2573                                 
2574                                 //yaffs_PutChunkIntoFile(object, tags.chunkId, 0,0); 
2575                                 object->nDataChunks--;
2576                                 
2577                                 if(object->nDataChunks <= 0)
2578                                 {
2579                                         // remeber to clean up the object
2580                                         dev->gcCleanupList[cleanups] = tags.objectId;
2581                                         cleanups++;
2582                                 }
2583                                 markNAND = 0;
2584                         }
2585                         else if( 0 /* Todo object && object->deleted && object->nDataChunks == 0 */)
2586                         {
2587                                 // Deleted object header with no data chunks.
2588                                 // Can be discarded and the file deleted.
2589                                 object->chunkId = 0;
2590                                 yaffs_FreeTnode(object->myDev,object->variant.fileVariant.top);
2591                                 object->variant.fileVariant.top = NULL;
2592                                 yaffs_DoGenericObjectDeletion(object);
2593                                 
2594                         }
2595                         else if(object)
2596                         {
2597                                 // It's either a data chunk in a live file or
2598                                 // an ObjectHeader, so we're interested in it.
2599                                 // NB Need to keep the ObjectHeaders of deleted files
2600                                 // until the whole file has been deleted off
2601                                 tags.serialNumber++;
2602
2603                                 dev->nGCCopies++;
2604
2605                                 newChunk = yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &tags,1);
2606                         
2607                                 if(newChunk < 0)
2608                                 {
2609                                         retVal =  YAFFS_FAIL;
2610                                 }
2611                                 else
2612                                 {
2613                         
2614                                         // Ok, now fix up the Tnodes etc.
2615                         
2616                                         if(tags.chunkId == 0)
2617                                         {
2618                                                 // It's a header
2619                                                 object->chunkId = newChunk;
2620                                                 object->serial = tags.serialNumber;
2621                                         }
2622                                         else
2623                                         {
2624                                                 // It's a data chunk
2625                                                 yaffs_PutChunkIntoFile(object, tags.chunkId, newChunk,0);
2626                                         }
2627                                 }
2628                         }
2629                         
2630                         yaffs_DeleteChunk(dev,oldChunk,markNAND,__LINE__);                      
2631                         
2632                 }
2633         }
2634
2635         yaffs_ReleaseTempBuffer(dev,buffer,__LINE__);
2636
2637
2638         // Do any required cleanups
2639         for(i = 0; i < cleanups; i++)
2640         {                                               
2641                 // Time to delete the file too
2642                 object =  yaffs_FindObjectByNumber(dev,dev->gcCleanupList[i]);
2643                 if(object)
2644                 {
2645                         yaffs_FreeTnode(dev,object->variant.fileVariant.top);
2646                         object->variant.fileVariant.top = NULL;
2647                         T(YAFFS_TRACE_GC,(TSTR("yaffs: About to finally delete object %d" TENDSTR),object->objectId));
2648                         yaffs_DoGenericObjectDeletion(object);
2649                 }
2650
2651         }
2652
2653         }
2654
2655         if(chunksBefore >= (chunksAfter = yaffs_GetErasedChunks(dev)))
2656         {
2657                         T(YAFFS_TRACE_GC,(TSTR("gc did not increase free chunks before %d after %d" TENDSTR),chunksBefore,chunksAfter));
2658         }
2659                         
2660         return YAFFS_OK;
2661 }
2662
2663 #if 0
2664 static yaffs_Object *yaffs_FindDeletedUnlinkedFile(yaffs_Device *dev)
2665 {
2666         // find a file to delete
2667         struct list_head *i;    
2668         yaffs_Object *l;
2669
2670
2671         //Scan the unlinked files looking for one to delete
2672         list_for_each(i,&dev->unlinkedDir->variant.directoryVariant.children)
2673         {
2674                 if(i)
2675                 {
2676                         l = list_entry(i, yaffs_Object,siblings);
2677                         if(l->deleted)
2678                         {
2679                                 return l;                       
2680                         }
2681                 }
2682         }       
2683         return NULL;
2684 }
2685
2686
2687 static void yaffs_DoUnlinkedFileDeletion(yaffs_Device *dev)
2688 {
2689         // This does background deletion on unlinked files.. only deleted ones.
2690         // If we don't have a file we're working on then find one
2691         if(!dev->unlinkedDeletion && dev->nDeletedFiles > 0)
2692         {
2693                 dev->unlinkedDeletion = yaffs_FindDeletedUnlinkedFile(dev);
2694         }
2695         
2696         // OK, we're working on a file...
2697         if(dev->unlinkedDeletion)
2698         {
2699                 yaffs_Object *obj = dev->unlinkedDeletion;
2700                 int delresult;
2701                 int limit; // Number of chunks to delete in a file.
2702                                    // NB this can be exceeded, but not by much.
2703                                    
2704                 limit = -1;
2705
2706                 delresult = yaffs_DeleteWorker(obj, obj->variant.fileVariant.top, obj->variant.fileVariant.topLevel, 0,&limit);
2707                 
2708                 if(obj->nDataChunks == 0)
2709                 {
2710                         // Done all the deleting of data chunks.
2711                         // Now dump the header and clean up
2712                         yaffs_FreeTnode(dev,obj->variant.fileVariant.top);
2713                         obj->variant.fileVariant.top = NULL;
2714                         yaffs_DoGenericObjectDeletion(obj);
2715                         dev->nDeletedFiles--;
2716                         dev->nUnlinkedFiles--;
2717                         dev->nBackgroundDeletions++;
2718                         dev->unlinkedDeletion = NULL;   
2719                 }
2720         }
2721 }
2722
2723 #endif
2724
2725
2726
2727 // New garbage collector
2728 // If we're very low on erased blocks then we do aggressive garbage collection
2729 // otherwise we do "leasurely" garbage collection.
2730 // Aggressive gc looks further (whole array) and will accept dirtier blocks.
2731 // Passive gc only inspects smaller areas and will only accept cleaner blocks.
2732 //
2733 // The idea is to help clear out space in a more spread-out manner.
2734 // Dunno if it really does anything useful.
2735 //
2736 int yaffs_CheckGarbageCollection(yaffs_Device *dev)
2737 {
2738         int block;
2739         int aggressive; 
2740         int gcOk = YAFFS_OK;
2741         int maxTries = 0;
2742         
2743         //yaffs_DoUnlinkedFileDeletion(dev);
2744
2745         // This loop should pass the first time.
2746         // We'll only see looping here if the erase of the collected block fails.
2747         
2748         do{
2749                 maxTries++;
2750                 if(dev->nErasedBlocks <= (dev->nReservedBlocks + 2))
2751                 {
2752                         // We need a block soon...
2753                         aggressive = 1;
2754                 }
2755                 else 
2756                 {
2757                         // We're in no hurry
2758                         aggressive = 0;
2759                 }
2760         
2761                 block = yaffs_FindBlockForGarbageCollection(dev,aggressive);
2762         
2763                 if(block > 0)
2764                 {
2765                         dev->garbageCollections++;
2766                         if(!aggressive)
2767                         {
2768                                 dev->passiveGarbageCollections++;
2769                         }
2770
2771                         T(YAFFS_TRACE_GC,(TSTR("yaffs: GC erasedBlocks %d aggressive %d" TENDSTR),dev->nErasedBlocks,aggressive));
2772
2773                         gcOk =  yaffs_GarbageCollectBlock(dev,block);
2774                 }
2775
2776                 if(dev->nErasedBlocks <= (dev->nReservedBlocks + 1)) 
2777                 {
2778                         T(YAFFS_TRACE_GC,(TSTR("yaffs: GC !!!no reclaim!!! erasedBlocks %d after try %d block %d" TENDSTR),dev->nErasedBlocks,maxTries,block));
2779                 }
2780         } while((dev->nErasedBlocks <= (dev->nReservedBlocks + 1)) && (block > 0) && (maxTries < 5));
2781
2782         return aggressive ? gcOk: YAFFS_OK;
2783 }
2784
2785
2786 //////////////////////////// TAGS ///////////////////////////////////////
2787
2788
2789
2790 #if 0
2791
2792 void yaffs_CalcTagsECC(yaffs_Tags *tags)
2793 {
2794         // Calculate an ecc
2795         
2796         unsigned char *b = ((yaffs_TagsUnion *)tags)->asBytes;
2797         unsigned  i,j;
2798         unsigned  ecc = 0;
2799         unsigned bit = 0;
2800
2801         tags->ecc = 0;
2802         
2803         for(i = 0; i < 8; i++)
2804         {
2805                 for(j = 1; j &0xff; j<<=1)
2806                 {
2807                         bit++;
2808                         if(b[i] & j)
2809                         {
2810                                 ecc ^= bit;
2811                         }
2812                 }
2813         }
2814         
2815         tags->ecc = ecc;
2816         
2817         
2818 }
2819
2820 int  yaffs_CheckECCOnTags(yaffs_Tags *tags)
2821 {
2822         unsigned ecc = tags->ecc;
2823         
2824         yaffs_CalcTagsECC(tags);
2825         
2826         ecc ^= tags->ecc;
2827         
2828         if(ecc && ecc <= 64)
2829         {
2830                 // TODO: Handle the failure better. Retire?
2831                 unsigned char *b = ((yaffs_TagsUnion *)tags)->asBytes;
2832
2833                 ecc--;
2834                                 
2835                 b[ecc / 8] ^= (1 << (ecc & 7));
2836                 
2837                 // Now recvalc the ecc
2838                 yaffs_CalcTagsECC(tags);
2839                 
2840                 return 1; // recovered error
2841         }
2842         else if(ecc)
2843         {
2844                 // Wierd ecc failure value
2845                 // TODO Need to do somethiong here
2846                 return -1; //unrecovered error
2847         }
2848         
2849         return 0;
2850 }
2851
2852 static void yaffs_LoadTagsIntoSpare(yaffs_Spare *sparePtr, yaffs_Tags *tagsPtr)
2853 {
2854         yaffs_TagsUnion *tu = (yaffs_TagsUnion *)tagsPtr;
2855         
2856         yaffs_CalcTagsECC(tagsPtr);
2857         
2858         sparePtr->tagByte0 = tu->asBytes[0];
2859         sparePtr->tagByte1 = tu->asBytes[1];
2860         sparePtr->tagByte2 = tu->asBytes[2];
2861         sparePtr->tagByte3 = tu->asBytes[3];
2862         sparePtr->tagByte4 = tu->asBytes[4];
2863         sparePtr->tagByte5 = tu->asBytes[5];
2864         sparePtr->tagByte6 = tu->asBytes[6];
2865         sparePtr->tagByte7 = tu->asBytes[7];
2866 }
2867
2868 static void yaffs_GetTagsFromSpare(yaffs_Device *dev, yaffs_Spare *sparePtr,yaffs_Tags *tagsPtr)
2869 {
2870         yaffs_TagsUnion *tu = (yaffs_TagsUnion *)tagsPtr;
2871         int result;
2872
2873         tu->asBytes[0]= sparePtr->tagByte0;
2874         tu->asBytes[1]= sparePtr->tagByte1;
2875         tu->asBytes[2]= sparePtr->tagByte2;
2876         tu->asBytes[3]= sparePtr->tagByte3;
2877         tu->asBytes[4]= sparePtr->tagByte4;
2878         tu->asBytes[5]= sparePtr->tagByte5;
2879         tu->asBytes[6]= sparePtr->tagByte6;
2880         tu->asBytes[7]= sparePtr->tagByte7;
2881         
2882         result =  yaffs_CheckECCOnTags(tagsPtr);
2883         if(result> 0)
2884         {
2885                 dev->tagsEccFixed++;
2886         }
2887         else if(result <0)
2888         {
2889                 dev->tagsEccUnfixed++;
2890         }
2891 }
2892
2893 static void yaffs_SpareInitialise(yaffs_Spare *spare)
2894 {
2895         memset(spare,0xFF,sizeof(yaffs_Spare));
2896 }
2897
2898 #endif
2899
2900 #if 0
2901 static int yaffs_WriteNewChunkWithTagsToNAND(yaffs_Device *dev, const __u8 *buffer, yaffs_ExtendedTags *tags, int useReserve)
2902 {
2903         // NB There must be tags, data is optional
2904         // If there is data, then an ECC is calculated on it.
2905         
2906         yaffs_Spare spare;
2907         
2908         if(!tags)
2909         {
2910                 return YAFFS_FAIL;
2911         }
2912         
2913         //yaffs_SpareInitialise(&spare);
2914         
2915         //if(!dev->useNANDECC && buffer)
2916         //{
2917         //      yaffs_CalcECC(buffer,&spare);
2918         //}
2919         
2920         //yaffs_LoadTagsIntoSpare(&spare,tags);
2921         
2922         return yaffs_WriteNewChunkToNAND(dev,buffer,&spare,useReserve);
2923         
2924 }
2925 #endif
2926
2927 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId, int chunkInObject)
2928 {
2929         return  (  tags->chunkId == chunkInObject &&
2930                            tags->objectId == objectId &&
2931                            !tags->chunkDeleted) ? 1 : 0;
2932         
2933 }
2934
2935 /////////////////////////////////////////////////////////////////////////////////////////////////////////
2936
2937
2938 int yaffs_FindChunkInFile(yaffs_Object *in,int chunkInInode,yaffs_ExtendedTags *tags)
2939 {
2940         //Get the Tnode, then get the level 0 offset chunk offset
2941     yaffs_Tnode *tn;     
2942     int theChunk = -1;
2943     yaffs_ExtendedTags localTags;
2944     int retVal = -1;
2945     
2946     yaffs_Device *dev = in->myDev;
2947     
2948     
2949     if(!tags)
2950     {
2951         // Passed a NULL, so use our own tags space
2952         tags = &localTags;
2953     }
2954     
2955     tn = yaffs_FindLevel0Tnode(dev,&in->variant.fileVariant, chunkInInode);
2956     
2957     if(tn)
2958     {
2959                 theChunk = tn->level0[chunkInInode & YAFFS_TNODES_LEVEL0_MASK] << dev->chunkGroupBits;
2960                 
2961                 retVal = yaffs_FindChunkInGroup(dev,theChunk,tags,in->objectId,chunkInInode);
2962     }
2963     return retVal;
2964 }
2965
2966 int yaffs_FindAndDeleteChunkInFile(yaffs_Object *in,int chunkInInode,yaffs_ExtendedTags *tags)
2967 {
2968         //Get the Tnode, then get the level 0 offset chunk offset
2969     yaffs_Tnode *tn;     
2970     int theChunk = -1;
2971     yaffs_ExtendedTags localTags;
2972
2973     yaffs_Device *dev = in->myDev;
2974     int retVal = -1;
2975     
2976     if(!tags)
2977     {
2978         // Passed a NULL, so use our own tags space
2979         tags = &localTags;
2980     }
2981     
2982     tn = yaffs_FindLevel0Tnode(dev,&in->variant.fileVariant, chunkInInode);
2983     
2984     if(tn)
2985     {
2986     
2987                 theChunk = tn->level0[chunkInInode & YAFFS_TNODES_LEVEL0_MASK] << dev->chunkGroupBits;
2988                 
2989                 retVal = yaffs_FindChunkInGroup(dev,theChunk,tags,in->objectId,chunkInInode);
2990     
2991                 // Delete the entry in the filestructure (if found)
2992                 if(retVal != -1)
2993                 {
2994                         tn->level0[chunkInInode & YAFFS_TNODES_LEVEL0_MASK] = 0;
2995                 }
2996     }
2997     else
2998     {
2999         //T(("No level 0 found for %d\n", chunkInInode));
3000     }
3001     
3002     if(retVal == -1)
3003     {
3004         //T(("Could not find %d to delete\n",chunkInInode));
3005     }
3006     return retVal;
3007 }
3008
3009
3010 #ifdef YAFFS_PARANOID
3011
3012 static int yaffs_CheckFileSanity(yaffs_Object *in)
3013 {
3014         int chunk;
3015         int nChunks;
3016         int fSize;
3017         int failed = 0;
3018         int objId;
3019         yaffs_Tnode *tn;
3020     yaffs_Tags localTags;
3021     yaffs_Tags *tags = &localTags;
3022     int theChunk;
3023     int chunkDeleted;
3024     
3025         
3026         if(in->variantType != YAFFS_OBJECT_TYPE_FILE)
3027         {
3028                 //T(("Object not a file\n"));
3029                 return YAFFS_FAIL;
3030         }
3031         
3032         objId = in->objectId;
3033         fSize  = in->variant.fileVariant.fileSize;
3034         nChunks = (fSize + in->myDev->nBytesPerChunk -1)/in->myDev->nBytesPerChunk;
3035         
3036         for(chunk = 1; chunk <= nChunks; chunk++)
3037         {
3038                 tn = yaffs_FindLevel0Tnode(in->myDev,&in->variant.fileVariant, chunk);
3039     
3040                 if(tn)
3041                 {
3042     
3043                         theChunk = tn->level0[chunk & YAFFS_TNODES_LEVEL0_MASK] << in->myDev->chunkGroupBits;
3044                         
3045                 if(yaffs_CheckChunkBits(dev,theChunk/dev->nChunksPerBlock,theChunk%dev->nChunksPerBlock))
3046                         {
3047
3048
3049                                 yaffs_ReadChunkTagsFromNAND(in->myDev,theChunk,tags,&chunkDeleted);
3050                                 if(yaffs_TagsMatch(tags,in->objectId,chunk,chunkDeleted))
3051                                 {
3052                                         // found it;
3053                                 
3054                                 }
3055                         }
3056                         else
3057                         {
3058                                 //T(("File problem file [%d,%d] NAND %d  tags[%d,%d]\n",
3059                                 //              objId,chunk,theChunk,tags->chunkId,tags->objectId);
3060                                                 
3061                                 failed = 1;
3062                                                         
3063                         }
3064     
3065                 }
3066                 else
3067                 {
3068                         //T(("No level 0 found for %d\n", chunk));
3069                 }
3070         }
3071         
3072         return failed ? YAFFS_FAIL : YAFFS_OK;
3073 }
3074
3075 #endif
3076
3077 static int yaffs_PutChunkIntoFile(yaffs_Object *in,int chunkInInode, int chunkInNAND, int inScan)
3078 {
3079         // NB inScan is zero unless scanning. For forward scanning, inScan is > 0 for backward scanning inScan is < 0
3080         yaffs_Tnode *tn;
3081         yaffs_Device *dev = in->myDev;
3082         int existingChunk;
3083         yaffs_ExtendedTags existingTags;
3084         yaffs_ExtendedTags newTags;
3085         unsigned existingSerial, newSerial;
3086         
3087         if(in->variantType != YAFFS_OBJECT_TYPE_FILE)
3088         {
3089                 // Just ignore an attempt at putting a chunk into a non-file during scanning
3090                 // If it is not during Scanning then something went wrong!
3091                 if(!inScan)
3092                 {
3093                         T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy:attempt to put data chunk into a non-file" TENDSTR)));
3094                         YBUG();
3095                 }
3096                 
3097                 yaffs_DeleteChunk(dev,chunkInNAND,1,__LINE__);
3098                 return YAFFS_OK;
3099         }
3100                 
3101         tn = yaffs_AddOrFindLevel0Tnode(dev,&in->variant.fileVariant, chunkInInode);
3102         if(!tn)
3103         {
3104                 return YAFFS_FAIL;
3105         }
3106
3107         existingChunk = tn->level0[chunkInInode & YAFFS_TNODES_LEVEL0_MASK];            
3108         
3109         if(inScan != 0)
3110         {
3111                 // If we're scanning then we need to test for duplicates
3112                 // NB This does not need to be efficient since it should only ever 
3113                 // happen when the power fails during a write, then only one
3114                 // chunk should ever be affected.
3115                 //
3116                 // Correction for YAFFS2: This could happen quite a lot and we need to think about efficiency! TODO
3117         
3118                 
3119                 if(existingChunk != 0)
3120                 {
3121                         // NB Right now existing chunk will not be real chunkId if the device >= 32MB
3122                         //    thus we have to do a FindChunkInFile to get the real chunk id.
3123                         //
3124                         // We have a duplicate now we need to decide which one to use:
3125                         //
3126                         // Backwards scanning YAFFS2: The old one is what we use, dump the new one.
3127                         // Forward scanning YAFFS2: The new one is what we use, dump the old one.
3128                         // YAFFS1: Get both sets of tags and compare serial numbers.
3129                         //
3130                         //
3131                         
3132                         if(inScan >= 0)
3133                         {
3134                                 // No need to do this for backward scanning
3135                                 yaffs_ReadChunkWithTagsFromNAND(dev,chunkInNAND, NULL,&newTags);
3136                         
3137                         
3138                                 // Do a proper find
3139                                 existingChunk = yaffs_FindChunkInFile(in,chunkInInode, &existingTags);
3140                         }
3141
3142                         if(existingChunk <=0)
3143                         {
3144                                 //Hoosterman - how did this happen?
3145                                 
3146                                 T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: existing chunk < 0 in scan" TENDSTR)));
3147
3148                         }
3149
3150                         
3151                         // NB The deleted flags should be false, otherwise the chunks will 
3152                         // not be loaded during a scan
3153                         
3154                         newSerial = newTags.serialNumber;
3155                         existingSerial = existingTags.serialNumber;
3156                         
3157                         if( (inScan >= 0) &&
3158                             ( in->myDev->isYaffs2  ||
3159                               existingChunk <= 0 ||
3160                              ((existingSerial+1) & 3) == newSerial))
3161                         {
3162                                 // Forward scanning or not during scanning
3163                                 
3164                                 // Use new
3165                                 // Delete the old one and drop through to update the tnode
3166                                 yaffs_DeleteChunk(dev,existingChunk,1,__LINE__);
3167                         }
3168                         else
3169                         {
3170                                 // Backward scanning or we want to use the existing one
3171                                 // Use existing.
3172                                 // Delete the new one and return early so that the tnode isn't changed
3173                                 yaffs_DeleteChunk(dev,chunkInNAND,1,__LINE__);
3174                                 return YAFFS_OK;
3175                         }
3176                 }
3177
3178         }
3179                 
3180         if(existingChunk == 0)
3181         {
3182                 in->nDataChunks++;
3183         }
3184         
3185         tn->level0[chunkInInode & YAFFS_TNODES_LEVEL0_MASK] = (chunkInNAND >> dev->chunkGroupBits);
3186         
3187         return YAFFS_OK;
3188 }
3189
3190
3191
3192 int yaffs_ReadChunkDataFromObject(yaffs_Object *in,int chunkInInode, __u8 *buffer)
3193 {
3194     int chunkInNAND = yaffs_FindChunkInFile(in,chunkInInode,NULL);
3195     
3196     if(chunkInNAND >= 0)
3197     {
3198                 return yaffs_ReadChunkWithTagsFromNAND(in->myDev,chunkInNAND,buffer,NULL);
3199         }
3200         else
3201         {
3202                 T(YAFFS_TRACE_NANDACCESS,(TSTR("Chunk %d not found zero instead" TENDSTR),chunkInNAND));
3203
3204                 memset(buffer,0,in->myDev->nBytesPerChunk); // get sane data if you read a hole
3205                 return 0;
3206         }
3207
3208 }
3209
3210
3211 void yaffs_DeleteChunk(yaffs_Device *dev,int chunkId,int markNAND,int lyn)
3212 {
3213         int block;
3214         int page;
3215         yaffs_ExtendedTags tags;
3216         yaffs_BlockInfo *bi;
3217         
3218         if(chunkId <= 0) return;        
3219         
3220         dev->nDeletions++;
3221         block = chunkId / dev->nChunksPerBlock;
3222         page = chunkId % dev->nChunksPerBlock;
3223         
3224         bi = yaffs_GetBlockInfo(dev,block);
3225         
3226         T(YAFFS_TRACE_DELETION,(TSTR("line %d delete of chunk %d" TENDSTR),lyn,chunkId));
3227         
3228         if(markNAND && 
3229           bi->blockState != YAFFS_BLOCK_STATE_COLLECTING &&
3230           !dev->isYaffs2)
3231         {
3232 //              yaffs_SpareInitialise(&spare);
3233
3234 #ifdef CONFIG_MTD_NAND_VERIFY_WRITE
3235
3236                 //read data before write, to ensure correct ecc 
3237                 //if we're using MTD verification under Linux
3238                 yaffs_ReadChunkFromNAND(dev,chunkId,NULL,&spare,0);
3239 #endif
3240
3241                 yaffs_InitialiseTags(&tags);
3242
3243                 tags.chunkDeleted = 1;
3244
3245         
3246                 yaffs_WriteChunkWithTagsToNAND(dev,chunkId,NULL,&tags);
3247                 yaffs_HandleUpdateChunk(dev,chunkId,&tags);
3248         }
3249         else
3250         {
3251                         dev->nUnmarkedDeletions++;
3252         }       
3253         
3254         
3255         // Pull out of the management area.
3256         // If the whole block became dirty, this will kick off an erasure.
3257         if(     bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING ||
3258             bi->blockState == YAFFS_BLOCK_STATE_FULL ||     
3259             bi->blockState == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
3260             bi->blockState == YAFFS_BLOCK_STATE_COLLECTING)
3261         {
3262                 dev->nFreeChunks++;
3263
3264                 yaffs_ClearChunkBit(dev,block,page);
3265                 bi->pagesInUse--;
3266                 
3267                 if(bi->pagesInUse == 0 &&
3268                    !bi->hasShrinkHeader &&
3269                bi->blockState != YAFFS_BLOCK_STATE_ALLOCATING &&
3270                bi->blockState != YAFFS_BLOCK_STATE_NEEDS_SCANNING)
3271             {
3272                 yaffs_BlockBecameDirty(dev,block);
3273             }
3274
3275         }
3276         else
3277         {
3278                 // T(("Bad news deleting chunk %d\n",chunkId));
3279         }
3280         
3281 }
3282
3283
3284
3285
3286 int yaffs_WriteChunkDataToObject(yaffs_Object *in,int chunkInInode, const __u8 *buffer,int nBytes,int useReserve)
3287 {
3288         // Find old chunk Need to do this to get serial number
3289         // Write new one and patch into tree.
3290         // Invalidate old tags.
3291
3292     int prevChunkId;
3293     yaffs_ExtendedTags prevTags;
3294     
3295     int newChunkId;
3296     yaffs_ExtendedTags newTags;
3297
3298     yaffs_Device *dev = in->myDev;    
3299
3300         yaffs_CheckGarbageCollection(dev);
3301
3302         // Get the previous chunk at this location in the file if it exists
3303     prevChunkId  = yaffs_FindChunkInFile(in,chunkInInode,&prevTags);
3304     
3305     // Set up new tags
3306     yaffs_InitialiseTags(&newTags);
3307     
3308         newTags.chunkId = chunkInInode;
3309         newTags.objectId = in->objectId;
3310         newTags.serialNumber = (prevChunkId >= 0) ? prevTags.serialNumber + 1 : 1;
3311         newTags.byteCount = nBytes;
3312                 
3313 //      yaffs_CalcTagsECC(&newTags);
3314
3315         newChunkId = yaffs_WriteNewChunkWithTagsToNAND(dev,buffer,&newTags,useReserve);
3316         
3317         if(newChunkId >= 0)
3318         {
3319                 yaffs_PutChunkIntoFile(in,chunkInInode,newChunkId,0);
3320                 
3321                 
3322                 if(prevChunkId >= 0)
3323                 {
3324                         yaffs_DeleteChunk(dev,prevChunkId,1,__LINE__);
3325         
3326                 }
3327                 
3328                 yaffs_CheckFileSanity(in);
3329         }
3330         return newChunkId;
3331
3332
3333
3334
3335
3336 }
3337
3338
3339 // UpdateObjectHeader updates the header on NAND for an object.
3340 // If name is not NULL, then that new name is used.
3341 //
3342 int yaffs_UpdateObjectHeader(yaffs_Object *in,const YCHAR *name, int force,int isShrink)
3343 {
3344
3345         yaffs_BlockInfo *bi;
3346         
3347         yaffs_Device *dev = in->myDev;
3348         
3349     int prevChunkId;
3350     int retVal = 0;
3351     
3352     int newChunkId;
3353     yaffs_ExtendedTags newTags;
3354     
3355     __u8 *buffer = NULL;
3356     YCHAR oldName[YAFFS_MAX_NAME_LENGTH+1];
3357     
3358    // __u8 bufferOld[YAFFS_BYTES_PER_CHUNK];
3359     
3360     yaffs_ObjectHeader *oh = NULL;
3361     // yaffs_ObjectHeader *ohOld = (yaffs_ObjectHeader *)bufferOld;
3362
3363     
3364     if(!in->fake || force)
3365     {
3366   
3367                 yaffs_CheckGarbageCollection(dev);              
3368     
3369             buffer = yaffs_GetTempBuffer(in->myDev,__LINE__);
3370             oh  = (yaffs_ObjectHeader *)buffer;
3371     
3372                 prevChunkId = in->chunkId;
3373     
3374                 if(prevChunkId >= 0)
3375                 {
3376                         yaffs_ReadChunkWithTagsFromNAND(dev,prevChunkId,buffer,NULL);
3377                         memcpy(oldName,oh->name,sizeof(oh->name));      
3378                 }
3379
3380                 memset(buffer,0xFF,dev->nBytesPerChunk);
3381
3382                 // Header data
3383                 oh->type = in->variantType;
3384                 
3385                 oh->st_mode = in->st_mode;
3386
3387 #ifdef CONFIG_YAFFS_WINCE
3388                 oh->win_atime[0] = in->win_atime[0];
3389                 oh->win_ctime[0] = in->win_ctime[0];
3390                 oh->win_mtime[0] = in->win_mtime[0];
3391                 oh->win_atime[1] = in->win_atime[1];
3392                 oh->win_ctime[1] = in->win_ctime[1];
3393                 oh->win_mtime[1] = in->win_mtime[1];
3394 #else
3395                 oh->st_uid = in->st_uid;
3396                 oh->st_gid = in->st_gid;
3397                 oh->st_atime = in->st_atime;
3398                 oh->st_mtime = in->st_mtime;
3399                 oh->st_ctime = in->st_ctime;
3400                 oh->st_rdev = in->st_rdev;
3401 #endif  
3402                 if(in->parent)
3403                 {
3404                         oh->parentObjectId = in->parent->objectId;
3405                 }
3406                 else
3407                 {
3408                         oh->parentObjectId = 0;
3409                 }
3410                 
3411                 //oh->sum = in->sum;
3412                 if(name && *name)
3413                 {
3414                         memset(oh->name,0,sizeof(oh->name));
3415                         yaffs_strncpy(oh->name,name,YAFFS_MAX_NAME_LENGTH);
3416                 }
3417                 else if(prevChunkId)
3418                 {       
3419                         memcpy(oh->name, oldName,sizeof(oh->name));
3420                 }
3421                 else
3422                 {
3423                         memset(oh->name,0,sizeof(oh->name));    
3424                 }
3425                 
3426                 oh->isShrink = isShrink;
3427         
3428                 switch(in->variantType)
3429                 {
3430                         case YAFFS_OBJECT_TYPE_UNKNOWN:         
3431                                 // Should not happen
3432                                 break;
3433                         case YAFFS_OBJECT_TYPE_FILE:
3434                                 oh->fileSize = (oh->parentObjectId == YAFFS_OBJECTID_DELETED ||
3435                                                 oh->parentObjectId == YAFFS_OBJECTID_UNLINKED) ? 0 : in->variant.fileVariant.fileSize;
3436                                 break;
3437                         case YAFFS_OBJECT_TYPE_HARDLINK:
3438                                 oh->equivalentObjectId = in->variant.hardLinkVariant.equivalentObjectId;
3439                                 break;
3440                         case YAFFS_OBJECT_TYPE_SPECIAL: 
3441                                 // Do nothing
3442                                 break;
3443                         case YAFFS_OBJECT_TYPE_DIRECTORY:       
3444                                 // Do nothing
3445                                 break;
3446                         case YAFFS_OBJECT_TYPE_SYMLINK:
3447                                 yaffs_strncpy(oh->alias,in->variant.symLinkVariant.alias,YAFFS_MAX_ALIAS_LENGTH);
3448                                 oh->alias[YAFFS_MAX_ALIAS_LENGTH] = 0;
3449                                 break;
3450                 }
3451
3452                 // Tags
3453                 yaffs_InitialiseTags(&newTags);
3454                 in->serial++;
3455                 newTags.chunkId = 0;
3456                 newTags.objectId = in->objectId;
3457                 newTags.serialNumber = in->serial;
3458                 
3459                 // Add extra info for file header
3460                 
3461                 newTags.extraHeaderInfoAvailable = 1;
3462                 newTags.extraParentObjectId = oh->parentObjectId;
3463                 newTags.extraFileLength = oh->fileSize;
3464                 newTags.extraIsShrinkHeader = oh->isShrink;
3465                 newTags.extraEquivalentObjectId = oh->equivalentObjectId;
3466                 newTags.extraObjectType  = in->variantType;
3467                 
3468                 // Create new chunk in NAND
3469                 newChunkId = yaffs_WriteNewChunkWithTagsToNAND(dev,buffer,&newTags, (prevChunkId >= 0) ? 1 : 0 );
3470     
3471                 if(newChunkId >= 0)
3472                 {
3473                 
3474                         in->chunkId = newChunkId;       
3475                 
3476                         if(prevChunkId >= 0)
3477                         {
3478                                 yaffs_DeleteChunk(dev,prevChunkId,1,__LINE__);
3479                         }
3480                 
3481                         in->dirty = 0;
3482                         
3483                         // If this was a shrink, then mark the block that the chunk lives on
3484                         if(isShrink)
3485                         {
3486                                 bi = yaffs_GetBlockInfo(in->myDev,newChunkId / in->myDev->nChunksPerBlock);
3487                                 bi->hasShrinkHeader = 1;
3488                         }
3489                         
3490                 }
3491                 
3492                 retVal =  newChunkId;
3493
3494     }
3495     
3496         if(buffer) 
3497                 yaffs_ReleaseTempBuffer(dev,buffer,__LINE__);
3498         
3499     return retVal;
3500 }
3501
3502
3503 /////////////////////// Short Operations Cache ////////////////////////////////
3504 //      In many siturations where there is no high level buffering (eg WinCE) a lot of
3505 //      reads might be short sequential reads, and a lot of writes may be short 
3506 //  sequential writes. eg. scanning/writing a jpeg file.
3507 //      In these cases, a short read/write cache can provide a huge perfomance benefit 
3508 //  with dumb-as-a-rock code.
3509 //  There are a limited number (~10) of cache chunks per device so that we don't
3510 //  need a very intelligent search.
3511
3512
3513
3514
3515
3516 static void yaffs_FlushFilesChunkCache(yaffs_Object *obj)
3517 {
3518         yaffs_Device *dev = obj->myDev;
3519         int lowest;
3520         int i;
3521         yaffs_ChunkCache *cache;
3522         int chunkWritten = 0;
3523         //int nBytes;
3524         int nCaches = obj->myDev->nShortOpCaches;
3525         
3526         if  (nCaches > 0)
3527         {
3528                 do{
3529                         cache = NULL;
3530                 
3531                         // Find the dirty cache for this object with the lowest chunk id.
3532                         for(i = 0; i < nCaches; i++)
3533                         {
3534                                 if(dev->srCache[i].object == obj &&
3535                                    dev->srCache[i].dirty)
3536                                 {
3537                                         if(!cache ||  dev->srCache[i].chunkId < lowest)
3538                                         {
3539                                                 cache = &dev->srCache[i];
3540                                                 lowest = cache->chunkId;
3541                                         }
3542                                 }
3543                         }
3544                 
3545                         if(cache && !cache->locked)
3546                         {
3547                                 //Write it out and free it up
3548
3549 #if 0
3550                                 nBytes = cache->object->variant.fileVariant.fileSize - ((cache->chunkId -1) * YAFFS_BYTES_PER_CHUNK);
3551                         
3552                                 if(nBytes > YAFFS_BYTES_PER_CHUNK)
3553                                 {
3554                                         nBytes= YAFFS_BYTES_PER_CHUNK;
3555                                 }
3556 #endif                  
3557                                 chunkWritten = yaffs_WriteChunkDataToObject(cache->object,
3558                                                                                                                         cache->chunkId,
3559                                                                                                                         cache->data,
3560                                                                                                                         cache->nBytes,1);
3561
3562                                 cache->dirty = 0;
3563                                 cache->object = NULL;
3564                         }
3565                 
3566                 } while(cache && chunkWritten > 0);
3567         
3568                 if(cache)
3569                 {
3570                         //Hoosterman, disk full while writing cache out.
3571                         T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: no space during cache write" TENDSTR)));
3572
3573                 }
3574         }       
3575                 
3576 }
3577
3578
3579 // Grab us a chunk for use.
3580 // First look for an empty one. 
3581 // Then look for the least recently used non-dirty one.
3582 // Then look for the least recently used dirty one...., flush and look again.
3583 static yaffs_ChunkCache *yaffs_GrabChunkCacheWorker(yaffs_Device *dev)
3584 {
3585         int i;
3586         int usage;
3587         int theOne;
3588         
3589         if(dev->nShortOpCaches > 0)
3590         {
3591                 for(i = 0; i < dev->nShortOpCaches; i++)
3592                 {
3593                         if(!dev->srCache[i].object)
3594                         {
3595                                 //T(("Grabbing empty %d\n",i));
3596                                 
3597                                 //printf("Grabbing empty %d\n",i);
3598                         
3599                                 return &dev->srCache[i];
3600                         }
3601                 }
3602                 
3603                 return NULL;
3604         
3605                 theOne = -1; 
3606                 usage = 0; // just to stop the compiler grizzling
3607         
3608                 for(i = 0; i < dev->nShortOpCaches; i++)
3609                 {
3610                         if(!dev->srCache[i].dirty &&
3611                         ((dev->srCache[i].lastUse < usage  && theOne >= 0)|| 
3612                                 theOne < 0))
3613                         {
3614                                 usage = dev->srCache[i].lastUse;
3615                                 theOne = i;
3616                         }
3617                 }
3618         
3619                 //T(("Grabbing non-empty %d\n",theOne));
3620                 
3621                 //if(theOne >= 0) printf("Grabbed non-empty cache %d\n",theOne);
3622                 
3623                 return  theOne >= 0 ?  &dev->srCache[theOne] : NULL;
3624         }
3625         else
3626         {
3627                 return NULL;
3628         }
3629         
3630 }
3631
3632
3633 static yaffs_ChunkCache *yaffs_GrabChunkCache(yaffs_Device *dev)
3634 {
3635         yaffs_ChunkCache *cache;
3636         yaffs_Object *theObj;
3637         int usage;
3638         int i;
3639         int pushout;
3640         
3641         if(dev->nShortOpCaches > 0)
3642         {
3643                 // Try find a non-dirty one...
3644         
3645                 cache = yaffs_GrabChunkCacheWorker(dev);
3646         
3647                 if(!cache)
3648                 {
3649                         // They were all dirty, find the last recently used object and flush
3650                         // its cache, then  find again.
3651                         // NB what's here is not very accurate, we actually flush the object
3652                         // the last recently used page.
3653                         
3654                         // With locking we can't assume we can use entry zero
3655                         
3656                 
3657                         theObj = NULL;
3658                         usage = -1;
3659                         cache = NULL;
3660                         pushout = -1;
3661         
3662                         for(i = 0; i < dev->nShortOpCaches; i++)
3663                         {
3664                                 if( dev->srCache[i].object && 
3665                                         !dev->srCache[i].locked &&
3666                                         (dev->srCache[i].lastUse < usage || !cache))
3667                                 {
3668                                         usage  = dev->srCache[i].lastUse;
3669                                         theObj = dev->srCache[i].object;
3670                                         cache = &dev->srCache[i];
3671                                         pushout = i;
3672                                 }
3673                         }
3674                 
3675                         if(!cache || cache->dirty)
3676                         {
3677                         
3678                                 //printf("Dirty ");
3679                                 yaffs_FlushFilesChunkCache(theObj);
3680                 
3681                                 // Try again
3682                                 cache = yaffs_GrabChunkCacheWorker(dev);
3683                         }
3684                         else
3685                         {
3686                                 //printf(" pushout %d\n",pushout);
3687                         }
3688                         
3689                 }
3690                 return cache;
3691         }
3692         else
3693                 return NULL;
3694
3695 }
3696
3697
3698 // Find a cached chunk
3699 static yaffs_ChunkCache *yaffs_FindChunkCache(const yaffs_Object *obj, int chunkId)
3700 {
3701         yaffs_Device *dev = obj->myDev;
3702         int i;
3703         if(dev->nShortOpCaches > 0)
3704         {
3705                 for(i = 0; i < dev->nShortOpCaches; i++)
3706                 {
3707                         if(dev->srCache[i].object == obj && 
3708                         dev->srCache[i].chunkId == chunkId)
3709                         {
3710                                 dev->cacheHits++;
3711                         
3712                                 return &dev->srCache[i];
3713                         }
3714                 }
3715         }
3716         return NULL;
3717 }
3718
3719 // Mark the chunk for the least recently used algorithym
3720 static void yaffs_UseChunkCache(yaffs_Device *dev, yaffs_ChunkCache *cache, int isAWrite)
3721 {
3722
3723         if(dev->nShortOpCaches > 0)
3724         {
3725                 if( dev->srLastUse < 0 || 
3726                         dev->srLastUse > 100000000)
3727                 {
3728                         // Reset the cache usages
3729                         int i;
3730                         for(i = 1; i < dev->nShortOpCaches; i++)
3731                         {
3732                                 dev->srCache[i].lastUse = 0;
3733                         }
3734                         dev->srLastUse = 0;
3735                 }
3736
3737                 dev->srLastUse++;
3738         
3739                 cache->lastUse = dev->srLastUse;
3740
3741                 if(isAWrite)
3742                 {
3743                         cache->dirty = 1;
3744                 }
3745         }
3746 }
3747
3748 // Invalidate a single cache page.
3749 // Do this when a whole page gets written,
3750 // ie the short cache for this page is no longer valid.
3751 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId)
3752 {
3753         if(object->myDev->nShortOpCaches > 0)
3754         {
3755                 yaffs_ChunkCache *cache = yaffs_FindChunkCache(object,chunkId);
3756
3757                 if(cache)
3758                 {
3759                         cache->object = NULL;
3760                 }
3761         }
3762 }
3763
3764
3765 // Invalidate all the cache pages associated with this object
3766 // Do this whenever ther file is deleted or resized.
3767 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in)
3768 {
3769         int i;
3770         yaffs_Device *dev = in->myDev;
3771         
3772         if(dev->nShortOpCaches > 0)
3773         { 
3774                 // Now invalidate it.
3775                 for(i = 0; i < dev->nShortOpCaches; i++)
3776                 {
3777                         if(dev->srCache[i].object == in)
3778                         {
3779                                 dev->srCache[i].object = NULL;
3780                         }
3781                 }
3782         }
3783 }
3784
3785
3786
3787
3788
3789 ///////////////////////// File read/write ///////////////////////////////
3790 // Read and write have very similar structures.
3791 // In general the read/write has three parts to it
3792 // * An incomplete chunk to start with (if the read/write is not chunk-aligned)
3793 // * Some complete chunks
3794 // * An incomplete chunk to end off with
3795 //
3796 // Curve-balls: the first chunk might also be the last chunk.
3797
3798 int yaffs_ReadDataFromFile(yaffs_Object *in, __u8 * buffer, __u32 offset, int nBytes)
3799 {
3800         
3801         
3802         int chunk;
3803         int start;
3804         int nToCopy;
3805         int n = nBytes;
3806         int nDone = 0;
3807         yaffs_ChunkCache *cache;
3808         
3809         yaffs_Device *dev;
3810         
3811         dev = in->myDev;
3812         
3813         while(n > 0)
3814         {
3815                 chunk = offset / dev->nBytesPerChunk + 1; // The first chunk is 1
3816                 start = offset % dev->nBytesPerChunk;
3817
3818                 // OK now check for the curveball where the start and end are in
3819                 // the same chunk.      
3820                 if(     (start + n) < dev->nBytesPerChunk)
3821                 {
3822                         nToCopy = n;
3823                 }
3824                 else
3825                 {
3826                         nToCopy = dev->nBytesPerChunk - start;
3827                 }
3828         
3829                 cache = yaffs_FindChunkCache(in,chunk);
3830                 
3831                 // If the chunk is already in the cache or it is less than a whole chunk
3832                 // then use the cache (if there is caching)
3833                 // else bypass the cache.
3834                 if( cache || nToCopy != dev->nBytesPerChunk)
3835                 {
3836                         if(dev->nShortOpCaches > 0)
3837                         {
3838                                 
3839                                 // If we can't find the data in the cache, then load it up.
3840                                 
3841                                 if(!cache)
3842                                 {
3843                                         cache = yaffs_GrabChunkCache(in->myDev);
3844                                         cache->object = in;
3845                                         cache->chunkId = chunk;
3846                                         cache->dirty = 0;
3847                                         cache->locked = 0;
3848                                         yaffs_ReadChunkDataFromObject(in,chunk,cache->data);
3849                                         cache->nBytes = 0;      
3850                                 }
3851                         
3852                                 yaffs_UseChunkCache(dev,cache,0);
3853
3854                                 cache->locked = 1;
3855
3856 #ifdef CONFIG_YAFFS_WINCE
3857                                 yfsd_UnlockYAFFS(TRUE);
3858 #endif
3859                                 memcpy(buffer,&cache->data[start],nToCopy);
3860
3861 #ifdef CONFIG_YAFFS_WINCE
3862                                 yfsd_LockYAFFS(TRUE);
3863 #endif
3864                                 cache->locked = 0;
3865                         }
3866                         else
3867                         {
3868                                 // Read into the local buffer then copy...
3869                                 
3870                                 __u8 *localBuffer = yaffs_GetTempBuffer(dev,__LINE__);
3871                                 yaffs_ReadChunkDataFromObject(in,chunk,localBuffer);            
3872 #ifdef CONFIG_YAFFS_WINCE
3873                                 yfsd_UnlockYAFFS(TRUE);
3874 #endif
3875                                 memcpy(buffer,&localBuffer[start],nToCopy);
3876
3877 #ifdef CONFIG_YAFFS_WINCE
3878                                 yfsd_LockYAFFS(TRUE);
3879 #endif
3880                                 yaffs_ReleaseTempBuffer(dev,localBuffer,__LINE__);
3881                         }
3882
3883                 }
3884                 else
3885                 {
3886 #ifdef CONFIG_YAFFS_WINCE
3887                         __u8 *localBuffer = yaffs_GetTempBuffer(dev,__LINE__);
3888                         
3889                         // Under WinCE can't do direct transfer. Need to use a local buffer.
3890                         // This is because we otherwise screw up WinCE's memory mapper
3891                         yaffs_ReadChunkDataFromObject(in,chunk,localBuffer);
3892
3893 #ifdef CONFIG_YAFFS_WINCE
3894                                 yfsd_UnlockYAFFS(TRUE);
3895 #endif
3896                         memcpy(buffer,localBuffer,dev->nBytesPerChunk);
3897
3898 #ifdef CONFIG_YAFFS_WINCE
3899                                 yfsd_LockYAFFS(TRUE);
3900                                 yaffs_ReleaseTempBuffer(dev,localBuffer,__LINE__);
3901 #endif
3902
3903 #else
3904                         // A full chunk. Read directly into the supplied buffer.
3905                         yaffs_ReadChunkDataFromObject(in,chunk,buffer);
3906 #endif
3907                 }
3908                 
3909                 n -= nToCopy;
3910                 offset += nToCopy;
3911                 buffer += nToCopy;
3912                 nDone += nToCopy;
3913                 
3914         }
3915         
3916         return nDone;
3917 }
3918
3919
3920
3921 int yaffs_WriteDataToFile(yaffs_Object *in,const __u8 * buffer, __u32 offset, int nBytes)
3922 {       
3923         
3924         int chunk;
3925         int start;
3926         int nToCopy;
3927         int n = nBytes;
3928         int nDone = 0;
3929         int nToWriteBack;
3930         int startOfWrite = offset;
3931         int chunkWritten = 0;
3932         int nBytesRead;
3933         
3934         yaffs_Device *dev;
3935         
3936         dev = in->myDev;
3937         
3938         
3939         while(n > 0 && chunkWritten >= 0)
3940         {
3941                 chunk = offset / dev->nBytesPerChunk + 1;
3942                 start = offset % dev->nBytesPerChunk;
3943                 
3944
3945                 // OK now check for the curveball where the start and end are in
3946                 // the same chunk.
3947                 
3948                 if(     (start + n) < dev->nBytesPerChunk)
3949                 {
3950                         nToCopy = n;
3951                         
3952                         // Now folks, to calculate how many bytes to write back....
3953                         // If we're overwriting and not writing to then end of file then
3954                         // we need to write back as much as was there before.
3955                         
3956                         nBytesRead = in->variant.fileVariant.fileSize - ((chunk -1) * dev->nBytesPerChunk);
3957                         
3958                         if(nBytesRead > dev->nBytesPerChunk)
3959                         {
3960                                 nBytesRead = dev->nBytesPerChunk;
3961                         }
3962                         
3963                         nToWriteBack = (nBytesRead > (start + n)) ? nBytesRead : (start +n);
3964                         
3965                 }
3966                 else
3967                 {
3968                         nToCopy = dev->nBytesPerChunk - start;
3969                         nToWriteBack = dev->nBytesPerChunk;
3970                 }
3971         
3972                 if(nToCopy != dev->nBytesPerChunk)
3973                 {
3974                         // An incomplete start or end chunk (or maybe both start and end chunk)
3975                         if(dev->nShortOpCaches > 0)
3976                         {
3977                                 yaffs_ChunkCache *cache;
3978                                 // If we can't find the data in the cache, then load it up.
3979                                 cache = yaffs_FindChunkCache(in,chunk);
3980                                 if(!cache && yaffs_CheckSpaceForChunkCache(in->myDev))
3981                                 {
3982                                         cache = yaffs_GrabChunkCache(in->myDev);
3983                                         cache->object = in;
3984                                         cache->chunkId = chunk;
3985                                         cache->dirty = 0;
3986                                         cache->locked = 0;
3987                                         yaffs_ReadChunkDataFromObject(in,chunk,cache->data);            
3988                                 }
3989                         
3990                                 if(cache)
3991                                 {       
3992                                         yaffs_UseChunkCache(dev,cache,1);
3993                                         cache->locked = 1;
3994 #ifdef CONFIG_YAFFS_WINCE
3995                                 yfsd_UnlockYAFFS(TRUE);
3996 #endif
3997         
3998                                         memcpy(&cache->data[start],buffer,nToCopy);
3999
4000 #ifdef CONFIG_YAFFS_WINCE
4001                                 yfsd_LockYAFFS(TRUE);
4002 #endif
4003                                         cache->locked = 0;
4004                                         cache->nBytes = nToWriteBack;
4005                                 }
4006                                 else
4007                                 {
4008                                         chunkWritten = -1; // fail the write
4009                                 }
4010                         }
4011                         else
4012                         {
4013                                 // An incomplete start or end chunk (or maybe both start and end chunk)
4014                                 // Read into the local buffer then copy, then copy over and write back.
4015                                 
4016                                 __u8 *localBuffer = yaffs_GetTempBuffer(dev,__LINE__);
4017                 
4018                                 yaffs_ReadChunkDataFromObject(in,chunk,localBuffer);
4019                                 
4020 #ifdef CONFIG_YAFFS_WINCE
4021                                 yfsd_UnlockYAFFS(TRUE);
4022 #endif
4023                                         
4024                                 memcpy(&localBuffer[start],buffer,nToCopy);
4025                         
4026 #ifdef CONFIG_YAFFS_WINCE
4027                                 yfsd_LockYAFFS(TRUE);
4028 #endif
4029                                 chunkWritten = yaffs_WriteChunkDataToObject(in,chunk,localBuffer,nToWriteBack,0);
4030                                 
4031                                 yaffs_ReleaseTempBuffer(dev,localBuffer,__LINE__);
4032                         
4033                                 //T(("Write with readback to chunk %d %d  start %d  copied %d wrote back %d\n",chunk,chunkWritten,start, nToCopy, nToWriteBack));
4034                         }
4035                         
4036                 }
4037                 else
4038                 {
4039                         
4040 #ifdef CONFIG_YAFFS_WINCE
4041                         // Under WinCE can't do direct transfer. Need to use a local buffer.
4042                         // This is because we otherwise screw up WinCE's memory mapper
4043                                 __u8 *localBuffer = yaffs_GetTempBuffer(dev,__LINE__);
4044 #ifdef CONFIG_YAFFS_WINCE
4045                                 yfsd_UnlockYAFFS(TRUE);
4046 #endif
4047                         memcpy(localBuffer,buffer,dev->nBytesPerChunk);
4048 #ifdef CONFIG_YAFFS_WINCE
4049                                 yfsd_LockYAFFS(TRUE);
4050 #endif
4051                         chunkWritten = yaffs_WriteChunkDataToObject(in,chunk,localBuffer,dev->nBytesPerChunk,0);
4052                         yaffs_ReleaseTempBuffer(dev,localBuffer,__LINE__);
4053 #else
4054                         // A full chunk. Write directly from the supplied buffer.
4055                         chunkWritten = yaffs_WriteChunkDataToObject(in,chunk,buffer,dev->nBytesPerChunk,0);
4056 #endif
4057                         // Since we've overwritten the cached data, we better invalidate it.
4058                         yaffs_InvalidateChunkCache(in,chunk);
4059                         //T(("Write to chunk %d %d\n",chunk,chunkWritten));
4060                 }
4061                 
4062                 if(chunkWritten >= 0)
4063                 {
4064                         n -= nToCopy;
4065                         offset += nToCopy;
4066                         buffer += nToCopy;
4067                         nDone += nToCopy;
4068                 }
4069                 
4070         }
4071         
4072         // Update file object
4073         
4074         if((startOfWrite + nDone) > in->variant.fileVariant.fileSize)
4075         {
4076                 in->variant.fileVariant.fileSize = (startOfWrite + nDone);
4077         }
4078         
4079         in->dirty = 1;
4080         
4081         return nDone;
4082 }
4083
4084 static void yaffs_PruneResizedChunks(yaffs_Object *in, int newSize)
4085 {
4086
4087         yaffs_Device *dev = in->myDev;
4088         int oldFileSize = in->variant.fileVariant.fileSize;
4089
4090         
4091         int lastDel = 1 + (oldFileSize-1)/dev->nBytesPerChunk;
4092                 
4093         int startDel = 1 + (newSize + dev->nBytesPerChunk - 1)/
4094                                                 dev->nBytesPerChunk;
4095         int i;
4096         int chunkId;
4097
4098         // Delete backwards so that we don't end up with holes if
4099         // power is lost part-way through the operation.
4100         for(i = lastDel; i >= startDel; i--)
4101         {
4102                 // NB this could be optimised somewhat,
4103                 // eg. could retrieve the tags and write them without
4104                 // using yaffs_DeleteChunk
4105
4106                 chunkId = yaffs_FindAndDeleteChunkInFile(in,i,NULL);
4107                 if(chunkId > 0)
4108                 {
4109                         if(chunkId < (dev->startBlock * dev->nChunksPerBlock) || 
4110                        chunkId >= ((dev->endBlock+1) * dev->nChunksPerBlock))
4111                         {
4112                                 T(YAFFS_TRACE_ALWAYS,(TSTR("Found daft chunkId %d for %d"TENDSTR),chunkId,i));
4113                         }
4114                         else
4115                         {
4116                                 in->nDataChunks--;
4117                                 yaffs_DeleteChunk(dev,chunkId,1,__LINE__);
4118                         }
4119                 }
4120         }
4121                 
4122 }
4123
4124 int yaffs_ResizeFile(yaffs_Object *in, int newSize)
4125 {
4126
4127         int oldFileSize = in->variant.fileVariant.fileSize;
4128         int sizeOfPartialChunk;
4129         yaffs_Device *dev = in->myDev;
4130         
4131          sizeOfPartialChunk  = newSize % dev->nBytesPerChunk;
4132                 
4133
4134         yaffs_FlushFilesChunkCache(in); 
4135         yaffs_InvalidateWholeChunkCache(in);
4136
4137         yaffs_CheckGarbageCollection(dev);
4138         
4139         if(in->variantType != YAFFS_OBJECT_TYPE_FILE)
4140         {
4141                 return yaffs_GetFileSize(in);
4142         }
4143         
4144         if(newSize < oldFileSize)
4145         {
4146
4147                 yaffs_PruneResizedChunks(in,newSize);
4148                 
4149                 if(sizeOfPartialChunk != 0)
4150                 {
4151                         int lastChunk = 1+ newSize/dev->nBytesPerChunk;
4152                         __u8 *localBuffer = yaffs_GetTempBuffer(dev,__LINE__);
4153                         
4154                         // Got to read and rewrite the last chunk with its new size and zero pad
4155                         yaffs_ReadChunkDataFromObject(in,lastChunk,localBuffer);
4156                         
4157                         memset(localBuffer + sizeOfPartialChunk,0, dev->nBytesPerChunk - sizeOfPartialChunk);
4158                         
4159                         yaffs_WriteChunkDataToObject(in,lastChunk,localBuffer,sizeOfPartialChunk,1);
4160                                 
4161                         yaffs_ReleaseTempBuffer(dev,localBuffer,__LINE__);
4162                 }
4163                 
4164                 in->variant.fileVariant.fileSize = newSize;
4165                 
4166                 yaffs_PruneFileStructure(dev,&in->variant.fileVariant);
4167                 
4168                 // Write a new object header to show we've shrunk the file
4169                 // Do this only if the file is not in the deleted directories.
4170                 if(in->parent->objectId != YAFFS_OBJECTID_UNLINKED &&
4171                    in->parent->objectId != YAFFS_OBJECTID_DELETED
4172                   )
4173                 {
4174                         yaffs_UpdateObjectHeader(in,NULL, 0, 1);
4175                 }
4176
4177                 
4178                 return newSize;
4179                 
4180         }
4181         else
4182         {
4183                 return oldFileSize;
4184         }
4185 }
4186
4187
4188 loff_t yaffs_GetFileSize(yaffs_Object *obj)
4189 {
4190         obj = yaffs_GetEquivalentObject(obj);
4191         
4192         switch(obj->variantType)
4193         {
4194                 case YAFFS_OBJECT_TYPE_FILE: 
4195                         return obj->variant.fileVariant.fileSize;
4196                 case YAFFS_OBJECT_TYPE_SYMLINK:
4197                         return yaffs_strlen(obj->variant.symLinkVariant.alias);
4198                 default:
4199                         return 0;
4200         }
4201 }
4202
4203
4204
4205 // yaffs_FlushFile() updates the file's
4206 // objectId in NAND
4207
4208 int yaffs_FlushFile(yaffs_Object *in, int updateTime)
4209 {
4210         int retVal;
4211         if(in->dirty)
4212         {
4213                 //T(("flushing object header\n"));
4214                 
4215                 yaffs_FlushFilesChunkCache(in);
4216                 if(updateTime)
4217                 {
4218 #ifdef CONFIG_YAFFS_WINCE
4219                         yfsd_WinFileTimeNow(in->win_mtime);
4220 #else
4221
4222                         in->st_mtime = Y_CURRENT_TIME;
4223
4224 #endif
4225                 }
4226
4227                 retVal = (yaffs_UpdateObjectHeader(in,NULL,0,0) >= 0)? YAFFS_OK : YAFFS_FAIL;
4228         }
4229         else
4230         {
4231                 retVal = YAFFS_OK;
4232         }
4233         
4234         return retVal;
4235         
4236 }
4237
4238
4239 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in)
4240 {
4241
4242         // First off, invalidate the file's data in the cache, without flushing.
4243         yaffs_InvalidateWholeChunkCache(in);
4244
4245         if(in->myDev->isYaffs2 && (in->parent != in->myDev->deletedDir))
4246         {
4247                 // Move to the unlinked directory so we have a record that it was deleted.
4248                 yaffs_ChangeObjectName(in, in->myDev->deletedDir,NULL,0);
4249
4250         }
4251
4252         
4253         yaffs_RemoveObjectFromDirectory(in);
4254         yaffs_DeleteChunk(in->myDev,in->chunkId,1,__LINE__);
4255         in->chunkId = -1;
4256 #if 0
4257 #ifdef __KERNEL__
4258         if(in->myInode)
4259         {
4260                 in->myInode->u.generic_ip = NULL;
4261                 in->myInode = 0;
4262         }
4263 #endif
4264 #endif
4265
4266         yaffs_FreeObject(in);
4267         return YAFFS_OK;
4268
4269 }
4270
4271 // yaffs_DeleteFile deletes the whole file data
4272 // and the inode associated with the file.
4273 // It does not delete the links associated with the file.
4274 static int yaffs_UnlinkFile(yaffs_Object *in)
4275 {
4276
4277 #ifdef CONFIG_YAFFS_DISABLE_BACKGROUND_DELETION
4278
4279         // Delete the file data & tnodes
4280
4281          yaffs_DeleteWorker(in, in->variant.fileVariant.top, in->variant.fileVariant.topLevel, 0,NULL);
4282          
4283
4284         yaffs_FreeTnode(in->myDev,in->variant.fileVariant.top);
4285         
4286         return  yaffs_DoGenericObjectDeletion(in);
4287 #else
4288         int retVal;
4289         int immediateDeletion=0;
4290
4291         if(1)
4292         {
4293                 //in->unlinked = 1;
4294                 //in->myDev->nUnlinkedFiles++;
4295                 //in->renameAllowed = 0;
4296 #ifdef __KERNEL__
4297                 if(!in->myInode)
4298                 {
4299                         immediateDeletion = 1;
4300
4301                 }
4302 #else
4303                 if(in->inUse <= 0)
4304                 {
4305                         immediateDeletion = 1;
4306
4307                 }
4308 #endif
4309                 if(immediateDeletion)
4310                 {
4311                         retVal = yaffs_ChangeObjectName(in, in->myDev->deletedDir,NULL,0);
4312                         T(YAFFS_TRACE_TRACING,(TSTR("yaffs: immediate deletion of file %d" TENDSTR),in->objectId));
4313                         in->deleted=1;
4314                         in->myDev->nDeletedFiles++;
4315                         if( 0 && in->myDev->isYaffs2)
4316                         {
4317                                 yaffs_ResizeFile(in,0);
4318                         }
4319                         yaffs_SoftDeleteFile(in);
4320                 }
4321                 else
4322                 {
4323                         retVal = yaffs_ChangeObjectName(in, in->myDev->unlinkedDir,NULL,0);
4324                 }
4325         
4326         }
4327         return retVal;
4328
4329         
4330 #endif
4331 }
4332
4333 int yaffs_DeleteFile(yaffs_Object *in)
4334 {
4335         int retVal = YAFFS_OK;
4336         
4337         if(in->nDataChunks > 0)
4338         {
4339                 // Use soft deletion
4340                 if(!in->unlinked)
4341                 {
4342                         retVal = yaffs_UnlinkFile(in);
4343                 }
4344                 if(retVal == YAFFS_OK && 
4345                 in->unlinked &&
4346                 !in->deleted)
4347                 {
4348                         in->deleted = 1;
4349                         in->myDev->nDeletedFiles++;
4350                         yaffs_SoftDeleteFile(in);
4351                 }
4352                 return in->deleted ? YAFFS_OK : YAFFS_FAIL;     
4353         }
4354         else
4355         {
4356                 // The file has no data chunks so we toss it immediately
4357                 yaffs_FreeTnode(in->myDev,in->variant.fileVariant.top);
4358                 in->variant.fileVariant.top = NULL;
4359                 yaffs_DoGenericObjectDeletion(in);      
4360                 
4361                 return YAFFS_OK;        
4362         }
4363 }
4364
4365 static int yaffs_DeleteDirectory(yaffs_Object *in)
4366 {
4367         //First check that the directory is empty.
4368         if(list_empty(&in->variant.directoryVariant.children))
4369         {
4370                 return  yaffs_DoGenericObjectDeletion(in);
4371         }
4372         
4373         return YAFFS_FAIL;
4374         
4375 }
4376
4377 static int yaffs_DeleteSymLink(yaffs_Object *in)
4378 {
4379         YFREE(in->variant.symLinkVariant.alias);
4380
4381         return  yaffs_DoGenericObjectDeletion(in);
4382 }
4383
4384 static int yaffs_DeleteHardLink(yaffs_Object *in)
4385 {
4386         // remove this hardlink from the list assocaited with the equivalent
4387         // object
4388         list_del(&in->hardLinks);
4389         return  yaffs_DoGenericObjectDeletion(in);      
4390 }
4391
4392
4393 static void yaffs_DestroyObject(yaffs_Object *obj)
4394 {
4395         switch(obj->variantType)
4396         {
4397                 case YAFFS_OBJECT_TYPE_FILE: yaffs_DeleteFile(obj); break;
4398                 case YAFFS_OBJECT_TYPE_DIRECTORY: yaffs_DeleteDirectory(obj); break;
4399                 case YAFFS_OBJECT_TYPE_SYMLINK: yaffs_DeleteSymLink(obj); break;
4400                 case YAFFS_OBJECT_TYPE_HARDLINK: yaffs_DeleteHardLink(obj); break;
4401                 case YAFFS_OBJECT_TYPE_SPECIAL: yaffs_DoGenericObjectDeletion(obj); break;
4402                 case YAFFS_OBJECT_TYPE_UNKNOWN: break; // should not happen.
4403         }
4404 }
4405
4406
4407 static int yaffs_UnlinkWorker(yaffs_Object *obj)
4408 {
4409
4410         
4411         if(obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK)
4412         {
4413                 return  yaffs_DeleteHardLink(obj);
4414         }
4415         else if(!list_empty(&obj->hardLinks))
4416         {       
4417                 // Curve ball: We're unlinking an object that has a hardlink.
4418                 //
4419                 //      This problem arises because we are not strictly following
4420                 //  The Linux link/inode model.
4421                 //
4422                 // We can't really delete the object.
4423                 // Instead, we do the following:
4424                 // - Select a hardlink.
4425                 // - Unhook it from the hard links
4426                 // - Unhook it from its parent directory (so that the rename can work)
4427                 // - Rename the object to the hardlink's name.
4428                 // - Delete the hardlink
4429                 
4430                 
4431                 yaffs_Object *hl;
4432                 int retVal;
4433                 YCHAR name[YAFFS_MAX_NAME_LENGTH+1];
4434                 
4435                 hl = list_entry(obj->hardLinks.next,yaffs_Object,hardLinks);
4436                 
4437                 list_del_init(&hl->hardLinks);
4438                 list_del_init(&hl->siblings);
4439                 
4440                 yaffs_GetObjectName(hl,name,YAFFS_MAX_NAME_LENGTH+1);
4441                 
4442                 retVal = yaffs_ChangeObjectName(obj, hl->parent, name,0);
4443                 
4444                 if(retVal == YAFFS_OK)
4445                 {
4446                         retVal = yaffs_DoGenericObjectDeletion(hl);
4447                 }
4448                 return retVal;
4449                                 
4450         }
4451         else
4452         {
4453                 switch(obj->variantType)
4454                 {
4455                         case YAFFS_OBJECT_TYPE_FILE:
4456                                 return yaffs_UnlinkFile(obj);
4457                                 break;
4458                         case YAFFS_OBJECT_TYPE_DIRECTORY:
4459                                 return yaffs_DeleteDirectory(obj);
4460                                 break;
4461                         case YAFFS_OBJECT_TYPE_SYMLINK:
4462                                 return yaffs_DeleteSymLink(obj);
4463                                 break;
4464                         case YAFFS_OBJECT_TYPE_SPECIAL:
4465                                 return yaffs_DoGenericObjectDeletion(obj);
4466                                 break;
4467                         case YAFFS_OBJECT_TYPE_HARDLINK:
4468                         case YAFFS_OBJECT_TYPE_UNKNOWN:
4469                         default:
4470                                 return YAFFS_FAIL;
4471                 }
4472         }
4473 }
4474
4475 int yaffs_Unlink(yaffs_Object *dir, const YCHAR *name)
4476 {
4477         yaffs_Object *obj;
4478         
4479          obj = yaffs_FindObjectByName(dir,name);
4480          
4481          if(obj && obj->unlinkAllowed)
4482          {
4483                 return yaffs_UnlinkWorker(obj);
4484          }
4485          
4486          return YAFFS_FAIL;
4487         
4488 }
4489
4490 //////////////// Initialisation Scanning /////////////////
4491
4492
4493 #if 0
4494 // For now we use the SmartMedia check.
4495 // We look at the blockStatus byte in the first two chunks
4496 // These must be 0xFF to pass as OK.
4497 // todo: this function needs to be modifyable foir different NAND types
4498 // and different chunk sizes.  Suggest make this into a per-device configurable
4499 // function.
4500 static int yaffs_IsBlockBad(yaffs_Device *dev, int blk)
4501 {
4502         yaffsExtendedTags *tags;
4503         
4504         yaffs_ReadChunkFromNAND(dev,blk * dev->nChunksPerBlock,NULL,&tags,1);
4505 #if 1
4506         if(yaffs_CountBits(spare.blockStatus) < 7)
4507         {
4508                 return 1;
4509         }
4510 #else
4511         if(spare.blockStatus != 0xFF)
4512         {
4513                 return 1;
4514         }
4515 #endif
4516         yaffs_ReadChunkFromNAND(dev,blk * dev->nChunksPerBlock + 1,NULL,&spare,1);
4517
4518 #if 1
4519         if(yaffs_CountBits(spare.blockStatus) < 7)
4520         {
4521                 return 1;
4522         }
4523 #else
4524         if(spare.blockStatus != 0xFF)
4525         {
4526                 return 1;
4527         }
4528 #endif
4529         
4530         return 0;
4531         
4532 }
4533
4534 #endif
4535
4536
4537 typedef struct 
4538 {
4539         int seq;
4540         int block;
4541 } yaffs_BlockIndex;
4542
4543
4544
4545 static int yaffs_Scan(yaffs_Device *dev)
4546 {
4547         yaffs_ExtendedTags tags;
4548         int blk;
4549         int blockIterator;
4550         int startIterator;
4551         int endIterator;
4552         int nBlocksToScan = 0;
4553         
4554         int chunk;
4555         int c;
4556         int deleted;
4557         yaffs_BlockState state;
4558         yaffs_Object *hardList = NULL;
4559         yaffs_Object *hl;
4560         yaffs_BlockInfo *bi;
4561         int sequenceNumber;     
4562         yaffs_ObjectHeader *oh;
4563         yaffs_Object *in;
4564         yaffs_Object *parent;
4565         int nBlocks = dev->endBlock - dev->startBlock + 1;
4566         
4567         __u8 *chunkData;
4568
4569         yaffs_BlockIndex *blockIndex = NULL;
4570
4571         T(YAFFS_TRACE_SCAN,(TSTR("yaffs_Scan starts  startblk %d endblk %d..." TENDSTR),dev->startBlock,dev->endBlock));
4572         
4573         chunkData = yaffs_GetTempBuffer(dev,__LINE__);
4574         
4575         
4576         dev->sequenceNumber = YAFFS_LOWEST_SEQUENCE_NUMBER;
4577         
4578         if(dev->isYaffs2)
4579         {
4580                 blockIndex = YMALLOC(nBlocks * sizeof(yaffs_BlockIndex));               
4581         }
4582         
4583         
4584         // Scan all the blocks to determine their state
4585         for(blk = dev->startBlock; blk <= dev->endBlock; blk++)
4586         {
4587                 bi = yaffs_GetBlockInfo(dev,blk);
4588                 yaffs_ClearChunkBits(dev,blk);
4589                 bi->pagesInUse = 0;
4590                 bi->softDeletions = 0;
4591                                 
4592                 yaffs_QueryInitialBlockState(dev,blk,&state,&sequenceNumber);
4593                 
4594                 bi->blockState = state;
4595                 bi->sequenceNumber = sequenceNumber;
4596
4597                 T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("Block scanning block %d state %d seq %d" TENDSTR),blk,state,sequenceNumber));
4598                 
4599                 if(state == YAFFS_BLOCK_STATE_DEAD)
4600                 {
4601                         T(YAFFS_TRACE_BAD_BLOCKS,(TSTR("block %d is bad" TENDSTR),blk));
4602                 }
4603                 else if(state == YAFFS_BLOCK_STATE_EMPTY)
4604                 {
4605                         T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("Block empty " TENDSTR)));
4606                         dev->nErasedBlocks++;
4607                         dev->nFreeChunks += dev->nChunksPerBlock;
4608                 }
4609                 else if(state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
4610                 {
4611                                         
4612                         // Determine the highest sequence number
4613                         if( dev->isYaffs2 &&
4614                             sequenceNumber >= YAFFS_LOWEST_SEQUENCE_NUMBER &&
4615                             sequenceNumber < YAFFS_HIGHEST_SEQUENCE_NUMBER)
4616                          {
4617                                 
4618                                 blockIndex[nBlocksToScan].seq = sequenceNumber;
4619                                 blockIndex[nBlocksToScan].block = blk;
4620                                 
4621                                 nBlocksToScan++;
4622
4623                                 if(sequenceNumber >= dev->sequenceNumber)
4624                                 {
4625                                         dev->sequenceNumber = sequenceNumber;
4626                                 }
4627                         }
4628                         else if(dev->isYaffs2)
4629                         {
4630                                 // TODO: Nasty sequence number!
4631                                 T(YAFFS_TRACE_SCAN,(TSTR("Block scanning block %d has bad sequence number %d" TENDSTR),blk,sequenceNumber));
4632
4633                         }
4634                 }
4635         }
4636         
4637         // Sort the blocks
4638         // Dungy old bubble sort for now...
4639         if(dev->isYaffs2)
4640         {
4641                 yaffs_BlockIndex temp;
4642                 int i;
4643                 int j;
4644                 
4645                 for(i = 0; i < nBlocksToScan; i++)
4646                         for(j = i+1; j < nBlocksToScan; j++)
4647                          if(blockIndex[i].seq > blockIndex[j].seq)
4648                          {
4649                                 temp = blockIndex[j];
4650                                 blockIndex[j] = blockIndex[i];
4651                                 blockIndex[i] = temp;
4652                          }
4653         }
4654         
4655         
4656         // Now scan the blocks looking at the data.
4657         if(dev->isYaffs2)
4658         {
4659                 startIterator = 0;
4660                 endIterator = nBlocksToScan-1;
4661                 T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("%d blocks to be scanned" TENDSTR),nBlocksToScan));
4662         }
4663         else
4664         {
4665                 startIterator = dev->startBlock;
4666                 endIterator = dev->endBlock;
4667         }
4668         
4669         // For each block....
4670         for(blockIterator = startIterator; blockIterator <= endIterator; blockIterator++)
4671         {
4672         
4673                 if(dev->isYaffs2)
4674                 {
4675                         // get the block to scan in the correct order
4676                         blk = blockIndex[blockIterator].block;
4677                 }
4678                 else
4679                 {
4680                         blk = blockIterator;
4681                 }
4682
4683
4684                 bi = yaffs_GetBlockInfo(dev,blk);
4685                 state = bi->blockState;
4686                 
4687                 deleted = 0;
4688                 
4689                 // For each chunk in each block that needs scanning....
4690                 for(c = 0; c < dev->nChunksPerBlock && 
4691                                    state == YAFFS_BLOCK_STATE_NEEDS_SCANNING; c++)
4692                 {
4693                         // Read the tags and decide what to do
4694                         chunk = blk * dev->nChunksPerBlock + c;
4695                         
4696                         yaffs_ReadChunkWithTagsFromNAND(dev,chunk,NULL,&tags);
4697
4698                         // Let's have a good look at this chunk...
4699         
4700                         
4701                         if(!dev->isYaffs2 && tags.chunkDeleted)
4702                         {
4703                                 // YAFFS1 only...
4704                                 // A deleted chunk
4705                                 deleted++;
4706                                 dev->nFreeChunks ++;
4707                                 //T((" %d %d deleted\n",blk,c));
4708                         }
4709                         else if(!tags.chunkUsed)
4710                         {
4711                                 // An unassigned chunk in the block
4712                                 // This means that either the block is empty or 
4713                                 // this is the one being allocated from
4714                                 
4715                                 if(c == 0)
4716                                 {
4717                                         // We're looking at the first chunk in the block so the block is unused
4718                                         state = YAFFS_BLOCK_STATE_EMPTY;
4719                                         dev->nErasedBlocks++;
4720                                 }
4721                                 else
4722                                 {
4723                                         // this is the block being allocated from
4724                                         T(YAFFS_TRACE_SCAN,(TSTR(" Allocating from %d %d" TENDSTR),blk,c));
4725                                         state = YAFFS_BLOCK_STATE_ALLOCATING;
4726                                         dev->allocationBlock = blk;
4727                                         dev->allocationPage = c;
4728                                         dev->allocationBlockFinder = blk; // Set it to here to encourage the allocator to
4729                                                                                                           // go forth from here.
4730                                         //Yaffs2 sanity check:
4731                                         // This should be the one with the highest sequence number
4732                                         if(dev->isYaffs2 && (dev->sequenceNumber != bi->sequenceNumber))
4733                                         {
4734                                                 T(YAFFS_TRACE_ALWAYS,
4735                                                                 (TSTR("yaffs: Allocation block %d was not highest sequence id: block seq = %d, dev seq = %d" TENDSTR),
4736                                                                 blk,bi->sequenceNumber,dev->sequenceNumber));
4737                                         }
4738                                 }
4739
4740                                 dev->nFreeChunks += (dev->nChunksPerBlock - c);
4741                         }
4742                         else if(tags.chunkId > 0)
4743                         {
4744                                 // chunkId > 0 so it is a data chunk...
4745                                 unsigned int endpos;
4746
4747                                 yaffs_SetChunkBit(dev,blk,c);
4748                                 bi->pagesInUse++;
4749                                                                 
4750                                 in = yaffs_FindOrCreateObjectByNumber(dev,tags.objectId,YAFFS_OBJECT_TYPE_FILE);
4751                                 // PutChunkIntoFile checks for a clash (two data chunks with
4752                                 // the same chunkId).
4753                                 yaffs_PutChunkIntoFile(in,tags.chunkId,chunk,1);
4754                                 endpos = (tags.chunkId - 1)* dev->nBytesPerChunk + tags.byteCount;
4755                                 if(in->variantType == YAFFS_OBJECT_TYPE_FILE && in->variant.fileVariant.scannedFileSize <endpos)
4756                                 {
4757                                         in->variant.fileVariant.scannedFileSize = endpos;
4758                                         if(!dev->useHeaderFileSize)
4759                                         {       
4760                                                         in->variant.fileVariant.fileSize = in->variant.fileVariant.scannedFileSize;
4761                                         }
4762
4763                                 }
4764                                 //T((" %d %d data %d %d\n",blk,c,tags.objectId,tags.chunkId));  
4765                         }
4766                         else
4767                         {
4768                                 // chunkId == 0, so it is an ObjectHeader.
4769                                 // Thus, we read in the object header and make the object
4770                                 yaffs_SetChunkBit(dev,blk,c);
4771                                 bi->pagesInUse++;
4772                                                         
4773                                 yaffs_ReadChunkWithTagsFromNAND(dev,chunk,chunkData,NULL);
4774                                 
4775                                 oh = (yaffs_ObjectHeader *)chunkData;
4776                                 
4777                                 in = yaffs_FindObjectByNumber(dev,tags.objectId);
4778                                 if(in && in->variantType != oh->type)
4779                                 {
4780                                         // This should not happen, but somehow
4781                                         // Wev'e ended up with an objectId that has been reused but not yet 
4782                                         // deleted, and worse still it has changed type. Delete the old object.
4783                                         
4784                                         yaffs_DestroyObject(in);
4785                                         
4786                                         in = 0;
4787                                 }
4788                                 
4789                                 in = yaffs_FindOrCreateObjectByNumber(dev,tags.objectId,oh->type);
4790                                 
4791                                 if(in->valid)
4792                                 {
4793                                         // We have already filled this one. We have a duplicate and need to resolve it.
4794                                         
4795                                         unsigned existingSerial = in->serial;
4796                                         unsigned newSerial = tags.serialNumber;
4797                                         
4798                                         if( dev->isYaffs2 ||
4799                                             ((existingSerial+1) & 3) == newSerial)
4800                                         {
4801                                                 // Use new one - destroy the exisiting one
4802                                                 yaffs_DeleteChunk(dev,in->chunkId,1,__LINE__);
4803                                                 in->valid = 0;
4804                                         }
4805                                         else
4806                                         {
4807                                                 // Use existing - destroy this one.
4808                                                 yaffs_DeleteChunk(dev,chunk,1,__LINE__);
4809                                         }
4810                                 }
4811                                 
4812                                 if(!in->valid &&
4813                                    (tags.objectId == YAFFS_OBJECTID_ROOT ||
4814                                     tags.objectId == YAFFS_OBJECTID_LOSTNFOUND))
4815                                 {
4816                                         // We only load some info, don't fiddle with directory structure
4817                                         in->valid = 1;
4818                                         in->variantType = oh->type;
4819         
4820                                         in->st_mode  = oh->st_mode;
4821 #ifdef CONFIG_YAFFS_WINCE
4822                                         in->win_atime[0] = oh->win_atime[0];
4823                                         in->win_ctime[0] = oh->win_ctime[0];
4824                                         in->win_mtime[0] = oh->win_mtime[0];
4825                                         in->win_atime[1] = oh->win_atime[1];
4826                                         in->win_ctime[1] = oh->win_ctime[1];
4827                                         in->win_mtime[1] = oh->win_mtime[1];
4828 #else
4829                                         in->st_uid   = oh->st_uid;
4830                                         in->st_gid   = oh->st_gid;
4831                                         in->st_atime = oh->st_atime;
4832                                         in->st_mtime = oh->st_mtime;
4833                                         in->st_ctime = oh->st_ctime;
4834                                         in->st_rdev = oh->st_rdev;
4835 #endif
4836                                         in->chunkId  = chunk;
4837
4838                                 }
4839                                 else if(!in->valid)
4840                                 {
4841                                         // we need to load this info
4842                                 
4843                                         in->valid = 1;
4844                                         in->variantType = oh->type;
4845         
4846                                         in->st_mode  = oh->st_mode;
4847 #ifdef CONFIG_YAFFS_WINCE
4848                                         in->win_atime[0] = oh->win_atime[0];
4849                                         in->win_ctime[0] = oh->win_ctime[0];
4850                                         in->win_mtime[0] = oh->win_mtime[0];
4851                                         in->win_atime[1] = oh->win_atime[1];
4852                                         in->win_ctime[1] = oh->win_ctime[1];
4853                                         in->win_mtime[1] = oh->win_mtime[1];
4854 #else
4855                                         in->st_uid   = oh->st_uid;
4856                                         in->st_gid   = oh->st_gid;
4857                                         in->st_atime = oh->st_atime;
4858                                         in->st_mtime = oh->st_mtime;
4859                                         in->st_ctime = oh->st_ctime;
4860                                         in->st_rdev = oh->st_rdev;
4861 #endif
4862                                         in->chunkId  = chunk;
4863
4864                                         yaffs_SetObjectName(in,oh->name);
4865                                         in->dirty = 0;
4866                                                         
4867                                         // directory stuff...
4868                                         // hook up to parent
4869         
4870                                         parent = yaffs_FindOrCreateObjectByNumber(dev,oh->parentObjectId,YAFFS_OBJECT_TYPE_DIRECTORY);
4871                                         if(parent->variantType == YAFFS_OBJECT_TYPE_UNKNOWN)
4872                                         {
4873                                                 // Set up as a directory
4874                                                 parent->variantType = YAFFS_OBJECT_TYPE_DIRECTORY;
4875                                                 INIT_LIST_HEAD(&parent->variant.directoryVariant.children);
4876                                         }
4877                                         else if(parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
4878                                         {
4879                                                 // Hoosterman, another problem....
4880                                                 // We're trying to use a non-directory as a directory
4881
4882                                                 T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: attempting to use non-directory as a directory in scan. Put in lost+found." TENDSTR)));
4883                                                 parent = dev->lostNFoundDir;
4884                                         }
4885                                 
4886                                         yaffs_AddObjectToDirectory(parent,in);
4887
4888                                         if(0 && (parent == dev->deletedDir ||
4889                                            parent == dev->unlinkedDir))
4890                                         {
4891                                                 in->deleted = 1; // If it is unlinked at start up then it wants deleting
4892                                                 dev->nDeletedFiles++;
4893                                         }
4894                                 
4895                                         // Note re hardlinks.
4896                                         // Since we might scan a hardlink before its equivalent object is scanned
4897                                         // we put them all in a list.
4898                                         // After scanning is complete, we should have all the objects, so we run through this
4899                                         // list and fix up all the chains.              
4900         
4901                                         switch(in->variantType)
4902                                         {
4903                                                 case YAFFS_OBJECT_TYPE_UNKNOWN:         // Todo got a problem
4904                                                         break;
4905                                                 case YAFFS_OBJECT_TYPE_FILE:
4906                                                         if(dev->isYaffs2 && oh->isShrink)
4907                                                         {
4908                                                                 // Prune back the shrunken chunks
4909                                                                 yaffs_PruneResizedChunks(in,oh->fileSize);
4910                                                                 // Mark the block as having a shrinkHeader
4911                                                                 bi->hasShrinkHeader = 1;
4912                                                         }
4913                                                         
4914                                                         if(dev->useHeaderFileSize)
4915                                                 
4916                                                                 in->variant.fileVariant.fileSize = oh->fileSize;
4917                                                                 
4918                                                         break;
4919                                                 case YAFFS_OBJECT_TYPE_HARDLINK:
4920                                                         in->variant.hardLinkVariant.equivalentObjectId = oh->equivalentObjectId;
4921                                                         in->hardLinks.next = (struct list_head *)hardList;
4922                                                         hardList = in;
4923                                                         break;
4924                                                 case YAFFS_OBJECT_TYPE_DIRECTORY:       // Do nothing
4925                                                         break;
4926                                                 case YAFFS_OBJECT_TYPE_SPECIAL: // Do nothing
4927                                                         break;
4928                                                 case YAFFS_OBJECT_TYPE_SYMLINK:         // Do nothing
4929                                                         in->variant.symLinkVariant.alias = yaffs_CloneString(oh->alias);
4930                                                         break;
4931                                         }
4932
4933                                         if(parent == dev->deletedDir)
4934                                         {
4935                                                 yaffs_DestroyObject(in);
4936                                                 bi->hasShrinkHeader = 1;
4937                                         }
4938                                         //T((" %d %d header %d \"%s\" type %d\n",blk,c,tags.objectId,oh->name,in->variantType));        
4939                                 }
4940                         }
4941                 }
4942                 
4943                 if(state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
4944                 {
4945                         // If we got this far while scanning, then the block is fully allocated.
4946                         state = YAFFS_BLOCK_STATE_FULL; 
4947                 }
4948                 
4949                 bi->blockState = state;
4950                 
4951                 // Now let's see if it was dirty
4952                 if(     bi->pagesInUse == 0 &&
4953                         !bi->hasShrinkHeader &&
4954                 bi->blockState == YAFFS_BLOCK_STATE_FULL)
4955             {
4956                 yaffs_BlockBecameDirty(dev,blk);
4957             }
4958
4959         }
4960         
4961         if(blockIndex)
4962         {
4963                 YFREE(blockIndex);
4964         }
4965         
4966         // Ok, we've done all the scanning.
4967         
4968         // Fix up the hard link chains.
4969         // We should now have scanned all the objects, now it's time to add these 
4970         // hardlinks.
4971         while(hardList)
4972         {
4973                 hl = hardList;
4974                 hardList = (yaffs_Object *)(hardList->hardLinks.next);
4975                 
4976                 in = yaffs_FindObjectByNumber(dev,hl->variant.hardLinkVariant.equivalentObjectId);
4977                 
4978                 if(in)
4979                 {
4980                         // Add the hardlink pointers
4981                         hl->variant.hardLinkVariant.equivalentObject=in;
4982                         list_add(&hl->hardLinks,&in->hardLinks);
4983                 }
4984                 else
4985                 {
4986                         //Todo Need to report/handle this better.
4987                         // Got a problem... hardlink to a non-existant object
4988                         hl->variant.hardLinkVariant.equivalentObject=NULL;
4989                         INIT_LIST_HEAD(&hl->hardLinks);
4990                         
4991                 }
4992                 
4993         }
4994         
4995         {
4996                 struct list_head *i;    
4997                 struct list_head *n;
4998                         
4999                 yaffs_Object *l;
5000                 // Soft delete all the unlinked files
5001                 list_for_each_safe(i,n,&dev->unlinkedDir->variant.directoryVariant.children)
5002                 {
5003                         if(i)
5004                         {
5005                                 l = list_entry(i, yaffs_Object,siblings);
5006                                 yaffs_DestroyObject(l);         
5007                         }
5008                 }       
5009         }
5010         
5011         yaffs_ReleaseTempBuffer(dev,chunkData,__LINE__);
5012
5013         T(YAFFS_TRACE_SCAN,(TSTR("yaffs_Scan ends" TENDSTR)));
5014
5015         return YAFFS_OK;
5016 }
5017
5018
5019 static int yaffs_ScanBackwards(yaffs_Device *dev)
5020 {
5021         yaffs_ExtendedTags tags;
5022         int blk;
5023         int blockIterator;
5024         int startIterator;
5025         int endIterator;
5026         int nBlocksToScan = 0;
5027         
5028         int chunk;
5029         int c;
5030         int deleted;
5031         yaffs_BlockState state;
5032         yaffs_Object *hardList = NULL;
5033         yaffs_Object *hl;
5034         yaffs_BlockInfo *bi;
5035         int sequenceNumber;     
5036         yaffs_ObjectHeader *oh;
5037         yaffs_Object *in;
5038         yaffs_Object *parent;
5039         int nBlocks = dev->endBlock - dev->startBlock + 1;
5040         
5041         __u8 *chunkData;
5042
5043         yaffs_BlockIndex *blockIndex = NULL;
5044
5045
5046         if(!dev->isYaffs2)
5047         {
5048                 T(YAFFS_TRACE_SCAN,(TSTR("yaffs_ScanBackwards is only for YAFFS2!" TENDSTR)));
5049                 return YAFFS_FAIL;
5050         }
5051         
5052         T(YAFFS_TRACE_SCAN,(TSTR("yaffs_ScanBackwards starts  startblk %d endblk %d..." TENDSTR),dev->startBlock,dev->endBlock));
5053                 
5054         chunkData = yaffs_GetTempBuffer(dev,__LINE__);
5055         
5056         
5057         dev->sequenceNumber = YAFFS_LOWEST_SEQUENCE_NUMBER;
5058         
5059         if(dev->isYaffs2)
5060         {
5061                 blockIndex = YMALLOC(nBlocks * sizeof(yaffs_BlockIndex));               
5062         }
5063         
5064         
5065         // Scan all the blocks to determine their state
5066         for(blk = dev->startBlock; blk <= dev->endBlock; blk++)
5067         {
5068                 bi = yaffs_GetBlockInfo(dev,blk);
5069                 yaffs_ClearChunkBits(dev,blk);
5070                 bi->pagesInUse = 0;
5071                 bi->softDeletions = 0;
5072                                 
5073                 yaffs_QueryInitialBlockState(dev,blk,&state,&sequenceNumber);
5074                 
5075                 bi->blockState = state;
5076                 bi->sequenceNumber = sequenceNumber;
5077
5078                 T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("Block scanning block %d state %d seq %d" TENDSTR),blk,state,sequenceNumber));
5079                 
5080                 if(state == YAFFS_BLOCK_STATE_DEAD)
5081                 {
5082                         T(YAFFS_TRACE_BAD_BLOCKS,(TSTR("block %d is bad" TENDSTR),blk));
5083                 }
5084                 else if(state == YAFFS_BLOCK_STATE_EMPTY)
5085                 {
5086                         T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("Block empty " TENDSTR)));
5087                         dev->nErasedBlocks++;
5088                         dev->nFreeChunks += dev->nChunksPerBlock;
5089                 }
5090                 else if(state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
5091                 {
5092                                         
5093                         // Determine the highest sequence number
5094                         if( dev->isYaffs2 &&
5095                             sequenceNumber >= YAFFS_LOWEST_SEQUENCE_NUMBER &&
5096                             sequenceNumber < YAFFS_HIGHEST_SEQUENCE_NUMBER)
5097                          {
5098                                 
5099                                 blockIndex[nBlocksToScan].seq = sequenceNumber;
5100                                 blockIndex[nBlocksToScan].block = blk;
5101                                 
5102                                 nBlocksToScan++;
5103
5104                                 if(sequenceNumber >= dev->sequenceNumber)
5105                                 {
5106                                         dev->sequenceNumber = sequenceNumber;
5107                                 }
5108                         }
5109                         else if(dev->isYaffs2)
5110                         {
5111                                 // TODO: Nasty sequence number!
5112                                 T(YAFFS_TRACE_SCAN,(TSTR("Block scanning block %d has bad sequence number %d" TENDSTR),blk,sequenceNumber));
5113
5114                         }
5115                 }
5116         }
5117         
5118         // Sort the blocks
5119         // Dungy old bubble sort for now...
5120         if(dev->isYaffs2)
5121         {
5122                 yaffs_BlockIndex temp;
5123                 int i;
5124                 int j;
5125                 
5126                 for(i = 0; i < nBlocksToScan; i++)
5127                         for(j = i+1; j < nBlocksToScan; j++)
5128                          if(blockIndex[i].seq > blockIndex[j].seq)
5129                          {
5130                                 temp = blockIndex[j];
5131                                 blockIndex[j] = blockIndex[i];
5132                                 blockIndex[i] = temp;
5133                          }
5134         }
5135         
5136         
5137         // Now scan the blocks looking at the data.
5138         if(dev->isYaffs2)
5139         {
5140                 startIterator = 0;
5141                 endIterator = nBlocksToScan-1;
5142                 T(YAFFS_TRACE_SCAN_DEBUG,(TSTR("%d blocks to be scanned" TENDSTR),nBlocksToScan));
5143         }
5144
5145         
5146         // For each block.... backwards
5147         for(blockIterator = endIterator; blockIterator >= startIterator; blockIterator--)
5148         {
5149         
5150                 // get the block to scan in the correct order
5151                 blk = blockIndex[blockIterator].block;
5152
5153
5154                 bi = yaffs_GetBlockInfo(dev,blk);
5155                 state = bi->blockState;
5156                 
5157                 deleted = 0;
5158                 
5159                 if( 0 && // Disable since this is redundant.
5160                     state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
5161                 {
5162                         // Let's look at the first chunk in the block
5163                         chunk = blk * dev->nChunksPerBlock;
5164                         
5165                         yaffs_ReadChunkWithTagsFromNAND(dev,chunk,NULL,&tags);
5166
5167                         // Let's have a good look at this chunk...
5168         
5169                         if(!tags.chunkUsed)
5170                         {
5171                                 // An unassigned chunk in the block
5172                                 // This means that either the block is empty or 
5173                                 // this is the one being allocated from
5174                                 
5175                                 // We're looking at the first chunk in the block so the block is unused
5176                                 state = YAFFS_BLOCK_STATE_EMPTY;
5177                                 dev->nErasedBlocks++;
5178                                 dev->nFreeChunks += dev->nChunksPerBlock;
5179                         }
5180                 
5181                 }
5182                 
5183                 // For each chunk in each block that needs scanning....
5184                 for(c = dev->nChunksPerBlock-1; c >= 0 && 
5185                                   (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
5186                                    state == YAFFS_BLOCK_STATE_ALLOCATING); c--)
5187                 {
5188                         // Scan backwards... 
5189                         // Read the tags and decide what to do
5190                         chunk = blk * dev->nChunksPerBlock + c;
5191                         
5192                         yaffs_ReadChunkWithTagsFromNAND(dev,chunk,NULL,&tags);
5193
5194                         // Let's have a good look at this chunk...
5195         
5196                         if(!tags.chunkUsed)
5197                         {
5198                                 // An unassigned chunk in the block
5199                                 // This means that either the block is empty or 
5200                                 // this is the one being allocated from
5201                                 
5202                                 if(c == 0)
5203                                 {
5204                                         // We're looking at the first chunk in the block so the block is unused
5205                                         state = YAFFS_BLOCK_STATE_EMPTY;
5206                                         dev->nErasedBlocks++;
5207                                 }
5208                                 else
5209                                 {
5210                                         // this is the block being allocated from
5211                                         if(state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
5212                                         {
5213                                           T(YAFFS_TRACE_SCAN,(TSTR(" Allocating from %d %d" TENDSTR),blk,c));
5214                                         }
5215                                         state = YAFFS_BLOCK_STATE_ALLOCATING;
5216                                         dev->allocationBlock = blk;
5217                                         dev->allocationPage = c;
5218                                         dev->allocationBlockFinder = blk; // Set it to here to encourage the allocator to
5219                                                                                                           // go forth from here.
5220                                         //Yaffs2 sanity check:
5221                                         // This should be the one with the highest sequence number
5222                                         if(dev->isYaffs2 && (dev->sequenceNumber != bi->sequenceNumber))
5223                                         {
5224                                                 T(YAFFS_TRACE_ALWAYS,
5225                                                                 (TSTR("yaffs: Allocation block %d was not highest sequence id: block seq = %d, dev seq = %d" TENDSTR),
5226                                                                 blk,bi->sequenceNumber,dev->sequenceNumber));
5227                                         }
5228                                 }
5229
5230                                 dev->nFreeChunks ++;
5231                         }
5232                         else if(tags.chunkId > 0)
5233                         {
5234                                 // chunkId > 0 so it is a data chunk...
5235                                 unsigned int endpos;
5236                                 
5237                                 __u32 chunkBase = (tags.chunkId - 1)* dev->nBytesPerChunk;
5238
5239                                 yaffs_SetChunkBit(dev,blk,c);
5240                                 bi->pagesInUse++;
5241                                                                 
5242                                 in = yaffs_FindOrCreateObjectByNumber(dev,tags.objectId,YAFFS_OBJECT_TYPE_FILE);
5243                                 if(in->variantType == YAFFS_OBJECT_TYPE_FILE &&
5244                                    chunkBase < in->variant.fileVariant.shrinkSize)
5245                                 {
5246                                         // This has not been invalidated by a resize
5247                                         yaffs_PutChunkIntoFile(in,tags.chunkId,chunk,-1);
5248                                 
5249                                 
5250                                         // File size is calculated by looking at the data chunks if we have not 
5251                                         // seen an object header yet. Stop this practice once we find an object header.
5252                                         endpos = (tags.chunkId - 1)* dev->nBytesPerChunk + tags.byteCount;
5253                                         if(!in->valid && // have not got an object header yet
5254                                            in->variant.fileVariant.scannedFileSize <endpos)
5255                                         {
5256                                                 in->variant.fileVariant.scannedFileSize = endpos;
5257                                                 in->variant.fileVariant.fileSize = in->variant.fileVariant.scannedFileSize;
5258                                         }
5259
5260                                 }
5261                                 else
5262                                 {
5263                                         // This chunk has been invalidated by a resize, so delete
5264                                         yaffs_DeleteChunk(dev,chunk,1,__LINE__);
5265                                         
5266                                         
5267                                 }
5268                                 //T((" %d %d data %d %d\n",blk,c,tags.objectId,tags.chunkId));  
5269                         }
5270                         else
5271                         {
5272                                 // chunkId == 0, so it is an ObjectHeader.
5273                                 // Thus, we read in the object header and make the object
5274                                 yaffs_SetChunkBit(dev,blk,c);
5275                                 bi->pagesInUse++;
5276                                 
5277                                 oh = NULL;
5278                                 in = NULL;
5279                                 
5280                                 if(tags.extraHeaderInfoAvailable)
5281                                 {
5282                                         in = yaffs_FindOrCreateObjectByNumber(dev,tags.objectId,tags.extraObjectType);
5283                                 }
5284
5285                                 
5286                                 if(!in || !in->valid)
5287                                 {
5288                                 
5289                                         // If we don't have  valid info then we need to read the chunk
5290                                         // TODO In future we can probably defer reading the chunk and 
5291                                         // living with invalid data until needed.
5292                                                                 
5293                                         yaffs_ReadChunkWithTagsFromNAND(dev,chunk,chunkData,NULL);
5294                                 
5295                                         oh = (yaffs_ObjectHeader *)chunkData;
5296                                 
5297                                         if(!in)
5298                                            in = yaffs_FindOrCreateObjectByNumber(dev,tags.objectId,oh->type);
5299                                         
5300                                 }
5301                                 
5302                                 if(!in)
5303                                 {
5304                                         // TODO Hoosterman we have a problem!
5305                                         T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: Could not make object for object  %d  at chunk %d during scan" TENDSTR),tags.objectId,chunk));
5306
5307                                 }
5308                                 
5309                                 if(in->valid)
5310                                 {
5311                                         // We have already filled this one. We have a duplicate that will be discarded, but 
5312                                         // we first have to suck out resize info if it is a file.
5313                                         
5314                                         if( (in->variantType == YAFFS_OBJECT_TYPE_FILE) &&
5315                                             ((oh && oh->type == YAFFS_OBJECT_TYPE_FILE) ||
5316                                             (tags.extraHeaderInfoAvailable && tags.extraObjectType == YAFFS_OBJECT_TYPE_FILE))
5317                                            )
5318                                         {
5319                                                 __u32 thisSize = (oh) ? oh->fileSize : tags.extraFileLength;
5320                                                 __u32 parentObjectId = (oh) ? oh->parentObjectId : tags.extraParentObjectId;
5321                                                 unsigned isShrink = (oh)  ? oh->isShrink : tags.extraIsShrinkHeader;
5322                                                 
5323                                                 // If it is deleted (unlinked at start also means deleted)
5324                                                 // we treat the file size as being zeroed at this point.
5325                                                 if(parentObjectId == YAFFS_OBJECTID_DELETED ||
5326                                                    parentObjectId == YAFFS_OBJECTID_UNLINKED)
5327                                                 {
5328                                                         thisSize = 0;
5329                                                         isShrink = 1;
5330                                                 }
5331                                                                                                 
5332                                                 if(in->variant.fileVariant.shrinkSize > thisSize)
5333                                                 {
5334                                                         in->variant.fileVariant.shrinkSize = thisSize;
5335                                                 }
5336                                                 
5337                                                 if(isShrink)
5338                                                 {
5339                                                         bi->hasShrinkHeader = 1;
5340                                                 }
5341                                                 
5342                                         }
5343                                         // Use existing - destroy this one.
5344                                         yaffs_DeleteChunk(dev,chunk,1,__LINE__);
5345                 
5346                                 }
5347                                 
5348                                 if(!in->valid &&
5349                                    (tags.objectId == YAFFS_OBJECTID_ROOT ||
5350                                     tags.objectId == YAFFS_OBJECTID_LOSTNFOUND))
5351                                 {
5352                                         // We only load some info, don't fiddle with directory structure
5353                                         in->valid = 1;
5354                                         in->variantType = oh->type;
5355         
5356                                         in->st_mode  = oh->st_mode;
5357 #ifdef CONFIG_YAFFS_WINCE
5358                                         in->win_atime[0] = oh->win_atime[0];
5359                                         in->win_ctime[0] = oh->win_ctime[0];
5360                                         in->win_mtime[0] = oh->win_mtime[0];
5361                                         in->win_atime[1] = oh->win_atime[1];
5362                                         in->win_ctime[1] = oh->win_ctime[1];
5363                                         in->win_mtime[1] = oh->win_mtime[1];
5364 #else
5365                                         in->st_uid   = oh->st_uid;
5366                                         in->st_gid   = oh->st_gid;
5367                                         in->st_atime = oh->st_atime;
5368                                         in->st_mtime = oh->st_mtime;
5369                                         in->st_ctime = oh->st_ctime;
5370                                         in->st_rdev = oh->st_rdev;
5371 #endif
5372                                         in->chunkId  = chunk;
5373
5374                                 }
5375                                 else if(!in->valid)
5376                                 {
5377                                         // we need to load this info
5378                                 
5379                                         in->valid = 1;
5380                                         in->variantType = oh->type;
5381         
5382                                         in->st_mode  = oh->st_mode;
5383 #ifdef CONFIG_YAFFS_WINCE
5384                                         in->win_atime[0] = oh->win_atime[0];
5385                                         in->win_ctime[0] = oh->win_ctime[0];
5386                                         in->win_mtime[0] = oh->win_mtime[0];
5387                                         in->win_atime[1] = oh->win_atime[1];
5388                                         in->win_ctime[1] = oh->win_ctime[1];
5389                                         in->win_mtime[1] = oh->win_mtime[1];
5390 #else
5391                                         in->st_uid   = oh->st_uid;
5392                                         in->st_gid   = oh->st_gid;
5393                                         in->st_atime = oh->st_atime;
5394                                         in->st_mtime = oh->st_mtime;
5395                                         in->st_ctime = oh->st_ctime;
5396                                         in->st_rdev = oh->st_rdev;
5397 #endif
5398                                         in->chunkId  = chunk;
5399
5400                                         yaffs_SetObjectName(in,oh->name);
5401                                         in->dirty = 0;
5402                                                         
5403                                         // directory stuff...
5404                                         // hook up to parent
5405         
5406                                         parent = yaffs_FindOrCreateObjectByNumber(dev,oh->parentObjectId,YAFFS_OBJECT_TYPE_DIRECTORY);
5407                                         if(parent->variantType == YAFFS_OBJECT_TYPE_UNKNOWN)
5408                                         {
5409                                                 // Set up as a directory
5410                                                 parent->variantType = YAFFS_OBJECT_TYPE_DIRECTORY;
5411                                                 INIT_LIST_HEAD(&parent->variant.directoryVariant.children);
5412                                         }
5413                                         else if(parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5414                                         {
5415                                                 // Hoosterman, another problem....
5416                                                 // We're trying to use a non-directory as a directory
5417
5418                                                 T(YAFFS_TRACE_ERROR, (TSTR("yaffs tragedy: attempting to use non-directory as a directory in scan. Put in lost+found." TENDSTR)));
5419                                                 parent = dev->lostNFoundDir;
5420                                         }
5421                                 
5422                                         yaffs_AddObjectToDirectory(parent,in);
5423
5424                                         if((parent == dev->deletedDir ||
5425                                            parent == dev->unlinkedDir))
5426                                         {
5427                                                 in->deleted = 1; // If it is unlinked at start up then it wants deleting
5428                                         }
5429                                         
5430                                         if( oh->isShrink)
5431                                         {
5432                                                 // Mark the block as having a shrinkHeader
5433                                                 bi->hasShrinkHeader = 1;
5434                                         }
5435                                         
5436                                 
5437                                         // Note re hardlinks.
5438                                         // Since we might scan a hardlink before its equivalent object is scanned
5439                                         // we put them all in a list.
5440                                         // After scanning is complete, we should have all the objects, so we run through this
5441                                         // list and fix up all the chains.              
5442         
5443                                         switch(in->variantType)
5444                                         {
5445                                                 case YAFFS_OBJECT_TYPE_UNKNOWN:         // Todo got a problem
5446                                                         break;
5447                                                 case YAFFS_OBJECT_TYPE_FILE:
5448
5449                                                         
5450                                                         if(in->variant.fileVariant.scannedFileSize < oh->fileSize)
5451                                                         {
5452                                                                 in->variant.fileVariant.fileSize = oh->fileSize;
5453                                                                 in->variant.fileVariant.scannedFileSize = in->variant.fileVariant.fileSize;
5454                                                         }
5455                                                         
5456                                                                                                         
5457                                                         
5458                                                         if(in->variant.fileVariant.shrinkSize > oh->fileSize)
5459                                                         {
5460                                                                 in->variant.fileVariant.shrinkSize = oh->fileSize;
5461                                                         }
5462                                                                                                         
5463                                                                 
5464                                                         break;
5465                                                 case YAFFS_OBJECT_TYPE_HARDLINK:
5466                                                         in->variant.hardLinkVariant.equivalentObjectId = oh->equivalentObjectId;
5467                                                         in->hardLinks.next = (struct list_head *)hardList;
5468                                                         hardList = in;
5469                                                         break;
5470                                                 case YAFFS_OBJECT_TYPE_DIRECTORY:       // Do nothing
5471                                                         break;
5472                                                 case YAFFS_OBJECT_TYPE_SPECIAL: // Do nothing
5473                                                         break;
5474                                                 case YAFFS_OBJECT_TYPE_SYMLINK:         // Do nothing
5475                                                         in->variant.symLinkVariant.alias = yaffs_CloneString(oh->alias);
5476                                                         break;
5477                                         }
5478
5479 #if 0
5480                                         if(parent == dev->deletedDir)
5481                                         {
5482                                                 yaffs_DestroyObject(in);
5483                                                 bi->hasShrinkHeader = 1;
5484                                         }
5485 #endif
5486                                         //T((" %d %d header %d \"%s\" type %d\n",blk,c,tags.objectId,oh->name,in->variantType));        
5487                                 }
5488                         }
5489                 }
5490                 
5491                 if(state == YAFFS_BLOCK_STATE_NEEDS_SCANNING)
5492                 {
5493                         // If we got this far while scanning, then the block is fully allocated.
5494                         state = YAFFS_BLOCK_STATE_FULL; 
5495                 }
5496                 
5497                 bi->blockState = state;
5498                 
5499                 // Now let's see if it was dirty
5500                 if(     bi->pagesInUse == 0 &&
5501                         !bi->hasShrinkHeader &&
5502                 bi->blockState == YAFFS_BLOCK_STATE_FULL)
5503             {
5504                 yaffs_BlockBecameDirty(dev,blk);
5505             }
5506
5507         }
5508         
5509         if(blockIndex)
5510         {
5511                 YFREE(blockIndex);
5512         }
5513         
5514         // Ok, we've done all the scanning.
5515         
5516         // Fix up the hard link chains.
5517         // We should now have scanned all the objects, now it's time to add these 
5518         // hardlinks.
5519         while(hardList)
5520         {
5521                 hl = hardList;
5522                 hardList = (yaffs_Object *)(hardList->hardLinks.next);
5523                 
5524                 in = yaffs_FindObjectByNumber(dev,hl->variant.hardLinkVariant.equivalentObjectId);
5525                 
5526                 if(in)
5527                 {
5528                         // Add the hardlink pointers
5529                         hl->variant.hardLinkVariant.equivalentObject=in;
5530                         list_add(&hl->hardLinks,&in->hardLinks);
5531                 }
5532                 else
5533                 {
5534                         //Todo Need to report/handle this better.
5535                         // Got a problem... hardlink to a non-existant object
5536                         hl->variant.hardLinkVariant.equivalentObject=NULL;
5537                         INIT_LIST_HEAD(&hl->hardLinks);
5538                         
5539                 }
5540                 
5541         }
5542         
5543         {
5544                 struct list_head *i;    
5545                 struct list_head *n;
5546                         
5547                 yaffs_Object *l;
5548                 
5549                 // Soft delete all the unlinked files
5550                 list_for_each_safe(i,n,&dev->unlinkedDir->variant.directoryVariant.children)
5551                 {
5552                         if(i)
5553                         {
5554                                 l = list_entry(i, yaffs_Object,siblings);
5555                                 yaffs_DestroyObject(l);         
5556                         }
5557                 }       
5558                 
5559                 // Soft delete all the deletedDir files
5560                 list_for_each_safe(i,n,&dev->deletedDir->variant.directoryVariant.children)
5561                 {
5562                         if(i)
5563                         {
5564                                 l = list_entry(i, yaffs_Object,siblings);
5565                                 yaffs_DestroyObject(l);         
5566                                 
5567                         }
5568                 }       
5569         }
5570         
5571         yaffs_ReleaseTempBuffer(dev,chunkData,__LINE__);
5572
5573         T(YAFFS_TRACE_SCAN,(TSTR("yaffs_ScanBackwards ends" TENDSTR)));
5574
5575         return YAFFS_OK;
5576 }
5577
5578
5579
5580 ////////////////////////// Directory Functions /////////////////////////
5581
5582
5583 static void yaffs_AddObjectToDirectory(yaffs_Object *directory, yaffs_Object *obj)
5584 {
5585
5586         if(!directory)
5587         {
5588                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: Trying to add an object to a null pointer directory" TENDSTR)));
5589                 YBUG();
5590         }
5591         if(directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5592         {
5593                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: Trying to add an object to a non-directory" TENDSTR)));
5594                 YBUG();
5595         }
5596
5597                 if(obj->siblings.prev == NULL)
5598         {
5599                 // Not initialised
5600                 INIT_LIST_HEAD(&obj->siblings);
5601                 
5602         }
5603         else if(!list_empty(&obj->siblings))
5604         {
5605                 // If it is holed up somewhere else, un hook it
5606                 list_del_init(&obj->siblings);
5607         }
5608         // Now add it
5609         list_add(&obj->siblings,&directory->variant.directoryVariant.children);
5610         obj->parent = directory;
5611         
5612         if(directory == obj->myDev->unlinkedDir || directory == obj->myDev->deletedDir)
5613         {
5614                 obj->unlinked = 1;
5615                 obj->myDev->nUnlinkedFiles++;
5616                 obj->renameAllowed = 0;
5617         }
5618 }
5619
5620 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj)
5621 {
5622         list_del_init(&obj->siblings);
5623         obj->parent = NULL;
5624 }
5625
5626 yaffs_Object *yaffs_FindObjectByName(yaffs_Object *directory,const YCHAR *name)
5627 {
5628         int sum;
5629         
5630         struct list_head *i;
5631         YCHAR buffer[YAFFS_MAX_NAME_LENGTH+1];
5632         
5633         yaffs_Object *l;
5634         
5635
5636         if(!directory)
5637         {
5638                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: yaffs_FindObjectByName: null pointer directory"TENDSTR)));
5639                 YBUG();
5640         }
5641         if(directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5642         {
5643                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: yaffs_FindObjectByName: non-directory"TENDSTR)));
5644                 YBUG();
5645         }
5646
5647         sum = yaffs_CalcNameSum(name);
5648         
5649         list_for_each(i,&directory->variant.directoryVariant.children)
5650         {
5651                 if(i)
5652                 {
5653                         l = list_entry(i, yaffs_Object,siblings);
5654                 
5655                         // Special case for lost-n-found
5656                         if(l->objectId == YAFFS_OBJECTID_LOSTNFOUND)
5657                         {
5658                                 if(yaffs_strcmp(name,YAFFS_LOSTNFOUND_NAME) == 0)
5659                                 {
5660                                         return l;
5661                                 }
5662                         }
5663                         else if(yaffs_SumCompare(l->sum, sum)||
5664                                     l->chunkId <= 0) //LostnFound cunk called Objxxx
5665                         {
5666                                 // Do a real check
5667                                 yaffs_GetObjectName(l,buffer,YAFFS_MAX_NAME_LENGTH);
5668                                 if(yaffs_strcmp(name,buffer) == 0)
5669                                 {
5670                                         return l;
5671                                 }
5672                         
5673                         }                       
5674                 }
5675         }
5676         
5677         return NULL;
5678 }
5679
5680
5681 int yaffs_ApplyToDirectoryChildren(yaffs_Object *theDir,int (*fn)(yaffs_Object *))
5682 {
5683         struct list_head *i;    
5684         yaffs_Object *l;
5685         
5686
5687         if(!theDir)
5688         {
5689                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: yaffs_FindObjectByName: null pointer directory"TENDSTR)));
5690                 YBUG();
5691         }
5692         if(theDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5693         {
5694                 T(YAFFS_TRACE_ALWAYS,(TSTR("tragedy: yaffs_FindObjectByName: non-directory"TENDSTR)));
5695                 YBUG();
5696         }
5697         
5698         list_for_each(i,&theDir->variant.directoryVariant.children)
5699         {
5700                 if(i)
5701                 {
5702                         l = list_entry(i, yaffs_Object,siblings);
5703                         if(l && !fn(l))
5704                         {
5705                                 return YAFFS_FAIL;
5706                         }
5707                 }
5708         }
5709         
5710         return YAFFS_OK;
5711
5712 }
5713
5714
5715 // GetEquivalentObject dereferences any hard links to get to the
5716 // actual object.
5717
5718 yaffs_Object *yaffs_GetEquivalentObject(yaffs_Object *obj)
5719 {
5720         if(obj && obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK)
5721         {
5722                 // We want the object id of the equivalent object, not this one
5723                 obj = obj->variant.hardLinkVariant.equivalentObject;
5724         }
5725         return obj;
5726
5727 }
5728
5729 int yaffs_GetObjectName(yaffs_Object *obj,YCHAR *name,int buffSize)
5730 {
5731         memset(name,0,buffSize * sizeof(YCHAR));
5732         
5733         if(obj->objectId == YAFFS_OBJECTID_LOSTNFOUND)
5734         {
5735                 yaffs_strncpy(name,YAFFS_LOSTNFOUND_NAME,buffSize - 1);
5736         }
5737         else if(obj->chunkId <= 0)
5738         {
5739                 YCHAR locName[20];
5740                 // make up a name
5741                 yaffs_sprintf(locName,_Y("%s%d"),YAFFS_LOSTNFOUND_PREFIX,obj->objectId);
5742                 yaffs_strncpy(name,locName,buffSize - 1);
5743
5744         }
5745 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
5746         else if(obj->shortName[0])
5747         {
5748                 yaffs_strcpy(name,obj->shortName);
5749         }
5750 #endif
5751         else
5752         {
5753                 __u8 *buffer = yaffs_GetTempBuffer(obj->myDev,__LINE__);
5754                 
5755                 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *)buffer;
5756
5757                 memset(buffer,0,obj->myDev->nBytesPerChunk);
5758         
5759                 if(obj->chunkId >= 0)
5760                 {
5761                         yaffs_ReadChunkWithTagsFromNAND(obj->myDev,obj->chunkId,buffer,NULL);
5762                 }
5763                 yaffs_strncpy(name,oh->name,buffSize - 1);
5764
5765                 yaffs_ReleaseTempBuffer(obj->myDev,buffer,__LINE__);
5766         }
5767         
5768         return yaffs_strlen(name);
5769 }
5770
5771 int yaffs_GetObjectFileLength(yaffs_Object *obj)
5772 {
5773         
5774         // Dereference any hard linking
5775         obj = yaffs_GetEquivalentObject(obj);
5776         
5777         if(obj->variantType == YAFFS_OBJECT_TYPE_FILE)
5778         {
5779                 return obj->variant.fileVariant.fileSize;
5780         }
5781         if(obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK)
5782         {
5783                 return yaffs_strlen(obj->variant.symLinkVariant.alias);
5784         }
5785         else
5786         {
5787                 // Only a directory should drop through to here
5788                 return obj->myDev->nBytesPerChunk;
5789         }       
5790 }
5791
5792 int yaffs_GetObjectLinkCount(yaffs_Object *obj)
5793 {
5794         int count = 0; 
5795         struct list_head *i;
5796         
5797         if(!obj->unlinked)
5798         {
5799                 count++;        // the object itself
5800         }
5801         list_for_each(i,&obj->hardLinks)
5802         {
5803                 count++;        // add the hard links;
5804         }
5805         return count;
5806         
5807 }
5808
5809
5810 int yaffs_GetObjectInode(yaffs_Object *obj)
5811 {
5812         obj = yaffs_GetEquivalentObject(obj);
5813         
5814         return obj->objectId;
5815 }
5816
5817 unsigned yaffs_GetObjectType(yaffs_Object *obj)
5818 {
5819         obj = yaffs_GetEquivalentObject(obj);
5820         
5821         switch(obj->variantType)
5822         {
5823                 case YAFFS_OBJECT_TYPE_FILE:            return DT_REG; break;
5824                 case YAFFS_OBJECT_TYPE_DIRECTORY:       return DT_DIR; break;
5825                 case YAFFS_OBJECT_TYPE_SYMLINK:         return DT_LNK; break;
5826                 case YAFFS_OBJECT_TYPE_HARDLINK:        return DT_REG; break;
5827                 case YAFFS_OBJECT_TYPE_SPECIAL:         
5828                         if(S_ISFIFO(obj->st_mode)) return DT_FIFO;
5829                         if(S_ISCHR(obj->st_mode)) return DT_CHR;
5830                         if(S_ISBLK(obj->st_mode)) return DT_BLK;
5831                         if(S_ISSOCK(obj->st_mode)) return DT_SOCK;
5832                 default: return DT_REG; break;
5833         }
5834 }
5835
5836 YCHAR *yaffs_GetSymlinkAlias(yaffs_Object *obj)
5837 {
5838         obj = yaffs_GetEquivalentObject(obj);
5839         if(obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK)
5840         {
5841                 return yaffs_CloneString(obj->variant.symLinkVariant.alias);
5842         }
5843         else
5844         {
5845                 return yaffs_CloneString(_Y(""));
5846         }
5847 }
5848
5849 #ifndef CONFIG_YAFFS_WINCE
5850
5851 int yaffs_SetAttributes(yaffs_Object *obj, struct iattr *attr)
5852 {
5853         unsigned int valid = attr->ia_valid;
5854         
5855         if(valid & ATTR_MODE) obj->st_mode = attr->ia_mode;
5856         if(valid & ATTR_UID) obj->st_uid = attr->ia_uid;
5857         if(valid & ATTR_GID) obj->st_gid = attr->ia_gid;
5858         
5859         if(valid & ATTR_ATIME) obj->st_atime = Y_TIME_CONVERT(attr->ia_atime);
5860         if(valid & ATTR_CTIME) obj->st_ctime = Y_TIME_CONVERT(attr->ia_ctime);
5861         if(valid & ATTR_MTIME) obj->st_mtime = Y_TIME_CONVERT(attr->ia_mtime);
5862         
5863         if(valid & ATTR_SIZE) yaffs_ResizeFile(obj,attr->ia_size);
5864         
5865         yaffs_UpdateObjectHeader(obj,NULL,1,0);
5866         
5867         return YAFFS_OK;
5868         
5869 }
5870 int yaffs_GetAttributes(yaffs_Object *obj, struct iattr *attr)
5871 {
5872         unsigned int valid = 0;
5873         
5874         attr->ia_mode = obj->st_mode;   valid |= ATTR_MODE;
5875         attr->ia_uid = obj->st_uid;             valid |= ATTR_UID;
5876         attr->ia_gid = obj->st_gid;             valid |= ATTR_GID;
5877         
5878         Y_TIME_CONVERT(attr->ia_atime)= obj->st_atime;  valid |= ATTR_ATIME;
5879         Y_TIME_CONVERT(attr->ia_ctime) = obj->st_ctime; valid |= ATTR_CTIME;
5880         Y_TIME_CONVERT(attr->ia_mtime) = obj->st_mtime; valid |= ATTR_MTIME;
5881
5882         attr->ia_size = yaffs_GetFileSize(obj); valid |= ATTR_SIZE;
5883         
5884         attr->ia_valid = valid;
5885         
5886         return YAFFS_OK;
5887         
5888 }
5889
5890 #endif
5891
5892 int yaffs_DumpObject(yaffs_Object *obj)
5893 {
5894 //      __u8 buffer[YAFFS_BYTES_PER_CHUNK];
5895         YCHAR name[257];
5896 //      yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *)buffer;
5897
5898 //      memset(buffer,0,YAFFS_BYTES_PER_CHUNK);
5899         
5900 //      if(obj->chunkId >= 0)
5901 //      {
5902 //              yaffs_ReadChunkFromNAND(obj->myDev,obj->chunkId,buffer,NULL);
5903 //      }
5904         
5905         yaffs_GetObjectName(obj,name,256);
5906         
5907         T(YAFFS_TRACE_ALWAYS,(TSTR("Object %d, inode %d \"%s\"\n dirty %d valid %d serial %d sum %d chunk %d type %d size %d\n" TENDSTR),
5908                         obj->objectId,yaffs_GetObjectInode(obj), name, obj->dirty, obj->valid, obj->serial, 
5909                         obj->sum, obj->chunkId, yaffs_GetObjectType(obj), yaffs_GetObjectFileLength(obj)));
5910
5911 #if 0
5912         YPRINTF(("Object %d \"%s\"\n dirty %d valid %d serial %d sum %d chunk %d\n",
5913                         obj->objectId, oh->name, obj->dirty, obj->valid, obj->serial, 
5914                         obj->sum, obj->chunkId));
5915                 switch(obj->variantType)
5916         {
5917                 case YAFFS_OBJECT_TYPE_FILE: 
5918                         YPRINTF((" FILE length %d\n",obj->variant.fileVariant.fileSize));
5919                         break;
5920                 case YAFFS_OBJECT_TYPE_DIRECTORY:
5921                         YPRINTF((" DIRECTORY\n"));
5922                         break;
5923                 case YAFFS_OBJECT_TYPE_HARDLINK: //todo
5924                 case YAFFS_OBJECT_TYPE_SYMLINK:
5925                 case YAFFS_OBJECT_TYPE_UNKNOWN:
5926                 default:
5927         }
5928 #endif
5929         
5930         return YAFFS_OK;
5931 }
5932
5933
5934 ///////////////////////// Initialisation code ///////////////////////////
5935
5936
5937 int yaffs_CheckDevFunctions(const yaffs_Device *dev)
5938 {
5939
5940         // Common functions, gotta have
5941         if(!dev->eraseBlockInNAND ||
5942            !dev->initialiseNAND) return 0;
5943
5944 #ifdef CONFIG_YAFFS_YAFFS2
5945
5946         // Can use the "with tags" style interface for yaffs1 or yaffs2
5947         if(dev->writeChunkWithTagsToNAND &&
5948            dev->readChunkWithTagsFromNAND &&
5949            !dev->writeChunkToNAND &&
5950            !dev->readChunkFromNAND &&
5951            dev->markNANDBlockBad &&
5952            dev->queryNANDBlock) return 1;
5953 #endif
5954
5955         // Can use the "spare" style interface for yaffs1
5956         if(!dev->isYaffs2 &&
5957            !dev->writeChunkWithTagsToNAND &&
5958            !dev->readChunkWithTagsFromNAND &&
5959            dev->writeChunkToNAND &&
5960            dev->readChunkFromNAND &&
5961            !dev->markNANDBlockBad &&
5962            !dev->queryNANDBlock) return 1;
5963
5964         return 0; // bad
5965 }
5966
5967
5968 int yaffs_GutsInitialise(yaffs_Device *dev)
5969 {
5970         unsigned x;
5971         int bits;
5972         int extraBits;
5973         int nBlocks;
5974
5975         T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: yaffs_GutsInitialise()" TENDSTR)));
5976         // Check stuff that must be set
5977
5978         if(!dev)
5979         {
5980                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: Need a device" TENDSTR)));
5981                 return YAFFS_FAIL;
5982         }
5983
5984         // Check geometry parameters.
5985
5986         if(     (dev->isYaffs2 && dev->nBytesPerChunk <1024)  ||
5987                 (!dev->isYaffs2 && dev->nBytesPerChunk !=512)  ||
5988                 dev->nChunksPerBlock < 2 ||
5989                 dev->nReservedBlocks < 2 ||
5990                 dev->startBlock <= 0 ||
5991                 dev->endBlock <= 0 ||
5992                 dev->endBlock <= (dev->startBlock + dev->nReservedBlocks + 2) // otherwise it is too small
5993           )
5994         {
5995                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: NAND geometry problems: chunk size %d, type is yaffs%s " TENDSTR),
5996                    dev->nBytesPerChunk, dev->isYaffs2 ? "2" : ""));
5997                 return YAFFS_FAIL;
5998         }
5999
6000         if(yaffs_InitialiseNAND(dev) != YAFFS_OK)
6001         {
6002                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: InitialiseNAND failed" TENDSTR)));
6003                 return YAFFS_FAIL;
6004         }
6005
6006         // Got the right mix of functions?
6007         //
6008         if(!yaffs_CheckDevFunctions(dev))
6009         {
6010                 //Function missing
6011                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: device function(s) missing or wrong\n" TENDSTR)));
6012
6013                 return YAFFS_FAIL;
6014         }
6015
6016         // This is really a compilation check.
6017         if(!yaffs_CheckStructures())
6018         {
6019                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs_CheckStructures failed\n" TENDSTR)));
6020                 return YAFFS_FAIL;
6021         }
6022
6023         if(dev->isMounted)
6024         {
6025                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: device already mounted\n" TENDSTR)));
6026                 return YAFFS_FAIL;
6027         }
6028
6029         //
6030         //
6031         // Finished with most checks. One or two more checks happen later on too.
6032         //
6033
6034         dev->isMounted = 1;
6035
6036
6037         nBlocks = dev->endBlock - dev->startBlock + 1;
6038
6039
6040
6041         // OK now calculate a few things for the device
6042         // Calculate chunkGroupBits.
6043         // We need to find the next power of 2 > than endBlock
6044         
6045         x = dev->nChunksPerBlock * (dev->endBlock+1);
6046         
6047         for(bits = extraBits = 0; x > 1; bits++)
6048         {
6049                 if(x & 1) extraBits++;
6050                 x >>= 1;
6051         }
6052
6053         if(extraBits > 0) bits++;
6054         
6055         
6056         // Level0 Tnodes are 16 bits, so if the bitwidth of the
6057         // chunk range we're using is greater than 16 we need
6058         // to figure out chunk shift and chunkGroupSize
6059         if(bits <= 16) 
6060         {
6061                 dev->chunkGroupBits = 0;
6062         }
6063         else
6064         {
6065                 dev->chunkGroupBits = bits - 16;
6066         }
6067         
6068         dev->chunkGroupSize = 1 << dev->chunkGroupBits;
6069
6070         if(dev->nChunksPerBlock < dev->chunkGroupSize)
6071         {
6072                 // We have a problem because the soft delete won't work if
6073                 // the chunk group size > chunks per block.
6074                 // This can be remedied by using larger "virtual blocks".
6075                 T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: chunk group too large\n" TENDSTR)));
6076                 
6077                 return YAFFS_FAIL;
6078         }
6079
6080         
6081         // OK, we've finished verifying the device, lets continue with initialisation
6082         
6083         // More device initialisation
6084         dev->garbageCollections = 0;
6085         dev->passiveGarbageCollections = 0;
6086         dev->currentDirtyChecker = 0;
6087         dev->bufferedBlock = -1;
6088         dev->doingBufferedBlockRewrite = 0;
6089         dev->nDeletedFiles = 0;
6090         dev->nBackgroundDeletions=0;
6091         dev->nUnlinkedFiles = 0;
6092         dev->eccFixed=0;
6093         dev->eccUnfixed=0;
6094         dev->tagsEccFixed=0;
6095         dev->tagsEccUnfixed=0;
6096         dev->nErasureFailures = 0;
6097         dev->nErasedBlocks = 0;
6098         
6099         //dev->localBuffer = YMALLOC(dev->nBytesPerChunk);
6100         // Initialise temporary buffers
6101         {
6102                 int i;
6103                 for(i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
6104                 {
6105                         dev->tempBuffer[i].line = 0; // not in use
6106                         dev->tempBuffer[i].buffer = YMALLOC(dev->nBytesPerChunk);
6107                 }
6108         }
6109         
6110
6111         
6112         yaffs_InitialiseBlocks(dev,nBlocks);
6113         
6114         yaffs_InitialiseTnodes(dev);
6115
6116         yaffs_InitialiseObjects(dev);
6117         
6118         dev->gcCleanupList = YMALLOC(dev->nChunksPerBlock * sizeof(__u32));
6119         
6120         if(dev->nShortOpCaches > 0)
6121         { 
6122                 int i;
6123                 
6124                 if(dev->nShortOpCaches >  YAFFS_MAX_SHORT_OP_CACHES)
6125                 {
6126                         dev->nShortOpCaches = YAFFS_MAX_SHORT_OP_CACHES;
6127                 }
6128                 
6129                 dev->srCache = YMALLOC( dev->nShortOpCaches * sizeof(yaffs_ChunkCache));
6130                 
6131                 for(i=0; i < dev->nShortOpCaches; i++)
6132                 {
6133                         dev->srCache[i].object = NULL;
6134                         dev->srCache[i].lastUse = 0;
6135                         dev->srCache[i].dirty = 0;
6136                         dev->srCache[i].data = YMALLOC(dev->nBytesPerChunk);
6137                 }
6138                 dev->srLastUse = 0;
6139         }
6140
6141         dev->cacheHits = 0;
6142         
6143         
6144         // Initialise the unlinked, root and lost and found directories
6145         dev->lostNFoundDir = dev->rootDir = dev->unlinkedDir = dev->deletedDir = NULL;
6146         
6147         dev->unlinkedDir = yaffs_CreateFakeDirectory(dev,YAFFS_OBJECTID_UNLINKED, S_IFDIR);
6148         dev->deletedDir = yaffs_CreateFakeDirectory(dev,YAFFS_OBJECTID_DELETED, S_IFDIR);
6149
6150         dev->rootDir = yaffs_CreateFakeDirectory(dev,YAFFS_OBJECTID_ROOT,YAFFS_ROOT_MODE | S_IFDIR);
6151         dev->lostNFoundDir = yaffs_CreateFakeDirectory(dev,YAFFS_OBJECTID_LOSTNFOUND,YAFFS_LOSTNFOUND_MODE | S_IFDIR);
6152         yaffs_AddObjectToDirectory(dev->rootDir,dev->lostNFoundDir);
6153         
6154         if(dev->isYaffs2) 
6155         {
6156                 dev->useHeaderFileSize = 1;
6157         }
6158                 
6159         // Now scan the flash.  
6160         
6161         if(dev->isYaffs2)
6162                 yaffs_ScanBackwards(dev);
6163         else
6164                 yaffs_Scan(dev);
6165         
6166         // Zero out stats
6167         dev->nPageReads = 0;
6168     dev->nPageWrites =  0;
6169         dev->nBlockErasures = 0;
6170         dev->nGCCopies = 0;
6171         dev->nRetriedWrites = 0;
6172
6173         dev->nRetiredBlocks = 0;
6174
6175         T(YAFFS_TRACE_ALWAYS,(TSTR("yaffs: yaffs_GutsInitialise() done.\n" TENDSTR)));
6176         return YAFFS_OK;
6177                 
6178 }
6179
6180 void yaffs_Deinitialise(yaffs_Device *dev)
6181 {
6182         if(dev->isMounted)
6183         {
6184                 int i;
6185         
6186                 yaffs_DeinitialiseBlocks(dev);
6187                 yaffs_DeinitialiseTnodes(dev);
6188                 yaffs_DeinitialiseObjects(dev);
6189                 if(dev->nShortOpCaches > 0)
6190                 {
6191                                 
6192                         for(i=0; i < dev->nShortOpCaches; i++)
6193                         {
6194                                 YFREE(dev->srCache[i].data);
6195                         }
6196
6197                         YFREE(dev->srCache);
6198                 }
6199
6200                 YFREE(dev->gcCleanupList);
6201
6202                 for(i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
6203                 {
6204                         YFREE(dev->tempBuffer[i].buffer);
6205                 }
6206                 
6207                 dev->isMounted = 0;
6208         }
6209         
6210 }
6211
6212 #if 0
6213
6214 int  yaffs_GetNumberOfFreeChunks(yaffs_Device *dev)
6215 {
6216         int nFree = dev->nFreeChunks - (dev->nChunksPerBlock * YAFFS_RESERVED_BLOCKS);
6217         
6218         struct list_head *i;    
6219         yaffs_Object *l;
6220         
6221         
6222         // To the free chunks add the chunks that are in the deleted unlinked files.
6223         list_for_each(i,&dev->deletedDir->variant.directoryVariant.children)
6224         {
6225                 l = list_entry(i, yaffs_Object,siblings);
6226                 if(l->deleted)
6227                 {
6228                         nFree++;
6229                         nFree += l->nDataChunks;
6230                 }
6231         }
6232         
6233         
6234         // printf("___________ nFreeChunks is %d nFree is %d\n",dev->nFreeChunks,nFree);        
6235
6236         if(nFree < 0) nFree = 0;
6237
6238         return nFree;   
6239         
6240 }
6241
6242 #endif
6243
6244 int  yaffs_GetNumberOfFreeChunks(yaffs_Device *dev)
6245 {
6246         int nFree;
6247         int pending;
6248         int b;
6249         int nDirtyCacheChunks=0;
6250         
6251         yaffs_BlockInfo *blk;
6252         
6253         struct list_head *i;    
6254         yaffs_Object *l;
6255         
6256         for(nFree = 0, b = dev->startBlock; b <= dev->endBlock; b++)
6257         {
6258                 blk = yaffs_GetBlockInfo(dev,b);
6259                 
6260                 switch(blk->blockState)
6261                 {
6262                         case YAFFS_BLOCK_STATE_EMPTY:
6263                         case YAFFS_BLOCK_STATE_ALLOCATING: 
6264                         case YAFFS_BLOCK_STATE_FULL: nFree += (dev->nChunksPerBlock - blk->pagesInUse); break;
6265                         default: break;
6266                 }
6267         }
6268         
6269         
6270         pending = 0;
6271         
6272         // To the free chunks add the chunks that are in the deleted unlinked files.
6273         list_for_each(i,&dev->deletedDir->variant.directoryVariant.children)
6274         {
6275                 if(i)
6276                 {
6277                         l = list_entry(i, yaffs_Object,siblings);
6278                         if(l->deleted)
6279                         {
6280                                 pending++;
6281                                 pending += l->nDataChunks;
6282                         }
6283                 }
6284         }
6285         
6286         
6287         
6288         //printf("___________ really free is %d, pending %d, nFree is %d\n",nFree,pending, nFree+pending);
6289         
6290         if(nFree != dev->nFreeChunks) 
6291         {
6292         //      printf("___________Different! really free is %d, nFreeChunks %d\n",nFree dev->nFreeChunks);
6293         }
6294
6295         nFree += pending;
6296         
6297         // Now count the number of dirty chunks in the cache and subtract those
6298         
6299         {
6300                 int i;
6301                 for(i = 0; i < dev->nShortOpCaches; i++)
6302                 {
6303                         if(dev->srCache[i].dirty) nDirtyCacheChunks++;
6304                 }
6305         }
6306         
6307         nFree -= nDirtyCacheChunks;
6308         
6309         nFree -= ((dev->nReservedBlocks + 1) * dev->nChunksPerBlock);
6310         
6311         if(nFree < 0) nFree = 0;
6312
6313         return nFree;   
6314         
6315 }
6316
6317
6318
6319 /////////////////// YAFFS test code //////////////////////////////////
6320
6321 #define yaffs_CheckStruct(structure,syze, name) \
6322            if(sizeof(structure) != syze) \
6323                { \
6324                  T(YAFFS_TRACE_ALWAYS,(TSTR("%s should be %d but is %d\n" TENDSTR),name,syze,sizeof(structure))); \
6325                  return YAFFS_FAIL; \
6326                    }
6327                  
6328                  
6329 static int yaffs_CheckStructures(void)
6330 {
6331 //      yaffs_CheckStruct(yaffs_Tags,8,"yaffs_Tags")
6332 //      yaffs_CheckStruct(yaffs_TagsUnion,8,"yaffs_TagsUnion")
6333 //      yaffs_CheckStruct(yaffs_Spare,16,"yaffs_Spare")
6334 #ifndef CONFIG_YAFFS_TNODE_LIST_DEBUG
6335         yaffs_CheckStruct(yaffs_Tnode,2* YAFFS_NTNODES_LEVEL0,"yaffs_Tnode")
6336 #endif
6337         yaffs_CheckStruct(yaffs_ObjectHeader,512,"yaffs_ObjectHeader")
6338         
6339         
6340         return YAFFS_OK;
6341 }
6342
6343 #if 0
6344 void yaffs_GutsTest(yaffs_Device *dev)
6345 {
6346         
6347         if(yaffs_CheckStructures() != YAFFS_OK)
6348         {
6349                 T(YAFFS_TRACE_ALWAYS,(TSTR("One or more structures malformed-- aborting\n" TENDSTR)));
6350                 return;
6351         }
6352         
6353         yaffs_TnodeTest(dev);
6354         yaffs_ObjectTest(dev);  
6355 }
6356 #endif
6357
6358