2 * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
4 * Copyright (C) 2002-2007 Aleph One Ltd.
5 * for Toby Churchill Ltd and Brightstar Engineering
7 * Created by Charles Manning <charles@aleph1.co.uk>
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.
14 const char *yaffs_guts_c_version =
15 "$Id: yaffs_guts.c,v 1.116 2010-03-09 04:12:00 charles Exp $";
18 #include "yaffs_trace.h"
20 #include "yaffsinterface.h"
21 #include "yaffs_guts.h"
22 #include "yaffs_tagsvalidity.h"
23 #include "yaffs_getblockinfo.h"
25 #include "yaffs_tagscompat.h"
26 #ifndef CONFIG_YAFFS_USE_OWN_SORT
27 #include "yaffs_qsort.h"
29 #include "yaffs_nand.h"
31 #include "yaffs_checkptrw.h"
33 #include "yaffs_nand.h"
34 #include "yaffs_packedtags2.h"
37 #define YAFFS_PASSIVE_GC_CHUNKS 2
39 #include "yaffs_ecc.h"
42 /* Robustification (if it ever comes about...) */
43 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND);
44 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
46 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
48 const yaffs_ExtendedTags *tags);
49 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
50 const yaffs_ExtendedTags *tags);
52 /* Other local prototypes */
53 static void yaffs_UpdateParent(yaffs_Object *obj);
54 static int yaffs_UnlinkObject(yaffs_Object *obj);
55 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj);
57 static void yaffs_HardlinkFixup(yaffs_Device *dev, yaffs_Object *hardList);
59 static int yaffs_WriteNewChunkWithTagsToNAND(yaffs_Device *dev,
61 yaffs_ExtendedTags *tags,
63 static int yaffs_PutChunkIntoFile(yaffs_Object *in, int chunkInInode,
64 int chunkInNAND, int inScan);
66 static yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
67 yaffs_ObjectType type);
68 static void yaffs_AddObjectToDirectory(yaffs_Object *directory,
70 static int yaffs_UpdateObjectHeader(yaffs_Object *in, const YCHAR *name,
71 int force, int isShrink, int shadows);
72 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj);
73 static int yaffs_CheckStructures(void);
74 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level,
75 int chunkOffset, int *limit);
76 static int yaffs_DoGenericObjectDeletion(yaffs_Object *in);
78 static yaffs_BlockInfo *yaffs_GetBlockInfo(yaffs_Device *dev, int blockNo);
81 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
84 static int yaffs_UnlinkWorker(yaffs_Object *obj);
86 static int yaffs_TagsMatch(const yaffs_ExtendedTags *tags, int objectId,
89 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
90 yaffs_BlockInfo **blockUsedPtr);
92 static void yaffs_VerifyFreeChunks(yaffs_Device *dev);
94 static void yaffs_CheckObjectDetailsLoaded(yaffs_Object *in);
96 static void yaffs_VerifyDirectory(yaffs_Object *directory);
98 static int yaffs_CheckFileSanity(yaffs_Object *in);
100 #define yaffs_CheckFileSanity(in)
103 static void yaffs_InvalidateWholeChunkCache(yaffs_Object *in);
104 static void yaffs_InvalidateChunkCache(yaffs_Object *object, int chunkId);
106 static void yaffs_InvalidateCheckpoint(yaffs_Device *dev);
108 static int yaffs_FindChunkInFile(yaffs_Object *in, int chunkInInode,
109 yaffs_ExtendedTags *tags);
111 static __u32 yaffs_GetChunkGroupBase(yaffs_Device *dev, yaffs_Tnode *tn,
113 static yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,
114 yaffs_FileStructure *fStruct,
117 static void yaffs_SkipRestOfBlock(yaffs_Device *dev);
118 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
121 yaffs_ExtendedTags *tags);
123 /* Function to calculate chunk and offset */
125 static void yaffs_AddrToChunk(yaffs_Device *dev, loff_t addr, int *chunkOut,
131 chunk = (__u32)(addr >> dev->chunkShift);
133 if (dev->chunkDiv == 1) {
134 /* easy power of 2 case */
135 offset = (__u32)(addr & dev->chunkMask);
137 /* Non power-of-2 case */
141 chunk /= dev->chunkDiv;
143 chunkBase = ((loff_t)chunk) * dev->nDataBytesPerChunk;
144 offset = (__u32)(addr - chunkBase);
151 /* Function to return the number of shifts for a power of 2 greater than or
152 * equal to the given number
153 * Note we don't try to cater for all possible numbers and this does not have to
154 * be hellishly efficient.
157 static __u32 ShiftsGE(__u32 x)
162 nShifts = extraBits = 0;
177 /* Function to return the number of shifts to get a 1 in bit 0
180 static __u32 Shifts(__u32 x)
200 * Temporary buffer manipulations.
203 static int yaffs_InitialiseTempBuffers(yaffs_Device *dev)
206 __u8 *buf = (__u8 *)1;
208 memset(dev->tempBuffer, 0, sizeof(dev->tempBuffer));
210 for (i = 0; buf && i < YAFFS_N_TEMP_BUFFERS; i++) {
211 dev->tempBuffer[i].line = 0; /* not in use */
212 dev->tempBuffer[i].buffer = buf =
213 YMALLOC_DMA(dev->param.totalBytesPerChunk);
216 return buf ? YAFFS_OK : YAFFS_FAIL;
219 __u8 *yaffs_GetTempBuffer(yaffs_Device *dev, int lineNo)
224 if (dev->tempInUse > dev->maxTemp)
225 dev->maxTemp = dev->tempInUse;
227 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
228 if (dev->tempBuffer[i].line == 0) {
229 dev->tempBuffer[i].line = lineNo;
230 if ((i + 1) > dev->maxTemp) {
231 dev->maxTemp = i + 1;
232 for (j = 0; j <= i; j++)
233 dev->tempBuffer[j].maxLine =
234 dev->tempBuffer[j].line;
237 return dev->tempBuffer[i].buffer;
241 T(YAFFS_TRACE_BUFFERS,
242 (TSTR("Out of temp buffers at line %d, other held by lines:"),
244 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++)
245 T(YAFFS_TRACE_BUFFERS, (TSTR(" %d "), dev->tempBuffer[i].line));
247 T(YAFFS_TRACE_BUFFERS, (TSTR(" " TENDSTR)));
250 * If we got here then we have to allocate an unmanaged one
254 dev->unmanagedTempAllocations++;
255 return YMALLOC(dev->nDataBytesPerChunk);
259 void yaffs_ReleaseTempBuffer(yaffs_Device *dev, __u8 *buffer,
266 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
267 if (dev->tempBuffer[i].buffer == buffer) {
268 dev->tempBuffer[i].line = 0;
274 /* assume it is an unmanaged one. */
275 T(YAFFS_TRACE_BUFFERS,
276 (TSTR("Releasing unmanaged temp buffer in line %d" TENDSTR),
279 dev->unmanagedTempDeallocations++;
285 * Determine if we have a managed buffer.
287 int yaffs_IsManagedTempBuffer(yaffs_Device *dev, const __u8 *buffer)
291 for (i = 0; i < YAFFS_N_TEMP_BUFFERS; i++) {
292 if (dev->tempBuffer[i].buffer == buffer)
296 for (i = 0; i < dev->param.nShortOpCaches; i++) {
297 if (dev->srCache[i].data == buffer)
301 if (buffer == dev->checkpointBuffer)
304 T(YAFFS_TRACE_ALWAYS,
305 (TSTR("yaffs: unmaged buffer detected.\n" TENDSTR)));
312 * Chunk bitmap manipulations
315 static Y_INLINE __u8 *yaffs_BlockBits(yaffs_Device *dev, int blk)
317 if (blk < dev->internalStartBlock || blk > dev->internalEndBlock) {
319 (TSTR("**>> yaffs: BlockBits block %d is not valid" TENDSTR),
323 return dev->chunkBits +
324 (dev->chunkBitmapStride * (blk - dev->internalStartBlock));
327 static Y_INLINE void yaffs_VerifyChunkBitId(yaffs_Device *dev, int blk, int chunk)
329 if (blk < dev->internalStartBlock || blk > dev->internalEndBlock ||
330 chunk < 0 || chunk >= dev->param.nChunksPerBlock) {
332 (TSTR("**>> yaffs: Chunk Id (%d:%d) invalid"TENDSTR),
338 static Y_INLINE void yaffs_ClearChunkBits(yaffs_Device *dev, int blk)
340 __u8 *blkBits = yaffs_BlockBits(dev, blk);
342 memset(blkBits, 0, dev->chunkBitmapStride);
345 static Y_INLINE void yaffs_ClearChunkBit(yaffs_Device *dev, int blk, int chunk)
347 __u8 *blkBits = yaffs_BlockBits(dev, blk);
349 yaffs_VerifyChunkBitId(dev, blk, chunk);
351 blkBits[chunk / 8] &= ~(1 << (chunk & 7));
354 static Y_INLINE void yaffs_SetChunkBit(yaffs_Device *dev, int blk, int chunk)
356 __u8 *blkBits = yaffs_BlockBits(dev, blk);
358 yaffs_VerifyChunkBitId(dev, blk, chunk);
360 blkBits[chunk / 8] |= (1 << (chunk & 7));
363 static Y_INLINE int yaffs_CheckChunkBit(yaffs_Device *dev, int blk, int chunk)
365 __u8 *blkBits = yaffs_BlockBits(dev, blk);
366 yaffs_VerifyChunkBitId(dev, blk, chunk);
368 return (blkBits[chunk / 8] & (1 << (chunk & 7))) ? 1 : 0;
371 static Y_INLINE int yaffs_StillSomeChunkBits(yaffs_Device *dev, int blk)
373 __u8 *blkBits = yaffs_BlockBits(dev, blk);
375 for (i = 0; i < dev->chunkBitmapStride; i++) {
383 static int yaffs_CountChunkBits(yaffs_Device *dev, int blk)
385 __u8 *blkBits = yaffs_BlockBits(dev, blk);
388 for (i = 0; i < dev->chunkBitmapStride; i++) {
405 static int yaffs_SkipVerification(yaffs_Device *dev)
408 return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY | YAFFS_TRACE_VERIFY_FULL));
411 static int yaffs_SkipFullVerification(yaffs_Device *dev)
414 return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY_FULL));
417 static int yaffs_SkipNANDVerification(yaffs_Device *dev)
420 return !(yaffs_traceMask & (YAFFS_TRACE_VERIFY_NAND));
423 static const char *blockStateName[] = {
436 static void yaffs_VerifyBlock(yaffs_Device *dev, yaffs_BlockInfo *bi, int n)
441 if (yaffs_SkipVerification(dev))
444 /* Report illegal runtime states */
445 if (bi->blockState >= YAFFS_NUMBER_OF_BLOCK_STATES)
446 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has undefined state %d"TENDSTR), n, bi->blockState));
448 switch (bi->blockState) {
449 case YAFFS_BLOCK_STATE_UNKNOWN:
450 case YAFFS_BLOCK_STATE_SCANNING:
451 case YAFFS_BLOCK_STATE_NEEDS_SCANNING:
452 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has bad run-state %s"TENDSTR),
453 n, blockStateName[bi->blockState]));
456 /* Check pages in use and soft deletions are legal */
458 actuallyUsed = bi->pagesInUse - bi->softDeletions;
460 if (bi->pagesInUse < 0 || bi->pagesInUse > dev->param.nChunksPerBlock ||
461 bi->softDeletions < 0 || bi->softDeletions > dev->param.nChunksPerBlock ||
462 actuallyUsed < 0 || actuallyUsed > dev->param.nChunksPerBlock)
463 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has illegal values pagesInUsed %d softDeletions %d"TENDSTR),
464 n, bi->pagesInUse, bi->softDeletions));
467 /* Check chunk bitmap legal */
468 inUse = yaffs_CountChunkBits(dev, n);
469 if (inUse != bi->pagesInUse)
470 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has inconsistent values pagesInUse %d counted chunk bits %d"TENDSTR),
471 n, bi->pagesInUse, inUse));
473 /* Check that the sequence number is valid.
474 * Ten million is legal, but is very unlikely
476 if (dev->param.isYaffs2 &&
477 (bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING || bi->blockState == YAFFS_BLOCK_STATE_FULL) &&
478 (bi->sequenceNumber < YAFFS_LOWEST_SEQUENCE_NUMBER || bi->sequenceNumber > 10000000))
479 T(YAFFS_TRACE_VERIFY, (TSTR("Block %d has suspect sequence number of %d"TENDSTR),
480 n, bi->sequenceNumber));
483 static void yaffs_VerifyCollectedBlock(yaffs_Device *dev, yaffs_BlockInfo *bi,
486 yaffs_VerifyBlock(dev, bi, n);
488 /* After collection the block should be in the erased state */
489 /* This will need to change if we do partial gc */
491 if (bi->blockState != YAFFS_BLOCK_STATE_COLLECTING &&
492 bi->blockState != YAFFS_BLOCK_STATE_EMPTY) {
493 T(YAFFS_TRACE_ERROR, (TSTR("Block %d is in state %d after gc, should be erased"TENDSTR),
498 static void yaffs_VerifyBlocks(yaffs_Device *dev)
501 int nBlocksPerState[YAFFS_NUMBER_OF_BLOCK_STATES];
502 int nIllegalBlockStates = 0;
504 if (yaffs_SkipVerification(dev))
507 memset(nBlocksPerState, 0, sizeof(nBlocksPerState));
509 for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
510 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, i);
511 yaffs_VerifyBlock(dev, bi, i);
513 if (bi->blockState < YAFFS_NUMBER_OF_BLOCK_STATES)
514 nBlocksPerState[bi->blockState]++;
516 nIllegalBlockStates++;
519 T(YAFFS_TRACE_VERIFY, (TSTR(""TENDSTR)));
520 T(YAFFS_TRACE_VERIFY, (TSTR("Block summary"TENDSTR)));
522 T(YAFFS_TRACE_VERIFY, (TSTR("%d blocks have illegal states"TENDSTR), nIllegalBlockStates));
523 if (nBlocksPerState[YAFFS_BLOCK_STATE_ALLOCATING] > 1)
524 T(YAFFS_TRACE_VERIFY, (TSTR("Too many allocating blocks"TENDSTR)));
526 for (i = 0; i < YAFFS_NUMBER_OF_BLOCK_STATES; i++)
527 T(YAFFS_TRACE_VERIFY,
528 (TSTR("%s %d blocks"TENDSTR),
529 blockStateName[i], nBlocksPerState[i]));
531 if (dev->blocksInCheckpoint != nBlocksPerState[YAFFS_BLOCK_STATE_CHECKPOINT])
532 T(YAFFS_TRACE_VERIFY,
533 (TSTR("Checkpoint block count wrong dev %d count %d"TENDSTR),
534 dev->blocksInCheckpoint, nBlocksPerState[YAFFS_BLOCK_STATE_CHECKPOINT]));
536 if (dev->nErasedBlocks != nBlocksPerState[YAFFS_BLOCK_STATE_EMPTY])
537 T(YAFFS_TRACE_VERIFY,
538 (TSTR("Erased block count wrong dev %d count %d"TENDSTR),
539 dev->nErasedBlocks, nBlocksPerState[YAFFS_BLOCK_STATE_EMPTY]));
541 if (nBlocksPerState[YAFFS_BLOCK_STATE_COLLECTING] > 1)
542 T(YAFFS_TRACE_VERIFY,
543 (TSTR("Too many collecting blocks %d (max is 1)"TENDSTR),
544 nBlocksPerState[YAFFS_BLOCK_STATE_COLLECTING]));
546 T(YAFFS_TRACE_VERIFY, (TSTR(""TENDSTR)));
551 * Verify the object header. oh must be valid, but obj and tags may be NULL in which
552 * case those tests will not be performed.
554 static void yaffs_VerifyObjectHeader(yaffs_Object *obj, yaffs_ObjectHeader *oh, yaffs_ExtendedTags *tags, int parentCheck)
556 if (obj && yaffs_SkipVerification(obj->myDev))
559 if (!(tags && obj && oh)) {
560 T(YAFFS_TRACE_VERIFY,
561 (TSTR("Verifying object header tags %p obj %p oh %p"TENDSTR),
566 if (oh->type <= YAFFS_OBJECT_TYPE_UNKNOWN ||
567 oh->type > YAFFS_OBJECT_TYPE_MAX)
568 T(YAFFS_TRACE_VERIFY,
569 (TSTR("Obj %d header type is illegal value 0x%x"TENDSTR),
570 tags->objectId, oh->type));
572 if (tags->objectId != obj->objectId)
573 T(YAFFS_TRACE_VERIFY,
574 (TSTR("Obj %d header mismatch objectId %d"TENDSTR),
575 tags->objectId, obj->objectId));
579 * Check that the object's parent ids match if parentCheck requested.
581 * Tests do not apply to the root object.
584 if (parentCheck && tags->objectId > 1 && !obj->parent)
585 T(YAFFS_TRACE_VERIFY,
586 (TSTR("Obj %d header mismatch parentId %d obj->parent is NULL"TENDSTR),
587 tags->objectId, oh->parentObjectId));
589 if (parentCheck && obj->parent &&
590 oh->parentObjectId != obj->parent->objectId &&
591 (oh->parentObjectId != YAFFS_OBJECTID_UNLINKED ||
592 obj->parent->objectId != YAFFS_OBJECTID_DELETED))
593 T(YAFFS_TRACE_VERIFY,
594 (TSTR("Obj %d header mismatch parentId %d parentObjectId %d"TENDSTR),
595 tags->objectId, oh->parentObjectId, obj->parent->objectId));
597 if (tags->objectId > 1 && oh->name[0] == 0) /* Null name */
598 T(YAFFS_TRACE_VERIFY,
599 (TSTR("Obj %d header name is NULL"TENDSTR),
602 if (tags->objectId > 1 && ((__u8)(oh->name[0])) == 0xff) /* Trashed name */
603 T(YAFFS_TRACE_VERIFY,
604 (TSTR("Obj %d header name is 0xFF"TENDSTR),
610 static int yaffs_VerifyTnodeWorker(yaffs_Object *obj, yaffs_Tnode *tn,
611 __u32 level, int chunkOffset)
614 yaffs_Device *dev = obj->myDev;
620 for (i = 0; i < YAFFS_NTNODES_INTERNAL && ok; i++) {
621 if (tn->internal[i]) {
622 ok = yaffs_VerifyTnodeWorker(obj,
625 (chunkOffset<<YAFFS_TNODES_INTERNAL_BITS) + i);
628 } else if (level == 0) {
629 yaffs_ExtendedTags tags;
630 __u32 objectId = obj->objectId;
632 chunkOffset <<= YAFFS_TNODES_LEVEL0_BITS;
634 for (i = 0; i < YAFFS_NTNODES_LEVEL0; i++) {
635 __u32 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
638 /* T(~0,(TSTR("verifying (%d:%d) %d"TENDSTR),tags.objectId,tags.chunkId,theChunk)); */
639 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL, &tags);
640 if (tags.objectId != objectId || tags.chunkId != chunkOffset) {
641 T(~0, (TSTR("Object %d chunkId %d NAND mismatch chunk %d tags (%d:%d)"TENDSTR),
642 objectId, chunkOffset, theChunk,
643 tags.objectId, tags.chunkId));
656 static void yaffs_VerifyFile(yaffs_Object *obj)
658 int requiredTallness;
664 yaffs_ExtendedTags tags;
671 if (yaffs_SkipVerification(obj->myDev))
675 objectId = obj->objectId;
677 /* Check file size is consistent with tnode depth */
678 lastChunk = obj->variant.fileVariant.fileSize / dev->nDataBytesPerChunk + 1;
679 x = lastChunk >> YAFFS_TNODES_LEVEL0_BITS;
680 requiredTallness = 0;
682 x >>= YAFFS_TNODES_INTERNAL_BITS;
686 actualTallness = obj->variant.fileVariant.topLevel;
688 /* Check that the chunks in the tnode tree are all correct.
689 * We do this by scanning through the tnode tree and
690 * checking the tags for every chunk match.
693 if (yaffs_SkipNANDVerification(dev))
696 for (i = 1; i <= lastChunk; i++) {
697 tn = yaffs_FindLevel0Tnode(dev, &obj->variant.fileVariant, i);
700 __u32 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
702 /* T(~0,(TSTR("verifying (%d:%d) %d"TENDSTR),objectId,i,theChunk)); */
703 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL, &tags);
704 if (tags.objectId != objectId || tags.chunkId != i) {
705 T(~0, (TSTR("Object %d chunkId %d NAND mismatch chunk %d tags (%d:%d)"TENDSTR),
706 objectId, i, theChunk,
707 tags.objectId, tags.chunkId));
715 static void yaffs_VerifyHardLink(yaffs_Object *obj)
717 if (obj && yaffs_SkipVerification(obj->myDev))
720 /* Verify sane equivalent object */
723 static void yaffs_VerifySymlink(yaffs_Object *obj)
725 if (obj && yaffs_SkipVerification(obj->myDev))
728 /* Verify symlink string */
731 static void yaffs_VerifySpecial(yaffs_Object *obj)
733 if (obj && yaffs_SkipVerification(obj->myDev))
737 static void yaffs_VerifyObject(yaffs_Object *obj)
746 __u32 chunkShouldNotBeDeleted;
752 if (obj->beingCreated)
757 if (yaffs_SkipVerification(dev))
760 /* Check sane object header chunk */
762 chunkMin = dev->internalStartBlock * dev->param.nChunksPerBlock;
763 chunkMax = (dev->internalEndBlock+1) * dev->param.nChunksPerBlock - 1;
765 chunkInRange = (((unsigned)(obj->hdrChunk)) >= chunkMin && ((unsigned)(obj->hdrChunk)) <= chunkMax);
766 chunkIdOk = chunkInRange || (obj->hdrChunk == 0);
767 chunkValid = chunkInRange &&
768 yaffs_CheckChunkBit(dev,
769 obj->hdrChunk / dev->param.nChunksPerBlock,
770 obj->hdrChunk % dev->param.nChunksPerBlock);
771 chunkShouldNotBeDeleted = chunkInRange && !chunkValid;
774 (!chunkIdOk || chunkShouldNotBeDeleted)) {
775 T(YAFFS_TRACE_VERIFY,
776 (TSTR("Obj %d has chunkId %d %s %s"TENDSTR),
777 obj->objectId, obj->hdrChunk,
778 chunkIdOk ? "" : ",out of range",
779 chunkShouldNotBeDeleted ? ",marked as deleted" : ""));
782 if (chunkValid && !yaffs_SkipNANDVerification(dev)) {
783 yaffs_ExtendedTags tags;
784 yaffs_ObjectHeader *oh;
785 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
787 oh = (yaffs_ObjectHeader *)buffer;
789 yaffs_ReadChunkWithTagsFromNAND(dev, obj->hdrChunk, buffer,
792 yaffs_VerifyObjectHeader(obj, oh, &tags, 1);
794 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
797 /* Verify it has a parent */
798 if (obj && !obj->fake &&
799 (!obj->parent || obj->parent->myDev != dev)) {
800 T(YAFFS_TRACE_VERIFY,
801 (TSTR("Obj %d has parent pointer %p which does not look like an object"TENDSTR),
802 obj->objectId, obj->parent));
805 /* Verify parent is a directory */
806 if (obj->parent && obj->parent->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
807 T(YAFFS_TRACE_VERIFY,
808 (TSTR("Obj %d's parent is not a directory (type %d)"TENDSTR),
809 obj->objectId, obj->parent->variantType));
812 switch (obj->variantType) {
813 case YAFFS_OBJECT_TYPE_FILE:
814 yaffs_VerifyFile(obj);
816 case YAFFS_OBJECT_TYPE_SYMLINK:
817 yaffs_VerifySymlink(obj);
819 case YAFFS_OBJECT_TYPE_DIRECTORY:
820 yaffs_VerifyDirectory(obj);
822 case YAFFS_OBJECT_TYPE_HARDLINK:
823 yaffs_VerifyHardLink(obj);
825 case YAFFS_OBJECT_TYPE_SPECIAL:
826 yaffs_VerifySpecial(obj);
828 case YAFFS_OBJECT_TYPE_UNKNOWN:
830 T(YAFFS_TRACE_VERIFY,
831 (TSTR("Obj %d has illegaltype %d"TENDSTR),
832 obj->objectId, obj->variantType));
837 static void yaffs_VerifyObjects(yaffs_Device *dev)
841 struct ylist_head *lh;
843 if (yaffs_SkipVerification(dev))
846 /* Iterate through the objects in each hash entry */
848 for (i = 0; i < YAFFS_NOBJECT_BUCKETS; i++) {
849 ylist_for_each(lh, &dev->objectBucket[i].list) {
851 obj = ylist_entry(lh, yaffs_Object, hashLink);
852 yaffs_VerifyObject(obj);
860 * Simple hash function. Needs to have a reasonable spread
863 static Y_INLINE int yaffs_HashFunction(int n)
866 return n % YAFFS_NOBJECT_BUCKETS;
870 * Access functions to useful fake objects.
871 * Note that root might have a presence in NAND if permissions are set.
874 yaffs_Object *yaffs_Root(yaffs_Device *dev)
879 yaffs_Object *yaffs_LostNFound(yaffs_Device *dev)
881 return dev->lostNFoundDir;
886 * Erased NAND checking functions
889 int yaffs_CheckFF(__u8 *buffer, int nBytes)
891 /* Horrible, slow implementation */
900 static int yaffs_CheckChunkErased(struct yaffs_DeviceStruct *dev,
903 int retval = YAFFS_OK;
904 __u8 *data = yaffs_GetTempBuffer(dev, __LINE__);
905 yaffs_ExtendedTags tags;
908 result = yaffs_ReadChunkWithTagsFromNAND(dev, chunkInNAND, data, &tags);
910 if (tags.eccResult > YAFFS_ECC_RESULT_NO_ERROR)
913 if (!yaffs_CheckFF(data, dev->nDataBytesPerChunk) || tags.chunkUsed) {
914 T(YAFFS_TRACE_NANDACCESS,
915 (TSTR("Chunk %d not erased" TENDSTR), chunkInNAND));
919 yaffs_ReleaseTempBuffer(dev, data, __LINE__);
926 static int yaffs_VerifyChunkWritten(yaffs_Device *dev,
929 yaffs_ExtendedTags *tags)
931 int retval = YAFFS_OK;
932 yaffs_ExtendedTags tempTags;
933 __u8 *buffer = yaffs_GetTempBuffer(dev,__LINE__);
936 result = yaffs_ReadChunkWithTagsFromNAND(dev,chunkInNAND,buffer,&tempTags);
937 if(memcmp(buffer,data,dev->nDataBytesPerChunk) ||
938 tempTags.objectId != tags->objectId ||
939 tempTags.chunkId != tags->chunkId ||
940 tempTags.byteCount != tags->byteCount)
943 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
948 static int yaffs_WriteNewChunkWithTagsToNAND(struct yaffs_DeviceStruct *dev,
950 yaffs_ExtendedTags *tags,
957 yaffs_InvalidateCheckpoint(dev);
960 yaffs_BlockInfo *bi = 0;
963 chunk = yaffs_AllocateChunk(dev, useReserve, &bi);
969 /* First check this chunk is erased, if it needs
970 * checking. The checking policy (unless forced
971 * always on) is as follows:
973 * Check the first page we try to write in a block.
974 * If the check passes then we don't need to check any
975 * more. If the check fails, we check again...
976 * If the block has been erased, we don't need to check.
978 * However, if the block has been prioritised for gc,
979 * then we think there might be something odd about
980 * this block and stop using it.
982 * Rationale: We should only ever see chunks that have
983 * not been erased if there was a partially written
984 * chunk due to power loss. This checking policy should
985 * catch that case with very few checks and thus save a
986 * lot of checks that are most likely not needed.
989 * If an erase check fails or the write fails we skip the
993 /* let's give it a try */
996 #ifdef CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED
997 bi->skipErasedCheck = 0;
999 if (!bi->skipErasedCheck) {
1000 erasedOk = yaffs_CheckChunkErased(dev, chunk);
1001 if (erasedOk != YAFFS_OK) {
1002 T(YAFFS_TRACE_ERROR,
1003 (TSTR("**>> yaffs chunk %d was not erased"
1006 /* If not erased, delete this one,
1007 * skip rest of block and
1008 * try another chunk */
1009 yaffs_DeleteChunk(dev,chunk,1,__LINE__);
1010 yaffs_SkipRestOfBlock(dev);
1015 writeOk = yaffs_WriteChunkWithTagsToNAND(dev, chunk,
1018 if(!bi->skipErasedCheck)
1019 writeOk = yaffs_VerifyChunkWritten(dev, chunk, data, tags);
1021 if (writeOk != YAFFS_OK) {
1022 /* Clean up aborted write, skip to next block and
1023 * try another chunk */
1024 yaffs_HandleWriteChunkError(dev, chunk, erasedOk);
1028 bi->skipErasedCheck = 1;
1030 /* Copy the data into the robustification buffer */
1031 yaffs_HandleWriteChunkOk(dev, chunk, data, tags);
1033 } while (writeOk != YAFFS_OK &&
1034 (yaffs_wr_attempts <= 0 || attempts <= yaffs_wr_attempts));
1040 T(YAFFS_TRACE_ERROR,
1041 (TSTR("**>> yaffs write required %d attempts" TENDSTR),
1044 dev->nRetriedWrites += (attempts - 1);
1052 * Oldest Dirty Sequence Number handling.
1055 /* yaffs_CalcOldestDirtySequence()
1056 * yaffs_FindOldestDirtySequence()
1057 * Calculate the oldest dirty sequence number if we don't know it.
1059 static int yaffs_CalcOldestDirtySequence(yaffs_Device *dev)
1063 yaffs_BlockInfo *b = 0;
1065 if(!dev->param.isYaffs2)
1068 /* Find the oldest dirty sequence number. */
1069 seq = dev->sequenceNumber;
1070 for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
1071 b = yaffs_GetBlockInfo(dev, i);
1072 if (b->blockState == YAFFS_BLOCK_STATE_FULL &&
1073 (b->pagesInUse - b->softDeletions) < dev->param.nChunksPerBlock &&
1074 b->sequenceNumber < seq)
1075 seq = b->sequenceNumber;
1081 static void yaffs_FindOldestDirtySequence(yaffs_Device *dev)
1083 if(dev->param.isYaffs2 && !dev->oldestDirtySequence)
1084 dev->oldestDirtySequence =
1085 yaffs_CalcOldestDirtySequence(dev);
1088 if(!yaffs_SkipVerification(dev) &&
1089 dev->oldestDirtySequence != yaffs_CalcOldestDirtySequence(dev))
1096 * yaffs_ClearOldestDirtySequence()
1097 * Called when a block is erased or marked bad. (ie. when its sequenceNumber
1098 * becomes invalid). If the value matches the oldest then we clear
1099 * dev->oldestDirtySequence to force its recomputation.
1101 static void yaffs_ClearOldestDirtySequence(yaffs_Device *dev, yaffs_BlockInfo *bi)
1104 if(!dev->param.isYaffs2)
1107 if(!bi || bi->sequenceNumber == dev->oldestDirtySequence)
1108 dev->oldestDirtySequence = 0;
1112 * yaffs_UpdateOldestDirtySequence()
1113 * Update the oldest dirty sequence number whenever we dirty a block.
1114 * Only do this if the oldestDirtySequence is actually being tracked.
1116 static void yaffs_UpdateOldestDirtySequence(yaffs_Device *dev, yaffs_BlockInfo *bi)
1118 if(dev->param.isYaffs2 && dev->oldestDirtySequence){
1119 if(dev->oldestDirtySequence > bi->sequenceNumber)
1120 dev->oldestDirtySequence = bi->sequenceNumber;
1125 * Block retiring for handling a broken block.
1128 static void yaffs_RetireBlock(yaffs_Device *dev, int blockInNAND)
1130 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
1132 yaffs_InvalidateCheckpoint(dev);
1134 yaffs_ClearOldestDirtySequence(dev,bi);
1136 if (yaffs_MarkBlockBad(dev, blockInNAND) != YAFFS_OK) {
1137 if (yaffs_EraseBlockInNAND(dev, blockInNAND) != YAFFS_OK) {
1138 T(YAFFS_TRACE_ALWAYS, (TSTR(
1139 "yaffs: Failed to mark bad and erase block %d"
1140 TENDSTR), blockInNAND));
1142 yaffs_ExtendedTags tags;
1143 int chunkId = blockInNAND * dev->param.nChunksPerBlock;
1145 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
1147 memset(buffer, 0xff, dev->nDataBytesPerChunk);
1148 yaffs_InitialiseTags(&tags);
1149 tags.sequenceNumber = YAFFS_SEQUENCE_BAD_BLOCK;
1150 if (dev->param.writeChunkWithTagsToNAND(dev, chunkId -
1151 dev->chunkOffset, buffer, &tags) != YAFFS_OK)
1152 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Failed to "
1153 TCONT("write bad block marker to block %d")
1154 TENDSTR), blockInNAND));
1156 yaffs_ReleaseTempBuffer(dev, buffer, __LINE__);
1160 bi->blockState = YAFFS_BLOCK_STATE_DEAD;
1161 bi->gcPrioritise = 0;
1162 bi->needsRetiring = 0;
1164 dev->nRetiredBlocks++;
1168 * Functions for robustisizing TODO
1172 static void yaffs_HandleWriteChunkOk(yaffs_Device *dev, int chunkInNAND,
1174 const yaffs_ExtendedTags *tags)
1177 chunkInNAND=chunkInNAND;
1182 static void yaffs_HandleUpdateChunk(yaffs_Device *dev, int chunkInNAND,
1183 const yaffs_ExtendedTags *tags)
1186 chunkInNAND=chunkInNAND;
1190 void yaffs_HandleChunkError(yaffs_Device *dev, yaffs_BlockInfo *bi)
1192 if (!bi->gcPrioritise) {
1193 bi->gcPrioritise = 1;
1194 dev->hasPendingPrioritisedGCs = 1;
1195 bi->chunkErrorStrikes++;
1197 if (bi->chunkErrorStrikes > 3) {
1198 bi->needsRetiring = 1; /* Too many stikes, so retire this */
1199 T(YAFFS_TRACE_ALWAYS, (TSTR("yaffs: Block struck out" TENDSTR)));
1205 static void yaffs_HandleWriteChunkError(yaffs_Device *dev, int chunkInNAND,
1208 int blockInNAND = chunkInNAND / dev->param.nChunksPerBlock;
1209 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockInNAND);
1211 yaffs_HandleChunkError(dev, bi);
1214 /* Was an actual write failure, so mark the block for retirement */
1215 bi->needsRetiring = 1;
1216 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
1217 (TSTR("**>> Block %d needs retiring" TENDSTR), blockInNAND));
1220 /* Delete the chunk */
1221 yaffs_DeleteChunk(dev, chunkInNAND, 1, __LINE__);
1222 yaffs_SkipRestOfBlock(dev);
1226 /*---------------- Name handling functions ------------*/
1228 static __u16 yaffs_CalcNameSum(const YCHAR *name)
1233 const YUCHAR *bname = (const YUCHAR *) name;
1235 while ((*bname) && (i < (YAFFS_MAX_NAME_LENGTH/2))) {
1237 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
1238 sum += yaffs_toupper(*bname) * i;
1240 sum += (*bname) * i;
1249 static void yaffs_SetObjectName(yaffs_Object *obj, const YCHAR *name)
1251 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
1252 memset(obj->shortName, 0, sizeof(YCHAR) * (YAFFS_SHORT_NAME_LENGTH+1));
1253 if (name && yaffs_strnlen(name,YAFFS_SHORT_NAME_LENGTH+1) <= YAFFS_SHORT_NAME_LENGTH)
1254 yaffs_strcpy(obj->shortName, name);
1256 obj->shortName[0] = _Y('\0');
1258 obj->sum = yaffs_CalcNameSum(name);
1261 /*-------------------- TNODES -------------------
1263 * List of spare tnodes
1264 * The list is hooked together using the first pointer
1268 /* yaffs_CreateTnodes creates a bunch more tnodes and
1269 * adds them to the tnode free list.
1270 * Don't use this function directly
1272 static Y_INLINE int yaffs_CalcTnodeSize(yaffs_Device *dev)
1275 /* Calculate the tnode size in bytes for variable width tnode support.
1276 * Must be a multiple of 32-bits */
1277 tnodeSize = (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8;
1279 if (tnodeSize < sizeof(yaffs_Tnode))
1280 tnodeSize = sizeof(yaffs_Tnode);
1284 static int yaffs_CreateTnodes(yaffs_Device *dev, int nTnodes)
1287 int tnodeSize = yaffs_CalcTnodeSize(dev);
1288 yaffs_Tnode *newTnodes;
1292 yaffs_TnodeList *tnl;
1298 /* make these things */
1300 newTnodes = YMALLOC(nTnodes * tnodeSize);
1301 mem = (__u8 *)newTnodes;
1304 T(YAFFS_TRACE_ERROR,
1305 (TSTR("yaffs: Could not allocate Tnodes" TENDSTR)));
1309 /* Hook them into the free list */
1311 for (i = 0; i < nTnodes - 1; i++) {
1312 newTnodes[i].internal[0] = &newTnodes[i + 1];
1313 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1314 newTnodes[i].internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1318 newTnodes[nTnodes - 1].internal[0] = dev->freeTnodes;
1319 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1320 newTnodes[nTnodes - 1].internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1322 dev->freeTnodes = newTnodes;
1324 /* New hookup for wide tnodes */
1325 for (i = 0; i < nTnodes - 1; i++) {
1326 curr = (yaffs_Tnode *) &mem[i * tnodeSize];
1327 next = (yaffs_Tnode *) &mem[(i+1) * tnodeSize];
1328 curr->internal[0] = next;
1331 curr = (yaffs_Tnode *) &mem[(nTnodes - 1) * tnodeSize];
1332 curr->internal[0] = dev->freeTnodes;
1333 dev->freeTnodes = (yaffs_Tnode *)mem;
1338 dev->nFreeTnodes += nTnodes;
1339 dev->nTnodesCreated += nTnodes;
1341 /* Now add this bunch of tnodes to a list for freeing up.
1342 * NB If we can't add this to the management list it isn't fatal
1343 * but it just means we can't free this bunch of tnodes later.
1346 tnl = YMALLOC(sizeof(yaffs_TnodeList));
1348 T(YAFFS_TRACE_ERROR,
1350 ("yaffs: Could not add tnodes to management list" TENDSTR)));
1353 tnl->tnodes = newTnodes;
1354 tnl->next = dev->allocatedTnodeList;
1355 dev->allocatedTnodeList = tnl;
1358 T(YAFFS_TRACE_ALLOCATE, (TSTR("yaffs: Tnodes added" TENDSTR)));
1363 /* GetTnode gets us a clean tnode. Tries to make allocate more if we run out */
1365 static yaffs_Tnode *yaffs_GetTnodeRaw(yaffs_Device *dev)
1367 yaffs_Tnode *tn = NULL;
1369 #ifdef CONFIG_YAFFS_VALGRIND_TEST
1370 tn = YMALLOC(yaffs_CalcTnodeSize(dev));
1372 dev->nTnodesCreated++;
1374 /* If there are none left make more */
1375 if (!dev->freeTnodes)
1376 yaffs_CreateTnodes(dev, YAFFS_ALLOCATION_NTNODES);
1378 if (dev->freeTnodes) {
1379 tn = dev->freeTnodes;
1380 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1381 if (tn->internal[YAFFS_NTNODES_INTERNAL] != (void *)1) {
1382 /* Hoosterman, this thing looks like it isn't in the list */
1383 T(YAFFS_TRACE_ALWAYS,
1384 (TSTR("yaffs: Tnode list bug 1" TENDSTR)));
1387 dev->freeTnodes = dev->freeTnodes->internal[0];
1391 dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1396 static yaffs_Tnode *yaffs_GetTnode(yaffs_Device *dev)
1398 yaffs_Tnode *tn = yaffs_GetTnodeRaw(dev);
1399 int tnodeSize = yaffs_CalcTnodeSize(dev);
1402 memset(tn, 0, tnodeSize);
1407 /* FreeTnode frees up a tnode and puts it back on the free list */
1408 static void yaffs_FreeTnode(yaffs_Device *dev, yaffs_Tnode *tn)
1411 #ifdef CONFIG_YAFFS_VALGRIND_TEST
1413 dev->nTnodesCreated--;
1415 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
1416 if (tn->internal[YAFFS_NTNODES_INTERNAL] != 0) {
1417 /* Hoosterman, this thing looks like it is already in the list */
1418 T(YAFFS_TRACE_ALWAYS,
1419 (TSTR("yaffs: Tnode list bug 2" TENDSTR)));
1421 tn->internal[YAFFS_NTNODES_INTERNAL] = (void *)1;
1423 tn->internal[0] = dev->freeTnodes;
1424 dev->freeTnodes = tn;
1428 dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
1431 static void yaffs_DeinitialiseTnodes(yaffs_Device *dev)
1433 /* Free the list of allocated tnodes */
1434 yaffs_TnodeList *tmp;
1436 while (dev->allocatedTnodeList) {
1437 tmp = dev->allocatedTnodeList->next;
1439 YFREE(dev->allocatedTnodeList->tnodes);
1440 YFREE(dev->allocatedTnodeList);
1441 dev->allocatedTnodeList = tmp;
1445 dev->freeTnodes = NULL;
1446 dev->nFreeTnodes = 0;
1447 dev->nTnodesCreated = 0;
1450 static void yaffs_InitialiseTnodes(yaffs_Device *dev)
1452 dev->allocatedTnodeList = NULL;
1453 dev->freeTnodes = NULL;
1454 dev->nFreeTnodes = 0;
1455 dev->nTnodesCreated = 0;
1459 void yaffs_LoadLevel0Tnode(yaffs_Device *dev, yaffs_Tnode *tn, unsigned pos,
1462 __u32 *map = (__u32 *)tn;
1468 pos &= YAFFS_TNODES_LEVEL0_MASK;
1469 val >>= dev->chunkGroupBits;
1471 bitInMap = pos * dev->tnodeWidth;
1472 wordInMap = bitInMap / 32;
1473 bitInWord = bitInMap & (32 - 1);
1475 mask = dev->tnodeMask << bitInWord;
1477 map[wordInMap] &= ~mask;
1478 map[wordInMap] |= (mask & (val << bitInWord));
1480 if (dev->tnodeWidth > (32 - bitInWord)) {
1481 bitInWord = (32 - bitInWord);
1483 mask = dev->tnodeMask >> (/*dev->tnodeWidth -*/ bitInWord);
1484 map[wordInMap] &= ~mask;
1485 map[wordInMap] |= (mask & (val >> bitInWord));
1489 static __u32 yaffs_GetChunkGroupBase(yaffs_Device *dev, yaffs_Tnode *tn,
1492 __u32 *map = (__u32 *)tn;
1498 pos &= YAFFS_TNODES_LEVEL0_MASK;
1500 bitInMap = pos * dev->tnodeWidth;
1501 wordInMap = bitInMap / 32;
1502 bitInWord = bitInMap & (32 - 1);
1504 val = map[wordInMap] >> bitInWord;
1506 if (dev->tnodeWidth > (32 - bitInWord)) {
1507 bitInWord = (32 - bitInWord);
1509 val |= (map[wordInMap] << bitInWord);
1512 val &= dev->tnodeMask;
1513 val <<= dev->chunkGroupBits;
1518 /* ------------------- End of individual tnode manipulation -----------------*/
1520 /* ---------Functions to manipulate the look-up tree (made up of tnodes) ------
1521 * The look up tree is represented by the top tnode and the number of topLevel
1522 * in the tree. 0 means only the level 0 tnode is in the tree.
1525 /* FindLevel0Tnode finds the level 0 tnode, if one exists. */
1526 static yaffs_Tnode *yaffs_FindLevel0Tnode(yaffs_Device *dev,
1527 yaffs_FileStructure *fStruct,
1530 yaffs_Tnode *tn = fStruct->top;
1532 int requiredTallness;
1533 int level = fStruct->topLevel;
1537 /* Check sane level and chunk Id */
1538 if (level < 0 || level > YAFFS_TNODES_MAX_LEVEL)
1541 if (chunkId > YAFFS_MAX_CHUNK_ID)
1544 /* First check we're tall enough (ie enough topLevel) */
1546 i = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
1547 requiredTallness = 0;
1549 i >>= YAFFS_TNODES_INTERNAL_BITS;
1553 if (requiredTallness > fStruct->topLevel)
1554 return NULL; /* Not tall enough, so we can't find it */
1556 /* Traverse down to level 0 */
1557 while (level > 0 && tn) {
1558 tn = tn->internal[(chunkId >>
1559 (YAFFS_TNODES_LEVEL0_BITS +
1561 YAFFS_TNODES_INTERNAL_BITS)) &
1562 YAFFS_TNODES_INTERNAL_MASK];
1569 /* AddOrFindLevel0Tnode finds the level 0 tnode if it exists, otherwise first expands the tree.
1570 * This happens in two steps:
1571 * 1. If the tree isn't tall enough, then make it taller.
1572 * 2. Scan down the tree towards the level 0 tnode adding tnodes if required.
1574 * Used when modifying the tree.
1576 * If the tn argument is NULL, then a fresh tnode will be added otherwise the specified tn will
1577 * be plugged into the ttree.
1580 static yaffs_Tnode *yaffs_AddOrFindLevel0Tnode(yaffs_Device *dev,
1581 yaffs_FileStructure *fStruct,
1583 yaffs_Tnode *passedTn)
1585 int requiredTallness;
1593 /* Check sane level and page Id */
1594 if (fStruct->topLevel < 0 || fStruct->topLevel > YAFFS_TNODES_MAX_LEVEL)
1597 if (chunkId > YAFFS_MAX_CHUNK_ID)
1600 /* First check we're tall enough (ie enough topLevel) */
1602 x = chunkId >> YAFFS_TNODES_LEVEL0_BITS;
1603 requiredTallness = 0;
1605 x >>= YAFFS_TNODES_INTERNAL_BITS;
1610 if (requiredTallness > fStruct->topLevel) {
1611 /* Not tall enough, gotta make the tree taller */
1612 for (i = fStruct->topLevel; i < requiredTallness; i++) {
1614 tn = yaffs_GetTnode(dev);
1617 tn->internal[0] = fStruct->top;
1619 fStruct->topLevel++;
1621 T(YAFFS_TRACE_ERROR,
1622 (TSTR("yaffs: no more tnodes" TENDSTR)));
1628 /* Traverse down to level 0, adding anything we need */
1630 l = fStruct->topLevel;
1634 while (l > 0 && tn) {
1636 (YAFFS_TNODES_LEVEL0_BITS +
1637 (l - 1) * YAFFS_TNODES_INTERNAL_BITS)) &
1638 YAFFS_TNODES_INTERNAL_MASK;
1641 if ((l > 1) && !tn->internal[x]) {
1642 /* Add missing non-level-zero tnode */
1643 tn->internal[x] = yaffs_GetTnode(dev);
1644 if(!tn->internal[x])
1646 } else if (l == 1) {
1647 /* Looking from level 1 at level 0 */
1649 /* If we already have one, then release it.*/
1650 if (tn->internal[x])
1651 yaffs_FreeTnode(dev, tn->internal[x]);
1652 tn->internal[x] = passedTn;
1654 } else if (!tn->internal[x]) {
1655 /* Don't have one, none passed in */
1656 tn->internal[x] = yaffs_GetTnode(dev);
1657 if(!tn->internal[x])
1662 tn = tn->internal[x];
1666 /* top is level 0 */
1668 memcpy(tn, passedTn, (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8);
1669 yaffs_FreeTnode(dev, passedTn);
1676 static int yaffs_FindChunkInGroup(yaffs_Device *dev, int theChunk,
1677 yaffs_ExtendedTags *tags, int objectId,
1682 for (j = 0; theChunk && j < dev->chunkGroupSize; j++) {
1683 if (yaffs_CheckChunkBit(dev, theChunk / dev->param.nChunksPerBlock,
1684 theChunk % dev->param.nChunksPerBlock)) {
1686 if(dev->chunkGroupSize == 1)
1689 yaffs_ReadChunkWithTagsFromNAND(dev, theChunk, NULL,
1691 if (yaffs_TagsMatch(tags, objectId, chunkInInode)) {
1703 /* DeleteWorker scans backwards through the tnode tree and deletes all the
1704 * chunks and tnodes in the file
1705 * Returns 1 if the tree was deleted.
1706 * Returns 0 if it stopped early due to hitting the limit and the delete is incomplete.
1709 static int yaffs_DeleteWorker(yaffs_Object *in, yaffs_Tnode *tn, __u32 level,
1710 int chunkOffset, int *limit)
1715 yaffs_ExtendedTags tags;
1717 yaffs_Device *dev = in->myDev;
1723 for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
1725 if (tn->internal[i]) {
1726 if (limit && (*limit) < 0) {
1730 yaffs_DeleteWorker(in,
1738 YAFFS_TNODES_INTERNAL_BITS)
1743 yaffs_FreeTnode(dev,
1746 tn->internal[i] = NULL;
1750 return (allDone) ? 1 : 0;
1751 } else if (level == 0) {
1754 for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0 && !hitLimit;
1756 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
1759 chunkInInode = (chunkOffset <<
1760 YAFFS_TNODES_LEVEL0_BITS) + i;
1763 yaffs_FindChunkInGroup(dev,
1769 if (foundChunk > 0) {
1770 yaffs_DeleteChunk(dev,
1775 *limit = *limit - 1;
1782 yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1786 return (i < 0) ? 1 : 0;
1796 static void yaffs_SoftDeleteChunk(yaffs_Device *dev, int chunk)
1798 yaffs_BlockInfo *theBlock;
1800 T(YAFFS_TRACE_DELETION, (TSTR("soft delete chunk %d" TENDSTR), chunk));
1802 theBlock = yaffs_GetBlockInfo(dev, chunk / dev->param.nChunksPerBlock);
1804 theBlock->softDeletions++;
1806 yaffs_UpdateOldestDirtySequence(dev,theBlock);
1810 /* SoftDeleteWorker scans backwards through the tnode tree and soft deletes all the chunks in the file.
1811 * All soft deleting does is increment the block's softdelete count and pulls the chunk out
1813 * Thus, essentially this is the same as DeleteWorker except that the chunks are soft deleted.
1816 static int yaffs_SoftDeleteWorker(yaffs_Object *in, yaffs_Tnode *tn,
1817 __u32 level, int chunkOffset)
1822 yaffs_Device *dev = in->myDev;
1827 for (i = YAFFS_NTNODES_INTERNAL - 1; allDone && i >= 0;
1829 if (tn->internal[i]) {
1831 yaffs_SoftDeleteWorker(in,
1837 YAFFS_TNODES_INTERNAL_BITS)
1840 yaffs_FreeTnode(dev,
1843 tn->internal[i] = NULL;
1845 /* Hoosterman... how could this happen? */
1849 return (allDone) ? 1 : 0;
1850 } else if (level == 0) {
1852 for (i = YAFFS_NTNODES_LEVEL0 - 1; i >= 0; i--) {
1853 theChunk = yaffs_GetChunkGroupBase(dev, tn, i);
1855 /* Note this does not find the real chunk, only the chunk group.
1856 * We make an assumption that a chunk group is not larger than
1859 yaffs_SoftDeleteChunk(dev, theChunk);
1860 yaffs_LoadLevel0Tnode(dev, tn, i, 0);
1874 static void yaffs_SoftDeleteFile(yaffs_Object *obj)
1877 obj->variantType == YAFFS_OBJECT_TYPE_FILE && !obj->softDeleted) {
1878 if (obj->nDataChunks <= 0) {
1879 /* Empty file with no duplicate object headers, just delete it immediately */
1880 yaffs_FreeTnode(obj->myDev,
1881 obj->variant.fileVariant.top);
1882 obj->variant.fileVariant.top = NULL;
1883 T(YAFFS_TRACE_TRACING,
1884 (TSTR("yaffs: Deleting empty file %d" TENDSTR),
1886 yaffs_DoGenericObjectDeletion(obj);
1888 yaffs_SoftDeleteWorker(obj,
1889 obj->variant.fileVariant.top,
1890 obj->variant.fileVariant.
1892 obj->softDeleted = 1;
1897 /* Pruning removes any part of the file structure tree that is beyond the
1898 * bounds of the file (ie that does not point to chunks).
1900 * A file should only get pruned when its size is reduced.
1902 * Before pruning, the chunks must be pulled from the tree and the
1903 * level 0 tnode entries must be zeroed out.
1904 * Could also use this for file deletion, but that's probably better handled
1905 * by a special case.
1907 * This function is recursive. For levels > 0 the function is called again on
1908 * any sub-tree. For level == 0 we just check if the sub-tree has data.
1909 * If there is no data in a subtree then it is pruned.
1912 static yaffs_Tnode *yaffs_PruneWorker(yaffs_Device *dev, yaffs_Tnode *tn,
1913 __u32 level, int del0)
1922 for (i = 0; i < YAFFS_NTNODES_INTERNAL; i++) {
1923 if (tn->internal[i]) {
1925 yaffs_PruneWorker(dev, tn->internal[i],
1927 (i == 0) ? del0 : 1);
1930 if (tn->internal[i])
1934 int tnodeSize_u32 = yaffs_CalcTnodeSize(dev)/sizeof(__u32);
1935 __u32 *map = (__u32 *)tn;
1937 for(i = 0; !hasData && i < tnodeSize_u32; i++){
1943 if (hasData == 0 && del0) {
1944 /* Free and return NULL */
1946 yaffs_FreeTnode(dev, tn);
1956 static int yaffs_PruneFileStructure(yaffs_Device *dev,
1957 yaffs_FileStructure *fStruct)
1964 if (fStruct->topLevel > 0) {
1966 yaffs_PruneWorker(dev, fStruct->top, fStruct->topLevel, 0);
1968 /* Now we have a tree with all the non-zero branches NULL but the height
1969 * is the same as it was.
1970 * Let's see if we can trim internal tnodes to shorten the tree.
1971 * We can do this if only the 0th element in the tnode is in use
1972 * (ie all the non-zero are NULL)
1975 while (fStruct->topLevel && !done) {
1979 for (i = 1; i < YAFFS_NTNODES_INTERNAL; i++) {
1980 if (tn->internal[i])
1985 fStruct->top = tn->internal[0];
1986 fStruct->topLevel--;
1987 yaffs_FreeTnode(dev, tn);
1997 /*-------------------- End of File Structure functions.-------------------*/
1999 /* yaffs_CreateFreeObjects creates a bunch more objects and
2000 * adds them to the object free list.
2002 static int yaffs_CreateFreeObjects(yaffs_Device *dev, int nObjects)
2005 yaffs_Object *newObjects;
2006 yaffs_ObjectList *list;
2011 /* make these things */
2012 newObjects = YMALLOC(nObjects * sizeof(yaffs_Object));
2013 list = YMALLOC(sizeof(yaffs_ObjectList));
2015 if (!newObjects || !list) {
2024 T(YAFFS_TRACE_ALLOCATE,
2025 (TSTR("yaffs: Could not allocate more objects" TENDSTR)));
2029 /* Hook them into the free list */
2030 for (i = 0; i < nObjects - 1; i++) {
2031 newObjects[i].siblings.next =
2032 (struct ylist_head *)(&newObjects[i + 1]);
2035 newObjects[nObjects - 1].siblings.next = (void *)dev->freeObjects;
2036 dev->freeObjects = newObjects;
2037 dev->nFreeObjects += nObjects;
2038 dev->nObjectsCreated += nObjects;
2040 /* Now add this bunch of Objects to a list for freeing up. */
2042 list->objects = newObjects;
2043 list->next = dev->allocatedObjectList;
2044 dev->allocatedObjectList = list;
2050 /* AllocateEmptyObject gets us a clean Object. Tries to make allocate more if we run out */
2051 static yaffs_Object *yaffs_AllocateEmptyObject(yaffs_Device *dev)
2053 yaffs_Object *tn = NULL;
2055 #ifdef CONFIG_YAFFS_VALGRIND_TEST
2056 tn = YMALLOC(sizeof(yaffs_Object));
2058 dev->nObjectsCreated++;
2060 /* If there are none left make more */
2061 if (!dev->freeObjects)
2062 yaffs_CreateFreeObjects(dev, YAFFS_ALLOCATION_NOBJECTS);
2064 if (dev->freeObjects) {
2065 tn = dev->freeObjects;
2067 (yaffs_Object *) (dev->freeObjects->siblings.next);
2068 dev->nFreeObjects--;
2072 /* Now sweeten it up... */
2074 memset(tn, 0, sizeof(yaffs_Object));
2075 tn->beingCreated = 1;
2079 tn->variantType = YAFFS_OBJECT_TYPE_UNKNOWN;
2080 YINIT_LIST_HEAD(&(tn->hardLinks));
2081 YINIT_LIST_HEAD(&(tn->hashLink));
2082 YINIT_LIST_HEAD(&tn->siblings);
2085 /* Now make the directory sane */
2087 tn->parent = dev->rootDir;
2088 ylist_add(&(tn->siblings), &dev->rootDir->variant.directoryVariant.children);
2091 /* Add it to the lost and found directory.
2092 * NB Can't put root or lostNFound in lostNFound so
2093 * check if lostNFound exists first
2095 if (dev->lostNFoundDir)
2096 yaffs_AddObjectToDirectory(dev->lostNFoundDir, tn);
2098 tn->beingCreated = 0;
2101 dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
2106 static yaffs_Object *yaffs_CreateFakeDirectory(yaffs_Device *dev, int number,
2111 yaffs_CreateNewObject(dev, number, YAFFS_OBJECT_TYPE_DIRECTORY);
2113 obj->fake = 1; /* it is fake so it might have no NAND presence... */
2114 obj->renameAllowed = 0; /* ... and we're not allowed to rename it... */
2115 obj->unlinkAllowed = 0; /* ... or unlink it */
2118 obj->yst_mode = mode;
2120 obj->hdrChunk = 0; /* Not a valid chunk. */
2127 static void yaffs_UnhashObject(yaffs_Object *tn)
2130 yaffs_Device *dev = tn->myDev;
2132 /* If it is still linked into the bucket list, free from the list */
2133 if (!ylist_empty(&tn->hashLink)) {
2134 ylist_del_init(&tn->hashLink);
2135 bucket = yaffs_HashFunction(tn->objectId);
2136 dev->objectBucket[bucket].count--;
2140 /* FreeObject frees up a Object and puts it back on the free list */
2141 static void yaffs_FreeObject(yaffs_Object *tn)
2143 yaffs_Device *dev = tn->myDev;
2145 T(YAFFS_TRACE_OS, (TSTR("FreeObject %p inode %p"TENDSTR), tn, tn->myInode));
2151 if (!ylist_empty(&tn->siblings))
2156 /* We're still hooked up to a cached inode.
2157 * Don't delete now, but mark for later deletion
2159 tn->deferedFree = 1;
2163 yaffs_UnhashObject(tn);
2165 #ifdef CONFIG_YAFFS_VALGRIND_TEST
2167 dev->nObjectsCreated--;
2170 /* Link into the free list. */
2171 tn->siblings.next = (struct ylist_head *)(dev->freeObjects);
2172 dev->freeObjects = tn;
2173 dev->nFreeObjects++;
2175 dev->nCheckpointBlocksRequired = 0; /* force recalculation*/
2179 void yaffs_HandleDeferedFree(yaffs_Object *obj)
2181 if (obj->deferedFree)
2182 yaffs_FreeObject(obj);
2186 static void yaffs_DeinitialiseObjects(yaffs_Device *dev)
2188 /* Free the list of allocated Objects */
2190 yaffs_ObjectList *tmp;
2192 while (dev->allocatedObjectList) {
2193 tmp = dev->allocatedObjectList->next;
2194 YFREE(dev->allocatedObjectList->objects);
2195 YFREE(dev->allocatedObjectList);
2197 dev->allocatedObjectList = tmp;
2200 dev->freeObjects = NULL;
2201 dev->nFreeObjects = 0;
2202 dev->nObjectsCreated = 0;
2205 static void yaffs_InitialiseObjects(yaffs_Device *dev)
2209 dev->allocatedObjectList = NULL;
2210 dev->freeObjects = NULL;
2211 dev->nFreeObjects = 0;
2213 for (i = 0; i < YAFFS_NOBJECT_BUCKETS; i++) {
2214 YINIT_LIST_HEAD(&dev->objectBucket[i].list);
2215 dev->objectBucket[i].count = 0;
2219 static int yaffs_FindNiceObjectBucket(yaffs_Device *dev)
2223 int lowest = 999999;
2226 /* Search for the shortest list or one that
2230 for (i = 0; i < 10 && lowest > 4; i++) {
2231 dev->bucketFinder++;
2232 dev->bucketFinder %= YAFFS_NOBJECT_BUCKETS;
2233 if (dev->objectBucket[dev->bucketFinder].count < lowest) {
2234 lowest = dev->objectBucket[dev->bucketFinder].count;
2235 l = dev->bucketFinder;
2243 static int yaffs_CreateNewObjectNumber(yaffs_Device *dev)
2245 int bucket = yaffs_FindNiceObjectBucket(dev);
2247 /* Now find an object value that has not already been taken
2248 * by scanning the list.
2252 struct ylist_head *i;
2254 __u32 n = (__u32) bucket;
2256 /* yaffs_CheckObjectHashSanity(); */
2260 n += YAFFS_NOBJECT_BUCKETS;
2261 if (1 || dev->objectBucket[bucket].count > 0) {
2262 ylist_for_each(i, &dev->objectBucket[bucket].list) {
2263 /* If there is already one in the list */
2264 if (i && ylist_entry(i, yaffs_Object,
2265 hashLink)->objectId == n) {
2275 static void yaffs_HashObject(yaffs_Object *in)
2277 int bucket = yaffs_HashFunction(in->objectId);
2278 yaffs_Device *dev = in->myDev;
2280 ylist_add(&in->hashLink, &dev->objectBucket[bucket].list);
2281 dev->objectBucket[bucket].count++;
2284 yaffs_Object *yaffs_FindObjectByNumber(yaffs_Device *dev, __u32 number)
2286 int bucket = yaffs_HashFunction(number);
2287 struct ylist_head *i;
2290 ylist_for_each(i, &dev->objectBucket[bucket].list) {
2291 /* Look if it is in the list */
2293 in = ylist_entry(i, yaffs_Object, hashLink);
2294 if (in->objectId == number) {
2296 /* Don't tell the VFS about this one if it is defered free */
2297 if (in->deferedFree)
2308 yaffs_Object *yaffs_CreateNewObject(yaffs_Device *dev, int number,
2309 yaffs_ObjectType type)
2311 yaffs_Object *theObject=NULL;
2312 yaffs_Tnode *tn = NULL;
2315 number = yaffs_CreateNewObjectNumber(dev);
2317 if (type == YAFFS_OBJECT_TYPE_FILE) {
2318 tn = yaffs_GetTnode(dev);
2323 theObject = yaffs_AllocateEmptyObject(dev);
2326 yaffs_FreeTnode(dev,tn);
2332 theObject->fake = 0;
2333 theObject->renameAllowed = 1;
2334 theObject->unlinkAllowed = 1;
2335 theObject->objectId = number;
2336 yaffs_HashObject(theObject);
2337 theObject->variantType = type;
2338 #ifdef CONFIG_YAFFS_WINCE
2339 yfsd_WinFileTimeNow(theObject->win_atime);
2340 theObject->win_ctime[0] = theObject->win_mtime[0] =
2341 theObject->win_atime[0];
2342 theObject->win_ctime[1] = theObject->win_mtime[1] =
2343 theObject->win_atime[1];
2347 theObject->yst_atime = theObject->yst_mtime =
2348 theObject->yst_ctime = Y_CURRENT_TIME;
2351 case YAFFS_OBJECT_TYPE_FILE:
2352 theObject->variant.fileVariant.fileSize = 0;
2353 theObject->variant.fileVariant.scannedFileSize = 0;
2354 theObject->variant.fileVariant.shrinkSize = 0xFFFFFFFF; /* max __u32 */
2355 theObject->variant.fileVariant.topLevel = 0;
2356 theObject->variant.fileVariant.top = tn;
2358 case YAFFS_OBJECT_TYPE_DIRECTORY:
2359 YINIT_LIST_HEAD(&theObject->variant.directoryVariant.
2361 YINIT_LIST_HEAD(&theObject->variant.directoryVariant.
2364 case YAFFS_OBJECT_TYPE_SYMLINK:
2365 case YAFFS_OBJECT_TYPE_HARDLINK:
2366 case YAFFS_OBJECT_TYPE_SPECIAL:
2367 /* No action required */
2369 case YAFFS_OBJECT_TYPE_UNKNOWN:
2370 /* todo this should not happen */
2378 static yaffs_Object *yaffs_FindOrCreateObjectByNumber(yaffs_Device *dev,
2380 yaffs_ObjectType type)
2382 yaffs_Object *theObject = NULL;
2385 theObject = yaffs_FindObjectByNumber(dev, number);
2388 theObject = yaffs_CreateNewObject(dev, number, type);
2395 static YCHAR *yaffs_CloneString(const YCHAR *str)
2397 YCHAR *newStr = NULL;
2403 len = yaffs_strnlen(str,YAFFS_MAX_ALIAS_LENGTH);
2404 newStr = YMALLOC((len + 1) * sizeof(YCHAR));
2406 yaffs_strncpy(newStr, str,len);
2414 * Mknod (create) a new object.
2415 * equivalentObject only has meaning for a hard link;
2416 * aliasString only has meaning for a symlink.
2417 * rdev only has meaning for devices (a subset of special objects)
2420 static yaffs_Object *yaffs_MknodObject(yaffs_ObjectType type,
2421 yaffs_Object *parent,
2426 yaffs_Object *equivalentObject,
2427 const YCHAR *aliasString, __u32 rdev)
2432 yaffs_Device *dev = parent->myDev;
2434 /* Check if the entry exists. If it does then fail the call since we don't want a dup.*/
2435 if (yaffs_FindObjectByName(parent, name))
2438 if (type == YAFFS_OBJECT_TYPE_SYMLINK) {
2439 str = yaffs_CloneString(aliasString);
2444 in = yaffs_CreateNewObject(dev, -1, type);
2459 in->variantType = type;
2461 in->yst_mode = mode;
2463 #ifdef CONFIG_YAFFS_WINCE
2464 yfsd_WinFileTimeNow(in->win_atime);
2465 in->win_ctime[0] = in->win_mtime[0] = in->win_atime[0];
2466 in->win_ctime[1] = in->win_mtime[1] = in->win_atime[1];
2469 in->yst_atime = in->yst_mtime = in->yst_ctime = Y_CURRENT_TIME;
2471 in->yst_rdev = rdev;
2475 in->nDataChunks = 0;
2477 yaffs_SetObjectName(in, name);
2480 yaffs_AddObjectToDirectory(parent, in);
2482 in->myDev = parent->myDev;
2485 case YAFFS_OBJECT_TYPE_SYMLINK:
2486 in->variant.symLinkVariant.alias = str;
2488 case YAFFS_OBJECT_TYPE_HARDLINK:
2489 in->variant.hardLinkVariant.equivalentObject =
2491 in->variant.hardLinkVariant.equivalentObjectId =
2492 equivalentObject->objectId;
2493 ylist_add(&in->hardLinks, &equivalentObject->hardLinks);
2495 case YAFFS_OBJECT_TYPE_FILE:
2496 case YAFFS_OBJECT_TYPE_DIRECTORY:
2497 case YAFFS_OBJECT_TYPE_SPECIAL:
2498 case YAFFS_OBJECT_TYPE_UNKNOWN:
2503 if (yaffs_UpdateObjectHeader(in, name, 0, 0, 0) < 0) {
2504 /* Could not create the object header, fail the creation */
2505 yaffs_DeleteObject(in);
2509 yaffs_UpdateParent(parent);
2515 yaffs_Object *yaffs_MknodFile(yaffs_Object *parent, const YCHAR *name,
2516 __u32 mode, __u32 uid, __u32 gid)
2518 return yaffs_MknodObject(YAFFS_OBJECT_TYPE_FILE, parent, name, mode,
2519 uid, gid, NULL, NULL, 0);
2522 yaffs_Object *yaffs_MknodDirectory(yaffs_Object *parent, const YCHAR *name,
2523 __u32 mode, __u32 uid, __u32 gid)
2525 return yaffs_MknodObject(YAFFS_OBJECT_TYPE_DIRECTORY, parent, name,
2526 mode, uid, gid, NULL, NULL, 0);
2529 yaffs_Object *yaffs_MknodSpecial(yaffs_Object *parent, const YCHAR *name,
2530 __u32 mode, __u32 uid, __u32 gid, __u32 rdev)
2532 return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SPECIAL, parent, name, mode,
2533 uid, gid, NULL, NULL, rdev);
2536 yaffs_Object *yaffs_MknodSymLink(yaffs_Object *parent, const YCHAR *name,
2537 __u32 mode, __u32 uid, __u32 gid,
2540 return yaffs_MknodObject(YAFFS_OBJECT_TYPE_SYMLINK, parent, name, mode,
2541 uid, gid, NULL, alias, 0);
2544 /* yaffs_Link returns the object id of the equivalent object.*/
2545 yaffs_Object *yaffs_Link(yaffs_Object *parent, const YCHAR *name,
2546 yaffs_Object *equivalentObject)
2548 /* Get the real object in case we were fed a hard link as an equivalent object */
2549 equivalentObject = yaffs_GetEquivalentObject(equivalentObject);
2551 if (yaffs_MknodObject
2552 (YAFFS_OBJECT_TYPE_HARDLINK, parent, name, 0, 0, 0,
2553 equivalentObject, NULL, 0)) {
2554 return equivalentObject;
2561 static int yaffs_ChangeObjectName(yaffs_Object *obj, yaffs_Object *newDir,
2562 const YCHAR *newName, int force, int shadows)
2567 yaffs_Object *existingTarget;
2570 newDir = obj->parent; /* use the old directory */
2572 if (newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY) {
2573 T(YAFFS_TRACE_ALWAYS,
2575 ("tragedy: yaffs_ChangeObjectName: newDir is not a directory"
2580 /* TODO: Do we need this different handling for YAFFS2 and YAFFS1?? */
2581 if (obj->myDev->param.isYaffs2)
2582 unlinkOp = (newDir == obj->myDev->unlinkedDir);
2584 unlinkOp = (newDir == obj->myDev->unlinkedDir
2585 && obj->variantType == YAFFS_OBJECT_TYPE_FILE);
2587 deleteOp = (newDir == obj->myDev->deletedDir);
2589 existingTarget = yaffs_FindObjectByName(newDir, newName);
2591 /* If the object is a file going into the unlinked directory,
2592 * then it is OK to just stuff it in since duplicate names are allowed.
2593 * else only proceed if the new name does not exist and if we're putting
2594 * it into a directory.
2601 newDir->variantType == YAFFS_OBJECT_TYPE_DIRECTORY) {
2602 yaffs_SetObjectName(obj, newName);
2605 yaffs_AddObjectToDirectory(newDir, obj);
2610 /* If it is a deletion then we mark it as a shrink for gc purposes. */
2611 if (yaffs_UpdateObjectHeader(obj, newName, 0, deleteOp, shadows) >= 0)
2618 int yaffs_RenameObject(yaffs_Object *oldDir, const YCHAR *oldName,
2619 yaffs_Object *newDir, const YCHAR *newName)
2621 yaffs_Object *obj = NULL;
2622 yaffs_Object *existingTarget = NULL;
2628 if (!oldDir || oldDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
2630 if (!newDir || newDir->variantType != YAFFS_OBJECT_TYPE_DIRECTORY)
2633 dev = oldDir->myDev;
2635 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
2636 /* Special case for case insemsitive systems (eg. WinCE).
2637 * While look-up is case insensitive, the name isn't.
2638 * Therefore we might want to change x.txt to X.txt
2640 if (oldDir == newDir && yaffs_strcmp(oldName, newName) == 0)
2644 if(yaffs_strnlen(newName,YAFFS_MAX_NAME_LENGTH+1) > YAFFS_MAX_NAME_LENGTH)
2648 obj = yaffs_FindObjectByName(oldDir, oldName);
2650 if (obj && obj->renameAllowed) {
2652 /* Now do the handling for an existing target, if there is one */
2654 existingTarget = yaffs_FindObjectByName(newDir, newName);
2655 if (existingTarget &&
2656 existingTarget->variantType == YAFFS_OBJECT_TYPE_DIRECTORY &&
2657 !ylist_empty(&existingTarget->variant.directoryVariant.children)) {
2658 /* There is a target that is a non-empty directory, so we fail */
2659 return YAFFS_FAIL; /* EEXIST or ENOTEMPTY */
2660 } else if (existingTarget && existingTarget != obj) {
2661 /* Nuke the target first, using shadowing,
2662 * but only if it isn't the same object.
2664 * Note we must disable gc otherwise it can mess up the shadowing.
2668 yaffs_ChangeObjectName(obj, newDir, newName, force,
2669 existingTarget->objectId);
2670 existingTarget->isShadowed = 1;
2671 yaffs_UnlinkObject(existingTarget);
2675 result = yaffs_ChangeObjectName(obj, newDir, newName, 1, 0);
2677 yaffs_UpdateParent(oldDir);
2678 if(newDir != oldDir)
2679 yaffs_UpdateParent(newDir);
2686 /*------------------------- Block Management and Page Allocation ----------------*/
2688 static int yaffs_InitialiseBlocks(yaffs_Device *dev)
2690 int nBlocks = dev->internalEndBlock - dev->internalStartBlock + 1;
2692 dev->blockInfo = NULL;
2693 dev->chunkBits = NULL;
2695 dev->allocationBlock = -1; /* force it to get a new one */
2697 /* If the first allocation strategy fails, thry the alternate one */
2698 dev->blockInfo = YMALLOC(nBlocks * sizeof(yaffs_BlockInfo));
2699 if (!dev->blockInfo) {
2700 dev->blockInfo = YMALLOC_ALT(nBlocks * sizeof(yaffs_BlockInfo));
2701 dev->blockInfoAlt = 1;
2703 dev->blockInfoAlt = 0;
2705 if (dev->blockInfo) {
2706 /* Set up dynamic blockinfo stuff. */
2707 dev->chunkBitmapStride = (dev->param.nChunksPerBlock + 7) / 8; /* round up bytes */
2708 dev->chunkBits = YMALLOC(dev->chunkBitmapStride * nBlocks);
2709 if (!dev->chunkBits) {
2710 dev->chunkBits = YMALLOC_ALT(dev->chunkBitmapStride * nBlocks);
2711 dev->chunkBitsAlt = 1;
2713 dev->chunkBitsAlt = 0;
2716 if (dev->blockInfo && dev->chunkBits) {
2717 memset(dev->blockInfo, 0, nBlocks * sizeof(yaffs_BlockInfo));
2718 memset(dev->chunkBits, 0, dev->chunkBitmapStride * nBlocks);
2725 static void yaffs_DeinitialiseBlocks(yaffs_Device *dev)
2727 if (dev->blockInfoAlt && dev->blockInfo)
2728 YFREE_ALT(dev->blockInfo);
2729 else if (dev->blockInfo)
2730 YFREE(dev->blockInfo);
2732 dev->blockInfoAlt = 0;
2734 dev->blockInfo = NULL;
2736 if (dev->chunkBitsAlt && dev->chunkBits)
2737 YFREE_ALT(dev->chunkBits);
2738 else if (dev->chunkBits)
2739 YFREE(dev->chunkBits);
2740 dev->chunkBitsAlt = 0;
2741 dev->chunkBits = NULL;
2744 static int yaffs_BlockNotDisqualifiedFromGC(yaffs_Device *dev,
2745 yaffs_BlockInfo *bi)
2748 if (!dev->param.isYaffs2)
2749 return 1; /* disqualification only applies to yaffs2. */
2751 if (!bi->hasShrinkHeader)
2752 return 1; /* can gc */
2754 yaffs_FindOldestDirtySequence(dev);
2756 /* Can't do gc of this block if there are any blocks older than this one that have
2759 return (bi->sequenceNumber <= dev->oldestDirtySequence);
2763 * yaffs_FindRefreshBlock()
2764 * periodically finds the oldest full block by sequence number for refreshing.
2767 static __u32 yaffs_FindRefreshBlock(yaffs_Device *dev)
2772 __u32 oldestSequence = 0;
2774 yaffs_BlockInfo *bi;
2777 * If refresh period < 10 then refreshing is disabled.
2779 if(dev->param.refreshPeriod < 10 ||
2780 !dev->param.isYaffs2)
2784 * Fix broken values.
2786 if(dev->refreshSkip > dev->param.refreshPeriod)
2787 dev->refreshSkip = dev->param.refreshPeriod;
2789 if(dev->refreshSkip > 0){
2795 * Refresh skip is now zero.
2796 * We'll do a refresh this time around....
2797 * Update the refresh skip and find the oldest block.
2799 dev->refreshSkip = dev->param.refreshPeriod;
2800 dev->refreshCount++;
2802 for (b = dev->internalStartBlock; b <=dev->internalEndBlock; b++){
2804 bi = yaffs_GetBlockInfo(dev, b);
2807 if (bi->blockState == YAFFS_BLOCK_STATE_FULL){
2810 bi->sequenceNumber < oldestSequence){
2812 oldestSequence = bi->sequenceNumber;
2819 (TSTR("GC refresh count %d selected block %d with sequenceNumber %d" TENDSTR),
2820 dev->refreshCount, oldest, oldestSequence));
2827 * FindDiretiestBlock is used to select the dirtiest block (or close enough)
2828 * for garbage collection.
2831 static int yaffs_FindBlockForGarbageCollection(yaffs_Device *dev,
2834 int b = dev->currentDirtyChecker;
2840 int prioritised = 0;
2841 yaffs_BlockInfo *bi;
2842 int pendingPrioritisedExist = 0;
2844 /* First let's see if we need to grab a prioritised block */
2845 if (dev->hasPendingPrioritisedGCs) {
2846 for (i = dev->internalStartBlock; i < dev->internalEndBlock && !prioritised; i++) {
2848 bi = yaffs_GetBlockInfo(dev, i);
2849 /* yaffs_VerifyBlock(dev,bi,i); */
2851 if (bi->gcPrioritise) {
2852 pendingPrioritisedExist = 1;
2853 if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2854 yaffs_BlockNotDisqualifiedFromGC(dev, bi)) {
2855 pagesInUse = (bi->pagesInUse - bi->softDeletions);
2858 aggressive = 1; /* Fool the non-aggressive skip logiv below */
2863 if (!pendingPrioritisedExist) /* None found, so we can clear this */
2864 dev->hasPendingPrioritisedGCs = 0;
2867 /* If we're doing aggressive GC then we are happy to take a less-dirty block, and
2869 * else (we're doing a leasurely gc), then we only bother to do this if the
2870 * block has only a few pages in use.
2873 dev->nonAggressiveSkip--;
2875 if (!aggressive && (dev->nonAggressiveSkip > 0))
2880 (aggressive) ? dev->param.nChunksPerBlock : YAFFS_PASSIVE_GC_CHUNKS + 1;
2884 dev->internalEndBlock - dev->internalStartBlock + 1;
2887 dev->internalEndBlock - dev->internalStartBlock + 1;
2888 iterations = iterations / 16;
2889 if (iterations > 200)
2893 for (i = 0; i <= iterations && pagesInUse > 0 && !prioritised; i++) {
2895 if (b < dev->internalStartBlock || b > dev->internalEndBlock)
2896 b = dev->internalStartBlock;
2898 if (b < dev->internalStartBlock || b > dev->internalEndBlock) {
2899 T(YAFFS_TRACE_ERROR,
2900 (TSTR("**>> Block %d is not valid" TENDSTR), b));
2904 bi = yaffs_GetBlockInfo(dev, b);
2906 if (bi->blockState == YAFFS_BLOCK_STATE_FULL &&
2907 (bi->pagesInUse - bi->softDeletions) < pagesInUse &&
2908 yaffs_BlockNotDisqualifiedFromGC(dev, bi)) {
2910 pagesInUse = (bi->pagesInUse - bi->softDeletions);
2914 dev->currentDirtyChecker = b;
2918 (TSTR("GC Selected block %d with %d free, prioritised:%d" TENDSTR), dirtiest,
2919 dev->param.nChunksPerBlock - pagesInUse, prioritised));
2923 dev->nonAggressiveSkip = 4;
2928 static void yaffs_BlockBecameDirty(yaffs_Device *dev, int blockNo)
2930 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, blockNo);
2934 /* If the block is still healthy erase it and mark as clean.
2935 * If the block has had a data failure, then retire it.
2938 T(YAFFS_TRACE_GC | YAFFS_TRACE_ERASE,
2939 (TSTR("yaffs_BlockBecameDirty block %d state %d %s"TENDSTR),
2940 blockNo, bi->blockState, (bi->needsRetiring) ? "needs retiring" : ""));
2942 yaffs_ClearOldestDirtySequence(dev,bi);
2944 bi->blockState = YAFFS_BLOCK_STATE_DIRTY;
2946 if (!bi->needsRetiring) {
2947 yaffs_InvalidateCheckpoint(dev);
2948 erasedOk = yaffs_EraseBlockInNAND(dev, blockNo);
2950 dev->nErasureFailures++;
2951 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
2952 (TSTR("**>> Erasure failed %d" TENDSTR), blockNo));
2957 ((yaffs_traceMask & YAFFS_TRACE_ERASE) || !yaffs_SkipVerification(dev))) {
2959 for (i = 0; i < dev->param.nChunksPerBlock; i++) {
2960 if (!yaffs_CheckChunkErased
2961 (dev, blockNo * dev->param.nChunksPerBlock + i)) {
2962 T(YAFFS_TRACE_ERROR,
2964 (">>Block %d erasure supposedly OK, but chunk %d not erased"
2965 TENDSTR), blockNo, i));
2971 /* Clean it up... */
2972 bi->blockState = YAFFS_BLOCK_STATE_EMPTY;
2973 bi->sequenceNumber = 0;
2974 dev->nErasedBlocks++;
2976 bi->softDeletions = 0;
2977 bi->hasShrinkHeader = 0;
2978 bi->skipErasedCheck = 1; /* This is clean, so no need to check */
2979 bi->gcPrioritise = 0;
2980 yaffs_ClearChunkBits(dev, blockNo);
2982 T(YAFFS_TRACE_ERASE,
2983 (TSTR("Erased block %d" TENDSTR), blockNo));
2985 dev->nFreeChunks -= dev->param.nChunksPerBlock; /* We lost a block of free space */
2987 yaffs_RetireBlock(dev, blockNo);
2988 T(YAFFS_TRACE_ERROR | YAFFS_TRACE_BAD_BLOCKS,
2989 (TSTR("**>> Block %d retired" TENDSTR), blockNo));
2993 static int yaffs_FindBlockForAllocation(yaffs_Device *dev)
2997 yaffs_BlockInfo *bi;
2999 if (dev->nErasedBlocks < 1) {
3000 /* Hoosterman we've got a problem.
3001 * Can't get space to gc
3003 T(YAFFS_TRACE_ERROR,
3004 (TSTR("yaffs tragedy: no more erased blocks" TENDSTR)));
3009 /* Find an empty block. */
3011 for (i = dev->internalStartBlock; i <= dev->internalEndBlock; i++) {
3012 dev->allocationBlockFinder++;
3013 if (dev->allocationBlockFinder < dev->internalStartBlock
3014 || dev->allocationBlockFinder > dev->internalEndBlock) {
3015 dev->allocationBlockFinder = dev->internalStartBlock;
3018 bi = yaffs_GetBlockInfo(dev, dev->allocationBlockFinder);
3020 if (bi->blockState == YAFFS_BLOCK_STATE_EMPTY) {
3021 bi->blockState = YAFFS_BLOCK_STATE_ALLOCATING;
3022 dev->sequenceNumber++;
3023 bi->sequenceNumber = dev->sequenceNumber;
3024 dev->nErasedBlocks--;
3025 T(YAFFS_TRACE_ALLOCATE,
3026 (TSTR("Allocated block %d, seq %d, %d left" TENDSTR),
3027 dev->allocationBlockFinder, dev->sequenceNumber,
3028 dev->nErasedBlocks));
3029 return dev->allocationBlockFinder;
3033 T(YAFFS_TRACE_ALWAYS,
3035 ("yaffs tragedy: no more erased blocks, but there should have been %d"
3036 TENDSTR), dev->nErasedBlocks));
3043 static int yaffs_CalcCheckpointBlocksRequired(yaffs_Device *dev)
3045 if (!dev->nCheckpointBlocksRequired &&
3046 dev->param.isYaffs2) {
3047 /* Not a valid value so recalculate */
3050 int devBlocks = (dev->param.endBlock - dev->param.startBlock + 1);
3051 int tnodeSize = yaffs_CalcTnodeSize(dev);
3053 nBytes += sizeof(yaffs_CheckpointValidity);
3054 nBytes += sizeof(yaffs_CheckpointDevice);
3055 nBytes += devBlocks * sizeof(yaffs_BlockInfo);
3056 nBytes += devBlocks * dev->chunkBitmapStride;
3057 nBytes += (sizeof(yaffs_CheckpointObject) + sizeof(__u32)) * (dev->nObjectsCreated - dev->nFreeObjects);
3058 nBytes += (tnodeSize + sizeof(__u32)) * (dev->nTnodesCreated - dev->nFreeTnodes);
3059 nBytes += sizeof(yaffs_CheckpointValidity);
3060 nBytes += sizeof(__u32); /* checksum*/
3062 /* Round up and add 2 blocks to allow for some bad blocks, so add 3 */
3064 nBlocks = (nBytes/(dev->nDataBytesPerChunk * dev->param.nChunksPerBlock)) + 3;
3066 dev->nCheckpointBlocksRequired = nBlocks;
3069 return dev->nCheckpointBlocksRequired;
3073 * Check if there's space to allocate...
3074 * Thinks.... do we need top make this ths same as yaffs_GetFreeChunks()?
3076 static int yaffs_CheckSpaceForAllocation(yaffs_Device *dev)
3079 int reservedBlocks = dev->param.nReservedBlocks;
3080 int checkpointBlocks;
3082 if (dev->param.isYaffs2) {
3083 checkpointBlocks = yaffs_CalcCheckpointBlocksRequired(dev) -
3084 dev->blocksInCheckpoint;
3085 if (checkpointBlocks < 0)
3086 checkpointBlocks = 0;
3088 checkpointBlocks = 0;
3091 reservedChunks = ((reservedBlocks + checkpointBlocks) * dev->param.nChunksPerBlock);
3093 return (dev->nFreeChunks > reservedChunks);
3096 static int yaffs_AllocateChunk(yaffs_Device *dev, int useReserve,
3097 yaffs_BlockInfo **blockUsedPtr)
3100 yaffs_BlockInfo *bi;
3102 if (dev->allocationBlock < 0) {
3103 /* Get next block to allocate off */
3104 dev->allocationBlock = yaffs_FindBlockForAllocation(dev);
3105 dev->allocationPage = 0;
3108 if (!useReserve && !yaffs_CheckSpaceForAllocation(dev)) {
3109 /* Not enough space to allocate unless we're allowed to use the reserve. */
3113 if (dev->nErasedBlocks < dev->param.nReservedBlocks
3114 && dev->allocationPage == 0) {
3115 T(YAFFS_TRACE_ALLOCATE, (TSTR("Allocating reserve" TENDSTR)));
3118 /* Next page please.... */
3119 if (dev->allocationBlock >= 0) {
3120 bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
3122 retVal = (dev->allocationBlock * dev->param.nChunksPerBlock) +
3123 dev->allocationPage;
3125 yaffs_SetChunkBit(dev, dev->allocationBlock,
3126 dev->allocationPage);
3128 dev->allocationPage++;
3132 /* If the block is full set the state to full */
3133 if (dev->allocationPage >= dev->param.nChunksPerBlock) {
3134 bi->blockState = YAFFS_BLOCK_STATE_FULL;
3135 dev->allocationBlock = -1;
3144 T(YAFFS_TRACE_ERROR,
3145 (TSTR("!!!!!!!!! Allocator out !!!!!!!!!!!!!!!!!" TENDSTR)));
3150 static int yaffs_GetErasedChunks(yaffs_Device *dev)
3154 n = dev->nErasedBlocks * dev->param.nChunksPerBlock;
3156 if (dev->allocationBlock > 0)
3157 n += (dev->param.nChunksPerBlock - dev->allocationPage);
3164 * yaffs_SkipRestOfBlock() skips over the rest of the allocation block
3165 * if we don't want to write to it.
3167 static void yaffs_SkipRestOfBlock(yaffs_Device *dev)
3169 if(dev->allocationBlock > 0){
3170 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, dev->allocationBlock);
3171 if(bi->blockState == YAFFS_BLOCK_STATE_ALLOCATING){
3172 bi->blockState = YAFFS_BLOCK_STATE_FULL;
3173 dev->allocationBlock = -1;
3179 static int yaffs_GarbageCollectBlock(yaffs_Device *dev, int block,
3185 int retVal = YAFFS_OK;
3188 int isCheckpointBlock;
3192 int chunksBefore = yaffs_GetErasedChunks(dev);
3195 yaffs_ExtendedTags tags;
3197 yaffs_BlockInfo *bi = yaffs_GetBlockInfo(dev, block);
3199 yaffs_Object *object;
3201 isCheckpointBlock = (bi->blockState == YAFFS_BLOCK_STATE_CHECKPOINT);
3204 T(YAFFS_TRACE_TRACING,
3205 (TSTR("Collecting block %d, in use %d, shrink %d, wholeBlock %d" TENDSTR),
3208 bi->hasShrinkHeader,
3211 /*yaffs_VerifyFreeChunks(dev); */
3213 if(bi->blockState == YAFFS_BLOCK_STATE_FULL)
3214 bi->blockState = YAFFS_BLOCK_STATE_COLLECTING;
3216 bi->hasShrinkHeader = 0; /* clear the flag so that the block can erase */
3218 /* Take off the number of soft deleted entries because
3219 * they're going to get really deleted during GC.
3221 if(dev->gcChunk == 0) /* first time through for this block */
3222 dev->nFreeChunks -= bi->softDeletions;
3226 if (isCheckpointBlock ||
3227 !yaffs_StillSomeChunkBits(dev, block)) {
3228 T(YAFFS_TRACE_TRACING,
3230 ("Collecting block %d that has no chunks in use" TENDSTR),
3232 yaffs_BlockBecameDirty(dev, block);
3235 __u8 *buffer = yaffs_GetTempBuffer(dev, __LINE__);
3237 yaffs_VerifyBlock(dev, bi, block);
3239 maxCopies = (wholeBlock) ? dev->param.nChunksPerBlock : 10;
3240 oldChunk = block * dev->param.nChunksPerBlock + dev->gcChunk;
3242 for (/* init already done */;
3243 retVal == YAFFS_OK &&
3244 dev->gcChunk < dev->param.nChunksPerBlock &&
3245 (bi->blockState == YAFFS_BLOCK_STATE_COLLECTING) &&
3247 dev->gcChunk++, oldChunk++) {
3248 if (yaffs_CheckChunkBit(dev, block, dev->gcChunk)) {
3250 /* This page is in use and might need to be copied off */
3256 yaffs_InitialiseTags(&tags);
3258 yaffs_ReadChunkWithTagsFromNAND(dev, oldChunk,
3262 yaffs_FindObjectByNumber(dev,
3265 T(YAFFS_TRACE_GC_DETAIL,
3267 ("Collecting chunk in block %d, %d %d %d " TENDSTR),
3268 dev->gcChunk, tags.objectId, tags.chunkId,
3271 if (object && !yaffs_SkipVerification(dev)) {
3272 if (tags.chunkId == 0)
3273 matchingChunk = object->hdrChunk;
3274 else if (object->softDeleted)
3275 matchingChunk = oldChunk; /* Defeat the test */
3277 matchingChunk = yaffs_FindChunkInFile(object, tags.chunkId, NULL);
3279 if (oldChunk != matchingChunk)
3280 T(YAFFS_TRACE_ERROR,
3281 (TSTR("gc: page in gc mismatch: %d %d %d %d"TENDSTR),
3282 oldChunk, matchingChunk, tags.objectId, tags.chunkId));
3287 T(YAFFS_TRACE_ERROR,
3289 ("page %d in gc has no object: %d %d %d "
3291 tags.objectId, tags.chunkId, tags.byteCount));
3296 object->softDeleted &&
3297 tags.chunkId != 0) {
3298 /* Data chunk in a soft deleted file, throw it away
3299 * It's a soft deleted data chunk,
3300 * No need to copy this, just forget about it and
3301 * fix up the object.
3304 object->nDataChunks--;
3306 if (object->nDataChunks <= 0) {
3307 /* remeber to clean up the object */
3308 dev->gcCleanupList[cleanups] =
3314 /* Todo object && object->deleted && object->nDataChunks == 0 */
3315 /* Deleted object header with no data chunks.
3316 * Can be discarded and the file deleted.
3318 object->hdrChunk = 0;
3319 yaffs_FreeTnode(object->myDev,
3322 object->variant.fileVariant.top = NULL;
3323 yaffs_DoGenericObjectDeletion(object);
3325 } else if (object) {
3326 /* It's either a data chunk in a live file or
3327 * an ObjectHeader, so we're interested in it.
3328 * NB Need to keep the ObjectHeaders of deleted files
3329 * until the whole file has been deleted off
3331 tags.serialNumber++;
3335 if (tags.chunkId == 0) {
3336 /* It is an object Id,
3337 * We need to nuke the shrinkheader flags first
3338 * Also need to clean up shadowing.
3339 * We no longer want the shrinkHeader flag since its work is done
3340 * and if it is left in place it will mess up scanning.
3343 yaffs_ObjectHeader *oh;
3344 oh = (yaffs_ObjectHeader *)buffer;
3346 tags.extraIsShrinkHeader = 0;
3347 oh->shadowsObject = 0;
3348 oh->inbandShadowsObject = 0;
3349 if(object->variantType == YAFFS_OBJECT_TYPE_FILE)
3350 oh->fileSize = object->variant.fileVariant.fileSize;
3351 tags.extraShadows = 0;
3353 yaffs_VerifyObjectHeader(object, oh, &tags, 1);
3355 yaffs_WriteNewChunkWithTagsToNAND(dev,(__u8 *) oh, &tags, 1);
3358 yaffs_WriteNewChunkWithTagsToNAND(dev, buffer, &tags, 1);
3361 retVal = YAFFS_FAIL;
3364 /* Ok, now fix up the Tnodes etc. */
3366 if (tags.chunkId == 0) {
3368 object->hdrChunk = newChunk;
3369 object->serial = tags.serialNumber;
3371 /* It's a data chunk */