e9cda9c55b6d9c60109c9b6637cfec421d013b1c
[yaffs2.git] / yaffs_guts.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2007 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 const char *yaffs_guts_c_version =
15     "$Id: yaffs_guts.c,v 1.112 2010-03-05 01:49:00 charles Exp $";
16
17 #include "yportenv.h"
18 #include "yaffs_trace.h"
19
20 #include "yaffsinterface.h"
21 #include "yaffs_guts.h"
22 #include "yaffs_tagsvalidity.h"
23 #include "yaffs_getblockinfo.h"
24
25 #include "yaffs_tagscompat.h"
26 #ifndef CONFIG_YAFFS_USE_OWN_SORT
27 #include "yaffs_qsort.h"
28 #endif
29 #include "yaffs_nand.h"
30
31 #include "yaffs_checkptrw.h"
32
33 #include "yaffs_nand.h"
34 #include "yaffs_packedtags2.h"
35
36
37 #define YAFFS_PASSIVE_GC_CHUNKS 2
38
39 #include "yaffs_ecc.h"
40
41
42 /* Robustification (if it ever comes about...) */
43 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND);
44 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
45                 int erasedOk);
46 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
47                                 const __u8 *data,
48                                 const yaffs_ExtendedTags *tags);
49 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
50                                 const yaffs_ExtendedTags *tags);
51
52 /* Other local prototypes */
53 static void yaffs_UpdateParent(yaffs_Object *obj);
54 static int yaffs_UnlinkObject(yaffs_Object *obj);
55 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj);
56
57 static void yaffs_HardlinkFixup(yaffs_Device *dev, yaffs_Object *hardList);
58
59 static int yaffs_WriteNewChunkWithTagsToNAND(yaffs_Device *dev,
60                                         const __u8 *buffer,
61                                         yaffs_ExtendedTags *tags,
62                                         int useReserve);
63 static int yaffs_PutChunkIntoFile(yaffs_Object *in, int chunkInInode,
64                                 int chunkInNAND, int inScan);
65
66 static yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
67                                         yaffs_ObjectType type);
68 static void yaffs_AddObjectToDirectory(yaffs_Object *directory,
69                                 yaffs_Object *obj);
70 static int yaffs_UpdateObjectHeader(yaffs_Object *in, const YCHAR *name,
71                                 int force, int isShrink, int shadows);
72 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj);
73 static int yaffs_CheckStructures(void);
74 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level,
75                         int chunkOffset, int *limit);
76 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in);
77
78 static yaffs_BlockInfo *yaffs_GetBlockInfo(yaffs_Device *dev, int blockNo);
79
80
81 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
82                                 int chunkInNAND);
83
84 static int yaffs_UnlinkWorker(yaffs_Object *obj);
85
86 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId,
87                         int chunkInObject);
88
89 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
90                                 yaffs_BlockInfo **blockUsedPtr);
91
92 static void yaffs_VerifyFreeChunks(yaffs_Device *dev);
93
94 static void yaffs_CheckObjectDetailsLoaded(yaffs_Object *in);
95
96 static void yaffs_VerifyDirectory(yaffs_Object *directory);
97 #ifdef YAFFS_PARANOID
98 static int yaffs_CheckFileSanity(yaffs_Object *in);
99 #else
100 #define yaffs_CheckFileSanity(in)
101 #endif
102
103 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in);
104 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId);
105
106 static void yaffs_InvalidateCheckpoint(yaffs_Device *dev);
107
108 static int yaffs_FindChunkInFile(yaffs_Object *in, int chunkInInode,
109                                 yaffs_ExtendedTags *tags);
110
111 static __u32 yaffs_GetChunkGroupBase(yaffs_Device *dev, yaffs_Tnode *tn,
112                 unsigned pos);
113 static yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,
114                                         yaffs_FileStructure *fStruct,
115                                         __u32 chunkId);
116
117 static void yaffs_SkipRestOfBlock(yaffs_Device *dev);
118 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
119                                         int chunkInNAND,
120                                         const __u8 *data,
121                                         yaffs_ExtendedTags *tags);
122
123 /* Function to calculate chunk and offset */
124
125 static void yaffs_AddrToChunk(yaffs_Device *dev, loff_t addr, int *chunkOut,
126                 __u32 *offsetOut)
127 {
128         int chunk;
129         __u32 offset;
130
131         chunk  = (__u32)(addr >> dev->chunkShift);
132
133         if (dev->chunkDiv == 1) {
134                 /* easy power of 2 case */
135                 offset = (__u32)(addr & dev->chunkMask);
136         } else {
137                 /* Non power-of-2 case */
138
139                 loff_t chunkBase;
140
141                 chunk /= dev->chunkDiv;
142
143                 chunkBase = ((loff_t)chunk) * dev->nDataBytesPerChunk;
144                 offset = (__u32)(addr - chunkBase);
145         }
146
147         *chunkOut = chunk;
148         *offsetOut = offset;
149 }
150
151 /* Function to return the number of shifts for a power of 2 greater than or
152  * equal to the given number
153  * Note we don't try to cater for all possible numbers and this does not have to
154  * be hellishly efficient.
155  */
156
157 static __u32 ShiftsGE(__u32 x)
158 {
159         int extraBits;
160         int nShifts;
161
162         nShifts = extraBits = 0;
163
164         while (x > 1) {
165                 if (x & 1)
166                         extraBits++;
167                 x >>= 1;
168                 nShifts++;
169         }
170
171         if (extraBits)
172                 nShifts++;
173
174         return nShifts;
175 }
176
177 /* Function to return the number of shifts to get a 1 in bit 0
178  */
179
180 static __u32 Shifts(__u32 x)
181 {
182         int nShifts;
183
184         nShifts =  0;
185
186         if (!x)
187                 return 0;
188
189         while (!(x&1)) {
190                 x >>= 1;
191                 nShifts++;
192         }
193
194         return nShifts;
195 }
196
197
198
199 /*
200  * Temporary buffer manipulations.
201  */
202
203 static int yaffs_InitialiseTempBuffers(yaffs_Device *dev)
204 {
205         int i;
206         __u8 *buf = (__u8 *)1;
207
208         memset(dev->tempBuffer, 0, sizeof(dev->tempBuffer));
209
210         for (i = 0; buf && i < YAFFS_N_TEMP_BUFFERS; i++) {
211                 dev->tempBuffer[i].line = 0;    /* not in use */
212                 dev->tempBuffer[i].buffer = buf =
213                     YMALLOC_DMA(dev->param.totalBytesPerChunk);
214         }
215
216         return buf ? YAFFS_OK : YAFFS_FAIL;
217 }
218
219 __u8 *yaffs_GetTempBuffer(yaffs_Device *dev, int lineNo)
220 {
221         int i, j;
222
223         dev->tempInUse++;
224         if (dev->tempInUse > dev->maxTemp)
225                 dev->maxTemp = dev->tempInUse;
226
227         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
228                 if (dev->tempBuffer[i].line == 0) {
229                         dev->tempBuffer[i].line = lineNo;
230                         if ((i + 1) > dev->maxTemp) {
231                                 dev->maxTemp = i + 1;
232                                 for (j = 0; j <= i; j++)
233                                         dev->tempBuffer[j].maxLine =
234                                             dev->tempBuffer[j].line;
235                         }
236
237                         return dev->tempBuffer[i].buffer;
238                 }
239         }
240
241         T(YAFFS_TRACE_BUFFERS,
242           (TSTR("Out of temp buffers at line %d, other held by lines:"),
243            lineNo));
244         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
245                 T(YAFFS_TRACE_BUFFERS, (TSTR(" %d "), dev->tempBuffer[i].line));
246
247         T(YAFFS_TRACE_BUFFERS, (TSTR(" " TENDSTR)));
248
249         /*
250          * If we got here then we have to allocate an unmanaged one
251          * This is not good.
252          */
253
254         dev->unmanagedTempAllocations++;
255         return YMALLOC(dev->nDataBytesPerChunk);
256
257 }
258
259 void yaffs_ReleaseTempBuffer(yaffs_Device *dev, __u8 *buffer,
260                                     int lineNo)
261 {
262         int i;
263
264         dev->tempInUse--;
265
266         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
267                 if (dev->tempBuffer[i].buffer == buffer) {
268                         dev->tempBuffer[i].line = 0;
269                         return;
270                 }
271         }
272
273         if (buffer) {
274                 /* assume it is an unmanaged one. */
275                 T(YAFFS_TRACE_BUFFERS,
276                   (TSTR("Releasing unmanaged temp buffer in line %d" TENDSTR),
277                    lineNo));
278                 YFREE(buffer);
279                 dev->unmanagedTempDeallocations++;
280         }
281
282 }
283
284 /*
285  * Determine if we have a managed buffer.
286  */
287 int yaffs_IsManagedTempBuffer(yaffs_Device *dev, const __u8 *buffer)
288 {
289         int i;
290
291         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
292                 if (dev->tempBuffer[i].buffer == buffer)
293                         return 1;
294         }
295
296         for (i = 0; i < dev->param.nShortOpCaches; i++) {
297                 if (dev->srCache[i].data == buffer)
298                         return 1;
299         }
300
301         if (buffer == dev->checkpointBuffer)
302                 return 1;
303
304         T(YAFFS_TRACE_ALWAYS,
305                 (TSTR("yaffs: unmaged buffer detected.\n" TENDSTR)));
306         return 0;
307 }
308
309
310
311 /*
312  * Chunk bitmap manipulations
313  */
314
315 static Y_INLINE __u8 *yaffs_BlockBits(yaffs_Device *dev, int blk)
316 {
317         if (blk < dev->internalStartBlock || blk > dev->internalEndBlock) {
318                 T(YAFFS_TRACE_ERROR,
319                         (TSTR("**>> yaffs: BlockBits block %d is not valid" TENDSTR),
320                         blk));
321                 YBUG();
322         }
323         return dev->chunkBits +
324                 (dev->chunkBitmapStride * (blk - dev->internalStartBlock));
325 }
326
327 static Y_INLINE void yaffs_VerifyChunkBitId(yaffs_Device *dev, int blk, int chunk)
328 {
329         if (blk < dev->internalStartBlock || blk > dev->internalEndBlock ||
330                         chunk < 0 || chunk >= dev->param.nChunksPerBlock) {
331                 T(YAFFS_TRACE_ERROR,
332                 (TSTR("**>> yaffs: Chunk Id (%d:%d) invalid"TENDSTR),
333                         blk, chunk));
334                 YBUG();
335         }
336 }
337
338 static Y_INLINE void yaffs_ClearChunkBits(yaffs_Device *dev, int blk)
339 {
340         __u8 *blkBits = yaffs_BlockBits(dev, blk);
341
342         memset(blkBits, 0, dev->chunkBitmapStride);
343 }
344
345 static Y_INLINE void yaffs_ClearChunkBit(yaffs_Device *dev, int blk, int chunk)
346 {
347         __u8 *blkBits = yaffs_BlockBits(dev, blk);
348
349         yaffs_VerifyChunkBitId(dev, blk, chunk);
350
351         blkBits[chunk / 8] &= ~(1 << (chunk & 7));
352 }
353
354 static Y_INLINE void yaffs_SetChunkBit(yaffs_Device *dev, int blk, int chunk)
355 {
356         __u8 *blkBits = yaffs_BlockBits(dev, blk);
357
358         yaffs_VerifyChunkBitId(dev, blk, chunk);
359
360         blkBits[chunk / 8] |= (1 << (chunk & 7));
361 }
362
363 static Y_INLINE int yaffs_CheckChunkBit(yaffs_Device *dev, int blk, int chunk)
364 {
365         __u8 *blkBits = yaffs_BlockBits(dev, blk);
366         yaffs_VerifyChunkBitId(dev, blk, chunk);
367
368         return (blkBits[chunk / 8] & (1 << (chunk & 7))) ? 1 : 0;
369 }
370
371 static Y_INLINE int yaffs_StillSomeChunkBits(yaffs_Device *dev, int blk)
372 {
373         __u8 *blkBits = yaffs_BlockBits(dev, blk);
374         int i;
375         for (i = 0; i < dev->chunkBitmapStride; i++) {
376                 if (*blkBits)
377                         return 1;
378                 blkBits++;
379         }
380         return 0;
381 }
382
383 static int yaffs_CountChunkBits(yaffs_Device *dev, int blk)
384 {
385         __u8 *blkBits = yaffs_BlockBits(dev, blk);
386         int i;
387         int n = 0;
388         for (i = 0; i < dev->chunkBitmapStride; i++) {
389                 __u8 x = *blkBits;
390                 while (x) {
391                         if (x & 1)
392                                 n++;
393                         x >>= 1;
394                 }
395
396                 blkBits++;
397         }
398         return n;
399 }
400
401 /*
402  * Verification code
403  */
404
405 static int yaffs_SkipVerification(yaffs_Device *dev)
406 {
407         return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY | YAFFS_TRACE_VERIFY_FULL));
408 }
409
410 static int yaffs_SkipFullVerification(yaffs_Device *dev)
411 {
412         return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY_FULL));
413 }
414
415 static int yaffs_SkipNANDVerification(yaffs_Device *dev)
416 {
417         return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY_NAND));
418 }
419
420 static const char *blockStateName[] = {
421 "Unknown",
422 "Needs scanning",
423 "Scanning",
424 "Empty",
425 "Allocating",
426 "Full",
427 "Dirty",
428 "Checkpoint",
429 "Collecting",
430 "Dead"
431 };
432
433 static void yaffs_VerifyBlock(yaffs_Device *dev, yaffs_BlockInfo *bi, int n)
434 {
435         int actuallyUsed;
436         int inUse;
437
438         if (yaffs_SkipVerification(dev))
439                 return;
440
441         /* Report illegal runtime states */
442         if (bi->blockState >= YAFFS_NUMBER_OF_BLOCK_STATES)
443                 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has undefined state %d"TENDSTR), n, bi->blockState));
444
445         switch (bi->blockState) {
446         case YAFFS_BLOCK_STATE_UNKNOWN:
447         case YAFFS_BLOCK_STATE_SCANNING:
448         case YAFFS_BLOCK_STATE_NEEDS_SCANNING:
449                 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has bad run-state %s"TENDSTR),
450                 n, blockStateName[bi->blockState]));
451         }
452
453         /* Check pages in use and soft deletions are legal */
454
455         actuallyUsed = bi->pagesInUse - bi->softDeletions;
456
457         if (bi->pagesInUse < 0 || bi->pagesInUse > dev->param.nChunksPerBlock ||
458            bi->softDeletions < 0 || bi->softDeletions > dev->param.nChunksPerBlock ||
459            actuallyUsed < 0 || actuallyUsed > dev->param.nChunksPerBlock)
460                 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has illegal values pagesInUsed %d softDeletions %d"TENDSTR),
461                 n, bi->pagesInUse, bi->softDeletions));
462
463
464         /* Check chunk bitmap legal */
465         inUse = yaffs_CountChunkBits(dev, n);
466         if (inUse != bi->pagesInUse)
467                 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has inconsistent values pagesInUse %d counted chunk bits %d"TENDSTR),
468                         n, bi->pagesInUse, inUse));
469
470         /* Check that the sequence number is valid.
471          * Ten million is legal, but is very unlikely
472          */
473         if (dev->param.isYaffs2 &&
474            (bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING || bi->blockState == YAFFS_BLOCK_STATE_FULL) &&
475            (bi->sequenceNumber < YAFFS_LOWEST_SEQUENCE_NUMBER || bi->sequenceNumber > 10000000))
476                 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has suspect sequence number of %d"TENDSTR),
477                 n, bi->sequenceNumber));
478 }
479
480 static void yaffs_VerifyCollectedBlock(yaffs_Device *dev, yaffs_BlockInfo *bi,
481                 int n)
482 {
483         yaffs_VerifyBlock(dev, bi, n);
484
485         /* After collection the block should be in the erased state */
486         /* This will need to change if we do partial gc */
487
488         if (bi->blockState != YAFFS_BLOCK_STATE_COLLECTING &&
489                         bi->blockState != YAFFS_BLOCK_STATE_EMPTY) {
490                 T(YAFFS_TRACE_ERROR, (TSTR("Block %d is in state %d after gc, should be erased"TENDSTR),
491                         n, bi->blockState));
492         }
493 }
494
495 static void yaffs_VerifyBlocks(yaffs_Device *dev)
496 {
497         int i;
498         int nBlocksPerState[YAFFS_NUMBER_OF_BLOCK_STATES];
499         int nIllegalBlockStates = 0;
500
501         if (yaffs_SkipVerification(dev))
502                 return;
503
504         memset(nBlocksPerState, 0, sizeof(nBlocksPerState));
505
506         for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
507                 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, i);
508                 yaffs_VerifyBlock(dev, bi, i);
509
510                 if (bi->blockState < YAFFS_NUMBER_OF_BLOCK_STATES)
511                         nBlocksPerState[bi->blockState]++;
512                 else
513                         nIllegalBlockStates++;
514         }
515
516         T(YAFFS_TRACE_VERIFY, (TSTR(""TENDSTR)));
517         T(YAFFS_TRACE_VERIFY, (TSTR("Block summary"TENDSTR)));
518
519         T(YAFFS_TRACE_VERIFY, (TSTR("%d blocks have illegal states"TENDSTR), nIllegalBlockStates));
520         if (nBlocksPerState[YAFFS_BLOCK_STATE_ALLOCATING] > 1)
521                 T(YAFFS_TRACE_VERIFY, (TSTR("Too many allocating blocks"TENDSTR)));
522
523         for (i = 0; i < YAFFS_NUMBER_OF_BLOCK_STATES; i++)
524                 T(YAFFS_TRACE_VERIFY,
525                   (TSTR("%s %d blocks"TENDSTR),
526                   blockStateName[i], nBlocksPerState[i]));
527
528         if (dev->blocksInCheckpoint != nBlocksPerState[YAFFS_BLOCK_STATE_CHECKPOINT])
529                 T(YAFFS_TRACE_VERIFY,
530                  (TSTR("Checkpoint block count wrong dev %d count %d"TENDSTR),
531                  dev->blocksInCheckpoint, nBlocksPerState[YAFFS_BLOCK_STATE_CHECKPOINT]));
532
533         if (dev->nErasedBlocks != nBlocksPerState[YAFFS_BLOCK_STATE_EMPTY])
534                 T(YAFFS_TRACE_VERIFY,
535                  (TSTR("Erased block count wrong dev %d count %d"TENDSTR),
536                  dev->nErasedBlocks, nBlocksPerState[YAFFS_BLOCK_STATE_EMPTY]));
537
538         if (nBlocksPerState[YAFFS_BLOCK_STATE_COLLECTING] > 1)
539                 T(YAFFS_TRACE_VERIFY,
540                  (TSTR("Too many collecting blocks %d (max is 1)"TENDSTR),
541                  nBlocksPerState[YAFFS_BLOCK_STATE_COLLECTING]));
542
543         T(YAFFS_TRACE_VERIFY, (TSTR(""TENDSTR)));
544
545 }
546
547 /*
548  * Verify the object header. oh must be valid, but obj and tags may be NULL in which
549  * case those tests will not be performed.
550  */
551 static void yaffs_VerifyObjectHeader(yaffs_Object *obj, yaffs_ObjectHeader *oh, yaffs_ExtendedTags *tags, int parentCheck)
552 {
553         if (obj && yaffs_SkipVerification(obj->myDev))
554                 return;
555
556         if (!(tags && obj && oh)) {
557                 T(YAFFS_TRACE_VERIFY,
558                                 (TSTR("Verifying object header tags %p obj %p oh %p"TENDSTR),
559                                 tags, obj, oh));
560                 return;
561         }
562
563         if (oh->type <= YAFFS_OBJECT_TYPE_UNKNOWN ||
564                         oh->type > YAFFS_OBJECT_TYPE_MAX)
565                 T(YAFFS_TRACE_VERIFY,
566                         (TSTR("Obj %d header type is illegal value 0x%x"TENDSTR),
567                         tags->objectId, oh->type));
568
569         if (tags->objectId != obj->objectId)
570                 T(YAFFS_TRACE_VERIFY,
571                         (TSTR("Obj %d header mismatch objectId %d"TENDSTR),
572                         tags->objectId, obj->objectId));
573
574
575         /*
576          * Check that the object's parent ids match if parentCheck requested.
577          *
578          * Tests do not apply to the root object.
579          */
580
581         if (parentCheck && tags->objectId > 1 && !obj->parent)
582                 T(YAFFS_TRACE_VERIFY,
583                         (TSTR("Obj %d header mismatch parentId %d obj->parent is NULL"TENDSTR),
584                         tags->objectId, oh->parentObjectId));
585
586         if (parentCheck && obj->parent &&
587                         oh->parentObjectId != obj->parent->objectId &&
588                         (oh->parentObjectId != YAFFS_OBJECTID_UNLINKED ||
589                         obj->parent->objectId != YAFFS_OBJECTID_DELETED))
590                 T(YAFFS_TRACE_VERIFY,
591                         (TSTR("Obj %d header mismatch parentId %d parentObjectId %d"TENDSTR),
592                         tags->objectId, oh->parentObjectId, obj->parent->objectId));
593
594         if (tags->objectId > 1 && oh->name[0] == 0) /* Null name */
595                 T(YAFFS_TRACE_VERIFY,
596                         (TSTR("Obj %d header name is NULL"TENDSTR),
597                         obj->objectId));
598
599         if (tags->objectId > 1 && ((__u8)(oh->name[0])) == 0xff) /* Trashed name */
600                 T(YAFFS_TRACE_VERIFY,
601                         (TSTR("Obj %d header name is 0xFF"TENDSTR),
602                         obj->objectId));
603 }
604
605
606
607 static int yaffs_VerifyTnodeWorker(yaffs_Object *obj, yaffs_Tnode *tn,
608                                         __u32 level, int chunkOffset)
609 {
610         int i;
611         yaffs_Device *dev = obj->myDev;
612         int ok = 1;
613
614         if (tn) {
615                 if (level > 0) {
616
617                         for (i = 0; i < YAFFS_NTNODES_INTERNAL && ok; i++) {
618                                 if (tn->internal[i]) {
619                                         ok = yaffs_VerifyTnodeWorker(obj,
620                                                         tn->internal[i],
621                                                         level - 1,
622                                                         (chunkOffset<<YAFFS_TNODES_INTERNAL_BITS) + i);
623                                 }
624                         }
625                 } else if (level == 0) {
626                         yaffs_ExtendedTags tags;
627                         __u32 objectId = obj->objectId;
628
629                         chunkOffset <<=  YAFFS_TNODES_LEVEL0_BITS;
630
631                         for (i = 0; i < YAFFS_NTNODES_LEVEL0; i++) {
632                                 __u32 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
633
634                                 if (theChunk > 0) {
635                                         /* T(~0,(TSTR("verifying (%d:%d) %d"TENDSTR),tags.objectId,tags.chunkId,theChunk)); */
636                                         yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL, &tags);
637                                         if (tags.objectId != objectId || tags.chunkId != chunkOffset) {
638                                                 T(~0, (TSTR("Object %d chunkId %d NAND mismatch chunk %d tags (%d:%d)"TENDSTR),
639                                                         objectId, chunkOffset, theChunk,
640                                                         tags.objectId, tags.chunkId));
641                                         }
642                                 }
643                                 chunkOffset++;
644                         }
645                 }
646         }
647
648         return ok;
649
650 }
651
652
653 static void yaffs_VerifyFile(yaffs_Object *obj)
654 {
655         int requiredTallness;
656         int actualTallness;
657         __u32 lastChunk;
658         __u32 x;
659         __u32 i;
660         yaffs_Device *dev;
661         yaffs_ExtendedTags tags;
662         yaffs_Tnode *tn;
663         __u32 objectId;
664
665         if (!obj)
666                 return;
667
668         if (yaffs_SkipVerification(obj->myDev))
669                 return;
670
671         dev = obj->myDev;
672         objectId = obj->objectId;
673
674         /* Check file size is consistent with tnode depth */
675         lastChunk =  obj->variant.fileVariant.fileSize / dev->nDataBytesPerChunk + 1;
676         x = lastChunk >> YAFFS_TNODES_LEVEL0_BITS;
677         requiredTallness = 0;
678         while (x > 0) {
679                 x >>= YAFFS_TNODES_INTERNAL_BITS;
680                 requiredTallness++;
681         }
682
683         actualTallness = obj->variant.fileVariant.topLevel;
684
685         /* Check that the chunks in the tnode tree are all correct.
686          * We do this by scanning through the tnode tree and
687          * checking the tags for every chunk match.
688          */
689
690         if (yaffs_SkipNANDVerification(dev))
691                 return;
692
693         for (i = 1; i <= lastChunk; i++) {
694                 tn = yaffs_FindLevel0Tnode(dev, &obj->variant.fileVariant, i);
695
696                 if (tn) {
697                         __u32 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
698                         if (theChunk > 0) {
699                                 /* T(~0,(TSTR("verifying (%d:%d) %d"TENDSTR),objectId,i,theChunk)); */
700                                 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL, &tags);
701                                 if (tags.objectId != objectId || tags.chunkId != i) {
702                                         T(~0, (TSTR("Object %d chunkId %d NAND mismatch chunk %d tags (%d:%d)"TENDSTR),
703                                                 objectId, i, theChunk,
704                                                 tags.objectId, tags.chunkId));
705                                 }
706                         }
707                 }
708         }
709 }
710
711
712 static void yaffs_VerifyHardLink(yaffs_Object *obj)
713 {
714         if (obj && yaffs_SkipVerification(obj->myDev))
715                 return;
716
717         /* Verify sane equivalent object */
718 }
719
720 static void yaffs_VerifySymlink(yaffs_Object *obj)
721 {
722         if (obj && yaffs_SkipVerification(obj->myDev))
723                 return;
724
725         /* Verify symlink string */
726 }
727
728 static void yaffs_VerifySpecial(yaffs_Object *obj)
729 {
730         if (obj && yaffs_SkipVerification(obj->myDev))
731                 return;
732 }
733
734 static void yaffs_VerifyObject(yaffs_Object *obj)
735 {
736         yaffs_Device *dev;
737
738         __u32 chunkMin;
739         __u32 chunkMax;
740
741         __u32 chunkIdOk;
742         __u32 chunkInRange;
743         __u32 chunkShouldNotBeDeleted;
744         __u32 chunkValid;
745
746         if (!obj)
747                 return;
748
749         if (obj->beingCreated)
750                 return;
751
752         dev = obj->myDev;
753
754         if (yaffs_SkipVerification(dev))
755                 return;
756
757         /* Check sane object header chunk */
758
759         chunkMin = dev->internalStartBlock * dev->param.nChunksPerBlock;
760         chunkMax = (dev->internalEndBlock+1) * dev->param.nChunksPerBlock - 1;
761
762         chunkInRange = (((unsigned)(obj->hdrChunk)) >= chunkMin && ((unsigned)(obj->hdrChunk)) <= chunkMax);
763         chunkIdOk = chunkInRange || (obj->hdrChunk == 0);
764         chunkValid = chunkInRange &&
765                         yaffs_CheckChunkBit(dev,
766                                         obj->hdrChunk / dev->param.nChunksPerBlock,
767                                         obj->hdrChunk % dev->param.nChunksPerBlock);
768         chunkShouldNotBeDeleted = chunkInRange && !chunkValid;
769
770         if (!obj->fake &&
771                         (!chunkIdOk || chunkShouldNotBeDeleted)) {
772                 T(YAFFS_TRACE_VERIFY,
773                         (TSTR("Obj %d has chunkId %d %s %s"TENDSTR),
774                         obj->objectId, obj->hdrChunk,
775                         chunkIdOk ? "" : ",out of range",
776                         chunkShouldNotBeDeleted ? ",marked as deleted" : ""));
777         }
778
779         if (chunkValid && !yaffs_SkipNANDVerification(dev)) {
780                 yaffs_ExtendedTags tags;
781                 yaffs_ObjectHeader *oh;
782                 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
783
784                 oh = (yaffs_ObjectHeader *)buffer;
785
786                 yaffs_ReadChunkWithTagsFromNAND(dev, obj->hdrChunk, buffer,
787                                 &tags);
788
789                 yaffs_VerifyObjectHeader(obj, oh, &tags, 1);
790
791                 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
792         }
793
794         /* Verify it has a parent */
795         if (obj && !obj->fake &&
796                         (!obj->parent || obj->parent->myDev != dev)) {
797                 T(YAFFS_TRACE_VERIFY,
798                         (TSTR("Obj %d has parent pointer %p which does not look like an object"TENDSTR),
799                         obj->objectId, obj->parent));
800         }
801
802         /* Verify parent is a directory */
803         if (obj->parent && obj->parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
804                 T(YAFFS_TRACE_VERIFY,
805                         (TSTR("Obj %d's parent is not a directory (type %d)"TENDSTR),
806                         obj->objectId, obj->parent->variantType));
807         }
808
809         switch (obj->variantType) {
810         case YAFFS_OBJECT_TYPE_FILE:
811                 yaffs_VerifyFile(obj);
812                 break;
813         case YAFFS_OBJECT_TYPE_SYMLINK:
814                 yaffs_VerifySymlink(obj);
815                 break;
816         case YAFFS_OBJECT_TYPE_DIRECTORY:
817                 yaffs_VerifyDirectory(obj);
818                 break;
819         case YAFFS_OBJECT_TYPE_HARDLINK:
820                 yaffs_VerifyHardLink(obj);
821                 break;
822         case YAFFS_OBJECT_TYPE_SPECIAL:
823                 yaffs_VerifySpecial(obj);
824                 break;
825         case YAFFS_OBJECT_TYPE_UNKNOWN:
826         default:
827                 T(YAFFS_TRACE_VERIFY,
828                 (TSTR("Obj %d has illegaltype %d"TENDSTR),
829                 obj->objectId, obj->variantType));
830                 break;
831         }
832 }
833
834 static void yaffs_VerifyObjects(yaffs_Device *dev)
835 {
836         yaffs_Object *obj;
837         int i;
838         struct ylist_head *lh;
839
840         if (yaffs_SkipVerification(dev))
841                 return;
842
843         /* Iterate through the objects in each hash entry */
844
845         for (i = 0; i <  YAFFS_NOBJECT_BUCKETS; i++) {
846                 ylist_for_each(lh, &dev->objectBucket[i].list) {
847                         if (lh) {
848                                 obj = ylist_entry(lh, yaffs_Object, hashLink);
849                                 yaffs_VerifyObject(obj);
850                         }
851                 }
852         }
853 }
854
855
856 /*
857  *  Simple hash function. Needs to have a reasonable spread
858  */
859
860 static Y_INLINE int yaffs_HashFunction(int n)
861 {
862         n = abs(n);
863         return n % YAFFS_NOBJECT_BUCKETS;
864 }
865
866 /*
867  * Access functions to useful fake objects.
868  * Note that root might have a presence in NAND if permissions are set.
869  */
870
871 yaffs_Object *yaffs_Root(yaffs_Device *dev)
872 {
873         return dev->rootDir;
874 }
875
876 yaffs_Object *yaffs_LostNFound(yaffs_Device *dev)
877 {
878         return dev->lostNFoundDir;
879 }
880
881
882 /*
883  *  Erased NAND checking functions
884  */
885
886 int yaffs_CheckFF(__u8 *buffer, int nBytes)
887 {
888         /* Horrible, slow implementation */
889         while (nBytes--) {
890                 if (*buffer != 0xFF)
891                         return 0;
892                 buffer++;
893         }
894         return 1;
895 }
896
897 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
898                                 int chunkInNAND)
899 {
900         int retval = YAFFS_OK;
901         __u8 *data = yaffs_GetTempBuffer(dev, __LINE__);
902         yaffs_ExtendedTags tags;
903         int result;
904
905         result = yaffs_ReadChunkWithTagsFromNAND(dev, chunkInNAND, data, &tags);
906
907         if (tags.eccResult > YAFFS_ECC_RESULT_NO_ERROR)
908                 retval = YAFFS_FAIL;
909
910         if (!yaffs_CheckFF(data, dev->nDataBytesPerChunk) || tags.chunkUsed) {
911                 T(YAFFS_TRACE_NANDACCESS,
912                   (TSTR("Chunk %d not erased" TENDSTR), chunkInNAND));
913                 retval = YAFFS_FAIL;
914         }
915
916         yaffs_ReleaseTempBuffer(dev, data, __LINE__);
917
918         return retval;
919
920 }
921
922
923 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
924                                         int chunkInNAND,
925                                         const __u8 *data,
926                                         yaffs_ExtendedTags *tags)
927 {
928         int retval = YAFFS_OK;
929         yaffs_ExtendedTags tempTags;
930         __u8 *buffer = yaffs_GetTempBuffer(dev,__LINE__);
931         int result;
932         
933         result = yaffs_ReadChunkWithTagsFromNAND(dev,chunkInNAND,buffer,&tempTags);
934         if(memcmp(buffer,data,dev->nDataBytesPerChunk) ||
935                 tempTags.objectId != tags->objectId ||
936                 tempTags.chunkId  != tags->chunkId ||
937                 tempTags.byteCount != tags->byteCount)
938                 retval = YAFFS_FAIL;
939
940         yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
941
942         return retval;
943 }
944
945 static int yaffs_WriteNewChunkWithTagsToNAND(struct yaffs_DeviceStruct *dev,
946                                         const __u8 *data,
947                                         yaffs_ExtendedTags *tags,
948                                         int useReserve)
949 {
950         int attempts = 0;
951         int writeOk = 0;
952         int chunk;
953
954         yaffs_InvalidateCheckpoint(dev);
955
956         do {
957                 yaffs_BlockInfo *bi = 0;
958                 int erasedOk = 0;
959
960                 chunk = yaffs_AllocateChunk(dev, useReserve, &bi);
961                 if (chunk < 0) {
962                         /* no space */
963                         break;
964                 }
965
966                 /* First check this chunk is erased, if it needs
967                  * checking.  The checking policy (unless forced
968                  * always on) is as follows:
969                  *
970                  * Check the first page we try to write in a block.
971                  * If the check passes then we don't need to check any
972                  * more.        If the check fails, we check again...
973                  * If the block has been erased, we don't need to check.
974                  *
975                  * However, if the block has been prioritised for gc,
976                  * then we think there might be something odd about
977                  * this block and stop using it.
978                  *
979                  * Rationale: We should only ever see chunks that have
980                  * not been erased if there was a partially written
981                  * chunk due to power loss.  This checking policy should
982                  * catch that case with very few checks and thus save a
983                  * lot of checks that are most likely not needed.
984                  *
985                  * Mods to the above
986                  * If an erase check fails or the write fails we skip the 
987                  * rest of the block.
988                  */
989
990                 /* let's give it a try */
991                 attempts++;
992
993 #ifdef CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED
994                 bi->skipErasedCheck = 0;
995 #endif
996                 if (!bi->skipErasedCheck) {
997                         erasedOk = yaffs_CheckChunkErased(dev, chunk);
998                         if (erasedOk != YAFFS_OK) {
999                                 T(YAFFS_TRACE_ERROR,
1000                                 (TSTR("**>> yaffs chunk %d was not erased"
1001                                 TENDSTR), chunk));
1002
1003                                 /* If not erased, delete this one,
1004                                  * skip rest of block and
1005                                  * try another chunk */
1006                                  yaffs_DeleteChunk(dev,chunk,1,__LINE__);
1007                                  yaffs_SkipRestOfBlock(dev);
1008                                 continue;
1009                         }
1010                 }
1011
1012                 writeOk = yaffs_WriteChunkWithTagsToNAND(dev, chunk,
1013                                 data, tags);
1014
1015                 if(!bi->skipErasedCheck)
1016                         writeOk = yaffs_VerifyChunkWritten(dev, chunk, data, tags);
1017
1018                 if (writeOk != YAFFS_OK) {
1019                         /* Clean up aborted write, skip to next block and
1020                          * try another chunk */
1021                         yaffs_HandleWriteChunkError(dev, chunk, erasedOk);
1022                         continue;
1023                 }
1024
1025                 bi->skipErasedCheck = 1;
1026
1027                 /* Copy the data into the robustification buffer */
1028                 yaffs_HandleWriteChunkOk(dev, chunk, data, tags);
1029
1030         } while (writeOk != YAFFS_OK &&
1031                 (yaffs_wr_attempts <= 0 || attempts <= yaffs_wr_attempts));
1032
1033         if (!writeOk)
1034                 chunk = -1;
1035
1036         if (attempts > 1) {
1037                 T(YAFFS_TRACE_ERROR,
1038                         (TSTR("**>> yaffs write required %d attempts" TENDSTR),
1039                         attempts));
1040
1041                 dev->nRetriedWrites += (attempts - 1);
1042         }
1043
1044         return chunk;
1045 }
1046
1047 /*
1048  * Block retiring for handling a broken block.
1049  */
1050
1051 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND)
1052 {
1053         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
1054
1055         yaffs_InvalidateCheckpoint(dev);
1056
1057         if (yaffs_MarkBlockBad(dev, blockInNAND) != YAFFS_OK) {
1058                 if (yaffs_EraseBlockInNAND(dev, blockInNAND) != YAFFS_OK) {
1059                         T(YAFFS_TRACE_ALWAYS, (TSTR(
1060                                 "yaffs: Failed to mark bad and erase block %d"
1061                                 TENDSTR), blockInNAND));
1062                 } else {
1063                         yaffs_ExtendedTags tags;
1064                         int chunkId = blockInNAND * dev->param.nChunksPerBlock;
1065
1066                         __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
1067
1068                         memset(buffer, 0xff, dev->nDataBytesPerChunk);
1069                         yaffs_InitialiseTags(&tags);
1070                         tags.sequenceNumber = YAFFS_SEQUENCE_BAD_BLOCK;
1071                         if (dev->param.writeChunkWithTagsToNAND(dev, chunkId -
1072                                 dev->chunkOffset, buffer, &tags) != YAFFS_OK)
1073                                 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Failed to "
1074                                         TCONT("write bad block marker to block %d")
1075                                         TENDSTR), blockInNAND));
1076
1077                         yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
1078                 }
1079         }
1080
1081         bi->blockState = YAFFS_BLOCK_STATE_DEAD;
1082         bi->gcPrioritise = 0;
1083         bi->needsRetiring = 0;
1084
1085         dev->nRetiredBlocks++;
1086 }
1087
1088 /*
1089  * Functions for robustisizing TODO
1090  *
1091  */
1092
1093 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
1094                                 const __u8 *data,
1095                                 const yaffs_ExtendedTags *tags)
1096 {
1097 }
1098
1099 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
1100                                 const yaffs_ExtendedTags *tags)
1101 {
1102 }
1103
1104 void yaffs_HandleChunkError(yaffs_Device *dev, yaffs_BlockInfo *bi)
1105 {
1106         if (!bi->gcPrioritise) {
1107                 bi->gcPrioritise = 1;
1108                 dev->hasPendingPrioritisedGCs = 1;
1109                 bi->chunkErrorStrikes++;
1110
1111                 if (bi->chunkErrorStrikes > 3) {
1112                         bi->needsRetiring = 1; /* Too many stikes, so retire this */
1113                         T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Block struck out" TENDSTR)));
1114
1115                 }
1116         }
1117 }
1118
1119 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
1120                 int erasedOk)
1121 {
1122         int blockInNAND = chunkInNAND / dev->param.nChunksPerBlock;
1123         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
1124
1125         yaffs_HandleChunkError(dev, bi);
1126
1127         if (erasedOk) {
1128                 /* Was an actual write failure, so mark the block for retirement  */
1129                 bi->needsRetiring = 1;
1130                 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
1131                   (TSTR("**>> Block %d needs retiring" TENDSTR), blockInNAND));
1132         }
1133
1134         /* Delete the chunk */
1135         yaffs_DeleteChunk(dev, chunkInNAND, 1, __LINE__);
1136         yaffs_SkipRestOfBlock(dev);
1137 }
1138
1139
1140 /*---------------- Name handling functions ------------*/
1141
1142 static __u16 yaffs_CalcNameSum(const YCHAR *name)
1143 {
1144         __u16 sum = 0;
1145         __u16 i = 1;
1146
1147         const YUCHAR *bname = (const YUCHAR *) name;
1148         if (bname) {
1149                 while ((*bname) && (i < (YAFFS_MAX_NAME_LENGTH/2))) {
1150
1151 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
1152                         sum += yaffs_toupper(*bname) * i;
1153 #else
1154                         sum += (*bname) * i;
1155 #endif
1156                         i++;
1157                         bname++;
1158                 }
1159         }
1160         return sum;
1161 }
1162
1163 static void yaffs_SetObjectName(yaffs_Object *obj, const YCHAR *name)
1164 {
1165 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
1166         memset(obj->shortName, 0, sizeof(YCHAR) * (YAFFS_SHORT_NAME_LENGTH+1));
1167         if (name && yaffs_strnlen(name,YAFFS_SHORT_NAME_LENGTH+1) <= YAFFS_SHORT_NAME_LENGTH)
1168                 yaffs_strcpy(obj->shortName, name);
1169         else
1170                 obj->shortName[0] = _Y('\0');
1171 #endif
1172         obj->sum = yaffs_CalcNameSum(name);
1173 }
1174
1175 /*-------------------- TNODES -------------------
1176
1177  * List of spare tnodes
1178  * The list is hooked together using the first pointer
1179  * in the tnode.
1180  */
1181
1182 /* yaffs_CreateTnodes creates a bunch more tnodes and
1183  * adds them to the tnode free list.
1184  * Don't use this function directly
1185  */
1186 static Y_INLINE int yaffs_CalcTnodeSize(yaffs_Device *dev)
1187 {
1188         int tnodeSize;
1189         /* Calculate the tnode size in bytes for variable width tnode support.
1190          * Must be a multiple of 32-bits  */
1191         tnodeSize = (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8;
1192
1193         if (tnodeSize < sizeof(yaffs_Tnode))
1194                 tnodeSize = sizeof(yaffs_Tnode);
1195         return tnodeSize;
1196 }
1197
1198 static int yaffs_CreateTnodes(yaffs_Device *dev, int nTnodes)
1199 {
1200         int i;
1201         int tnodeSize = yaffs_CalcTnodeSize(dev);
1202         yaffs_Tnode *newTnodes;
1203         __u8 *mem;
1204         yaffs_Tnode *curr;
1205         yaffs_Tnode *next;
1206         yaffs_TnodeList *tnl;
1207
1208         if (nTnodes < 1)
1209                 return YAFFS_OK;
1210
1211
1212         /* make these things */
1213
1214         newTnodes = YMALLOC(nTnodes * tnodeSize);
1215         mem = (__u8 *)newTnodes;
1216
1217         if (!newTnodes) {
1218                 T(YAFFS_TRACE_ERROR,
1219                         (TSTR("yaffs: Could not allocate Tnodes" TENDSTR)));
1220                 return YAFFS_FAIL;
1221         }
1222
1223         /* Hook them into the free list */
1224 #if 0
1225         for (i = 0; i < nTnodes - 1; i++) {
1226                 newTnodes[i].internal[0] = &newTnodes[i + 1];
1227 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1228                 newTnodes[i].internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1229 #endif
1230         }
1231
1232         newTnodes[nTnodes - 1].internal[0] = dev->freeTnodes;
1233 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1234         newTnodes[nTnodes - 1].internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1235 #endif
1236         dev->freeTnodes = newTnodes;
1237 #else
1238         /* New hookup for wide tnodes */
1239         for (i = 0; i < nTnodes - 1; i++) {
1240                 curr = (yaffs_Tnode *) &mem[i * tnodeSize];
1241                 next = (yaffs_Tnode *) &mem[(i+1) * tnodeSize];
1242                 curr->internal[0] = next;
1243         }
1244
1245         curr = (yaffs_Tnode *) &mem[(nTnodes - 1) * tnodeSize];
1246         curr->internal[0] = dev->freeTnodes;
1247         dev->freeTnodes = (yaffs_Tnode *)mem;
1248
1249 #endif
1250
1251
1252         dev->nFreeTnodes += nTnodes;
1253         dev->nTnodesCreated += nTnodes;
1254
1255         /* Now add this bunch of tnodes to a list for freeing up.
1256          * NB If we can't add this to the management list it isn't fatal
1257          * but it just means we can't free this bunch of tnodes later.
1258          */
1259
1260         tnl = YMALLOC(sizeof(yaffs_TnodeList));
1261         if (!tnl) {
1262                 T(YAFFS_TRACE_ERROR,
1263                   (TSTR
1264                    ("yaffs: Could not add tnodes to management list" TENDSTR)));
1265                    return YAFFS_FAIL;
1266         } else {
1267                 tnl->tnodes = newTnodes;
1268                 tnl->next = dev->allocatedTnodeList;
1269                 dev->allocatedTnodeList = tnl;
1270         }
1271
1272         T(YAFFS_TRACE_ALLOCATE, (TSTR("yaffs: Tnodes added" TENDSTR)));
1273
1274         return YAFFS_OK;
1275 }
1276
1277 /* GetTnode gets us a clean tnode. Tries to make allocate more if we run out */
1278
1279 static yaffs_Tnode *yaffs_GetTnodeRaw(yaffs_Device *dev)
1280 {
1281         yaffs_Tnode *tn = NULL;
1282
1283 #ifdef CONFIG_YAFFS_VALGRIND_TEST
1284         tn = YMALLOC(yaffs_CalcTnodeSize(dev));
1285         if(tn)
1286                 dev->nTnodesCreated++;
1287 #else
1288         /* If there are none left make more */
1289         if (!dev->freeTnodes)
1290                 yaffs_CreateTnodes(dev, YAFFS_ALLOCATION_NTNODES);
1291
1292         if (dev->freeTnodes) {
1293                 tn = dev->freeTnodes;
1294 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1295                 if (tn->internal[YAFFS_NTNODES_INTERNAL] != (void *)1) {
1296                         /* Hoosterman, this thing looks like it isn't in the list */
1297                         T(YAFFS_TRACE_ALWAYS,
1298                           (TSTR("yaffs: Tnode list bug 1" TENDSTR)));
1299                 }
1300 #endif
1301                 dev->freeTnodes = dev->freeTnodes->internal[0];
1302                 dev->nFreeTnodes--;
1303         }
1304 #endif
1305         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1306
1307         return tn;
1308 }
1309
1310 static yaffs_Tnode *yaffs_GetTnode(yaffs_Device *dev)
1311 {
1312         yaffs_Tnode *tn = yaffs_GetTnodeRaw(dev);
1313         int tnodeSize = yaffs_CalcTnodeSize(dev);
1314
1315         if (tn)
1316                 memset(tn, 0, tnodeSize);
1317
1318         return tn;
1319 }
1320
1321 /* FreeTnode frees up a tnode and puts it back on the free list */
1322 static void yaffs_FreeTnode(yaffs_Device *dev, yaffs_Tnode *tn)
1323 {
1324         if (tn) {
1325 #ifdef CONFIG_YAFFS_VALGRIND_TEST
1326                 YFREE(tn);
1327                 dev->nTnodesCreated--;
1328 #else
1329 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1330                 if (tn->internal[YAFFS_NTNODES_INTERNAL] != 0) {
1331                         /* Hoosterman, this thing looks like it is already in the list */
1332                         T(YAFFS_TRACE_ALWAYS,
1333                           (TSTR("yaffs: Tnode list bug 2" TENDSTR)));
1334                 }
1335                 tn->internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1336 #endif
1337                 tn->internal[0] = dev->freeTnodes;
1338                 dev->freeTnodes = tn;
1339                 dev->nFreeTnodes++;
1340 #endif
1341         }
1342         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1343 }
1344
1345 static void yaffs_DeinitialiseTnodes(yaffs_Device *dev)
1346 {
1347         /* Free the list of allocated tnodes */
1348         yaffs_TnodeList *tmp;
1349
1350         while (dev->allocatedTnodeList) {
1351                 tmp = dev->allocatedTnodeList->next;
1352
1353                 YFREE(dev->allocatedTnodeList->tnodes);
1354                 YFREE(dev->allocatedTnodeList);
1355                 dev->allocatedTnodeList = tmp;
1356
1357         }
1358
1359         dev->freeTnodes = NULL;
1360         dev->nFreeTnodes = 0;
1361         dev->nTnodesCreated = 0;
1362 }
1363
1364 static void yaffs_InitialiseTnodes(yaffs_Device *dev)
1365 {
1366         dev->allocatedTnodeList = NULL;
1367         dev->freeTnodes = NULL;
1368         dev->nFreeTnodes = 0;
1369         dev->nTnodesCreated = 0;
1370 }
1371
1372
1373 void yaffs_LoadLevel0Tnode(yaffs_Device *dev, yaffs_Tnode *tn, unsigned pos,
1374                 unsigned val)
1375 {
1376         __u32 *map = (__u32 *)tn;
1377         __u32 bitInMap;
1378         __u32 bitInWord;
1379         __u32 wordInMap;
1380         __u32 mask;
1381
1382         pos &= YAFFS_TNODES_LEVEL0_MASK;
1383         val >>= dev->chunkGroupBits;
1384
1385         bitInMap = pos * dev->tnodeWidth;
1386         wordInMap = bitInMap / 32;
1387         bitInWord = bitInMap & (32 - 1);
1388
1389         mask = dev->tnodeMask << bitInWord;
1390
1391         map[wordInMap] &= ~mask;
1392         map[wordInMap] |= (mask & (val << bitInWord));
1393
1394         if (dev->tnodeWidth > (32 - bitInWord)) {
1395                 bitInWord = (32 - bitInWord);
1396                 wordInMap++;;
1397                 mask = dev->tnodeMask >> (/*dev->tnodeWidth -*/ bitInWord);
1398                 map[wordInMap] &= ~mask;
1399                 map[wordInMap] |= (mask & (val >> bitInWord));
1400         }
1401 }
1402
1403 static __u32 yaffs_GetChunkGroupBase(yaffs_Device *dev, yaffs_Tnode *tn,
1404                 unsigned pos)
1405 {
1406         __u32 *map = (__u32 *)tn;
1407         __u32 bitInMap;
1408         __u32 bitInWord;
1409         __u32 wordInMap;
1410         __u32 val;
1411
1412         pos &= YAFFS_TNODES_LEVEL0_MASK;
1413
1414         bitInMap = pos * dev->tnodeWidth;
1415         wordInMap = bitInMap / 32;
1416         bitInWord = bitInMap & (32 - 1);
1417
1418         val = map[wordInMap] >> bitInWord;
1419
1420         if      (dev->tnodeWidth > (32 - bitInWord)) {
1421                 bitInWord = (32 - bitInWord);
1422                 wordInMap++;;
1423                 val |= (map[wordInMap] << bitInWord);
1424         }
1425
1426         val &= dev->tnodeMask;
1427         val <<= dev->chunkGroupBits;
1428
1429         return val;
1430 }
1431
1432 /* ------------------- End of individual tnode manipulation -----------------*/
1433
1434 /* ---------Functions to manipulate the look-up tree (made up of tnodes) ------
1435  * The look up tree is represented by the top tnode and the number of topLevel
1436  * in the tree. 0 means only the level 0 tnode is in the tree.
1437  */
1438
1439 /* FindLevel0Tnode finds the level 0 tnode, if one exists. */
1440 static yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,
1441                                         yaffs_FileStructure *fStruct,
1442                                         __u32 chunkId)
1443 {
1444         yaffs_Tnode *tn = fStruct->top;
1445         __u32 i;
1446         int requiredTallness;
1447         int level = fStruct->topLevel;
1448
1449         /* Check sane level and chunk Id */
1450         if (level < 0 || level > YAFFS_TNODES_MAX_LEVEL)
1451                 return NULL;
1452
1453         if (chunkId > YAFFS_MAX_CHUNK_ID)
1454                 return NULL;
1455
1456         /* First check we're tall enough (ie enough topLevel) */
1457
1458         i = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
1459         requiredTallness = 0;
1460         while (i) {
1461                 i >>= YAFFS_TNODES_INTERNAL_BITS;
1462                 requiredTallness++;
1463         }
1464
1465         if (requiredTallness > fStruct->topLevel)
1466                 return NULL; /* Not tall enough, so we can't find it */
1467
1468         /* Traverse down to level 0 */
1469         while (level > 0 && tn) {
1470                 tn = tn->internal[(chunkId >>
1471                         (YAFFS_TNODES_LEVEL0_BITS +
1472                                 (level - 1) *
1473                                 YAFFS_TNODES_INTERNAL_BITS)) &
1474                         YAFFS_TNODES_INTERNAL_MASK];
1475                 level--;
1476         }
1477
1478         return tn;
1479 }
1480
1481 /* AddOrFindLevel0Tnode finds the level 0 tnode if it exists, otherwise first expands the tree.
1482  * This happens in two steps:
1483  *  1. If the tree isn't tall enough, then make it taller.
1484  *  2. Scan down the tree towards the level 0 tnode adding tnodes if required.
1485  *
1486  * Used when modifying the tree.
1487  *
1488  *  If the tn argument is NULL, then a fresh tnode will be added otherwise the specified tn will
1489  *  be plugged into the ttree.
1490  */
1491
1492 static yaffs_Tnode *yaffs_AddOrFindLevel0Tnode(yaffs_Device *dev,
1493                                         yaffs_FileStructure *fStruct,
1494                                         __u32 chunkId,
1495                                         yaffs_Tnode *passedTn)
1496 {
1497         int requiredTallness;
1498         int i;
1499         int l;
1500         yaffs_Tnode *tn;
1501
1502         __u32 x;
1503
1504
1505         /* Check sane level and page Id */
1506         if (fStruct->topLevel < 0 || fStruct->topLevel > YAFFS_TNODES_MAX_LEVEL)
1507                 return NULL;
1508
1509         if (chunkId > YAFFS_MAX_CHUNK_ID)
1510                 return NULL;
1511
1512         /* First check we're tall enough (ie enough topLevel) */
1513
1514         x = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
1515         requiredTallness = 0;
1516         while (x) {
1517                 x >>= YAFFS_TNODES_INTERNAL_BITS;
1518                 requiredTallness++;
1519         }
1520
1521
1522         if (requiredTallness > fStruct->topLevel) {
1523                 /* Not tall enough, gotta make the tree taller */
1524                 for (i = fStruct->topLevel; i < requiredTallness; i++) {
1525
1526                         tn = yaffs_GetTnode(dev);
1527
1528                         if (tn) {
1529                                 tn->internal[0] = fStruct->top;
1530                                 fStruct->top = tn;
1531                                 fStruct->topLevel++;
1532                         } else {
1533                                 T(YAFFS_TRACE_ERROR,
1534                                         (TSTR("yaffs: no more tnodes" TENDSTR)));
1535                                 return NULL;
1536                         }
1537                 }
1538         }
1539
1540         /* Traverse down to level 0, adding anything we need */
1541
1542         l = fStruct->topLevel;
1543         tn = fStruct->top;
1544
1545         if (l > 0) {
1546                 while (l > 0 && tn) {
1547                         x = (chunkId >>
1548                              (YAFFS_TNODES_LEVEL0_BITS +
1549                               (l - 1) * YAFFS_TNODES_INTERNAL_BITS)) &
1550                             YAFFS_TNODES_INTERNAL_MASK;
1551
1552
1553                         if ((l > 1) && !tn->internal[x]) {
1554                                 /* Add missing non-level-zero tnode */
1555                                 tn->internal[x] = yaffs_GetTnode(dev);
1556                                 if(!tn->internal[x])
1557                                         return NULL;
1558                         } else if (l == 1) {
1559                                 /* Looking from level 1 at level 0 */
1560                                 if (passedTn) {
1561                                         /* If we already have one, then release it.*/
1562                                         if (tn->internal[x])
1563                                                 yaffs_FreeTnode(dev, tn->internal[x]);
1564                                         tn->internal[x] = passedTn;
1565
1566                                 } else if (!tn->internal[x]) {
1567                                         /* Don't have one, none passed in */
1568                                         tn->internal[x] = yaffs_GetTnode(dev);
1569                                         if(!tn->internal[x])
1570                                                 return NULL;
1571                                 }
1572                         }
1573
1574                         tn = tn->internal[x];
1575                         l--;
1576                 }
1577         } else {
1578                 /* top is level 0 */
1579                 if (passedTn) {
1580                         memcpy(tn, passedTn, (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8);
1581                         yaffs_FreeTnode(dev, passedTn);
1582                 }
1583         }
1584
1585         return tn;
1586 }
1587
1588 static int yaffs_FindChunkInGroup(yaffs_Device *dev, int theChunk,
1589                                 yaffs_ExtendedTags *tags, int objectId,
1590                                 int chunkInInode)
1591 {
1592         int j;
1593
1594         for (j = 0; theChunk && j < dev->chunkGroupSize; j++) {
1595                 if (yaffs_CheckChunkBit(dev, theChunk / dev->param.nChunksPerBlock,
1596                                 theChunk % dev->param.nChunksPerBlock)) {
1597                         
1598                         if(dev->chunkGroupSize == 1)
1599                                 return theChunk;
1600                         else {
1601                                 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL,
1602                                                                 tags);
1603                                 if (yaffs_TagsMatch(tags, objectId, chunkInInode)) {
1604                                         /* found it; */
1605                                         return theChunk;
1606                                 }
1607                         }
1608                 }
1609                 theChunk++;
1610         }
1611         return -1;
1612 }
1613
1614
1615 /* DeleteWorker scans backwards through the tnode tree and deletes all the
1616  * chunks and tnodes in the file
1617  * Returns 1 if the tree was deleted.
1618  * Returns 0 if it stopped early due to hitting the limit and the delete is incomplete.
1619  */
1620
1621 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level,
1622                               int chunkOffset, int *limit)
1623 {
1624         int i;
1625         int chunkInInode;
1626         int theChunk;
1627         yaffs_ExtendedTags tags;
1628         int foundChunk;
1629         yaffs_Device *dev = in->myDev;
1630
1631         int allDone = 1;
1632
1633         if (tn) {
1634                 if (level > 0) {
1635                         for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
1636                              i--) {
1637                                 if (tn->internal[i]) {
1638                                         if (limit && (*limit) < 0) {
1639                                                 allDone = 0;
1640                                         } else {
1641                                                 allDone =
1642                                                         yaffs_DeleteWorker(in,
1643                                                                 tn->
1644                                                                 internal
1645                                                                 [i],
1646                                                                 level -
1647                                                                 1,
1648                                                                 (chunkOffset
1649                                                                         <<
1650                                                                         YAFFS_TNODES_INTERNAL_BITS)
1651                                                                 + i,
1652                                                                 limit);
1653                                         }
1654                                         if (allDone) {
1655                                                 yaffs_FreeTnode(dev,
1656                                                                 tn->
1657                                                                 internal[i]);
1658                                                 tn->internal[i] = NULL;
1659                                         }
1660                                 }
1661                         }
1662                         return (allDone) ? 1 : 0;
1663                 } else if (level == 0) {
1664                         int hitLimit = 0;
1665
1666                         for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0 && !hitLimit;
1667                                         i--) {
1668                                 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
1669                                 if (theChunk) {
1670
1671                                         chunkInInode = (chunkOffset <<
1672                                                 YAFFS_TNODES_LEVEL0_BITS) + i;
1673
1674                                         foundChunk =
1675                                                 yaffs_FindChunkInGroup(dev,
1676                                                                 theChunk,
1677                                                                 &tags,
1678                                                                 in->objectId,
1679                                                                 chunkInInode);
1680
1681                                         if (foundChunk > 0) {
1682                                                 yaffs_DeleteChunk(dev,
1683                                                                   foundChunk, 1,
1684                                                                   __LINE__);
1685                                                 in->nDataChunks--;
1686                                                 if (limit) {
1687                                                         *limit = *limit - 1;
1688                                                         if (*limit <= 0)
1689                                                                 hitLimit = 1;
1690                                                 }
1691
1692                                         }
1693
1694                                         yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1695                                 }
1696
1697                         }
1698                         return (i < 0) ? 1 : 0;
1699
1700                 }
1701
1702         }
1703
1704         return 1;
1705
1706 }
1707
1708 static void yaffs_SoftDeleteChunk(yaffs_Device *dev, int chunk)
1709 {
1710         yaffs_BlockInfo *theBlock;
1711
1712         T(YAFFS_TRACE_DELETION, (TSTR("soft delete chunk %d" TENDSTR), chunk));
1713
1714         theBlock = yaffs_GetBlockInfo(dev, chunk / dev->param.nChunksPerBlock);
1715         if (theBlock) {
1716                 theBlock->softDeletions++;
1717                 dev->nFreeChunks++;
1718         }
1719 }
1720
1721 /* SoftDeleteWorker scans backwards through the tnode tree and soft deletes all the chunks in the file.
1722  * All soft deleting does is increment the block's softdelete count and pulls the chunk out
1723  * of the tnode.
1724  * Thus, essentially this is the same as DeleteWorker except that the chunks are soft deleted.
1725  */
1726
1727 static int yaffs_SoftDeleteWorker(yaffs_Object *in, yaffs_Tnode *tn,
1728                                   __u32 level, int chunkOffset)
1729 {
1730         int i;
1731         int theChunk;
1732         int allDone = 1;
1733         yaffs_Device *dev = in->myDev;
1734
1735         if (tn) {
1736                 if (level > 0) {
1737
1738                         for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
1739                              i--) {
1740                                 if (tn->internal[i]) {
1741                                         allDone =
1742                                             yaffs_SoftDeleteWorker(in,
1743                                                                    tn->
1744                                                                    internal[i],
1745                                                                    level - 1,
1746                                                                    (chunkOffset
1747                                                                     <<
1748                                                                     YAFFS_TNODES_INTERNAL_BITS)
1749                                                                    + i);
1750                                         if (allDone) {
1751                                                 yaffs_FreeTnode(dev,
1752                                                                 tn->
1753                                                                 internal[i]);
1754                                                 tn->internal[i] = NULL;
1755                                         } else {
1756                                                 /* Hoosterman... how could this happen? */
1757                                         }
1758                                 }
1759                         }
1760                         return (allDone) ? 1 : 0;
1761                 } else if (level == 0) {
1762
1763                         for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0; i--) {
1764                                 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
1765                                 if (theChunk) {
1766                                         /* Note this does not find the real chunk, only the chunk group.
1767                                          * We make an assumption that a chunk group is not larger than
1768                                          * a block.
1769                                          */
1770                                         yaffs_SoftDeleteChunk(dev, theChunk);
1771                                         yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1772                                 }
1773
1774                         }
1775                         return 1;
1776
1777                 }
1778
1779         }
1780
1781         return 1;
1782
1783 }
1784
1785 static void yaffs_SoftDeleteFile(yaffs_Object *obj)
1786 {
1787         if (obj->deleted &&
1788             obj->variantType == YAFFS_OBJECT_TYPE_FILE && !obj->softDeleted) {
1789                 if (obj->nDataChunks <= 0) {
1790                         /* Empty file with no duplicate object headers, just delete it immediately */
1791                         yaffs_FreeTnode(obj->myDev,
1792                                         obj->variant.fileVariant.top);
1793                         obj->variant.fileVariant.top = NULL;
1794                         T(YAFFS_TRACE_TRACING,
1795                           (TSTR("yaffs: Deleting empty file %d" TENDSTR),
1796                            obj->objectId));
1797                         yaffs_DoGenericObjectDeletion(obj);
1798                 } else {
1799                         yaffs_SoftDeleteWorker(obj,
1800                                                obj->variant.fileVariant.top,
1801                                                obj->variant.fileVariant.
1802                                                topLevel, 0);
1803                         obj->softDeleted = 1;
1804                 }
1805         }
1806 }
1807
1808 /* Pruning removes any part of the file structure tree that is beyond the
1809  * bounds of the file (ie that does not point to chunks).
1810  *
1811  * A file should only get pruned when its size is reduced.
1812  *
1813  * Before pruning, the chunks must be pulled from the tree and the
1814  * level 0 tnode entries must be zeroed out.
1815  * Could also use this for file deletion, but that's probably better handled
1816  * by a special case.
1817  *
1818  * This function is recursive. For levels > 0 the function is called again on
1819  * any sub-tree. For level == 0 we just check if the sub-tree has data.
1820  * If there is no data in a subtree then it is pruned.
1821  */
1822
1823 static yaffs_Tnode *yaffs_PruneWorker(yaffs_Device *dev, yaffs_Tnode *tn,
1824                                 __u32 level, int del0)
1825 {
1826         int i;
1827         int hasData;
1828
1829         if (tn) {
1830                 hasData = 0;
1831
1832                 if(level > 0){
1833                         for (i = 0; i < YAFFS_NTNODES_INTERNAL; i++) {
1834                                 if (tn->internal[i]) {
1835                                         tn->internal[i] =
1836                                                 yaffs_PruneWorker(dev, tn->internal[i],
1837                                                         level - 1,
1838                                                         (i == 0) ? del0 : 1);
1839                                 }
1840
1841                                 if (tn->internal[i])
1842                                         hasData++;
1843                         }
1844                 } else {
1845                         int tnodeSize_u32 = yaffs_CalcTnodeSize(dev)/sizeof(__u32);
1846                         __u32 *map = (__u32 *)tn;
1847
1848                         for(i = 0; !hasData && i < tnodeSize_u32; i++){
1849                                 if(map[i])
1850                                         hasData++;
1851                         }
1852                 }
1853
1854                 if (hasData == 0 && del0) {
1855                         /* Free and return NULL */
1856
1857                         yaffs_FreeTnode(dev, tn);
1858                         tn = NULL;
1859                 }
1860
1861         }
1862
1863         return tn;
1864
1865 }
1866
1867 static int yaffs_PruneFileStructure(yaffs_Device *dev,
1868                                 yaffs_FileStructure *fStruct)
1869 {
1870         int i;
1871         int hasData;
1872         int done = 0;
1873         yaffs_Tnode *tn;
1874
1875         if (fStruct->topLevel > 0) {
1876                 fStruct->top =
1877                     yaffs_PruneWorker(dev, fStruct->top, fStruct->topLevel, 0);
1878
1879                 /* Now we have a tree with all the non-zero branches NULL but the height
1880                  * is the same as it was.
1881                  * Let's see if we can trim internal tnodes to shorten the tree.
1882                  * We can do this if only the 0th element in the tnode is in use
1883                  * (ie all the non-zero are NULL)
1884                  */
1885
1886                 while (fStruct->topLevel && !done) {
1887                         tn = fStruct->top;
1888
1889                         hasData = 0;
1890                         for (i = 1; i < YAFFS_NTNODES_INTERNAL; i++) {
1891                                 if (tn->internal[i])
1892                                         hasData++;
1893                         }
1894
1895                         if (!hasData) {
1896                                 fStruct->top = tn->internal[0];
1897                                 fStruct->topLevel--;
1898                                 yaffs_FreeTnode(dev, tn);
1899                         } else {
1900                                 done = 1;
1901                         }
1902                 }
1903         }
1904
1905         return YAFFS_OK;
1906 }
1907
1908 /*-------------------- End of File Structure functions.-------------------*/
1909
1910 /* yaffs_CreateFreeObjects creates a bunch more objects and
1911  * adds them to the object free list.
1912  */
1913 static int yaffs_CreateFreeObjects(yaffs_Device *dev, int nObjects)
1914 {
1915         int i;
1916         yaffs_Object *newObjects;
1917         yaffs_ObjectList *list;
1918
1919         if (nObjects < 1)
1920                 return YAFFS_OK;
1921
1922         /* make these things */
1923         newObjects = YMALLOC(nObjects * sizeof(yaffs_Object));
1924         list = YMALLOC(sizeof(yaffs_ObjectList));
1925
1926         if (!newObjects || !list) {
1927                 if (newObjects){
1928                         YFREE(newObjects);
1929                         newObjects = NULL;
1930                 }
1931                 if (list){
1932                         YFREE(list);
1933                         list = NULL;
1934                 }
1935                 T(YAFFS_TRACE_ALLOCATE,
1936                   (TSTR("yaffs: Could not allocate more objects" TENDSTR)));
1937                 return YAFFS_FAIL;
1938         }
1939
1940         /* Hook them into the free list */
1941         for (i = 0; i < nObjects - 1; i++) {
1942                 newObjects[i].siblings.next =
1943                                 (struct ylist_head *)(&newObjects[i + 1]);
1944         }
1945
1946         newObjects[nObjects - 1].siblings.next = (void *)dev->freeObjects;
1947         dev->freeObjects = newObjects;
1948         dev->nFreeObjects += nObjects;
1949         dev->nObjectsCreated += nObjects;
1950
1951         /* Now add this bunch of Objects to a list for freeing up. */
1952
1953         list->objects = newObjects;
1954         list->next = dev->allocatedObjectList;
1955         dev->allocatedObjectList = list;
1956
1957         return YAFFS_OK;
1958 }
1959
1960
1961 /* AllocateEmptyObject gets us a clean Object. Tries to make allocate more if we run out */
1962 static yaffs_Object *yaffs_AllocateEmptyObject(yaffs_Device *dev)
1963 {
1964         yaffs_Object *tn = NULL;
1965
1966 #ifdef CONFIG_YAFFS_VALGRIND_TEST
1967         tn = YMALLOC(sizeof(yaffs_Object));
1968         if(tn)
1969                 dev->nObjectsCreated++;
1970 #else
1971         /* If there are none left make more */
1972         if (!dev->freeObjects)
1973                 yaffs_CreateFreeObjects(dev, YAFFS_ALLOCATION_NOBJECTS);
1974
1975         if (dev->freeObjects) {
1976                 tn = dev->freeObjects;
1977                 dev->freeObjects =
1978                         (yaffs_Object *) (dev->freeObjects->siblings.next);
1979                 dev->nFreeObjects--;
1980         }
1981 #endif
1982         if (tn) {
1983                 /* Now sweeten it up... */
1984
1985                 memset(tn, 0, sizeof(yaffs_Object));
1986                 tn->beingCreated = 1;
1987
1988                 tn->myDev = dev;
1989                 tn->hdrChunk = 0;
1990                 tn->variantType = YAFFS_OBJECT_TYPE_UNKNOWN;
1991                 YINIT_LIST_HEAD(&(tn->hardLinks));
1992                 YINIT_LIST_HEAD(&(tn->hashLink));
1993                 YINIT_LIST_HEAD(&tn->siblings);
1994
1995
1996                 /* Now make the directory sane */
1997                 if (dev->rootDir) {
1998                         tn->parent = dev->rootDir;
1999                         ylist_add(&(tn->siblings), &dev->rootDir->variant.directoryVariant.children);
2000                 }
2001
2002                 /* Add it to the lost and found directory.
2003                  * NB Can't put root or lostNFound in lostNFound so
2004                  * check if lostNFound exists first
2005                  */
2006                 if (dev->lostNFoundDir)
2007                         yaffs_AddObjectToDirectory(dev->lostNFoundDir, tn);
2008
2009                 tn->beingCreated = 0;
2010         }
2011
2012         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
2013
2014         return tn;
2015 }
2016
2017 static yaffs_Object *yaffs_CreateFakeDirectory(yaffs_Device *dev, int number,
2018                                                __u32 mode)
2019 {
2020
2021         yaffs_Object *obj =
2022             yaffs_CreateNewObject(dev, number, YAFFS_OBJECT_TYPE_DIRECTORY);
2023         if (obj) {
2024                 obj->fake = 1;          /* it is fake so it might have no NAND presence... */
2025                 obj->renameAllowed = 0; /* ... and we're not allowed to rename it... */
2026                 obj->unlinkAllowed = 0; /* ... or unlink it */
2027                 obj->deleted = 0;
2028                 obj->unlinked = 0;
2029                 obj->yst_mode = mode;
2030                 obj->myDev = dev;
2031                 obj->hdrChunk = 0;      /* Not a valid chunk. */
2032         }
2033
2034         return obj;
2035
2036 }
2037
2038 static void yaffs_UnhashObject(yaffs_Object *tn)
2039 {
2040         int bucket;
2041         yaffs_Device *dev = tn->myDev;
2042
2043         /* If it is still linked into the bucket list, free from the list */
2044         if (!ylist_empty(&tn->hashLink)) {
2045                 ylist_del_init(&tn->hashLink);
2046                 bucket = yaffs_HashFunction(tn->objectId);
2047                 dev->objectBucket[bucket].count--;
2048         }
2049 }
2050
2051 /*  FreeObject frees up a Object and puts it back on the free list */
2052 static void yaffs_FreeObject(yaffs_Object *tn)
2053 {
2054         yaffs_Device *dev = tn->myDev;
2055
2056         T(YAFFS_TRACE_OS, (TSTR("FreeObject %p inode %p"TENDSTR), tn, tn->myInode));
2057
2058         if (!tn)
2059                 YBUG();
2060         if (tn->parent)
2061                 YBUG();
2062         if (!ylist_empty(&tn->siblings))
2063                 YBUG();
2064
2065
2066         if (tn->myInode) {
2067                 /* We're still hooked up to a cached inode.
2068                  * Don't delete now, but mark for later deletion
2069                  */
2070                 tn->deferedFree = 1;
2071                 return;
2072         }
2073
2074         yaffs_UnhashObject(tn);
2075
2076 #ifdef CONFIG_YAFFS_VALGRIND_TEST
2077         YFREE(tn);
2078         dev->nObjectsCreated--;
2079         tn = NULL;
2080 #else
2081         /* Link into the free list. */
2082         tn->siblings.next = (struct ylist_head *)(dev->freeObjects);
2083         dev->freeObjects = tn;
2084         dev->nFreeObjects++;
2085 #endif
2086         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
2087 }
2088
2089
2090 void yaffs_HandleDeferedFree(yaffs_Object *obj)
2091 {
2092         if (obj->deferedFree)
2093                 yaffs_FreeObject(obj);
2094 }
2095
2096
2097 static void yaffs_DeinitialiseObjects(yaffs_Device *dev)
2098 {
2099         /* Free the list of allocated Objects */
2100
2101         yaffs_ObjectList *tmp;
2102
2103         while (dev->allocatedObjectList) {
2104                 tmp = dev->allocatedObjectList->next;
2105                 YFREE(dev->allocatedObjectList->objects);
2106                 YFREE(dev->allocatedObjectList);
2107
2108                 dev->allocatedObjectList = tmp;
2109         }
2110
2111         dev->freeObjects = NULL;
2112         dev->nFreeObjects = 0;
2113         dev->nObjectsCreated = 0;
2114 }
2115
2116 static void yaffs_InitialiseObjects(yaffs_Device *dev)
2117 {
2118         int i;
2119
2120         dev->allocatedObjectList = NULL;
2121         dev->freeObjects = NULL;
2122         dev->nFreeObjects = 0;
2123
2124         for (i = 0; i < YAFFS_NOBJECT_BUCKETS; i++) {
2125                 YINIT_LIST_HEAD(&dev->objectBucket[i].list);
2126                 dev->objectBucket[i].count = 0;
2127         }
2128 }
2129
2130 static int yaffs_FindNiceObjectBucket(yaffs_Device *dev)
2131 {
2132         int i;
2133         int l = 999;
2134         int lowest = 999999;
2135
2136
2137         /* Search for the shortest list or one that
2138          * isn't too long.
2139          */
2140
2141         for (i = 0; i < 10 && lowest > 4; i++) {
2142                 dev->bucketFinder++;
2143                 dev->bucketFinder %= YAFFS_NOBJECT_BUCKETS;
2144                 if (dev->objectBucket[dev->bucketFinder].count < lowest) {
2145                         lowest = dev->objectBucket[dev->bucketFinder].count;
2146                         l = dev->bucketFinder;
2147                 }
2148
2149         }
2150
2151         return l;
2152 }
2153
2154 static int yaffs_CreateNewObjectNumber(yaffs_Device *dev)
2155 {
2156         int bucket = yaffs_FindNiceObjectBucket(dev);
2157
2158         /* Now find an object value that has not already been taken
2159          * by scanning the list.
2160          */
2161
2162         int found = 0;
2163         struct ylist_head *i;
2164
2165         __u32 n = (__u32) bucket;
2166
2167         /* yaffs_CheckObjectHashSanity();  */
2168
2169         while (!found) {
2170                 found = 1;
2171                 n += YAFFS_NOBJECT_BUCKETS;
2172                 if (1 || dev->objectBucket[bucket].count > 0) {
2173                         ylist_for_each(i, &dev->objectBucket[bucket].list) {
2174                                 /* If there is already one in the list */
2175                                 if (i && ylist_entry(i, yaffs_Object,
2176                                                 hashLink)->objectId == n) {
2177                                         found = 0;
2178                                 }
2179                         }
2180                 }
2181         }
2182
2183         return n;
2184 }
2185
2186 static void yaffs_HashObject(yaffs_Object *in)
2187 {
2188         int bucket = yaffs_HashFunction(in->objectId);
2189         yaffs_Device *dev = in->myDev;
2190
2191         ylist_add(&in->hashLink, &dev->objectBucket[bucket].list);
2192         dev->objectBucket[bucket].count++;
2193 }
2194
2195 yaffs_Object *yaffs_FindObjectByNumber(yaffs_Device *dev, __u32 number)
2196 {
2197         int bucket = yaffs_HashFunction(number);
2198         struct ylist_head *i;
2199         yaffs_Object *in;
2200
2201         ylist_for_each(i, &dev->objectBucket[bucket].list) {
2202                 /* Look if it is in the list */
2203                 if (i) {
2204                         in = ylist_entry(i, yaffs_Object, hashLink);
2205                         if (in->objectId == number) {
2206
2207                                 /* Don't tell the VFS about this one if it is defered free */
2208                                 if (in->deferedFree)
2209                                         return NULL;
2210
2211                                 return in;
2212                         }
2213                 }
2214         }
2215
2216         return NULL;
2217 }
2218
2219 yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
2220                                     yaffs_ObjectType type)
2221 {
2222         yaffs_Object *theObject=NULL;
2223         yaffs_Tnode *tn = NULL;
2224
2225         if (number < 0)
2226                 number = yaffs_CreateNewObjectNumber(dev);
2227
2228         if (type == YAFFS_OBJECT_TYPE_FILE) {
2229                 tn = yaffs_GetTnode(dev);
2230                 if (!tn)
2231                         return NULL;
2232         }
2233
2234         theObject = yaffs_AllocateEmptyObject(dev);
2235         if (!theObject){
2236                 if(tn)
2237                         yaffs_FreeTnode(dev,tn);
2238                 return NULL;
2239         }
2240
2241
2242         if (theObject) {
2243                 theObject->fake = 0;
2244                 theObject->renameAllowed = 1;
2245                 theObject->unlinkAllowed = 1;
2246                 theObject->objectId = number;
2247                 yaffs_HashObject(theObject);
2248                 theObject->variantType = type;
2249 #ifdef CONFIG_YAFFS_WINCE
2250                 yfsd_WinFileTimeNow(theObject->win_atime);
2251                 theObject->win_ctime[0] = theObject->win_mtime[0] =
2252                     theObject->win_atime[0];
2253                 theObject->win_ctime[1] = theObject->win_mtime[1] =
2254                     theObject->win_atime[1];
2255
2256 #else
2257
2258                 theObject->yst_atime = theObject->yst_mtime =
2259                     theObject->yst_ctime = Y_CURRENT_TIME;
2260 #endif
2261                 switch (type) {
2262                 case YAFFS_OBJECT_TYPE_FILE:
2263                         theObject->variant.fileVariant.fileSize = 0;
2264                         theObject->variant.fileVariant.scannedFileSize = 0;
2265                         theObject->variant.fileVariant.shrinkSize = 0xFFFFFFFF; /* max __u32 */
2266                         theObject->variant.fileVariant.topLevel = 0;
2267                         theObject->variant.fileVariant.top = tn;
2268                         break;
2269                 case YAFFS_OBJECT_TYPE_DIRECTORY:
2270                         YINIT_LIST_HEAD(&theObject->variant.directoryVariant.
2271                                         children);
2272                         break;
2273                 case YAFFS_OBJECT_TYPE_SYMLINK:
2274                 case YAFFS_OBJECT_TYPE_HARDLINK:
2275                 case YAFFS_OBJECT_TYPE_SPECIAL:
2276                         /* No action required */
2277                         break;
2278                 case YAFFS_OBJECT_TYPE_UNKNOWN:
2279                         /* todo this should not happen */
2280                         break;
2281                 }
2282         }
2283
2284         return theObject;
2285 }
2286
2287 static yaffs_Object *yaffs_FindOrCreateObjectByNumber(yaffs_Device *dev,
2288                                                       int number,
2289                                                       yaffs_ObjectType type)
2290 {
2291         yaffs_Object *theObject = NULL;
2292
2293         if (number > 0)
2294                 theObject = yaffs_FindObjectByNumber(dev, number);
2295
2296         if (!theObject)
2297                 theObject = yaffs_CreateNewObject(dev, number, type);
2298
2299         return theObject;
2300
2301 }
2302
2303
2304 static YCHAR *yaffs_CloneString(const YCHAR *str)
2305 {
2306         YCHAR *newStr = NULL;
2307         int len;
2308
2309         if (!str)
2310                 str = _Y("");
2311
2312         len = yaffs_strnlen(str,YAFFS_MAX_ALIAS_LENGTH);
2313         newStr = YMALLOC((len + 1) * sizeof(YCHAR));
2314         if (newStr){
2315                 yaffs_strncpy(newStr, str,len);
2316                 newStr[len] = 0;
2317         }
2318         return newStr;
2319
2320 }
2321
2322 /*
2323  * Mknod (create) a new object.
2324  * equivalentObject only has meaning for a hard link;
2325  * aliasString only has meaning for a symlink.
2326  * rdev only has meaning for devices (a subset of special objects)
2327  */
2328
2329 static yaffs_Object *yaffs_MknodObject(yaffs_ObjectType type,
2330                                        yaffs_Object *parent,
2331                                        const YCHAR *name,
2332                                        __u32 mode,
2333                                        __u32 uid,
2334                                        __u32 gid,
2335                                        yaffs_Object *equivalentObject,
2336                                        const YCHAR *aliasString, __u32 rdev)
2337 {
2338         yaffs_Object *in;
2339         YCHAR *str = NULL;
2340
2341         yaffs_Device *dev = parent->myDev;
2342
2343         /* Check if the entry exists. If it does then fail the call since we don't want a dup.*/
2344         if (yaffs_FindObjectByName(parent, name))
2345                 return NULL;
2346
2347         if (type == YAFFS_OBJECT_TYPE_SYMLINK) {
2348                 str = yaffs_CloneString(aliasString);
2349                 if (!str)
2350                         return NULL;
2351         }
2352
2353         in = yaffs_CreateNewObject(dev, -1, type);
2354
2355         if (!in){
2356                 if(str)
2357                         YFREE(str);
2358                 return NULL;
2359         }
2360
2361
2362
2363
2364
2365         if (in) {
2366                 in->hdrChunk = 0;
2367                 in->valid = 1;
2368                 in->variantType = type;
2369
2370                 in->yst_mode = mode;
2371
2372 #ifdef CONFIG_YAFFS_WINCE
2373                 yfsd_WinFileTimeNow(in->win_atime);
2374                 in->win_ctime[0] = in->win_mtime[0] = in->win_atime[0];
2375                 in->win_ctime[1] = in->win_mtime[1] = in->win_atime[1];
2376
2377 #else
2378                 in->yst_atime = in->yst_mtime = in->yst_ctime = Y_CURRENT_TIME;
2379
2380                 in->yst_rdev = rdev;
2381                 in->yst_uid = uid;
2382                 in->yst_gid = gid;
2383 #endif
2384                 in->nDataChunks = 0;
2385
2386                 yaffs_SetObjectName(in, name);
2387                 in->dirty = 1;
2388
2389                 yaffs_AddObjectToDirectory(parent, in);
2390
2391                 in->myDev = parent->myDev;
2392
2393                 switch (type) {
2394                 case YAFFS_OBJECT_TYPE_SYMLINK:
2395                         in->variant.symLinkVariant.alias = str;
2396                         break;
2397                 case YAFFS_OBJECT_TYPE_HARDLINK:
2398                         in->variant.hardLinkVariant.equivalentObject =
2399                                 equivalentObject;
2400                         in->variant.hardLinkVariant.equivalentObjectId =
2401                                 equivalentObject->objectId;
2402                         ylist_add(&in->hardLinks, &equivalentObject->hardLinks);
2403                         break;
2404                 case YAFFS_OBJECT_TYPE_FILE:
2405                 case YAFFS_OBJECT_TYPE_DIRECTORY:
2406                 case YAFFS_OBJECT_TYPE_SPECIAL:
2407                 case YAFFS_OBJECT_TYPE_UNKNOWN:
2408                         /* do nothing */
2409                         break;
2410                 }
2411
2412                 if (yaffs_UpdateObjectHeader(in, name, 0, 0, 0) < 0) {
2413                         /* Could not create the object header, fail the creation */
2414                         yaffs_DeleteObject(in);
2415                         in = NULL;
2416                 }
2417
2418                 yaffs_UpdateParent(parent);
2419         }
2420
2421         return in;
2422 }
2423
2424 yaffs_Object *yaffs_MknodFile(yaffs_Object *parent, const YCHAR *name,
2425                         __u32 mode, __u32 uid, __u32 gid)
2426 {
2427         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_FILE, parent, name, mode,
2428                                 uid, gid, NULL, NULL, 0);
2429 }
2430
2431 yaffs_Object *yaffs_MknodDirectory(yaffs_Object *parent, const YCHAR *name,
2432                                 __u32 mode, __u32 uid, __u32 gid)
2433 {
2434         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_DIRECTORY, parent, name,
2435                                  mode, uid, gid, NULL, NULL, 0);
2436 }
2437
2438 yaffs_Object *yaffs_MknodSpecial(yaffs_Object *parent, const YCHAR *name,
2439                                 __u32 mode, __u32 uid, __u32 gid, __u32 rdev)
2440 {
2441         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SPECIAL, parent, name, mode,
2442                                  uid, gid, NULL, NULL, rdev);
2443 }
2444
2445 yaffs_Object *yaffs_MknodSymLink(yaffs_Object *parent, const YCHAR *name,
2446                                 __u32 mode, __u32 uid, __u32 gid,
2447                                 const YCHAR *alias)
2448 {
2449         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SYMLINK, parent, name, mode,
2450                                 uid, gid, NULL, alias, 0);
2451 }
2452
2453 /* yaffs_Link returns the object id of the equivalent object.*/
2454 yaffs_Object *yaffs_Link(yaffs_Object *parent, const YCHAR *name,
2455                         yaffs_Object *equivalentObject)
2456 {
2457         /* Get the real object in case we were fed a hard link as an equivalent object */
2458         equivalentObject = yaffs_GetEquivalentObject(equivalentObject);
2459
2460         if (yaffs_MknodObject
2461             (YAFFS_OBJECT_TYPE_HARDLINK, parent, name, 0, 0, 0,
2462              equivalentObject, NULL, 0)) {
2463                 return equivalentObject;
2464         } else {
2465                 return NULL;
2466         }
2467
2468 }
2469
2470 static int yaffs_ChangeObjectName(yaffs_Object *obj, yaffs_Object *newDir,
2471                                 const YCHAR *newName, int force, int shadows)
2472 {
2473         int unlinkOp;
2474         int deleteOp;
2475
2476         yaffs_Object *existingTarget;
2477
2478         if (newDir == NULL)
2479                 newDir = obj->parent;   /* use the old directory */
2480
2481         if (newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
2482                 T(YAFFS_TRACE_ALWAYS,
2483                   (TSTR
2484                    ("tragedy: yaffs_ChangeObjectName: newDir is not a directory"
2485                     TENDSTR)));
2486                 YBUG();
2487         }
2488
2489         /* TODO: Do we need this different handling for YAFFS2 and YAFFS1?? */
2490         if (obj->myDev->param.isYaffs2)
2491                 unlinkOp = (newDir == obj->myDev->unlinkedDir);
2492         else
2493                 unlinkOp = (newDir == obj->myDev->unlinkedDir
2494                             && obj->variantType == YAFFS_OBJECT_TYPE_FILE);
2495
2496         deleteOp = (newDir == obj->myDev->deletedDir);
2497
2498         existingTarget = yaffs_FindObjectByName(newDir, newName);
2499
2500         /* If the object is a file going into the unlinked directory,
2501          *   then it is OK to just stuff it in since duplicate names are allowed.
2502          *   else only proceed if the new name does not exist and if we're putting
2503          *   it into a directory.
2504          */
2505         if ((unlinkOp ||
2506              deleteOp ||
2507              force ||
2508              (shadows > 0) ||
2509              !existingTarget) &&
2510             newDir->variantType == YAFFS_OBJECT_TYPE_DIRECTORY) {
2511                 yaffs_SetObjectName(obj, newName);
2512                 obj->dirty = 1;
2513
2514                 yaffs_AddObjectToDirectory(newDir, obj);
2515
2516                 if (unlinkOp)
2517                         obj->unlinked = 1;
2518
2519                 /* If it is a deletion then we mark it as a shrink for gc purposes. */
2520                 if (yaffs_UpdateObjectHeader(obj, newName, 0, deleteOp, shadows) >= 0)
2521                         return YAFFS_OK;
2522         }
2523
2524         return YAFFS_FAIL;
2525 }
2526
2527 int yaffs_RenameObject(yaffs_Object *oldDir, const YCHAR *oldName,
2528                 yaffs_Object *newDir, const YCHAR *newName)
2529 {
2530         yaffs_Object *obj = NULL;
2531         yaffs_Object *existingTarget = NULL;
2532         int force = 0;
2533         int result;
2534         yaffs_Device *dev;
2535
2536
2537         if (!oldDir || oldDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
2538                 YBUG();
2539         if (!newDir || newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
2540                 YBUG();
2541
2542         dev = oldDir->myDev;
2543
2544 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
2545         /* Special case for case insemsitive systems (eg. WinCE).
2546          * While look-up is case insensitive, the name isn't.
2547          * Therefore we might want to change x.txt to X.txt
2548         */
2549         if (oldDir == newDir && yaffs_strcmp(oldName, newName) == 0)
2550                 force = 1;
2551 #endif
2552
2553         if(yaffs_strnlen(newName,YAFFS_MAX_NAME_LENGTH+1) > YAFFS_MAX_NAME_LENGTH)
2554                 /* ENAMETOOLONG */
2555                 return YAFFS_FAIL;
2556
2557         obj = yaffs_FindObjectByName(oldDir, oldName);
2558
2559         if (obj && obj->renameAllowed) {
2560
2561                 /* Now do the handling for an existing target, if there is one */
2562
2563                 existingTarget = yaffs_FindObjectByName(newDir, newName);
2564                 if (existingTarget &&
2565                         existingTarget->variantType == YAFFS_OBJECT_TYPE_DIRECTORY &&
2566                         !ylist_empty(&existingTarget->variant.directoryVariant.children)) {
2567                         /* There is a target that is a non-empty directory, so we fail */
2568                         return YAFFS_FAIL;      /* EEXIST or ENOTEMPTY */
2569                 } else if (existingTarget && existingTarget != obj) {
2570                         /* Nuke the target first, using shadowing,
2571                          * but only if it isn't the same object.
2572                          *
2573                          * Note we must disable gc otherwise it can mess up the shadowing.
2574                          *
2575                          */
2576                         dev->isDoingGC=1;
2577                         yaffs_ChangeObjectName(obj, newDir, newName, force,
2578                                                 existingTarget->objectId);
2579                         existingTarget->isShadowed = 1;
2580                         yaffs_UnlinkObject(existingTarget);
2581                         dev->isDoingGC=0;
2582                 }
2583
2584                 result = yaffs_ChangeObjectName(obj, newDir, newName, 1, 0);
2585
2586                 yaffs_UpdateParent(oldDir);
2587                 if(newDir != oldDir)
2588                         yaffs_UpdateParent(newDir);
2589                 
2590                 return result;
2591         }
2592         return YAFFS_FAIL;
2593 }
2594
2595 /*------------------------- Block Management and Page Allocation ----------------*/
2596
2597 static int yaffs_InitialiseBlocks(yaffs_Device *dev)
2598 {
2599         int nBlocks = dev->internalEndBlock - dev->internalStartBlock + 1;
2600
2601         dev->blockInfo = NULL;
2602         dev->chunkBits = NULL;
2603
2604         dev->allocationBlock = -1;      /* force it to get a new one */
2605
2606         /* If the first allocation strategy fails, thry the alternate one */
2607         dev->blockInfo = YMALLOC(nBlocks * sizeof(yaffs_BlockInfo));
2608         if (!dev->blockInfo) {
2609                 dev->blockInfo = YMALLOC_ALT(nBlocks * sizeof(yaffs_BlockInfo));
2610                 dev->blockInfoAlt = 1;
2611         } else
2612                 dev->blockInfoAlt = 0;
2613
2614         if (dev->blockInfo) {
2615                 /* Set up dynamic blockinfo stuff. */
2616                 dev->chunkBitmapStride = (dev->param.nChunksPerBlock + 7) / 8; /* round up bytes */
2617                 dev->chunkBits = YMALLOC(dev->chunkBitmapStride * nBlocks);
2618                 if (!dev->chunkBits) {
2619                         dev->chunkBits = YMALLOC_ALT(dev->chunkBitmapStride * nBlocks);
2620                         dev->chunkBitsAlt = 1;
2621                 } else
2622                         dev->chunkBitsAlt = 0;
2623         }
2624
2625         if (dev->blockInfo && dev->chunkBits) {
2626                 memset(dev->blockInfo, 0, nBlocks * sizeof(yaffs_BlockInfo));
2627                 memset(dev->chunkBits, 0, dev->chunkBitmapStride * nBlocks);
2628                 return YAFFS_OK;
2629         }
2630
2631         return YAFFS_FAIL;
2632 }
2633
2634 static void yaffs_DeinitialiseBlocks(yaffs_Device *dev)
2635 {
2636         if (dev->blockInfoAlt && dev->blockInfo)
2637                 YFREE_ALT(dev->blockInfo);
2638         else if (dev->blockInfo)
2639                 YFREE(dev->blockInfo);
2640
2641         dev->blockInfoAlt = 0;
2642
2643         dev->blockInfo = NULL;
2644
2645         if (dev->chunkBitsAlt && dev->chunkBits)
2646                 YFREE_ALT(dev->chunkBits);
2647         else if (dev->chunkBits)
2648                 YFREE(dev->chunkBits);
2649         dev->chunkBitsAlt = 0;
2650         dev->chunkBits = NULL;
2651 }
2652
2653 static int yaffs_BlockNotDisqualifiedFromGC(yaffs_Device *dev,
2654                                         yaffs_BlockInfo *bi)
2655 {
2656         int i;
2657         __u32 seq;
2658         yaffs_BlockInfo *b;
2659
2660         if (!dev->param.isYaffs2)
2661                 return 1;       /* disqualification only applies to yaffs2. */
2662
2663         if (!bi->hasShrinkHeader)
2664                 return 1;       /* can gc */
2665
2666         /* Find the oldest dirty sequence number if we don't know it and save it
2667          * so we don't have to keep recomputing it.
2668          */
2669         if (!dev->oldestDirtySequence) {
2670                 seq = dev->sequenceNumber;
2671
2672                 for (i = dev->internalStartBlock; i <= dev->internalEndBlock;
2673                                 i++) {
2674                         b = yaffs_GetBlockInfo(dev, i);
2675                         if (b->blockState == YAFFS_BLOCK_STATE_FULL &&
2676                             (b->pagesInUse - b->softDeletions) <
2677                             dev->param.nChunksPerBlock && b->sequenceNumber < seq) {
2678                                 seq = b->sequenceNumber;
2679                         }
2680                 }
2681                 dev->oldestDirtySequence = seq;
2682         }
2683
2684         /* Can't do gc of this block if there are any blocks older than this one that have
2685          * discarded pages.
2686          */
2687         return (bi->sequenceNumber <= dev->oldestDirtySequence);
2688 }
2689
2690 /*
2691  * yaffs_FindRefreshBlock()
2692  * periodically finds the oldest full block by sequence number for refreshing.
2693  * Only for yaffs2.
2694  */
2695 static __u32 yaffs_FindRefreshBlock(yaffs_Device *dev)
2696 {
2697         __u32 b ;
2698
2699         __u32 oldest = 0;
2700         __u32 oldestSequence = 0;
2701
2702         yaffs_BlockInfo *bi;
2703
2704         /*
2705          * If refresh period < 10 then refreshing is disabled.
2706          */
2707         if(dev->param.refreshPeriod < 10 ||
2708                 !dev->param.isYaffs2)
2709                 return oldest;
2710
2711         /*
2712          * Fix broken values.
2713          */
2714         if(dev->refreshSkip > dev->param.refreshPeriod)
2715                 dev->refreshSkip = dev->param.refreshPeriod;
2716
2717         if(dev->refreshSkip > 0){
2718                 dev->refreshSkip--;
2719                 return oldest;
2720         }
2721
2722         /*
2723          * Refresh skip is now zero.
2724          * We'll do a refresh this time around....
2725          * Update the refresh skip and find the oldest block.
2726          */
2727         dev->refreshSkip = dev->param.refreshPeriod;
2728         dev->refreshCount++;
2729
2730         for (b = dev->internalStartBlock; b <=dev->internalEndBlock; b++){
2731
2732                 bi = yaffs_GetBlockInfo(dev, b);
2733                 
2734
2735                 if (bi->blockState == YAFFS_BLOCK_STATE_FULL){
2736
2737                         if(oldest < 1 ||
2738                                 bi->sequenceNumber < oldestSequence){
2739                                 oldest = b;
2740                                 oldestSequence = bi->sequenceNumber;
2741                         }
2742                 }
2743         }
2744
2745         if (oldest > 0) {
2746                 T(YAFFS_TRACE_GC,
2747                   (TSTR("GC refresh count %d selected block %d with sequenceNumber %d" TENDSTR),
2748                    dev->refreshCount, oldest, oldestSequence));
2749         }
2750
2751         return oldest;
2752 }
2753
2754 /*
2755  * FindDiretiestBlock is used to select the dirtiest block (or close enough)
2756  * for garbage collection.
2757  */
2758
2759 static int yaffs_FindBlockForGarbageCollection(yaffs_Device *dev,
2760                                         int aggressive)
2761 {
2762         int b = dev->currentDirtyChecker;
2763
2764         int i;
2765         int iterations;
2766         int dirtiest = -1;
2767         int pagesInUse = 0;
2768         int prioritised = 0;
2769         yaffs_BlockInfo *bi;
2770         int pendingPrioritisedExist = 0;
2771
2772         /* First let's see if we need to grab a prioritised block */
2773         if (dev->hasPendingPrioritisedGCs) {
2774                 for (i = dev->internalStartBlock; i < dev->internalEndBlock && !prioritised; i++) {
2775
2776                         bi = yaffs_GetBlockInfo(dev, i);
2777                         /* yaffs_VerifyBlock(dev,bi,i); */
2778
2779                         if (bi->gcPrioritise) {
2780                                 pendingPrioritisedExist = 1;
2781                                 if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2782                                    yaffs_BlockNotDisqualifiedFromGC(dev, bi)) {
2783                                         pagesInUse = (bi->pagesInUse - bi->softDeletions);
2784                                         dirtiest = i;
2785                                         prioritised = 1;
2786                                         aggressive = 1; /* Fool the non-aggressive skip logiv below */
2787                                 }
2788                         }
2789                 }
2790
2791                 if (!pendingPrioritisedExist) /* None found, so we can clear this */
2792                         dev->hasPendingPrioritisedGCs = 0;
2793         }
2794
2795         /* If we're doing aggressive GC then we are happy to take a less-dirty block, and
2796          * search harder.
2797          * else (we're doing a leasurely gc), then we only bother to do this if the
2798          * block has only a few pages in use.
2799          */
2800
2801         dev->nonAggressiveSkip--;
2802
2803         if (!aggressive && (dev->nonAggressiveSkip > 0))
2804                 return -1;
2805
2806         if (!prioritised)
2807                 pagesInUse =
2808                         (aggressive) ? dev->param.nChunksPerBlock : YAFFS_PASSIVE_GC_CHUNKS + 1;
2809
2810         if (aggressive)
2811                 iterations =
2812                     dev->internalEndBlock - dev->internalStartBlock + 1;
2813         else {
2814                 iterations =
2815                     dev->internalEndBlock - dev->internalStartBlock + 1;
2816                 iterations = iterations / 16;
2817                 if (iterations > 200)
2818                         iterations = 200;
2819         }
2820
2821         for (i = 0; i <= iterations && pagesInUse > 0 && !prioritised; i++) {
2822                 b++;
2823                 if (b < dev->internalStartBlock || b > dev->internalEndBlock)
2824                         b = dev->internalStartBlock;
2825
2826                 if (b < dev->internalStartBlock || b > dev->internalEndBlock) {
2827                         T(YAFFS_TRACE_ERROR,
2828                           (TSTR("**>> Block %d is not valid" TENDSTR), b));
2829                         YBUG();
2830                 }
2831
2832                 bi = yaffs_GetBlockInfo(dev, b);
2833
2834                 if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2835                         (bi->pagesInUse - bi->softDeletions) < pagesInUse &&
2836                                 yaffs_BlockNotDisqualifiedFromGC(dev, bi)) {
2837                         dirtiest = b;
2838                         pagesInUse = (bi->pagesInUse - bi->softDeletions);
2839                 }
2840         }
2841
2842         dev->currentDirtyChecker = b;
2843
2844         if (dirtiest > 0) {
2845                 T(YAFFS_TRACE_GC,
2846                   (TSTR("GC Selected block %d with %d free, prioritised:%d" TENDSTR), dirtiest,
2847                    dev->param.nChunksPerBlock - pagesInUse, prioritised));
2848         }
2849
2850         dev->oldestDirtySequence = 0;
2851
2852         if (dirtiest > 0)
2853                 dev->nonAggressiveSkip = 4;
2854
2855         return dirtiest;
2856 }
2857
2858 static void yaffs_BlockBecameDirty(yaffs_Device *dev, int blockNo)
2859 {
2860         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockNo);
2861
2862         int erasedOk = 0;
2863
2864         /* If the block is still healthy erase it and mark as clean.
2865          * If the block has had a data failure, then retire it.
2866          */
2867
2868         T(YAFFS_TRACE_GC | YAFFS_TRACE_ERASE,
2869                 (TSTR("yaffs_BlockBecameDirty block %d state %d %s"TENDSTR),
2870                 blockNo, bi->blockState, (bi->needsRetiring) ? "needs retiring" : ""));
2871
2872         bi->blockState = YAFFS_BLOCK_STATE_DIRTY;
2873
2874         if (!bi->needsRetiring) {
2875                 yaffs_InvalidateCheckpoint(dev);
2876                 erasedOk = yaffs_EraseBlockInNAND(dev, blockNo);
2877                 if (!erasedOk) {
2878                         dev->nErasureFailures++;
2879                         T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
2880                           (TSTR("**>> Erasure failed %d" TENDSTR), blockNo));
2881                 }
2882         }
2883
2884         if (erasedOk &&
2885             ((yaffs_traceMask & YAFFS_TRACE_ERASE) || !yaffs_SkipVerification(dev))) {
2886                 int i;
2887                 for (i = 0; i < dev->param.nChunksPerBlock; i++) {
2888                         if (!yaffs_CheckChunkErased
2889                             (dev, blockNo * dev->param.nChunksPerBlock + i)) {
2890                                 T(YAFFS_TRACE_ERROR,
2891                                   (TSTR
2892                                    (">>Block %d erasure supposedly OK, but chunk %d not erased"
2893                                     TENDSTR), blockNo, i));
2894                         }
2895                 }
2896         }
2897
2898         if (erasedOk) {
2899                 /* Clean it up... */
2900                 bi->blockState = YAFFS_BLOCK_STATE_EMPTY;
2901                 bi->sequenceNumber = 0;
2902                 dev->nErasedBlocks++;
2903                 bi->pagesInUse = 0;
2904                 bi->softDeletions = 0;
2905                 bi->hasShrinkHeader = 0;
2906                 bi->skipErasedCheck = 1;  /* This is clean, so no need to check */
2907                 bi->gcPrioritise = 0;
2908                 yaffs_ClearChunkBits(dev, blockNo);
2909
2910                 T(YAFFS_TRACE_ERASE,
2911                   (TSTR("Erased block %d" TENDSTR), blockNo));
2912         } else {
2913                 dev->nFreeChunks -= dev->param.nChunksPerBlock; /* We lost a block of free space */
2914
2915                 yaffs_RetireBlock(dev, blockNo);
2916                 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
2917                   (TSTR("**>> Block %d retired" TENDSTR), blockNo));
2918         }
2919 }
2920
2921 static int yaffs_FindBlockForAllocation(yaffs_Device *dev)
2922 {
2923         int i;
2924
2925         yaffs_BlockInfo *bi;
2926
2927         if (dev->nErasedBlocks < 1) {
2928                 /* Hoosterman we've got a problem.
2929                  * Can't get space to gc
2930                  */
2931                 T(YAFFS_TRACE_ERROR,
2932                   (TSTR("yaffs tragedy: no more erased blocks" TENDSTR)));
2933
2934                 return -1;
2935         }
2936
2937         /* Find an empty block. */
2938
2939         for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
2940                 dev->allocationBlockFinder++;
2941                 if (dev->allocationBlockFinder < dev->internalStartBlock
2942                     || dev->allocationBlockFinder > dev->internalEndBlock) {
2943                         dev->allocationBlockFinder = dev->internalStartBlock;
2944                 }
2945
2946                 bi = yaffs_GetBlockInfo(dev, dev->allocationBlockFinder);
2947
2948                 if (bi->blockState == YAFFS_BLOCK_STATE_EMPTY) {
2949                         bi->blockState = YAFFS_BLOCK_STATE_ALLOCATING;
2950                         dev->sequenceNumber++;
2951                         bi->sequenceNumber = dev->sequenceNumber;
2952                         dev->nErasedBlocks--;
2953                         T(YAFFS_TRACE_ALLOCATE,
2954                           (TSTR("Allocated block %d, seq  %d, %d left" TENDSTR),
2955                            dev->allocationBlockFinder, dev->sequenceNumber,
2956                            dev->nErasedBlocks));
2957                         return dev->allocationBlockFinder;
2958                 }
2959         }
2960
2961         T(YAFFS_TRACE_ALWAYS,
2962           (TSTR
2963            ("yaffs tragedy: no more erased blocks, but there should have been %d"
2964             TENDSTR), dev->nErasedBlocks));
2965
2966         return -1;
2967 }
2968
2969
2970
2971 static int yaffs_CalcCheckpointBlocksRequired(yaffs_Device *dev)
2972 {
2973         if (!dev->nCheckpointBlocksRequired &&
2974            dev->param.isYaffs2) {
2975                 /* Not a valid value so recalculate */
2976                 int nBytes = 0;
2977                 int nBlocks;
2978                 int devBlocks = (dev->param.endBlock - dev->param.startBlock + 1);
2979                 int tnodeSize = yaffs_CalcTnodeSize(dev);
2980
2981                 nBytes += sizeof(yaffs_CheckpointValidity);
2982                 nBytes += sizeof(yaffs_CheckpointDevice);
2983                 nBytes += devBlocks * sizeof(yaffs_BlockInfo);
2984                 nBytes += devBlocks * dev->chunkBitmapStride;
2985                 nBytes += (sizeof(yaffs_CheckpointObject) + sizeof(__u32)) * (dev->nObjectsCreated - dev->nFreeObjects);
2986                 nBytes += (tnodeSize + sizeof(__u32)) * (dev->nTnodesCreated - dev->nFreeTnodes);
2987                 nBytes += sizeof(yaffs_CheckpointValidity);
2988                 nBytes += sizeof(__u32); /* checksum*/
2989
2990                 /* Round up and add 2 blocks to allow for some bad blocks, so add 3 */
2991
2992                 nBlocks = (nBytes/(dev->nDataBytesPerChunk * dev->param.nChunksPerBlock)) + 3;
2993
2994                 dev->nCheckpointBlocksRequired = nBlocks;
2995         }
2996
2997         return dev->nCheckpointBlocksRequired;
2998 }
2999
3000 /*
3001  * Check if there's space to allocate...
3002  * Thinks.... do we need top make this ths same as yaffs_GetFreeChunks()?
3003  */
3004 static int yaffs_CheckSpaceForAllocation(yaffs_Device *dev)
3005 {
3006         int reservedChunks;
3007         int reservedBlocks = dev->param.nReservedBlocks;
3008         int checkpointBlocks;
3009
3010         if (dev->param.isYaffs2) {
3011                 checkpointBlocks =  yaffs_CalcCheckpointBlocksRequired(dev) -
3012                                     dev->blocksInCheckpoint;
3013                 if (checkpointBlocks < 0)
3014                         checkpointBlocks = 0;
3015         } else {
3016                 checkpointBlocks = 0;
3017         }
3018
3019         reservedChunks = ((reservedBlocks + checkpointBlocks) * dev->param.nChunksPerBlock);
3020
3021         return (dev->nFreeChunks > reservedChunks);
3022 }
3023
3024 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
3025                 yaffs_BlockInfo **blockUsedPtr)
3026 {
3027         int retVal;
3028         yaffs_BlockInfo *bi;
3029
3030         if (dev->allocationBlock < 0) {
3031                 /* Get next block to allocate off */
3032                 dev->allocationBlock = yaffs_FindBlockForAllocation(dev);
3033                 dev->allocationPage = 0;
3034         }
3035
3036         if (!useReserve && !yaffs_CheckSpaceForAllocation(dev)) {
3037                 /* Not enough space to allocate unless we're allowed to use the reserve. */
3038                 return -1;
3039         }
3040
3041         if (dev->nErasedBlocks < dev->param.nReservedBlocks
3042                         && dev->allocationPage == 0) {
3043                 T(YAFFS_TRACE_ALLOCATE, (TSTR("Allocating reserve" TENDSTR)));
3044         }
3045
3046         /* Next page please.... */
3047         if (dev->allocationBlock >= 0) {
3048                 bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
3049
3050                 retVal = (dev->allocationBlock * dev->param.nChunksPerBlock) +
3051                         dev->allocationPage;
3052                 bi->pagesInUse++;
3053                 yaffs_SetChunkBit(dev, dev->allocationBlock,
3054                                 dev->allocationPage);
3055
3056                 dev->allocationPage++;
3057
3058                 dev->nFreeChunks--;
3059
3060                 /* If the block is full set the state to full */
3061                 if (dev->allocationPage >= dev->param.nChunksPerBlock) {
3062                         bi->blockState = YAFFS_BLOCK_STATE_FULL;
3063                         dev->allocationBlock = -1;
3064                 }
3065
3066                 if (blockUsedPtr)
3067                         *blockUsedPtr = bi;
3068
3069                 return retVal;
3070         }
3071
3072         T(YAFFS_TRACE_ERROR,
3073                         (TSTR("!!!!!!!!! Allocator out !!!!!!!!!!!!!!!!!" TENDSTR)));
3074
3075         return -1;
3076 }
3077
3078 static int yaffs_GetErasedChunks(yaffs_Device *dev)
3079 {
3080         int n;
3081
3082         n = dev->nErasedBlocks * dev->param.nChunksPerBlock;
3083
3084         if (dev->allocationBlock > 0)
3085                 n += (dev->param.nChunksPerBlock - dev->allocationPage);
3086
3087         return n;
3088
3089 }
3090
3091 /*
3092  * yaffs_SkipRestOfBlock() skips over the rest of the allocation block
3093  * if we don't want to write to it.
3094  */
3095 static void yaffs_SkipRestOfBlock(yaffs_Device *dev)
3096 {
3097         if(dev->allocationBlock > 0){
3098                 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
3099                 if(bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING){
3100                         bi->blockState = YAFFS_BLOCK_STATE_FULL;
3101                         dev->allocationBlock = -1;
3102                 }
3103         }
3104 }
3105
3106
3107 static int yaffs_GarbageCollectBlock(yaffs_Device *dev, int block,
3108                 int wholeBlock)
3109 {
3110         int oldChunk;
3111         int newChunk;
3112         int markNAND;
3113         int retVal = YAFFS_OK;
3114         int cleanups = 0;
3115         int i;
3116         int isCheckpointBlock;
3117         int matchingChunk;
3118         int maxCopies;
3119
3120         int chunksBefore = yaffs_GetErasedChunks(dev);
3121         int chunksAfter;
3122
3123         yaffs_ExtendedTags tags;
3124
3125         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, block);
3126
3127         yaffs_Object *object;
3128
3129         isCheckpointBlock = (bi->blockState == YAFFS_BLOCK_STATE_CHECKPOINT);
3130
3131
3132         T(YAFFS_TRACE_TRACING,
3133                         (TSTR("Collecting block %d, in use %d, shrink %d, wholeBlock %d" TENDSTR),
3134                          block,
3135                          bi->pagesInUse,
3136                          bi->hasShrinkHeader,
3137                          wholeBlock));
3138
3139         /*yaffs_VerifyFreeChunks(dev); */
3140
3141         if(bi->blockState == YAFFS_BLOCK_STATE_FULL)
3142                 bi->blockState = YAFFS_BLOCK_STATE_COLLECTING;
3143         
3144         bi->hasShrinkHeader = 0;        /* clear the flag so that the block can erase */
3145
3146         /* Take off the number of soft deleted entries because
3147          * they're going to get really deleted during GC.
3148          */
3149         if(dev->gcChunk == 0) /* first time through for this block */
3150                 dev->nFreeChunks -= bi->softDeletions;
3151
3152         dev->isDoingGC = 1;
3153
3154         if (isCheckpointBlock ||
3155                         !yaffs_StillSomeChunkBits(dev, block)) {
3156                 T(YAFFS_TRACE_TRACING,
3157                                 (TSTR
3158                                  ("Collecting block %d that has no chunks in use" TENDSTR),
3159                                  block));
3160                 yaffs_BlockBecameDirty(dev, block);
3161         } else {
3162
3163                 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
3164
3165                 yaffs_VerifyBlock(dev, bi, block);
3166
3167                 maxCopies = (wholeBlock) ? dev->param.nChunksPerBlock : 10;
3168                 oldChunk = block * dev->param.nChunksPerBlock + dev->gcChunk;
3169
3170                 for (/* init already done */;
3171                      retVal == YAFFS_OK &&
3172                      dev->gcChunk < dev->param.nChunksPerBlock &&
3173                      (bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) &&
3174                      maxCopies > 0;
3175                      dev->gcChunk++, oldChunk++) {
3176                         if (yaffs_CheckChunkBit(dev, block, dev->gcChunk)) {
3177
3178                                 /* This page is in use and might need to be copied off */
3179
3180                                 maxCopies--;
3181
3182                                 markNAND = 1;
3183
3184                                 yaffs_InitialiseTags(&tags);
3185
3186                                 yaffs_ReadChunkWithTagsFromNAND(dev, oldChunk,
3187                                                                 buffer, &tags);
3188
3189                                 object =
3190                                     yaffs_FindObjectByNumber(dev,
3191                                                              tags.objectId);
3192
3193                                 T(YAFFS_TRACE_GC_DETAIL,
3194                                   (TSTR
3195                                    ("Collecting chunk in block %d, %d %d %d " TENDSTR),
3196                                    dev->gcChunk, tags.objectId, tags.chunkId,
3197                                    tags.byteCount));
3198
3199                                 if (object && !yaffs_SkipVerification(dev)) {
3200                                         if (tags.chunkId == 0)
3201                                                 matchingChunk = object->hdrChunk;
3202                                         else if (object->softDeleted)
3203                                                 matchingChunk = oldChunk; /* Defeat the test */
3204                                         else
3205                                                 matchingChunk = yaffs_FindChunkInFile(object, tags.chunkId, NULL);
3206
3207                                         if (oldChunk != matchingChunk)
3208                                                 T(YAFFS_TRACE_ERROR,
3209                                                   (TSTR("gc: page in gc mismatch: %d %d %d %d"TENDSTR),
3210                                                   oldChunk, matchingChunk, tags.objectId, tags.chunkId));
3211
3212                                 }
3213
3214                                 if (!object) {
3215                                         T(YAFFS_TRACE_ERROR,
3216                                           (TSTR
3217                                            ("page %d in gc has no object: %d %d %d "
3218                                             TENDSTR), oldChunk,
3219                                             tags.objectId, tags.chunkId, tags.byteCount));
3220                                 }
3221
3222                                 if (object &&
3223                                     object->deleted &&
3224                                     object->softDeleted &&
3225                                     tags.chunkId != 0) {
3226                                         /* Data chunk in a soft deleted file, throw it away
3227                                          * It's a soft deleted data chunk,
3228                                          * No need to copy this, just forget about it and
3229                                          * fix up the object.
3230                                          */
3231
3232                                         object->nDataChunks--;
3233
3234                                         if (object->nDataChunks <= 0) {
3235                                                 /* remeber to clean up the object */
3236                                                 dev->gcCleanupList[cleanups] =
3237                                                     tags.objectId;
3238                                                 cleanups++;
3239                                         }
3240                                         markNAND = 0;
3241                                 } else if (0) {
3242                                         /* Todo object && object->deleted && object->nDataChunks == 0 */
3243                                         /* Deleted object header with no data chunks.
3244                                          * Can be discarded and the file deleted.
3245                                          */
3246                                         object->hdrChunk = 0;
3247                                         yaffs_FreeTnode(object->myDev,
3248                                                         object->variant.
3249                                                         fileVariant.top);
3250                                         object->variant.fileVariant.top = NULL;
3251                                         yaffs_DoGenericObjectDeletion(object);
3252
3253                                 } else if (object) {
3254                                         /* It's either a data chunk in a live file or
3255                                          * an ObjectHeader, so we're interested in it.
3256                                          * NB Need to keep the ObjectHeaders of deleted files
3257                                          * until the whole file has been deleted off
3258                                          */
3259                                         tags.serialNumber++;
3260
3261                                         dev->nGCCopies++;
3262
3263                                         if (tags.chunkId == 0) {
3264                                                 /* It is an object Id,
3265                                                  * We need to nuke the shrinkheader flags first
3266                                                  * Also need to clean up shadowing.
3267                                                  * We no longer want the shrinkHeader flag since its work is done
3268                                                  * and if it is left in place it will mess up scanning.
3269                                                  */
3270
3271                                                 yaffs_ObjectHeader *oh;
3272                                                 oh = (yaffs_ObjectHeader *)buffer;
3273                                                 oh->isShrink = 0;
3274                                                 tags.extraIsShrinkHeader = 0;
3275                                                 oh->shadowsObject = 0;
3276                                                 oh->inbandShadowsObject = 0;
3277                                                 if(object->variantType == YAFFS_OBJECT_TYPE_FILE)
3278                                                         oh->fileSize = object->variant.fileVariant.fileSize;
3279                                                 tags.extraShadows = 0;
3280
3281                                                 yaffs_VerifyObjectHeader(object, oh, &tags, 1);
3282                                                 newChunk =
3283                                                     yaffs_WriteNewChunkWithTagsToNAND(dev,(__u8 *) oh, &tags, 1);
3284                                         } else
3285                                                 newChunk =
3286                                                     yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &tags, 1);
3287
3288                                         if (newChunk < 0) {
3289                                                 retVal = YAFFS_FAIL;
3290                                         } else {
3291
3292                                                 /* Ok, now fix up the Tnodes etc. */
3293
3294                                                 if (tags.chunkId == 0) {
3295                                                         /* It's a header */
3296                                                         object->hdrChunk =  newChunk;
3297                                                         object->serial =   tags.serialNumber;
3298                                                 } else {
3299                                                         /* It's a data chunk */
3300                                                         int ok;
3301                                                         ok = yaffs_PutChunkIntoFile
3302                                                             (object,
3303                                                              tags.chunkId,
3304                                                              newChunk, 0);
3305                                                 }
3306                                         }
3307                                 }
3308
3309                                 if (retVal == YAFFS_OK)
3310                                         yaffs_DeleteChunk(dev, oldChunk, markNAND, __LINE__);
3311
3312                         }
3313                 }
3314
3315                 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
3316
3317
3318                 /* Do any required cleanups */
3319                 for (i = 0; i < cleanups; i++) {
3320                         /* Time to delete the file too */
3321                         object =
3322                             yaffs_FindObjectByNumber(dev,
3323                                                      dev->gcCleanupList[i]);
3324                         if (object) {
3325                                 yaffs_FreeTnode(dev,
3326                                                 object->variant.fileVariant.
3327                                                 top);
3328                                 object->variant.fileVariant.top = NULL;
3329                                 T(YAFFS_TRACE_GC,
3330                                   (TSTR
3331                                    ("yaffs: About to finally delete object %d"
3332                                     TENDSTR), object->objectId));
3333                                 yaffs_DoGenericObjectDeletion(object);
3334                                 object->myDev->nDeletedFiles--;
3335                         }
3336
3337                 }
3338
3339         }
3340
3341         yaffs_VerifyCollectedBlock(dev, bi, block);
3342
3343
3344
3345         /* If the gc completed then clear the current gcBlock so that we find another. */
3346         if (bi->blockState != YAFFS_BLOCK_STATE_COLLECTING) {
3347                 chunksAfter = yaffs_GetErasedChunks(dev);
3348                 if (chunksBefore >= chunksAfter) {
3349                         T(YAFFS_TRACE_GC,
3350                           (TSTR
3351                            ("gc did not increase free chunks before %d after %d"
3352                             TENDSTR), chunksBefore, chunksAfter));
3353                 }
3354                 dev->gcBlock = -1;
3355                 dev->gcChunk = 0;
3356         }
3357
3358         dev->isDoingGC = 0;
3359
3360         return retVal;
3361 }
3362
3363 /* New garbage collector
3364  * If we're very low on erased blocks then we do aggressive garbage collection
3365  * otherwise we do "leasurely" garbage collection.
3366  * Aggressive gc looks further (whole array) and will accept less dirty blocks.
3367  * Passive gc only inspects smaller areas and will only accept more dirty blocks.
3368  *
3369  * The idea is to help clear out space in a more spread-out manner.
3370  * Dunno if it really does anything useful.
3371  */
3372 static int yaffs_CheckGarbageCollection(yaffs_Device *dev)
3373 {
3374         int block;
3375         int aggressive;
3376         int gcOk = YAFFS_OK;
3377         int maxTries = 0;
3378
3379         int checkpointBlockAdjust;
3380
3381         if (dev->isDoingGC) {
3382                 /* Bail out so we don't get recursive gc */
3383                 return YAFFS_OK;
3384         }
3385
3386         /* This loop should pass the first time.
3387          * We'll only see looping here if the erase of the collected block fails.
3388          */
3389
3390         do {
3391                 maxTries++;
3392
3393                 checkpointBlockAdjust = yaffs_CalcCheckpointBlocksRequired(dev) - dev->blocksInCheckpoint;
3394                 if (checkpointBlockAdjust < 0)
3395                         checkpointBlockAdjust = 0;
3396
3397                 /* If we need a block soon then do aggressive gc.*/
3398                 if (dev->nErasedBlocks < (dev->param.nReservedBlocks + checkpointBlockAdjust + 2))
3399                         aggressive = 1;
3400                 else
3401                         aggressive = 0;
3402
3403                 /* If we don't already have a block being gc'd then see if we should start another */
3404
3405                 if (dev->gcBlock < 1 && !aggressive) {
3406                         dev->gcBlock = yaffs_FindRefreshBlock(dev);
3407                         dev->gcChunk = 0;
3408                 }
3409                 if (dev->gcBlock < 1) {
3410                         dev->gcBlock = yaffs_FindBlockForGarbageCollection(dev, aggressive);
3411                         dev->gcChunk = 0;
3412                 }
3413
3414                 block = dev->gcBlock;
3415
3416                 if (block > 0) {
3417                         dev->garbageCollections++;
3418                         if (!aggressive)
3419                                 dev->passiveGarbageCollections++;
3420
3421                         T(YAFFS_TRACE_GC,
3422                           (TSTR
3423                            ("yaffs: GC erasedBlocks %d aggressive %d" TENDSTR),
3424                            dev->nErasedBlocks, aggressive));
3425
3426                         gcOk = yaffs_GarbageCollectBlock(dev, block, aggressive);
3427                 }
3428
3429                 if (dev->nErasedBlocks < (dev->param.nReservedBlocks) && block > 0) {
3430                         T(YAFFS_TRACE_GC,
3431                           (TSTR
3432                            ("yaffs: GC !!!no reclaim!!! erasedBlocks %d after try %d block %d"
3433                             TENDSTR), dev->nErasedBlocks, maxTries, block));
3434                 }
3435         } while ((dev->nErasedBlocks < dev->param.nReservedBlocks) &&
3436                  (block > 0) &&
3437                  (maxTries < 2));
3438
3439         return aggressive ? gcOk : YAFFS_OK;
3440 }
3441
3442 /*-------------------------  TAGS --------------------------------*/
3443
3444 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId,
3445                            int chunkInObject)
3446 {
3447         return (tags->chunkId == chunkInObject &&
3448                 tags->objectId == objectId && !tags->chunkDeleted) ? 1 : 0;
3449
3450 }
3451
3452
3453 /*-------------------- Data file manipulation -----------------*/
3454
3455 static int yaffs_FindChunkInFile(yaffs_Object *in, int chunkInInode,
3456                                  yaffs_ExtendedTags *tags)
3457 {
3458         /*Get the Tnode, then get the level 0 offset chunk offset */
3459         yaffs_Tnode *tn;
3460         int theChunk = -1;
3461         yaffs_ExtendedTags localTags;
3462         int retVal = -1;
3463
3464         yaffs_Device *dev = in->myDev;
3465
3466         if (!tags) {
3467                 /* Passed a NULL, so use our own tags space */
3468                 tags = &localTags;
3469         }
3470
3471         tn = yaffs_FindLevel0Tnode(dev, &in->variant.fileVariant, chunkInInode);
3472
3473         if (tn) {
3474                 theChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
3475
3476                 retVal =
3477                     yaffs_FindChunkInGroup(dev, theChunk, tags, in->objectId,
3478                                            chunkInInode);
3479         }
3480         return retVal;
3481 }
3482
3483 static int yaffs_FindAndDeleteChunkInFile(yaffs_Object *in, int chunkInInode,
3484                                           yaffs_ExtendedTags *tags)
3485 {
3486         /* Get the Tnode, then get the level 0 offset chunk offset */
3487         yaffs_Tnode *tn;
3488         int theChunk = -1;
3489         yaffs_ExtendedTags localTags;
3490
3491         yaffs_Device *dev = in->myDev;
3492         int retVal = -1;
3493
3494         if (!tags) {
3495                 /* Passed a NULL, so use our own tags space */
3496                 tags = &localTags;
3497         }
3498
3499         tn = yaffs_FindLevel0Tnode(dev, &in->variant.fileVariant, chunkInInode);
3500
3501         if (tn) {
3502
3503                 theChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
3504
3505                 retVal =
3506                     yaffs_FindChunkInGroup(dev, theChunk, tags, in->objectId,
3507                                            chunkInInode);
3508
3509                 /* Delete the entry in the filestructure (if found) */
3510                 if (retVal != -1)
3511                         yaffs_LoadLevel0Tnode(dev, tn, chunkInInode, 0);
3512         }
3513
3514         return retVal;
3515 }
3516
3517 #ifdef YAFFS_PARANOID
3518
3519 static int yaffs_CheckFileSanity(yaffs_Object *in)
3520 {
3521         int chunk;
3522         int nChunks;
3523         int fSize;
3524         int failed = 0;
3525         int objId;
3526         yaffs_Tnode *tn;
3527         yaffs_Tags localTags;
3528         yaffs_Tags *tags = &localTags;
3529         int theChunk;
3530         int chunkDeleted;
3531
3532         if (in->variantType != YAFFS_OBJECT_TYPE_FILE)
3533                 return YAFFS_FAIL;
3534
3535         objId = in->objectId;
3536         fSize = in->variant.fileVariant.fileSize;
3537         nChunks =
3538             (fSize + in->myDev->nDataBytesPerChunk - 1) / in->myDev->nDataBytesPerChunk;
3539
3540         for (chunk = 1; chunk <= nChunks; chunk++) {
3541                 tn = yaffs_FindLevel0Tnode(in->myDev, &in->variant.fileVariant,
3542                                            chunk);
3543
3544                 if (tn) {
3545
3546                         theChunk = yaffs_GetChunkGroupBase(dev, tn, chunk);
3547
3548                         if (yaffs_CheckChunkBits
3549                             (dev, theChunk / dev->param.nChunksPerBlock,
3550                              theChunk % dev->param.nChunksPerBlock)) {
3551
3552                                 yaffs_ReadChunkTagsFromNAND(in->myDev, theChunk,
3553                                                             tags,
3554                                                             &chunkDeleted);
3555                                 if (yaffs_TagsMatch
3556                                     (tags, in->objectId, chunk, chunkDeleted)) {
3557                                         /* found it; */
3558
3559                                 }
3560                         } else {
3561
3562                                 failed = 1;
3563                         }
3564
3565                 } else {
3566                         /* T(("No level 0 found for %d\n", chunk)); */
3567                 }
3568         }
3569
3570         return failed ? YAFFS_FAIL : YAFFS_OK;
3571 }
3572
3573 #endif
3574
3575 static int yaffs_PutChunkIntoFile(yaffs_Object *in, int chunkInInode,
3576                                   int chunkInNAND, int inScan)
3577 {
3578         /* NB inScan is zero unless scanning.
3579          * For forward scanning, inScan is > 0;
3580          * for backward scanning inScan is < 0
3581          *
3582          * chunkInNAND = 0 is a dummy insert to make sure the tnodes are there.
3583          */
3584
3585         yaffs_Tnode *tn;
3586         yaffs_Device *dev = in->myDev;
3587         int existingChunk;
3588         yaffs_ExtendedTags existingTags;
3589         yaffs_ExtendedTags newTags;
3590         unsigned existingSerial, newSerial;
3591
3592         if (in->variantType != YAFFS_OBJECT_TYPE_FILE) {
3593                 /* Just ignore an attempt at putting a chunk into a non-file during scanning
3594                  * If it is not during Scanning then something went wrong!
3595                  */
3596                 if (!inScan) {
3597                         T(YAFFS_TRACE_ERROR,
3598                           (TSTR
3599                            ("yaffs tragedy:attempt to put data chunk into a non-file"
3600                             TENDSTR)));
3601                         YBUG();
3602                 }
3603
3604                 yaffs_DeleteChunk(dev, chunkInNAND, 1, __LINE__);
3605                 return YAFFS_OK;
3606         }
3607
3608         tn = yaffs_AddOrFindLevel0Tnode(dev,
3609                                         &in->variant.fileVariant,
3610                                         chunkInInode,
3611                                         NULL);
3612         if (!tn)
3613                 return YAFFS_FAIL;
3614         
3615         if(!chunkInNAND)
3616                 /* Dummy insert, bail now */
3617                 return YAFFS_OK;
3618
3619         existingChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
3620
3621         if (inScan != 0) {
3622                 /* If we're scanning then we need to test for duplicates
3623                  * NB This does not need to be efficient since it should only ever
3624                  * happen when the power fails during a write, then only one
3625                  * chunk should ever be affected.
3626                  *
3627                  * Correction for YAFFS2: This could happen quite a lot and we need to think about efficiency! TODO
3628                  * Update: For backward scanning we don't need to re-read tags so this is quite cheap.
3629                  */
3630
3631                 if (existingChunk > 0) {
3632                         /* NB Right now existing chunk will not be real chunkId if the device >= 32MB
3633                          *    thus we have to do a FindChunkInFile to get the real chunk id.
3634                          *
3635                          * We have a duplicate now we need to decide which one to use:
3636                          *
3637                          * Backwards scanning YAFFS2: The old one is what we use, dump the new one.
3638                          * Forward scanning YAFFS2: The new one is what we use, dump the old one.
3639                          * YAFFS1: Get both sets of tags and compare serial numbers.
3640                          */
3641
3642                         if (inScan > 0) {
3643                                 /* Only do this for forward scanning */
3644                                 yaffs_ReadChunkWithTagsFromNAND(dev,
3645                                                                 chunkInNAND,
3646                                                                 NULL, &newTags);
3647
3648                                 /* Do a proper find */
3649                                 existingChunk =
3650                                     yaffs_FindChunkInFile(in, chunkInInode,
3651                                                           &existingTags);
3652                         }
3653
3654                         if (existingChunk <= 0) {
3655                                 /*Hoosterman - how did this happen? */
3656
3657                                 T(YAFFS_TRACE_ERROR,
3658                                   (TSTR
3659                                    ("yaffs tragedy: existing chunk < 0 in scan"
3660                                     TENDSTR)));
3661
3662                         }
3663
3664                         /* NB The deleted flags should be false, otherwise the chunks will
3665                          * not be loaded during a scan
3666                          */
3667
3668                         if (inScan > 0) {
3669                                 newSerial = newTags.serialNumber;
3670                                 existingSerial = existingTags.serialNumber;
3671                         }
3672
3673                         if ((inScan > 0) &&
3674                             (in->myDev->param.isYaffs2 ||
3675                              existingChunk <= 0 ||
3676                              ((existingSerial + 1) & 3) == newSerial)) {
3677                                 /* Forward scanning.
3678                                  * Use new
3679                                  * Delete the old one and drop through to update the tnode
3680                                  */
3681                                 yaffs_DeleteChunk(dev, existingChunk, 1,
3682                                                   __LINE__);
3683                         } else {
3684                                 /* Backward scanning or we want to use the existing one
3685                                  * Use existing.
3686                                  * Delete the new one and return early so that the tnode isn't changed
3687                                  */
3688                                 yaffs_DeleteChunk(dev, chunkInNAND, 1,
3689                                                   __LINE__);
3690                                 return YAFFS_OK;
3691                         }
3692                 }
3693
3694         }
3695
3696         if (existingChunk == 0)
3697                 in->nDataChunks++;
3698
3699         yaffs_LoadLevel0Tnode(dev, tn, chunkInInode, chunkInNAND);
3700
3701         return YAFFS_OK;
3702 }
3703
3704 static int yaffs_ReadChunkDataFromObject(yaffs_Object *in, int chunkInInode,
3705                                         __u8 *buffer)
3706 {
3707         int chunkInNAND = yaffs_FindChunkInFile(in, chunkInInode, NULL);
3708
3709         if (chunkInNAND >= 0)
3710                 return yaffs_ReadChunkWithTagsFromNAND(in->myDev, chunkInNAND,
3711                                                 buffer, NULL);
3712         else {
3713                 T(YAFFS_TRACE_NANDACCESS,
3714                   (TSTR("Chunk %d not found zero instead" TENDSTR),
3715                    chunkInNAND));
3716                 /* get sane (zero) data if you read a hole */
3717                 memset(buffer, 0, in->myDev->nDataBytesPerChunk);
3718                 return 0;
3719         }
3720
3721 }
3722
3723 void yaffs_DeleteChunk(yaffs_Device *dev, int chunkId, int markNAND, int lyn)
3724 {
3725         int block;
3726         int page;
3727         yaffs_ExtendedTags tags;
3728         yaffs_BlockInfo *bi;
3729
3730         if (chunkId <= 0)
3731                 return;
3732
3733         dev->nDeletions++;
3734         block = chunkId / dev->param.nChunksPerBlock;
3735         page = chunkId % dev->param.nChunksPerBlock;
3736
3737
3738         if (!yaffs_CheckChunkBit(dev, block, page))
3739                 T(YAFFS_TRACE_VERIFY,
3740                         (TSTR("Deleting invalid chunk %d"TENDSTR),
3741                          chunkId));
3742
3743         bi = yaffs_GetBlockInfo(dev, block);
3744
3745         T(YAFFS_TRACE_DELETION,
3746           (TSTR("line %d delete of chunk %d" TENDSTR), lyn, chunkId));
3747
3748         if (markNAND &&
3749             bi->blockState != YAFFS_BLOCK_STATE_COLLECTING && !dev->param.isYaffs2) {
3750
3751                 yaffs_InitialiseTags(&tags);
3752
3753                 tags.chunkDeleted = 1;
3754
3755                 yaffs_WriteChunkWithTagsToNAND(dev, chunkId, NULL, &tags);
3756                 yaffs_HandleUpdateChunk(dev, chunkId, &tags);
3757         } else {
3758                 dev->nUnmarkedDeletions++;
3759         }
3760
3761         /* Pull out of the management area.
3762          * If the whole block became dirty, this will kick off an erasure.
3763          */
3764         if (bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING ||
3765             bi->blockState == YAFFS_BLOCK_STATE_FULL ||
3766             bi->blockState == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
3767             bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) {
3768                 dev->nFreeChunks++;
3769
3770                 yaffs_ClearChunkBit(dev, block, page);
3771
3772                 bi->pagesInUse--;
3773
3774                 if (bi->pagesInUse == 0 &&
3775                     !bi->hasShrinkHeader &&
3776                     bi->blockState != YAFFS_BLOCK_STATE_ALLOCATING &&
3777                     bi->blockState != YAFFS_BLOCK_STATE_NEEDS_SCANNING) {
3778                         yaffs_BlockBecameDirty(dev, block);
3779                 }
3780
3781         }
3782
3783 }
3784
3785 static int yaffs_WriteChunkDataToObject(yaffs_Object *in, int chunkInInode,
3786                                         const __u8 *buffer, int nBytes,
3787                                         int useReserve)
3788 {
3789         /* Find old chunk Need to do this to get serial number
3790          * Write new one and patch into tree.
3791          * Invalidate old tags.
3792          */
3793
3794         int prevChunkId;
3795         yaffs_ExtendedTags prevTags;
3796
3797         int newChunkId;
3798         yaffs_ExtendedTags newTags;
3799
3800         yaffs_Device *dev = in->myDev;
3801
3802         yaffs_CheckGarbageCollection(dev);
3803
3804         /* Get the previous chunk at this location in the file if it exists.
3805          * If it does not exist then put a zero into the tree. This creates
3806          * the tnode now, rather than later when it is harder to clean up.
3807          */
3808         prevChunkId = yaffs_FindChunkInFile(in, chunkInInode, &prevTags);
3809         if(prevChunkId < 1 &&
3810                 !yaffs_PutChunkIntoFile(in, chunkInInode, 0, 0))
3811                 return 0;
3812
3813         /* Set up new tags */
3814         yaffs_InitialiseTags(&newTags);
3815
3816         newTags.chunkId = chunkInInode;
3817         newTags.objectId = in->objectId;
3818         newTags.serialNumber =
3819             (prevChunkId > 0) ? prevTags.serialNumber + 1 : 1;
3820         newTags.byteCount = nBytes;
3821
3822         if (nBytes < 1 || nBytes > dev->param.totalBytesPerChunk) {
3823                 T(YAFFS_TRACE_ERROR,
3824                 (TSTR("Writing %d bytes to chunk!!!!!!!!!" TENDSTR), nBytes));
3825                 YBUG();
3826         }
3827         
3828                 
3829         newChunkId =
3830             yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &newTags,
3831                                               useReserve);
3832
3833         if (newChunkId > 0) {
3834                 yaffs_PutChunkIntoFile(in, chunkInInode, newChunkId, 0);
3835
3836                 if (prevChunkId > 0)
3837                         yaffs_DeleteChunk(dev, prevChunkId, 1, __LINE__);
3838
3839                 yaffs_CheckFileSanity(in);
3840         }
3841         return newChunkId;
3842
3843 }
3844
3845 /* UpdateObjectHeader updates the header on NAND for an object.
3846  * If name is not NULL, then that new name is used.
3847  */
3848 int yaffs_UpdateObjectHeader(yaffs_Object *in, const YCHAR *name, int force,
3849                              int isShrink, int shadows)
3850 {
3851
3852         yaffs_BlockInfo *bi;
3853
3854         yaffs_Device *dev = in->myDev;
3855
3856         int prevChunkId;
3857         int retVal = 0;
3858         int result = 0;
3859
3860         int newChunkId;
3861         yaffs_ExtendedTags newTags;
3862         yaffs_ExtendedTags oldTags;
3863         YCHAR *alias = NULL;
3864
3865         __u8 *buffer = NULL;
3866         YCHAR oldName[YAFFS_MAX_NAME_LENGTH + 1];
3867
3868         yaffs_ObjectHeader *oh = NULL;
3869
3870         yaffs_strcpy(oldName, _Y("silly old name"));
3871
3872
3873         if (!in->fake ||
3874                 in == dev->rootDir || /* The rootDir should also be saved */
3875                 force) {
3876
3877                 yaffs_CheckGarbageCollection(dev);
3878                 yaffs_CheckObjectDetailsLoaded(in);
3879
3880                 buffer = yaffs_GetTempBuffer(in->myDev, __LINE__);
3881                 oh = (yaffs_ObjectHeader *) buffer;
3882
3883                 prevChunkId = in->hdrChunk;
3884
3885                 if (prevChunkId > 0) {
3886                         result = yaffs_ReadChunkWithTagsFromNAND(dev, prevChunkId,
3887                                                         buffer, &oldTags);
3888
3889                         yaffs_VerifyObjectHeader(in, oh, &oldTags, 0);
3890
3891                         memcpy(oldName, oh->name, sizeof(oh->name));
3892                 }
3893
3894                 memset(buffer, 0xFF, dev->nDataBytesPerChunk);
3895
3896                 oh->type = in->variantType;
3897                 oh->yst_mode = in->yst_mode;
3898                 oh->shadowsObject = oh->inbandShadowsObject = shadows;
3899
3900 #ifdef CONFIG_YAFFS_WINCE
3901                 oh->win_atime[0] = in->win_atime[0];
3902                 oh->win_ctime[0] = in->win_ctime[0];
3903                 oh->win_mtime[0] = in->win_mtime[0];
3904                 oh->win_atime[1] = in->win_atime[1];
3905                 oh->win_ctime[1] = in->win_ctime[1];
3906                 oh->win_mtime[1] = in->win_mtime[1];
3907 #else
3908                 oh->yst_uid = in->yst_uid;
3909                 oh->yst_gid = in->yst_gid;
3910                 oh->yst_atime = in->yst_atime;
3911                 oh->yst_mtime = in->yst_mtime;
3912                 oh->yst_ctime = in->yst_ctime;
3913                 oh->yst_rdev = in->yst_rdev;
3914 #endif
3915                 if (in->parent)
3916                         oh->parentObjectId = in->parent->objectId;
3917                 else
3918                         oh->parentObjectId = 0;
3919
3920                 if (name && *name) {
3921                         memset(oh->name, 0, sizeof(oh->name));
3922                         yaffs_strncpy(oh->name, name, YAFFS_MAX_NAME_LENGTH);
3923                 } else if (prevChunkId > 0)
3924                         memcpy(oh->name, oldName, sizeof(oh->name));
3925                 else
3926                         memset(oh->name, 0, sizeof(oh->name));
3927
3928                 oh->isShrink = isShrink;
3929
3930                 switch (in->variantType) {
3931                 case YAFFS_OBJECT_TYPE_UNKNOWN:
3932                         /* Should not happen */
3933                         break;
3934                 case YAFFS_OBJECT_TYPE_FILE:
3935                         oh->fileSize =
3936                             (oh->parentObjectId == YAFFS_OBJECTID_DELETED
3937                              || oh->parentObjectId ==
3938                              YAFFS_OBJECTID_UNLINKED) ? 0 : in->variant.
3939                             fileVariant.fileSize;
3940                         break;
3941                 case YAFFS_OBJECT_TYPE_HARDLINK:
3942                         oh->equivalentObjectId =
3943                             in->variant.hardLinkVariant.equivalentObjectId;
3944                         break;
3945                 case YAFFS_OBJECT_TYPE_SPECIAL:
3946                         /* Do nothing */
3947                         break;
3948                 case YAFFS_OBJECT_TYPE_DIRECTORY:
3949                         /* Do nothing */
3950                         break;
3951                 case YAFFS_OBJECT_TYPE_SYMLINK:
3952                         alias = in->variant.symLinkVariant.alias;
3953                         if(!alias)
3954                                 alias = _Y("no alias");
3955                         yaffs_strncpy(oh->alias,
3956                                         alias,
3957                                       YAFFS_MAX_ALIAS_LENGTH);
3958                         oh->alias[YAFFS_MAX_ALIAS_LENGTH] = 0;
3959                         break;
3960                 }
3961
3962                 /* Tags */
3963                 yaffs_InitialiseTags(&newTags);
3964                 in->serial++;
3965                 newTags.chunkId = 0;
3966                 newTags.objectId = in->objectId;
3967                 newTags.serialNumber = in->serial;
3968
3969                 /* Add extra info for file header */
3970
3971                 newTags.extraHeaderInfoAvailable = 1;
3972                 newTags.extraParentObjectId = oh->parentObjectId;
3973                 newTags.extraFileLength = oh->fileSize;
3974                 newTags.extraIsShrinkHeader = oh->isShrink;
3975                 newTags.extraEquivalentObjectId = oh->equivalentObjectId;
3976                 newTags.extraShadows = (oh->shadowsObject > 0) ? 1 : 0;
3977                 newTags.extraObjectType = in->variantType;
3978
3979                 yaffs_VerifyObjectHeader(in, oh, &newTags, 1);
3980
3981                 /* Create new chunk in NAND */
3982                 newChunkId =
3983                     yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &newTags,
3984                                                       (prevChunkId > 0) ? 1 : 0);
3985
3986                 if (newChunkId >= 0) {
3987
3988                         in->hdrChunk = newChunkId;
3989
3990                         if (prevChunkId > 0) {
3991                                 yaffs_DeleteChunk(dev, prevChunkId, 1,
3992                                                   __LINE__);
3993                         }
3994
3995                         if (!yaffs_ObjectHasCachedWriteData(in))
3996                                 in->dirty = 0;
3997
3998                         /* If this was a shrink, then mark the block that the chunk lives on */
3999                         if (isShrink) {
4000                                 bi = yaffs_GetBlockInfo(in->myDev,
4001                                         newChunkId / in->myDev->param.nChunksPerBlock);
4002                                 bi->hasShrinkHeader = 1;
4003                         }
4004
4005                 }
4006
4007                 retVal = newChunkId;
4008
4009         }
4010
4011         if (buffer)
4012                 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
4013
4014         return retVal;
4015 }
4016
4017 /*------------------------ Short Operations Cache ----------------------------------------
4018  *   In many situations where there is no high level buffering (eg WinCE) a lot of
4019  *   reads might be short sequential reads, and a lot of writes may be short
4020  *   sequential writes. eg. scanning/writing a jpeg file.
4021  *   In these cases, a short read/write cache can provide a huge perfomance benefit
4022  *   with dumb-as-a-rock code.
4023  *   In Linux, the page cache provides read buffering aand the short op cache provides write
4024  *   buffering.
4025  *
4026  *   There are a limited number (~10) of cache chunks per device so that we don't
4027  *   need a very intelligent search.
4028  */
4029
4030 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj)
4031 {
4032         yaffs_Device *dev = obj->myDev;
4033         int i;
4034         yaffs_ChunkCache *cache;
4035         int nCaches = obj->myDev->param.nShortOpCaches;
4036
4037         for (i = 0; i < nCaches; i++) {
4038                 cache = &dev->srCache[i];
4039                 if (cache->object == obj &&
4040                     cache->dirty)
4041                         return 1;
4042         }
4043
4044         return 0;
4045 }
4046
4047
4048 static void yaffs_FlushFilesChunkCache(yaffs_Object *obj)
4049 {
4050         yaffs_Device *dev = obj->myDev;
4051         int lowest = -99;       /* Stop compiler whining. */
4052         int i;
4053         yaffs_ChunkCache *cache;
4054         int chunkWritten = 0;
4055         int nCaches = obj->myDev->param.nShortOpCaches;
4056
4057         if (nCaches > 0) {
4058                 do {
4059                         cache = NULL;
4060
4061                         /* Find the dirty cache for this object with the lowest chunk id. */
4062                         for (i = 0; i < nCaches; i++) {
4063                                 if (dev->srCache[i].object == obj &&
4064                                     dev->srCache[i].dirty) {
4065                                         if (!cache
4066                                             || dev->srCache[i].chunkId <
4067                                             lowest) {
4068                                                 cache = &dev->srCache[i];
4069                                                 lowest = cache->chunkId;
4070                                         }
4071                                 }
4072                         }
4073
4074                         if (cache && !cache->locked) {
4075                                 /* Write it out and free it up */
4076
4077                                 chunkWritten =
4078                                     yaffs_WriteChunkDataToObject(cache->object,
4079                                                                  cache->chunkId,
4080                                                                  cache->data,
4081                                                                  cache->nBytes,
4082                                                                  1);
4083                                 cache->dirty = 0;
4084                                 cache->object = NULL;
4085                         }
4086
4087                 } while (cache && chunkWritten > 0);
4088
4089                 if (cache) {
4090                         /* Hoosterman, disk full while writing cache out. */
4091                         T(YAFFS_TRACE_ERROR,
4092                           (TSTR("yaffs tragedy: no space during cache write" TENDSTR)));
4093
4094                 }
4095         }
4096
4097 }
4098
4099 /*yaffs_FlushEntireDeviceCache(dev)
4100  *
4101  *
4102  */
4103
4104 void yaffs_FlushEntireDeviceCache(yaffs_Device *dev)
4105 {
4106         yaffs_Object *obj;
4107         int nCaches = dev->param.nShortOpCaches;
4108         int i;
4109
4110         /* Find a dirty object in the cache and flush it...
4111          * until there are no further dirty objects.
4112          */
4113         do {
4114                 obj = NULL;
4115                 for (i = 0; i < nCaches && !obj; i++) {
4116                         if (dev->srCache[i].object &&
4117                             dev->srCache[i].dirty)
4118                                 obj = dev->srCache[i].object;
4119
4120                 }
4121                 if (obj)
4122                         yaffs_FlushFilesChunkCache(obj);
4123
4124         } while (obj);
4125
4126 }
4127
4128
4129 /* Grab us a cache chunk for use.
4130  * First look for an empty one.
4131  * Then look for the least recently used non-dirty one.
4132  * Then look for the least recently used dirty one...., flush and look again.
4133  */
4134 static yaffs_ChunkCache *yaffs_GrabChunkCacheWorker(yaffs_Device *dev)
4135 {
4136         int i;
4137
4138         if (dev->param.nShortOpCaches > 0) {
4139                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
4140                         if (!dev->srCache[i].object)
4141                                 return &dev->srCache[i];
4142                 }
4143         }
4144
4145         return NULL;
4146 }
4147
4148 static yaffs_ChunkCache *yaffs_GrabChunkCache(yaffs_Device *dev)
4149 {
4150         yaffs_ChunkCache *cache;
4151         yaffs_Object *theObj;
4152         int usage;
4153         int i;
4154         int pushout;
4155
4156         if (dev->param.nShortOpCaches > 0) {
4157                 /* Try find a non-dirty one... */
4158
4159                 cache = yaffs_GrabChunkCacheWorker(dev);
4160
4161                 if (!cache) {
4162                         /* They were all dirty, find the last recently used object and flush
4163                          * its cache, then  find again.
4164                          * NB what's here is not very accurate, we actually flush the object
4165                          * the last recently used page.
4166                          */
4167
4168                         /* With locking we can't assume we can use entry zero */
4169
4170                         theObj = NULL;
4171                         usage = -1;
4172                         cache = NULL;
4173                         pushout = -1;
4174
4175                         for (i = 0; i < dev->param.nShortOpCaches; i++) {
4176                                 if (dev->srCache[i].object &&
4177                                     !dev->srCache[i].locked &&
4178                                     (dev->srCache[i].lastUse < usage || !cache)) {
4179                                         usage = dev->srCache[i].lastUse;
4180                                         theObj = dev->srCache[i].object;
4181                                         cache = &dev->srCache[i];
4182                                         pushout = i;
4183                                 }
4184                         }
4185
4186                         if (!cache || cache->dirty) {
4187                                 /* Flush and try again */
4188                                 yaffs_FlushFilesChunkCache(theObj);
4189                                 cache = yaffs_GrabChunkCacheWorker(dev);
4190                         }
4191
4192                 }
4193                 return cache;
4194         } else
4195                 return NULL;
4196
4197 }
4198
4199 /* Find a cached chunk */
4200 static yaffs_ChunkCache *yaffs_FindChunkCache(const yaffs_Object *obj,
4201                                               int chunkId)
4202 {
4203         yaffs_Device *dev = obj->myDev;
4204         int i;
4205         if (dev->param.nShortOpCaches > 0) {
4206                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
4207                         if (dev->srCache[i].object == obj &&
4208                             dev->srCache[i].chunkId == chunkId) {
4209                                 dev->cacheHits++;
4210
4211                                 return &dev->srCache[i];
4212                         }
4213                 }
4214         }
4215         return NULL;
4216 }
4217
4218 /* Mark the chunk for the least recently used algorithym */
4219 static void yaffs_UseChunkCache(yaffs_Device *dev, yaffs_ChunkCache *cache,
4220                                 int isAWrite)
4221 {
4222
4223         if (dev->param.nShortOpCaches > 0) {
4224                 if (dev->srLastUse < 0 || dev->srLastUse > 100000000) {
4225                         /* Reset the cache usages */
4226                         int i;
4227                         for (i = 1; i < dev->param.nShortOpCaches; i++)
4228                                 dev->srCache[i].lastUse = 0;
4229
4230                         dev->srLastUse = 0;
4231                 }
4232
4233                 dev->srLastUse++;
4234
4235                 cache->lastUse = dev->srLastUse;
4236
4237                 if (isAWrite)
4238                         cache->dirty = 1;
4239         }
4240 }
4241
4242 /* Invalidate a single cache page.
4243  * Do this when a whole page gets written,
4244  * ie the short cache for this page is no longer valid.
4245  */
4246 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId)
4247 {
4248         if (object->myDev->param.nShortOpCaches > 0) {
4249                 yaffs_ChunkCache *cache = yaffs_FindChunkCache(object, chunkId);
4250
4251                 if (cache)
4252                         cache->object = NULL;
4253         }
4254 }
4255
4256 /* Invalidate all the cache pages associated with this object
4257  * Do this whenever ther file is deleted or resized.
4258  */
4259 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in)
4260 {
4261         int i;
4262         yaffs_Device *dev = in->myDev;
4263
4264         if (dev->param.nShortOpCaches > 0) {
4265                 /* Invalidate it. */
4266                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
4267                         if (dev->srCache[i].object == in)
4268                                 dev->srCache[i].object = NULL;
4269                 }
4270         }
4271 }
4272
4273 /*--------------------- Checkpointing --------------------*/
4274
4275
4276 static int yaffs_WriteCheckpointValidityMarker(yaffs_Device *dev, int head)
4277 {
4278         yaffs_CheckpointValidity cp;
4279
4280         memset(&cp, 0, sizeof(cp));
4281
4282         cp.structType = sizeof(cp);
4283         cp.magic = YAFFS_MAGIC;
4284         cp.version = YAFFS_CHECKPOINT_VERSION;
4285         cp.head = (head) ? 1 : 0;
4286
4287         return (yaffs_CheckpointWrite(dev, &cp, sizeof(cp)) == sizeof(cp)) ?
4288                 1 : 0;
4289 }
4290
4291 static int yaffs_ReadCheckpointValidityMarker(yaffs_Device *dev, int head)
4292 {
4293         yaffs_CheckpointValidity cp;
4294         int ok;
4295
4296         ok = (yaffs_CheckpointRead(dev, &cp, sizeof(cp)) == sizeof(cp));
4297
4298         if (ok)
4299                 ok = (cp.structType == sizeof(cp)) &&
4300                      (cp.magic == YAFFS_MAGIC) &&
4301                      (cp.version == YAFFS_CHECKPOINT_VERSION) &&
4302                      (cp.head == ((head) ? 1 : 0));
4303         return ok ? 1 : 0;
4304 }
4305
4306 static void yaffs_DeviceToCheckpointDevice(yaffs_CheckpointDevice *cp,
4307                                            yaffs_Device *dev)
4308 {
4309         cp->nErasedBlocks = dev->nErasedBlocks;
4310         cp->allocationBlock = dev->allocationBlock;
4311         cp->allocationPage = dev->allocationPage;
4312         cp->nFreeChunks = dev->nFreeChunks;
4313
4314         cp->nDeletedFiles = dev->nDeletedFiles;
4315         cp->nUnlinkedFiles = dev->nUnlinkedFiles;
4316         cp->nBackgroundDeletions = dev->nBackgroundDeletions;
4317         cp->sequenceNumber = dev->sequenceNumber;
4318
4319 }
4320
4321 static void yaffs_CheckpointDeviceToDevice(yaffs_Device *dev,
4322                                            yaffs_CheckpointDevice *cp)
4323 {
4324         dev->nErasedBlocks = cp->nErasedBlocks;
4325         dev->allocationBlock = cp->allocationBlock;
4326         dev->allocationPage = cp->allocationPage;
4327         dev->nFreeChunks = cp->nFreeChunks;
4328
4329         dev->nDeletedFiles = cp->nDeletedFiles;
4330         dev->nUnlinkedFiles = cp->nUnlinkedFiles;
4331         dev->nBackgroundDeletions = cp->nBackgroundDeletions;
4332         dev->sequenceNumber = cp->sequenceNumber;
4333 }
4334
4335
4336 static int yaffs_WriteCheckpointDevice(yaffs_Device *dev)
4337 {
4338         yaffs_CheckpointDevice cp;
4339         __u32 nBytes;
4340         __u32 nBlocks = (dev->internalEndBlock - dev->internalStartBlock + 1);
4341
4342         int ok;
4343
4344         /* Write device runtime values*/
4345         yaffs_DeviceToCheckpointDevice(&cp, dev);
4346         cp.structType = sizeof(cp);
4347
4348         ok = (yaffs_CheckpointWrite(dev, &cp, sizeof(cp)) == sizeof(cp));
4349
4350         /* Write block info */
4351         if (ok) {
4352                 nBytes = nBlocks * sizeof(yaffs_BlockInfo);
4353                 ok = (yaffs_CheckpointWrite(dev, dev->blockInfo, nBytes) == nBytes);
4354         }
4355
4356         /* Write chunk bits */
4357         if (ok) {
4358                 nBytes = nBlocks * dev->chunkBitmapStride;
4359                 ok = (yaffs_CheckpointWrite(dev, dev->chunkBits, nBytes) == nBytes);
4360         }
4361         return   ok ? 1 : 0;
4362
4363 }
4364
4365 static int yaffs_ReadCheckpointDevice(yaffs_Device *dev)
4366 {
4367         yaffs_CheckpointDevice cp;
4368         __u32 nBytes;
4369         __u32 nBlocks = (dev->internalEndBlock - dev->internalStartBlock + 1);
4370
4371         int ok;
4372
4373         ok = (yaffs_CheckpointRead(dev, &cp, sizeof(cp)) == sizeof(cp));
4374         if (!ok)
4375                 return 0;
4376
4377         if (cp.structType != sizeof(cp))
4378                 return 0;
4379
4380
4381         yaffs_CheckpointDeviceToDevice(dev, &cp);
4382
4383         nBytes = nBlocks * sizeof(yaffs_BlockInfo);
4384
4385         ok = (yaffs_CheckpointRead(dev, dev->blockInfo, nBytes) == nBytes);
4386
4387         if (!ok)
4388                 return 0;
4389         nBytes = nBlocks * dev->chunkBitmapStride;
4390
4391         ok = (yaffs_CheckpointRead(dev, dev->chunkBits, nBytes) == nBytes);
4392
4393         return ok ? 1 : 0;
4394 }
4395
4396 static void yaffs_ObjectToCheckpointObject(yaffs_CheckpointObject *cp,
4397                                            yaffs_Object *obj)
4398 {
4399
4400         cp->objectId = obj->objectId;
4401         cp->parentId = (obj->parent) ? obj->parent->objectId : 0;
4402         cp->hdrChunk = obj->hdrChunk;
4403         cp->variantType = obj->variantType;
4404         cp->deleted = obj->deleted;
4405         cp->softDeleted = obj->softDeleted;
4406         cp->unlinked = obj->unlinked;
4407         cp->fake = obj->fake;
4408         cp->renameAllowed = obj->renameAllowed;
4409         cp->unlinkAllowed = obj->unlinkAllowed;
4410         cp->serial = obj->serial;
4411         cp->nDataChunks = obj->nDataChunks;
4412
4413         if (obj->variantType == YAFFS_OBJECT_TYPE_FILE)
4414                 cp->fileSizeOrEquivalentObjectId = obj->variant.fileVariant.fileSize;
4415         else if (obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK)
4416                 cp->fileSizeOrEquivalentObjectId = obj->variant.hardLinkVariant.equivalentObjectId;
4417 }
4418
4419 static int yaffs_CheckpointObjectToObject(yaffs_Object *obj, yaffs_CheckpointObject *cp)
4420 {
4421
4422         yaffs_Object *parent;
4423
4424         if (obj->variantType != cp->variantType) {
4425                 T(YAFFS_TRACE_ERROR, (TSTR("Checkpoint read object %d type %d "
4426                         TCONT("chunk %d does not match existing object type %d")
4427                         TENDSTR), cp->objectId, cp->variantType, cp->hdrChunk,
4428                         obj->variantType));
4429                 return 0;
4430         }
4431
4432         obj->objectId = cp->objectId;
4433
4434         if (cp->parentId)
4435                 parent = yaffs_FindOrCreateObjectByNumber(
4436                                         obj->myDev,
4437                                         cp->parentId,
4438                                         YAFFS_OBJECT_TYPE_DIRECTORY);
4439         else
4440                 parent = NULL;
4441
4442         if (parent) {
4443                 if (parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
4444                         T(YAFFS_TRACE_ALWAYS, (TSTR("Checkpoint read object %d parent %d type %d"
4445                                 TCONT(" chunk %d Parent type, %d, not directory")
4446                                 TENDSTR),
4447                                 cp->objectId, cp->parentId, cp->variantType,
4448                                 cp->hdrChunk, parent->variantType));
4449                         return 0;
4450                 }
4451                 yaffs_AddObjectToDirectory(parent, obj);
4452         }
4453
4454         obj->hdrChunk = cp->hdrChunk;
4455         obj->variantType = cp->variantType;
4456         obj->deleted = cp->deleted;
4457         obj->softDeleted = cp->softDeleted;
4458         obj->unlinked = cp->unlinked;
4459         obj->fake = cp->fake;
4460         obj->renameAllowed = cp->renameAllowed;
4461         obj->unlinkAllowed = cp->unlinkAllowed;
4462         obj->serial = cp->serial;
4463         obj->nDataChunks = cp->nDataChunks;
4464
4465         if (obj->variantType == YAFFS_OBJECT_TYPE_FILE)
4466                 obj->variant.fileVariant.fileSize = cp->fileSizeOrEquivalentObjectId;
4467         else if (obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK)
4468                 obj->variant.hardLinkVariant.equivalentObjectId = cp->fileSizeOrEquivalentObjectId;
4469
4470         if (obj->hdrChunk > 0)
4471                 obj->lazyLoaded = 1;
4472         return 1;
4473 }
4474
4475
4476
4477 static int yaffs_CheckpointTnodeWorker(yaffs_Object *in, yaffs_Tnode *tn,
4478                                         __u32 level, int chunkOffset)
4479 {
4480         int i;
4481         yaffs_Device *dev = in->myDev;
4482         int ok = 1;
4483         int tnodeSize = yaffs_CalcTnodeSize(dev);
4484
4485         if (tn) {
4486                 if (level > 0) {
4487
4488                         for (i = 0; i < YAFFS_NTNODES_INTERNAL && ok; i++) {
4489                                 if (tn->internal[i]) {
4490                                         ok = yaffs_CheckpointTnodeWorker(in,
4491                                                         tn->internal[i],
4492                                                         level - 1,
4493                                                         (chunkOffset<<YAFFS_TNODES_INTERNAL_BITS) + i);
4494                                 }
4495                         }
4496                 } else if (level == 0) {
4497                         __u32 baseOffset = chunkOffset <<  YAFFS_TNODES_LEVEL0_BITS;
4498                         ok = (yaffs_CheckpointWrite(dev, &baseOffset, sizeof(baseOffset)) == sizeof(baseOffset));
4499                         if (ok)
4500                                 ok = (yaffs_CheckpointWrite(dev, tn, tnodeSize) == tnodeSize);
4501                 }
4502         }
4503
4504         return ok;
4505
4506 }
4507
4508 static int yaffs_WriteCheckpointTnodes(yaffs_Object *obj)
4509 {
4510         __u32 endMarker = ~0;
4511         int ok = 1;
4512
4513         if (obj->variantType == YAFFS_OBJECT_TYPE_FILE) {
4514                 ok = yaffs_CheckpointTnodeWorker(obj,
4515                                             obj->variant.fileVariant.top,
4516                                             obj->variant.fileVariant.topLevel,
4517                                             0);
4518                 if (ok)
4519                         ok = (yaffs_CheckpointWrite(obj->myDev, &endMarker, sizeof(endMarker)) ==
4520                                 sizeof(endMarker));
4521         }
4522
4523         return ok ? 1 : 0;
4524 }
4525
4526 static int yaffs_ReadCheckpointTnodes(yaffs_Object *obj)
4527 {
4528         __u32 baseChunk;
4529         int ok = 1;
4530         yaffs_Device *dev = obj->myDev;
4531         yaffs_FileStructure *fileStructPtr = &obj->variant.fileVariant;
4532         yaffs_Tnode *tn;
4533         int nread = 0;
4534         int tnodeSize = yaffs_CalcTnodeSize(dev);
4535
4536         ok = (yaffs_CheckpointRead(dev, &baseChunk, sizeof(baseChunk)) == sizeof(baseChunk));
4537
4538         while (ok && (~baseChunk)) {
4539                 nread++;
4540                 /* Read level 0 tnode */
4541
4542
4543                 tn = yaffs_GetTnodeRaw(dev);
4544                 if (tn)
4545                         ok = (yaffs_CheckpointRead(dev, tn, tnodeSize) == tnodeSize);
4546                 else
4547                         ok = 0;
4548
4549                 if (tn && ok)
4550                         ok = yaffs_AddOrFindLevel0Tnode(dev,
4551                                                         fileStructPtr,
4552                                                         baseChunk,
4553                                                         tn) ? 1 : 0;
4554
4555                 if (ok)
4556                         ok = (yaffs_CheckpointRead(dev, &baseChunk, sizeof(baseChunk)) == sizeof(baseChunk));
4557
4558         }
4559
4560         T(YAFFS_TRACE_CHECKPOINT, (
4561                 TSTR("Checkpoint read tnodes %d records, last %d. ok %d" TENDSTR),
4562                 nread, baseChunk, ok));
4563
4564         return ok ? 1 : 0;
4565 }
4566
4567
4568 static int yaffs_WriteCheckpointObjects(yaffs_Device *dev)
4569 {
4570         yaffs_Object *obj;
4571         yaffs_CheckpointObject cp;
4572         int i;
4573         int ok = 1;
4574         struct ylist_head *lh;
4575
4576
4577         /* Iterate through the objects in each hash entry,
4578          * dumping them to the checkpointing stream.
4579          */
4580
4581         for (i = 0; ok &&  i <  YAFFS_NOBJECT_BUCKETS; i++) {
4582                 ylist_for_each(lh, &dev->objectBucket[i].list) {
4583                         if (lh) {
4584                                 obj = ylist_entry(lh, yaffs_Object, hashLink);
4585                                 if (!obj->deferedFree) {
4586                                         yaffs_ObjectToCheckpointObject(&cp, obj);
4587                                         cp.structType = sizeof(cp);
4588
4589                                         T(YAFFS_TRACE_CHECKPOINT, (
4590                                                 TSTR("Checkpoint write object %d parent %d type %d chunk %d obj addr %p" TENDSTR),
4591                                                 cp.objectId, cp.parentId, cp.variantType, cp.hdrChunk, obj));
4592
4593                                         ok = (yaffs_CheckpointWrite(dev, &cp, sizeof(cp)) == sizeof(cp));
4594
4595                                         if (ok && obj->variantType == YAFFS_OBJECT_TYPE_FILE)
4596                                                 ok = yaffs_WriteCheckpointTnodes(obj);
4597                                 }
4598                         }
4599                 }
4600         }
4601
4602         /* Dump end of list */
4603         memset(&cp, 0xFF, sizeof(yaffs_CheckpointObject));
4604         cp.structType = sizeof(cp);
4605
4606         if (ok)
4607                 ok = (yaffs_CheckpointWrite(dev, &cp, sizeof(cp)) == sizeof(cp));
4608
4609         return ok ? 1 : 0;
4610 }
4611
4612 static int yaffs_ReadCheckpointObjects(yaffs_Device *dev)
4613 {
4614         yaffs_Object *obj;
4615         yaffs_CheckpointObject cp;
4616         int ok = 1;
4617         int done = 0;
4618         yaffs_Object *hardList = NULL;
4619
4620         while (ok && !done) {
4621                 ok = (yaffs_CheckpointRead(dev, &cp, sizeof(cp)) == sizeof(cp));
4622                 if (cp.structType != sizeof(cp)) {
4623                         T(YAFFS_TRACE_CHECKPOINT, (TSTR("struct size %d instead of %d ok %d"TENDSTR),
4624                                 cp.structType, (int)sizeof(cp), ok));
4625                         ok = 0;
4626                 }
4627
4628                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("Checkpoint read object %d parent %d type %d chunk %d " TENDSTR),
4629                         cp.objectId, cp.parentId, cp.variantType, cp.hdrChunk));
4630
4631                 if (ok && cp.objectId == ~0)
4632                         done = 1;
4633                 else if (ok) {
4634                         obj = yaffs_FindOrCreateObjectByNumber(dev, cp.objectId, cp.variantType);
4635                         if (obj) {
4636                                 ok = yaffs_CheckpointObjectToObject(obj, &cp);
4637                                 if (!ok)
4638                                         break;
4639                                 if (obj->variantType == YAFFS_OBJECT_TYPE_FILE) {
4640                                         ok = yaffs_ReadCheckpointTnodes(obj);
4641                                 } else if (obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK) {
4642                                         obj->hardLinks.next =
4643                                                 (struct ylist_head *) hardList;
4644                                         hardList = obj;
4645                                 }
4646                         } else
4647                                 ok = 0;
4648                 }
4649         }
4650
4651         if (ok)
4652                 yaffs_HardlinkFixup(dev, hardList);
4653
4654         return ok ? 1 : 0;
4655 }
4656
4657 static int yaffs_WriteCheckpointSum(yaffs_Device *dev)
4658 {
4659         __u32 checkpointSum;
4660         int ok;
4661
4662         yaffs_GetCheckpointSum(dev, &checkpointSum);
4663
4664         ok = (yaffs_CheckpointWrite(dev, &checkpointSum, sizeof(checkpointSum)) == sizeof(checkpointSum));
4665
4666         if (!ok)
4667                 return 0;
4668
4669         return 1;
4670 }
4671
4672 static int yaffs_ReadCheckpointSum(yaffs_Device *dev)
4673 {
4674         __u32 checkpointSum0;
4675         __u32 checkpointSum1;
4676         int ok;
4677
4678         yaffs_GetCheckpointSum(dev, &checkpointSum0);
4679
4680         ok = (yaffs_CheckpointRead(dev, &checkpointSum1, sizeof(checkpointSum1)) == sizeof(checkpointSum1));
4681
4682         if (!ok)
4683                 return 0;
4684
4685         if (checkpointSum0 != checkpointSum1)
4686                 return 0;
4687
4688         return 1;
4689 }
4690
4691
4692 static int yaffs_WriteCheckpointData(yaffs_Device *dev)
4693 {
4694         int ok = 1;
4695
4696         if (dev->param.skipCheckpointWrite || !dev->param.isYaffs2) {
4697                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("skipping checkpoint write" TENDSTR)));
4698                 ok = 0;
4699         }
4700
4701         if (ok)
4702                 ok = yaffs_CheckpointOpen(dev, 1);
4703
4704         if (ok) {
4705                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("write checkpoint validity" TENDSTR)));
4706                 ok = yaffs_WriteCheckpointValidityMarker(dev, 1);
4707         }
4708         if (ok) {
4709                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("write checkpoint device" TENDSTR)));
4710                 ok = yaffs_WriteCheckpointDevice(dev);
4711         }
4712         if (ok) {
4713                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("write checkpoint objects" TENDSTR)));
4714                 ok = yaffs_WriteCheckpointObjects(dev);
4715         }
4716         if (ok) {
4717                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("write checkpoint validity" TENDSTR)));
4718                 ok = yaffs_WriteCheckpointValidityMarker(dev, 0);
4719         }
4720
4721         if (ok)
4722                 ok = yaffs_WriteCheckpointSum(dev);
4723
4724         if (!yaffs_CheckpointClose(dev))
4725                 ok = 0;
4726
4727         if (ok)
4728                 dev->isCheckpointed = 1;
4729         else
4730                 dev->isCheckpointed = 0;
4731
4732         return dev->isCheckpointed;
4733 }
4734
4735 static int yaffs_ReadCheckpointData(yaffs_Device *dev)
4736 {
4737         int ok = 1;
4738
4739         if (dev->param.skipCheckpointRead || !dev->param.isYaffs2) {
4740                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("skipping checkpoint read" TENDSTR)));
4741                 ok = 0;
4742         }
4743
4744         if (ok)
4745                 ok = yaffs_CheckpointOpen(dev, 0); /* open for read */
4746
4747         if (ok) {
4748                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("read checkpoint validity" TENDSTR)));
4749                 ok = yaffs_ReadCheckpointValidityMarker(dev, 1);
4750         }
4751         if (ok) {
4752                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("read checkpoint device" TENDSTR)));
4753                 ok = yaffs_ReadCheckpointDevice(dev);
4754         }
4755         if (ok) {
4756                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("read checkpoint objects" TENDSTR)));
4757                 ok = yaffs_ReadCheckpointObjects(dev);
4758         }
4759         if (ok) {
4760                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("read checkpoint validity" TENDSTR)));
4761                 ok = yaffs_ReadCheckpointValidityMarker(dev, 0);
4762         }
4763
4764         if (ok) {
4765                 ok = yaffs_ReadCheckpointSum(dev);
4766                 T(YAFFS_TRACE_CHECKPOINT, (TSTR("read checkpoint checksum %d" TENDSTR), ok));
4767         }
4768
4769         if (!yaffs_CheckpointClose(dev))
4770                 ok = 0;
4771
4772         if (ok)
4773                 dev->isCheckpointed = 1;
4774         else
4775                 dev->isCheckpointed = 0;
4776
4777         return ok ? 1 : 0;
4778
4779 }
4780
4781 static void yaffs_InvalidateCheckpoint(yaffs_Device *dev)
4782 {
4783         if (dev->isCheckpointed ||
4784                         dev->blocksInCheckpoint > 0) {
4785                 dev->isCheckpointed = 0;
4786                 yaffs_CheckpointInvalidateStream(dev);
4787                 if (dev->param.markSuperBlockDirty)
4788                         dev->param.markSuperBlockDirty(dev);
4789         }
4790 }
4791
4792
4793 int yaffs_CheckpointSave(yaffs_Device *dev)
4794 {
4795
4796         T(YAFFS_TRACE_CHECKPOINT, (TSTR("save entry: isCheckpointed %d"TENDSTR), dev->isCheckpointed));
4797
4798         yaffs_VerifyObjects(dev);
4799         yaffs_VerifyBlocks(dev);
4800         yaffs_VerifyFreeChunks(dev);
4801
4802         if (!dev->isCheckpointed) {
4803                 yaffs_InvalidateCheckpoint(dev);
4804                 yaffs_WriteCheckpointData(dev);
4805         }
4806
4807         T(YAFFS_TRACE_ALWAYS, (TSTR("save exit: isCheckpointed %d"TENDSTR), dev->isCheckpointed));
4808
4809         return dev->isCheckpointed;
4810 }
4811
4812 int yaffs_CheckpointRestore(yaffs_Device *dev)
4813 {
4814         int retval;
4815         T(YAFFS_TRACE_CHECKPOINT, (TSTR("restore entry: isCheckpointed %d"TENDSTR), dev->isCheckpointed));
4816
4817         retval = yaffs_ReadCheckpointData(dev);
4818
4819         if (dev->isCheckpointed) {
4820                 yaffs_VerifyObjects(dev);
4821                 yaffs_VerifyBlocks(dev);
4822                 yaffs_VerifyFreeChunks(dev);
4823         }
4824
4825         T(YAFFS_TRACE_CHECKPOINT, (TSTR("restore exit: isCheckpointed %d"TENDSTR), dev->isCheckpointed));
4826
4827         return retval;
4828 }
4829
4830 /*--------------------- File read/write ------------------------
4831  * Read and write have very similar structures.
4832  * In general the read/write has three parts to it
4833  * An incomplete chunk to start with (if the read/write is not chunk-aligned)
4834  * Some complete chunks
4835  * An incomplete chunk to end off with
4836  *
4837  * Curve-balls: the first chunk might also be the last chunk.
4838  */
4839
4840 int yaffs_ReadDataFromFile(yaffs_Object *in, __u8 *buffer, loff_t offset,
4841                         int nBytes)
4842 {
4843
4844         int chunk;
4845         __u32 start;
4846         int nToCopy;
4847         int n = nBytes;
4848         int nDone = 0;
4849         yaffs_ChunkCache *cache;
4850
4851         yaffs_Device *dev;
4852
4853         dev = in->myDev;
4854
4855         while (n > 0) {
4856                 /* chunk = offset / dev->nDataBytesPerChunk + 1; */
4857                 /* start = offset % dev->nDataBytesPerChunk; */
4858                 yaffs_AddrToChunk(dev, offset, &chunk, &start);
4859                 chunk++;
4860
4861                 /* OK now check for the curveball where the start and end are in
4862                  * the same chunk.
4863                  */
4864                 if ((start + n) < dev->nDataBytesPerChunk)
4865                         nToCopy = n;
4866                 else
4867                         nToCopy = dev->nDataBytesPerChunk - start;
4868
4869                 cache = yaffs_FindChunkCache(in, chunk);
4870
4871                 /* If the chunk is already in the cache or it is less than a whole chunk
4872                  * or we're using inband tags then use the cache (if there is caching)
4873                  * else bypass the cache.
4874                  */
4875                 if (cache || nToCopy != dev->nDataBytesPerChunk || dev->param.inbandTags) {
4876                         if (dev->param.nShortOpCaches > 0) {
4877
4878                                 /* If we can't find the data in the cache, then load it up. */
4879
4880                                 if (!cache) {
4881                                         cache = yaffs_GrabChunkCache(in->myDev);
4882                                         cache->object = in;
4883                                         cache->chunkId = chunk;
4884                                         cache->dirty = 0;
4885                                         cache->locked = 0;
4886                                         yaffs_ReadChunkDataFromObject(in, chunk,
4887                                                                       cache->
4888                                                                       data);
4889                                         cache->nBytes = 0;
4890                                 }
4891
4892                                 yaffs_UseChunkCache(dev, cache, 0);
4893
4894                                 cache->locked = 1;
4895
4896
4897                                 memcpy(buffer, &cache->data[start], nToCopy);
4898
4899                                 cache->locked = 0;
4900                         } else {
4901                                 /* Read into the local buffer then copy..*/
4902
4903                                 __u8 *localBuffer =
4904                                     yaffs_GetTempBuffer(dev, __LINE__);
4905                                 yaffs_ReadChunkDataFromObject(in, chunk,
4906                                                               localBuffer);
4907
4908                                 memcpy(buffer, &localBuffer[start], nToCopy);
4909
4910
4911                                 yaffs_ReleaseTempBuffer(dev, localBuffer,
4912                                                         __LINE__);
4913                         }
4914
4915                 } else {
4916
4917                         /* A full chunk. Read directly into the supplied buffer. */
4918                         yaffs_ReadChunkDataFromObject(in, chunk, buffer);
4919
4920                 }
4921
4922                 n -= nToCopy;
4923                 offset += nToCopy;
4924                 buffer += nToCopy;
4925                 nDone += nToCopy;
4926
4927         }
4928
4929         return nDone;
4930 }
4931
4932 int yaffs_WriteDataToFile(yaffs_Object *in, const __u8 *buffer, loff_t offset,
4933                         int nBytes, int writeThrough)
4934 {
4935
4936         int chunk;
4937         __u32 start;
4938         int nToCopy;
4939         int n = nBytes;
4940         int nDone = 0;
4941         int nToWriteBack;
4942         int startOfWrite = offset;
4943         int chunkWritten = 0;
4944         __u32 nBytesRead;
4945         __u32 chunkStart;
4946
4947         yaffs_Device *dev;
4948
4949         dev = in->myDev;
4950
4951         while (n > 0 && chunkWritten >= 0) {
4952                 /* chunk = offset / dev->nDataBytesPerChunk + 1; */
4953                 /* start = offset % dev->nDataBytesPerChunk; */
4954                 yaffs_AddrToChunk(dev, offset, &chunk, &start);
4955
4956                 if (chunk * dev->nDataBytesPerChunk + start != offset ||
4957                                 start >= dev->nDataBytesPerChunk) {
4958                         T(YAFFS_TRACE_ERROR, (
4959                            TSTR("AddrToChunk of offset %d gives chunk %d start %d"
4960                            TENDSTR),
4961                            (int)offset, chunk, start));
4962                 }
4963                 chunk++;
4964
4965                 /* OK now check for the curveball where the start and end are in
4966                  * the same chunk.
4967                  */
4968
4969                 if ((start + n) < dev->nDataBytesPerChunk) {
4970                         nToCopy = n;
4971
4972                         /* Now folks, to calculate how many bytes to write back....
4973                          * If we're overwriting and not writing to then end of file then
4974                          * we need to write back as much as was there before.
4975                          */
4976
4977                         chunkStart = ((chunk - 1) * dev->nDataBytesPerChunk);
4978
4979                         if (chunkStart > in->variant.fileVariant.fileSize)
4980                                 nBytesRead = 0; /* Past end of file */
4981                         else
4982                                 nBytesRead = in->variant.fileVariant.fileSize - chunkStart;
4983
4984                         if (nBytesRead > dev->nDataBytesPerChunk)
4985                                 nBytesRead = dev->nDataBytesPerChunk;
4986
4987                         nToWriteBack =
4988                             (nBytesRead >
4989                              (start + n)) ? nBytesRead : (start + n);
4990
4991                         if (nToWriteBack < 0 || nToWriteBack > dev->nDataBytesPerChunk)
4992                                 YBUG();
4993
4994                 } else {
4995                         nToCopy = dev->nDataBytesPerChunk - start;
4996                         nToWriteBack = dev->nDataBytesPerChunk;
4997                 }
4998
4999                 if (nToCopy != dev->nDataBytesPerChunk || dev->param.inbandTags) {
5000                         /* An incomplete start or end chunk (or maybe both start and end chunk),
5001                          * or we're using inband tags, so we want to use the cache buffers.
5002                          */
5003                         if (dev->param.nShortOpCaches > 0) {
5004                                 yaffs_ChunkCache *cache;
5005                                 /* If we can't find the data in the cache, then load the cache */
5006                                 cache = yaffs_FindChunkCache(in, chunk);
5007
5008                                 if (!cache
5009                                     && yaffs_CheckSpaceForAllocation(in->
5010                                                                      myDev)) {
5011                                         cache = yaffs_GrabChunkCache(in->myDev);
5012                                         cache->object = in;
5013                                         cache->chunkId = chunk;
5014                                         cache->dirty = 0;
5015                                         cache->locked = 0;
5016                                         yaffs_ReadChunkDataFromObject(in, chunk,
5017                                                                       cache->
5018                                                                       data);
5019                                 } else if (cache &&
5020                                         !cache->dirty &&
5021                                         !yaffs_CheckSpaceForAllocation(in->myDev)) {
5022                                         /* Drop the cache if it was a read cache item and
5023                                          * no space check has been made for it.
5024                                          */
5025                                          cache = NULL;
5026                                 }
5027
5028                                 if (cache) {
5029                                         yaffs_UseChunkCache(dev, cache, 1);
5030                                         cache->locked = 1;
5031
5032
5033                                         memcpy(&cache->data[start], buffer,
5034                                                nToCopy);
5035
5036
5037                                         cache->locked = 0;
5038                                         cache->nBytes = nToWriteBack;
5039
5040                                         if (writeThrough) {
5041                                                 chunkWritten =
5042                                                     yaffs_WriteChunkDataToObject
5043                                                     (cache->object,
5044                                                      cache->chunkId,
5045                                                      cache->data, cache->nBytes,
5046                                                      1);
5047                                                 cache->dirty = 0;
5048                                         }
5049
5050                                 } else {
5051                                         chunkWritten = -1;      /* fail the write */
5052                                 }
5053                         } else {
5054                                 /* An incomplete start or end chunk (or maybe both start and end chunk)
5055                                  * Read into the local buffer then copy, then copy over and write back.
5056                                  */
5057
5058                                 __u8 *localBuffer =
5059                                     yaffs_GetTempBuffer(dev, __LINE__);
5060
5061                                 yaffs_ReadChunkDataFromObject(in, chunk,
5062                                                               localBuffer);
5063
5064
5065
5066                                 memcpy(&localBuffer[start], buffer, nToCopy);
5067
5068                                 chunkWritten =
5069                                     yaffs_WriteChunkDataToObject(in, chunk,
5070                                                                  localBuffer,
5071                                                                  nToWriteBack,
5072                                                                  0);
5073
5074                                 yaffs_ReleaseTempBuffer(dev, localBuffer,
5075                                                         __LINE__);
5076
5077                         }
5078
5079                 } else {
5080                         /* A full chunk. Write directly from the supplied buffer. */
5081
5082
5083
5084                         chunkWritten =
5085                             yaffs_WriteChunkDataToObject(in, chunk, buffer,
5086                                                          dev->nDataBytesPerChunk,
5087                                                          0);
5088
5089                         /* Since we've overwritten the cached data, we better invalidate it. */
5090                         yaffs_InvalidateChunkCache(in, chunk);
5091                 }
5092
5093                 if (chunkWritten >= 0) {
5094                         n -= nToCopy;
5095                         offset += nToCopy;
5096                         buffer += nToCopy;
5097                         nDone += nToCopy;
5098                 }
5099
5100         }
5101
5102         /* Update file object */
5103
5104         if ((startOfWrite + nDone) > in->variant.fileVariant.fileSize)
5105                 in->variant.fileVariant.fileSize = (startOfWrite + nDone);
5106
5107         in->dirty = 1;
5108
5109         return nDone;
5110 }
5111
5112
5113 /* ---------------------- File resizing stuff ------------------ */
5114
5115 static void yaffs_PruneResizedChunks(yaffs_Object *in, int newSize)
5116 {
5117
5118         yaffs_Device *dev = in->myDev;
5119         int oldFileSize = in->variant.fileVariant.fileSize;
5120
5121         int lastDel = 1 + (oldFileSize - 1) / dev->nDataBytesPerChunk;
5122
5123         int startDel = 1 + (newSize + dev->nDataBytesPerChunk - 1) /
5124             dev->nDataBytesPerChunk;
5125         int i;
5126         int chunkId;
5127
5128         /* Delete backwards so that we don't end up with holes if
5129          * power is lost part-way through the operation.
5130          */
5131         for (i = lastDel; i >= startDel; i--) {
5132                 /* NB this could be optimised somewhat,
5133                  * eg. could retrieve the tags and write them without
5134                  * using yaffs_DeleteChunk
5135                  */
5136
5137                 chunkId = yaffs_FindAndDeleteChunkInFile(in, i, NULL);
5138                 if (chunkId > 0) {
5139                         if (chunkId <
5140                             (dev->internalStartBlock * dev->param.nChunksPerBlock)
5141                             || chunkId >=
5142                             ((dev->internalEndBlock +
5143                               1) * dev->param.nChunksPerBlock)) {
5144                                 T(YAFFS_TRACE_ALWAYS,
5145                                   (TSTR("Found daft chunkId %d for %d" TENDSTR),
5146                                    chunkId, i));
5147                         } else {
5148                                 in->nDataChunks--;
5149                                 yaffs_DeleteChunk(dev, chunkId, 1, __LINE__);
5150                         }
5151                 }
5152         }
5153
5154 }
5155
5156 int yaffs_ResizeFile(yaffs_Object *in, loff_t newSize)
5157 {
5158
5159         int oldFileSize = in->variant.fileVariant.fileSize;
5160         __u32 newSizeOfPartialChunk;
5161         int newFullChunks;
5162
5163         yaffs_Device *dev = in->myDev;
5164
5165         yaffs_AddrToChunk(dev, newSize, &newFullChunks, &newSizeOfPartialChunk);
5166
5167         yaffs_FlushFilesChunkCache(in);
5168         yaffs_InvalidateWholeChunkCache(in);
5169
5170         yaffs_CheckGarbageCollection(dev);
5171
5172         if (in->variantType != YAFFS_OBJECT_TYPE_FILE)
5173                 return YAFFS_FAIL;
5174
5175         if (newSize == oldFileSize)
5176                 return YAFFS_OK;
5177
5178         if (newSize < oldFileSize) {
5179
5180                 yaffs_PruneResizedChunks(in, newSize);
5181
5182                 if (newSizeOfPartialChunk != 0) {
5183                         int lastChunk = 1 + newFullChunks;
5184
5185                         __u8 *localBuffer = yaffs_GetTempBuffer(dev, __LINE__);
5186
5187                         /* Got to read and rewrite the last chunk with its new size and zero pad */
5188                         yaffs_ReadChunkDataFromObject(in, lastChunk,
5189                                                       localBuffer);
5190
5191                         memset(localBuffer + newSizeOfPartialChunk, 0,
5192                                dev->nDataBytesPerChunk - newSizeOfPartialChunk);
5193
5194                         yaffs_WriteChunkDataToObject(in, lastChunk, localBuffer,
5195                                                      newSizeOfPartialChunk, 1);
5196
5197                         yaffs_ReleaseTempBuffer(dev, localBuffer, __LINE__);
5198                 }
5199
5200                 in->variant.fileVariant.fileSize = newSize;
5201
5202                 yaffs_PruneFileStructure(dev, &in->variant.fileVariant);
5203         } else {
5204                 /* newsSize > oldFileSize */
5205                 in->variant.fileVariant.fileSize = newSize;
5206         }
5207
5208         /* Write a new object header to reflect the resize.
5209          * show we've shrunk the file, if need be
5210          * Do this only if the file is not in the deleted directories
5211          * and is not shadowed.
5212          */
5213         if (in->parent &&
5214             !in->isShadowed &&
5215             in->parent->objectId != YAFFS_OBJECTID_UNLINKED &&
5216             in->parent->objectId != YAFFS_OBJECTID_DELETED)
5217                 yaffs_UpdateObjectHeader(in, NULL, 0,
5218                                          (newSize < oldFileSize) ? 1 : 0, 0);
5219
5220         return YAFFS_OK;
5221 }
5222
5223 loff_t yaffs_GetFileSize(yaffs_Object *obj)
5224 {
5225         YCHAR *alias = NULL;
5226         obj = yaffs_GetEquivalentObject(obj);
5227
5228         switch (obj->variantType) {
5229         case YAFFS_OBJECT_TYPE_FILE:
5230                 return obj->variant.fileVariant.fileSize;
5231         case YAFFS_OBJECT_TYPE_SYMLINK:
5232                 alias = obj->variant.symLinkVariant.alias;
5233                 if(!alias)
5234                         return 0;
5235                 return yaffs_strnlen(alias,YAFFS_MAX_ALIAS_LENGTH);
5236         default:
5237                 return 0;
5238         }
5239 }
5240
5241
5242
5243 int yaffs_FlushFile(yaffs_Object *in, int updateTime, int dataSync)
5244 {
5245         int retVal;
5246         if (in->dirty) {
5247                 yaffs_FlushFilesChunkCache(in);
5248                 if(dataSync) /* Only sync data */
5249                         retVal=YAFFS_OK;
5250                 else {
5251                         if (updateTime) {
5252 #ifdef CONFIG_YAFFS_WINCE
5253                                 yfsd_WinFileTimeNow(in->win_mtime);
5254 #else
5255
5256                                 in->yst_mtime = Y_CURRENT_TIME;
5257
5258 #endif
5259                         }
5260
5261                         retVal = (yaffs_UpdateObjectHeader(in, NULL, 0, 0, 0) >=
5262                                 0) ? YAFFS_OK : YAFFS_FAIL;
5263                 }
5264         } else {
5265                 retVal = YAFFS_OK;
5266         }
5267
5268         return retVal;
5269
5270 }
5271
5272 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in)
5273 {
5274
5275         /* First off, invalidate the file's data in the cache, without flushing. */
5276         yaffs_InvalidateWholeChunkCache(in);
5277
5278         if (in->myDev->param.isYaffs2 && (in->parent != in->myDev->deletedDir)) {
5279                 /* Move to the unlinked directory so we have a record that it was deleted. */
5280                 yaffs_ChangeObjectName(in, in->myDev->deletedDir, _Y("deleted"), 0, 0);
5281
5282         }
5283
5284         yaffs_RemoveObjectFromDirectory(in);
5285         yaffs_DeleteChunk(in->myDev, in->hdrChunk, 1, __LINE__);
5286         in->hdrChunk = 0;
5287
5288         yaffs_FreeObject(in);
5289         return YAFFS_OK;
5290
5291 }
5292
5293 /* yaffs_DeleteFile deletes the whole file data
5294  * and the inode associated with the file.
5295  * It does not delete the links associated with the file.
5296  */
5297 static int yaffs_UnlinkFileIfNeeded(yaffs_Object *in)
5298 {
5299
5300         int retVal;
5301         int immediateDeletion = 0;
5302
5303         if (!in->myInode)
5304                 immediateDeletion = 1;
5305
5306         if (immediateDeletion) {
5307                 retVal =
5308                     yaffs_ChangeObjectName(in, in->myDev->deletedDir,
5309                                            _Y("deleted"), 0, 0);
5310                 T(YAFFS_TRACE_TRACING,
5311                   (TSTR("yaffs: immediate deletion of file %d" TENDSTR),
5312                    in->objectId));
5313                 in->deleted = 1;
5314                 in->myDev->nDeletedFiles++;
5315                 if (1 || in->myDev->param.isYaffs2)
5316                         yaffs_ResizeFile(in, 0);
5317                 yaffs_SoftDeleteFile(in);
5318         } else {
5319                 retVal =
5320                     yaffs_ChangeObjectName(in, in->myDev->unlinkedDir,
5321                                            _Y("unlinked"), 0, 0);
5322         }
5323
5324
5325         return retVal;
5326 }
5327
5328 int yaffs_DeleteFile(yaffs_Object *in)
5329 {
5330         int retVal = YAFFS_OK;
5331         int deleted = in->deleted;
5332
5333         yaffs_ResizeFile(in, 0);
5334
5335         if (in->nDataChunks > 0) {
5336                 /* Use soft deletion if there is data in the file.
5337                  * That won't be the case if it has been resized to zero.
5338                  */
5339                 if (!in->unlinked)
5340                         retVal = yaffs_UnlinkFileIfNeeded(in);
5341
5342                 if (retVal == YAFFS_OK && in->unlinked && !in->deleted) {
5343                         in->deleted = 1;
5344                         deleted = 1;
5345                         in->myDev->nDeletedFiles++;
5346                         yaffs_SoftDeleteFile(in);
5347                 }
5348                 return deleted ? YAFFS_OK : YAFFS_FAIL;
5349         } else {
5350                 /* The file has no data chunks so we toss it immediately */
5351                 yaffs_FreeTnode(in->myDev, in->variant.fileVariant.top);
5352                 in->variant.fileVariant.top = NULL;
5353                 yaffs_DoGenericObjectDeletion(in);
5354
5355                 return YAFFS_OK;
5356         }
5357 }
5358
5359 static int yaffs_IsNonEmptyDirectory(yaffs_Object *obj)
5360 {
5361         return (obj->variantType == YAFFS_OBJECT_TYPE_DIRECTORY) &&
5362                 !(ylist_empty(&obj->variant.directoryVariant.children));
5363 }
5364
5365 static int yaffs_DeleteDirectory(yaffs_Object *obj)
5366 {
5367         /* First check that the directory is empty. */
5368         if (yaffs_IsNonEmptyDirectory(obj))
5369                 return YAFFS_FAIL;
5370
5371         return yaffs_DoGenericObjectDeletion(obj);
5372 }
5373
5374 static int yaffs_DeleteSymLink(yaffs_Object *in)
5375 {
5376         if(in->variant.symLinkVariant.alias)
5377                 YFREE(in->variant.symLinkVariant.alias);
5378         in->variant.symLinkVariant.alias=NULL;
5379
5380         return yaffs_DoGenericObjectDeletion(in);
5381 }
5382
5383 static int yaffs_DeleteHardLink(yaffs_Object *in)
5384 {
5385         /* remove this hardlink from the list assocaited with the equivalent
5386          * object
5387          */
5388         ylist_del_init(&in->hardLinks);
5389         return yaffs_DoGenericObjectDeletion(in);
5390 }
5391
5392 int yaffs_DeleteObject(yaffs_Object *obj)
5393 {
5394 int retVal = -1;
5395         switch (obj->variantType) {
5396         case YAFFS_OBJECT_TYPE_FILE:
5397                 retVal = yaffs_DeleteFile(obj);
5398                 break;
5399         case YAFFS_OBJECT_TYPE_DIRECTORY:
5400                 return yaffs_DeleteDirectory(obj);
5401                 break;
5402         case YAFFS_OBJECT_TYPE_SYMLINK:
5403                 retVal = yaffs_DeleteSymLink(obj);
5404                 break;
5405         case YAFFS_OBJECT_TYPE_HARDLINK:
5406                 retVal = yaffs_DeleteHardLink(obj);
5407                 break;
5408         case YAFFS_OBJECT_TYPE_SPECIAL:
5409                 retVal = yaffs_DoGenericObjectDeletion(obj);
5410                 break;
5411         case YAFFS_OBJECT_TYPE_UNKNOWN:
5412                 retVal = 0;
5413                 break;          /* should not happen. */
5414         }
5415
5416         return retVal;
5417 }
5418
5419 static int yaffs_UnlinkWorker(yaffs_Object *obj)
5420 {
5421
5422         int immediateDeletion = 0;
5423
5424         if (!obj->myInode)
5425                 immediateDeletion = 1;
5426
5427         if(obj)
5428                 yaffs_UpdateParent(obj->parent);
5429
5430         if (obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK) {
5431                 return yaffs_DeleteHardLink(obj);
5432         } else if (!ylist_empty(&obj->hardLinks)) {
5433                 /* Curve ball: We're unlinking an object that has a hardlink.
5434                  *
5435                  * This problem arises because we are not strictly following
5436                  * The Linux link/inode model.
5437                  *
5438                  * We can't really delete the object.
5439                  * Instead, we do the following:
5440                  * - Select a hardlink.
5441                  * - Unhook it from the hard links
5442                  * - Move it from its parent directory (so that the rename can work)
5443                  * - Rename the object to the hardlink's name.
5444                  * - Delete the hardlink
5445                  */
5446
5447                 yaffs_Object *hl;
5448                 yaffs_Object *parent;
5449                 int retVal;
5450                 YCHAR name[YAFFS_MAX_NAME_LENGTH + 1];
5451
5452                 hl = ylist_entry(obj->hardLinks.next, yaffs_Object, hardLinks);
5453
5454                 yaffs_GetObjectName(hl, name, YAFFS_MAX_NAME_LENGTH + 1);
5455                 parent = hl->parent;
5456
5457                 ylist_del_init(&hl->hardLinks);
5458
5459                 yaffs_AddObjectToDirectory(obj->myDev->unlinkedDir, hl);
5460
5461                 retVal = yaffs_ChangeObjectName(obj,parent, name, 0, 0);
5462
5463                 if (retVal == YAFFS_OK)
5464                         retVal = yaffs_DoGenericObjectDeletion(hl);
5465
5466                 return retVal;
5467
5468         } else if (immediateDeletion) {
5469                 switch (obj->variantType) {
5470                 case YAFFS_OBJECT_TYPE_FILE:
5471                         return yaffs_DeleteFile(obj);
5472                         break;
5473                 case YAFFS_OBJECT_TYPE_DIRECTORY:
5474                         return yaffs_DeleteDirectory(obj);
5475                         break;
5476                 case YAFFS_OBJECT_TYPE_SYMLINK:
5477                         return yaffs_DeleteSymLink(obj);
5478                         break;
5479                 case YAFFS_OBJECT_TYPE_SPECIAL:
5480                         return yaffs_DoGenericObjectDeletion(obj);
5481                         break;
5482                 case YAFFS_OBJECT_TYPE_HARDLINK:
5483                 case YAFFS_OBJECT_TYPE_UNKNOWN:
5484                 default:
5485                         return YAFFS_FAIL;
5486                 }
5487         } else if(yaffs_IsNonEmptyDirectory(obj))
5488                 return YAFFS_FAIL;
5489         else
5490                 return yaffs_ChangeObjectName(obj, obj->myDev->unlinkedDir,
5491                                            _Y("unlinked"), 0, 0);
5492 }
5493
5494
5495 static int yaffs_UnlinkObject(yaffs_Object *obj)
5496 {
5497
5498         if (obj && obj->unlinkAllowed)
5499                 return yaffs_UnlinkWorker(obj);
5500
5501         return YAFFS_FAIL;
5502
5503 }
5504 int yaffs_Unlink(yaffs_Object *dir, const YCHAR *name)
5505 {
5506         yaffs_Object *obj;
5507
5508         obj = yaffs_FindObjectByName(dir, name);
5509         return yaffs_UnlinkObject(obj);
5510 }
5511
5512 /*----------------------- Initialisation Scanning ---------------------- */
5513
5514 static void yaffs_HandleShadowedObject(yaffs_Device *dev, int objId,
5515                                 int backwardScanning)
5516 {
5517         yaffs_Object *obj;
5518
5519         if (!backwardScanning) {
5520                 /* Handle YAFFS1 forward scanning case
5521                  * For YAFFS1 we always do the deletion
5522                  */
5523
5524         } else {
5525                 /* Handle YAFFS2 case (backward scanning)
5526                  * If the shadowed object exists then ignore.
5527                  */
5528                 obj = yaffs_FindObjectByNumber(dev, objId);
5529                 if(obj)
5530                         return;
5531         }
5532
5533         /* Let's create it (if it does not exist) assuming it is a file so that it can do shrinking etc.
5534          * We put it in unlinked dir to be cleaned up after the scanning
5535          */
5536         obj =
5537             yaffs_FindOrCreateObjectByNumber(dev, objId,
5538                                              YAFFS_OBJECT_TYPE_FILE);
5539         if (!obj)
5540                 return;
5541         obj->isShadowed = 1;
5542         yaffs_AddObjectToDirectory(dev->unlinkedDir, obj);
5543         obj->variant.fileVariant.shrinkSize = 0;
5544         obj->valid = 1;         /* So that we don't read any other info for this file */
5545
5546 }
5547
5548 typedef struct {
5549         int seq;
5550         int block;
5551 } yaffs_BlockIndex;
5552
5553
5554 static void yaffs_HardlinkFixup(yaffs_Device *dev, yaffs_Object *hardList)
5555 {
5556         yaffs_Object *hl;
5557         yaffs_Object *in;
5558
5559         while (hardList) {
5560                 hl = hardList;
5561                 hardList = (yaffs_Object *) (hardList->hardLinks.next);
5562
5563                 in = yaffs_FindObjectByNumber(dev,
5564                                               hl->variant.hardLinkVariant.
5565                                               equivalentObjectId);
5566
5567                 if (in) {
5568                         /* Add the hardlink pointers */
5569                         hl->variant.hardLinkVariant.equivalentObject = in;
5570                         ylist_add(&hl->hardLinks, &in->hardLinks);
5571                 } else {
5572                         /* Todo Need to report/handle this better.
5573                          * Got a problem... hardlink to a non-existant object
5574                          */
5575                         hl->variant.hardLinkVariant.equivalentObject = NULL;
5576                         YINIT_LIST_HEAD(&hl->hardLinks);
5577
5578                 }
5579         }
5580 }
5581
5582
5583
5584
5585
5586 static int ybicmp(const void *a, const void *b)
5587 {
5588         register int aseq = ((yaffs_BlockIndex *)a)->seq;
5589         register int bseq = ((yaffs_BlockIndex *)b)->seq;
5590         register int ablock = ((yaffs_BlockIndex *)a)->block;
5591         register int bblock = ((yaffs_BlockIndex *)b)->block;
5592         if (aseq == bseq)
5593                 return ablock - bblock;
5594         else
5595                 return aseq - bseq;
5596 }
5597
5598
5599 struct yaffs_ShadowFixerStruct {
5600         int objectId;
5601         int shadowedId;
5602         struct yaffs_ShadowFixerStruct *next;
5603 };
5604
5605
5606 static void yaffs_StripDeletedObjects(yaffs_Device *dev)
5607 {
5608         /*
5609         *  Sort out state of unlinked and deleted objects after scanning.
5610         */
5611         struct ylist_head *i;
5612         struct ylist_head *n;
5613         yaffs_Object *l;
5614
5615         /* Soft delete all the unlinked files */
5616         ylist_for_each_safe(i, n,
5617                 &dev->unlinkedDir->variant.directoryVariant.children) {
5618                 if (i) {
5619                         l = ylist_entry(i, yaffs_Object, siblings);
5620                         yaffs_DeleteObject(l);
5621                 }
5622         }
5623
5624         ylist_for_each_safe(i, n,
5625                 &dev->deletedDir->variant.directoryVariant.children) {
5626                 if (i) {
5627                         l = ylist_entry(i, yaffs_Object, siblings);
5628                         yaffs_DeleteObject(l);
5629                 }
5630         }
5631
5632 }
5633
5634 /*
5635  * This code iterates through all the objects making sure that they are rooted.
5636  * Any unrooted objects are re-rooted in lost+found.
5637  * An object needs to be in one of:
5638  * - Directly under deleted, unlinked
5639  * - Directly or indirectly under root.
5640  *
5641  * Note:
5642  *  This code assumes that we don't ever change the current relationships between
5643  *  directories:
5644  *   rootDir->parent == unlinkedDir->parent == deletedDir->parent == NULL
5645  *   lostNfound->parent == rootDir
5646  *
5647  * This fixes the problem where directories might have inadvertently been deleted
5648  * leaving the object "hanging" without being rooted in the directory tree.
5649  */
5650  
5651 static int yaffs_HasNULLParent(yaffs_Device *dev, yaffs_Object *obj)
5652 {
5653         return (obj == dev->deletedDir ||
5654                 obj == dev->unlinkedDir||
5655                 obj == dev->rootDir);
5656 }
5657
5658 static void yaffs_FixHangingObjects(yaffs_Device *dev)
5659 {
5660         yaffs_Object *obj;
5661         yaffs_Object *parent;
5662         int i;
5663         struct ylist_head *lh;
5664         struct ylist_head *n;
5665         int depthLimit;
5666         int hanging;
5667
5668
5669         /* Iterate through the objects in each hash entry,
5670          * looking at each object.
5671          * Make sure it is rooted.
5672          */
5673
5674         for (i = 0; i <  YAFFS_NOBJECT_BUCKETS; i++) {
5675                 ylist_for_each_safe(lh, n, &dev->objectBucket[i].list) {
5676                         if (lh) {
5677                                 obj = ylist_entry(lh, yaffs_Object, hashLink);
5678                                 parent= obj->parent;
5679                                 
5680                                 if(yaffs_HasNULLParent(dev,obj)){
5681                                         /* These directories are not hanging */
5682                                         hanging = 0;
5683                                 }
5684                                 else if(!parent || parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5685                                         hanging = 1;
5686                                 else if(yaffs_HasNULLParent(dev,parent))
5687                                         hanging = 0;
5688                                 else {
5689                                         /*
5690                                          * Need to follow the parent chain to see if it is hanging.
5691                                          */
5692                                         hanging = 0;
5693                                         depthLimit=100;
5694
5695                                         while(parent != dev->rootDir &&
5696                                                 parent->parent &&
5697                                                 parent->parent->variantType == YAFFS_OBJECT_TYPE_DIRECTORY &&
5698                                                 depthLimit > 0){
5699                                                 parent = parent->parent;
5700                                                 depthLimit--;
5701                                         }
5702                                         if(parent != dev->rootDir)
5703                                                 hanging = 1;
5704                                 }
5705                                 if(hanging){
5706                                         T(YAFFS_TRACE_SCAN,
5707                                           (TSTR("Hanging object %d moved to lost and found" TENDSTR),
5708                                                 obj->objectId));
5709                                         yaffs_AddObjectToDirectory(dev->lostNFoundDir,obj);
5710                                 }
5711                         }
5712                 }
5713         }
5714 }
5715
5716
5717 /*
5718  * Delete directory contents for cleaning up lost and found.
5719  */
5720 static void yaffs_DeleteDirectoryContents(yaffs_Object *dir)
5721 {
5722         yaffs_Object *obj;
5723         struct ylist_head *lh;
5724         struct ylist_head *n;
5725
5726         if(dir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
5727                 YBUG();
5728         
5729         ylist_for_each_safe(lh, n, &dir->variant.directoryVariant.children) {
5730                 if (lh) {
5731                         obj = ylist_entry(lh, yaffs_Object, siblings);
5732                         if(obj->variantType == YAFFS_OBJECT_TYPE_DIRECTORY)
5733                                 yaffs_DeleteDirectoryContents(obj);
5734
5735                         T(YAFFS_TRACE_SCAN,
5736                                 (TSTR("Deleting lost_found object %d" TENDSTR),
5737                                 obj->objectId));
5738
5739                         /* Need to use UnlinkObject since Delete would not handle
5740                          * hardlinked objects correctly.
5741                          */
5742                         yaffs_UnlinkObject(obj); 
5743                 }
5744         }
5745                         
5746 }
5747
5748 static void yaffs_EmptyLostAndFound(yaffs_Device *dev)
5749 {
5750         yaffs_DeleteDirectoryContents(dev->lostNFoundDir);
5751 }
5752
5753 static int yaffs_Scan(yaffs_Device *dev)
5754 {
5755         yaffs_ExtendedTags tags;
5756         int blk;
5757         int blockIterator;
5758         int startIterator;
5759         int endIterator;
5760         int result;
5761
5762         int chunk;
5763         int c;
5764         int deleted;
5765         yaffs_BlockState state;
5766         yaffs_Object *hardList = NULL;
5767         yaffs_BlockInfo *bi;
5768         __u32 sequenceNumber;
5769         yaffs_ObjectHeader *oh;
5770         yaffs_Object *in;
5771         yaffs_Object *parent;
5772
5773         int alloc_failed = 0;
5774
5775         struct yaffs_ShadowFixerStruct *shadowFixerList = NULL;
5776
5777
5778         __u8 *chunkData;
5779
5780
5781
5782         T(YAFFS_TRACE_SCAN,
5783           (TSTR("yaffs_Scan starts  intstartblk %d intendblk %d..." TENDSTR),
5784            dev->internalStartBlock, dev->internalEndBlock));
5785
5786         chunkData = yaffs_GetTempBuffer(dev, __LINE__);
5787
5788         dev->sequenceNumber = YAFFS_LOWEST_SEQUENCE_NUMBER;
5789
5790         /* Scan all the blocks to determine their state */
5791         for (blk = dev->internalStartBlock; blk <= dev->internalEndBlock; blk++) {
5792                 bi = yaffs_GetBlockInfo(dev, blk);
5793                 yaffs_ClearChunkBits(dev, blk);
5794                 bi->pagesInUse = 0;
5795                 bi->softDeletions = 0;
5796
5797                 yaffs_QueryInitialBlockState(dev, blk, &state, &sequenceNumber);
5798
5799                 bi->blockState = state;
5800                 bi->sequenceNumber = sequenceNumber;
5801
5802                 if (bi->sequenceNumber == YAFFS_SEQUENCE_BAD_BLOCK)
5803                         bi->blockState = state = YAFFS_BLOCK_STATE_DEAD;
5804
5805                 T(YAFFS_TRACE_SCAN_DEBUG,
5806                   (TSTR("Block scanning block %d state %d seq %d" TENDSTR), blk,
5807                    state, sequenceNumber));
5808
5809                 if (state == YAFFS_BLOCK_STATE_DEAD) {
5810                         T(YAFFS_TRACE_BAD_BLOCKS,
5811                           (TSTR("block %d is bad" TENDSTR), blk));
5812                 } else if (state == YAFFS_BLOCK_STATE_EMPTY) {
5813                         T(YAFFS_TRACE_SCAN_DEBUG,
5814                           (TSTR("Block empty " TENDSTR)));
5815                         dev->nErasedBlocks++;
5816                         dev->nFreeChunks += dev->param.nChunksPerBlock;
5817                 }
5818         }
5819
5820         startIterator = dev->internalStartBlock;
5821         endIterator = dev->internalEndBlock;
5822
5823         /* For each block.... */
5824         for (blockIterator = startIterator; !alloc_failed && blockIterator <= endIterator;
5825              blockIterator++) {
5826
5827                 YYIELD();
5828
5829                 YYIELD();
5830
5831                 blk = blockIterator;
5832
5833                 bi = yaffs_GetBlockInfo(dev, blk);
5834                 state = bi->blockState;
5835
5836                 deleted = 0;
5837
5838                 /* For each chunk in each block that needs scanning....*/
5839                 for (c = 0; !alloc_failed && c < dev->param.nChunksPerBlock &&
5840                      state == YAFFS_BLOCK_STATE_NEEDS_SCANNING; c++) {
5841                         /* Read the tags and decide what to do */
5842                         chunk = blk * dev->param.nChunksPerBlock + c;
5843
5844                         result = yaffs_ReadChunkWithTagsFromNAND(dev, chunk, NULL,
5845                                                         &tags);
5846
5847                         /* Let's have a good look at this chunk... */
5848
5849                         if (tags.eccResult == YAFFS_ECC_RESULT_UNFIXED || tags.chunkDeleted) {
5850                                 /* YAFFS1 only...
5851                                  * A deleted chunk
5852                                  */
5853                                 deleted++;
5854                                 dev->nFreeChunks++;
5855                                 /*T((" %d %d deleted\n",blk,c)); */
5856                         } else if (!tags.chunkUsed) {
5857                                 /* An unassigned chunk in the block
5858                                  * This means that either the block is empty or
5859                                  * this is the one being allocated from
5860                                  */
5861
5862                                 if (c == 0) {
5863                                         /* We're looking at the first chunk in the block so the block is unused */
5864                                         state = YAFFS_BLOCK_STATE_EMPTY;
5865                                         dev->nErasedBlocks++;
5866                                 } else {
5867                                         /* this is the block being allocated from */
5868                                         T(YAFFS_TRACE_SCAN,
5869                                           (TSTR
5870                                            (" Allocating from %d %d" TENDSTR),
5871                                            blk, c));
5872                                         state = YAFFS_BLOCK_STATE_ALLOCATING;
5873                                         dev->allocationBlock = blk;
5874                                         dev->allocationPage = c;
5875                                         dev->allocationBlockFinder = blk;
5876                                         /* Set block finder here to encourage the allocator to go forth from here. */
5877
5878                                 }
5879
5880                                 dev->nFreeChunks += (dev->param.nChunksPerBlock - c);
5881                         } else if (tags.chunkId > 0) {
5882                                 /* chunkId > 0 so it is a data chunk... */
5883                                 unsigned int endpos;
5884
5885                                 yaffs_SetChunkBit(dev, blk, c);
5886                                 bi->pagesInUse++;
5887
5888                                 in = yaffs_FindOrCreateObjectByNumber(dev,
5889                                                                       tags.
5890                                                                       objectId,
5891                                                                       YAFFS_OBJECT_TYPE_FILE);
5892                                 /* PutChunkIntoFile checks for a clash (two data chunks with
5893                                  * the same chunkId).
5894                                  */
5895
5896                                 if (!in)
5897                                         alloc_failed = 1;
5898
5899                                 if (in) {
5900                                         if (!yaffs_PutChunkIntoFile(in, tags.chunkId, chunk, 1))
5901                                                 alloc_failed = 1;
5902                                 }
5903
5904                                 endpos =
5905                                     (tags.chunkId - 1) * dev->nDataBytesPerChunk +
5906                                     tags.byteCount;
5907                                 if (in &&
5908                                     in->variantType == YAFFS_OBJECT_TYPE_FILE
5909                                     && in->variant.fileVariant.scannedFileSize <
5910                                     endpos) {
5911                                         in->variant.fileVariant.
5912                                             scannedFileSize = endpos;
5913                                         if (!dev->param.useHeaderFileSize) {
5914                                                 in->variant.fileVariant.
5915                                                     fileSize =
5916                                                     in->variant.fileVariant.
5917                                                     scannedFileSize;
5918                                         }
5919
5920                                 }
5921                                 /* T((" %d %d data %d %d\n",blk,c,tags.objectId,tags.chunkId));   */
5922                         } else {
5923                                 /* chunkId == 0, so it is an ObjectHeader.
5924                                  * Thus, we read in the object header and make the object
5925                                  */
5926                                 yaffs_SetChunkBit(dev, blk, c);
5927                                 bi->pagesInUse++;
5928
5929                                 result = yaffs_ReadChunkWithTagsFromNAND(dev, chunk,
5930                                                                 chunkData,
5931                                                                 NULL);
5932
5933                                 oh = (yaffs_ObjectHeader *) chunkData;
5934
5935                                 in = yaffs_FindObjectByNumber(dev,
5936                                                               tags.objectId);
5937                                 if (in && in->variantType != oh->type) {
5938                                         /* This should not happen, but somehow
5939                                          * Wev'e ended up with an objectId that has been reused but not yet
5940                                          * deleted, and worse still it has changed type. Delete the old object.
5941                                          */
5942
5943                                         yaffs_DeleteObject(in);
5944
5945                                         in = 0;
5946                                 }
5947
5948                                 in = yaffs_FindOrCreateObjectByNumber(dev,
5949                                                                       tags.
5950                                                                       objectId,
5951                                                                       oh->type);
5952
5953                                 if (!in)
5954                                         alloc_failed = 1;
5955
5956                                 if (in && oh->shadowsObject > 0) {
5957
5958                                         struct yaffs_ShadowFixerStruct *fixer;
5959                                         fixer = YMALLOC(sizeof(struct yaffs_ShadowFixerStruct));
5960                                         if (fixer) {
5961                                                 fixer->next = shadowFixerList;
5962                                                 shadowFixerList = fixer;
5963                                                 fixer->objectId = tags.objectId;
5964                                                 fixer->shadowedId = oh->shadowsObject;
5965                                         }
5966
5967                                 }
5968
5969                                 if (in && in->valid) {
5970                                         /* We have already filled this one. We have a duplicate and need to resolve it. */
5971
5972                                         unsigned existingSerial = in->serial;
5973                                         unsigned newSerial = tags.serialNumber;
5974
5975                                         if (((existingSerial + 1) & 3) == newSerial) {
5976                                                 /* Use new one - destroy the exisiting one */
5977                                                 yaffs_DeleteChunk(dev,
5978                                                                   in->hdrChunk,
5979                                                                   1, __LINE__);
5980                                                 in->valid = 0;
5981                                         } else {
5982                                                 /* Use existing - destroy this one. */
5983                                                 yaffs_DeleteChunk(dev, chunk, 1,
5984                                                                   __LINE__);
5985                                         }
5986                                 }
5987
5988                                 if (in && !in->valid &&
5989                                     (tags.objectId == YAFFS_OBJECTID_ROOT ||
5990                                      tags.objectId == YAFFS_OBJECTID_LOSTNFOUND)) {
5991                                         /* We only load some info, don't fiddle with directory structure */
5992                                         in->valid = 1;
5993                                         in->variantType = oh->type;
5994
5995                                         in->yst_mode = oh->yst_mode;
5996 #ifdef CONFIG_YAFFS_WINCE
5997                                         in->win_atime[0] = oh->win_atime[0];
5998                                         in->win_ctime[0] = oh->win_ctime[0];
5999                                         in->win_mtime[0] = oh->win_mtime[0];
6000                                         in->win_atime[1] = oh->win_atime[1];
6001                                         in->win_ctime[1] = oh->win_ctime[1];
6002                                         in->win_mtime[1] = oh->win_mtime[1];
6003 #else
6004                                         in->yst_uid = oh->yst_uid;
6005                                         in->yst_gid = oh->yst_gid;
6006                                         in->yst_atime = oh->yst_atime;
6007                                         in->yst_mtime = oh->yst_mtime;
6008                                         in->yst_ctime = oh->yst_ctime;
6009                                         in->yst_rdev = oh->yst_rdev;
6010 #endif
6011                                         in->hdrChunk = chunk;
6012                                         in->serial = tags.serialNumber;
6013
6014                                 } else if (in && !in->valid) {
6015                                         /* we need to load this info */
6016
6017                                         in->valid = 1;
6018                                         in->variantType = oh->type;
6019
6020                                         in->yst_mode = oh->yst_mode;
6021 #ifdef CONFIG_YAFFS_WINCE
6022                                         in->win_atime[0] = oh->win_atime[0];
6023                                         in->win_ctime[0] = oh->win_ctime[0];
6024                                         in->win_mtime[0] = oh->win_mtime[0];
6025                                         in->win_atime[1] = oh->win_atime[1];
6026                                         in->win_ctime[1] = oh->win_ctime[1];
6027                                         in->win_mtime[1] = oh->win_mtime[1];
6028 #else
6029                                         in->yst_uid = oh->yst_uid;
6030                                         in->yst_gid = oh->yst_gid;
6031                                         in->yst_atime = oh->yst_atime;
6032                                         in->yst_mtime = oh->yst_mtime;
6033                                         in->yst_ctime = oh->yst_ctime;
6034                                         in->yst_rdev = oh->yst_rdev;
6035 #endif
6036                                         in->hdrChunk = chunk;
6037                                         in->serial = tags.serialNumber;
6038
6039                                         yaffs_SetObjectName(in, oh->name);
6040                                         in->dirty = 0;
6041
6042                                         /* directory stuff...
6043                                          * hook up to parent
6044                                          */
6045
6046                                         parent =
6047                                             yaffs_FindOrCreateObjectByNumber
6048                                             (dev, oh->parentObjectId,
6049                                              YAFFS_OBJECT_TYPE_DIRECTORY);
6050                                         if (!parent)
6051                                                 alloc_failed = 1;
6052                                         if (parent && parent->variantType ==
6053                                             YAFFS_OBJECT_TYPE_UNKNOWN) {
6054                                                 /* Set up as a directory */
6055                                                 parent->variantType =
6056                                                         YAFFS_OBJECT_TYPE_DIRECTORY;
6057                                                 YINIT_LIST_HEAD(&parent->variant.
6058                                                                 directoryVariant.
6059                                                                 children);
6060                                         } else if (!parent || parent->variantType !=
6061                                                    YAFFS_OBJECT_TYPE_DIRECTORY) {
6062                                                 /* Hoosterman, another problem....
6063                                                  * We're trying to use a non-directory as a directory
6064                                                  */
6065
6066                                                 T(YAFFS_TRACE_ERROR,
6067                                                   (TSTR
6068                                                    ("yaffs tragedy: attempting to use non-directory as a directory in scan. Put in lost+found."
6069                                                     TENDSTR)));
6070                                                 parent = dev->lostNFoundDir;
6071                                         }
6072
6073                                         yaffs_AddObjectToDirectory(parent, in);
6074
6075                                         if (0 && (parent == dev->deletedDir ||
6076                                                   parent == dev->unlinkedDir)) {
6077                                                 in->deleted = 1;        /* If it is unlinked at start up then it wants deleting */
6078                                                 dev->nDeletedFiles++;
6079                                         }
6080                                         /* Note re hardlinks.
6081                                          * Since we might scan a hardlink before its equivalent object is scanned
6082                                          * we put them all in a list.
6083                                          * After scanning is complete, we should have all the objects, so we run through this
6084                                          * list and fix up all the chains.
6085                                          */
6086
6087                                         switch (in->variantType) {
6088                                         case YAFFS_OBJECT_TYPE_UNKNOWN:
6089                                                 /* Todo got a problem */
6090                                                 break;
6091                                         case YAFFS_OBJECT_TYPE_FILE:
6092                                                 if (dev->param.useHeaderFileSize)
6093
6094                                                         in->variant.fileVariant.
6095                                                             fileSize =
6096                                                             oh->fileSize;
6097
6098                                                 break;
6099                                         case YAFFS_OBJECT_TYPE_HARDLINK:
6100                                                 in->variant.hardLinkVariant.
6101                                                         equivalentObjectId =
6102                                                         oh->equivalentObjectId;
6103                                                 in->hardLinks.next =
6104                                                         (struct ylist_head *)
6105                                                         hardList;
6106                                                 hardList = in;
6107                                                 break;
6108                                         case YAFFS_OBJECT_TYPE_DIRECTORY:
6109                                                 /* Do nothing */
6110                                                 break;
6111                                         case YAFFS_OBJECT_TYPE_SPECIAL:
6112                                                 /* Do nothing */
6113                                                 break;
6114                                         case YAFFS_OBJECT_TYPE_SYMLINK:
6115                                                 in->variant.symLinkVariant.alias =
6116                                                     yaffs_CloneString(oh->alias);
6117                                                 if (!in->variant.symLinkVariant.alias)
6118                                                         alloc_failed = 1;
6119                                                 break;
6120                                         }
6121
6122                                 }
6123                         }
6124                 }
6125
6126                 if (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING) {
6127                         /* If we got this far while scanning, then the block is fully allocated.*/
6128                         state = YAFFS_BLOCK_STATE_FULL;
6129                 }
6130
6131                 if (state == YAFFS_BLOCK_STATE_ALLOCATING) {
6132                         /* If the block was partially allocated then treat it as fully allocated.*/
6133                         state = YAFFS_BLOCK_STATE_FULL;
6134                         dev->allocationBlock = -1;
6135                 }
6136
6137                 bi->blockState = state;
6138
6139                 /* Now let's see if it was dirty */
6140                 if (bi->pagesInUse == 0 &&
6141                     !bi->hasShrinkHeader &&
6142                     bi->blockState == YAFFS_BLOCK_STATE_FULL) {
6143                         yaffs_BlockBecameDirty(dev, blk);
6144                 }
6145
6146         }
6147
6148
6149         /* Ok, we've done all the scanning.
6150          * Fix up the hard link chains.
6151          * We should now have scanned all the objects, now it's time to add these
6152          * hardlinks.
6153          */
6154
6155         yaffs_HardlinkFixup(dev, hardList);
6156
6157         /* Fix up any shadowed objects */
6158         {
6159                 struct yaffs_ShadowFixerStruct *fixer;
6160                 yaffs_Object *obj;
6161
6162                 while (shadowFixerList) {
6163                         fixer = shadowFixerList;
6164                         shadowFixerList = fixer->next;
6165                         /* Complete the rename transaction by deleting the shadowed object
6166                          * then setting the object header to unshadowed.
6167                          */
6168                         obj = yaffs_FindObjectByNumber(dev, fixer->shadowedId);
6169                         if (obj)
6170                                 yaffs_DeleteObject(obj);
6171
6172                         obj = yaffs_FindObjectByNumber(dev, fixer->objectId);
6173
6174                         if (obj)
6175                                 yaffs_UpdateObjectHeader(obj, NULL, 1, 0, 0);
6176
6177                         YFREE(fixer);
6178                 }
6179         }
6180
6181         yaffs_ReleaseTempBuffer(dev, chunkData, __LINE__);
6182
6183         if (alloc_failed)
6184                 return YAFFS_FAIL;
6185
6186         T(YAFFS_TRACE_SCAN, (TSTR("yaffs_Scan ends" TENDSTR)));
6187
6188
6189         return YAFFS_OK;
6190 }
6191
6192 static void yaffs_CheckObjectDetailsLoaded(yaffs_Object *in)
6193 {
6194         __u8 *chunkData;
6195         yaffs_ObjectHeader *oh;
6196         yaffs_Device *dev;
6197         yaffs_ExtendedTags tags;
6198         int result;
6199         int alloc_failed = 0;
6200
6201         if (!in)
6202                 return;
6203
6204         dev = in->myDev;
6205
6206 #if 0
6207         T(YAFFS_TRACE_SCAN, (TSTR("details for object %d %s loaded" TENDSTR),
6208                 in->objectId,
6209                 in->lazyLoaded ? "not yet" : "already"));
6210 #endif
6211
6212         if (in->lazyLoaded && in->hdrChunk > 0) {
6213                 in->lazyLoaded = 0;
6214                 chunkData = yaffs_GetTempBuffer(dev, __LINE__);
6215
6216                 result = yaffs_ReadChunkWithTagsFromNAND(dev, in->hdrChunk, chunkData, &tags);
6217                 oh = (yaffs_ObjectHeader *) chunkData;
6218
6219                 in->yst_mode = oh->yst_mode;
6220 #ifdef CONFIG_YAFFS_WINCE
6221                 in->win_atime[0] = oh->win_atime[0];
6222                 in->win_ctime[0] = oh->win_ctime[0];
6223                 in->win_mtime[0] = oh->win_mtime[0];
6224                 in->win_atime[1] = oh->win_atime[1];
6225                 in->win_ctime[1] = oh->win_ctime[1];
6226                 in->win_mtime[1] = oh->win_mtime[1];
6227 #else
6228                 in->yst_uid = oh->yst_uid;
6229                 in->yst_gid = oh->yst_gid;
6230                 in->yst_atime = oh->yst_atime;
6231                 in->yst_mtime = oh->yst_mtime;
6232                 in->yst_ctime = oh->yst_ctime;
6233                 in->yst_rdev = oh->yst_rdev;
6234
6235 #endif
6236                 yaffs_SetObjectName(in, oh->name);
6237
6238                 if (in->variantType == YAFFS_OBJECT_TYPE_SYMLINK) {
6239                         in->variant.symLinkVariant.alias =
6240                                                     yaffs_CloneString(oh->alias);
6241                         if (!in->variant.symLinkVariant.alias)
6242                                 alloc_failed = 1; /* Not returned to caller */
6243                 }
6244
6245                 yaffs_ReleaseTempBuffer(dev, chunkData, __LINE__);
6246         }
6247 }
6248
6249 static int yaffs_ScanBackwards(yaffs_Device *dev)
6250 {
6251         yaffs_ExtendedTags tags;
6252         int blk;
6253         int blockIterator;
6254         int startIterator;
6255         int endIterator;
6256         int nBlocksToScan = 0;
6257
6258         int chunk;
6259         int result;
6260         int c;
6261         int deleted;
6262         yaffs_BlockState state;
6263         yaffs_Object *hardList = NULL;
6264         yaffs_BlockInfo *bi;
6265         __u32 sequenceNumber;
6266         yaffs_ObjectHeader *oh;
6267         yaffs_Object *in;
6268         yaffs_Object *parent;
6269         int nBlocks = dev->internalEndBlock - dev->internalStartBlock + 1;
6270         int itsUnlinked;
6271         __u8 *chunkData;
6272
6273         int fileSize;
6274         int isShrink;
6275         int foundChunksInBlock;
6276         int equivalentObjectId;
6277         int alloc_failed = 0;
6278
6279
6280         yaffs_BlockIndex *blockIndex = NULL;
6281         int altBlockIndex = 0;
6282
6283         if (!dev->param.isYaffs2) {
6284                 T(YAFFS_TRACE_SCAN,
6285                   (TSTR("yaffs_ScanBackwards is only for YAFFS2!" TENDSTR)));
6286                 return YAFFS_FAIL;
6287         }
6288
6289         T(YAFFS_TRACE_SCAN,
6290           (TSTR
6291            ("yaffs_ScanBackwards starts  intstartblk %d intendblk %d..."
6292             TENDSTR), dev->internalStartBlock, dev->internalEndBlock));
6293
6294
6295         dev->sequenceNumber = YAFFS_LOWEST_SEQUENCE_NUMBER;
6296
6297         blockIndex = YMALLOC(nBlocks * sizeof(yaffs_BlockIndex));
6298
6299         if (!blockIndex) {
6300                 blockIndex = YMALLOC_ALT(nBlocks * sizeof(yaffs_BlockIndex));
6301                 altBlockIndex = 1;
6302         }
6303
6304         if (!blockIndex) {
6305                 T(YAFFS_TRACE_SCAN,
6306                   (TSTR("yaffs_Scan() could not allocate block index!" TENDSTR)));
6307                 return YAFFS_FAIL;
6308         }
6309
6310         dev->blocksInCheckpoint = 0;
6311
6312         chunkData = yaffs_GetTempBuffer(dev, __LINE__);
6313
6314         /* Scan all the blocks to determine their state */
6315         for (blk = dev->internalStartBlock; blk <= dev->internalEndBlock; blk++) {
6316                 bi = yaffs_GetBlockInfo(dev, blk);
6317                 yaffs_ClearChunkBits(dev, blk);
6318                 bi->pagesInUse = 0;
6319                 bi->softDeletions = 0;
6320
6321                 yaffs_QueryInitialBlockState(dev, blk, &state, &sequenceNumber);
6322
6323                 bi->blockState = state;
6324                 bi->sequenceNumber = sequenceNumber;
6325
6326                 if (bi->sequenceNumber == YAFFS_SEQUENCE_CHECKPOINT_DATA)
6327                         bi->blockState = state = YAFFS_BLOCK_STATE_CHECKPOINT;
6328                 if (bi->sequenceNumber == YAFFS_SEQUENCE_BAD_BLOCK)
6329                         bi->blockState = state = YAFFS_BLOCK_STATE_DEAD;
6330
6331                 T(YAFFS_TRACE_SCAN_DEBUG,
6332                   (TSTR("Block scanning block %d state %d seq %d" TENDSTR), blk,
6333                    state, sequenceNumber));
6334
6335
6336                 if (state == YAFFS_BLOCK_STATE_CHECKPOINT) {
6337                         dev->blocksInCheckpoint++;
6338
6339                 } else if (state == YAFFS_BLOCK_STATE_DEAD) {
6340                         T(YAFFS_TRACE_BAD_BLOCKS,
6341                           (TSTR("block %d is bad" TENDSTR), blk));
6342                 } else if (state == YAFFS_BLOCK_STATE_EMPTY) {
6343                         T(YAFFS_TRACE_SCAN_DEBUG,
6344                           (TSTR("Block empty " TENDSTR)));
6345                         dev->nErasedBlocks++;
6346                         dev->nFreeChunks += dev->param.nChunksPerBlock;
6347                 } else if (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING) {
6348
6349                         /* Determine the highest sequence number */
6350                         if (sequenceNumber >= YAFFS_LOWEST_SEQUENCE_NUMBER &&
6351                             sequenceNumber < YAFFS_HIGHEST_SEQUENCE_NUMBER) {
6352
6353                                 blockIndex[nBlocksToScan].seq = sequenceNumber;
6354                                 blockIndex[nBlocksToScan].block = blk;
6355
6356                                 nBlocksToScan++;
6357
6358                                 if (sequenceNumber >= dev->sequenceNumber)
6359                                         dev->sequenceNumber = sequenceNumber;
6360                         } else {
6361                                 /* TODO: Nasty sequence number! */
6362                                 T(YAFFS_TRACE_SCAN,
6363                                   (TSTR
6364                                    ("Block scanning block %d has bad sequence number %d"
6365                                     TENDSTR), blk, sequenceNumber));
6366
6367                         }
6368                 }
6369         }
6370
6371         T(YAFFS_TRACE_SCAN,
6372         (TSTR("%d blocks to be sorted..." TENDSTR), nBlocksToScan));
6373
6374
6375
6376         YYIELD();
6377
6378         /* Sort the blocks */
6379 #ifndef CONFIG_YAFFS_USE_OWN_SORT
6380         {
6381                 /* Use qsort now. */
6382                 yaffs_qsort(blockIndex, nBlocksToScan, sizeof(yaffs_BlockIndex), ybicmp);
6383         }
6384 #else
6385         {
6386                 /* Dungy old bubble sort... */
6387
6388                 yaffs_BlockIndex temp;
6389                 int i;
6390                 int j;
6391
6392                 for (i = 0; i < nBlocksToScan; i++)
6393                         for (j = i + 1; j < nBlocksToScan; j++)
6394                                 if (blockIndex[i].seq > blockIndex[j].seq) {
6395                                         temp = blockIndex[j];
6396                                         blockIndex[j] = blockIndex[i];
6397                                         blockIndex[i] = temp;
6398                                 }
6399         }
6400 #endif
6401
6402         YYIELD();
6403
6404         T(YAFFS_TRACE_SCAN, (TSTR("...done" TENDSTR)));
6405
6406         /* Now scan the blocks looking at the data. */
6407         startIterator = 0;
6408         endIterator = nBlocksToScan - 1;
6409         T(YAFFS_TRACE_SCAN_DEBUG,
6410           (TSTR("%d blocks to be scanned" TENDSTR), nBlocksToScan));
6411
6412         /* For each block.... backwards */
6413         for (blockIterator = endIterator; !alloc_failed && blockIterator >= startIterator;
6414                         blockIterator--) {
6415                 /* Cooperative multitasking! This loop can run for so
6416                    long that watchdog timers expire. */
6417                 YYIELD();
6418
6419                 /* get the block to scan in the correct order */
6420                 blk = blockIndex[blockIterator].block;
6421
6422                 bi = yaffs_GetBlockInfo(dev, blk);
6423
6424
6425                 state = bi->blockState;
6426
6427                 deleted = 0;
6428
6429                 /* For each chunk in each block that needs scanning.... */
6430                 foundChunksInBlock = 0;
6431                 for (c = dev->param.nChunksPerBlock - 1;
6432                      !alloc_failed && c >= 0 &&
6433                      (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
6434                       state == YAFFS_BLOCK_STATE_ALLOCATING); c--) {
6435                         /* Scan backwards...
6436                          * Read the tags and decide what to do
6437                          */
6438
6439                         chunk = blk * dev->param.nChunksPerBlock + c;
6440
6441                         result = yaffs_ReadChunkWithTagsFromNAND(dev, chunk, NULL,
6442                                                         &tags);
6443
6444                         /* Let's have a good look at this chunk... */
6445
6446                         if (!tags.chunkUsed) {
6447                                 /* An unassigned chunk in the block.
6448                                  * If there are used chunks after this one, then
6449                                  * it is a chunk that was skipped due to failing the erased
6450                                  * check. Just skip it so that it can be deleted.
6451                                  * But, more typically, We get here when this is an unallocated
6452                                  * chunk and his means that either the block is empty or
6453                                  * this is the one being allocated from
6454                                  */
6455
6456                                 if (foundChunksInBlock) {
6457                                         /* This is a chunk that was skipped due to failing the erased check */
6458                                 } else if (c == 0) {
6459                                         /* We're looking at the first chunk in the block so the block is unused */
6460                                         state = YAFFS_BLOCK_STATE_EMPTY;
6461                                         dev->nErasedBlocks++;
6462                                 } else {
6463                                         if (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
6464                                             state == YAFFS_BLOCK_STATE_ALLOCATING) {
6465                                                 if (dev->sequenceNumber == bi->sequenceNumber) {
6466                                                         /* this is the block being allocated from */
6467
6468                                                         T(YAFFS_TRACE_SCAN,
6469                                                           (TSTR
6470                                                            (" Allocating from %d %d"
6471                                                             TENDSTR), blk, c));
6472
6473                                                         state = YAFFS_BLOCK_STATE_ALLOCATING;
6474                                                         dev->allocationBlock = blk;
6475                                                         dev->allocationPage = c;
6476                                                         dev->allocationBlockFinder = blk;
6477                                                 } else {
6478                                                         /* This is a partially written block that is not
6479                                                          * the current allocation block.
6480                                                          */
6481
6482                                                          T(YAFFS_TRACE_ALWAYS,
6483                                                          (TSTR("Partially written block %d detected" TENDSTR),
6484                                                          blk));
6485                                                 }
6486                                         }
6487                                 }
6488
6489                                 dev->nFreeChunks++;
6490
6491                         } else if (tags.eccResult == YAFFS_ECC_RESULT_UNFIXED) {
6492                                 T(YAFFS_TRACE_SCAN,
6493                                   (TSTR(" Unfixed ECC in chunk(%d:%d), chunk ignored"TENDSTR),
6494                                   blk, c));
6495
6496                                   dev->nFreeChunks++;
6497
6498                         } else if (tags.chunkId > 0) {
6499                                 /* chunkId > 0 so it is a data chunk... */
6500                                 unsigned int endpos;
6501                                 __u32 chunkBase =
6502                                     (tags.chunkId - 1) * dev->nDataBytesPerChunk;
6503
6504                                 foundChunksInBlock = 1;
6505
6506
6507                                 yaffs_SetChunkBit(dev, blk, c);
6508                                 bi->pagesInUse++;
6509
6510                                 in = yaffs_FindOrCreateObjectByNumber(dev,
6511                                                                       tags.
6512                                                                       objectId,
6513                                                                       YAFFS_OBJECT_TYPE_FILE);
6514                                 if (!in) {
6515                                         /* Out of memory */
6516                                         alloc_failed = 1;
6517                                 }
6518
6519                                 if (in &&
6520                                     in->variantType == YAFFS_OBJECT_TYPE_FILE
6521                                     && chunkBase < in->variant.fileVariant.shrinkSize) {
6522                                         /* This has not been invalidated by a resize */
6523                                         if (!yaffs_PutChunkIntoFile(in, tags.chunkId, chunk, -1)) {
6524                                                 alloc_failed = 1;
6525                                         }
6526
6527                                         /* File size is calculated by looking at the data chunks if we have not
6528                                          * seen an object header yet. Stop this practice once we find an object header.
6529                                          */
6530                                         endpos = chunkBase + tags.byteCount;
6531
6532                                         if (!in->valid &&       /* have not got an object header yet */
6533                                             in->variant.fileVariant.scannedFileSize < endpos) {
6534                                                 in->variant.fileVariant.scannedFileSize = endpos;
6535                                                 in->variant.fileVariant.fileSize = endpos;
6536                                         }
6537
6538                                 } else if (in) {
6539                                         /* This chunk has been invalidated by a resize, or a past file deletion
6540                                          * so delete the chunk*/
6541                                         yaffs_DeleteChunk(dev, chunk, 1, __LINE__);
6542
6543                                 }
6544                         } else {
6545                                 /* chunkId == 0, so it is an ObjectHeader.
6546                                  * Thus, we read in the object header and make the object
6547                                  */
6548                                 foundChunksInBlock = 1;
6549
6550                                 yaffs_SetChunkBit(dev, blk, c);
6551                                 bi->pagesInUse++;
6552
6553                                 oh = NULL;
6554                                 in = NULL;
6555
6556                                 if (tags.extraHeaderInfoAvailable) {
6557                                         in = yaffs_FindOrCreateObjectByNumber(dev,
6558                                                 tags.objectId,
6559                                                 tags.extraObjectType);
6560                                         if (!in)
6561                                                 alloc_failed = 1;
6562                                 }
6563
6564                                 if (!in ||
6565                                     (!in->valid && dev->param.disableLazyLoad) ||
6566                                     tags.extraShadows ||
6567                                     (!in->valid &&
6568                                     (tags.objectId == YAFFS_OBJECTID_ROOT ||
6569                                      tags.objectId == YAFFS_OBJECTID_LOSTNFOUND))) {
6570
6571                                         /* If we don't have  valid info then we need to read the chunk
6572                                          * TODO In future we can probably defer reading the chunk and
6573                                          * living with invalid data until needed.
6574                                          */
6575
6576                                         result = yaffs_ReadChunkWithTagsFromNAND(dev,
6577                                                                         chunk,
6578                                                                         chunkData,
6579                                                                         NULL);
6580
6581                                         oh = (yaffs_ObjectHeader *) chunkData;
6582
6583                                         if (dev->param.inbandTags) {
6584                                                 /* Fix up the header if they got corrupted by inband tags */
6585                                                 oh->shadowsObject = oh->inbandShadowsObject;
6586                                                 oh->isShrink = oh->inbandIsShrink;
6587                                         }
6588
6589                                         if (!in) {
6590                                                 in = yaffs_FindOrCreateObjectByNumber(dev, tags.objectId, oh->type);
6591                                                 if (!in)
6592                                                         alloc_failed = 1;
6593                                         }
6594
6595                                 }
6596
6597                                 if (!in) {
6598                                         /* TODO Hoosterman we have a problem! */
6599                                         T(YAFFS_TRACE_ERROR,
6600                                           (TSTR
6601                                            ("yaffs tragedy: Could not make object for object  %d at chunk %d during scan"
6602                                             TENDSTR), tags.objectId, chunk));
6603                                         continue;
6604                                 }
6605
6606                                 if (in->valid) {
6607                                         /* We have already filled this one.
6608                                          * We have a duplicate that will be discarded, but
6609                                          * we first have to suck out resize info if it is a file.
6610                                          */
6611
6612                                         if ((in->variantType == YAFFS_OBJECT_TYPE_FILE) &&
6613                                              ((oh &&
6614                                                oh->type == YAFFS_OBJECT_TYPE_FILE) ||
6615                                               (tags.extraHeaderInfoAvailable  &&
6616                                                tags.extraObjectType == YAFFS_OBJECT_TYPE_FILE))) {
6617                                                 __u32 thisSize =
6618                                                     (oh) ? oh->fileSize : tags.
6619                                                     extraFileLength;
6620                                                 __u32 parentObjectId =
6621                                                     (oh) ? oh->
6622                                                     parentObjectId : tags.
6623                                                     extraParentObjectId;
6624
6625
6626                                                 isShrink =
6627                                                     (oh) ? oh->isShrink : tags.
6628                                                     extraIsShrinkHeader;
6629
6630                                                 /* If it is deleted (unlinked at start also means deleted)
6631                                                  * we treat the file size as being zeroed at this point.
6632                                                  */
6633                                                 if (parentObjectId ==
6634                                                     YAFFS_OBJECTID_DELETED
6635                                                     || parentObjectId ==
6636                                                     YAFFS_OBJECTID_UNLINKED) {
6637                                                         thisSize = 0;
6638                                                         isShrink = 1;
6639                                                 }
6640
6641                                                 if (isShrink && in->variant.fileVariant.shrinkSize > thisSize)
6642                                                         in->variant.fileVariant.shrinkSize = thisSize;
6643
6644                                                 if (isShrink)
6645                                                         bi->hasShrinkHeader = 1;
6646
6647                                         }
6648                                         /* Use existing - destroy this one. */
6649                                         yaffs_DeleteChunk(dev, chunk, 1, __LINE__);
6650
6651                                 }
6652
6653                                 if (!in->valid && in->variantType !=
6654                                     (oh ? oh->type : tags.extraObjectType))
6655                                         T(YAFFS_TRACE_ERROR, (
6656                                                 TSTR("yaffs tragedy: Bad object type, "
6657                                             TCONT("%d != %d, for object %d at chunk ")
6658                                             TCONT("%d during scan")
6659                                                 TENDSTR), oh ?
6660                                             oh->type : tags.extraObjectType,
6661                                             in->variantType, tags.objectId,
6662                                             chunk));
6663
6664                                 if (!in->valid &&
6665                                     (tags.objectId == YAFFS_OBJECTID_ROOT ||
6666                                      tags.objectId ==
6667                                      YAFFS_OBJECTID_LOSTNFOUND)) {
6668                                         /* We only load some info, don't fiddle with directory structure */
6669                                         in->valid = 1;
6670
6671                                         if (oh) {
6672                                                 in->variantType = oh->type;
6673
6674                                                 in->yst_mode = oh->yst_mode;
6675 #ifdef CONFIG_YAFFS_WINCE
6676                                                 in->win_atime[0] = oh->win_atime[0];
6677                                                 in->win_ctime[0] = oh->win_ctime[0];
6678                                                 in->win_mtime[0] = oh->win_mtime[0];
6679                                                 in->win_atime[1] = oh->win_atime[1];
6680                                                 in->win_ctime[1] = oh->win_ctime[1];
6681                                                 in->win_mtime[1] = oh->win_mtime[1];
6682 #else
6683                                                 in->yst_uid = oh->yst_uid;
6684                                                 in->yst_gid = oh->yst_gid;
6685                                                 in->yst_atime = oh->yst_atime;
6686                                                 in->yst_mtime = oh->yst_mtime;
6687                                                 in->yst_ctime = oh->yst_ctime;
6688                                                 in->yst_rdev = oh->yst_rdev;
6689
6690 #endif
6691                                         } else {
6692                                                 in->variantType = tags.extraObjectType;
6693                                                 in->lazyLoaded = 1;
6694                                         }
6695
6696                                         in->hdrChunk = chunk;
6697
6698                                 } else if (!in->valid) {
6699                                         /* we need to load this info */
6700
6701                                         in->valid = 1;
6702                                         in->hdrChunk = chunk;
6703
6704                                         if (oh) {
6705                                                 in->variantType = oh->type;
6706
6707                                                 in->yst_mode = oh->yst_mode;
6708 #ifdef CONFIG_YAFFS_WINCE
6709                                                 in->win_atime[0] = oh->win_atime[0];
6710                                                 in->win_ctime[0] = oh->win_ctime[0];
6711                                                 in->win_mtime[0] = oh->win_mtime[0];
6712                                                 in->win_atime[1] = oh->win_atime[1];
6713                                                 in->win_ctime[1] = oh->win_ctime[1];
6714                                                 in->win_mtime[1] = oh->win_mtime[1];
6715 #else
6716                                                 in->yst_uid = oh->yst_uid;
6717                                                 in->yst_gid = oh->yst_gid;
6718                                                 in->yst_atime = oh->yst_atime;
6719                                                 in->yst_mtime = oh->yst_mtime;
6720                                                 in->yst_ctime = oh->yst_ctime;
6721                                                 in->yst_rdev = oh->yst_rdev;
6722 #endif
6723
6724                                                 if (oh->shadowsObject > 0)
6725                                                         yaffs_HandleShadowedObject(dev,
6726                                                                            oh->
6727                                                                            shadowsObject,
6728                                                                            1);
6729                                                         
6730
6731
6732                                                 yaffs_SetObjectName(in, oh->name);
6733                                                 parent =
6734                                                     yaffs_FindOrCreateObjectByNumber
6735                                                         (dev, oh->parentObjectId,
6736                                                          YAFFS_OBJECT_TYPE_DIRECTORY);
6737
6738                                                  fileSize = oh->fileSize;
6739                                                  isShrink = oh->isShrink;
6740                                                  equivalentObjectId = oh->equivalentObjectId;
6741
6742                                         } else {
6743                                                 in->variantType = tags.extraObjectType;
6744                                                 parent =
6745                                                     yaffs_FindOrCreateObjectByNumber
6746                                                         (dev, tags.extraParentObjectId,
6747                                                          YAFFS_OBJECT_TYPE_DIRECTORY);
6748                                                  fileSize = tags.extraFileLength;
6749                                                  isShrink = tags.extraIsShrinkHeader;
6750                                                  equivalentObjectId = tags.extraEquivalentObjectId;
6751                                                 in->lazyLoaded = 1;
6752
6753                                         }
6754                                         in->dirty = 0;
6755
6756                                         if (!parent)
6757                                                 alloc_failed = 1;
6758
6759                                         /* directory stuff...
6760                                          * hook up to parent
6761                                          */
6762
6763                                         if (parent && parent->variantType ==
6764                                             YAFFS_OBJECT_TYPE_UNKNOWN) {
6765                                                 /* Set up as a directory */
6766                                                 parent->variantType =
6767                                                         YAFFS_OBJECT_TYPE_DIRECTORY;
6768                                                 YINIT_LIST_HEAD(&parent->variant.
6769                                                         directoryVariant.
6770                                                         children);
6771                                         } else if (!parent || parent->variantType !=
6772                                                    YAFFS_OBJECT_TYPE_DIRECTORY) {
6773                                                 /* Hoosterman, another problem....
6774                                                  * We're trying to use a non-directory as a directory
6775                                                  */
6776
6777                                                 T(YAFFS_TRACE_ERROR,
6778                                                   (TSTR
6779                                                    ("yaffs tragedy: attempting to use non-directory as a directory in scan. Put in lost+found."
6780                                                     TENDSTR)));
6781                                                 parent = dev->lostNFoundDir;
6782                                         }
6783
6784                                         yaffs_AddObjectToDirectory(parent, in);
6785
6786                                         itsUnlinked = (parent == dev->deletedDir) ||
6787                                                       (parent == dev->unlinkedDir);
6788
6789                                         if (isShrink) {
6790                                                 /* Mark the block as having a shrinkHeader */
6791                                                 bi->hasShrinkHeader = 1;
6792                                         }
6793
6794                                         /* Note re hardlinks.
6795                                          * Since we might scan a hardlink before its equivalent object is scanned
6796                                          * we put them all in a list.
6797                                          * After scanning is complete, we should have all the objects, so we run
6798                                          * through this list and fix up all the chains.
6799                                          */
6800
6801                                         switch (in->variantType) {
6802                                         case YAFFS_OBJECT_TYPE_UNKNOWN:
6803                                                 /* Todo got a problem */
6804                                                 break;
6805                                         case YAFFS_OBJECT_TYPE_FILE:
6806
6807                                                 if (in->variant.fileVariant.
6808                                                     scannedFileSize < fileSize) {
6809                                                         /* This covers the case where the file size is greater
6810                                                          * than where the data is
6811                                                          * This will happen if the file is resized to be larger
6812                                                          * than its current data extents.
6813                                                          */
6814                                                         in->variant.fileVariant.fileSize = fileSize;
6815                                                         in->variant.fileVariant.scannedFileSize = fileSize;
6816                                                 }
6817
6818                                                 if (in->variant.fileVariant.shrinkSize > fileSize)
6819                                                         in->variant.fileVariant.shrinkSize = fileSize;
6820                                 
6821
6822                                                 break;
6823                                         case YAFFS_OBJECT_TYPE_HARDLINK:
6824                                                 if (!itsUnlinked) {
6825                                                         in->variant.hardLinkVariant.equivalentObjectId =
6826                                                                 equivalentObjectId;
6827                                                         in->hardLinks.next =
6828                                                                 (struct ylist_head *) hardList;
6829                                                         hardList = in;
6830                                                 }
6831                                                 break;
6832                                         case YAFFS_OBJECT_TYPE_DIRECTORY:
6833                                                 /* Do nothing */
6834                                                 break;
6835                                         case YAFFS_OBJECT_TYPE_SPECIAL:
6836                                                 /* Do nothing */
6837                                                 break;
6838                                         case YAFFS_OBJECT_TYPE_SYMLINK:
6839                                                 if (oh) {
6840                                                         in->variant.symLinkVariant.alias =
6841                                                                 yaffs_CloneString(oh->alias);
6842                                                         if (!in->variant.symLinkVariant.alias)
6843                                                                 alloc_failed = 1;
6844                                                 }
6845                                                 break;
6846                                         }
6847
6848                                 }
6849
6850                         }
6851
6852                 } /* End of scanning for each chunk */
6853
6854                 if (state == YAFFS_BLOCK_STATE_NEEDS_SCANNING) {
6855                         /* If we got this far while scanning, then the block is fully allocated. */
6856                         state = YAFFS_BLOCK_STATE_FULL;
6857                 }
6858
6859
6860                 bi->blockState = state;
6861
6862                 /* Now let's see if it was dirty */
6863                 if (bi->pagesInUse == 0 &&
6864                     !bi->hasShrinkHeader &&
6865                     bi->blockState == YAFFS_BLOCK_STATE_FULL) {
6866                         yaffs_BlockBecameDirty(dev, blk);
6867                 }
6868
6869         }
6870         
6871         yaffs_SkipRestOfBlock(dev);
6872
6873         if (altBlockIndex)
6874                 YFREE_ALT(blockIndex);
6875         else
6876                 YFREE(blockIndex);
6877
6878         /* Ok, we've done all the scanning.
6879          * Fix up the hard link chains.
6880          * We should now have scanned all the objects, now it's time to add these
6881          * hardlinks.
6882          */
6883         yaffs_HardlinkFixup(dev, hardList);
6884
6885
6886         yaffs_ReleaseTempBuffer(dev, chunkData, __LINE__);
6887
6888         if (alloc_failed)
6889                 return YAFFS_FAIL;
6890
6891         T(YAFFS_TRACE_SCAN, (TSTR("yaffs_ScanBackwards ends" TENDSTR)));
6892
6893         return YAFFS_OK;
6894 }
6895
6896 /*------------------------------  Directory Functions ----------------------------- */
6897
6898 static void yaffs_VerifyObjectInDirectory(yaffs_Object *obj)
6899 {
6900         struct ylist_head *lh;
6901         yaffs_Object *listObj;
6902
6903         int count = 0;
6904
6905         if (!obj) {
6906                 T(YAFFS_TRACE_ALWAYS, (TSTR("No object to verify" TENDSTR)));
6907                 YBUG();
6908                 return;
6909         }
6910
6911         if (yaffs_SkipVerification(obj->myDev))
6912                 return;
6913
6914         if (!obj->parent) {
6915                 T(YAFFS_TRACE_ALWAYS, (TSTR("Object does not have parent" TENDSTR)));
6916                 YBUG();
6917                 return;
6918         }
6919
6920         if (obj->parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
6921                 T(YAFFS_TRACE_ALWAYS, (TSTR("Parent is not directory" TENDSTR)));
6922                 YBUG();
6923         }
6924
6925         /* Iterate through the objects in each hash entry */
6926
6927         ylist_for_each(lh, &obj->parent->variant.directoryVariant.children) {
6928                 if (lh) {
6929                         listObj = ylist_entry(lh, yaffs_Object, siblings);
6930                         yaffs_VerifyObject(listObj);
6931                         if (obj == listObj)
6932                                 count++;
6933                 }
6934          }
6935
6936         if (count != 1) {
6937                 T(YAFFS_TRACE_ALWAYS, (TSTR("Object in directory %d times" TENDSTR), count));
6938                 YBUG();
6939         }
6940 }
6941
6942 static void yaffs_VerifyDirectory(yaffs_Object *directory)
6943 {
6944         struct ylist_head *lh;
6945         yaffs_Object *listObj;
6946
6947         if (!directory) {
6948                 YBUG();
6949                 return;
6950         }
6951
6952         if (yaffs_SkipFullVerification(directory->myDev))
6953                 return;
6954
6955         if (directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
6956                 T(YAFFS_TRACE_ALWAYS, (TSTR("Directory has wrong type: %d" TENDSTR), directory->variantType));
6957                 YBUG();
6958         }
6959
6960         /* Iterate through the objects in each hash entry */
6961
6962         ylist_for_each(lh, &directory->variant.directoryVariant.children) {
6963                 if (lh) {
6964                         listObj = ylist_entry(lh, yaffs_Object, siblings);
6965                         if (listObj->parent != directory) {
6966                                 T(YAFFS_TRACE_ALWAYS, (TSTR("Object in directory list has wrong parent %p" TENDSTR), listObj->parent));
6967                                 YBUG();
6968                         }
6969                         yaffs_VerifyObjectInDirectory(listObj);
6970                 }
6971         }
6972 }
6973
6974 /*
6975  *yaffs_UpdateParent() handles fixing a directories mtime and ctime when a new
6976  * link (ie. name) is created or deleted in the directory.
6977  *
6978  * ie.
6979  *   create dir/a : update dir's mtime/ctime
6980  *   rm dir/a:   update dir's mtime/ctime
6981  *   modify dir/a: don't update dir's mtimme/ctime
6982  */
6983  
6984 static void yaffs_UpdateParent(yaffs_Object *obj)
6985 {
6986         if(!obj)
6987                 return;
6988
6989         obj->dirty = 1;
6990         obj->yst_mtime = obj->yst_ctime = Y_CURRENT_TIME;
6991
6992         yaffs_UpdateObjectHeader(obj,NULL,0,0,0);
6993 }
6994
6995 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj)
6996 {
6997         yaffs_Device *dev = obj->myDev;
6998         yaffs_Object *parent;
6999
7000         yaffs_VerifyObjectInDirectory(obj);
7001         parent = obj->parent;
7002
7003         yaffs_VerifyDirectory(parent);
7004
7005         if (dev && dev->param.removeObjectCallback)
7006                 dev->param.removeObjectCallback(obj);
7007
7008
7009         ylist_del_init(&obj->siblings);
7010         obj->parent = NULL;
7011         
7012         yaffs_VerifyDirectory(parent);
7013 }
7014
7015 static void yaffs_AddObjectToDirectory(yaffs_Object *directory,
7016                                         yaffs_Object *obj)
7017 {
7018         if (!directory) {
7019                 T(YAFFS_TRACE_ALWAYS,
7020                   (TSTR
7021                    ("tragedy: Trying to add an object to a null pointer directory"
7022                     TENDSTR)));
7023                 YBUG();
7024                 return;
7025         }
7026         if (directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
7027                 T(YAFFS_TRACE_ALWAYS,
7028                   (TSTR
7029                    ("tragedy: Trying to add an object to a non-directory"
7030                     TENDSTR)));
7031                 YBUG();
7032         }
7033
7034         if (obj->siblings.prev == NULL) {
7035                 /* Not initialised */
7036                 YBUG();
7037         }
7038
7039
7040         yaffs_VerifyDirectory(directory);
7041
7042         yaffs_RemoveObjectFromDirectory(obj);
7043
7044
7045         /* Now add it */
7046         ylist_add(&obj->siblings, &directory->variant.directoryVariant.children);
7047         obj->parent = directory;
7048
7049         if (directory == obj->myDev->unlinkedDir
7050                         || directory == obj->myDev->deletedDir) {
7051                 obj->unlinked = 1;
7052                 obj->myDev->nUnlinkedFiles++;
7053                 obj->renameAllowed = 0;
7054         }
7055
7056         yaffs_VerifyDirectory(directory);
7057         yaffs_VerifyObjectInDirectory(obj);
7058 }
7059
7060 yaffs_Object *yaffs_FindObjectByName(yaffs_Object *directory,
7061                                      const YCHAR *name)
7062 {
7063         int sum;
7064
7065         struct ylist_head *i;
7066         YCHAR buffer[YAFFS_MAX_NAME_LENGTH + 1];
7067
7068         yaffs_Object *l;
7069
7070         if (!name)
7071                 return NULL;
7072
7073         if (!directory) {
7074                 T(YAFFS_TRACE_ALWAYS,
7075                   (TSTR
7076                    ("tragedy: yaffs_FindObjectByName: null pointer directory"
7077                     TENDSTR)));
7078                 YBUG();
7079                 return NULL;
7080         }
7081         if (directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
7082                 T(YAFFS_TRACE_ALWAYS,
7083                   (TSTR
7084                    ("tragedy: yaffs_FindObjectByName: non-directory" TENDSTR)));
7085                 YBUG();
7086         }
7087
7088         sum = yaffs_CalcNameSum(name);
7089
7090         ylist_for_each(i, &directory->variant.directoryVariant.children) {
7091                 if (i) {
7092                         l = ylist_entry(i, yaffs_Object, siblings);
7093
7094                         if (l->parent != directory)
7095                                 YBUG();
7096
7097                         yaffs_CheckObjectDetailsLoaded(l);
7098
7099                         /* Special case for lost-n-found */
7100                         if (l->objectId == YAFFS_OBJECTID_LOSTNFOUND) {
7101                                 if (yaffs_strcmp(name, YAFFS_LOSTNFOUND_NAME) == 0)
7102                                         return l;
7103                         } else if (yaffs_SumCompare(l->sum, sum) || l->hdrChunk <= 0) {
7104                                 /* LostnFound chunk called Objxxx
7105                                  * Do a real check
7106                                  */
7107                                 yaffs_GetObjectName(l, buffer,
7108                                                     YAFFS_MAX_NAME_LENGTH + 1);
7109                                 if (yaffs_strncmp(name, buffer, YAFFS_MAX_NAME_LENGTH) == 0)
7110                                         return l;
7111                         }
7112                 }
7113         }
7114
7115         return NULL;
7116 }
7117
7118
7119 #if 0
7120 int yaffs_ApplyToDirectoryChildren(yaffs_Object *theDir,
7121                                         int (*fn) (yaffs_Object *))
7122 {
7123         struct ylist_head *i;
7124         yaffs_Object *l;
7125
7126         if (!theDir) {
7127                 T(YAFFS_TRACE_ALWAYS,
7128                   (TSTR
7129                    ("tragedy: yaffs_FindObjectByName: null pointer directory"
7130                     TENDSTR)));
7131                 YBUG();
7132                 return YAFFS_FAIL;
7133         }
7134         if (theDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
7135                 T(YAFFS_TRACE_ALWAYS,
7136                   (TSTR
7137                    ("tragedy: yaffs_FindObjectByName: non-directory" TENDSTR)));
7138                 YBUG();
7139                 return YAFFS_FAIL;
7140         }
7141
7142         ylist_for_each(i, &theDir->variant.directoryVariant.children) {
7143                 if (i) {
7144                         l = ylist_entry(i, yaffs_Object, siblings);
7145                         if (l && !fn(l))
7146                                 return YAFFS_FAIL;
7147                 }
7148         }
7149
7150         return YAFFS_OK;
7151
7152 }
7153 #endif
7154
7155 /* GetEquivalentObject dereferences any hard links to get to the
7156  * actual object.
7157  */
7158
7159 yaffs_Object *yaffs_GetEquivalentObject(yaffs_Object *obj)
7160 {
7161         if (obj && obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK) {
7162                 /* We want the object id of the equivalent object, not this one */
7163                 obj = obj->variant.hardLinkVariant.equivalentObject;
7164                 yaffs_CheckObjectDetailsLoaded(obj);
7165         }
7166         return obj;
7167 }
7168
7169 int yaffs_GetObjectName(yaffs_Object *obj, YCHAR *name, int buffSize)
7170 {
7171         memset(name, 0, buffSize * sizeof(YCHAR));
7172
7173         yaffs_CheckObjectDetailsLoaded(obj);
7174
7175         if (obj->objectId == YAFFS_OBJECTID_LOSTNFOUND) {
7176                 yaffs_strncpy(name, YAFFS_LOSTNFOUND_NAME, buffSize - 1);
7177         } else if (obj->hdrChunk <= 0) {
7178                 YCHAR locName[20];
7179                 YCHAR numString[20];
7180                 YCHAR *x = &numString[19];
7181                 unsigned v = obj->objectId;
7182                 numString[19] = 0;
7183                 while (v > 0) {
7184                         x--;
7185                         *x = '0' + (v % 10);
7186                         v /= 10;
7187                 }
7188                 /* make up a name */
7189                 yaffs_strcpy(locName, YAFFS_LOSTNFOUND_PREFIX);
7190                 yaffs_strcat(locName, x);
7191                 yaffs_strncpy(name, locName, buffSize - 1);
7192
7193         }
7194 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
7195         else if (obj->shortName[0])
7196                 yaffs_strncpy(name, obj->shortName,YAFFS_SHORT_NAME_LENGTH+1);
7197 #endif
7198         else {
7199                 int result;
7200                 __u8 *buffer = yaffs_GetTempBuffer(obj->myDev, __LINE__);
7201
7202                 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *) buffer;
7203
7204                 memset(buffer, 0, obj->myDev->nDataBytesPerChunk);
7205
7206                 if (obj->hdrChunk > 0) {
7207                         result = yaffs_ReadChunkWithTagsFromNAND(obj->myDev,
7208                                                         obj->hdrChunk, buffer,
7209                                                         NULL);
7210                 }
7211                 yaffs_strncpy(name, oh->name, buffSize - 1);
7212                 name[buffSize-1]=0;
7213
7214                 yaffs_ReleaseTempBuffer(obj->myDev, buffer, __LINE__);
7215         }
7216
7217         return yaffs_strnlen(name,buffSize-1);
7218 }
7219
7220 int yaffs_GetObjectFileLength(yaffs_Object *obj)
7221 {
7222         /* Dereference any hard linking */
7223         obj = yaffs_GetEquivalentObject(obj);
7224
7225         if (obj->variantType == YAFFS_OBJECT_TYPE_FILE)
7226                 return obj->variant.fileVariant.fileSize;
7227         if (obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK){
7228                 if(!obj->variant.symLinkVariant.alias)
7229                         return 0;
7230                 return yaffs_strnlen(obj->variant.symLinkVariant.alias,YAFFS_MAX_ALIAS_LENGTH);
7231         } else {
7232                 /* Only a directory should drop through to here */
7233                 return obj->myDev->nDataBytesPerChunk;
7234         }
7235 }
7236
7237 int yaffs_GetObjectLinkCount(yaffs_Object *obj)
7238 {
7239         int count = 0;
7240         struct ylist_head *i;
7241
7242         if (!obj->unlinked)
7243                 count++;                /* the object itself */
7244
7245         ylist_for_each(i, &obj->hardLinks)
7246                 count++;                /* add the hard links; */
7247
7248         return count;
7249 }
7250
7251 int yaffs_GetObjectInode(yaffs_Object *obj)
7252 {
7253         obj = yaffs_GetEquivalentObject(obj);
7254
7255         return obj->objectId;
7256 }
7257
7258 unsigned yaffs_GetObjectType(yaffs_Object *obj)
7259 {
7260         obj = yaffs_GetEquivalentObject(obj);
7261
7262         switch (obj->variantType) {
7263         case YAFFS_OBJECT_TYPE_FILE:
7264                 return DT_REG;
7265                 break;
7266         case YAFFS_OBJECT_TYPE_DIRECTORY:
7267                 return DT_DIR;
7268                 break;
7269         case YAFFS_OBJECT_TYPE_SYMLINK:
7270                 return DT_LNK;
7271                 break;
7272         case YAFFS_OBJECT_TYPE_HARDLINK:
7273                 return DT_REG;
7274                 break;
7275         case YAFFS_OBJECT_TYPE_SPECIAL:
7276                 if (S_ISFIFO(obj->yst_mode))
7277                         return DT_FIFO;
7278                 if (S_ISCHR(obj->yst_mode))
7279                         return DT_CHR;
7280                 if (S_ISBLK(obj->yst_mode))
7281                         return DT_BLK;
7282                 if (S_ISSOCK(obj->yst_mode))
7283                         return DT_SOCK;
7284         default:
7285                 return DT_REG;
7286                 break;
7287         }
7288 }
7289
7290 YCHAR *yaffs_GetSymlinkAlias(yaffs_Object *obj)
7291 {
7292         obj = yaffs_GetEquivalentObject(obj);
7293         if (obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK)
7294                 return yaffs_CloneString(obj->variant.symLinkVariant.alias);
7295         else
7296                 return yaffs_CloneString(_Y(""));
7297 }
7298
7299 #ifndef CONFIG_YAFFS_WINCE
7300
7301 int yaffs_SetAttributes(yaffs_Object *obj, struct iattr *attr)
7302 {
7303         unsigned int valid = attr->ia_valid;
7304
7305         if (valid & ATTR_MODE)
7306                 obj->yst_mode = attr->ia_mode;
7307         if (valid & ATTR_UID)
7308                 obj->yst_uid = attr->ia_uid;
7309         if (valid & ATTR_GID)
7310                 obj->yst_gid = attr->ia_gid;
7311
7312         if (valid & ATTR_ATIME)
7313                 obj->yst_atime = Y_TIME_CONVERT(attr->ia_atime);
7314         if (valid & ATTR_CTIME)
7315                 obj->yst_ctime = Y_TIME_CONVERT(attr->ia_ctime);
7316         if (valid & ATTR_MTIME)
7317                 obj->yst_mtime = Y_TIME_CONVERT(attr->ia_mtime);
7318
7319         if (valid & ATTR_SIZE)
7320                 yaffs_ResizeFile(obj, attr->ia_size);
7321
7322         yaffs_UpdateObjectHeader(obj, NULL, 1, 0, 0);
7323
7324         return YAFFS_OK;
7325
7326 }
7327 int yaffs_GetAttributes(yaffs_Object *obj, struct iattr *attr)
7328 {
7329         unsigned int valid = 0;
7330
7331         attr->ia_mode = obj->yst_mode;
7332         valid |= ATTR_MODE;
7333         attr->ia_uid = obj->yst_uid;
7334         valid |= ATTR_UID;
7335         attr->ia_gid = obj->yst_gid;
7336         valid |= ATTR_GID;
7337
7338         Y_TIME_CONVERT(attr->ia_atime) = obj->yst_atime;
7339         valid |= ATTR_ATIME;
7340         Y_TIME_CONVERT(attr->ia_ctime) = obj->yst_ctime;
7341         valid |= ATTR_CTIME;
7342         Y_TIME_CONVERT(attr->ia_mtime) = obj->yst_mtime;
7343         valid |= ATTR_MTIME;
7344
7345         attr->ia_size = yaffs_GetFileSize(obj);
7346         valid |= ATTR_SIZE;
7347
7348         attr->ia_valid = valid;
7349
7350         return YAFFS_OK;
7351 }
7352
7353 #endif
7354
7355 #if 0
7356 int yaffs_DumpObject(yaffs_Object *obj)
7357 {
7358         YCHAR name[257];
7359
7360         yaffs_GetObjectName(obj, name, YAFFS_MAX_NAME_LENGTH + 1);
7361
7362         T(YAFFS_TRACE_ALWAYS,
7363           (TSTR
7364            ("Object %d, inode %d \"%s\"\n dirty %d valid %d serial %d sum %d"
7365             " chunk %d type %d size %d\n"
7366             TENDSTR), obj->objectId, yaffs_GetObjectInode(obj), name,
7367            obj->dirty, obj->valid, obj->serial, obj->sum, obj->hdrChunk,
7368            yaffs_GetObjectType(obj), yaffs_GetObjectFileLength(obj)));
7369
7370         return YAFFS_OK;
7371 }
7372 #endif
7373
7374 /*---------------------------- Initialisation code -------------------------------------- */
7375
7376 static int yaffs_CheckDevFunctions(const yaffs_Device *dev)
7377 {
7378
7379         /* Common functions, gotta have */
7380         if (!dev->param.eraseBlockInNAND || !dev->param.initialiseNAND)
7381                 return 0;
7382
7383 #ifdef CONFIG_YAFFS_YAFFS2
7384
7385         /* Can use the "with tags" style interface for yaffs1 or yaffs2 */
7386         if (dev->param.writeChunkWithTagsToNAND &&
7387             dev->param.readChunkWithTagsFromNAND &&
7388             !dev->param.writeChunkToNAND &&
7389             !dev->param.readChunkFromNAND &&
7390             dev->param.markNANDBlockBad &&
7391             dev->param.queryNANDBlock)
7392                 return 1;
7393 #endif
7394
7395         /* Can use the "spare" style interface for yaffs1 */
7396         if (!dev->param.isYaffs2 &&
7397             !dev->param.writeChunkWithTagsToNAND &&
7398             !dev->param.readChunkWithTagsFromNAND &&
7399             dev->param.writeChunkToNAND &&
7400             dev->param.readChunkFromNAND &&
7401             !dev->param.markNANDBlockBad &&
7402             !dev->param.queryNANDBlock)
7403                 return 1;
7404
7405         return 0;       /* bad */
7406 }
7407
7408
7409 static int yaffs_CreateInitialDirectories(yaffs_Device *dev)
7410 {
7411         /* Initialise the unlinked, deleted, root and lost and found directories */
7412
7413         dev->lostNFoundDir = dev->rootDir =  NULL;
7414         dev->unlinkedDir = dev->deletedDir = NULL;
7415
7416         dev->unlinkedDir =
7417             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_UNLINKED, S_IFDIR);
7418
7419         dev->deletedDir =
7420             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_DELETED, S_IFDIR);
7421
7422         dev->rootDir =
7423             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_ROOT,
7424                                       YAFFS_ROOT_MODE | S_IFDIR);
7425         dev->lostNFoundDir =
7426             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_LOSTNFOUND,
7427                                       YAFFS_LOSTNFOUND_MODE | S_IFDIR);
7428
7429         if (dev->lostNFoundDir && dev->rootDir && dev->unlinkedDir && dev->deletedDir) {
7430                 yaffs_AddObjectToDirectory(dev->rootDir, dev->lostNFoundDir);
7431                 return YAFFS_OK;
7432         }
7433
7434         return YAFFS_FAIL;
7435 }
7436
7437 int yaffs_GutsInitialise(yaffs_Device *dev)
7438 {
7439         int init_failed = 0;
7440         unsigned x;
7441         int bits;
7442
7443         T(YAFFS_TRACE_TRACING, (TSTR("yaffs: yaffs_GutsInitialise()" TENDSTR)));
7444
7445         /* Check stuff that must be set */
7446
7447         if (!dev) {
7448                 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Need a device" TENDSTR)));
7449                 return YAFFS_FAIL;
7450         }
7451
7452         dev->internalStartBlock = dev->param.startBlock;
7453         dev->internalEndBlock = dev->param.endBlock;
7454         dev->blockOffset = 0;
7455         dev->chunkOffset = 0;
7456         dev->nFreeChunks = 0;
7457
7458         dev->gcBlock = -1;
7459
7460         if (dev->param.startBlock == 0) {
7461                 dev->internalStartBlock = dev->param.startBlock + 1;
7462                 dev->internalEndBlock = dev->param.endBlock + 1;
7463                 dev->blockOffset = 1;
7464                 dev->chunkOffset = dev->param.nChunksPerBlock;
7465         }
7466
7467         /* Check geometry parameters. */
7468
7469         if ((!dev->param.inbandTags && dev->param.isYaffs2 && dev->param.totalBytesPerChunk < 1024) ||
7470             (!dev->param.isYaffs2 && dev->param.totalBytesPerChunk < 512) ||
7471             (dev->param.inbandTags && !dev->param.isYaffs2) ||
7472              dev->param.nChunksPerBlock < 2 ||
7473              dev->param.nReservedBlocks < 2 ||
7474              dev->internalStartBlock <= 0 ||
7475              dev->internalEndBlock <= 0 ||
7476              dev->internalEndBlock <= (dev->internalStartBlock + dev->param.nReservedBlocks + 2)) {     /* otherwise it is too small */
7477                 T(YAFFS_TRACE_ALWAYS,
7478                   (TSTR
7479                    ("yaffs: NAND geometry problems: chunk size %d, type is yaffs%s, inbandTags %d "
7480                     TENDSTR), dev->param.totalBytesPerChunk, dev->param.isYaffs2 ? "2" : "", dev->param.inbandTags));
7481                 return YAFFS_FAIL;
7482         }
7483
7484         if (yaffs_InitialiseNAND(dev) != YAFFS_OK) {
7485                 T(YAFFS_TRACE_ALWAYS,
7486                   (TSTR("yaffs: InitialiseNAND failed" TENDSTR)));
7487                 return YAFFS_FAIL;
7488         }
7489
7490         /* Sort out space for inband tags, if required */
7491         if (dev->param.inbandTags)
7492                 dev->nDataBytesPerChunk = dev->param.totalBytesPerChunk - sizeof(yaffs_PackedTags2TagsPart);
7493         else
7494                 dev->nDataBytesPerChunk = dev->param.totalBytesPerChunk;
7495
7496         /* Got the right mix of functions? */
7497         if (!yaffs_CheckDevFunctions(dev)) {
7498                 /* Function missing */
7499                 T(YAFFS_TRACE_ALWAYS,
7500                   (TSTR
7501                    ("yaffs: device function(s) missing or wrong\n" TENDSTR)));
7502
7503                 return YAFFS_FAIL;
7504         }
7505
7506         /* This is really a compilation check. */
7507         if (!yaffs_CheckStructures()) {
7508                 T(YAFFS_TRACE_ALWAYS,
7509                   (TSTR("yaffs_CheckStructures failed\n" TENDSTR)));
7510                 return YAFFS_FAIL;
7511         }
7512
7513         if (dev->isMounted) {
7514                 T(YAFFS_TRACE_ALWAYS,
7515                   (TSTR("yaffs: device already mounted\n" TENDSTR)));
7516                 return YAFFS_FAIL;
7517         }
7518
7519         /* Finished with most checks. One or two more checks happen later on too. */
7520
7521         dev->isMounted = 1;
7522
7523         /* OK now calculate a few things for the device */
7524
7525         /*
7526          *  Calculate all the chunk size manipulation numbers:
7527          */
7528         x = dev->nDataBytesPerChunk;
7529         /* We always use dev->chunkShift and dev->chunkDiv */
7530         dev->chunkShift = Shifts(x);
7531         x >>= dev->chunkShift;
7532         dev->chunkDiv = x;
7533         /* We only use chunk mask if chunkDiv is 1 */
7534         dev->chunkMask = (1<<dev->chunkShift) - 1;
7535
7536         /*
7537          * Calculate chunkGroupBits.
7538          * We need to find the next power of 2 > than internalEndBlock
7539          */
7540
7541         x = dev->param.nChunksPerBlock * (dev->internalEndBlock + 1);
7542
7543         bits = ShiftsGE(x);
7544
7545         /* Set up tnode width if wide tnodes are enabled. */
7546         if (!dev->param.wideTnodesDisabled) {
7547                 /* bits must be even so that we end up with 32-bit words */
7548                 if (bits & 1)
7549                         bits++;
7550                 if (bits < 16)
7551                         dev->tnodeWidth = 16;
7552                 else
7553                         dev->tnodeWidth = bits;
7554         } else
7555                 dev->tnodeWidth = 16;
7556
7557         dev->tnodeMask = (1<<dev->tnodeWidth)-1;
7558
7559         /* Level0 Tnodes are 16 bits or wider (if wide tnodes are enabled),
7560          * so if the bitwidth of the
7561          * chunk range we're using is greater than 16 we need
7562          * to figure out chunk shift and chunkGroupSize
7563          */
7564
7565         if (bits <= dev->tnodeWidth)
7566                 dev->chunkGroupBits = 0;
7567         else
7568                 dev->chunkGroupBits = bits - dev->tnodeWidth;
7569
7570
7571         dev->chunkGroupSize = 1 << dev->chunkGroupBits;
7572
7573         if (dev->param.nChunksPerBlock < dev->chunkGroupSize) {
7574                 /* We have a problem because the soft delete won't work if
7575                  * the chunk group size > chunks per block.
7576                  * This can be remedied by using larger "virtual blocks".
7577                  */
7578                 T(YAFFS_TRACE_ALWAYS,
7579                   (TSTR("yaffs: chunk group too large\n" TENDSTR)));
7580
7581                 return YAFFS_FAIL;
7582         }
7583
7584         /* OK, we've finished verifying the device, lets continue with initialisation */
7585
7586         /* More device initialisation */
7587         dev->garbageCollections = 0;
7588         dev->passiveGarbageCollections = 0;
7589         dev->currentDirtyChecker = 0;
7590         dev->bufferedBlock = -1;
7591         dev->doingBufferedBlockRewrite = 0;
7592         dev->nDeletedFiles = 0;
7593         dev->nBackgroundDeletions = 0;
7594         dev->nUnlinkedFiles = 0;
7595         dev->eccFixed = 0;
7596         dev->eccUnfixed = 0;
7597         dev->tagsEccFixed = 0;
7598         dev->tagsEccUnfixed = 0;
7599         dev->nErasureFailures = 0;
7600         dev->nErasedBlocks = 0;
7601         dev->isDoingGC = 0;
7602         dev->hasPendingPrioritisedGCs = 1; /* Assume the worst for now, will get fixed on first GC */
7603         dev->oldestDirtySequence = 0;
7604
7605         /* Initialise temporary buffers and caches. */
7606         if (!yaffs_InitialiseTempBuffers(dev))
7607                 init_failed = 1;
7608
7609         dev->srCache = NULL;
7610         dev->gcCleanupList = NULL;
7611
7612
7613         if (!init_failed &&
7614             dev->param.nShortOpCaches > 0) {
7615                 int i;
7616                 void *buf;
7617                 int srCacheBytes = dev->param.nShortOpCaches * sizeof(yaffs_ChunkCache);
7618
7619                 if (dev->param.nShortOpCaches > YAFFS_MAX_SHORT_OP_CACHES)
7620                         dev->param.nShortOpCaches = YAFFS_MAX_SHORT_OP_CACHES;
7621
7622                 dev->srCache =  YMALLOC(srCacheBytes);
7623
7624                 buf = (__u8 *) dev->srCache;
7625
7626                 if (dev->srCache)
7627                         memset(dev->srCache, 0, srCacheBytes);
7628
7629                 for (i = 0; i < dev->param.nShortOpCaches && buf; i++) {
7630                         dev->srCache[i].object = NULL;
7631                         dev->srCache[i].lastUse = 0;
7632                         dev->srCache[i].dirty = 0;
7633                         dev->srCache[i].data = buf = YMALLOC_DMA(dev->param.totalBytesPerChunk);
7634                 }
7635                 if (!buf)
7636                         init_failed = 1;
7637
7638                 dev->srLastUse = 0;
7639         }
7640
7641         dev->cacheHits = 0;
7642
7643         if (!init_failed) {
7644                 dev->gcCleanupList = YMALLOC(dev->param.nChunksPerBlock * sizeof(__u32));
7645                 if (!dev->gcCleanupList)
7646                         init_failed = 1;
7647         }
7648
7649         if (dev->param.isYaffs2)
7650                 dev->param.useHeaderFileSize = 1;
7651
7652         if (!init_failed && !yaffs_InitialiseBlocks(dev))
7653                 init_failed = 1;
7654
7655         yaffs_InitialiseTnodes(dev);
7656         yaffs_InitialiseObjects(dev);
7657
7658         if (!init_failed && !yaffs_CreateInitialDirectories(dev))
7659                 init_failed = 1;
7660
7661
7662         if (!init_failed) {
7663                 /* Now scan the flash. */
7664                 if (dev->param.isYaffs2) {
7665                         if (yaffs_CheckpointRestore(dev)) {
7666                                 yaffs_CheckObjectDetailsLoaded(dev->rootDir);
7667                                 T(YAFFS_TRACE_ALWAYS,
7668                                   (TSTR("yaffs: restored from checkpoint" TENDSTR)));
7669                         } else {
7670
7671                                 /* Clean up the mess caused by an aborted checkpoint load
7672                                  * and scan backwards.
7673                                  */
7674                                 yaffs_DeinitialiseBlocks(dev);
7675                                 yaffs_DeinitialiseTnodes(dev);
7676                                 yaffs_DeinitialiseObjects(dev);
7677
7678
7679                                 dev->nErasedBlocks = 0;
7680                                 dev->nFreeChunks = 0;
7681                                 dev->allocationBlock = -1;
7682                                 dev->allocationPage = -1;
7683                                 dev->nDeletedFiles = 0;
7684                                 dev->nUnlinkedFiles = 0;
7685                                 dev->nBackgroundDeletions = 0;
7686
7687                                 if (!init_failed && !yaffs_InitialiseBlocks(dev))
7688                                         init_failed = 1;
7689
7690                                 yaffs_InitialiseTnodes(dev);
7691                                 yaffs_InitialiseObjects(dev);
7692
7693                                 if (!init_failed && !yaffs_CreateInitialDirectories(dev))
7694                                         init_failed = 1;
7695
7696                                 if (!init_failed && !yaffs_ScanBackwards(dev))
7697                                         init_failed = 1;
7698                         }
7699                 } else if (!yaffs_Scan(dev))
7700                                 init_failed = 1;
7701
7702                 yaffs_StripDeletedObjects(dev);
7703                 yaffs_FixHangingObjects(dev);
7704                 if(dev->param.emptyLostAndFound)
7705                         yaffs_EmptyLostAndFound(dev);
7706         }
7707
7708         if (init_failed) {
7709                 /* Clean up the mess */
7710                 T(YAFFS_TRACE_TRACING,
7711                   (TSTR("yaffs: yaffs_GutsInitialise() aborted.\n" TENDSTR)));
7712
7713                 yaffs_Deinitialise(dev);
7714                 return YAFFS_FAIL;
7715         }
7716
7717         /* Zero out stats */
7718         dev->nPageReads = 0;
7719         dev->nPageWrites = 0;
7720         dev->nBlockErasures = 0;
7721         dev->nGCCopies = 0;
7722         dev->nRetriedWrites = 0;
7723
7724         dev->nRetiredBlocks = 0;
7725
7726         yaffs_VerifyFreeChunks(dev);
7727         yaffs_VerifyBlocks(dev);
7728
7729         /* Clean up any aborted checkpoint data */
7730         if(!dev->isCheckpointed && dev->blocksInCheckpoint > 0)
7731                 yaffs_InvalidateCheckpoint(dev);
7732
7733         T(YAFFS_TRACE_TRACING,
7734           (TSTR("yaffs: yaffs_GutsInitialise() done.\n" TENDSTR)));
7735         return YAFFS_OK;
7736
7737 }
7738
7739 void yaffs_Deinitialise(yaffs_Device *dev)
7740 {
7741         if (dev->isMounted) {
7742                 int i;
7743
7744                 yaffs_DeinitialiseBlocks(dev);
7745                 yaffs_DeinitialiseTnodes(dev);
7746                 yaffs_DeinitialiseObjects(dev);
7747                 if (dev->param.nShortOpCaches > 0 &&
7748                     dev->srCache) {
7749
7750                         for (i = 0; i < dev->param.nShortOpCaches; i++) {
7751                                 if (dev->srCache[i].data)
7752                                         YFREE(dev->srCache[i].data);
7753                                 dev->srCache[i].data = NULL;
7754                         }
7755
7756                         YFREE(dev->srCache);
7757                         dev->srCache = NULL;
7758                 }
7759
7760                 YFREE(dev->gcCleanupList);
7761
7762                 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
7763                         YFREE(dev->tempBuffer[i].buffer);
7764
7765                 dev->isMounted = 0;
7766
7767                 if (dev->param.deinitialiseNAND)
7768                         dev->param.deinitialiseNAND(dev);
7769         }
7770 }
7771
7772 static int yaffs_CountFreeChunks(yaffs_Device *dev)
7773 {
7774         int nFree;
7775         int b;
7776
7777         yaffs_BlockInfo *blk;
7778
7779         for (nFree = 0, b = dev->internalStartBlock; b <= dev->internalEndBlock;
7780                         b++) {
7781                 blk = yaffs_GetBlockInfo(dev, b);
7782
7783                 switch (blk->blockState) {
7784                 case YAFFS_BLOCK_STATE_EMPTY:
7785                 case YAFFS_BLOCK_STATE_ALLOCATING:
7786                 case YAFFS_BLOCK_STATE_COLLECTING:
7787                 case YAFFS_BLOCK_STATE_FULL:
7788                         nFree +=
7789                             (dev->param.nChunksPerBlock - blk->pagesInUse +
7790                              blk->softDeletions);
7791                         break;
7792                 default:
7793                         break;
7794                 }
7795         }
7796
7797         return nFree;
7798 }
7799
7800 int yaffs_GetNumberOfFreeChunks(yaffs_Device *dev)
7801 {
7802         /* This is what we report to the outside world */
7803
7804         int nFree;
7805         int nDirtyCacheChunks;
7806         int blocksForCheckpoint;
7807         int i;
7808
7809 #if 1
7810         nFree = dev->nFreeChunks;
7811 #else
7812         nFree = yaffs_CountFreeChunks(dev);
7813 #endif
7814
7815         nFree += dev->nDeletedFiles;
7816
7817         /* Now count the number of dirty chunks in the cache and subtract those */
7818
7819         for (nDirtyCacheChunks = 0, i = 0; i < dev->param.nShortOpCaches; i++) {
7820                 if (dev->srCache[i].dirty)
7821                         nDirtyCacheChunks++;
7822         }
7823
7824         nFree -= nDirtyCacheChunks;
7825
7826         nFree -= ((dev->param.nReservedBlocks + 1) * dev->param.nChunksPerBlock);
7827
7828         /* Now we figure out how much to reserve for the checkpoint and report that... */
7829         blocksForCheckpoint = yaffs_CalcCheckpointBlocksRequired(dev) - dev->blocksInCheckpoint;
7830         if (blocksForCheckpoint < 0)
7831                 blocksForCheckpoint = 0;
7832
7833         nFree -= (blocksForCheckpoint * dev->param.nChunksPerBlock);
7834
7835         if (nFree < 0)
7836                 nFree = 0;
7837
7838         return nFree;
7839
7840 }
7841
7842 static int yaffs_freeVerificationFailures;
7843
7844 static void yaffs_VerifyFreeChunks(yaffs_Device *dev)
7845 {
7846         int counted;
7847         int difference;
7848
7849         if (yaffs_SkipVerification(dev))
7850                 return;
7851
7852         counted = yaffs_CountFreeChunks(dev);
7853
7854         difference = dev->nFreeChunks - counted;
7855
7856         if (difference) {
7857                 T(YAFFS_TRACE_ALWAYS,
7858                   (TSTR("Freechunks verification failure %d %d %d" TENDSTR),
7859                    dev->nFreeChunks, counted, difference));
7860                 yaffs_freeVerificationFailures++;
7861         }
7862 }
7863
7864 /*---------------------------------------- YAFFS test code ----------------------*/
7865
7866 #define yaffs_CheckStruct(structure, syze, name) \
7867         do { \
7868                 if (sizeof(structure) != syze) { \
7869                         T(YAFFS_TRACE_ALWAYS, (TSTR("%s should be %d but is %d\n" TENDSTR),\
7870                                 name, syze, (int) sizeof(structure))); \
7871                         return YAFFS_FAIL; \
7872                 } \
7873         } while (0)
7874
7875 static int yaffs_CheckStructures(void)
7876 {
7877 /*      yaffs_CheckStruct(yaffs_Tags,8,"yaffs_Tags"); */
7878 /*      yaffs_CheckStruct(yaffs_TagsUnion,8,"yaffs_TagsUnion"); */
7879 /*      yaffs_CheckStruct(yaffs_Spare,16,"yaffs_Spare"); */
7880 #ifndef CONFIG_YAFFS_TNODE_LIST_DEBUG
7881 /*      yaffs_CheckStruct(yaffs_Tnode, 2 * YAFFS_NTNODES_LEVEL0, "yaffs_Tnode"); */
7882 #endif
7883 #ifndef CONFIG_YAFFS_WINCE
7884         yaffs_CheckStruct(yaffs_ObjectHeader, 512, "yaffs_ObjectHeader");
7885 #endif
7886         return YAFFS_OK;
7887 }