Move comment
[yaffs2.git] / yaffs_guts.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  * yaffs_guts.h: Configuration etc for yaffs_guts
4  *
5  * Copyright (C) 2002 Aleph One Ltd.
6  *   for Toby Churchill Ltd and Brightstar Engineering
7  *
8  * Created by Charles Manning <charles@aleph1.co.uk>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License version 2.1 as
12  * published by the Free Software Foundation.
13  *
14  *
15  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
16  *
17  * $Id: yaffs_guts.h,v 1.14 2005-09-20 05:05:40 charles Exp $
18  */
19
20 #ifndef __YAFFS_GUTS_H__
21 #define __YAFFS_GUTS_H__
22
23 #include "devextras.h"
24 #include "yportenv.h"
25
26 #define YAFFS_OK        1
27 #define YAFFS_FAIL  0
28
29 /* Give us a  Y=0x59, 
30  * Give us an A=0x41, 
31  * Give us an FF=0xFF 
32  * Give us an S=0x53
33  * And what have we got... 
34  */
35 #define YAFFS_MAGIC                     0x5941FF53
36
37 #define YAFFS_NTNODES_LEVEL0            16
38 #define YAFFS_TNODES_LEVEL0_BITS        4
39 #define YAFFS_TNODES_LEVEL0_MASK        0xf
40
41 #define YAFFS_NTNODES_INTERNAL          (YAFFS_NTNODES_LEVEL0 / 2)
42 #define YAFFS_TNODES_INTERNAL_BITS      (YAFFS_TNODES_LEVEL0_BITS - 1)
43 #define YAFFS_TNODES_INTERNAL_MASK      0x7
44 #define YAFFS_TNODES_MAX_LEVEL          6
45
46 #ifndef CONFIG_YAFFS_NO_YAFFS1
47 #define YAFFS_BYTES_PER_SPARE           16
48 #define YAFFS_BYTES_PER_CHUNK           512
49 #define YAFFS_CHUNK_SIZE_SHIFT          9
50 #define YAFFS_CHUNKS_PER_BLOCK          32
51 #define YAFFS_BYTES_PER_BLOCK           (YAFFS_CHUNKS_PER_BLOCK*YAFFS_BYTES_PER_CHUNK)
52 #endif
53
54 #define YAFFS_MIN_YAFFS2_CHUNK_SIZE     1024
55 #define YAFFS_MIN_YAFFS2_SPARE_SIZE     32
56
57 #define YAFFS_MAX_CHUNK_ID              0x000FFFFF
58
59 #define YAFFS_UNUSED_OBJECT_ID          0x0003FFFF
60
61 #define YAFFS_ALLOCATION_NOBJECTS       100
62 #define YAFFS_ALLOCATION_NTNODES        100
63 #define YAFFS_ALLOCATION_NLINKS         100
64
65 #define YAFFS_NOBJECT_BUCKETS           256
66
67 #define YAFFS_OBJECT_SPACE              0x40000
68
69 #ifdef CONFIG_YAFFS_UNICODE
70 #define YAFFS_MAX_NAME_LENGTH           127
71 #define YAFFS_MAX_ALIAS_LENGTH          79
72 #else
73 #define YAFFS_MAX_NAME_LENGTH           255
74 #define YAFFS_MAX_ALIAS_LENGTH          159
75 #endif
76
77 #define YAFFS_SHORT_NAME_LENGTH         15
78
79 /* Some special object ids */
80 #define YAFFS_OBJECTID_ROOT             1
81 #define YAFFS_OBJECTID_LOSTNFOUND       2
82 #define YAFFS_OBJECTID_UNLINKED         3
83 #define YAFFS_OBJECTID_DELETED          4
84
85 #define YAFFS_MAX_SHORT_OP_CACHES       20
86
87 #define YAFFS_N_TEMP_BUFFERS            4
88
89 /* Sequence numbers are used in YAFFS2 to determine block allocation order.
90  * The range is limited slightly to help distinguish bad numbers from good.
91  * This also allows us to perhaps in the future use special numbers for
92  * special purposes.
93  * EFFFFF00 allows the allocation of 8 blocks per second (~1Mbytes) for 15 years, 
94  * and is a larger number than the lifetime of a 2GB device.
95  */
96 #define YAFFS_LOWEST_SEQUENCE_NUMBER    0x00001000
97 #define YAFFS_HIGHEST_SEQUENCE_NUMBER   0xEFFFFF00
98
99 /* ChunkCache is used for short read/write operations.*/
100 typedef struct {
101         struct yaffs_ObjectStruct *object;
102         int chunkId;
103         int lastUse;
104         int dirty;
105         int nBytes;             /* Only valid if the cache is dirty */
106         int locked;             /* Can't push out or flush while locked. */
107 #ifdef CONFIG_YAFFS_YAFFS2
108         __u8 *data;
109 #else
110         __u8 data[YAFFS_BYTES_PER_CHUNK];
111 #endif
112 } yaffs_ChunkCache;
113
114
115
116 /* Tags structures in RAM
117  * NB This uses bitfield. Bitfields should not straddle a u32 boundary otherwise
118  * the structure size will get blown out.
119  */
120
121 #ifndef CONFIG_YAFFS_NO_YAFFS1
122 typedef struct {
123         unsigned chunkId:20;
124         unsigned serialNumber:2;
125         unsigned byteCount:10;
126         unsigned objectId:18;
127         unsigned ecc:12;
128         unsigned unusedStuff:2;
129
130 } yaffs_Tags;
131
132 typedef union {
133         yaffs_Tags asTags;
134         __u8 asBytes[8];
135 } yaffs_TagsUnion;
136
137 #endif
138
139 /* Stuff used for extended tags in YAFFS2 */
140
141 typedef enum {
142         YAFFS_ECC_RESULT_UNKNOWN,
143         YAFFS_ECC_RESULT_NO_ERROR,
144         YAFFS_ECC_RESULT_FIXED,
145         YAFFS_ECC_RESULT_UNFIXED
146 } yaffs_ECCResult;
147
148 typedef enum {
149         YAFFS_OBJECT_TYPE_UNKNOWN,
150         YAFFS_OBJECT_TYPE_FILE,
151         YAFFS_OBJECT_TYPE_SYMLINK,
152         YAFFS_OBJECT_TYPE_DIRECTORY,
153         YAFFS_OBJECT_TYPE_HARDLINK,
154         YAFFS_OBJECT_TYPE_SPECIAL
155 } yaffs_ObjectType;
156
157 typedef struct {
158
159         unsigned validMarker0;
160         unsigned chunkUsed;     /*  Status of the chunk: used or unused */
161         unsigned objectId;      /* If 0 then this is not part of an object (unused) */
162         unsigned chunkId;       /* If 0 then this is a header, else a data chunk */
163         unsigned byteCount;     /* Only valid for data chunks */
164
165         /* The following stuff only has meaning when we read */
166         yaffs_ECCResult eccResult;
167         unsigned blockBad;      
168
169         /* YAFFS 1 stuff */
170         unsigned chunkDeleted;  /* The chunk is marked deleted */
171         unsigned serialNumber;  /* Yaffs1 2-bit serial number */
172
173         /* YAFFS2 stuff */
174         unsigned sequenceNumber;        /* The sequence number of this block */
175
176         /* Extra info if this is an object header (YAFFS2 only) */
177
178         unsigned extraHeaderInfoAvailable;      /* There is extra info available if this is not zero */
179         unsigned extraParentObjectId;   /* The parent object */
180         unsigned extraIsShrinkHeader;   /* Is it a shrink header? */
181         unsigned extraShadows;          /* Does this shadow another object? */
182
183         yaffs_ObjectType extraObjectType;       /* What object type? */
184
185         unsigned extraFileLength;               /* Length if it is a file */
186         unsigned extraEquivalentObjectId;       /* Equivalent object Id if it is a hard link */
187
188         unsigned validMarker1;
189
190 } yaffs_ExtendedTags;
191
192 /* Spare structure for YAFFS1 */
193 typedef struct {
194         __u8 tagByte0;
195         __u8 tagByte1;
196         __u8 tagByte2;
197         __u8 tagByte3;
198         __u8 pageStatus;        /* set to 0 to delete the chunk */
199         __u8 blockStatus;
200         __u8 tagByte4;
201         __u8 tagByte5;
202         __u8 ecc1[3];
203         __u8 tagByte6;
204         __u8 tagByte7;
205         __u8 ecc2[3];
206 } yaffs_Spare;
207
208 /*Special structure for passing through to mtd */
209 struct yaffs_NANDSpare {
210         yaffs_Spare spare;
211         int eccres1;
212         int eccres2;
213 };
214
215 /* Block data in RAM */
216
217 typedef enum {
218         YAFFS_BLOCK_STATE_UNKNOWN = 0,
219
220         YAFFS_BLOCK_STATE_SCANNING,
221         YAFFS_BLOCK_STATE_NEEDS_SCANNING,
222         /* The block might have something on it (ie it is allocating or full, perhaps empty)
223          * but it needs to be scanned to determine its true state.
224          * This state is only valid during yaffs_Scan.
225          * NB We tolerate empty because the pre-scanner might be incapable of deciding
226          * However, if this state is returned on a YAFFS2 device, then we expect a sequence number
227          */
228
229         YAFFS_BLOCK_STATE_EMPTY,
230         /* This block is empty */
231
232         YAFFS_BLOCK_STATE_ALLOCATING,
233         /* This block is partially allocated. 
234          * This is the one currently being used for page
235          * allocation. Should never be more than one of these
236          */
237
238         YAFFS_BLOCK_STATE_FULL, 
239         /* All the pages in this block have been allocated.
240          * At least one page holds valid data.
241          */
242
243         YAFFS_BLOCK_STATE_DIRTY,
244         /* All pages have been allocated and deleted. 
245          * Erase me, reuse me.
246          */
247
248         YAFFS_BLOCK_STATE_COLLECTING,   
249         /* This block is being garbage collected */
250
251         YAFFS_BLOCK_STATE_DEAD  
252         /* This block has failed and is not in use */
253 } yaffs_BlockState;
254
255 typedef struct {
256
257         int softDeletions:12;   /* number of soft deleted pages */
258         int pagesInUse:12;      /* number of pages in use */
259         yaffs_BlockState blockState:4;  /* One of the above block states */
260         __u32 needsRetiring:1;  /* Data has failed on this block, need to get valid data off */
261                                 /* and retire the block. */
262 #ifdef CONFIG_YAFFS_YAFFS2
263         __u32 hasShrinkHeader:1; /* This block has at least one shrink object header */
264         __u32 sequenceNumber;    /* block sequence number for yaffs2 */
265 #endif
266
267 } yaffs_BlockInfo;
268
269 /* -------------------------- Object structure -------------------------------*/
270 /* This is the object structure as stored on NAND */
271
272 typedef struct {
273         yaffs_ObjectType type;
274
275         /* Apply to everything  */
276         int parentObjectId;
277         __u16 sum__NoLongerUsed;        /* checksum of name. No longer used */
278         YCHAR name[YAFFS_MAX_NAME_LENGTH + 1];
279
280         /* Thes following apply to directories, files, symlinks - not hard links */
281         __u32 yst_mode;         /* protection */
282
283 #ifdef CONFIG_YAFFS_WINCE
284         __u32 notForWinCE[5];
285 #else
286         __u32 yst_uid;
287         __u32 yst_gid;
288         __u32 yst_atime;
289         __u32 yst_mtime;
290         __u32 yst_ctime;
291 #endif
292
293         /* File size  applies to files only */
294         int fileSize;
295
296         /* Equivalent object id applies to hard links only. */
297         int equivalentObjectId;
298
299         /* Alias is for symlinks only. */
300         YCHAR alias[YAFFS_MAX_ALIAS_LENGTH + 1];
301
302         __u32 yst_rdev;         /* device stuff for block and char devices (major/min) */
303
304 #ifdef CONFIG_YAFFS_WINCE
305         __u32 win_ctime[2];
306         __u32 win_atime[2];
307         __u32 win_mtime[2];
308         __u32 roomToGrow[4];
309 #else
310         __u32 roomToGrow[10];
311 #endif
312
313         int shadowsObject;      /* This object header shadows the specified object if > 0 */
314
315         /* isShrink applies to object headers written when we shrink the file (ie resize) */
316         __u32 isShrink;
317
318 } yaffs_ObjectHeader;
319
320 /*--------------------------- Tnode -------------------------- */
321
322 union yaffs_Tnode_union {
323 #ifdef CONFIG_YAFFS_TNODE_LIST_DEBUG
324         union yaffs_Tnode_union *internal[YAFFS_NTNODES_INTERNAL + 1];
325 #else
326         union yaffs_Tnode_union *internal[YAFFS_NTNODES_INTERNAL];
327 #endif
328         __u16 level0[YAFFS_NTNODES_LEVEL0];
329
330 };
331
332 typedef union yaffs_Tnode_union yaffs_Tnode;
333
334 struct yaffs_TnodeList_struct {
335         struct yaffs_TnodeList_struct *next;
336         yaffs_Tnode *tnodes;
337 };
338
339 typedef struct yaffs_TnodeList_struct yaffs_TnodeList;
340
341 /*------------------------  Object -----------------------------*/
342 /* An object can be one of:
343  * - a directory (no data, has children links
344  * - a regular file (data.... not prunes :->).
345  * - a symlink [symbolic link] (the alias).
346  * - a hard link
347  */
348
349 typedef struct {
350         __u32 fileSize;
351         __u32 scannedFileSize;
352         __u32 shrinkSize;
353         int topLevel;
354         yaffs_Tnode *top;
355 } yaffs_FileStructure;
356
357 typedef struct {
358         struct list_head children;      /* list of child links */
359 } yaffs_DirectoryStructure;
360
361 typedef struct {
362         YCHAR *alias;
363 } yaffs_SymLinkStructure;
364
365 typedef struct {
366         struct yaffs_ObjectStruct *equivalentObject;
367         __u32 equivalentObjectId;
368 } yaffs_HardLinkStructure;
369
370 typedef union {
371         yaffs_FileStructure fileVariant;
372         yaffs_DirectoryStructure directoryVariant;
373         yaffs_SymLinkStructure symLinkVariant;
374         yaffs_HardLinkStructure hardLinkVariant;
375 } yaffs_ObjectVariant;
376
377 struct yaffs_ObjectStruct {
378         __u8 deleted:1;         /* This should only apply to unlinked files. */
379         __u8 softDeleted:1;     /* it has also been soft deleted */
380         __u8 unlinked:1;        /* An unlinked file. The file should be in the unlinked directory.*/
381         __u8 fake:1;            /* A fake object has no presence on NAND. */
382         __u8 renameAllowed:1;   /* Some objects are not allowed to be renamed. */
383         __u8 unlinkAllowed:1;
384         __u8 dirty:1;           /* the object needs to be written to flash */
385         __u8 valid:1;           /* When the file system is being loaded up, this 
386                                  * object might be created before the data
387                                  * is available (ie. file data records appear before the header).
388                                  */
389         __u8 serial;            /* serial number of chunk in NAND. Cached here */
390
391         __u8 deferedFree:1;     /* For Linux kernel. Object is removed from NAND, but is
392                                  * still in the inode cache. Free of object is defered.
393                                  * until the inode is released.
394                                  */
395
396         __u8 lazyLoaded;        /* Vital info has been loaded from tags. Not all info available. */
397
398         __u16 sum;              /* sum of the name to speed searching */
399
400         struct yaffs_DeviceStruct *myDev;       /* The device I'm on */
401
402         struct list_head hashLink;      /* list of objects in this hash bucket */
403
404         struct list_head hardLinks;     /* all the equivalent hard linked objects */
405
406         /* directory structure stuff */
407         /* also used for linking up the free list */
408         struct yaffs_ObjectStruct *parent; 
409         struct list_head siblings;
410
411         /* Where's my object header in NAND? */
412         int chunkId;            
413
414         int nDataChunks;        /* Number of data chunks attached to the file. */
415
416         __u32 objectId;         /* the object id value */
417
418         __u32 yst_mode;
419
420 #ifdef CONFIG_YAFFS_SHORT_NAMES_IN_RAM
421         YCHAR shortName[YAFFS_SHORT_NAME_LENGTH + 1];
422 #endif
423
424 #ifndef __KERNEL__
425         __u32 inUse;
426 #endif
427
428 #ifdef CONFIG_YAFFS_WINCE
429         __u32 win_ctime[2];
430         __u32 win_mtime[2];
431         __u32 win_atime[2];
432 #else
433         __u32 yst_uid;
434         __u32 yst_gid;
435         __u32 yst_atime;
436         __u32 yst_mtime;
437         __u32 yst_ctime;
438 #endif
439
440         __u32 yst_rdev;
441
442 #ifdef __KERNEL__
443         struct inode *myInode;
444
445 #endif
446
447         yaffs_ObjectType variantType;
448
449         yaffs_ObjectVariant variant;
450
451 };
452
453 typedef struct yaffs_ObjectStruct yaffs_Object;
454
455 struct yaffs_ObjectList_struct {
456         yaffs_Object *objects;
457         struct yaffs_ObjectList_struct *next;
458 };
459
460 typedef struct yaffs_ObjectList_struct yaffs_ObjectList;
461
462 typedef struct {
463         struct list_head list;
464         int count;
465 } yaffs_ObjectBucket;
466
467 /*--------------------- Temporary buffers ----------------
468  *
469  * These are chunk-sized working buffers. Each device has a few
470  */
471
472 typedef struct {
473         __u8 *buffer;
474         int line;       /* track from whence this buffer was allocated */
475         int maxLine;
476 } yaffs_TempBuffer;
477
478 /*----------------- Device ---------------------------------*/
479
480 struct yaffs_DeviceStruct {
481         struct list_head devList;
482         const char *name;
483
484         /* Entry parameters set up way early. Yaffs sets up the rest.*/
485         int nBytesPerChunk;     /* Should be a power of 2 >= 512 */
486         int nChunksPerBlock;    /* does not need to be a power of 2 */
487         int nBytesPerSpare;     /* spare area size */
488         int startBlock;         /* Start block we're allowed to use */
489         int endBlock;           /* End block we're allowed to use */
490         int nReservedBlocks;    /* We want this tuneable so that we can reduce */
491                                 /* reserved blocks on NOR and RAM. */
492
493         int nShortOpCaches;     /* If <= 0, then short op caching is disabled, else
494                                  * the number of short op caches (don't use too many)
495                                  */
496
497         int useHeaderFileSize;  /* Flag to determine if we should use file sizes from the header */
498
499         int useNANDECC;         /* Flag to decide whether or not to use NANDECC */
500
501         void *genericDevice;    /* Pointer to device context
502                                  * On an mtd this holds the mtd pointer.
503                                  */
504         /* NAND access functions (Must be set before calling YAFFS)*/
505
506         int (*writeChunkToNAND) (struct yaffs_DeviceStruct * dev,
507                                  int chunkInNAND, const __u8 * data,
508                                  const yaffs_Spare * spare);
509         int (*readChunkFromNAND) (struct yaffs_DeviceStruct * dev,
510                                   int chunkInNAND, __u8 * data,
511                                   yaffs_Spare * spare);
512         int (*eraseBlockInNAND) (struct yaffs_DeviceStruct * dev,
513                                  int blockInNAND);
514         int (*initialiseNAND) (struct yaffs_DeviceStruct * dev);
515
516 #ifdef CONFIG_YAFFS_YAFFS2
517         int (*writeChunkWithTagsToNAND) (struct yaffs_DeviceStruct * dev,
518                                          int chunkInNAND, const __u8 * data,
519                                          const yaffs_ExtendedTags * tags);
520         int (*readChunkWithTagsFromNAND) (struct yaffs_DeviceStruct * dev,
521                                           int chunkInNAND, __u8 * data,
522                                           yaffs_ExtendedTags * tags);
523         int (*markNANDBlockBad) (struct yaffs_DeviceStruct * dev, int blockNo);
524         int (*queryNANDBlock) (struct yaffs_DeviceStruct * dev, int blockNo,
525                                yaffs_BlockState * state, int *sequenceNumber);
526 #endif
527
528         int isYaffs2;
529         
530         /* The removeObjectCallback function must be supplied by OS flavours that 
531          * need it. The Linux kernel does not use this, but yaffs direct does use
532          * it to implement the faster readdir
533          */
534         void (*removeObjectCallback)(struct yaffs_ObjectStruct *obj);
535         
536
537         /* End of stuff that must be set before initialisation. */
538
539         /* Runtime parameters. Set up by YAFFS. */
540
541         __u16 chunkGroupBits;   /* 0 for devices <= 32MB. else log2(nchunks) - 16 */
542         __u16 chunkGroupSize;   /* == 2^^chunkGroupBits */
543
544 #ifdef __KERNEL__
545
546         struct semaphore sem;   /* Semaphore for waiting on erasure.*/
547         struct semaphore grossLock;     /* Gross locking semaphore */
548         __u8 *spareBuffer;      /* For mtdif2 use. Don't know the size of the buffer 
549                                  * at compile time so we have to allocate it.
550                                  */
551         void (*putSuperFunc) (struct super_block * sb);
552 #endif
553
554         int isMounted;
555
556         /* Stuff to support block offsetting to support start block zero */
557         int internalStartBlock;
558         int internalEndBlock;
559         int blockOffset;
560         int chunkOffset;
561
562         /* Block Info */
563         yaffs_BlockInfo *blockInfo;
564         __u8 *chunkBits;        /* bitmap of chunks in use */
565         int chunkBitmapStride;  /* Number of bytes of chunkBits per block. 
566                                  * Must be consistent with nChunksPerBlock.
567                                  */
568
569         int nErasedBlocks;
570         int allocationBlock;    /* Current block being allocated off */
571         __u32 allocationPage;
572         int allocationBlockFinder;      /* Used to search for next allocation block */
573
574         /* Runtime state */
575         int nTnodesCreated;
576         yaffs_Tnode *freeTnodes;
577         int nFreeTnodes;
578         yaffs_TnodeList *allocatedTnodeList;
579
580         int isDoingGC;
581
582         int nObjectsCreated;
583         yaffs_Object *freeObjects;
584         int nFreeObjects;
585
586         yaffs_ObjectList *allocatedObjectList;
587
588         yaffs_ObjectBucket objectBucket[YAFFS_NOBJECT_BUCKETS];
589
590         int nFreeChunks;
591
592         int currentDirtyChecker;        /* Used to find current dirtiest block */
593
594         __u32 *gcCleanupList;   /* objects to delete at the end of a GC. */
595
596         /* Statistcs */
597         int nPageWrites;
598         int nPageReads;
599         int nBlockErasures;
600         int nErasureFailures;
601         int nGCCopies;
602         int garbageCollections;
603         int passiveGarbageCollections;
604         int nRetriedWrites;
605         int nRetiredBlocks;
606         int eccFixed;
607         int eccUnfixed;
608         int tagsEccFixed;
609         int tagsEccUnfixed;
610         int nDeletions;
611         int nUnmarkedDeletions;
612
613         /* Special directories */
614         yaffs_Object *rootDir;
615         yaffs_Object *lostNFoundDir;
616
617         /* Buffer areas for storing data to recover from write failures TODO
618          *      __u8            bufferedData[YAFFS_CHUNKS_PER_BLOCK][YAFFS_BYTES_PER_CHUNK];
619          *      yaffs_Spare bufferedSpare[YAFFS_CHUNKS_PER_BLOCK];
620          */
621         
622         int bufferedBlock;      /* Which block is buffered here? */
623         int doingBufferedBlockRewrite;
624
625         yaffs_ChunkCache *srCache;
626         int srLastUse;
627
628         int cacheHits;
629
630         /* Stuff for background deletion and unlinked files.*/
631         yaffs_Object *unlinkedDir;      /* Directory where unlinked and deleted files live. */
632         yaffs_Object *deletedDir;       /* Directory where deleted objects are sent to disappear. */
633         yaffs_Object *unlinkedDeletion; /* Current file being background deleted.*/
634         int nDeletedFiles;              /* Count of files awaiting deletion;*/
635         int nUnlinkedFiles;             /* Count of unlinked files. */
636         int nBackgroundDeletions;       /* Count of background deletions. */
637
638
639         yaffs_TempBuffer tempBuffer[YAFFS_N_TEMP_BUFFERS];
640         int maxTemp;
641         int unmanagedTempAllocations;
642         int unmanagedTempDeallocations;
643
644         /* yaffs2 runtime stuff */
645         unsigned sequenceNumber;        /* Sequence number of currently allocating block */
646         unsigned oldestDirtySequence;
647
648 };
649
650 typedef struct yaffs_DeviceStruct yaffs_Device;
651
652 /* Function to manipulate block info */
653 static Y_INLINE yaffs_BlockInfo *yaffs_GetBlockInfo(yaffs_Device * dev, int blk)
654 {
655         if (blk < dev->internalStartBlock || blk > dev->internalEndBlock) {
656                 T(YAFFS_TRACE_ERROR,
657                   (TSTR
658                    ("**>> yaffs: getBlockInfo block %d is not valid" TENDSTR),
659                    blk));
660                 YBUG();
661         }
662         return &dev->blockInfo[blk - dev->internalStartBlock];
663 }
664
665 /*----------------------- YAFFS Functions -----------------------*/
666
667 int yaffs_GutsInitialise(yaffs_Device * dev);
668 void yaffs_Deinitialise(yaffs_Device * dev);
669
670 int yaffs_GetNumberOfFreeChunks(yaffs_Device * dev);
671
672 int yaffs_RenameObject(yaffs_Object * oldDir, const YCHAR * oldName,
673                        yaffs_Object * newDir, const YCHAR * newName);
674
675 int yaffs_Unlink(yaffs_Object * dir, const YCHAR * name);
676 int yaffs_DeleteFile(yaffs_Object * obj);
677
678 int yaffs_GetObjectName(yaffs_Object * obj, YCHAR * name, int buffSize);
679 int yaffs_GetObjectFileLength(yaffs_Object * obj);
680 int yaffs_GetObjectInode(yaffs_Object * obj);
681 unsigned yaffs_GetObjectType(yaffs_Object * obj);
682 int yaffs_GetObjectLinkCount(yaffs_Object * obj);
683
684 int yaffs_SetAttributes(yaffs_Object * obj, struct iattr *attr);
685 int yaffs_GetAttributes(yaffs_Object * obj, struct iattr *attr);
686
687 /* File operations */
688 int yaffs_ReadDataFromFile(yaffs_Object * obj, __u8 * buffer, __u32 offset,
689                            int nBytes);
690 int yaffs_WriteDataToFile(yaffs_Object * obj, const __u8 * buffer, __u32 offset,
691                           int nBytes, int writeThrough);
692 int yaffs_ResizeFile(yaffs_Object * obj, int newSize);
693
694 yaffs_Object *yaffs_MknodFile(yaffs_Object * parent, const YCHAR * name,
695                               __u32 mode, __u32 uid, __u32 gid);
696 int yaffs_FlushFile(yaffs_Object * obj, int updateTime);
697
698 /* Directory operations */
699 yaffs_Object *yaffs_MknodDirectory(yaffs_Object * parent, const YCHAR * name,
700                                    __u32 mode, __u32 uid, __u32 gid);
701 yaffs_Object *yaffs_FindObjectByName(yaffs_Object * theDir, const YCHAR * name);
702 int yaffs_ApplyToDirectoryChildren(yaffs_Object * theDir,
703                                    int (*fn) (yaffs_Object *));
704
705 yaffs_Object *yaffs_FindObjectByNumber(yaffs_Device * dev, __u32 number);
706
707 /* Link operations */
708 yaffs_Object *yaffs_Link(yaffs_Object * parent, const YCHAR * name,
709                          yaffs_Object * equivalentObject);
710
711 yaffs_Object *yaffs_GetEquivalentObject(yaffs_Object * obj);
712
713 /* Symlink operations */
714 yaffs_Object *yaffs_MknodSymLink(yaffs_Object * parent, const YCHAR * name,
715                                  __u32 mode, __u32 uid, __u32 gid,
716                                  const YCHAR * alias);
717 YCHAR *yaffs_GetSymlinkAlias(yaffs_Object * obj);
718
719 /* Special inodes (fifos, sockets and devices) */
720 yaffs_Object *yaffs_MknodSpecial(yaffs_Object * parent, const YCHAR * name,
721                                  __u32 mode, __u32 uid, __u32 gid, __u32 rdev);
722
723 /* Special directories */
724 yaffs_Object *yaffs_Root(yaffs_Device * dev);
725 yaffs_Object *yaffs_LostNFound(yaffs_Device * dev);
726
727 #ifdef CONFIG_YAFFS_WINCE
728 /* CONFIG_YAFFS_WINCE special stuff */
729 void yfsd_WinFileTimeNow(__u32 target[2]);
730 #endif
731
732 #ifdef __KERNEL__
733
734 void yaffs_HandleDeferedFree(yaffs_Object * obj);
735 #endif
736
737 /* Debug dump  */
738 int yaffs_DumpObject(yaffs_Object * obj);
739
740 void yaffs_GutsTest(yaffs_Device * dev);
741
742 /* A few useful functions */
743 void yaffs_InitialiseTags(yaffs_ExtendedTags * tags);
744 void yaffs_DeleteChunk(yaffs_Device * dev, int chunkId, int markNAND, int lyn);
745 int yaffs_CheckFF(__u8 * buffer, int nBytes);
746
747 #endif