yaffs Refactor yaffs direct device list management, add nand abstraction, divide...
[yaffs2.git] / yaffs_guts.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 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 #include "yportenv.h"
14 #include "yaffs_trace.h"
15
16 #include "yaffsinterface.h"
17 #include "yaffs_guts.h"
18 #include "yaffs_tagsvalidity.h"
19 #include "yaffs_getblockinfo.h"
20
21 #include "yaffs_tagscompat.h"
22
23 #include "yaffs_nand.h"
24
25 #include "yaffs_yaffs1.h"
26 #include "yaffs_yaffs2.h"
27 #include "yaffs_bitmap.h"
28 #include "yaffs_verify.h"
29
30 #include "yaffs_nand.h"
31 #include "yaffs_packedtags2.h"
32
33 #include "yaffs_nameval.h"
34 #include "yaffs_allocator.h"
35
36 /* Note YAFFS_GC_GOOD_ENOUGH must be <= YAFFS_GC_PASSIVE_THRESHOLD */
37 #define YAFFS_GC_GOOD_ENOUGH 2
38 #define YAFFS_GC_PASSIVE_THRESHOLD 4
39
40 #include "yaffs_ecc.h"
41
42
43
44 /* Robustification (if it ever comes about...) */
45 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND);
46 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
47                 int erasedOk);
48 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
49                                 const __u8 *data,
50                                 const yaffs_ExtendedTags *tags);
51 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
52                                 const yaffs_ExtendedTags *tags);
53
54 /* Other local prototypes */
55 static void yaffs_UpdateParent(yaffs_Object *obj);
56 static int yaffs_UnlinkObject(yaffs_Object *obj);
57 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj);
58
59 static int yaffs_WriteNewChunkWithTagsToNAND(yaffs_Device *dev,
60                                         const __u8 *buffer,
61                                         yaffs_ExtendedTags *tags,
62                                         int useReserve);
63
64
65 static yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
66                                         yaffs_ObjectType type);
67
68
69 static int yaffs_ApplyXMod(yaffs_Device *dev, char *buffer, yaffs_XAttrMod *xmod);
70
71 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj);
72 static int yaffs_CheckStructures(void);
73 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in);
74
75 static yaffs_BlockInfo *yaffs_GetBlockInfo(yaffs_Device *dev, int blockNo);
76
77
78 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
79                                 int chunkInNAND);
80
81 static int yaffs_UnlinkWorker(yaffs_Object *obj);
82
83 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId,
84                         int chunkInObject);
85
86 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
87                                 yaffs_BlockInfo **blockUsedPtr);
88
89 static void yaffs_CheckObjectDetailsLoaded(yaffs_Object *in);
90
91 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in);
92 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId);
93
94 static int yaffs_FindChunkInFile(yaffs_Object *in, int chunkInInode,
95                                 yaffs_ExtendedTags *tags);
96
97 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
98                                         int chunkInNAND,
99                                         const __u8 *data,
100                                         yaffs_ExtendedTags *tags);
101
102
103 static void yaffs_LoadNameFromObjectHeader(yaffs_Device *dev,YCHAR *name, const YCHAR *ohName, int bufferSize);
104 static void yaffs_LoadObjectHeaderFromName(yaffs_Device *dev,YCHAR *ohName, const YCHAR *name);
105
106
107 /* Function to calculate chunk and offset */
108
109 static void yaffs_AddrToChunk(yaffs_Device *dev, loff_t addr, int *chunkOut,
110                 __u32 *offsetOut)
111 {
112         int chunk;
113         __u32 offset;
114
115         chunk  = (__u32)(addr >> dev->chunkShift);
116
117         if (dev->chunkDiv == 1) {
118                 /* easy power of 2 case */
119                 offset = (__u32)(addr & dev->chunkMask);
120         } else {
121                 /* Non power-of-2 case */
122
123                 loff_t chunkBase;
124
125                 chunk /= dev->chunkDiv;
126
127                 chunkBase = ((loff_t)chunk) * dev->nDataBytesPerChunk;
128                 offset = (__u32)(addr - chunkBase);
129         }
130
131         *chunkOut = chunk;
132         *offsetOut = offset;
133 }
134
135 /* Function to return the number of shifts for a power of 2 greater than or
136  * equal to the given number
137  * Note we don't try to cater for all possible numbers and this does not have to
138  * be hellishly efficient.
139  */
140
141 static __u32 ShiftsGE(__u32 x)
142 {
143         int extraBits;
144         int nShifts;
145
146         nShifts = extraBits = 0;
147
148         while (x > 1) {
149                 if (x & 1)
150                         extraBits++;
151                 x >>= 1;
152                 nShifts++;
153         }
154
155         if (extraBits)
156                 nShifts++;
157
158         return nShifts;
159 }
160
161 /* Function to return the number of shifts to get a 1 in bit 0
162  */
163
164 static __u32 Shifts(__u32 x)
165 {
166         __u32 nShifts;
167
168         nShifts =  0;
169
170         if (!x)
171                 return 0;
172
173         while (!(x&1)) {
174                 x >>= 1;
175                 nShifts++;
176         }
177
178         return nShifts;
179 }
180
181
182
183 /*
184  * Temporary buffer manipulations.
185  */
186
187 static int yaffs_InitialiseTempBuffers(yaffs_Device *dev)
188 {
189         int i;
190         __u8 *buf = (__u8 *)1;
191
192         memset(dev->tempBuffer, 0, sizeof(dev->tempBuffer));
193
194         for (i = 0; buf && i < YAFFS_N_TEMP_BUFFERS; i++) {
195                 dev->tempBuffer[i].line = 0;    /* not in use */
196                 dev->tempBuffer[i].buffer = buf =
197                     YMALLOC_DMA(dev->param.totalBytesPerChunk);
198         }
199
200         return buf ? YAFFS_OK : YAFFS_FAIL;
201 }
202
203 __u8 *yaffs_GetTempBuffer(yaffs_Device *dev, int lineNo)
204 {
205         int i, j;
206
207         dev->tempInUse++;
208         if (dev->tempInUse > dev->maxTemp)
209                 dev->maxTemp = dev->tempInUse;
210
211         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
212                 if (dev->tempBuffer[i].line == 0) {
213                         dev->tempBuffer[i].line = lineNo;
214                         if ((i + 1) > dev->maxTemp) {
215                                 dev->maxTemp = i + 1;
216                                 for (j = 0; j <= i; j++)
217                                         dev->tempBuffer[j].maxLine =
218                                             dev->tempBuffer[j].line;
219                         }
220
221                         return dev->tempBuffer[i].buffer;
222                 }
223         }
224
225         T(YAFFS_TRACE_BUFFERS,
226           (TSTR("Out of temp buffers at line %d, other held by lines:"),
227            lineNo));
228         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
229                 T(YAFFS_TRACE_BUFFERS, (TSTR(" %d "), dev->tempBuffer[i].line));
230
231         T(YAFFS_TRACE_BUFFERS, (TSTR(" " TENDSTR)));
232
233         /*
234          * If we got here then we have to allocate an unmanaged one
235          * This is not good.
236          */
237
238         dev->unmanagedTempAllocations++;
239         return YMALLOC(dev->nDataBytesPerChunk);
240
241 }
242
243 void yaffs_ReleaseTempBuffer(yaffs_Device *dev, __u8 *buffer,
244                                     int lineNo)
245 {
246         int i;
247
248         dev->tempInUse--;
249
250         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
251                 if (dev->tempBuffer[i].buffer == buffer) {
252                         dev->tempBuffer[i].line = 0;
253                         return;
254                 }
255         }
256
257         if (buffer) {
258                 /* assume it is an unmanaged one. */
259                 T(YAFFS_TRACE_BUFFERS,
260                   (TSTR("Releasing unmanaged temp buffer in line %d" TENDSTR),
261                    lineNo));
262                 YFREE(buffer);
263                 dev->unmanagedTempDeallocations++;
264         }
265
266 }
267
268 /*
269  * Determine if we have a managed buffer.
270  */
271 int yaffs_IsManagedTempBuffer(yaffs_Device *dev, const __u8 *buffer)
272 {
273         int i;
274
275         for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
276                 if (dev->tempBuffer[i].buffer == buffer)
277                         return 1;
278         }
279
280         for (i = 0; i < dev->param.nShortOpCaches; i++) {
281                 if (dev->srCache[i].data == buffer)
282                         return 1;
283         }
284
285         if (buffer == dev->checkpointBuffer)
286                 return 1;
287
288         T(YAFFS_TRACE_ALWAYS,
289                 (TSTR("yaffs: unmaged buffer detected.\n" TENDSTR)));
290         return 0;
291 }
292
293 /*
294  * Verification code
295  */
296
297
298
299
300 /*
301  *  Simple hash function. Needs to have a reasonable spread
302  */
303
304 static Y_INLINE int yaffs_HashFunction(int n)
305 {
306         n = abs(n);
307         return n % YAFFS_NOBJECT_BUCKETS;
308 }
309
310 /*
311  * Access functions to useful fake objects.
312  * Note that root might have a presence in NAND if permissions are set.
313  */
314
315 yaffs_Object *yaffs_Root(yaffs_Device *dev)
316 {
317         return dev->rootDir;
318 }
319
320 yaffs_Object *yaffs_LostNFound(yaffs_Device *dev)
321 {
322         return dev->lostNFoundDir;
323 }
324
325
326 /*
327  *  Erased NAND checking functions
328  */
329
330 int yaffs_CheckFF(__u8 *buffer, int nBytes)
331 {
332         /* Horrible, slow implementation */
333         while (nBytes--) {
334                 if (*buffer != 0xFF)
335                         return 0;
336                 buffer++;
337         }
338         return 1;
339 }
340
341 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
342                                 int chunkInNAND)
343 {
344         int retval = YAFFS_OK;
345         __u8 *data = yaffs_GetTempBuffer(dev, __LINE__);
346         yaffs_ExtendedTags tags;
347         int result;
348
349         result = yaffs_ReadChunkWithTagsFromNAND(dev, chunkInNAND, data, &tags);
350
351         if (tags.eccResult > YAFFS_ECC_RESULT_NO_ERROR)
352                 retval = YAFFS_FAIL;
353
354         if (!yaffs_CheckFF(data, dev->nDataBytesPerChunk) || tags.chunkUsed) {
355                 T(YAFFS_TRACE_NANDACCESS,
356                   (TSTR("Chunk %d not erased" TENDSTR), chunkInNAND));
357                 retval = YAFFS_FAIL;
358         }
359
360         yaffs_ReleaseTempBuffer(dev, data, __LINE__);
361
362         return retval;
363
364 }
365
366
367 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
368                                         int chunkInNAND,
369                                         const __u8 *data,
370                                         yaffs_ExtendedTags *tags)
371 {
372         int retval = YAFFS_OK;
373         yaffs_ExtendedTags tempTags;
374         __u8 *buffer = yaffs_GetTempBuffer(dev,__LINE__);
375         int result;
376         
377         result = yaffs_ReadChunkWithTagsFromNAND(dev,chunkInNAND,buffer,&tempTags);
378         if(memcmp(buffer,data,dev->nDataBytesPerChunk) ||
379                 tempTags.objectId != tags->objectId ||
380                 tempTags.chunkId  != tags->chunkId ||
381                 tempTags.byteCount != tags->byteCount)
382                 retval = YAFFS_FAIL;
383
384         yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
385
386         return retval;
387 }
388
389 static int yaffs_WriteNewChunkWithTagsToNAND(struct yaffs_DeviceStruct *dev,
390                                         const __u8 *data,
391                                         yaffs_ExtendedTags *tags,
392                                         int useReserve)
393 {
394         int attempts = 0;
395         int writeOk = 0;
396         int chunk;
397
398         yaffs2_InvalidateCheckpoint(dev);
399
400         do {
401                 yaffs_BlockInfo *bi = 0;
402                 int erasedOk = 0;
403
404                 chunk = yaffs_AllocateChunk(dev, useReserve, &bi);
405                 if (chunk < 0) {
406                         /* no space */
407                         break;
408                 }
409
410                 /* First check this chunk is erased, if it needs
411                  * checking.  The checking policy (unless forced
412                  * always on) is as follows:
413                  *
414                  * Check the first page we try to write in a block.
415                  * If the check passes then we don't need to check any
416                  * more.        If the check fails, we check again...
417                  * If the block has been erased, we don't need to check.
418                  *
419                  * However, if the block has been prioritised for gc,
420                  * then we think there might be something odd about
421                  * this block and stop using it.
422                  *
423                  * Rationale: We should only ever see chunks that have
424                  * not been erased if there was a partially written
425                  * chunk due to power loss.  This checking policy should
426                  * catch that case with very few checks and thus save a
427                  * lot of checks that are most likely not needed.
428                  *
429                  * Mods to the above
430                  * If an erase check fails or the write fails we skip the 
431                  * rest of the block.
432                  */
433
434                 /* let's give it a try */
435                 attempts++;
436
437 #ifdef CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED
438                 bi->skipErasedCheck = 0;
439 #endif
440                 if (!bi->skipErasedCheck) {
441                         erasedOk = yaffs_CheckChunkErased(dev, chunk);
442                         if (erasedOk != YAFFS_OK) {
443                                 T(YAFFS_TRACE_ERROR,
444                                 (TSTR("**>> yaffs chunk %d was not erased"
445                                 TENDSTR), chunk));
446
447                                 /* If not erased, delete this one,
448                                  * skip rest of block and
449                                  * try another chunk */
450                                  yaffs_DeleteChunk(dev,chunk,1,__LINE__);
451                                  yaffs_SkipRestOfBlock(dev);
452                                 continue;
453                         }
454                 }
455
456                 writeOk = yaffs_WriteChunkWithTagsToNAND(dev, chunk,
457                                 data, tags);
458
459                 if(!bi->skipErasedCheck)
460                         writeOk = yaffs_VerifyChunkWritten(dev, chunk, data, tags);
461
462                 if (writeOk != YAFFS_OK) {
463                         /* Clean up aborted write, skip to next block and
464                          * try another chunk */
465                         yaffs_HandleWriteChunkError(dev, chunk, erasedOk);
466                         continue;
467                 }
468
469                 bi->skipErasedCheck = 1;
470
471                 /* Copy the data into the robustification buffer */
472                 yaffs_HandleWriteChunkOk(dev, chunk, data, tags);
473
474         } while (writeOk != YAFFS_OK &&
475                 (yaffs_wr_attempts <= 0 || attempts <= yaffs_wr_attempts));
476
477         if (!writeOk)
478                 chunk = -1;
479
480         if (attempts > 1) {
481                 T(YAFFS_TRACE_ERROR,
482                         (TSTR("**>> yaffs write required %d attempts" TENDSTR),
483                         attempts));
484
485                 dev->nRetriedWrites += (attempts - 1);
486         }
487
488         return chunk;
489 }
490
491
492  
493 /*
494  * Block retiring for handling a broken block.
495  */
496
497 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND)
498 {
499         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
500
501         yaffs2_InvalidateCheckpoint(dev);
502         
503         yaffs2_ClearOldestDirtySequence(dev,bi);
504
505         if (yaffs_MarkBlockBad(dev, blockInNAND) != YAFFS_OK) {
506                 if (yaffs_EraseBlockInNAND(dev, blockInNAND) != YAFFS_OK) {
507                         T(YAFFS_TRACE_ALWAYS, (TSTR(
508                                 "yaffs: Failed to mark bad and erase block %d"
509                                 TENDSTR), blockInNAND));
510                 } else {
511                         yaffs_ExtendedTags tags;
512                         int chunkId = blockInNAND * dev->param.nChunksPerBlock;
513
514                         __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
515
516                         memset(buffer, 0xff, dev->nDataBytesPerChunk);
517                         yaffs_InitialiseTags(&tags);
518                         tags.sequenceNumber = YAFFS_SEQUENCE_BAD_BLOCK;
519                         if (dev->param.writeChunkWithTagsToNAND(dev, chunkId -
520                                 dev->chunkOffset, buffer, &tags) != YAFFS_OK)
521                                 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Failed to "
522                                         TCONT("write bad block marker to block %d")
523                                         TENDSTR), blockInNAND));
524
525                         yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
526                 }
527         }
528
529         bi->blockState = YAFFS_BLOCK_STATE_DEAD;
530         bi->gcPrioritise = 0;
531         bi->needsRetiring = 0;
532
533         dev->nRetiredBlocks++;
534 }
535
536 /*
537  * Functions for robustisizing TODO
538  *
539  */
540
541 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
542                                 const __u8 *data,
543                                 const yaffs_ExtendedTags *tags)
544 {
545         dev=dev;
546         chunkInNAND=chunkInNAND;
547         data=data;
548         tags=tags;
549 }
550
551 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
552                                 const yaffs_ExtendedTags *tags)
553 {
554         dev=dev;
555         chunkInNAND=chunkInNAND;
556         tags=tags;
557 }
558
559 void yaffs_HandleChunkError(yaffs_Device *dev, yaffs_BlockInfo *bi)
560 {
561         if (!bi->gcPrioritise) {
562                 bi->gcPrioritise = 1;
563                 dev->hasPendingPrioritisedGCs = 1;
564                 bi->chunkErrorStrikes++;
565
566                 if (bi->chunkErrorStrikes > 3) {
567                         bi->needsRetiring = 1; /* Too many stikes, so retire this */
568                         T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Block struck out" TENDSTR)));
569
570                 }
571         }
572 }
573
574 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
575                 int erasedOk)
576 {
577         int blockInNAND = chunkInNAND / dev->param.nChunksPerBlock;
578         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
579
580         yaffs_HandleChunkError(dev, bi);
581
582         if (erasedOk) {
583                 /* Was an actual write failure, so mark the block for retirement  */
584                 bi->needsRetiring = 1;
585                 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
586                   (TSTR("**>> Block %d needs retiring" TENDSTR), blockInNAND));
587         }
588
589         /* Delete the chunk */
590         yaffs_DeleteChunk(dev, chunkInNAND, 1, __LINE__);
591         yaffs_SkipRestOfBlock(dev);
592 }
593
594
595 /*---------------- Name handling functions ------------*/
596
597 static __u16 yaffs_CalcNameSum(const YCHAR *name)
598 {
599         __u16 sum = 0;
600         __u16 i = 1;
601
602         const YUCHAR *bname = (const YUCHAR *) name;
603         if (bname) {
604                 while ((*bname) && (i < (YAFFS_MAX_NAME_LENGTH/2))) {
605
606 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
607                         sum += yaffs_toupper(*bname) * i;
608 #else
609                         sum += (*bname) * i;
610 #endif
611                         i++;
612                         bname++;
613                 }
614         }
615         return sum;
616 }
617
618 void yaffs_SetObjectName(yaffs_Object *obj, const YCHAR *name)
619 {
620 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
621         memset(obj->shortName, 0, sizeof(YCHAR) * (YAFFS_SHORT_NAME_LENGTH+1));
622         if (name && yaffs_strnlen(name,YAFFS_SHORT_NAME_LENGTH+1) <= YAFFS_SHORT_NAME_LENGTH)
623                 yaffs_strcpy(obj->shortName, name);
624         else
625                 obj->shortName[0] = _Y('\0');
626 #endif
627         obj->sum = yaffs_CalcNameSum(name);
628 }
629
630 void yaffs_SetObjectNameFromOH(yaffs_Object *obj, const yaffs_ObjectHeader *oh)
631 {
632 #ifdef CONFIG_YAFFS_AUTO_UNICODE
633         YCHAR tmpName[YAFFS_MAX_NAME_LENGTH+1];
634         memset(tmpName,0,sizeof(tmpName));
635         yaffs_LoadNameFromObjectHeader(obj->myDev,tmpName,oh->name,YAFFS_MAX_NAME_LENGTH+1);
636         yaffs_SetObjectName(obj,tmpName);
637 #else
638         yaffs_SetObjectName(obj,oh->name);
639 #endif
640 }
641
642 /*-------------------- TNODES -------------------
643
644  * List of spare tnodes
645  * The list is hooked together using the first pointer
646  * in the tnode.
647  */
648
649
650 yaffs_Tnode *yaffs_GetTnode(yaffs_Device *dev)
651 {
652         yaffs_Tnode *tn = yaffs_AllocateRawTnode(dev);
653         if (tn){
654                 memset(tn, 0, dev->tnodeSize);
655                 dev->nTnodes++;
656         }
657
658         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
659
660         return tn;
661 }
662
663 /* FreeTnode frees up a tnode and puts it back on the free list */
664 static void yaffs_FreeTnode(yaffs_Device *dev, yaffs_Tnode *tn)
665 {
666         yaffs_FreeRawTnode(dev,tn);
667         dev->nTnodes--;
668         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
669 }
670
671 static void yaffs_DeinitialiseTnodesAndObjects(yaffs_Device *dev)
672 {
673         yaffs_DeinitialiseRawTnodesAndObjects(dev);
674         dev->nObjects = 0;
675         dev->nTnodes = 0;
676 }
677
678
679 void yaffs_LoadLevel0Tnode(yaffs_Device *dev, yaffs_Tnode *tn, unsigned pos,
680                 unsigned val)
681 {
682         __u32 *map = (__u32 *)tn;
683         __u32 bitInMap;
684         __u32 bitInWord;
685         __u32 wordInMap;
686         __u32 mask;
687
688         pos &= YAFFS_TNODES_LEVEL0_MASK;
689         val >>= dev->chunkGroupBits;
690
691         bitInMap = pos * dev->tnodeWidth;
692         wordInMap = bitInMap / 32;
693         bitInWord = bitInMap & (32 - 1);
694
695         mask = dev->tnodeMask << bitInWord;
696
697         map[wordInMap] &= ~mask;
698         map[wordInMap] |= (mask & (val << bitInWord));
699
700         if (dev->tnodeWidth > (32 - bitInWord)) {
701                 bitInWord = (32 - bitInWord);
702                 wordInMap++;;
703                 mask = dev->tnodeMask >> (/*dev->tnodeWidth -*/ bitInWord);
704                 map[wordInMap] &= ~mask;
705                 map[wordInMap] |= (mask & (val >> bitInWord));
706         }
707 }
708
709 __u32 yaffs_GetChunkGroupBase(yaffs_Device *dev, yaffs_Tnode *tn,
710                 unsigned pos)
711 {
712         __u32 *map = (__u32 *)tn;
713         __u32 bitInMap;
714         __u32 bitInWord;
715         __u32 wordInMap;
716         __u32 val;
717
718         pos &= YAFFS_TNODES_LEVEL0_MASK;
719
720         bitInMap = pos * dev->tnodeWidth;
721         wordInMap = bitInMap / 32;
722         bitInWord = bitInMap & (32 - 1);
723
724         val = map[wordInMap] >> bitInWord;
725
726         if      (dev->tnodeWidth > (32 - bitInWord)) {
727                 bitInWord = (32 - bitInWord);
728                 wordInMap++;;
729                 val |= (map[wordInMap] << bitInWord);
730         }
731
732         val &= dev->tnodeMask;
733         val <<= dev->chunkGroupBits;
734
735         return val;
736 }
737
738 /* ------------------- End of individual tnode manipulation -----------------*/
739
740 /* ---------Functions to manipulate the look-up tree (made up of tnodes) ------
741  * The look up tree is represented by the top tnode and the number of topLevel
742  * in the tree. 0 means only the level 0 tnode is in the tree.
743  */
744
745 /* FindLevel0Tnode finds the level 0 tnode, if one exists. */
746 yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,
747                                         yaffs_FileStructure *fStruct,
748                                         __u32 chunkId)
749 {
750         yaffs_Tnode *tn = fStruct->top;
751         __u32 i;
752         int requiredTallness;
753         int level = fStruct->topLevel;
754
755         dev=dev;
756
757         /* Check sane level and chunk Id */
758         if (level < 0 || level > YAFFS_TNODES_MAX_LEVEL)
759                 return NULL;
760
761         if (chunkId > YAFFS_MAX_CHUNK_ID)
762                 return NULL;
763
764         /* First check we're tall enough (ie enough topLevel) */
765
766         i = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
767         requiredTallness = 0;
768         while (i) {
769                 i >>= YAFFS_TNODES_INTERNAL_BITS;
770                 requiredTallness++;
771         }
772
773         if (requiredTallness > fStruct->topLevel)
774                 return NULL; /* Not tall enough, so we can't find it */
775
776         /* Traverse down to level 0 */
777         while (level > 0 && tn) {
778                 tn = tn->internal[(chunkId >>
779                         (YAFFS_TNODES_LEVEL0_BITS +
780                                 (level - 1) *
781                                 YAFFS_TNODES_INTERNAL_BITS)) &
782                         YAFFS_TNODES_INTERNAL_MASK];
783                 level--;
784         }
785
786         return tn;
787 }
788
789 /* AddOrFindLevel0Tnode finds the level 0 tnode if it exists, otherwise first expands the tree.
790  * This happens in two steps:
791  *  1. If the tree isn't tall enough, then make it taller.
792  *  2. Scan down the tree towards the level 0 tnode adding tnodes if required.
793  *
794  * Used when modifying the tree.
795  *
796  *  If the tn argument is NULL, then a fresh tnode will be added otherwise the specified tn will
797  *  be plugged into the ttree.
798  */
799
800 yaffs_Tnode *yaffs_AddOrFindLevel0Tnode(yaffs_Device *dev,
801                                         yaffs_FileStructure *fStruct,
802                                         __u32 chunkId,
803                                         yaffs_Tnode *passedTn)
804 {
805         int requiredTallness;
806         int i;
807         int l;
808         yaffs_Tnode *tn;
809
810         __u32 x;
811
812
813         /* Check sane level and page Id */
814         if (fStruct->topLevel < 0 || fStruct->topLevel > YAFFS_TNODES_MAX_LEVEL)
815                 return NULL;
816
817         if (chunkId > YAFFS_MAX_CHUNK_ID)
818                 return NULL;
819
820         /* First check we're tall enough (ie enough topLevel) */
821
822         x = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
823         requiredTallness = 0;
824         while (x) {
825                 x >>= YAFFS_TNODES_INTERNAL_BITS;
826                 requiredTallness++;
827         }
828
829
830         if (requiredTallness > fStruct->topLevel) {
831                 /* Not tall enough, gotta make the tree taller */
832                 for (i = fStruct->topLevel; i < requiredTallness; i++) {
833
834                         tn = yaffs_GetTnode(dev);
835
836                         if (tn) {
837                                 tn->internal[0] = fStruct->top;
838                                 fStruct->top = tn;
839                                 fStruct->topLevel++;
840                         } else {
841                                 T(YAFFS_TRACE_ERROR,
842                                         (TSTR("yaffs: no more tnodes" TENDSTR)));
843                                 return NULL;
844                         }
845                 }
846         }
847
848         /* Traverse down to level 0, adding anything we need */
849
850         l = fStruct->topLevel;
851         tn = fStruct->top;
852
853         if (l > 0) {
854                 while (l > 0 && tn) {
855                         x = (chunkId >>
856                              (YAFFS_TNODES_LEVEL0_BITS +
857                               (l - 1) * YAFFS_TNODES_INTERNAL_BITS)) &
858                             YAFFS_TNODES_INTERNAL_MASK;
859
860
861                         if ((l > 1) && !tn->internal[x]) {
862                                 /* Add missing non-level-zero tnode */
863                                 tn->internal[x] = yaffs_GetTnode(dev);
864                                 if(!tn->internal[x])
865                                         return NULL;
866                         } else if (l == 1) {
867                                 /* Looking from level 1 at level 0 */
868                                 if (passedTn) {
869                                         /* If we already have one, then release it.*/
870                                         if (tn->internal[x])
871                                                 yaffs_FreeTnode(dev, tn->internal[x]);
872                                         tn->internal[x] = passedTn;
873
874                                 } else if (!tn->internal[x]) {
875                                         /* Don't have one, none passed in */
876                                         tn->internal[x] = yaffs_GetTnode(dev);
877                                         if(!tn->internal[x])
878                                                 return NULL;
879                                 }
880                         }
881
882                         tn = tn->internal[x];
883                         l--;
884                 }
885         } else {
886                 /* top is level 0 */
887                 if (passedTn) {
888                         memcpy(tn, passedTn, (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8);
889                         yaffs_FreeTnode(dev, passedTn);
890                 }
891         }
892
893         return tn;
894 }
895
896 static int yaffs_FindChunkInGroup(yaffs_Device *dev, int theChunk,
897                                 yaffs_ExtendedTags *tags, int objectId,
898                                 int chunkInInode)
899 {
900         int j;
901
902         for (j = 0; theChunk && j < dev->chunkGroupSize; j++) {
903                 if (yaffs_CheckChunkBit(dev, theChunk / dev->param.nChunksPerBlock,
904                                 theChunk % dev->param.nChunksPerBlock)) {
905                         
906                         if(dev->chunkGroupSize == 1)
907                                 return theChunk;
908                         else {
909                                 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL,
910                                                                 tags);
911                                 if (yaffs_TagsMatch(tags, objectId, chunkInInode)) {
912                                         /* found it; */
913                                         return theChunk;
914                                 }
915                         }
916                 }
917                 theChunk++;
918         }
919         return -1;
920 }
921
922 #if 0
923 /* Experimental code not being used yet. Might speed up file deletion */
924 /* DeleteWorker scans backwards through the tnode tree and deletes all the
925  * chunks and tnodes in the file.
926  * Returns 1 if the tree was deleted.
927  * Returns 0 if it stopped early due to hitting the limit and the delete is incomplete.
928  */
929
930 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level,
931                               int chunkOffset, int *limit)
932 {
933         int i;
934         int chunkInInode;
935         int theChunk;
936         yaffs_ExtendedTags tags;
937         int foundChunk;
938         yaffs_Device *dev = in->myDev;
939
940         int allDone = 1;
941
942         if (tn) {
943                 if (level > 0) {
944                         for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
945                              i--) {
946                                 if (tn->internal[i]) {
947                                         if (limit && (*limit) < 0) {
948                                                 allDone = 0;
949                                         } else {
950                                                 allDone =
951                                                         yaffs_DeleteWorker(in,
952                                                                 tn->
953                                                                 internal
954                                                                 [i],
955                                                                 level -
956                                                                 1,
957                                                                 (chunkOffset
958                                                                         <<
959                                                                         YAFFS_TNODES_INTERNAL_BITS)
960                                                                 + i,
961                                                                 limit);
962                                         }
963                                         if (allDone) {
964                                                 yaffs_FreeTnode(dev,
965                                                                 tn->
966                                                                 internal[i]);
967                                                 tn->internal[i] = NULL;
968                                         }
969                                 }
970                         }
971                         return (allDone) ? 1 : 0;
972                 } else if (level == 0) {
973                         int hitLimit = 0;
974
975                         for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0 && !hitLimit;
976                                         i--) {
977                                 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
978                                 if (theChunk) {
979
980                                         chunkInInode = (chunkOffset <<
981                                                 YAFFS_TNODES_LEVEL0_BITS) + i;
982
983                                         foundChunk =
984                                                 yaffs_FindChunkInGroup(dev,
985                                                                 theChunk,
986                                                                 &tags,
987                                                                 in->objectId,
988                                                                 chunkInInode);
989
990                                         if (foundChunk > 0) {
991                                                 yaffs_DeleteChunk(dev,
992                                                                   foundChunk, 1,
993                                                                   __LINE__);
994                                                 in->nDataChunks--;
995                                                 if (limit) {
996                                                         *limit = *limit - 1;
997                                                         if (*limit <= 0)
998                                                                 hitLimit = 1;
999                                                 }
1000
1001                                         }
1002
1003                                         yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1004                                 }
1005
1006                         }
1007                         return (i < 0) ? 1 : 0;
1008
1009                 }
1010
1011         }
1012
1013         return 1;
1014
1015 }
1016
1017 #endif
1018
1019 static void yaffs_SoftDeleteChunk(yaffs_Device *dev, int chunk)
1020 {
1021         yaffs_BlockInfo *theBlock;
1022         unsigned blockNo;
1023
1024         T(YAFFS_TRACE_DELETION, (TSTR("soft delete chunk %d" TENDSTR), chunk));
1025
1026         blockNo =  chunk / dev->param.nChunksPerBlock;
1027         theBlock = yaffs_GetBlockInfo(dev, blockNo);
1028         if (theBlock) {
1029                 theBlock->softDeletions++;
1030                 dev->nFreeChunks++;
1031                 yaffs2_UpdateOldestDirtySequence(dev, blockNo, theBlock);
1032         }
1033 }
1034
1035 /* SoftDeleteWorker scans backwards through the tnode tree and soft deletes all the chunks in the file.
1036  * All soft deleting does is increment the block's softdelete count and pulls the chunk out
1037  * of the tnode.
1038  * Thus, essentially this is the same as DeleteWorker except that the chunks are soft deleted.
1039  */
1040
1041 static int yaffs_SoftDeleteWorker(yaffs_Object *in, yaffs_Tnode *tn,
1042                                   __u32 level, int chunkOffset)
1043 {
1044         int i;
1045         int theChunk;
1046         int allDone = 1;
1047         yaffs_Device *dev = in->myDev;
1048
1049         if (tn) {
1050                 if (level > 0) {
1051
1052                         for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
1053                              i--) {
1054                                 if (tn->internal[i]) {
1055                                         allDone =
1056                                             yaffs_SoftDeleteWorker(in,
1057                                                                    tn->
1058                                                                    internal[i],
1059                                                                    level - 1,
1060                                                                    (chunkOffset
1061                                                                     <<
1062                                                                     YAFFS_TNODES_INTERNAL_BITS)
1063                                                                    + i);
1064                                         if (allDone) {
1065                                                 yaffs_FreeTnode(dev,
1066                                                                 tn->
1067                                                                 internal[i]);
1068                                                 tn->internal[i] = NULL;
1069                                         } else {
1070                                                 /* Hoosterman... how could this happen? */
1071                                         }
1072                                 }
1073                         }
1074                         return (allDone) ? 1 : 0;
1075                 } else if (level == 0) {
1076
1077                         for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0; i--) {
1078                                 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
1079                                 if (theChunk) {
1080                                         /* Note this does not find the real chunk, only the chunk group.
1081                                          * We make an assumption that a chunk group is not larger than
1082                                          * a block.
1083                                          */
1084                                         yaffs_SoftDeleteChunk(dev, theChunk);
1085                                         yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1086                                 }
1087
1088                         }
1089                         return 1;
1090
1091                 }
1092
1093         }
1094
1095         return 1;
1096
1097 }
1098
1099 static void yaffs_SoftDeleteFile(yaffs_Object *obj)
1100 {
1101         if (obj->deleted &&
1102             obj->variantType == YAFFS_OBJECT_TYPE_FILE && !obj->softDeleted) {
1103                 if (obj->nDataChunks <= 0) {
1104                         /* Empty file with no duplicate object headers, just delete it immediately */
1105                         yaffs_FreeTnode(obj->myDev,
1106                                         obj->variant.fileVariant.top);
1107                         obj->variant.fileVariant.top = NULL;
1108                         T(YAFFS_TRACE_TRACING,
1109                           (TSTR("yaffs: Deleting empty file %d" TENDSTR),
1110                            obj->objectId));
1111                         yaffs_DoGenericObjectDeletion(obj);
1112                 } else {
1113                         yaffs_SoftDeleteWorker(obj,
1114                                                obj->variant.fileVariant.top,
1115                                                obj->variant.fileVariant.
1116                                                topLevel, 0);
1117                         obj->softDeleted = 1;
1118                 }
1119         }
1120 }
1121
1122 /* Pruning removes any part of the file structure tree that is beyond the
1123  * bounds of the file (ie that does not point to chunks).
1124  *
1125  * A file should only get pruned when its size is reduced.
1126  *
1127  * Before pruning, the chunks must be pulled from the tree and the
1128  * level 0 tnode entries must be zeroed out.
1129  * Could also use this for file deletion, but that's probably better handled
1130  * by a special case.
1131  *
1132  * This function is recursive. For levels > 0 the function is called again on
1133  * any sub-tree. For level == 0 we just check if the sub-tree has data.
1134  * If there is no data in a subtree then it is pruned.
1135  */
1136
1137 static yaffs_Tnode *yaffs_PruneWorker(yaffs_Device *dev, yaffs_Tnode *tn,
1138                                 __u32 level, int del0)
1139 {
1140         int i;
1141         int hasData;
1142
1143         if (tn) {
1144                 hasData = 0;
1145
1146                 if(level > 0){
1147                         for (i = 0; i < YAFFS_NTNODES_INTERNAL; i++) {
1148                                 if (tn->internal[i]) {
1149                                         tn->internal[i] =
1150                                                 yaffs_PruneWorker(dev, tn->internal[i],
1151                                                         level - 1,
1152                                                         (i == 0) ? del0 : 1);
1153                                 }
1154
1155                                 if (tn->internal[i])
1156                                         hasData++;
1157                         }
1158                 } else {
1159                         int tnodeSize_u32 = dev->tnodeSize/sizeof(__u32);
1160                         __u32 *map = (__u32 *)tn;
1161
1162                         for(i = 0; !hasData && i < tnodeSize_u32; i++){
1163                                 if(map[i])
1164                                         hasData++;
1165                         }
1166                 }
1167
1168                 if (hasData == 0 && del0) {
1169                         /* Free and return NULL */
1170
1171                         yaffs_FreeTnode(dev, tn);
1172                         tn = NULL;
1173                 }
1174
1175         }
1176
1177         return tn;
1178
1179 }
1180
1181 static int yaffs_PruneFileStructure(yaffs_Device *dev,
1182                                 yaffs_FileStructure *fStruct)
1183 {
1184         int i;
1185         int hasData;
1186         int done = 0;
1187         yaffs_Tnode *tn;
1188
1189         if (fStruct->topLevel > 0) {
1190                 fStruct->top =
1191                     yaffs_PruneWorker(dev, fStruct->top, fStruct->topLevel, 0);
1192
1193                 /* Now we have a tree with all the non-zero branches NULL but the height
1194                  * is the same as it was.
1195                  * Let's see if we can trim internal tnodes to shorten the tree.
1196                  * We can do this if only the 0th element in the tnode is in use
1197                  * (ie all the non-zero are NULL)
1198                  */
1199
1200                 while (fStruct->topLevel && !done) {
1201                         tn = fStruct->top;
1202
1203                         hasData = 0;
1204                         for (i = 1; i < YAFFS_NTNODES_INTERNAL; i++) {
1205                                 if (tn->internal[i])
1206                                         hasData++;
1207                         }
1208
1209                         if (!hasData) {
1210                                 fStruct->top = tn->internal[0];
1211                                 fStruct->topLevel--;
1212                                 yaffs_FreeTnode(dev, tn);
1213                         } else {
1214                                 done = 1;
1215                         }
1216                 }
1217         }
1218
1219         return YAFFS_OK;
1220 }
1221
1222 /*-------------------- End of File Structure functions.-------------------*/
1223
1224
1225 /* AllocateEmptyObject gets us a clean Object. Tries to make allocate more if we run out */
1226 static yaffs_Object *yaffs_AllocateEmptyObject(yaffs_Device *dev)
1227 {
1228         yaffs_Object *obj = yaffs_AllocateRawObject(dev);
1229
1230         if (obj) {
1231                 dev->nObjects++;
1232
1233                 /* Now sweeten it up... */
1234
1235                 memset(obj, 0, sizeof(yaffs_Object));
1236                 obj->beingCreated = 1;
1237
1238                 obj->myDev = dev;
1239                 obj->hdrChunk = 0;
1240                 obj->variantType = YAFFS_OBJECT_TYPE_UNKNOWN;
1241                 YINIT_LIST_HEAD(&(obj->hardLinks));
1242                 YINIT_LIST_HEAD(&(obj->hashLink));
1243                 YINIT_LIST_HEAD(&obj->siblings);
1244
1245
1246                 /* Now make the directory sane */
1247                 if (dev->rootDir) {
1248                         obj->parent = dev->rootDir;
1249                         ylist_add(&(obj->siblings), &dev->rootDir->variant.directoryVariant.children);
1250                 }
1251
1252                 /* Add it to the lost and found directory.
1253                  * NB Can't put root or lostNFound in lostNFound so
1254                  * check if lostNFound exists first
1255                  */
1256                 if (dev->lostNFoundDir)
1257                         yaffs_AddObjectToDirectory(dev->lostNFoundDir, obj);
1258
1259                 obj->beingCreated = 0;
1260         }
1261
1262         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1263
1264         return obj;
1265 }
1266
1267 static yaffs_Object *yaffs_CreateFakeDirectory(yaffs_Device *dev, int number,
1268                                                __u32 mode)
1269 {
1270
1271         yaffs_Object *obj =
1272             yaffs_CreateNewObject(dev, number, YAFFS_OBJECT_TYPE_DIRECTORY);
1273         if (obj) {
1274                 obj->fake = 1;          /* it is fake so it might have no NAND presence... */
1275                 obj->renameAllowed = 0; /* ... and we're not allowed to rename it... */
1276                 obj->unlinkAllowed = 0; /* ... or unlink it */
1277                 obj->deleted = 0;
1278                 obj->unlinked = 0;
1279                 obj->yst_mode = mode;
1280                 obj->myDev = dev;
1281                 obj->hdrChunk = 0;      /* Not a valid chunk. */
1282         }
1283
1284         return obj;
1285
1286 }
1287
1288 static void yaffs_UnhashObject(yaffs_Object *obj)
1289 {
1290         int bucket;
1291         yaffs_Device *dev = obj->myDev;
1292
1293         /* If it is still linked into the bucket list, free from the list */
1294         if (!ylist_empty(&obj->hashLink)) {
1295                 ylist_del_init(&obj->hashLink);
1296                 bucket = yaffs_HashFunction(obj->objectId);
1297                 dev->objectBucket[bucket].count--;
1298         }
1299 }
1300
1301 /*  FreeObject frees up a Object and puts it back on the free list */
1302 static void yaffs_FreeObject(yaffs_Object *obj)
1303 {
1304         yaffs_Device *dev = obj->myDev;
1305
1306         T(YAFFS_TRACE_OS, (TSTR("FreeObject %p inode %p"TENDSTR), obj, obj->myInode));
1307
1308         if (!obj)
1309                 YBUG();
1310         if (obj->parent)
1311                 YBUG();
1312         if (!ylist_empty(&obj->siblings))
1313                 YBUG();
1314
1315
1316         if (obj->myInode) {
1317                 /* We're still hooked up to a cached inode.
1318                  * Don't delete now, but mark for later deletion
1319                  */
1320                 obj->deferedFree = 1;
1321                 return;
1322         }
1323
1324         yaffs_UnhashObject(obj);
1325
1326         yaffs_FreeRawObject(dev,obj);
1327         dev->nObjects--;
1328         dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1329 }
1330
1331
1332 void yaffs_HandleDeferedFree(yaffs_Object *obj)
1333 {
1334         if (obj->deferedFree)
1335                 yaffs_FreeObject(obj);
1336 }
1337
1338 static void yaffs_InitialiseTnodesAndObjects(yaffs_Device *dev)
1339 {
1340         int i;
1341
1342         dev->nObjects = 0;
1343         dev->nTnodes = 0;
1344
1345         yaffs_InitialiseRawTnodesAndObjects(dev);
1346
1347         for (i = 0; i < YAFFS_NOBJECT_BUCKETS; i++) {
1348                 YINIT_LIST_HEAD(&dev->objectBucket[i].list);
1349                 dev->objectBucket[i].count = 0;
1350         }
1351 }
1352
1353 static int yaffs_FindNiceObjectBucket(yaffs_Device *dev)
1354 {
1355         int i;
1356         int l = 999;
1357         int lowest = 999999;
1358
1359
1360         /* Search for the shortest list or one that
1361          * isn't too long.
1362          */
1363
1364         for (i = 0; i < 10 && lowest > 4; i++) {
1365                 dev->bucketFinder++;
1366                 dev->bucketFinder %= YAFFS_NOBJECT_BUCKETS;
1367                 if (dev->objectBucket[dev->bucketFinder].count < lowest) {
1368                         lowest = dev->objectBucket[dev->bucketFinder].count;
1369                         l = dev->bucketFinder;
1370                 }
1371
1372         }
1373
1374         return l;
1375 }
1376
1377 static int yaffs_CreateNewObjectNumber(yaffs_Device *dev)
1378 {
1379         int bucket = yaffs_FindNiceObjectBucket(dev);
1380
1381         /* Now find an object value that has not already been taken
1382          * by scanning the list.
1383          */
1384
1385         int found = 0;
1386         struct ylist_head *i;
1387
1388         __u32 n = (__u32) bucket;
1389
1390         /* yaffs_CheckObjectHashSanity();  */
1391
1392         while (!found) {
1393                 found = 1;
1394                 n += YAFFS_NOBJECT_BUCKETS;
1395                 if (1 || dev->objectBucket[bucket].count > 0) {
1396                         ylist_for_each(i, &dev->objectBucket[bucket].list) {
1397                                 /* If there is already one in the list */
1398                                 if (i && ylist_entry(i, yaffs_Object,
1399                                                 hashLink)->objectId == n) {
1400                                         found = 0;
1401                                 }
1402                         }
1403                 }
1404         }
1405
1406         return n;
1407 }
1408
1409 static void yaffs_HashObject(yaffs_Object *in)
1410 {
1411         int bucket = yaffs_HashFunction(in->objectId);
1412         yaffs_Device *dev = in->myDev;
1413
1414         ylist_add(&in->hashLink, &dev->objectBucket[bucket].list);
1415         dev->objectBucket[bucket].count++;
1416 }
1417
1418 yaffs_Object *yaffs_FindObjectByNumber(yaffs_Device *dev, __u32 number)
1419 {
1420         int bucket = yaffs_HashFunction(number);
1421         struct ylist_head *i;
1422         yaffs_Object *in;
1423
1424         ylist_for_each(i, &dev->objectBucket[bucket].list) {
1425                 /* Look if it is in the list */
1426                 if (i) {
1427                         in = ylist_entry(i, yaffs_Object, hashLink);
1428                         if (in->objectId == number) {
1429
1430                                 /* Don't tell the VFS about this one if it is defered free */
1431                                 if (in->deferedFree)
1432                                         return NULL;
1433
1434                                 return in;
1435                         }
1436                 }
1437         }
1438
1439         return NULL;
1440 }
1441
1442 yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
1443                                     yaffs_ObjectType type)
1444 {
1445         yaffs_Object *theObject=NULL;
1446         yaffs_Tnode *tn = NULL;
1447
1448         if (number < 0)
1449                 number = yaffs_CreateNewObjectNumber(dev);
1450
1451         if (type == YAFFS_OBJECT_TYPE_FILE) {
1452                 tn = yaffs_GetTnode(dev);
1453                 if (!tn)
1454                         return NULL;
1455         }
1456
1457         theObject = yaffs_AllocateEmptyObject(dev);
1458         if (!theObject){
1459                 if(tn)
1460                         yaffs_FreeTnode(dev,tn);
1461                 return NULL;
1462         }
1463
1464
1465         if (theObject) {
1466                 theObject->fake = 0;
1467                 theObject->renameAllowed = 1;
1468                 theObject->unlinkAllowed = 1;
1469                 theObject->objectId = number;
1470                 yaffs_HashObject(theObject);
1471                 theObject->variantType = type;
1472 #ifdef CONFIG_YAFFS_WINCE
1473                 yfsd_WinFileTimeNow(theObject->win_atime);
1474                 theObject->win_ctime[0] = theObject->win_mtime[0] =
1475                     theObject->win_atime[0];
1476                 theObject->win_ctime[1] = theObject->win_mtime[1] =
1477                     theObject->win_atime[1];
1478
1479 #else
1480
1481                 theObject->yst_atime = theObject->yst_mtime =
1482                     theObject->yst_ctime = Y_CURRENT_TIME;
1483 #endif
1484                 switch (type) {
1485                 case YAFFS_OBJECT_TYPE_FILE:
1486                         theObject->variant.fileVariant.fileSize = 0;
1487                         theObject->variant.fileVariant.scannedFileSize = 0;
1488                         theObject->variant.fileVariant.shrinkSize = 0xFFFFFFFF; /* max __u32 */
1489                         theObject->variant.fileVariant.topLevel = 0;
1490                         theObject->variant.fileVariant.top = tn;
1491                         break;
1492                 case YAFFS_OBJECT_TYPE_DIRECTORY:
1493                         YINIT_LIST_HEAD(&theObject->variant.directoryVariant.
1494                                         children);
1495                         YINIT_LIST_HEAD(&theObject->variant.directoryVariant.
1496                                         dirty);
1497                         break;
1498                 case YAFFS_OBJECT_TYPE_SYMLINK:
1499                 case YAFFS_OBJECT_TYPE_HARDLINK:
1500                 case YAFFS_OBJECT_TYPE_SPECIAL:
1501                         /* No action required */
1502                         break;
1503                 case YAFFS_OBJECT_TYPE_UNKNOWN:
1504                         /* todo this should not happen */
1505                         break;
1506                 }
1507         }
1508
1509         return theObject;
1510 }
1511
1512 yaffs_Object *yaffs_FindOrCreateObjectByNumber(yaffs_Device *dev,
1513                                                 int number,
1514                                                 yaffs_ObjectType type)
1515 {
1516         yaffs_Object *theObject = NULL;
1517
1518         if (number > 0)
1519                 theObject = yaffs_FindObjectByNumber(dev, number);
1520
1521         if (!theObject)
1522                 theObject = yaffs_CreateNewObject(dev, number, type);
1523
1524         return theObject;
1525
1526 }
1527
1528
1529 YCHAR *yaffs_CloneString(const YCHAR *str)
1530 {
1531         YCHAR *newStr = NULL;
1532         int len;
1533
1534         if (!str)
1535                 str = _Y("");
1536
1537         len = yaffs_strnlen(str,YAFFS_MAX_ALIAS_LENGTH);
1538         newStr = YMALLOC((len + 1) * sizeof(YCHAR));
1539         if (newStr){
1540                 yaffs_strncpy(newStr, str,len);
1541                 newStr[len] = 0;
1542         }
1543         return newStr;
1544
1545 }
1546
1547 /*
1548  * Mknod (create) a new object.
1549  * equivalentObject only has meaning for a hard link;
1550  * aliasString only has meaning for a symlink.
1551  * rdev only has meaning for devices (a subset of special objects)
1552  */
1553
1554 static yaffs_Object *yaffs_MknodObject(yaffs_ObjectType type,
1555                                        yaffs_Object *parent,
1556                                        const YCHAR *name,
1557                                        __u32 mode,
1558                                        __u32 uid,
1559                                        __u32 gid,
1560                                        yaffs_Object *equivalentObject,
1561                                        const YCHAR *aliasString, __u32 rdev)
1562 {
1563         yaffs_Object *in;
1564         YCHAR *str = NULL;
1565
1566         yaffs_Device *dev = parent->myDev;
1567
1568         /* Check if the entry exists. If it does then fail the call since we don't want a dup.*/
1569         if (yaffs_FindObjectByName(parent, name))
1570                 return NULL;
1571
1572         if (type == YAFFS_OBJECT_TYPE_SYMLINK) {
1573                 str = yaffs_CloneString(aliasString);
1574                 if (!str)
1575                         return NULL;
1576         }
1577
1578         in = yaffs_CreateNewObject(dev, -1, type);
1579
1580         if (!in){
1581                 if(str)
1582                         YFREE(str);
1583                 return NULL;
1584         }
1585
1586
1587
1588
1589
1590         if (in) {
1591                 in->hdrChunk = 0;
1592                 in->valid = 1;
1593                 in->variantType = type;
1594
1595                 in->yst_mode = mode;
1596
1597 #ifdef CONFIG_YAFFS_WINCE
1598                 yfsd_WinFileTimeNow(in->win_atime);
1599                 in->win_ctime[0] = in->win_mtime[0] = in->win_atime[0];
1600                 in->win_ctime[1] = in->win_mtime[1] = in->win_atime[1];
1601
1602 #else
1603                 in->yst_atime = in->yst_mtime = in->yst_ctime = Y_CURRENT_TIME;
1604
1605                 in->yst_rdev = rdev;
1606                 in->yst_uid = uid;
1607                 in->yst_gid = gid;
1608 #endif
1609                 in->nDataChunks = 0;
1610
1611                 yaffs_SetObjectName(in, name);
1612                 in->dirty = 1;
1613
1614                 yaffs_AddObjectToDirectory(parent, in);
1615
1616                 in->myDev = parent->myDev;
1617
1618                 switch (type) {
1619                 case YAFFS_OBJECT_TYPE_SYMLINK:
1620                         in->variant.symLinkVariant.alias = str;
1621                         break;
1622                 case YAFFS_OBJECT_TYPE_HARDLINK:
1623                         in->variant.hardLinkVariant.equivalentObject =
1624                                 equivalentObject;
1625                         in->variant.hardLinkVariant.equivalentObjectId =
1626                                 equivalentObject->objectId;
1627                         ylist_add(&in->hardLinks, &equivalentObject->hardLinks);
1628                         break;
1629                 case YAFFS_OBJECT_TYPE_FILE:
1630                 case YAFFS_OBJECT_TYPE_DIRECTORY:
1631                 case YAFFS_OBJECT_TYPE_SPECIAL:
1632                 case YAFFS_OBJECT_TYPE_UNKNOWN:
1633                         /* do nothing */
1634                         break;
1635                 }
1636
1637                 if (yaffs_UpdateObjectHeader(in, name, 0, 0, 0, NULL) < 0) {
1638                         /* Could not create the object header, fail the creation */
1639                         yaffs_DeleteObject(in);
1640                         in = NULL;
1641                 }
1642
1643                 yaffs_UpdateParent(parent);
1644         }
1645
1646         return in;
1647 }
1648
1649 yaffs_Object *yaffs_MknodFile(yaffs_Object *parent, const YCHAR *name,
1650                         __u32 mode, __u32 uid, __u32 gid)
1651 {
1652         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_FILE, parent, name, mode,
1653                                 uid, gid, NULL, NULL, 0);
1654 }
1655
1656 yaffs_Object *yaffs_MknodDirectory(yaffs_Object *parent, const YCHAR *name,
1657                                 __u32 mode, __u32 uid, __u32 gid)
1658 {
1659         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_DIRECTORY, parent, name,
1660                                  mode, uid, gid, NULL, NULL, 0);
1661 }
1662
1663 yaffs_Object *yaffs_MknodSpecial(yaffs_Object *parent, const YCHAR *name,
1664                                 __u32 mode, __u32 uid, __u32 gid, __u32 rdev)
1665 {
1666         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SPECIAL, parent, name, mode,
1667                                  uid, gid, NULL, NULL, rdev);
1668 }
1669
1670 yaffs_Object *yaffs_MknodSymLink(yaffs_Object *parent, const YCHAR *name,
1671                                 __u32 mode, __u32 uid, __u32 gid,
1672                                 const YCHAR *alias)
1673 {
1674         return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SYMLINK, parent, name, mode,
1675                                 uid, gid, NULL, alias, 0);
1676 }
1677
1678 /* yaffs_Link returns the object id of the equivalent object.*/
1679 yaffs_Object *yaffs_Link(yaffs_Object *parent, const YCHAR *name,
1680                         yaffs_Object *equivalentObject)
1681 {
1682         /* Get the real object in case we were fed a hard link as an equivalent object */
1683         equivalentObject = yaffs_GetEquivalentObject(equivalentObject);
1684
1685         if (yaffs_MknodObject
1686             (YAFFS_OBJECT_TYPE_HARDLINK, parent, name, 0, 0, 0,
1687              equivalentObject, NULL, 0)) {
1688                 return equivalentObject;
1689         } else {
1690                 return NULL;
1691         }
1692
1693 }
1694
1695 static int yaffs_ChangeObjectName(yaffs_Object *obj, yaffs_Object *newDir,
1696                                 const YCHAR *newName, int force, int shadows)
1697 {
1698         int unlinkOp;
1699         int deleteOp;
1700
1701         yaffs_Object *existingTarget;
1702
1703         if (newDir == NULL)
1704                 newDir = obj->parent;   /* use the old directory */
1705
1706         if (newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
1707                 T(YAFFS_TRACE_ALWAYS,
1708                   (TSTR
1709                    ("tragedy: yaffs_ChangeObjectName: newDir is not a directory"
1710                     TENDSTR)));
1711                 YBUG();
1712         }
1713
1714         /* TODO: Do we need this different handling for YAFFS2 and YAFFS1?? */
1715         if (obj->myDev->param.isYaffs2)
1716                 unlinkOp = (newDir == obj->myDev->unlinkedDir);
1717         else
1718                 unlinkOp = (newDir == obj->myDev->unlinkedDir
1719                             && obj->variantType == YAFFS_OBJECT_TYPE_FILE);
1720
1721         deleteOp = (newDir == obj->myDev->deletedDir);
1722
1723         existingTarget = yaffs_FindObjectByName(newDir, newName);
1724
1725         /* If the object is a file going into the unlinked directory,
1726          *   then it is OK to just stuff it in since duplicate names are allowed.
1727          *   else only proceed if the new name does not exist and if we're putting
1728          *   it into a directory.
1729          */
1730         if ((unlinkOp ||
1731              deleteOp ||
1732              force ||
1733              (shadows > 0) ||
1734              !existingTarget) &&
1735             newDir->variantType == YAFFS_OBJECT_TYPE_DIRECTORY) {
1736                 yaffs_SetObjectName(obj, newName);
1737                 obj->dirty = 1;
1738
1739                 yaffs_AddObjectToDirectory(newDir, obj);
1740
1741                 if (unlinkOp)
1742                         obj->unlinked = 1;
1743
1744                 /* If it is a deletion then we mark it as a shrink for gc purposes. */
1745                 if (yaffs_UpdateObjectHeader(obj, newName, 0, deleteOp, shadows, NULL) >= 0)
1746                         return YAFFS_OK;
1747         }
1748
1749         return YAFFS_FAIL;
1750 }
1751
1752 int yaffs_RenameObject(yaffs_Object *oldDir, const YCHAR *oldName,
1753                 yaffs_Object *newDir, const YCHAR *newName)
1754 {
1755         yaffs_Object *obj = NULL;
1756         yaffs_Object *existingTarget = NULL;
1757         int force = 0;
1758         int result;
1759         yaffs_Device *dev;
1760
1761
1762         if (!oldDir || oldDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
1763                 YBUG();
1764         if (!newDir || newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
1765                 YBUG();
1766
1767         dev = oldDir->myDev;
1768
1769 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
1770         /* Special case for case insemsitive systems (eg. WinCE).
1771          * While look-up is case insensitive, the name isn't.
1772          * Therefore we might want to change x.txt to X.txt
1773         */
1774         if (oldDir == newDir && yaffs_strcmp(oldName, newName) == 0)
1775                 force = 1;
1776 #endif
1777
1778         if(yaffs_strnlen(newName,YAFFS_MAX_NAME_LENGTH+1) > YAFFS_MAX_NAME_LENGTH)
1779                 /* ENAMETOOLONG */
1780                 return YAFFS_FAIL;
1781
1782         obj = yaffs_FindObjectByName(oldDir, oldName);
1783
1784         if (obj && obj->renameAllowed) {
1785
1786                 /* Now do the handling for an existing target, if there is one */
1787
1788                 existingTarget = yaffs_FindObjectByName(newDir, newName);
1789                 if (existingTarget &&
1790                         existingTarget->variantType == YAFFS_OBJECT_TYPE_DIRECTORY &&
1791                         !ylist_empty(&existingTarget->variant.directoryVariant.children)) {
1792                         /* There is a target that is a non-empty directory, so we fail */
1793                         return YAFFS_FAIL;      /* EEXIST or ENOTEMPTY */
1794                 } else if (existingTarget && existingTarget != obj) {
1795                         /* Nuke the target first, using shadowing,
1796                          * but only if it isn't the same object.
1797                          *
1798                          * Note we must disable gc otherwise it can mess up the shadowing.
1799                          *
1800                          */
1801                         dev->gcDisable=1;
1802                         yaffs_ChangeObjectName(obj, newDir, newName, force,
1803                                                 existingTarget->objectId);
1804                         existingTarget->isShadowed = 1;
1805                         yaffs_UnlinkObject(existingTarget);
1806                         dev->gcDisable=0;
1807                 }
1808
1809                 result = yaffs_ChangeObjectName(obj, newDir, newName, 1, 0);
1810
1811                 yaffs_UpdateParent(oldDir);
1812                 if(newDir != oldDir)
1813                         yaffs_UpdateParent(newDir);
1814                 
1815                 return result;
1816         }
1817         return YAFFS_FAIL;
1818 }
1819
1820 /*------------------------- Block Management and Page Allocation ----------------*/
1821
1822 static int yaffs_InitialiseBlocks(yaffs_Device *dev)
1823 {
1824         int nBlocks = dev->internalEndBlock - dev->internalStartBlock + 1;
1825
1826         dev->blockInfo = NULL;
1827         dev->chunkBits = NULL;
1828
1829         dev->allocationBlock = -1;      /* force it to get a new one */
1830
1831         /* If the first allocation strategy fails, thry the alternate one */
1832         dev->blockInfo = YMALLOC(nBlocks * sizeof(yaffs_BlockInfo));
1833         if (!dev->blockInfo) {
1834                 dev->blockInfo = YMALLOC_ALT(nBlocks * sizeof(yaffs_BlockInfo));
1835                 dev->blockInfoAlt = 1;
1836         } else
1837                 dev->blockInfoAlt = 0;
1838
1839         if (dev->blockInfo) {
1840                 /* Set up dynamic blockinfo stuff. */
1841                 dev->chunkBitmapStride = (dev->param.nChunksPerBlock + 7) / 8; /* round up bytes */
1842                 dev->chunkBits = YMALLOC(dev->chunkBitmapStride * nBlocks);
1843                 if (!dev->chunkBits) {
1844                         dev->chunkBits = YMALLOC_ALT(dev->chunkBitmapStride * nBlocks);
1845                         dev->chunkBitsAlt = 1;
1846                 } else
1847                         dev->chunkBitsAlt = 0;
1848         }
1849
1850         if (dev->blockInfo && dev->chunkBits) {
1851                 memset(dev->blockInfo, 0, nBlocks * sizeof(yaffs_BlockInfo));
1852                 memset(dev->chunkBits, 0, dev->chunkBitmapStride * nBlocks);
1853                 return YAFFS_OK;
1854         }
1855
1856         return YAFFS_FAIL;
1857 }
1858
1859 static void yaffs_DeinitialiseBlocks(yaffs_Device *dev)
1860 {
1861         if (dev->blockInfoAlt && dev->blockInfo)
1862                 YFREE_ALT(dev->blockInfo);
1863         else if (dev->blockInfo)
1864                 YFREE(dev->blockInfo);
1865
1866         dev->blockInfoAlt = 0;
1867
1868         dev->blockInfo = NULL;
1869
1870         if (dev->chunkBitsAlt && dev->chunkBits)
1871                 YFREE_ALT(dev->chunkBits);
1872         else if (dev->chunkBits)
1873                 YFREE(dev->chunkBits);
1874         dev->chunkBitsAlt = 0;
1875         dev->chunkBits = NULL;
1876 }
1877
1878 void yaffs_BlockBecameDirty(yaffs_Device *dev, int blockNo)
1879 {
1880         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockNo);
1881
1882         int erasedOk = 0;
1883
1884         /* If the block is still healthy erase it and mark as clean.
1885          * If the block has had a data failure, then retire it.
1886          */
1887
1888         T(YAFFS_TRACE_GC | YAFFS_TRACE_ERASE,
1889                 (TSTR("yaffs_BlockBecameDirty block %d state %d %s"TENDSTR),
1890                 blockNo, bi->blockState, (bi->needsRetiring) ? "needs retiring" : ""));
1891
1892         yaffs2_ClearOldestDirtySequence(dev,bi);
1893
1894         bi->blockState = YAFFS_BLOCK_STATE_DIRTY;
1895
1896         /* If this is the block being garbage collected then stop gc'ing this block */
1897         if(blockNo == dev->gcBlock)
1898                 dev->gcBlock = 0;
1899
1900         /* If this block is currently the best candidate for gc then drop as a candidate */
1901         if(blockNo == dev->gcDirtiest){
1902                 dev->gcDirtiest = 0;
1903                 dev->gcPagesInUse = 0;
1904         }
1905
1906         if (!bi->needsRetiring) {
1907                 yaffs2_InvalidateCheckpoint(dev);
1908                 erasedOk = yaffs_EraseBlockInNAND(dev, blockNo);
1909                 if (!erasedOk) {
1910                         dev->nErasureFailures++;
1911                         T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
1912                           (TSTR("**>> Erasure failed %d" TENDSTR), blockNo));
1913                 }
1914         }
1915
1916         if (erasedOk &&
1917             ((yaffs_traceMask & YAFFS_TRACE_ERASE) || !yaffs_SkipVerification(dev))) {
1918                 int i;
1919                 for (i = 0; i < dev->param.nChunksPerBlock; i++) {
1920                         if (!yaffs_CheckChunkErased
1921                             (dev, blockNo * dev->param.nChunksPerBlock + i)) {
1922                                 T(YAFFS_TRACE_ERROR,
1923                                   (TSTR
1924                                    (">>Block %d erasure supposedly OK, but chunk %d not erased"
1925                                     TENDSTR), blockNo, i));
1926                         }
1927                 }
1928         }
1929
1930         if (erasedOk) {
1931                 /* Clean it up... */
1932                 bi->blockState = YAFFS_BLOCK_STATE_EMPTY;
1933                 bi->sequenceNumber = 0;
1934                 dev->nErasedBlocks++;
1935                 bi->pagesInUse = 0;
1936                 bi->softDeletions = 0;
1937                 bi->hasShrinkHeader = 0;
1938                 bi->skipErasedCheck = 1;  /* This is clean, so no need to check */
1939                 bi->gcPrioritise = 0;
1940                 yaffs_ClearChunkBits(dev, blockNo);
1941
1942                 T(YAFFS_TRACE_ERASE,
1943                   (TSTR("Erased block %d" TENDSTR), blockNo));
1944         } else {
1945                 dev->nFreeChunks -= dev->param.nChunksPerBlock; /* We lost a block of free space */
1946
1947                 yaffs_RetireBlock(dev, blockNo);
1948                 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
1949                   (TSTR("**>> Block %d retired" TENDSTR), blockNo));
1950         }
1951 }
1952
1953 static int yaffs_FindBlockForAllocation(yaffs_Device *dev)
1954 {
1955         int i;
1956
1957         yaffs_BlockInfo *bi;
1958
1959         if (dev->nErasedBlocks < 1) {
1960                 /* Hoosterman we've got a problem.
1961                  * Can't get space to gc
1962                  */
1963                 T(YAFFS_TRACE_ERROR,
1964                   (TSTR("yaffs tragedy: no more erased blocks" TENDSTR)));
1965
1966                 return -1;
1967         }
1968
1969         /* Find an empty block. */
1970
1971         for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
1972                 dev->allocationBlockFinder++;
1973                 if (dev->allocationBlockFinder < dev->internalStartBlock
1974                     || dev->allocationBlockFinder > dev->internalEndBlock) {
1975                         dev->allocationBlockFinder = dev->internalStartBlock;
1976                 }
1977
1978                 bi = yaffs_GetBlockInfo(dev, dev->allocationBlockFinder);
1979
1980                 if (bi->blockState == YAFFS_BLOCK_STATE_EMPTY) {
1981                         bi->blockState = YAFFS_BLOCK_STATE_ALLOCATING;
1982                         dev->sequenceNumber++;
1983                         bi->sequenceNumber = dev->sequenceNumber;
1984                         dev->nErasedBlocks--;
1985                         T(YAFFS_TRACE_ALLOCATE,
1986                           (TSTR("Allocated block %d, seq  %d, %d left" TENDSTR),
1987                            dev->allocationBlockFinder, dev->sequenceNumber,
1988                            dev->nErasedBlocks));
1989                         return dev->allocationBlockFinder;
1990                 }
1991         }
1992
1993         T(YAFFS_TRACE_ALWAYS,
1994           (TSTR
1995            ("yaffs tragedy: no more erased blocks, but there should have been %d"
1996             TENDSTR), dev->nErasedBlocks));
1997
1998         return -1;
1999 }
2000
2001
2002 /*
2003  * Check if there's space to allocate...
2004  * Thinks.... do we need top make this ths same as yaffs_GetFreeChunks()?
2005  */
2006 int yaffs_CheckSpaceForAllocation(yaffs_Device *dev, int nChunks)
2007 {
2008         int reservedChunks;
2009         int reservedBlocks = dev->param.nReservedBlocks;
2010         int checkpointBlocks;
2011
2012         checkpointBlocks = yaffs2_CalcCheckpointBlocksRequired(dev);
2013
2014         reservedChunks = ((reservedBlocks + checkpointBlocks) * dev->param.nChunksPerBlock);
2015
2016         return (dev->nFreeChunks > (reservedChunks + nChunks));
2017 }
2018
2019 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
2020                 yaffs_BlockInfo **blockUsedPtr)
2021 {
2022         int retVal;
2023         yaffs_BlockInfo *bi;
2024
2025         if (dev->allocationBlock < 0) {
2026                 /* Get next block to allocate off */
2027                 dev->allocationBlock = yaffs_FindBlockForAllocation(dev);
2028                 dev->allocationPage = 0;
2029         }
2030
2031         if (!useReserve && !yaffs_CheckSpaceForAllocation(dev, 1)) {
2032                 /* Not enough space to allocate unless we're allowed to use the reserve. */
2033                 return -1;
2034         }
2035
2036         if (dev->nErasedBlocks < dev->param.nReservedBlocks
2037                         && dev->allocationPage == 0) {
2038                 T(YAFFS_TRACE_ALLOCATE, (TSTR("Allocating reserve" TENDSTR)));
2039         }
2040
2041         /* Next page please.... */
2042         if (dev->allocationBlock >= 0) {
2043                 bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
2044
2045                 retVal = (dev->allocationBlock * dev->param.nChunksPerBlock) +
2046                         dev->allocationPage;
2047                 bi->pagesInUse++;
2048                 yaffs_SetChunkBit(dev, dev->allocationBlock,
2049                                 dev->allocationPage);
2050
2051                 dev->allocationPage++;
2052
2053                 dev->nFreeChunks--;
2054
2055                 /* If the block is full set the state to full */
2056                 if (dev->allocationPage >= dev->param.nChunksPerBlock) {
2057                         bi->blockState = YAFFS_BLOCK_STATE_FULL;
2058                         dev->allocationBlock = -1;
2059                 }
2060
2061                 if (blockUsedPtr)
2062                         *blockUsedPtr = bi;
2063
2064                 return retVal;
2065         }
2066
2067         T(YAFFS_TRACE_ERROR,
2068                         (TSTR("!!!!!!!!! Allocator out !!!!!!!!!!!!!!!!!" TENDSTR)));
2069
2070         return -1;
2071 }
2072
2073 static int yaffs_GetErasedChunks(yaffs_Device *dev)
2074 {
2075         int n;
2076
2077         n = dev->nErasedBlocks * dev->param.nChunksPerBlock;
2078
2079         if (dev->allocationBlock > 0)
2080                 n += (dev->param.nChunksPerBlock - dev->allocationPage);
2081
2082         return n;
2083
2084 }
2085
2086 /*
2087  * yaffs_SkipRestOfBlock() skips over the rest of the allocation block
2088  * if we don't want to write to it.
2089  */
2090 void yaffs_SkipRestOfBlock(yaffs_Device *dev)
2091 {
2092         if(dev->allocationBlock > 0){
2093                 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
2094                 if(bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING){
2095                         bi->blockState = YAFFS_BLOCK_STATE_FULL;
2096                         dev->allocationBlock = -1;
2097                 }
2098         }
2099 }
2100
2101
2102 static int yaffs_GarbageCollectBlock(yaffs_Device *dev, int block,
2103                 int wholeBlock)
2104 {
2105         int oldChunk;
2106         int newChunk;
2107         int markNAND;
2108         int retVal = YAFFS_OK;
2109         int cleanups = 0;
2110         int i;
2111         int isCheckpointBlock;
2112         int matchingChunk;
2113         int maxCopies;
2114
2115         int chunksBefore = yaffs_GetErasedChunks(dev);
2116         int chunksAfter;
2117
2118         yaffs_ExtendedTags tags;
2119
2120         yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, block);
2121
2122         yaffs_Object *object;
2123
2124         isCheckpointBlock = (bi->blockState == YAFFS_BLOCK_STATE_CHECKPOINT);
2125
2126
2127         T(YAFFS_TRACE_TRACING,
2128                         (TSTR("Collecting block %d, in use %d, shrink %d, wholeBlock %d" TENDSTR),
2129                          block,
2130                          bi->pagesInUse,
2131                          bi->hasShrinkHeader,
2132                          wholeBlock));
2133
2134         /*yaffs_VerifyFreeChunks(dev); */
2135
2136         if(bi->blockState == YAFFS_BLOCK_STATE_FULL)
2137                 bi->blockState = YAFFS_BLOCK_STATE_COLLECTING;
2138         
2139         bi->hasShrinkHeader = 0;        /* clear the flag so that the block can erase */
2140
2141         dev->gcDisable = 1;
2142
2143         if (isCheckpointBlock ||
2144                         !yaffs_StillSomeChunkBits(dev, block)) {
2145                 T(YAFFS_TRACE_TRACING,
2146                                 (TSTR
2147                                  ("Collecting block %d that has no chunks in use" TENDSTR),
2148                                  block));
2149                 yaffs_BlockBecameDirty(dev, block);
2150         } else {
2151
2152                 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
2153
2154                 yaffs_VerifyBlock(dev, bi, block);
2155
2156                 maxCopies = (wholeBlock) ? dev->param.nChunksPerBlock : 5;
2157                 oldChunk = block * dev->param.nChunksPerBlock + dev->gcChunk;
2158
2159                 for (/* init already done */;
2160                      retVal == YAFFS_OK &&
2161                      dev->gcChunk < dev->param.nChunksPerBlock &&
2162                      (bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) &&
2163                      maxCopies > 0;
2164                      dev->gcChunk++, oldChunk++) {
2165                         if (yaffs_CheckChunkBit(dev, block, dev->gcChunk)) {
2166
2167                                 /* This page is in use and might need to be copied off */
2168
2169                                 maxCopies--;
2170
2171                                 markNAND = 1;
2172
2173                                 yaffs_InitialiseTags(&tags);
2174
2175                                 yaffs_ReadChunkWithTagsFromNAND(dev, oldChunk,
2176                                                                 buffer, &tags);
2177
2178                                 object =
2179                                     yaffs_FindObjectByNumber(dev,
2180                                                              tags.objectId);
2181
2182                                 T(YAFFS_TRACE_GC_DETAIL,
2183                                   (TSTR
2184                                    ("Collecting chunk in block %d, %d %d %d " TENDSTR),
2185                                    dev->gcChunk, tags.objectId, tags.chunkId,
2186                                    tags.byteCount));
2187
2188                                 if (object && !yaffs_SkipVerification(dev)) {
2189                                         if (tags.chunkId == 0)
2190                                                 matchingChunk = object->hdrChunk;
2191                                         else if (object->softDeleted)
2192                                                 matchingChunk = oldChunk; /* Defeat the test */
2193                                         else
2194                                                 matchingChunk = yaffs_FindChunkInFile(object, tags.chunkId, NULL);
2195
2196                                         if (oldChunk != matchingChunk)
2197                                                 T(YAFFS_TRACE_ERROR,
2198                                                   (TSTR("gc: page in gc mismatch: %d %d %d %d"TENDSTR),
2199                                                   oldChunk, matchingChunk, tags.objectId, tags.chunkId));
2200
2201                                 }
2202
2203                                 if (!object) {
2204                                         T(YAFFS_TRACE_ERROR,
2205                                           (TSTR
2206                                            ("page %d in gc has no object: %d %d %d "
2207                                             TENDSTR), oldChunk,
2208                                             tags.objectId, tags.chunkId, tags.byteCount));
2209                                 }
2210
2211                                 if (object &&
2212                                     object->deleted &&
2213                                     object->softDeleted &&
2214                                     tags.chunkId != 0) {
2215                                         /* Data chunk in a soft deleted file, throw it away
2216                                          * It's a soft deleted data chunk,
2217                                          * No need to copy this, just forget about it and
2218                                          * fix up the object.
2219                                          */
2220                                          
2221                                         /* Free chunks already includes softdeleted chunks.
2222                                          * How ever this chunk is going to soon be really deleted
2223                                          * which will increment free chunks.
2224                                          * We have to decrement free chunks so this works out properly.
2225                                          */
2226                                         dev->nFreeChunks--;
2227
2228                                         object->nDataChunks--;
2229
2230                                         if (object->nDataChunks <= 0) {
2231                                                 /* remeber to clean up the object */
2232                                                 dev->gcCleanupList[cleanups] =
2233                                                     tags.objectId;
2234                                                 cleanups++;
2235                                         }
2236                                         markNAND = 0;
2237                                 } else if (0) {
2238                                         /* Todo object && object->deleted && object->nDataChunks == 0 */
2239                                         /* Deleted object header with no data chunks.
2240                                          * Can be discarded and the file deleted.
2241                                          */
2242                                         object->hdrChunk = 0;
2243                                         yaffs_FreeTnode(object->myDev,
2244                                                         object->variant.
2245                                                         fileVariant.top);
2246                                         object->variant.fileVariant.top = NULL;
2247                                         yaffs_DoGenericObjectDeletion(object);
2248
2249                                 } else if (object) {
2250                                         /* It's either a data chunk in a live file or
2251                                          * an ObjectHeader, so we're interested in it.
2252                                          * NB Need to keep the ObjectHeaders of deleted files
2253                                          * until the whole file has been deleted off
2254                                          */
2255                                         tags.serialNumber++;
2256
2257                                         dev->nGCCopies++;
2258
2259                                         if (tags.chunkId == 0) {
2260                                                 /* It is an object Id,
2261                                                  * We need to nuke the shrinkheader flags first
2262                                                  * Also need to clean up shadowing.
2263                                                  * We no longer want the shrinkHeader flag since its work is done
2264                                                  * and if it is left in place it will mess up scanning.
2265                                                  */
2266
2267                                                 yaffs_ObjectHeader *oh;
2268                                                 oh = (yaffs_ObjectHeader *)buffer;
2269
2270                                                 oh->isShrink = 0;
2271                                                 tags.extraIsShrinkHeader = 0;
2272
2273                                                 oh->shadowsObject = 0;
2274                                                 oh->inbandShadowsObject = 0;
2275                                                 tags.extraShadows = 0;
2276
2277                                                 /* Update file size */
2278                                                 if(object->variantType == YAFFS_OBJECT_TYPE_FILE){
2279                                                         oh->fileSize = object->variant.fileVariant.fileSize;
2280                                                         tags.extraFileLength = oh->fileSize;
2281                                                 }
2282
2283                                                 yaffs_VerifyObjectHeader(object, oh, &tags, 1);
2284                                                 newChunk =
2285                                                     yaffs_WriteNewChunkWithTagsToNAND(dev,(__u8 *) oh, &tags, 1);
2286                                         } else
2287                                                 newChunk =
2288                                                     yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &tags, 1);
2289
2290                                         if (newChunk < 0) {
2291                                                 retVal = YAFFS_FAIL;
2292                                         } else {
2293
2294                                                 /* Ok, now fix up the Tnodes etc. */
2295
2296                                                 if (tags.chunkId == 0) {
2297                                                         /* It's a header */
2298                                                         object->hdrChunk =  newChunk;
2299                                                         object->serial =   tags.serialNumber;
2300                                                 } else {
2301                                                         /* It's a data chunk */
2302                                                         int ok;
2303                                                         ok = yaffs_PutChunkIntoFile
2304                                                             (object,
2305                                                              tags.chunkId,
2306                                                              newChunk, 0);
2307                                                 }
2308                                         }
2309                                 }
2310
2311                                 if (retVal == YAFFS_OK)
2312                                         yaffs_DeleteChunk(dev, oldChunk, markNAND, __LINE__);
2313
2314                         }
2315                 }
2316
2317                 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
2318
2319
2320                 /* Do any required cleanups */
2321                 for (i = 0; i < cleanups; i++) {
2322                         /* Time to delete the file too */
2323                         object =
2324                             yaffs_FindObjectByNumber(dev,
2325                                                      dev->gcCleanupList[i]);
2326                         if (object) {
2327                                 yaffs_FreeTnode(dev,
2328                                                 object->variant.fileVariant.
2329                                                 top);
2330                                 object->variant.fileVariant.top = NULL;
2331                                 T(YAFFS_TRACE_GC,
2332                                   (TSTR
2333                                    ("yaffs: About to finally delete object %d"
2334                                     TENDSTR), object->objectId));
2335                                 yaffs_DoGenericObjectDeletion(object);
2336                                 object->myDev->nDeletedFiles--;
2337                         }
2338
2339                 }
2340
2341         }
2342
2343         yaffs_VerifyCollectedBlock(dev, bi, block);
2344
2345
2346
2347         if (bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) {
2348                 /*
2349                  * The gc did not complete. Set block state back to FULL
2350                  * because checkpointing does not restore gc.
2351                  */
2352                 bi->blockState = YAFFS_BLOCK_STATE_FULL;
2353         } else {
2354                 /* The gc completed. */
2355                 chunksAfter = yaffs_GetErasedChunks(dev);
2356                 if (chunksBefore >= chunksAfter) {
2357                         T(YAFFS_TRACE_GC,
2358                           (TSTR
2359                            ("gc did not increase free chunks before %d after %d"
2360                             TENDSTR), chunksBefore, chunksAfter));
2361                 }
2362                 dev->gcBlock = 0;
2363                 dev->gcChunk = 0;
2364         }
2365
2366         dev->gcDisable = 0;
2367
2368         return retVal;
2369 }
2370
2371 /*
2372  * FindBlockForgarbageCollection is used to select the dirtiest block (or close enough)
2373  * for garbage collection.
2374  */
2375
2376 static unsigned yaffs_FindBlockForGarbageCollection(yaffs_Device *dev,
2377                                         int aggressive,
2378                                         int background)
2379 {
2380         int i;
2381         int iterations;
2382         unsigned selected = 0;
2383         int prioritised = 0;
2384         int prioritisedExists = 0;
2385         yaffs_BlockInfo *bi;
2386         int threshold;
2387
2388         /* First let's see if we need to grab a prioritised block */
2389         if (dev->hasPendingPrioritisedGCs && !aggressive) {
2390                 dev->gcDirtiest = 0;
2391                 bi = dev->blockInfo;
2392                 for (i = dev->internalStartBlock;
2393                         i <= dev->internalEndBlock && !selected;
2394                         i++) {
2395
2396                         if (bi->gcPrioritise) {
2397                                 prioritisedExists = 1;
2398                                 if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2399                                    yaffs2_BlockNotDisqualifiedFromGC(dev, bi)) {
2400                                         selected = i;
2401                                         prioritised = 1;
2402                                 }
2403                         }
2404                         bi++;
2405                 }
2406
2407                 /*
2408                  * If there is a prioritised block and none was selected then
2409                  * this happened because there is at least one old dirty block gumming
2410                  * up the works. Let's gc the oldest dirty block.
2411                  */
2412
2413                 if(prioritisedExists &&
2414                         !selected &&
2415                         dev->oldestDirtyBlock > 0)
2416                         selected = dev->oldestDirtyBlock;
2417
2418                 if (!prioritisedExists) /* None found, so we can clear this */
2419                         dev->hasPendingPrioritisedGCs = 0;
2420         }
2421
2422         /* If we're doing aggressive GC then we are happy to take a less-dirty block, and
2423          * search harder.
2424          * else (we're doing a leasurely gc), then we only bother to do this if the
2425          * block has only a few pages in use.
2426          */
2427
2428         if (!selected){
2429                 int pagesUsed;
2430                 int nBlocks = dev->internalEndBlock - dev->internalStartBlock + 1;
2431                 if (aggressive){
2432                         threshold = dev->param.nChunksPerBlock;
2433                         iterations = nBlocks;
2434                 } else {
2435                         int maxThreshold = dev->param.nChunksPerBlock/2;
2436                         threshold = background ?
2437                                 (dev->gcNotDone + 2) * 2 : 0;
2438                         if(threshold <YAFFS_GC_PASSIVE_THRESHOLD)
2439                                 threshold = YAFFS_GC_PASSIVE_THRESHOLD;
2440                         if(threshold > maxThreshold)
2441                                 threshold = maxThreshold;
2442
2443                         iterations = nBlocks / 16 + 1;
2444                         if (iterations > 100)
2445                                 iterations = 100;
2446                 }
2447
2448                 for (i = 0;
2449                         i < iterations &&
2450                         (dev->gcDirtiest < 1 ||
2451                                 dev->gcPagesInUse > YAFFS_GC_GOOD_ENOUGH);
2452                         i++) {
2453                         dev->gcBlockFinder++;
2454                         if (dev->gcBlockFinder < dev->internalStartBlock ||
2455                                 dev->gcBlockFinder > dev->internalEndBlock)
2456                                 dev->gcBlockFinder = dev->internalStartBlock;
2457
2458                         bi = yaffs_GetBlockInfo(dev, dev->gcBlockFinder);
2459
2460                         pagesUsed = bi->pagesInUse - bi->softDeletions;
2461
2462                         if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2463                                 pagesUsed < dev->param.nChunksPerBlock &&
2464                                 (dev->gcDirtiest < 1 || pagesUsed < dev->gcPagesInUse) &&
2465                                 yaffs2_BlockNotDisqualifiedFromGC(dev, bi)) {
2466                                 dev->gcDirtiest = dev->gcBlockFinder;
2467                                 dev->gcPagesInUse = pagesUsed;
2468                         }
2469                 }
2470
2471                 if(dev->gcDirtiest > 0 && dev->gcPagesInUse <= threshold)
2472                         selected = dev->gcDirtiest;
2473         }
2474
2475         /*
2476          * If nothing has been selected for a while, try selecting the oldest dirty
2477          * because that's gumming up the works.
2478          */
2479
2480         if(!selected && dev->param.isYaffs2 &&
2481                 dev->gcNotDone >= ( background ? 10 : 20)){
2482                 yaffs2_FindOldestDirtySequence(dev);
2483                 if(dev->oldestDirtyBlock > 0) {
2484                         selected = dev->oldestDirtyBlock;
2485                         dev->gcDirtiest = selected;
2486                         dev->oldestDirtyGCs++;
2487                         bi = yaffs_GetBlockInfo(dev, selected);
2488                         dev->gcPagesInUse =  bi->pagesInUse - bi->softDeletions;
2489                 } else
2490                         dev->gcNotDone = 0;
2491         }
2492
2493         if(selected){
2494                 T(YAFFS_TRACE_GC,
2495                   (TSTR("GC Selected block %d with %d free, prioritised:%d" TENDSTR),
2496                   selected,
2497                   dev->param.nChunksPerBlock - dev->gcPagesInUse,
2498                   prioritised));
2499
2500                 if(background)
2501                         dev->backgroundGCs++;
2502                 dev->gcDirtiest = 0;
2503                 dev->gcPagesInUse = 0;
2504                 dev->gcNotDone = 0;
2505                 if(dev->refreshSkip > 0)
2506                         dev->refreshSkip--;
2507         } else{
2508                 dev->gcNotDone++;
2509                 T(YAFFS_TRACE_GC,
2510                   (TSTR("GC none: finder %d skip %d threshold %d dirtiest %d using %d oldest %d%s" TENDSTR),
2511                   dev->gcBlockFinder, dev->gcNotDone,
2512                   threshold,
2513                   dev->gcDirtiest, dev->gcPagesInUse,
2514                   dev->oldestDirtyBlock,
2515                   background ? " bg" : ""));
2516         }
2517
2518         return selected;
2519 }
2520
2521 /* New garbage collector
2522  * If we're very low on erased blocks then we do aggressive garbage collection
2523  * otherwise we do "leasurely" garbage collection.
2524  * Aggressive gc looks further (whole array) and will accept less dirty blocks.
2525  * Passive gc only inspects smaller areas and will only accept more dirty blocks.
2526  *
2527  * The idea is to help clear out space in a more spread-out manner.
2528  * Dunno if it really does anything useful.
2529  */
2530 static int yaffs_CheckGarbageCollection(yaffs_Device *dev, int background)
2531 {
2532         int aggressive = 0;
2533         int gcOk = YAFFS_OK;
2534         int maxTries = 0;
2535
2536         int minErased;
2537         int erasedChunks;
2538
2539         int checkpointBlockAdjust;
2540
2541         if(dev->param.gcControl &&
2542                 (dev->param.gcControl(dev) & 1) == 0)
2543                 return YAFFS_OK;
2544
2545         if (dev->gcDisable) {
2546                 /* Bail out so we don't get recursive gc */
2547                 return YAFFS_OK;
2548         }
2549
2550         /* This loop should pass the first time.
2551          * We'll only see looping here if the collection does not increase space.
2552          */
2553
2554         do {
2555                 maxTries++;
2556
2557                 checkpointBlockAdjust = yaffs2_CalcCheckpointBlocksRequired(dev);
2558
2559                 minErased  = dev->param.nReservedBlocks + checkpointBlockAdjust + 1;
2560                 erasedChunks = dev->nErasedBlocks * dev->param.nChunksPerBlock;
2561
2562                 /* If we need a block soon then do aggressive gc.*/
2563                 if (dev->nErasedBlocks < minErased)
2564                         aggressive = 1;
2565                 else {
2566                         if(dev->gcSkip > 20)
2567                                 dev->gcSkip = 20;
2568                         if(erasedChunks < dev->nFreeChunks/2 ||
2569                                 dev->gcSkip < 1 ||
2570                                 background)
2571                                 aggressive = 0;
2572                         else {
2573                                 dev->gcSkip--;
2574                                 break;
2575                         }
2576                 }
2577
2578                 dev->gcSkip = 5;
2579
2580                 /* If we don't already have a block being gc'd then see if we should start another */
2581
2582                 if (dev->gcBlock < 1 && !aggressive) {
2583                         dev->gcBlock = yaffs2_FindRefreshBlock(dev);
2584                         dev->gcChunk = 0;
2585                 }
2586                 if (dev->gcBlock < 1) {
2587                         dev->gcBlock = yaffs_FindBlockForGarbageCollection(dev, aggressive, background);
2588                         dev->gcChunk = 0;
2589                 }
2590
2591                 if (dev->gcBlock > 0) {
2592                         dev->allGCs++;
2593                         if (!aggressive)
2594                                 dev->passiveGCs++;
2595
2596                         T(YAFFS_TRACE_GC,
2597                           (TSTR
2598                            ("yaffs: GC erasedBlocks %d aggressive %d" TENDSTR),
2599                            dev->nErasedBlocks, aggressive));
2600
2601                         gcOk = yaffs_GarbageCollectBlock(dev, dev->gcBlock, aggressive);
2602                 }
2603
2604                 if (dev->nErasedBlocks < (dev->param.nReservedBlocks) && dev->gcBlock > 0) {
2605                         T(YAFFS_TRACE_GC,
2606                           (TSTR
2607                            ("yaffs: GC !!!no reclaim!!! erasedBlocks %d after try %d block %d"
2608                             TENDSTR), dev->nErasedBlocks, maxTries, dev->gcBlock));
2609                 }
2610         } while ((dev->nErasedBlocks < dev->param.nReservedBlocks) &&
2611                  (dev->gcBlock > 0) &&
2612                  (maxTries < 2));
2613
2614         return aggressive ? gcOk : YAFFS_OK;
2615 }
2616
2617 /*
2618  * yaffs_BackgroundGarbageCollect()
2619  * Garbage collects. Intended to be called from a background thread.
2620  * Returns non-zero if at least half the free chunks are erased.
2621  */
2622 int yaffs_BackgroundGarbageCollect(yaffs_Device *dev, unsigned urgency)
2623 {
2624         int erasedChunks = dev->nErasedBlocks * dev->param.nChunksPerBlock;
2625
2626         T(YAFFS_TRACE_BACKGROUND, (TSTR("Background gc %u" TENDSTR),urgency));
2627
2628         yaffs_CheckGarbageCollection(dev, 1);
2629         return erasedChunks > dev->nFreeChunks/2;
2630 }
2631
2632 /*-------------------------  TAGS --------------------------------*/
2633
2634 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId,
2635                            int chunkInObject)
2636 {
2637         return (tags->chunkId == chunkInObject &&
2638                 tags->objectId == objectId && !tags->chunkDeleted) ? 1 : 0;
2639
2640 }
2641
2642
2643 /*-------------------- Data file manipulation -----------------*/
2644
2645 static int yaffs_FindChunkInFile(yaffs_Object *in, int chunkInInode,
2646                                  yaffs_ExtendedTags *tags)
2647 {
2648         /*Get the Tnode, then get the level 0 offset chunk offset */
2649         yaffs_Tnode *tn;
2650         int theChunk = -1;
2651         yaffs_ExtendedTags localTags;
2652         int retVal = -1;
2653
2654         yaffs_Device *dev = in->myDev;
2655
2656         if (!tags) {
2657                 /* Passed a NULL, so use our own tags space */
2658                 tags = &localTags;
2659         }
2660
2661         tn = yaffs_FindLevel0Tnode(dev, &in->variant.fileVariant, chunkInInode);
2662
2663         if (tn) {
2664                 theChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
2665
2666                 retVal =
2667                     yaffs_FindChunkInGroup(dev, theChunk, tags, in->objectId,
2668                                            chunkInInode);
2669         }
2670         return retVal;
2671 }
2672
2673 static int yaffs_FindAndDeleteChunkInFile(yaffs_Object *in, int chunkInInode,
2674                                           yaffs_ExtendedTags *tags)
2675 {
2676         /* Get the Tnode, then get the level 0 offset chunk offset */
2677         yaffs_Tnode *tn;
2678         int theChunk = -1;
2679         yaffs_ExtendedTags localTags;
2680
2681         yaffs_Device *dev = in->myDev;
2682         int retVal = -1;
2683
2684         if (!tags) {
2685                 /* Passed a NULL, so use our own tags space */
2686                 tags = &localTags;
2687         }
2688
2689         tn = yaffs_FindLevel0Tnode(dev, &in->variant.fileVariant, chunkInInode);
2690
2691         if (tn) {
2692
2693                 theChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
2694
2695                 retVal =
2696                     yaffs_FindChunkInGroup(dev, theChunk, tags, in->objectId,
2697                                            chunkInInode);
2698
2699                 /* Delete the entry in the filestructure (if found) */
2700                 if (retVal != -1)
2701                         yaffs_LoadLevel0Tnode(dev, tn, chunkInInode, 0);
2702         }
2703
2704         return retVal;
2705 }
2706
2707
2708 int yaffs_PutChunkIntoFile(yaffs_Object *in, int chunkInInode,
2709                                 int chunkInNAND, int inScan)
2710 {
2711         /* NB inScan is zero unless scanning.
2712          * For forward scanning, inScan is > 0;
2713          * for backward scanning inScan is < 0
2714          *
2715          * chunkInNAND = 0 is a dummy insert to make sure the tnodes are there.
2716          */
2717
2718         yaffs_Tnode *tn;
2719         yaffs_Device *dev = in->myDev;
2720         int existingChunk;
2721         yaffs_ExtendedTags existingTags;
2722         yaffs_ExtendedTags newTags;
2723         unsigned existingSerial, newSerial;
2724
2725         if (in->variantType != YAFFS_OBJECT_TYPE_FILE) {
2726                 /* Just ignore an attempt at putting a chunk into a non-file during scanning
2727                  * If it is not during Scanning then something went wrong!
2728                  */
2729                 if (!inScan) {
2730                         T(YAFFS_TRACE_ERROR,
2731                           (TSTR
2732                            ("yaffs tragedy:attempt to put data chunk into a non-file"
2733                             TENDSTR)));
2734                         YBUG();
2735                 }
2736
2737                 yaffs_DeleteChunk(dev, chunkInNAND, 1, __LINE__);
2738                 return YAFFS_OK;
2739         }
2740
2741         tn = yaffs_AddOrFindLevel0Tnode(dev,
2742                                         &in->variant.fileVariant,
2743                                         chunkInInode,
2744                                         NULL);
2745         if (!tn)
2746                 return YAFFS_FAIL;
2747         
2748         if(!chunkInNAND)
2749                 /* Dummy insert, bail now */
2750                 return YAFFS_OK;
2751
2752         existingChunk = yaffs_GetChunkGroupBase(dev, tn, chunkInInode);
2753
2754         if (inScan != 0) {
2755                 /* If we're scanning then we need to test for duplicates
2756                  * NB This does not need to be efficient since it should only ever
2757                  * happen when the power fails during a write, then only one
2758                  * chunk should ever be affected.
2759                  *
2760                  * Correction for YAFFS2: This could happen quite a lot and we need to think about efficiency! TODO
2761                  * Update: For backward scanning we don't need to re-read tags so this is quite cheap.
2762                  */
2763
2764                 if (existingChunk > 0) {
2765                         /* NB Right now existing chunk will not be real chunkId if the chunk group size > 1
2766                          *    thus we have to do a FindChunkInFile to get the real chunk id.
2767                          *
2768                          * We have a duplicate now we need to decide which one to use:
2769                          *
2770                          * Backwards scanning YAFFS2: The old one is what we use, dump the new one.
2771                          * Forward scanning YAFFS2: The new one is what we use, dump the old one.
2772                          * YAFFS1: Get both sets of tags and compare serial numbers.
2773                          */
2774
2775                         if (inScan > 0) {
2776                                 /* Only do this for forward scanning */
2777                                 yaffs_ReadChunkWithTagsFromNAND(dev,
2778                                                                 chunkInNAND,
2779                                                                 NULL, &newTags);
2780
2781                                 /* Do a proper find */
2782                                 existingChunk =
2783                                     yaffs_FindChunkInFile(in, chunkInInode,
2784                                                           &existingTags);
2785                         }
2786
2787                         if (existingChunk <= 0) {
2788                                 /*Hoosterman - how did this happen? */
2789
2790                                 T(YAFFS_TRACE_ERROR,
2791                                   (TSTR
2792                                    ("yaffs tragedy: existing chunk < 0 in scan"
2793                                     TENDSTR)));
2794
2795                         }
2796
2797                         /* NB The deleted flags should be false, otherwise the chunks will
2798                          * not be loaded during a scan
2799                          */
2800
2801                         if (inScan > 0) {
2802                                 newSerial = newTags.serialNumber;
2803                                 existingSerial = existingTags.serialNumber;
2804                         }
2805
2806                         if ((inScan > 0) &&
2807                             (existingChunk <= 0 ||
2808                              ((existingSerial + 1) & 3) == newSerial)) {
2809                                 /* Forward scanning.
2810                                  * Use new
2811                                  * Delete the old one and drop through to update the tnode
2812                                  */
2813                                 yaffs_DeleteChunk(dev, existingChunk, 1,
2814                                                   __LINE__);
2815                         } else {
2816                                 /* Backward scanning or we want to use the existing one
2817                                  * Use existing.
2818                                  * Delete the new one and return early so that the tnode isn't changed
2819                                  */
2820                                 yaffs_DeleteChunk(dev, chunkInNAND, 1,
2821                                                   __LINE__);
2822                                 return YAFFS_OK;
2823                         }
2824                 }
2825
2826         }
2827
2828         if (existingChunk == 0)
2829                 in->nDataChunks++;
2830
2831         yaffs_LoadLevel0Tnode(dev, tn, chunkInInode, chunkInNAND);
2832
2833         return YAFFS_OK;
2834 }
2835
2836 static int yaffs_ReadChunkDataFromObject(yaffs_Object *in, int chunkInInode,
2837                                         __u8 *buffer)
2838 {
2839         int chunkInNAND = yaffs_FindChunkInFile(in, chunkInInode, NULL);
2840
2841         if (chunkInNAND >= 0)
2842                 return yaffs_ReadChunkWithTagsFromNAND(in->myDev, chunkInNAND,
2843                                                 buffer, NULL);
2844         else {
2845                 T(YAFFS_TRACE_NANDACCESS,
2846                   (TSTR("Chunk %d not found zero instead" TENDSTR),
2847                    chunkInNAND));
2848                 /* get sane (zero) data if you read a hole */
2849                 memset(buffer, 0, in->myDev->nDataBytesPerChunk);
2850                 return 0;
2851         }
2852
2853 }
2854
2855 void yaffs_DeleteChunk(yaffs_Device *dev, int chunkId, int markNAND, int lyn)
2856 {
2857         int block;
2858         int page;
2859         yaffs_ExtendedTags tags;
2860         yaffs_BlockInfo *bi;
2861
2862         if (chunkId <= 0)
2863                 return;
2864
2865         dev->nDeletions++;
2866         block = chunkId / dev->param.nChunksPerBlock;
2867         page = chunkId % dev->param.nChunksPerBlock;
2868
2869
2870         if (!yaffs_CheckChunkBit(dev, block, page))
2871                 T(YAFFS_TRACE_VERIFY,
2872                         (TSTR("Deleting invalid chunk %d"TENDSTR),
2873                          chunkId));
2874
2875         bi = yaffs_GetBlockInfo(dev, block);
2876         
2877         yaffs2_UpdateOldestDirtySequence(dev, block, bi);
2878
2879         T(YAFFS_TRACE_DELETION,
2880           (TSTR("line %d delete of chunk %d" TENDSTR), lyn, chunkId));
2881
2882         if (!dev->param.isYaffs2 && markNAND &&
2883             bi->blockState != YAFFS_BLOCK_STATE_COLLECTING) {
2884
2885                 yaffs_InitialiseTags(&tags);
2886
2887                 tags.chunkDeleted = 1;
2888
2889                 yaffs_WriteChunkWithTagsToNAND(dev, chunkId, NULL, &tags);
2890                 yaffs_HandleUpdateChunk(dev, chunkId, &tags);
2891         } else {
2892                 dev->nUnmarkedDeletions++;
2893         }
2894
2895         /* Pull out of the management area.
2896          * If the whole block became dirty, this will kick off an erasure.
2897          */
2898         if (bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING ||
2899             bi->blockState == YAFFS_BLOCK_STATE_FULL ||
2900             bi->blockState == YAFFS_BLOCK_STATE_NEEDS_SCANNING ||
2901             bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) {
2902                 dev->nFreeChunks++;
2903
2904                 yaffs_ClearChunkBit(dev, block, page);
2905
2906                 bi->pagesInUse--;
2907
2908                 if (bi->pagesInUse == 0 &&
2909                     !bi->hasShrinkHeader &&
2910                     bi->blockState != YAFFS_BLOCK_STATE_ALLOCATING &&
2911                     bi->blockState != YAFFS_BLOCK_STATE_NEEDS_SCANNING) {
2912                         yaffs_BlockBecameDirty(dev, block);
2913                 }
2914
2915         }
2916
2917 }
2918
2919 static int yaffs_WriteChunkDataToObject(yaffs_Object *in, int chunkInInode,
2920                                         const __u8 *buffer, int nBytes,
2921                                         int useReserve)
2922 {
2923         /* Find old chunk Need to do this to get serial number
2924          * Write new one and patch into tree.
2925          * Invalidate old tags.
2926          */
2927
2928         int prevChunkId;
2929         yaffs_ExtendedTags prevTags;
2930
2931         int newChunkId;
2932         yaffs_ExtendedTags newTags;
2933
2934         yaffs_Device *dev = in->myDev;
2935
2936         yaffs_CheckGarbageCollection(dev,0);
2937
2938         /* Get the previous chunk at this location in the file if it exists.
2939          * If it does not exist then put a zero into the tree. This creates
2940          * the tnode now, rather than later when it is harder to clean up.
2941          */
2942         prevChunkId = yaffs_FindChunkInFile(in, chunkInInode, &prevTags);
2943         if(prevChunkId < 1 &&
2944                 !yaffs_PutChunkIntoFile(in, chunkInInode, 0, 0))
2945                 return 0;
2946
2947         /* Set up new tags */
2948         yaffs_InitialiseTags(&newTags);
2949
2950         newTags.chunkId = chunkInInode;
2951         newTags.objectId = in->objectId;
2952         newTags.serialNumber =
2953             (prevChunkId > 0) ? prevTags.serialNumber + 1 : 1;
2954         newTags.byteCount = nBytes;
2955
2956         if (nBytes < 1 || nBytes > dev->param.totalBytesPerChunk) {
2957                 T(YAFFS_TRACE_ERROR,
2958                 (TSTR("Writing %d bytes to chunk!!!!!!!!!" TENDSTR), nBytes));
2959                 YBUG();
2960         }
2961         
2962                 
2963         newChunkId =
2964             yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &newTags,
2965                                               useReserve);
2966
2967         if (newChunkId > 0) {
2968                 yaffs_PutChunkIntoFile(in, chunkInInode, newChunkId, 0);
2969
2970                 if (prevChunkId > 0)
2971                         yaffs_DeleteChunk(dev, prevChunkId, 1, __LINE__);
2972
2973                 yaffs_VerifyFileSanity(in);
2974         }
2975         return newChunkId;
2976
2977 }
2978
2979 /* UpdateObjectHeader updates the header on NAND for an object.
2980  * If name is not NULL, then that new name is used.
2981  */
2982 int yaffs_UpdateObjectHeader(yaffs_Object *in, const YCHAR *name, int force,
2983                              int isShrink, int shadows, yaffs_XAttrMod *xmod)
2984 {
2985
2986         yaffs_BlockInfo *bi;
2987
2988         yaffs_Device *dev = in->myDev;
2989
2990         int prevChunkId;
2991         int retVal = 0;
2992         int result = 0;
2993
2994         int newChunkId;
2995         yaffs_ExtendedTags newTags;
2996         yaffs_ExtendedTags oldTags;
2997         YCHAR *alias = NULL;
2998
2999         __u8 *buffer = NULL;
3000         YCHAR oldName[YAFFS_MAX_NAME_LENGTH + 1];
3001
3002         yaffs_ObjectHeader *oh = NULL;
3003
3004         yaffs_strcpy(oldName, _Y("silly old name"));
3005
3006
3007         if (!in->fake ||
3008                 in == dev->rootDir || /* The rootDir should also be saved */
3009                 force  || xmod) {
3010
3011                 yaffs_CheckGarbageCollection(dev,0);
3012                 yaffs_CheckObjectDetailsLoaded(in);
3013
3014                 buffer = yaffs_GetTempBuffer(in->myDev, __LINE__);
3015                 oh = (yaffs_ObjectHeader *) buffer;
3016
3017                 prevChunkId = in->hdrChunk;
3018
3019                 if (prevChunkId > 0) {
3020                         result = yaffs_ReadChunkWithTagsFromNAND(dev, prevChunkId,
3021                                                         buffer, &oldTags);
3022
3023                         yaffs_VerifyObjectHeader(in, oh, &oldTags, 0);
3024
3025                         memcpy(oldName, oh->name, sizeof(oh->name));
3026                         memset(buffer, 0xFF, sizeof(yaffs_ObjectHeader));
3027                 } else
3028                         memset(buffer, 0xFF, dev->nDataBytesPerChunk);
3029
3030                 oh->type = in->variantType;
3031                 oh->yst_mode = in->yst_mode;
3032                 oh->shadowsObject = oh->inbandShadowsObject = shadows;
3033
3034 #ifdef CONFIG_YAFFS_WINCE
3035                 oh->win_atime[0] = in->win_atime[0];
3036                 oh->win_ctime[0] = in->win_ctime[0];
3037                 oh->win_mtime[0] = in->win_mtime[0];
3038                 oh->win_atime[1] = in->win_atime[1];
3039                 oh->win_ctime[1] = in->win_ctime[1];
3040                 oh->win_mtime[1] = in->win_mtime[1];
3041 #else
3042                 oh->yst_uid = in->yst_uid;
3043                 oh->yst_gid = in->yst_gid;
3044                 oh->yst_atime = in->yst_atime;
3045                 oh->yst_mtime = in->yst_mtime;
3046                 oh->yst_ctime = in->yst_ctime;
3047                 oh->yst_rdev = in->yst_rdev;
3048 #endif
3049                 if (in->parent)
3050                         oh->parentObjectId = in->parent->objectId;
3051                 else
3052                         oh->parentObjectId = 0;
3053
3054                 if (name && *name) {
3055                         memset(oh->name, 0, sizeof(oh->name));
3056                         yaffs_LoadObjectHeaderFromName(dev,oh->name,name);
3057                 } else if (prevChunkId > 0)
3058                         memcpy(oh->name, oldName, sizeof(oh->name));
3059                 else
3060                         memset(oh->name, 0, sizeof(oh->name));
3061
3062                 oh->isShrink = isShrink;
3063
3064                 switch (in->variantType) {
3065                 case YAFFS_OBJECT_TYPE_UNKNOWN:
3066                         /* Should not happen */
3067                         break;
3068                 case YAFFS_OBJECT_TYPE_FILE:
3069                         oh->fileSize =
3070                             (oh->parentObjectId == YAFFS_OBJECTID_DELETED
3071                              || oh->parentObjectId ==
3072                              YAFFS_OBJECTID_UNLINKED) ? 0 : in->variant.
3073                             fileVariant.fileSize;
3074                         break;
3075                 case YAFFS_OBJECT_TYPE_HARDLINK:
3076                         oh->equivalentObjectId =
3077                             in->variant.hardLinkVariant.equivalentObjectId;
3078                         break;
3079                 case YAFFS_OBJECT_TYPE_SPECIAL:
3080                         /* Do nothing */
3081                         break;
3082                 case YAFFS_OBJECT_TYPE_DIRECTORY:
3083                         /* Do nothing */
3084                         break;
3085                 case YAFFS_OBJECT_TYPE_SYMLINK:
3086                         alias = in->variant.symLinkVariant.alias;
3087                         if(!alias)
3088                                 alias = _Y("no alias");
3089                         yaffs_strncpy(oh->alias,
3090                                         alias,
3091                                       YAFFS_MAX_ALIAS_LENGTH);
3092                         oh->alias[YAFFS_MAX_ALIAS_LENGTH] = 0;
3093                         break;
3094                 }
3095
3096                 /* process any xattrib modifications */
3097                 if(xmod)
3098                         yaffs_ApplyXMod(dev, (char *)buffer, xmod);
3099
3100
3101                 /* Tags */
3102                 yaffs_InitialiseTags(&newTags);
3103                 in->serial++;
3104                 newTags.chunkId = 0;
3105                 newTags.objectId = in->objectId;
3106                 newTags.serialNumber = in->serial;
3107
3108                 /* Add extra info for file header */
3109
3110                 newTags.extraHeaderInfoAvailable = 1;
3111                 newTags.extraParentObjectId = oh->parentObjectId;
3112                 newTags.extraFileLength = oh->fileSize;
3113                 newTags.extraIsShrinkHeader = oh->isShrink;
3114                 newTags.extraEquivalentObjectId = oh->equivalentObjectId;
3115                 newTags.extraShadows = (oh->shadowsObject > 0) ? 1 : 0;
3116                 newTags.extraObjectType = in->variantType;
3117
3118                 yaffs_VerifyObjectHeader(in, oh, &newTags, 1);
3119
3120                 /* Create new chunk in NAND */
3121                 newChunkId =
3122                     yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &newTags,
3123                                                       (prevChunkId > 0) ? 1 : 0);
3124
3125                 if (newChunkId >= 0) {
3126
3127                         in->hdrChunk = newChunkId;
3128
3129                         if (prevChunkId > 0) {
3130                                 yaffs_DeleteChunk(dev, prevChunkId, 1,
3131                                                   __LINE__);
3132                         }
3133
3134                         if (!yaffs_ObjectHasCachedWriteData(in))
3135                                 in->dirty = 0;
3136
3137                         /* If this was a shrink, then mark the block that the chunk lives on */
3138                         if (isShrink) {
3139                                 bi = yaffs_GetBlockInfo(in->myDev,
3140                                         newChunkId / in->myDev->param.nChunksPerBlock);
3141                                 bi->hasShrinkHeader = 1;
3142                         }
3143
3144                 }
3145
3146                 retVal = newChunkId;
3147
3148         }
3149
3150         if (buffer)
3151                 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
3152
3153         return retVal;
3154 }
3155
3156 /*------------------------ Short Operations Cache ----------------------------------------
3157  *   In many situations where there is no high level buffering (eg WinCE) a lot of
3158  *   reads might be short sequential reads, and a lot of writes may be short
3159  *   sequential writes. eg. scanning/writing a jpeg file.
3160  *   In these cases, a short read/write cache can provide a huge perfomance benefit
3161  *   with dumb-as-a-rock code.
3162  *   In Linux, the page cache provides read buffering aand the short op cache provides write
3163  *   buffering.
3164  *
3165  *   There are a limited number (~10) of cache chunks per device so that we don't
3166  *   need a very intelligent search.
3167  */
3168
3169 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj)
3170 {
3171         yaffs_Device *dev = obj->myDev;
3172         int i;
3173         yaffs_ChunkCache *cache;
3174         int nCaches = obj->myDev->param.nShortOpCaches;
3175
3176         for (i = 0; i < nCaches; i++) {
3177                 cache = &dev->srCache[i];
3178                 if (cache->object == obj &&
3179                     cache->dirty)
3180                         return 1;
3181         }
3182
3183         return 0;
3184 }
3185
3186
3187 static void yaffs_FlushFilesChunkCache(yaffs_Object *obj)
3188 {
3189         yaffs_Device *dev = obj->myDev;
3190         int lowest = -99;       /* Stop compiler whining. */
3191         int i;
3192         yaffs_ChunkCache *cache;
3193         int chunkWritten = 0;
3194         int nCaches = obj->myDev->param.nShortOpCaches;
3195
3196         if (nCaches > 0) {
3197                 do {
3198                         cache = NULL;
3199
3200                         /* Find the dirty cache for this object with the lowest chunk id. */
3201                         for (i = 0; i < nCaches; i++) {
3202                                 if (dev->srCache[i].object == obj &&
3203                                     dev->srCache[i].dirty) {
3204                                         if (!cache
3205                                             || dev->srCache[i].chunkId <
3206                                             lowest) {
3207                                                 cache = &dev->srCache[i];
3208                                                 lowest = cache->chunkId;
3209                                         }
3210                                 }
3211                         }
3212
3213                         if (cache && !cache->locked) {
3214                                 /* Write it out and free it up */
3215
3216                                 chunkWritten =
3217                                     yaffs_WriteChunkDataToObject(cache->object,
3218                                                                  cache->chunkId,
3219                                                                  cache->data,
3220                                                                  cache->nBytes,
3221                                                                  1);
3222                                 cache->dirty = 0;
3223                                 cache->object = NULL;
3224                         }
3225
3226                 } while (cache && chunkWritten > 0);
3227
3228                 if (cache) {
3229                         /* Hoosterman, disk full while writing cache out. */
3230                         T(YAFFS_TRACE_ERROR,
3231                           (TSTR("yaffs tragedy: no space during cache write" TENDSTR)));
3232
3233                 }
3234         }
3235
3236 }
3237
3238 /*yaffs_FlushEntireDeviceCache(dev)
3239  *
3240  *
3241  */
3242
3243 void yaffs_FlushEntireDeviceCache(yaffs_Device *dev)
3244 {
3245         yaffs_Object *obj;
3246         int nCaches = dev->param.nShortOpCaches;
3247         int i;
3248
3249         /* Find a dirty object in the cache and flush it...
3250          * until there are no further dirty objects.
3251          */
3252         do {
3253                 obj = NULL;
3254                 for (i = 0; i < nCaches && !obj; i++) {
3255                         if (dev->srCache[i].object &&
3256                             dev->srCache[i].dirty)
3257                                 obj = dev->srCache[i].object;
3258
3259                 }
3260                 if (obj)
3261                         yaffs_FlushFilesChunkCache(obj);
3262
3263         } while (obj);
3264
3265 }
3266
3267
3268 /* Grab us a cache chunk for use.
3269  * First look for an empty one.
3270  * Then look for the least recently used non-dirty one.
3271  * Then look for the least recently used dirty one...., flush and look again.
3272  */
3273 static yaffs_ChunkCache *yaffs_GrabChunkCacheWorker(yaffs_Device *dev)
3274 {
3275         int i;
3276
3277         if (dev->param.nShortOpCaches > 0) {
3278                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
3279                         if (!dev->srCache[i].object)
3280                                 return &dev->srCache[i];
3281                 }
3282         }
3283
3284         return NULL;
3285 }
3286
3287 static yaffs_ChunkCache *yaffs_GrabChunkCache(yaffs_Device *dev)
3288 {
3289         yaffs_ChunkCache *cache;
3290         yaffs_Object *theObj;
3291         int usage;
3292         int i;
3293         int pushout;
3294
3295         if (dev->param.nShortOpCaches > 0) {
3296                 /* Try find a non-dirty one... */
3297
3298                 cache = yaffs_GrabChunkCacheWorker(dev);
3299
3300                 if (!cache) {
3301                         /* They were all dirty, find the last recently used object and flush
3302                          * its cache, then  find again.
3303                          * NB what's here is not very accurate, we actually flush the object
3304                          * the last recently used page.
3305                          */
3306
3307                         /* With locking we can't assume we can use entry zero */
3308
3309                         theObj = NULL;
3310                         usage = -1;
3311                         cache = NULL;
3312                         pushout = -1;
3313
3314                         for (i = 0; i < dev->param.nShortOpCaches; i++) {
3315                                 if (dev->srCache[i].object &&
3316                                     !dev->srCache[i].locked &&
3317                                     (dev->srCache[i].lastUse < usage || !cache)) {
3318                                         usage = dev->srCache[i].lastUse;
3319                                         theObj = dev->srCache[i].object;
3320                                         cache = &dev->srCache[i];
3321                                         pushout = i;
3322                                 }
3323                         }
3324
3325                         if (!cache || cache->dirty) {
3326                                 /* Flush and try again */
3327                                 yaffs_FlushFilesChunkCache(theObj);
3328                                 cache = yaffs_GrabChunkCacheWorker(dev);
3329                         }
3330
3331                 }
3332                 return cache;
3333         } else
3334                 return NULL;
3335
3336 }
3337
3338 /* Find a cached chunk */
3339 static yaffs_ChunkCache *yaffs_FindChunkCache(const yaffs_Object *obj,
3340                                               int chunkId)
3341 {
3342         yaffs_Device *dev = obj->myDev;
3343         int i;
3344         if (dev->param.nShortOpCaches > 0) {
3345                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
3346                         if (dev->srCache[i].object == obj &&
3347                             dev->srCache[i].chunkId == chunkId) {
3348                                 dev->cacheHits++;
3349
3350                                 return &dev->srCache[i];
3351                         }
3352                 }
3353         }
3354         return NULL;
3355 }
3356
3357 /* Mark the chunk for the least recently used algorithym */
3358 static void yaffs_UseChunkCache(yaffs_Device *dev, yaffs_ChunkCache *cache,
3359                                 int isAWrite)
3360 {
3361
3362         if (dev->param.nShortOpCaches > 0) {
3363                 if (dev->srLastUse < 0 || dev->srLastUse > 100000000) {
3364                         /* Reset the cache usages */
3365                         int i;
3366                         for (i = 1; i < dev->param.nShortOpCaches; i++)
3367                                 dev->srCache[i].lastUse = 0;
3368
3369                         dev->srLastUse = 0;
3370                 }
3371
3372                 dev->srLastUse++;
3373
3374                 cache->lastUse = dev->srLastUse;
3375
3376                 if (isAWrite)
3377                         cache->dirty = 1;
3378         }
3379 }
3380
3381 /* Invalidate a single cache page.
3382  * Do this when a whole page gets written,
3383  * ie the short cache for this page is no longer valid.
3384  */
3385 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId)
3386 {
3387         if (object->myDev->param.nShortOpCaches > 0) {
3388                 yaffs_ChunkCache *cache = yaffs_FindChunkCache(object, chunkId);
3389
3390                 if (cache)
3391                         cache->object = NULL;
3392         }
3393 }
3394
3395 /* Invalidate all the cache pages associated with this object
3396  * Do this whenever ther file is deleted or resized.
3397  */
3398 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in)
3399 {
3400         int i;
3401         yaffs_Device *dev = in->myDev;
3402
3403         if (dev->param.nShortOpCaches > 0) {
3404                 /* Invalidate it. */
3405                 for (i = 0; i < dev->param.nShortOpCaches; i++) {
3406                         if (dev->srCache[i].object == in)
3407                                 dev->srCache[i].object = NULL;
3408                 }
3409         }
3410 }
3411
3412
3413 /*--------------------- File read/write ------------------------
3414  * Read and write have very similar structures.
3415  * In general the read/write has three parts to it
3416  * An incomplete chunk to start with (if the read/write is not chunk-aligned)
3417  * Some complete chunks
3418  * An incomplete chunk to end off with
3419  *
3420  * Curve-balls: the first chunk might also be the last chunk.
3421  */
3422
3423 int yaffs_ReadDataFromFile(yaffs_Object *in, __u8 *buffer, loff_t offset,
3424                         int nBytes)
3425 {
3426
3427         int chunk;
3428         __u32 start;
3429         int nToCopy;
3430         int n = nBytes;
3431         int nDone = 0;
3432         yaffs_ChunkCache *cache;
3433
3434         yaffs_Device *dev;
3435
3436         dev = in->myDev;
3437
3438         while (n > 0) {
3439                 /* chunk = offset / dev->nDataBytesPerChunk + 1; */
3440                 /* start = offset % dev->nDataBytesPerChunk; */
3441                 yaffs_AddrToChunk(dev, offset, &chunk, &start);
3442                 chunk++;
3443
3444                 /* OK now check for the curveball where the start and end are in
3445                  * the same chunk.
3446                  */
3447                 if ((start + n) < dev->nDataBytesPerChunk)
3448                         nToCopy = n;
3449                 else
3450                         nToCopy = dev->nDataBytesPerChunk - start;
3451
3452                 cache = yaffs_FindChunkCache(in, chunk);
3453
3454                 /* If the chunk is already in the cache or it is less than a whole chunk
3455                  * or we're using inband tags then use the cache (if there is caching)
3456                  * else bypass the cache.
3457                  */
3458                 if (cache || nToCopy != dev->nDataBytesPerChunk || dev->param.inbandTags) {
3459                         if (dev->param.nShortOpCaches > 0) {
3460
3461                                 /* If we can't find the data in the cache, then load it up. */
3462
3463                                 if (!cache) {
3464                                         cache = yaffs_GrabChunkCache(in->myDev);
3465                                         cache->object = in;
3466                                         cache->chunkId = chunk;
3467                                         cache->dirty = 0;
3468                                         cache->locked = 0;
3469                                         yaffs_ReadChunkDataFromObject(in, chunk,
3470                                                                       cache->
3471                                                                       data);
3472                                         cache->nBytes = 0;
3473                                 }
3474
3475                                 yaffs_UseChunkCache(dev, cache, 0);
3476
3477                                 cache->locked = 1;
3478
3479
3480                                 memcpy(buffer, &cache->data[start], nToCopy);
3481
3482                                 cache->locked = 0;
3483                         } else {
3484                                 /* Read into the local buffer then copy..*/
3485
3486                                 __u8 *localBuffer =
3487                                     yaffs_GetTempBuffer(dev, __LINE__);
3488                                 yaffs_ReadChunkDataFromObject(in, chunk,
3489                                                               localBuffer);
3490
3491                                 memcpy(buffer, &localBuffer[start], nToCopy);
3492
3493
3494                                 yaffs_ReleaseTempBuffer(dev, localBuffer,
3495                                                         __LINE__);
3496                         }
3497
3498                 } else {
3499
3500                         /* A full chunk. Read directly into the supplied buffer. */
3501                         yaffs_ReadChunkDataFromObject(in, chunk, buffer);
3502
3503                 }
3504
3505                 n -= nToCopy;
3506                 offset += nToCopy;
3507                 buffer += nToCopy;
3508                 nDone += nToCopy;
3509
3510         }
3511
3512         return nDone;
3513 }
3514
3515 int yaffs_DoWriteDataToFile(yaffs_Object *in, const __u8 *buffer, loff_t offset,
3516                         int nBytes, int writeThrough)
3517 {
3518
3519         int chunk;
3520         __u32 start;
3521         int nToCopy;
3522         int n = nBytes;
3523         int nDone = 0;
3524         int nToWriteBack;
3525         int startOfWrite = offset;
3526         int chunkWritten = 0;
3527         __u32 nBytesRead;
3528         __u32 chunkStart;
3529
3530         yaffs_Device *dev;
3531
3532         dev = in->myDev;
3533
3534         while (n > 0 && chunkWritten >= 0) {
3535                 yaffs_AddrToChunk(dev, offset, &chunk, &start);
3536
3537                 if (chunk * dev->nDataBytesPerChunk + start != offset ||
3538                                 start >= dev->nDataBytesPerChunk) {
3539                         T(YAFFS_TRACE_ERROR, (
3540                            TSTR("AddrToChunk of offset %d gives chunk %d start %d"
3541                            TENDSTR),
3542                            (int)offset, chunk, start));
3543                 }
3544                 chunk++; /* File pos to chunk in file offset */
3545
3546                 /* OK now check for the curveball where the start and end are in
3547                  * the same chunk.
3548                  */
3549
3550                 if ((start + n) < dev->nDataBytesPerChunk) {
3551                         nToCopy = n;
3552
3553                         /* Now folks, to calculate how many bytes to write back....
3554                          * If we're overwriting and not writing to then end of file then
3555                          * we need to write back as much as was there before.
3556                          */
3557
3558                         chunkStart = ((chunk - 1) * dev->nDataBytesPerChunk);
3559
3560                         if (chunkStart > in->variant.fileVariant.fileSize)
3561                                 nBytesRead = 0; /* Past end of file */
3562                         else
3563                                 nBytesRead = in->variant.fileVariant.fileSize - chunkStart;
3564
3565                         if (nBytesRead > dev->nDataBytesPerChunk)
3566                                 nBytesRead = dev->nDataBytesPerChunk;
3567
3568                         nToWriteBack =
3569                             (nBytesRead >
3570                              (start + n)) ? nBytesRead : (start + n);
3571
3572                         if (nToWriteBack < 0 || nToWriteBack > dev->nDataBytesPerChunk)
3573                                 YBUG();
3574
3575                 } else {
3576                         nToCopy = dev->nDataBytesPerChunk - start;
3577                         nToWriteBack = dev->nDataBytesPerChunk;
3578                 }
3579
3580                 if (nToCopy != dev->nDataBytesPerChunk || dev->param.inbandTags) {
3581                         /* An incomplete start or end chunk (or maybe both start and end chunk),
3582                          * or we're using inband tags, so we want to use the cache buffers.
3583                          */
3584                         if (dev->param.nShortOpCaches > 0) {
3585                                 yaffs_ChunkCache *cache;
3586                                 /* If we can't find the data in the cache, then load the cache */
3587                                 cache = yaffs_FindChunkCache(in, chunk);
3588
3589                                 if (!cache
3590                                     && yaffs_CheckSpaceForAllocation(dev, 1)) {
3591                                         cache = yaffs_GrabChunkCache(dev);
3592                                         cache->object = in;
3593                                         cache->chunkId = chunk;
3594                                         cache->dirty = 0;
3595                                         cache->locked = 0;
3596                                         yaffs_ReadChunkDataFromObject(in, chunk,
3597                                                                       cache->data);
3598                                 } else if (cache &&
3599                                         !cache->dirty &&
3600                                         !yaffs_CheckSpaceForAllocation(dev, 1)) {
3601                                         /* Drop the cache if it was a read cache item and
3602                                          * no space check has been made for it.
3603                                          */
3604                                          cache = NULL;
3605                                 }
3606
3607                                 if (cache) {
3608                                         yaffs_UseChunkCache(dev, cache, 1);
3609                                         cache->locked = 1;
3610
3611
3612                                         memcpy(&cache->data[start], buffer,
3613                                                nToCopy);
3614
3615
3616                                         cache->locked = 0;
3617                                         cache->nBytes = nToWriteBack;
3618
3619                                         if (writeThrough) {
3620                                                 chunkWritten =
3621                                                     yaffs_WriteChunkDataToObject
3622                                                     (cache->object,
3623                                                      cache->chunkId,
3624                                                      cache->data, cache->nBytes,
3625                                                      1);
3626                                                 cache->dirty = 0;
3627                                         }
3628
3629                                 } else {
3630                                         chunkWritten = -1;      /* fail the write */
3631                                 }
3632                         } else {
3633                                 /* An incomplete start or end chunk (or maybe both start and end chunk)
3634                                  * Read into the local buffer then copy, then copy over and write back.
3635                                  */
3636
3637                                 __u8 *localBuffer =
3638                                     yaffs_GetTempBuffer(dev, __LINE__);
3639
3640                                 yaffs_ReadChunkDataFromObject(in, chunk,
3641                                                               localBuffer);
3642
3643
3644
3645                                 memcpy(&localBuffer[start], buffer, nToCopy);
3646
3647                                 chunkWritten =
3648                                     yaffs_WriteChunkDataToObject(in, chunk,
3649                                                                  localBuffer,
3650                                                                  nToWriteBack,
3651                                                                  0);
3652
3653                                 yaffs_ReleaseTempBuffer(dev, localBuffer,
3654                                                         __LINE__);
3655
3656                         }
3657
3658                 } else {
3659                         /* A full chunk. Write directly from the supplied buffer. */
3660
3661
3662
3663                         chunkWritten =
3664                             yaffs_WriteChunkDataToObject(in, chunk, buffer,
3665                                                          dev->nDataBytesPerChunk,
3666                                                          0);
3667
3668                         /* Since we've overwritten the cached data, we better invalidate it. */
3669                         yaffs_InvalidateChunkCache(in, chunk);
3670                 }
3671
3672                 if (chunkWritten >= 0) {
3673                         n -= nToCopy;
3674                         offset += nToCopy;
3675                         buffer += nToCopy;
3676                         nDone += nToCopy;
3677                 }
3678
3679         }
3680
3681         /* Update file object */
3682
3683         if ((startOfWrite + nDone) > in->variant.fileVariant.fileSize)
3684                 in->variant.fileVariant.fileSize = (startOfWrite + nDone);
3685
3686         in->dirty = 1;
3687
3688         return nDone;
3689 }
3690
3691 int yaffs_WriteDataToFile(yaffs_Object *in, const __u8 *buffer, loff_t offset,
3692                         int nBytes, int writeThrough)
3693 {
3694         yaffs2_HandleHole(in,offset);
3695         return yaffs_DoWriteDataToFile(in,buffer,offset,nBytes,writeThrough);
3696 }
3697
3698
3699
3700 /* ---------------------- File resizing stuff ------------------ */
3701
3702 static void yaffs_PruneResizedChunks(yaffs_Object *in, int newSize)
3703 {
3704
3705         yaffs_Device *dev = in->myDev;
3706         int oldFileSize = in->variant.fileVariant.fileSize;
3707
3708         int lastDel = 1 + (oldFileSize - 1) / dev->nDataBytesPerChunk;
3709
3710         int startDel = 1 + (newSize + dev->nDataBytesPerChunk - 1) /
3711             dev->nDataBytesPerChunk;
3712         int i;
3713         int chunkId;
3714
3715         /* Delete backwards so that we don't end up with holes if
3716          * power is lost part-way through the operation.
3717          */
3718         for (i = lastDel; i >= startDel; i--) {
3719                 /* NB this could be optimised somewhat,
3720                  * eg. could retrieve the tags and write them without
3721                  * using yaffs_DeleteChunk
3722                  */
3723
3724                 chunkId = yaffs_FindAndDeleteChunkInFile(in, i, NULL);
3725                 if (chunkId > 0) {
3726                         if (chunkId <
3727                             (dev->internalStartBlock * dev->param.nChunksPerBlock)
3728                             || chunkId >=
3729                             ((dev->internalEndBlock +
3730                               1) * dev->param.nChunksPerBlock)) {
3731                                 T(YAFFS_TRACE_ALWAYS,
3732                                   (TSTR("Found daft chunkId %d for %d" TENDSTR),
3733                                    chunkId, i));
3734                         } else {
3735                                 in->nDataChunks--;
3736                                 yaffs_DeleteChunk(dev, chunkId, 1, __LINE__);
3737                         }
3738                 }
3739         }
3740
3741 }
3742
3743
3744 void yaffs_ResizeDown( yaffs_Object *obj, loff_t newSize)
3745 {
3746         int newFullChunks;
3747         __u32 newSizeOfPartialChunk;
3748         yaffs_Device *dev = obj->myDev;
3749
3750         yaffs_AddrToChunk(dev, newSize, &newFullChunks, &newSizeOfPartialChunk);
3751
3752         yaffs_PruneResizedChunks(obj, newSize);
3753
3754         if (newSizeOfPartialChunk != 0) {
3755                 int lastChunk = 1 + newFullChunks;
3756                 __u8 *localBuffer = yaffs_GetTempBuffer(dev, __LINE__);
3757
3758                 /* Got to read and rewrite the last chunk with its new size and zero pad */
3759                 yaffs_ReadChunkDataFromObject(obj, lastChunk, localBuffer);
3760                 memset(localBuffer + newSizeOfPartialChunk, 0,
3761                         dev->nDataBytesPerChunk - newSizeOfPartialChunk);
3762
3763                 yaffs_WriteChunkDataToObject(obj, lastChunk, localBuffer,
3764                                              newSizeOfPartialChunk, 1);
3765
3766                 yaffs_ReleaseTempBuffer(dev, localBuffer, __LINE__);
3767         }
3768
3769         obj->variant.fileVariant.fileSize = newSize;
3770
3771         yaffs_PruneFileStructure(dev, &obj->variant.fileVariant);
3772 }
3773
3774
3775 int yaffs_ResizeFile(yaffs_Object *in, loff_t newSize)
3776 {
3777         yaffs_Device *dev = in->myDev;
3778         int oldFileSize = in->variant.fileVariant.fileSize;
3779
3780         yaffs_FlushFilesChunkCache(in);
3781         yaffs_InvalidateWholeChunkCache(in);
3782
3783         yaffs_CheckGarbageCollection(dev,0);
3784
3785         if (in->variantType != YAFFS_OBJECT_TYPE_FILE)
3786                 return YAFFS_FAIL;
3787
3788         if (newSize == oldFileSize)
3789                 return YAFFS_OK;
3790                 
3791         if(newSize > oldFileSize){
3792                 yaffs2_HandleHole(in,newSize);
3793                 in->variant.fileVariant.fileSize = newSize;
3794         } else {
3795                 /* newSize < oldFileSize */ 
3796                 yaffs_ResizeDown(in, newSize);
3797         } 
3798
3799         /* Write a new object header to reflect the resize.
3800          * show we've shrunk the file, if need be
3801          * Do this only if the file is not in the deleted directories
3802          * and is not shadowed.
3803          */
3804         if (in->parent &&
3805             !in->isShadowed &&
3806             in->parent->objectId != YAFFS_OBJECTID_UNLINKED &&
3807             in->parent->objectId != YAFFS_OBJECTID_DELETED)
3808                 yaffs_UpdateObjectHeader(in, NULL, 0, 0, 0, NULL);
3809
3810
3811         return YAFFS_OK;
3812 }
3813
3814 loff_t yaffs_GetFileSize(yaffs_Object *obj)
3815 {
3816         YCHAR *alias = NULL;
3817         obj = yaffs_GetEquivalentObject(obj);
3818
3819         switch (obj->variantType) {
3820         case YAFFS_OBJECT_TYPE_FILE:
3821                 return obj->variant.fileVariant.fileSize;
3822         case YAFFS_OBJECT_TYPE_SYMLINK:
3823                 alias = obj->variant.symLinkVariant.alias;
3824                 if(!alias)
3825                         return 0;
3826                 return yaffs_strnlen(alias,YAFFS_MAX_ALIAS_LENGTH);
3827         default:
3828                 return 0;
3829         }
3830 }
3831
3832
3833
3834 int yaffs_FlushFile(yaffs_Object *in, int updateTime, int dataSync)
3835 {
3836         int retVal;
3837         if (in->dirty) {
3838                 yaffs_FlushFilesChunkCache(in);
3839                 if(dataSync) /* Only sync data */
3840                         retVal=YAFFS_OK;
3841                 else {
3842                         if (updateTime) {
3843 #ifdef CONFIG_YAFFS_WINCE
3844                                 yfsd_WinFileTimeNow(in->win_mtime);
3845 #else
3846
3847                                 in->yst_mtime = Y_CURRENT_TIME;
3848
3849 #endif
3850                         }
3851
3852                         retVal = (yaffs_UpdateObjectHeader(in, NULL, 0, 0, 0, NULL) >=
3853                                 0) ? YAFFS_OK : YAFFS_FAIL;
3854                 }
3855         } else {
3856                 retVal = YAFFS_OK;
3857         }
3858
3859         return retVal;
3860
3861 }
3862
3863 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in)
3864 {
3865
3866         /* First off, invalidate the file's data in the cache, without flushing. */
3867         yaffs_InvalidateWholeChunkCache(in);
3868
3869         if (in->myDev->param.isYaffs2 && (in->parent != in->myDev->deletedDir)) {
3870                 /* Move to the unlinked directory so we have a record that it was deleted. */
3871                 yaffs_ChangeObjectName(in, in->myDev->deletedDir, _Y("deleted"), 0, 0);
3872
3873         }
3874
3875         yaffs_RemoveObjectFromDirectory(in);
3876         yaffs_DeleteChunk(in->myDev, in->hdrChunk, 1, __LINE__);
3877         in->hdrChunk = 0;
3878
3879         yaffs_FreeObject(in);
3880         return YAFFS_OK;
3881
3882 }
3883
3884 /* yaffs_DeleteFile deletes the whole file data
3885  * and the inode associated with the file.
3886  * It does not delete the links associated with the file.
3887  */
3888 static int yaffs_UnlinkFileIfNeeded(yaffs_Object *in)
3889 {
3890
3891         int retVal;
3892         int immediateDeletion = 0;
3893         yaffs_Device *dev = in->myDev;
3894
3895         if (!in->myInode)
3896                 immediateDeletion = 1;
3897
3898         if (immediateDeletion) {
3899                 retVal =
3900                     yaffs_ChangeObjectName(in, in->myDev->deletedDir,
3901                                            _Y("deleted"), 0, 0);
3902                 T(YAFFS_TRACE_TRACING,
3903                   (TSTR("yaffs: immediate deletion of file %d" TENDSTR),
3904                    in->objectId));
3905                 in->deleted = 1;
3906                 in->myDev->nDeletedFiles++;
3907                 if (dev->param.disableSoftDelete || dev->param.isYaffs2)
3908                         yaffs_ResizeFile(in, 0);
3909                 yaffs_SoftDeleteFile(in);
3910         } else {
3911                 retVal =
3912                     yaffs_ChangeObjectName(in, in->myDev->unlinkedDir,
3913                                            _Y("unlinked"), 0, 0);
3914         }
3915
3916
3917         return retVal;
3918 }
3919
3920 int yaffs_DeleteFile(yaffs_Object *in)
3921 {
3922         int retVal = YAFFS_OK;
3923         int deleted; /* Need to cache value on stack if in is freed */
3924         yaffs_Device *dev = in->myDev;
3925
3926         if (dev->param.disableSoftDelete || dev->param.isYaffs2)
3927                 yaffs_ResizeFile(in, 0);
3928
3929         if (in->nDataChunks > 0) {
3930                 /* Use soft deletion if there is data in the file.
3931                  * That won't be the case if it has been resized to zero.
3932                  */
3933                 if (!in->unlinked)
3934                         retVal = yaffs_UnlinkFileIfNeeded(in);
3935
3936                 deleted = in->deleted;
3937
3938                 if (retVal == YAFFS_OK && in->unlinked && !in->deleted) {
3939                         in->deleted = 1;
3940                         deleted = 1;
3941                         in->myDev->nDeletedFiles++;
3942                         yaffs_SoftDeleteFile(in);
3943                 }
3944                 return deleted ? YAFFS_OK : YAFFS_FAIL;
3945         } else {
3946                 /* The file has no data chunks so we toss it immediately */
3947                 yaffs_FreeTnode(in->myDev, in->variant.fileVariant.top);
3948                 in->variant.fileVariant.top = NULL;
3949                 yaffs_DoGenericObjectDeletion(in);
3950
3951                 return YAFFS_OK;
3952         }
3953 }
3954
3955 static int yaffs_IsNonEmptyDirectory(yaffs_Object *obj)
3956 {
3957         return (obj->variantType == YAFFS_OBJECT_TYPE_DIRECTORY) &&
3958                 !(ylist_empty(&obj->variant.directoryVariant.children));
3959 }
3960
3961 static int yaffs_DeleteDirectory(yaffs_Object *obj)
3962 {
3963         /* First check that the directory is empty. */
3964         if (yaffs_IsNonEmptyDirectory(obj))
3965                 return YAFFS_FAIL;
3966
3967         return yaffs_DoGenericObjectDeletion(obj);
3968 }
3969
3970 static int yaffs_DeleteSymLink(yaffs_Object *in)
3971 {
3972         if(in->variant.symLinkVariant.alias)
3973                 YFREE(in->variant.symLinkVariant.alias);
3974         in->variant.symLinkVariant.alias=NULL;
3975
3976         return yaffs_DoGenericObjectDeletion(in);
3977 }
3978
3979 static int yaffs_DeleteHardLink(yaffs_Object *in)
3980 {
3981         /* remove this hardlink from the list assocaited with the equivalent
3982          * object
3983          */
3984         ylist_del_init(&in->hardLinks);
3985         return yaffs_DoGenericObjectDeletion(in);
3986 }
3987
3988 int yaffs_DeleteObject(yaffs_Object *obj)
3989 {
3990 int retVal = -1;
3991         switch (obj->variantType) {
3992         case YAFFS_OBJECT_TYPE_FILE:
3993                 retVal = yaffs_DeleteFile(obj);
3994                 break;
3995         case YAFFS_OBJECT_TYPE_DIRECTORY:
3996                 if(!ylist_empty(&obj->variant.directoryVariant.dirty)){
3997                         T(YAFFS_TRACE_BACKGROUND, (TSTR("Remove object %d from dirty directories" TENDSTR),obj->objectId));
3998                         ylist_del_init(&obj->variant.directoryVariant.dirty);
3999                 }
4000                 return yaffs_DeleteDirectory(obj);
4001                 break;
4002         case YAFFS_OBJECT_TYPE_SYMLINK:
4003                 retVal = yaffs_DeleteSymLink(obj);
4004                 break;
4005         case YAFFS_OBJECT_TYPE_HARDLINK:
4006                 retVal = yaffs_DeleteHardLink(obj);
4007                 break;
4008         case YAFFS_OBJECT_TYPE_SPECIAL:
4009                 retVal = yaffs_DoGenericObjectDeletion(obj);
4010                 break;
4011         case YAFFS_OBJECT_TYPE_UNKNOWN:
4012                 retVal = 0;
4013                 break;          /* should not happen. */
4014         }
4015
4016         return retVal;
4017 }
4018
4019 static int yaffs_UnlinkWorker(yaffs_Object *obj)
4020 {
4021
4022         int immediateDeletion = 0;
4023
4024         if (!obj->myInode)
4025                 immediateDeletion = 1;
4026
4027         if(obj)
4028                 yaffs_UpdateParent(obj->parent);
4029
4030         if (obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK) {
4031                 return yaffs_DeleteHardLink(obj);
4032         } else if (!ylist_empty(&obj->hardLinks)) {
4033                 /* Curve ball: We're unlinking an object that has a hardlink.
4034                  *
4035                  * This problem arises because we are not strictly following
4036                  * The Linux link/inode model.
4037                  *
4038                  * We can't really delete the object.
4039                  * Instead, we do the following:
4040                  * - Select a hardlink.
4041                  * - Unhook it from the hard links
4042                  * - Move it from its parent directory (so that the rename can work)
4043                  * - Rename the object to the hardlink's name.
4044                  * - Delete the hardlink
4045                  */
4046
4047                 yaffs_Object *hl;
4048                 yaffs_Object *parent;
4049                 int retVal;
4050                 YCHAR name[YAFFS_MAX_NAME_LENGTH + 1];
4051
4052                 hl = ylist_entry(obj->hardLinks.next, yaffs_Object, hardLinks);
4053
4054                 yaffs_GetObjectName(hl, name, YAFFS_MAX_NAME_LENGTH + 1);
4055                 parent = hl->parent;
4056
4057                 ylist_del_init(&hl->hardLinks);
4058
4059                 yaffs_AddObjectToDirectory(obj->myDev->unlinkedDir, hl);
4060
4061                 retVal = yaffs_ChangeObjectName(obj,parent, name, 0, 0);
4062
4063                 if (retVal == YAFFS_OK)
4064                         retVal = yaffs_DoGenericObjectDeletion(hl);
4065
4066                 return retVal;
4067
4068         } else if (immediateDeletion) {
4069                 switch (obj->variantType) {
4070                 case YAFFS_OBJECT_TYPE_FILE:
4071                         return yaffs_DeleteFile(obj);
4072                         break;
4073                 case YAFFS_OBJECT_TYPE_DIRECTORY:
4074                         ylist_del_init(&obj->variant.directoryVariant.dirty);
4075                         return yaffs_DeleteDirectory(obj);
4076                         break;
4077                 case YAFFS_OBJECT_TYPE_SYMLINK:
4078                         return yaffs_DeleteSymLink(obj);
4079                         break;
4080                 case YAFFS_OBJECT_TYPE_SPECIAL:
4081                         return yaffs_DoGenericObjectDeletion(obj);
4082                         break;
4083                 case YAFFS_OBJECT_TYPE_HARDLINK:
4084                 case YAFFS_OBJECT_TYPE_UNKNOWN:
4085                 default:
4086                         return YAFFS_FAIL;
4087                 }
4088         } else if(yaffs_IsNonEmptyDirectory(obj))
4089                 return YAFFS_FAIL;
4090         else
4091                 return yaffs_ChangeObjectName(obj, obj->myDev->unlinkedDir,
4092                                            _Y("unlinked"), 0, 0);
4093 }
4094
4095
4096 static int yaffs_UnlinkObject(yaffs_Object *obj)
4097 {
4098
4099         if (obj && obj->unlinkAllowed)
4100                 return yaffs_UnlinkWorker(obj);
4101
4102         return YAFFS_FAIL;
4103
4104 }
4105 int yaffs_Unlink(yaffs_Object *dir, const YCHAR *name)
4106 {
4107         yaffs_Object *obj;
4108
4109         obj = yaffs_FindObjectByName(dir, name);
4110         return yaffs_UnlinkObject(obj);
4111 }
4112
4113 /*----------------------- Initialisation Scanning ---------------------- */
4114
4115 void yaffs_HandleShadowedObject(yaffs_Device *dev, int objId,
4116                                 int backwardScanning)
4117 {
4118         yaffs_Object *obj;
4119
4120         if (!backwardScanning) {
4121                 /* Handle YAFFS1 forward scanning case
4122                  * For YAFFS1 we always do the deletion
4123                  */
4124
4125         } else {
4126                 /* Handle YAFFS2 case (backward scanning)
4127                  * If the shadowed object exists then ignore.
4128                  */
4129                 obj = yaffs_FindObjectByNumber(dev, objId);
4130                 if(obj)
4131                         return;
4132         }
4133
4134         /* Let's create it (if it does not exist) assuming it is a file so that it can do shrinking etc.
4135          * We put it in unlinked dir to be cleaned up after the scanning
4136          */
4137         obj =
4138             yaffs_FindOrCreateObjectByNumber(dev, objId,
4139                                              YAFFS_OBJECT_TYPE_FILE);
4140         if (!obj)
4141                 return;
4142         obj->isShadowed = 1;
4143         yaffs_AddObjectToDirectory(dev->unlinkedDir, obj);
4144         obj->variant.fileVariant.shrinkSize = 0;
4145         obj->valid = 1;         /* So that we don't read any other info for this file */
4146
4147 }
4148
4149
4150 void yaffs_HardlinkFixup(yaffs_Device *dev, yaffs_Object *hardList)
4151 {
4152         yaffs_Object *hl;
4153         yaffs_Object *in;
4154
4155         while (hardList) {
4156                 hl = hardList;
4157                 hardList = (yaffs_Object *) (hardList->hardLinks.next);
4158
4159                 in = yaffs_FindObjectByNumber(dev,
4160                                               hl->variant.hardLinkVariant.
4161                                               equivalentObjectId);
4162
4163                 if (in) {
4164                         /* Add the hardlink pointers */
4165                         hl->variant.hardLinkVariant.equivalentObject = in;
4166                         ylist_add(&hl->hardLinks, &in->hardLinks);
4167                 } else {
4168                         /* Todo Need to report/handle this better.
4169                          * Got a problem... hardlink to a non-existant object
4170                          */
4171                         hl->variant.hardLinkVariant.equivalentObject = NULL;
4172                         YINIT_LIST_HEAD(&hl->hardLinks);
4173
4174                 }
4175         }
4176 }
4177
4178
4179 static void yaffs_StripDeletedObjects(yaffs_Device *dev)
4180 {
4181         /*
4182         *  Sort out state of unlinked and deleted objects after scanning.
4183         */
4184         struct ylist_head *i;
4185         struct ylist_head *n;
4186         yaffs_Object *l;
4187
4188         /* Soft delete all the unlinked files */
4189         ylist_for_each_safe(i, n,
4190                 &dev->unlinkedDir->variant.directoryVariant.children) {
4191                 if (i) {
4192                         l = ylist_entry(i, yaffs_Object, siblings);
4193                         yaffs_DeleteObject(l);
4194                 }
4195         }
4196
4197         ylist_for_each_safe(i, n,
4198                 &dev->deletedDir->variant.directoryVariant.children) {
4199                 if (i) {
4200                         l = ylist_entry(i, yaffs_Object, siblings);
4201                         yaffs_DeleteObject(l);
4202                 }
4203         }
4204
4205 }
4206
4207 /*
4208  * This code iterates through all the objects making sure that they are rooted.
4209  * Any unrooted objects are re-rooted in lost+found.
4210  * An object needs to be in one of:
4211  * - Directly under deleted, unlinked
4212  * - Directly or indirectly under root.
4213  *
4214  * Note:
4215  *  This code assumes that we don't ever change the current relationships between
4216  *  directories:
4217  *   rootDir->parent == unlinkedDir->parent == deletedDir->parent == NULL
4218  *   lostNfound->parent == rootDir
4219  *
4220  * This fixes the problem where directories might have inadvertently been deleted
4221  * leaving the object "hanging" without being rooted in the directory tree.
4222  */
4223  
4224 static int yaffs_HasNULLParent(yaffs_Device *dev, yaffs_Object *obj)
4225 {
4226         return (obj == dev->deletedDir ||
4227                 obj == dev->unlinkedDir||
4228                 obj == dev->rootDir);
4229 }
4230
4231 static void yaffs_FixHangingObjects(yaffs_Device *dev)
4232 {
4233         yaffs_Object *obj;
4234         yaffs_Object *parent;
4235         int i;
4236         struct ylist_head *lh;
4237         struct ylist_head *n;
4238         int depthLimit;
4239         int hanging;
4240
4241
4242         /* Iterate through the objects in each hash entry,
4243          * looking at each object.
4244          * Make sure it is rooted.
4245          */
4246
4247         for (i = 0; i <  YAFFS_NOBJECT_BUCKETS; i++) {
4248                 ylist_for_each_safe(lh, n, &dev->objectBucket[i].list) {
4249                         if (lh) {
4250                                 obj = ylist_entry(lh, yaffs_Object, hashLink);
4251                                 parent= obj->parent;
4252                                 
4253                                 if(yaffs_HasNULLParent(dev,obj)){
4254                                         /* These directories are not hanging */
4255                                         hanging = 0;
4256                                 }
4257                                 else if(!parent || parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
4258                                         hanging = 1;
4259                                 else if(yaffs_HasNULLParent(dev,parent))
4260                                         hanging = 0;
4261                                 else {
4262                                         /*
4263                                          * Need to follow the parent chain to see if it is hanging.
4264                                          */
4265                                         hanging = 0;
4266                                         depthLimit=100;
4267
4268                                         while(parent != dev->rootDir &&
4269                                                 parent->parent &&
4270                                                 parent->parent->variantType == YAFFS_OBJECT_TYPE_DIRECTORY &&
4271                                                 depthLimit > 0){
4272                                                 parent = parent->parent;
4273                                                 depthLimit--;
4274                                         }
4275                                         if(parent != dev->rootDir)
4276                                                 hanging = 1;
4277                                 }
4278                                 if(hanging){
4279                                         T(YAFFS_TRACE_SCAN,
4280                                           (TSTR("Hanging object %d moved to lost and found" TENDSTR),
4281                                                 obj->objectId));
4282                                         yaffs_AddObjectToDirectory(dev->lostNFoundDir,obj);
4283                                 }
4284                         }
4285                 }
4286         }
4287 }
4288
4289
4290 /*
4291  * Delete directory contents for cleaning up lost and found.
4292  */
4293 static void yaffs_DeleteDirectoryContents(yaffs_Object *dir)
4294 {
4295         yaffs_Object *obj;
4296         struct ylist_head *lh;
4297         struct ylist_head *n;
4298
4299         if(dir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
4300                 YBUG();
4301         
4302         ylist_for_each_safe(lh, n, &dir->variant.directoryVariant.children) {
4303                 if (lh) {
4304                         obj = ylist_entry(lh, yaffs_Object, siblings);
4305                         if(obj->variantType == YAFFS_OBJECT_TYPE_DIRECTORY)
4306                                 yaffs_DeleteDirectoryContents(obj);
4307
4308                         T(YAFFS_TRACE_SCAN,
4309                                 (TSTR("Deleting lost_found object %d" TENDSTR),
4310                                 obj->objectId));
4311
4312                         /* Need to use UnlinkObject since Delete would not handle
4313                          * hardlinked objects correctly.
4314                          */
4315                         yaffs_UnlinkObject(obj); 
4316                 }
4317         }
4318                         
4319 }
4320
4321 static void yaffs_EmptyLostAndFound(yaffs_Device *dev)
4322 {
4323         yaffs_DeleteDirectoryContents(dev->lostNFoundDir);
4324 }
4325
4326 static void yaffs_CheckObjectDetailsLoaded(yaffs_Object *in)
4327 {
4328         __u8 *chunkData;
4329         yaffs_ObjectHeader *oh;
4330         yaffs_Device *dev;
4331         yaffs_ExtendedTags tags;
4332         int result;
4333         int alloc_failed = 0;
4334
4335         if (!in)
4336                 return;
4337
4338         dev = in->myDev;
4339
4340 #if 0
4341         T(YAFFS_TRACE_SCAN, (TSTR("details for object %d %s loaded" TENDSTR),
4342                 in->objectId,
4343                 in->lazyLoaded ? "not yet" : "already"));
4344 #endif
4345
4346         if (in->lazyLoaded && in->hdrChunk > 0) {
4347                 in->lazyLoaded = 0;
4348                 chunkData = yaffs_GetTempBuffer(dev, __LINE__);
4349
4350                 result = yaffs_ReadChunkWithTagsFromNAND(dev, in->hdrChunk, chunkData, &tags);
4351                 oh = (yaffs_ObjectHeader *) chunkData;
4352
4353                 in->yst_mode = oh->yst_mode;
4354 #ifdef CONFIG_YAFFS_WINCE
4355                 in->win_atime[0] = oh->win_atime[0];
4356                 in->win_ctime[0] = oh->win_ctime[0];
4357                 in->win_mtime[0] = oh->win_mtime[0];
4358                 in->win_atime[1] = oh->win_atime[1];
4359                 in->win_ctime[1] = oh->win_ctime[1];
4360                 in->win_mtime[1] = oh->win_mtime[1];
4361 #else
4362                 in->yst_uid = oh->yst_uid;
4363                 in->yst_gid = oh->yst_gid;
4364                 in->yst_atime = oh->yst_atime;
4365                 in->yst_mtime = oh->yst_mtime;
4366                 in->yst_ctime = oh->yst_ctime;
4367                 in->yst_rdev = oh->yst_rdev;
4368
4369 #endif
4370                 yaffs_SetObjectName(in, oh->name);
4371
4372                 if (in->variantType == YAFFS_OBJECT_TYPE_SYMLINK) {
4373                         in->variant.symLinkVariant.alias =
4374                                                     yaffs_CloneString(oh->alias);
4375                         if (!in->variant.symLinkVariant.alias)
4376                                 alloc_failed = 1; /* Not returned to caller */
4377                 }
4378
4379                 yaffs_ReleaseTempBuffer(dev, chunkData, __LINE__);
4380         }
4381 }
4382
4383 /*------------------------------  Directory Functions ----------------------------- */
4384
4385 /*
4386  *yaffs_UpdateParent() handles fixing a directories mtime and ctime when a new
4387  * link (ie. name) is created or deleted in the directory.
4388  *
4389  * ie.
4390  *   create dir/a : update dir's mtime/ctime
4391  *   rm dir/a:   update dir's mtime/ctime
4392  *   modify dir/a: don't update dir's mtimme/ctime
4393  *
4394  * This can be handled immediately or defered. Defering helps reduce the number
4395  * of updates when many files in a directory are changed within a brief period.
4396  *
4397  * If the directory updating is defered then yaffs_UpdateDirtyDirecories must be
4398  * called periodically.
4399  */
4400  
4401 static void yaffs_UpdateParent(yaffs_Object *obj)
4402 {
4403         yaffs_Device *dev;
4404         if(!obj)
4405                 return;
4406 #ifndef CONFIG_YAFFS_WINCE
4407
4408         dev = obj->myDev;
4409         obj->dirty = 1;
4410         obj->yst_mtime = obj->yst_ctime = Y_CURRENT_TIME;
4411         if(dev->param.deferDirectoryUpdate){
4412                 struct ylist_head *link = &obj->variant.directoryVariant.dirty; 
4413         
4414                 if(ylist_empty(link)){
4415                         ylist_add(link,&dev->dirtyDirectories);
4416                         T(YAFFS_TRACE_BACKGROUND, (TSTR("Added object %d to dirty directories" TENDSTR),obj->objectId));
4417                 }
4418
4419         } else
4420                 yaffs_UpdateObjectHeader(obj, NULL, 0, 0, 0, NULL);
4421 #endif
4422 }
4423
4424 void yaffs_UpdateDirtyDirectories(yaffs_Device *dev)
4425 {
4426         struct ylist_head *link;
4427         yaffs_Object *obj;
4428         yaffs_DirectoryStructure *dS;
4429         yaffs_ObjectVariant *oV;
4430
4431         T(YAFFS_TRACE_BACKGROUND, (TSTR("Update dirty directories" TENDSTR)));
4432
4433         while(!ylist_empty(&dev->dirtyDirectories)){
4434                 link = dev->dirtyDirectories.next;
4435                 ylist_del_init(link);
4436                 
4437                 dS=ylist_entry(link,yaffs_DirectoryStructure,dirty);
4438                 oV = ylist_entry(dS,yaffs_ObjectVariant,directoryVariant);
4439                 obj = ylist_entry(oV,yaffs_Object,variant);
4440
4441                 T(YAFFS_TRACE_BACKGROUND, (TSTR("Update directory %d" TENDSTR), obj->objectId));
4442
4443                 if(obj->dirty)
4444                         yaffs_UpdateObjectHeader(obj, NULL, 0, 0, 0, NULL);
4445         }
4446 }
4447
4448 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj)
4449 {
4450         yaffs_Device *dev = obj->myDev;
4451         yaffs_Object *parent;
4452
4453         yaffs_VerifyObjectInDirectory(obj);
4454         parent = obj->parent;
4455
4456         yaffs_VerifyDirectory(parent);
4457
4458         if (dev && dev->param.removeObjectCallback)
4459                 dev->param.removeObjectCallback(obj);
4460
4461
4462         ylist_del_init(&obj->siblings);
4463         obj->parent = NULL;
4464         
4465         yaffs_VerifyDirectory(parent);
4466 }
4467
4468 void yaffs_AddObjectToDirectory(yaffs_Object *directory,
4469                                         yaffs_Object *obj)
4470 {
4471         if (!directory) {
4472                 T(YAFFS_TRACE_ALWAYS,
4473                   (TSTR
4474                    ("tragedy: Trying to add an object to a null pointer directory"
4475                     TENDSTR)));
4476                 YBUG();
4477                 return;
4478         }
4479         if (directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
4480                 T(YAFFS_TRACE_ALWAYS,
4481                   (TSTR
4482                    ("tragedy: Trying to add an object to a non-directory"
4483                     TENDSTR)));
4484                 YBUG();
4485         }
4486
4487         if (obj->siblings.prev == NULL) {
4488                 /* Not initialised */
4489                 YBUG();
4490         }
4491
4492
4493         yaffs_VerifyDirectory(directory);
4494
4495         yaffs_RemoveObjectFromDirectory(obj);
4496
4497
4498         /* Now add it */
4499         ylist_add(&obj->siblings, &directory->variant.directoryVariant.children);
4500         obj->parent = directory;
4501
4502         if (directory == obj->myDev->unlinkedDir
4503                         || directory == obj->myDev->deletedDir) {
4504                 obj->unlinked = 1;
4505                 obj->myDev->nUnlinkedFiles++;
4506                 obj->renameAllowed = 0;
4507         }
4508
4509         yaffs_VerifyDirectory(directory);
4510         yaffs_VerifyObjectInDirectory(obj);
4511 }
4512
4513 yaffs_Object *yaffs_FindObjectByName(yaffs_Object *directory,
4514                                      const YCHAR *name)
4515 {
4516         int sum;
4517
4518         struct ylist_head *i;
4519         YCHAR buffer[YAFFS_MAX_NAME_LENGTH + 1];
4520
4521         yaffs_Object *l;
4522
4523         if (!name)
4524                 return NULL;
4525
4526         if (!directory) {
4527                 T(YAFFS_TRACE_ALWAYS,
4528                   (TSTR
4529                    ("tragedy: yaffs_FindObjectByName: null pointer directory"
4530                     TENDSTR)));
4531                 YBUG();
4532                 return NULL;
4533         }
4534         if (directory->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
4535                 T(YAFFS_TRACE_ALWAYS,
4536                   (TSTR
4537                    ("tragedy: yaffs_FindObjectByName: non-directory" TENDSTR)));
4538                 YBUG();
4539         }
4540
4541         sum = yaffs_CalcNameSum(name);
4542
4543         ylist_for_each(i, &directory->variant.directoryVariant.children) {
4544                 if (i) {
4545                         l = ylist_entry(i, yaffs_Object, siblings);
4546
4547                         if (l->parent != directory)
4548                                 YBUG();
4549
4550                         yaffs_CheckObjectDetailsLoaded(l);
4551
4552                         /* Special case for lost-n-found */
4553                         if (l->objectId == YAFFS_OBJECTID_LOSTNFOUND) {
4554                                 if (yaffs_strcmp(name, YAFFS_LOSTNFOUND_NAME) == 0)
4555                                         return l;
4556                         } else if (yaffs_SumCompare(l->sum, sum) || l->hdrChunk <= 0) {
4557                                 /* LostnFound chunk called Objxxx
4558                                  * Do a real check
4559                                  */
4560                                 yaffs_GetObjectName(l, buffer,
4561                                                     YAFFS_MAX_NAME_LENGTH + 1);
4562                                 if (yaffs_strncmp(name, buffer, YAFFS_MAX_NAME_LENGTH) == 0)
4563                                         return l;
4564                         }
4565                 }
4566         }
4567
4568         return NULL;
4569 }
4570
4571
4572 #if 0
4573 int yaffs_ApplyToDirectoryChildren(yaffs_Object *theDir,
4574                                         int (*fn) (yaffs_Object *))
4575 {
4576         struct ylist_head *i;
4577         yaffs_Object *l;
4578
4579         if (!theDir) {
4580                 T(YAFFS_TRACE_ALWAYS,
4581                   (TSTR
4582                    ("tragedy: yaffs_FindObjectByName: null pointer directory"
4583                     TENDSTR)));
4584                 YBUG();
4585                 return YAFFS_FAIL;
4586         }
4587         if (theDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
4588                 T(YAFFS_TRACE_ALWAYS,
4589                   (TSTR
4590                    ("tragedy: yaffs_FindObjectByName: non-directory" TENDSTR)));
4591                 YBUG();
4592                 return YAFFS_FAIL;
4593         }
4594
4595         ylist_for_each(i, &theDir->variant.directoryVariant.children) {
4596                 if (i) {
4597                         l = ylist_entry(i, yaffs_Object, siblings);
4598                         if (l && !fn(l))
4599                                 return YAFFS_FAIL;
4600                 }
4601         }
4602
4603         return YAFFS_OK;
4604
4605 }
4606 #endif
4607
4608 /* GetEquivalentObject dereferences any hard links to get to the
4609  * actual object.
4610  */
4611
4612 yaffs_Object *yaffs_GetEquivalentObject(yaffs_Object *obj)
4613 {
4614         if (obj && obj->variantType == YAFFS_OBJECT_TYPE_HARDLINK) {
4615                 /* We want the object id of the equivalent object, not this one */
4616                 obj = obj->variant.hardLinkVariant.equivalentObject;
4617                 yaffs_CheckObjectDetailsLoaded(obj);
4618         }
4619         return obj;
4620 }
4621
4622 /*
4623  *  A note or two on object names.
4624  *  * If the object name is missing, we then make one up in the form objnnn
4625  *
4626  *  * ASCII names are stored in the object header's name field from byte zero
4627  *  * Unicode names are historically stored starting from byte zero.
4628  *
4629  * Then there are automatic Unicode names...
4630  * The purpose of these is to save names in a way that can be read as
4631  * ASCII or Unicode names as appropriate, thus allowing a Unicode and ASCII
4632  * system to share files.
4633  *
4634  * These automatic unicode are stored slightly differently...
4635  *  - If the name can fit in the ASCII character space then they are saved as 
4636  *    ascii names as per above.
4637  *  - If the name needs Unicode then the name is saved in Unicode
4638  *    starting at oh->name[1].
4639
4640  */
4641 static void yaffs_FixNullName(yaffs_Object * obj,YCHAR * name, int buffSize)
4642 {
4643         /* Create an object name if we could not find one. */
4644         if(yaffs_strnlen(name,YAFFS_MAX_NAME_LENGTH) == 0){
4645                 YCHAR locName[20];
4646                 YCHAR numString[20];
4647                 YCHAR *x = &numString[19];
4648                 unsigned v = obj->objectId;
4649                 numString[19] = 0;
4650                 while(v>0){
4651                         x--;
4652                         *x = '0' + (v % 10);
4653                         v /= 10;
4654                 }
4655                 /* make up a name */
4656                 yaffs_strcpy(locName, YAFFS_LOSTNFOUND_PREFIX);
4657                 yaffs_strcat(locName,x);
4658                 yaffs_strncpy(name, locName, buffSize - 1);
4659         }
4660 }
4661
4662 static void yaffs_LoadNameFromObjectHeader(yaffs_Device *dev,YCHAR *name, const YCHAR *ohName, int bufferSize)
4663 {
4664 #ifdef CONFIG_YAFFS_AUTO_UNICODE
4665         if(dev->param.autoUnicode){
4666                 if(*ohName){
4667                         /* It is an ASCII name, so do an ASCII to unicode conversion */
4668                         const char *asciiOhName = (const char *)ohName;
4669                         int n = bufferSize - 1;
4670                         while(n > 0 && *asciiOhName){
4671                                 *name = *asciiOhName;
4672                                 name++;
4673                                 asciiOhName++;
4674                                 n--;
4675                         }
4676                 } else 
4677                         yaffs_strncpy(name,ohName+1, bufferSize -1);
4678         } else
4679 #endif
4680                 yaffs_strncpy(name, ohName, bufferSize - 1);
4681 }
4682
4683
4684 static void yaffs_LoadObjectHeaderFromName(yaffs_Device *dev, YCHAR *ohName, const YCHAR *name)
4685 {
4686 #ifdef CONFIG_YAFFS_AUTO_UNICODE
4687
4688         int isAscii;
4689         YCHAR *w;
4690
4691         if(dev->param.autoUnicode){
4692
4693                 isAscii = 1;
4694                 w = name;
4695         
4696                 /* Figure out if the name will fit in ascii character set */
4697                 while(isAscii && *w){
4698                         if((*w) & 0xff00)
4699                                 isAscii = 0;
4700                         w++;
4701                 }
4702
4703                 if(isAscii){
4704                         /* It is an ASCII name, so do a unicode to ascii conversion */
4705                         char *asciiOhName = (char *)ohName;
4706                         int n = YAFFS_MAX_NAME_LENGTH  - 1;
4707                         while(n > 0 && *name){
4708                                 *asciiOhName= *name;
4709                                 name++;
4710                                 asciiOhName++;
4711                                 n--;
4712                         }
4713                 } else{
4714                         /* It is a unicode name, so save starting at the second YCHAR */
4715                         *ohName = 0;
4716                         yaffs_strncpy(ohName+1,name, YAFFS_MAX_NAME_LENGTH -2);
4717                 }
4718         }
4719         else 
4720 #endif
4721                 yaffs_strncpy(ohName,name, YAFFS_MAX_NAME_LENGTH - 1);
4722
4723 }
4724
4725 int yaffs_GetObjectName(yaffs_Object * obj, YCHAR * name, int buffSize)
4726 {
4727         memset(name, 0, buffSize * sizeof(YCHAR));
4728         
4729         yaffs_CheckObjectDetailsLoaded(obj);
4730
4731         if (obj->objectId == YAFFS_OBJECTID_LOSTNFOUND) {
4732                 yaffs_strncpy(name, YAFFS_LOSTNFOUND_NAME, buffSize - 1);
4733         } 
4734 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
4735         else if (obj->shortName[0]) {
4736                 yaffs_strcpy(name, obj->shortName);
4737         }
4738 #endif
4739         else if(obj->hdrChunk > 0) {
4740                 int result;
4741                 __u8 *buffer = yaffs_GetTempBuffer(obj->myDev, __LINE__);
4742
4743                 yaffs_ObjectHeader *oh = (yaffs_ObjectHeader *) buffer;
4744
4745                 memset(buffer, 0, obj->myDev->nDataBytesPerChunk);
4746
4747                 if (obj->hdrChunk > 0) {
4748                         result = yaffs_ReadChunkWithTagsFromNAND(obj->myDev,
4749                                                         obj->hdrChunk, buffer,
4750                                                         NULL);
4751                 }
4752                 yaffs_LoadNameFromObjectHeader(obj->myDev,name,oh->name,buffSize);
4753
4754                 yaffs_ReleaseTempBuffer(obj->myDev, buffer, __LINE__);
4755         }
4756
4757         yaffs_FixNullName(obj,name,buffSize);
4758
4759         return yaffs_strnlen(name,YAFFS_MAX_NAME_LENGTH);
4760 }
4761
4762
4763 int yaffs_GetObjectFileLength(yaffs_Object *obj)
4764 {
4765         /* Dereference any hard linking */
4766         obj = yaffs_GetEquivalentObject(obj);
4767
4768         if (obj->variantType == YAFFS_OBJECT_TYPE_FILE)
4769                 return obj->variant.fileVariant.fileSize;
4770         if (obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK){
4771                 if(!obj->variant.symLinkVariant.alias)
4772                         return 0;
4773                 return yaffs_strnlen(obj->variant.symLinkVariant.alias,YAFFS_MAX_ALIAS_LENGTH);
4774         } else {
4775                 /* Only a directory should drop through to here */
4776                 return obj->myDev->nDataBytesPerChunk;
4777         }
4778 }
4779
4780 int yaffs_GetObjectLinkCount(yaffs_Object *obj)
4781 {
4782         int count = 0;
4783         struct ylist_head *i;
4784
4785         if (!obj->unlinked)
4786                 count++;                /* the object itself */
4787
4788         ylist_for_each(i, &obj->hardLinks)
4789                 count++;                /* add the hard links; */
4790
4791         return count;
4792 }
4793
4794 int yaffs_GetObjectInode(yaffs_Object *obj)
4795 {
4796         obj = yaffs_GetEquivalentObject(obj);
4797
4798         return obj->objectId;
4799 }
4800
4801 unsigned yaffs_GetObjectType(yaffs_Object *obj)
4802 {
4803         obj = yaffs_GetEquivalentObject(obj);
4804
4805         switch (obj->variantType) {
4806         case YAFFS_OBJECT_TYPE_FILE:
4807                 return DT_REG;
4808                 break;
4809         case YAFFS_OBJECT_TYPE_DIRECTORY:
4810                 return DT_DIR;
4811                 break;
4812         case YAFFS_OBJECT_TYPE_SYMLINK:
4813                 return DT_LNK;
4814                 break;
4815         case YAFFS_OBJECT_TYPE_HARDLINK:
4816                 return DT_REG;
4817                 break;
4818         case YAFFS_OBJECT_TYPE_SPECIAL:
4819                 if (S_ISFIFO(obj->yst_mode))
4820                         return DT_FIFO;
4821                 if (S_ISCHR(obj->yst_mode))
4822                         return DT_CHR;
4823                 if (S_ISBLK(obj->yst_mode))
4824                         return DT_BLK;
4825                 if (S_ISSOCK(obj->yst_mode))
4826                         return DT_SOCK;
4827         default:
4828                 return DT_REG;
4829                 break;
4830         }
4831 }
4832
4833 YCHAR *yaffs_GetSymlinkAlias(yaffs_Object *obj)
4834 {
4835         obj = yaffs_GetEquivalentObject(obj);
4836         if (obj->variantType == YAFFS_OBJECT_TYPE_SYMLINK)
4837                 return yaffs_CloneString(obj->variant.symLinkVariant.alias);
4838         else
4839                 return yaffs_CloneString(_Y(""));
4840 }
4841
4842 #ifndef CONFIG_YAFFS_WINCE
4843
4844 int yaffs_SetAttributes(yaffs_Object *obj, struct iattr *attr)
4845 {
4846         unsigned int valid = attr->ia_valid;
4847
4848         if (valid & ATTR_MODE)
4849                 obj->yst_mode = attr->ia_mode;
4850         if (valid & ATTR_UID)
4851                 obj->yst_uid = attr->ia_uid;
4852         if (valid & ATTR_GID)
4853                 obj->yst_gid = attr->ia_gid;
4854
4855         if (valid & ATTR_ATIME)
4856                 obj->yst_atime = Y_TIME_CONVERT(attr->ia_atime);
4857         if (valid & ATTR_CTIME)
4858                 obj->yst_ctime = Y_TIME_CONVERT(attr->ia_ctime);
4859         if (valid & ATTR_MTIME)
4860                 obj->yst_mtime = Y_TIME_CONVERT(attr->ia_mtime);
4861
4862         if (valid & ATTR_SIZE)
4863                 yaffs_ResizeFile(obj, attr->ia_size);
4864
4865         yaffs_UpdateObjectHeader(obj, NULL, 1, 0, 0, NULL);
4866
4867         return YAFFS_OK;
4868
4869 }
4870 int yaffs_GetAttributes(yaffs_Object *obj, struct iattr *attr)
4871 {
4872         unsigned int valid = 0;
4873
4874         attr->ia_mode = obj->yst_mode;
4875         valid |= ATTR_MODE;
4876         attr->ia_uid = obj->yst_uid;
4877         valid |= ATTR_UID;
4878         attr->ia_gid = obj->yst_gid;
4879         valid |= ATTR_GID;
4880
4881         Y_TIME_CONVERT(attr->ia_atime) = obj->yst_atime;
4882         valid |= ATTR_ATIME;
4883         Y_TIME_CONVERT(attr->ia_ctime) = obj->yst_ctime;
4884         valid |= ATTR_CTIME;
4885         Y_TIME_CONVERT(attr->ia_mtime) = obj->yst_mtime;
4886         valid |= ATTR_MTIME;
4887
4888         attr->ia_size = yaffs_GetFileSize(obj);
4889         valid |= ATTR_SIZE;
4890
4891         attr->ia_valid = valid;
4892
4893         return YAFFS_OK;
4894 }
4895
4896 #endif
4897
4898
4899 static int yaffs_DoXMod(yaffs_Object *obj, int set, const char *name, const void *value, int size, int flags)
4900 {
4901         yaffs_XAttrMod xmod;
4902
4903         int result;
4904
4905         xmod.set = set;
4906         xmod.name = name;
4907         xmod.data = value;
4908         xmod.size =  size;
4909         xmod.flags = flags;
4910         xmod.result = -ENOSPC;
4911
4912         result = yaffs_UpdateObjectHeader(obj, NULL, 0, 0, 0, &xmod);
4913
4914         if(result > 0)
4915                 return xmod.result;
4916         else
4917                 return -ENOSPC;
4918 }
4919
4920 static int yaffs_ApplyXMod(yaffs_Device *dev, char *buffer, yaffs_XAttrMod *xmod)
4921 {
4922         int retval = 0;
4923         int x_offs = sizeof(yaffs_ObjectHeader);
4924         int x_size = dev->nDataBytesPerChunk - sizeof(yaffs_ObjectHeader);
4925
4926         char * x_buffer = buffer + x_offs;
4927
4928         if(xmod->set)
4929                 retval = nval_set(x_buffer, x_size, xmod->name, xmod->data, xmod->size, xmod->flags);
4930         else
4931                 retval = nval_del(x_buffer, x_size, xmod->name);
4932
4933         xmod->result = retval;
4934
4935         return retval;
4936 }
4937
4938 static int yaffs_DoXFetch(yaffs_Object *obj, const char *name, void *value, int size)
4939 {
4940         char *buffer = NULL;
4941         int result;
4942         yaffs_ExtendedTags tags;
4943         yaffs_Device *dev = obj->myDev;
4944         int x_offs = sizeof(yaffs_ObjectHeader);
4945         int x_size = dev->nDataBytesPerChunk - sizeof(yaffs_ObjectHeader);
4946
4947         __u8 * x_buffer;
4948
4949         int retval = 0;
4950
4951         if(obj->hdrChunk < 1)
4952                 return -ENODATA;
4953
4954         buffer = yaffs_GetTempBuffer(dev, __LINE__);
4955         if(!buffer)
4956                 return -ENOMEM;
4957
4958         result = yaffs_ReadChunkWithTagsFromNAND(dev,obj->hdrChunk, buffer, &tags);
4959
4960         if(result != YAFFS_OK)
4961                 retval = -ENOENT;
4962         else{
4963                 x_buffer =  buffer + x_offs;
4964
4965                 if(name)
4966                         retval = nval_get(x_buffer, x_size, name, value, size);
4967                 else
4968                         retval = nval_list(x_buffer, x_size, value,size);
4969         }
4970         yaffs_ReleaseTempBuffer(dev,buffer,__LINE__);
4971         return retval;
4972 }
4973
4974 int yaffs_SetXAttribute(yaffs_Object *obj, const char *name, const void * value, int size, int flags)
4975 {
4976         return yaffs_DoXMod(obj, 1, name, value, size, flags);
4977 }
4978
4979 int yaffs_RemoveXAttribute(yaffs_Object *obj, const char *name)
4980 {
4981         return yaffs_DoXMod(obj, 0, name, NULL, 0, 0);
4982 }
4983
4984 int yaffs_GetXAttribute(yaffs_Object *obj, const char *name, void *value, int size)
4985 {
4986         return yaffs_DoXFetch(obj, name, value, size);
4987 }
4988
4989 int yaffs_ListXAttributes(yaffs_Object *obj, char *buffer, int size)
4990 {
4991         return yaffs_DoXFetch(obj, NULL, buffer,size);
4992 }
4993
4994
4995
4996 #if 0
4997 int yaffs_DumpObject(yaffs_Object *obj)
4998 {
4999         YCHAR name[257];
5000
5001         yaffs_GetObjectName(obj, name, YAFFS_MAX_NAME_LENGTH + 1);
5002
5003         T(YAFFS_TRACE_ALWAYS,
5004           (TSTR
5005            ("Object %d, inode %d \"%s\"\n dirty %d valid %d serial %d sum %d"
5006             " chunk %d type %d size %d\n"
5007             TENDSTR), obj->objectId, yaffs_GetObjectInode(obj), name,
5008            obj->dirty, obj->valid, obj->serial, obj->sum, obj->hdrChunk,
5009            yaffs_GetObjectType(obj), yaffs_GetObjectFileLength(obj)));
5010
5011         return YAFFS_OK;
5012 }
5013 #endif
5014
5015 /*---------------------------- Initialisation code -------------------------------------- */
5016
5017 static int yaffs_CheckDevFunctions(const yaffs_Device *dev)
5018 {
5019
5020         /* Common functions, gotta have */
5021         if (!dev->param.eraseBlockInNAND || !dev->param.initialiseNAND)
5022                 return 0;
5023
5024 #ifdef CONFIG_YAFFS_YAFFS2
5025
5026         /* Can use the "with tags" style interface for yaffs1 or yaffs2 */
5027         if (dev->param.writeChunkWithTagsToNAND &&
5028             dev->param.readChunkWithTagsFromNAND &&
5029             !dev->param.writeChunkToNAND &&
5030             !dev->param.readChunkFromNAND &&
5031             dev->param.markNANDBlockBad &&
5032             dev->param.queryNANDBlock)
5033                 return 1;
5034 #endif
5035
5036         /* Can use the "spare" style interface for yaffs1 */
5037         if (!dev->param.isYaffs2 &&
5038             !dev->param.writeChunkWithTagsToNAND &&
5039             !dev->param.readChunkWithTagsFromNAND &&
5040             dev->param.writeChunkToNAND &&
5041             dev->param.readChunkFromNAND &&
5042             !dev->param.markNANDBlockBad &&
5043             !dev->param.queryNANDBlock)
5044                 return 1;
5045
5046         return 0;       /* bad */
5047 }
5048
5049
5050 static int yaffs_CreateInitialDirectories(yaffs_Device *dev)
5051 {
5052         /* Initialise the unlinked, deleted, root and lost and found directories */
5053
5054         dev->lostNFoundDir = dev->rootDir =  NULL;
5055         dev->unlinkedDir = dev->deletedDir = NULL;
5056
5057         dev->unlinkedDir =
5058             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_UNLINKED, S_IFDIR);
5059
5060         dev->deletedDir =
5061             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_DELETED, S_IFDIR);
5062
5063         dev->rootDir =
5064             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_ROOT,
5065                                       YAFFS_ROOT_MODE | S_IFDIR);
5066         dev->lostNFoundDir =
5067             yaffs_CreateFakeDirectory(dev, YAFFS_OBJECTID_LOSTNFOUND,
5068                                       YAFFS_LOSTNFOUND_MODE | S_IFDIR);
5069
5070         if (dev->lostNFoundDir && dev->rootDir && dev->unlinkedDir && dev->deletedDir) {
5071                 yaffs_AddObjectToDirectory(dev->rootDir, dev->lostNFoundDir);
5072                 return YAFFS_OK;
5073         }
5074
5075         return YAFFS_FAIL;
5076 }
5077
5078 int yaffs_GutsInitialise(yaffs_Device *dev)
5079 {
5080         int init_failed = 0;
5081         unsigned x;
5082         int bits;
5083
5084         T(YAFFS_TRACE_TRACING, (TSTR("yaffs: yaffs_GutsInitialise()" TENDSTR)));
5085
5086         /* Check stuff that must be set */
5087
5088         if (!dev) {
5089                 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Need a device" TENDSTR)));
5090                 return YAFFS_FAIL;
5091         }
5092
5093         dev->internalStartBlock = dev->param.startBlock;
5094         dev->internalEndBlock = dev->param.endBlock;
5095         dev->blockOffset = 0;
5096         dev->chunkOffset = 0;
5097         dev->nFreeChunks = 0;
5098
5099         dev->gcBlock = 0;
5100
5101         if (dev->param.startBlock == 0) {
5102                 dev->internalStartBlock = dev->param.startBlock + 1;
5103                 dev->internalEndBlock = dev->param.endBlock + 1;
5104                 dev->blockOffset = 1;
5105                 dev->chunkOffset = dev->param.nChunksPerBlock;
5106         }
5107
5108         /* Check geometry parameters. */
5109
5110         if ((!dev->param.inbandTags && dev->param.isYaffs2 && dev->param.totalBytesPerChunk < 1024) ||
5111             (!dev->param.isYaffs2 && dev->param.totalBytesPerChunk < 512) ||
5112             (dev->param.inbandTags && !dev->param.isYaffs2) ||
5113              dev->param.nChunksPerBlock < 2 ||
5114              dev->param.nReservedBlocks < 2 ||
5115              dev->internalStartBlock <= 0 ||
5116              dev->internalEndBlock <= 0 ||
5117              dev->internalEndBlock <= (dev->internalStartBlock + dev->param.nReservedBlocks + 2)) {     /* otherwise it is too small */
5118                 T(YAFFS_TRACE_ALWAYS,
5119                   (TSTR
5120                    ("yaffs: NAND geometry problems: chunk size %d, type is yaffs%s, inbandTags %d "
5121                     TENDSTR), dev->param.totalBytesPerChunk, dev->param.isYaffs2 ? "2" : "", dev->param.inbandTags));
5122                 return YAFFS_FAIL;
5123         }
5124
5125         if (yaffs_InitialiseNAND(dev) != YAFFS_OK) {
5126                 T(YAFFS_TRACE_ALWAYS,
5127                   (TSTR("yaffs: InitialiseNAND failed" TENDSTR)));
5128                 return YAFFS_FAIL;
5129         }
5130
5131         /* Sort out space for inband tags, if required */
5132         if (dev->param.inbandTags)
5133                 dev->nDataBytesPerChunk = dev->param.totalBytesPerChunk - sizeof(yaffs_PackedTags2TagsPart);
5134         else
5135                 dev->nDataBytesPerChunk = dev->param.totalBytesPerChunk;
5136
5137         /* Got the right mix of functions? */
5138         if (!yaffs_CheckDevFunctions(dev)) {
5139                 /* Function missing */
5140                 T(YAFFS_TRACE_ALWAYS,
5141                   (TSTR
5142                    ("yaffs: device function(s) missing or wrong\n" TENDSTR)));
5143
5144                 return YAFFS_FAIL;
5145         }
5146
5147         /* This is really a compilation check. */
5148         if (!yaffs_CheckStructures()) {
5149                 T(YAFFS_TRACE_ALWAYS,
5150                   (TSTR("yaffs_CheckStructures failed\n" TENDSTR)));
5151                 return YAFFS_FAIL;
5152         }
5153
5154         if (dev->isMounted) {
5155                 T(YAFFS_TRACE_ALWAYS,
5156                   (TSTR("yaffs: device already mounted\n" TENDSTR)));
5157                 return YAFFS_FAIL;
5158         }
5159
5160         /* Finished with most checks. One or two more checks happen later on too. */
5161
5162         dev->isMounted = 1;
5163
5164         /* OK now calculate a few things for the device */
5165
5166         /*
5167          *  Calculate all the chunk size manipulation numbers:
5168          */
5169         x = dev->nDataBytesPerChunk;
5170         /* We always use dev->chunkShift and dev->chunkDiv */
5171         dev->chunkShift = Shifts(x);
5172         x >>= dev->chunkShift;
5173         dev->chunkDiv = x;
5174         /* We only use chunk mask if chunkDiv is 1 */
5175         dev->chunkMask = (1<<dev->chunkShift) - 1;
5176
5177         /*
5178          * Calculate chunkGroupBits.
5179          * We need to find the next power of 2 > than internalEndBlock
5180          */
5181
5182         x = dev->param.nChunksPerBlock * (dev->internalEndBlock + 1);
5183
5184         bits = ShiftsGE(x);
5185
5186         /* Set up tnode width if wide tnodes are enabled. */
5187         if (!dev->param.wideTnodesDisabled) {
5188                 /* bits must be even so that we end up with 32-bit words */
5189                 if (bits & 1)
5190                         bits++;
5191                 if (bits < 16)
5192                         dev->tnodeWidth = 16;
5193                 else
5194                         dev->tnodeWidth = bits;
5195         } else
5196                 dev->tnodeWidth = 16;
5197
5198         dev->tnodeMask = (1<<dev->tnodeWidth)-1;
5199
5200         /* Level0 Tnodes are 16 bits or wider (if wide tnodes are enabled),
5201          * so if the bitwidth of the
5202          * chunk range we're using is greater than 16 we need
5203          * to figure out chunk shift and chunkGroupSize
5204          */
5205
5206         if (bits <= dev->tnodeWidth)
5207                 dev->chunkGroupBits = 0;
5208         else
5209                 dev->chunkGroupBits = bits - dev->tnodeWidth;
5210
5211         dev->tnodeSize = (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8;
5212         if(dev->tnodeSize < sizeof(yaffs_Tnode))
5213                 dev->tnodeSize = sizeof(yaffs_Tnode);
5214
5215         dev->chunkGroupSize = 1 << dev->chunkGroupBits;
5216
5217         if (dev->param.nChunksPerBlock < dev->chunkGroupSize) {
5218                 /* We have a problem because the soft delete won't work if
5219                  * the chunk group size > chunks per block.
5220                  * This can be remedied by using larger "virtual blocks".
5221                  */
5222                 T(YAFFS_TRACE_ALWAYS,
5223                   (TSTR("yaffs: chunk group too large\n" TENDSTR)));
5224
5225                 return YAFFS_FAIL;
5226         }
5227
5228         /* OK, we've finished verifying the device, lets continue with initialisation */
5229
5230         /* More device initialisation */
5231         dev->allGCs = 0;
5232         dev->passiveGCs = 0;
5233         dev->oldestDirtyGCs = 0;
5234         dev->backgroundGCs = 0;
5235         dev->gcBlockFinder = 0;
5236         dev->bufferedBlock = -1;
5237         dev->doingBufferedBlockRewrite = 0;
5238         dev->nDeletedFiles = 0;
5239         dev->nBackgroundDeletions = 0;
5240         dev->nUnlinkedFiles = 0;
5241         dev->eccFixed = 0;
5242         dev->eccUnfixed = 0;
5243         dev->tagsEccFixed = 0;
5244         dev->tagsEccUnfixed = 0;
5245         dev->nErasureFailures = 0;
5246         dev->nErasedBlocks = 0;
5247         dev->gcDisable= 0;
5248         dev->hasPendingPrioritisedGCs = 1; /* Assume the worst for now, will get fixed on first GC */
5249         YINIT_LIST_HEAD(&dev->dirtyDirectories);
5250         dev->oldestDirtySequence = 0;
5251         dev->oldestDirtyBlock = 0;
5252
5253         /* Initialise temporary buffers and caches. */
5254         if (!yaffs_InitialiseTempBuffers(dev))
5255                 init_failed = 1;
5256
5257         dev->srCache = NULL;
5258         dev->gcCleanupList = NULL;
5259
5260
5261         if (!init_failed &&
5262             dev->param.nShortOpCaches > 0) {
5263                 int i;
5264                 void *buf;
5265                 int srCacheBytes = dev->param.nShortOpCaches * sizeof(yaffs_ChunkCache);
5266
5267                 if (dev->param.nShortOpCaches > YAFFS_MAX_SHORT_OP_CACHES)
5268                         dev->param.nShortOpCaches = YAFFS_MAX_SHORT_OP_CACHES;
5269
5270                 dev->srCache =  YMALLOC(srCacheBytes);
5271
5272                 buf = (__u8 *) dev->srCache;
5273
5274                 if (dev->srCache)
5275                         memset(dev->srCache, 0, srCacheBytes);
5276
5277                 for (i = 0; i < dev->param.nShortOpCaches && buf; i++) {
5278                         dev->srCache[i].object = NULL;
5279                         dev->srCache[i].lastUse = 0;
5280                         dev->srCache[i].dirty = 0;
5281                         dev->srCache[i].data = buf = YMALLOC_DMA(dev->param.totalBytesPerChunk);
5282                 }
5283                 if (!buf)
5284                         init_failed = 1;
5285
5286                 dev->srLastUse = 0;
5287         }
5288
5289         dev->cacheHits = 0;
5290
5291         if (!init_failed) {
5292                 dev->gcCleanupList = YMALLOC(dev->param.nChunksPerBlock * sizeof(__u32));
5293                 if (!dev->gcCleanupList)
5294                         init_failed = 1;
5295         }
5296
5297         if (dev->param.isYaffs2)
5298                 dev->param.useHeaderFileSize = 1;
5299
5300         if (!init_failed && !yaffs_InitialiseBlocks(dev))
5301                 init_failed = 1;
5302
5303         yaffs_InitialiseTnodesAndObjects(dev);
5304
5305         if (!init_failed && !yaffs_CreateInitialDirectories(dev))
5306                 init_failed = 1;
5307
5308
5309         if (!init_failed) {
5310                 /* Now scan the flash. */
5311                 if (dev->param.isYaffs2) {
5312                         if (yaffs2_CheckpointRestore(dev)) {
5313                                 yaffs_CheckObjectDetailsLoaded(dev->rootDir);
5314                                 T(YAFFS_TRACE_ALWAYS,
5315                                   (TSTR("yaffs: restored from checkpoint" TENDSTR)));
5316                         } else {
5317
5318                                 /* Clean up the mess caused by an aborted checkpoint load
5319                                  * and scan backwards.
5320                                  */
5321                                 yaffs_DeinitialiseBlocks(dev);
5322
5323                                 yaffs_DeinitialiseTnodesAndObjects(dev);
5324
5325                                 dev->nErasedBlocks = 0;
5326                                 dev->nFreeChunks = 0;
5327                                 dev->allocationBlock = -1;
5328                                 dev->allocationPage = -1;
5329                                 dev->nDeletedFiles = 0;
5330                                 dev->nUnlinkedFiles = 0;
5331                                 dev->nBackgroundDeletions = 0;
5332
5333                                 if (!init_failed && !yaffs_InitialiseBlocks(dev))
5334                                         init_failed = 1;
5335
5336                                 yaffs_InitialiseTnodesAndObjects(dev);
5337
5338                                 if (!init_failed && !yaffs_CreateInitialDirectories(dev))
5339                                         init_failed = 1;
5340
5341                                 if (!init_failed && !yaffs2_ScanBackwards(dev))
5342                                         init_failed = 1;
5343                         }
5344                 } else if (!yaffs1_Scan(dev))
5345                                 init_failed = 1;
5346
5347                 yaffs_StripDeletedObjects(dev);
5348                 yaffs_FixHangingObjects(dev);
5349                 if(dev->param.emptyLostAndFound)
5350                         yaffs_EmptyLostAndFound(dev);
5351         }
5352
5353         if (init_failed) {
5354                 /* Clean up the mess */
5355                 T(YAFFS_TRACE_TRACING,
5356                   (TSTR("yaffs: yaffs_GutsInitialise() aborted.\n" TENDSTR)));
5357
5358                 yaffs_Deinitialise(dev);
5359                 return YAFFS_FAIL;
5360         }
5361
5362         /* Zero out stats */
5363         dev->nPageReads = 0;
5364         dev->nPageWrites = 0;
5365         dev->nBlockErasures = 0;
5366         dev->nGCCopies = 0;
5367         dev->nRetriedWrites = 0;
5368
5369         dev->nRetiredBlocks = 0;
5370
5371         yaffs_VerifyFreeChunks(dev);
5372         yaffs_VerifyBlocks(dev);
5373
5374         /* Clean up any aborted checkpoint data */
5375         if(!dev->isCheckpointed && dev->blocksInCheckpoint > 0)
5376                 yaffs2_InvalidateCheckpoint(dev);
5377
5378         T(YAFFS_TRACE_TRACING,
5379           (TSTR("yaffs: yaffs_GutsInitialise() done.\n" TENDSTR)));
5380         return YAFFS_OK;
5381
5382 }
5383
5384 void yaffs_Deinitialise(yaffs_Device *dev)
5385 {
5386         if (dev->isMounted) {
5387                 int i;
5388
5389                 yaffs_DeinitialiseBlocks(dev);
5390                 yaffs_DeinitialiseTnodesAndObjects(dev);
5391                 if (dev->param.nShortOpCaches > 0 &&
5392                     dev->srCache) {
5393
5394                         for (i = 0; i < dev->param.nShortOpCaches; i++) {
5395                                 if (dev->srCache[i].data)
5396                                         YFREE(dev->srCache[i].data);
5397                                 dev->srCache[i].data = NULL;
5398                         }
5399
5400                         YFREE(dev->srCache);
5401                         dev->srCache = NULL;
5402                 }
5403
5404                 YFREE(dev->gcCleanupList);
5405
5406                 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
5407                         YFREE(dev->tempBuffer[i].buffer);
5408
5409                 dev->isMounted = 0;
5410
5411                 if (dev->param.deinitialiseNAND)
5412                         dev->param.deinitialiseNAND(dev);
5413         }
5414 }
5415
5416 int yaffs_CountFreeChunks(yaffs_Device *dev)
5417 {
5418         int nFree=0;
5419         int b;
5420
5421         yaffs_BlockInfo *blk;
5422
5423         blk = dev->blockInfo;
5424         for (b = dev->internalStartBlock; b <= dev->internalEndBlock; b++) {
5425                 switch (blk->blockState) {
5426                 case YAFFS_BLOCK_STATE_EMPTY:
5427                 case YAFFS_BLOCK_STATE_ALLOCATING:
5428                 case YAFFS_BLOCK_STATE_COLLECTING:
5429                 case YAFFS_BLOCK_STATE_FULL:
5430                         nFree +=
5431                             (dev->param.nChunksPerBlock - blk->pagesInUse +
5432                              blk->softDeletions);
5433                         break;
5434                 default:
5435                         break;
5436                 }
5437                 blk++;
5438         }
5439
5440         return nFree;
5441 }
5442
5443 int yaffs_GetNumberOfFreeChunks(yaffs_Device *dev)
5444 {
5445         /* This is what we report to the outside world */
5446
5447         int nFree;
5448         int nDirtyCacheChunks;
5449         int blocksForCheckpoint;
5450         int i;
5451
5452 #if 1
5453         nFree = dev->nFreeChunks;
5454 #else
5455         nFree = yaffs_CountFreeChunks(dev);
5456 #endif
5457
5458         nFree += dev->nDeletedFiles;
5459
5460         /* Now count the number of dirty chunks in the cache and subtract those */
5461
5462         for (nDirtyCacheChunks = 0, i = 0; i < dev->param.nShortOpCaches; i++) {
5463                 if (dev->srCache[i].dirty)
5464                         nDirtyCacheChunks++;
5465         }
5466
5467         nFree -= nDirtyCacheChunks;
5468
5469         nFree -= ((dev->param.nReservedBlocks + 1) * dev->param.nChunksPerBlock);
5470
5471         /* Now we figure out how much to reserve for the checkpoint and report that... */
5472         blocksForCheckpoint = yaffs2_CalcCheckpointBlocksRequired(dev);
5473
5474         nFree -= (blocksForCheckpoint * dev->param.nChunksPerBlock);
5475
5476         if (nFree < 0)
5477                 nFree = 0;
5478
5479         return nFree;
5480
5481 }
5482
5483
5484 /*---------------------------------------- YAFFS test code ----------------------*/
5485
5486 #define yaffs_CheckStruct(structure, syze, name) \
5487         do { \
5488                 if (sizeof(structure) != syze) { \
5489                         T(YAFFS_TRACE_ALWAYS, (TSTR("%s should be %d but is %d\n" TENDSTR),\
5490                                 name, syze, (int) sizeof(structure))); \
5491                         return YAFFS_FAIL; \
5492                 } \
5493         } while (0)
5494
5495 static int yaffs_CheckStructures(void)
5496 {
5497 /*      yaffs_CheckStruct(yaffs_Tags,8,"yaffs_Tags"); */
5498 /*      yaffs_CheckStruct(yaffs_TagsUnion,8,"yaffs_TagsUnion"); */
5499 /*      yaffs_CheckStruct(yaffs_Spare,16,"yaffs_Spare"); */
5500 #ifndef CONFIG_YAFFS_TNODE_LIST_DEBUG
5501 /*      yaffs_CheckStruct(yaffs_Tnode, 2 * YAFFS_NTNODES_LEVEL0, "yaffs_Tnode"); */
5502 #endif
5503 #ifndef CONFIG_YAFFS_WINCE
5504         yaffs_CheckStruct(yaffs_ObjectHeader, 512, "yaffs_ObjectHeader");
5505 #endif
5506         return YAFFS_OK;
5507 }