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