source: soft/giet_vm/giet_fat32/fat32.c @ 707

Last change on this file since 707 was 707, checked in by guerin, 9 years ago

fix kill/exec

  • introduce physical_memcpy for fat_read
  • don't defer task exec
  • load writable segments in exec syscall
  • Property svn:executable set to *
File size: 160.6 KB
Line 
1//////////////////////////////////////////////////////////////////////////////////
2// Date     : 01/06/2015
3// Authors  : Alain Greiner
4// Copyright (c) UPMC-LIP6
5//////////////////////////////////////////////////////////////////////////////////
6// The fat32.h and fat32.c files define a library of access functions
7// to a FAT32 disk on a block device. It is intended to be used by both
8// the boot code and the kernel code.
9//////////////////////////////////////////////////////////////////////////////////
10// Implementation notes:
11// 1. the "lba" (Logical Block Address) is the physical sector index on
12//    the block device. The physical sector size is supposed to be 512 bytes.
13// 2. the "cluster" variable is actually a cluster index. A cluster contains
14//    8 sectors (4K bytes) and the cluster index is a 32 bits word.
15// 3. Each file or directory referenced by the software is represented
16//    by an "inode". The set of "inodes" is organised as a tree, that is
17//    a sub-tree of the complete file system existing on the block device.
18// 4. A given file can be referenced by several software tasks, and each task
19//    will use a private handler, called a "file descriptor", allocated by the OS
20//    when the task open the file, that is organised as an indexed array.
21// 5. This FAT32 library implements (N+1) caches : one private "File_ Cache"
22//    for each referenced file or directory, and a specific "Fat_Cache" for
23//    the FAT itself. Each cache contain a variable number of clusters that are
24//    dynamically allocated when they are accessed, and organised as a 64-Tree.
25//////////////////////////////////////////////////////////////////////////////////
26// General Debug Policy:
27// The global variable GIET_DEBUG_FAT is defined in the giet_config.h file.
28// The debug is activated if (proctime > GIET_DEBUG_FAT) && (GIET_DEBUG_FAT != 0)
29// The GIET_DEBUG_FAT bit 0 defines the level of debug:
30//    if   (GIET_DEBUG_FAT & 0x1)    => detailed debug
31//    else                           => external functions only
32//////////////////////////////////////////////////////////////////////////////////
33
34#include <giet_config.h>
35#include <hard_config.h>
36#include <fat32.h>
37#include <utils.h>
38#include <vmem.h>
39#include <kernel_malloc.h>
40#include <bdv_driver.h>
41#include <hba_driver.h>
42#include <sdc_driver.h>
43#include <rdk_driver.h>
44#include <mmc_driver.h>
45#include <tty0.h>
46
47//////////////////////////////////////////////////////////////////////////////////
48//               Global variables
49//////////////////////////////////////////////////////////////////////////////////
50
51// Fat-Descriptor
52__attribute__((section(".kdata")))
53fat_desc_t _fat __attribute__((aligned(64))); 
54
55// buffer used by boot code as a simple cache when scanning FAT
56__attribute__((section(".kdata")))
57unsigned char  _fat_buffer_fat[4096] __attribute__((aligned(64)));
58
59// buffer used by boot code as a simple cache when scanning a directory in DATA region
60__attribute__((section(".kdata")))
61unsigned char  _fat_buffer_data[4096] __attribute__((aligned(64)));
62
63// lba of cluster in fat_buffer_fat
64__attribute__((section(".kdata")))
65unsigned int   _fat_buffer_fat_lba;
66
67// lba of cluster in fat_buffer_data
68__attribute__((section(".kdata")))
69unsigned int   _fat_buffer_data_lba;
70
71//////////////////////////////////////////////////////////////////////////////////
72//////////////////////////////////////////////////////////////////////////////////
73//                  Static functions declaration
74//////////////////////////////////////////////////////////////////////////////////
75//////////////////////////////////////////////////////////////////////////////////
76
77
78///////////////////////////////////////////////////////////////////////////////////
79// This debug function displays the content of a 512 bytes buffer "buf",
80// with an identifier defined by the "string" and "block_id" arguments.
81///////////////////////////////////////////////////////////////////////////////////
82
83#if GIET_DEBUG_FAT
84static void _display_one_block( unsigned char* buf,
85                                char*          string,
86                                unsigned int   block_id );
87#endif
88
89//////////////////////////////////////////////////////////////////////////////////
90// This debug function displays the FAT descriptor.
91//////////////////////////////////////////////////////////////////////////////////
92
93#if GIET_DEBUG_FAT
94static void _display_fat_descriptor();
95#endif
96
97/////////////////////////////////////////////////////////////////////////////////
98// This debug function displays the sequence of clusters allocated to a
99// file (or directory) identified by the "inode" argument.
100/////////////////////////////////////////////////////////////////////////////////
101
102#if GIET_DEBUG_FAT
103static void _display_clusters_list( fat_inode_t* inode );
104#endif
105
106/////////////////////////////////////////////////////////////////////////////////
107// The following function transfers one or several blocks between the device
108// and a memory buffer identified by a virtual address.
109// It computes the memory buffer physical address, and calls the proper
110// IOC driver depending on the subtype (BDV / HBA / SDC / SPI / RDK).
111// The use_irq argument allows to activate the descheduling mode,
112// if it supported by the IOC driver subtype
113// It returns 0 on success.
114// It returns -1 on error.
115/////////////////////////////////////////////////////////////////////////////////
116
117static int _fat_ioc_access( unsigned int use_irq,
118                            unsigned int to_mem,
119                            unsigned int lba,
120                            unsigned int buf_vaddr,
121                            unsigned int count );
122
123//////////////////////////////////////////////////////////////////////////////////
124// The following function returns in the "desc" argument a pointer on a buffer
125// descriptor contained in a File_Cache, or in the Fat_Cache.
126// The searched buffer is idenfified by the "inode" and "cluster_id" arguments.
127// If the "inode" pointer is not NULL, the searched cache is a File-Cache.
128// If the "inode" pointer is NULL, the searched cache is the Fat-Cache,
129// The "cluster_id" argument is the buffer index in the file (or in the FAT).
130// In case of miss, it allocate a 4 Kbytes buffer and a cluster descriptor
131// from the local kernel heap, and calls the _fat_ioc_access() function to load
132// the missing cluster from the block device.
133// It returns 0 on success.
134// It returns 1 on error.
135//////////////////////////////////////////////////////////////////////////////////
136
137static unsigned int _get_buffer_from_cache( fat_inode_t*        inode,
138                                            unsigned int        cluster_id,
139                                            fat_cache_desc_t**  desc );
140
141////////////////////////////////////////////////////////////////////////////////
142// This function extract a (partial) name from a LFN directory entry.
143////////////////////////////////////////////////////////////////////////////////
144
145static void _get_name_from_long( unsigned char* buffer, 
146                                 char*          name );
147
148////////////////////////////////////////////////////////////////////////////////
149// The following function extract a name from a NORMAL directory entry.
150////////////////////////////////////////////////////////////////////////////////
151
152static void _get_name_from_short( unsigned char* buffer,
153                                  char*          name );
154
155//////////////////////////////////////////////////////////////////////////////////
156// This function returns the number of levels of a File-Cache (or Fat-Cache)
157// from the size of the file (or FAT).
158//////////////////////////////////////////////////////////////////////////////////
159
160static inline unsigned int _get_levels_from_size( unsigned int size );
161
162///////////////////////////////////////////////////////////////////////////////////
163// The following function analyses the "pathname" argument, from the character
164// defined by the "nb_read" argument.
165// It copies the found name in the "name" buffer (without '/'),
166// and updates the "nb_read" argument.
167// It returns 0 on success.
168// It returns 1 if one name length > NAME_MAX_SIZE characters
169///////////////////////////////////////////////////////////////////////////////////
170
171static unsigned int _get_name_from_path( char*          pathname,
172                                         char*          name,
173                                         unsigned int*  nb_read );
174
175////////////////////////////////////////////////////////////////////////////////
176// The following function scan the "pathname" argument, and copies in the
177// "name" buffer the last name in path (leaf name).
178// It returns 0 on success.
179// It returns 1 if one name length > NAME_MAX_SIZE characters
180////////////////////////////////////////////////////////////////////////////////
181static unsigned int _get_last_name( char*   pathname,
182                                    char*   name );
183
184//////////////////////////////////////////////////////////////////////////////////
185// The following function accesses the Fat-Cache and returns in the "value"
186// argument the content of the FAT slot identified by the "cluster" argument.
187// It loads the missing cluster from block device into cache in case of miss.
188// It returns 0 on success.
189// It returns 1 on error.
190//////////////////////////////////////////////////////////////////////////////////
191
192static unsigned int _get_fat_entry( unsigned int  cluster,
193                                    unsigned int* value );
194
195//////////////////////////////////////////////////////////////////////////////////
196// The following function writes a new "value" in the Fat-Cache, in the slot
197// identified by the "cluster" argument. 
198// It loads the missing cluster from block device into cache in case of miss.
199// It returns 0 on success,
200// It returns 1 on error.
201//////////////////////////////////////////////////////////////////////////////////
202
203static unsigned int _set_fat_entry( unsigned int  cluster,
204                                    unsigned int  value );
205
206//////////////////////////////////////////////////////////////////////////////////
207// The following function introduces the inode identified by the "child" argument,
208// as a new child of the "parent" inode in the Inode-Tree.
209// All checking are supposed to be done by the caller.
210// Nor the File-Cache, neither the block device are modified.
211//////////////////////////////////////////////////////////////////////////////////
212
213static void _add_inode_in_tree( fat_inode_t*  child,
214                                fat_inode_t*  parent );
215
216//////////////////////////////////////////////////////////////////////////////////
217// The following function removes one inode identified by the "inode" argument
218// from the Inode-Tree. All checking are supposed to be done by the caller.
219// Nor the File-Cache, neither the block device are modified.
220//////////////////////////////////////////////////////////////////////////////////
221
222static void _remove_inode_from_tree( fat_inode_t* inode );
223
224//////////////////////////////////////////////////////////////////////////////////
225// This recursive function scan one File-Cache (or Fat-Cache) from root to leaves,
226// to writes all dirty clusters to block device, and reset the dirty bits.
227// The cache is identified by the "root" an "levels" arguments.
228// The "string" argument is only used for debug : inode name or Fat.
229// It returns 0 on success.
230// It returns 1 on error.
231//////////////////////////////////////////////////////////////////////////////////
232
233static unsigned int _update_device_from_cache( unsigned int      levels,
234                                               fat_cache_node_t* root,
235                                               char*             string );
236
237//////////////////////////////////////////////////////////////////////////////////
238// The following function accesses directly the FS_INFO block on the block device,
239// to update the "first_free_cluster" and "free_clusters_number" values,
240// using only the Fat-Descriptor single block buffer.
241// It return 0 on success.
242// It return 1 on error.
243//////////////////////////////////////////////////////////////////////////////////
244
245static unsigned int _update_fs_info();
246
247//////////////////////////////////////////////////////////////////////////////
248// The following function read a data field (from one to four bytes)
249// from an unsigned char[] buffer, taking endianness into account.
250// The analysed field is defined by the "offset" and "size" arguments.
251//////////////////////////////////////////////////////////////////////////////
252
253static unsigned int _read_entry( unsigned int    offset,
254                                 unsigned int    size,
255                                 unsigned char*  buffer,
256                                 unsigned int    little_indian );
257
258//////////////////////////////////////////////////////////////////////////////////
259// The following function returns the lba of first sector in DATA region
260// from the cluster index. The cluster index must be larger than 2.
261//////////////////////////////////////////////////////////////////////////////////
262
263static unsigned int _cluster_to_lba( unsigned int cluster );
264
265//////////////////////////////////////////////////////////////////////////////////
266// The following function returns in the "nb_entries" argument the number of files
267// (or directories) contained in a directory identified by the "inode " pointer.
268// It returns 0 on success.
269// It returns 1 on error.
270//////////////////////////////////////////////////////////////////////////////////
271
272static unsigned int _get_nb_entries( fat_inode_t*   inode,
273                                     unsigned int*  nb_entries );
274
275//////////////////////////////////////////////////////////////////////////////////
276// The following function search in the directory identified by the "parent"
277// inode pointer a child (file or directory) identified by its "name".
278// It returns in the "inode" argument the searched child inode pointer.
279// If the searched name is not found in the Inode-Tree, the function accesses
280// the "file_cache" associated to the parent directory.
281// If the child exists on block device, the Inode-Tree is updated, and
282// a success code is returned.
283// If the file/dir does not exist on block device, a error code is returned.
284// It returns 0 if inode found.
285// It returns 1 if inode not found.
286// It returns 2 on error in cache access.
287//////////////////////////////////////////////////////////////////////////////////
288
289static unsigned int _get_child_from_parent( fat_inode_t*   parent,
290                                            char*          name,
291                                            fat_inode_t**  inode ); 
292
293/////////////////////////////////////////////////////////////////////////////////
294// For a file (or a directory) identified by the "pathname" argument, the
295// following function returns in the "inode" argument the inode pointer
296// associated to the searched file (or directory), with code (0).
297// If the searched file (or directory) is not found, but the parent directory
298// is found, it returns in the "inode" argument the pointer on the parent inode,
299// with code (1).  Finally, code (2) and code (3) are error codes.
300// Both the Inode-Tree and the involved Cache-Files are updated from the block
301// device in case of miss on one inode during the search in path.
302// Neither the Fat-Cache, nor the block device are updated.
303// It returns 0 if searched inode found
304// It returns 1 if searched inode not found but parent directory found
305// It returns 2 if searched inode not found and parent directory not found
306// It returns 3 if one name too long
307/////////////////////////////////////////////////////////////////////////////////
308
309static unsigned int _get_inode_from_path( char*          pathname,
310                                          fat_inode_t**  inode );
311
312//////////////////////////////////////////////////////////////////////////////////
313// The following function checks if node "a" is an ancestor of inode "b".
314// It returns 0 on failure.
315// It returns 1 otherwise.
316//////////////////////////////////////////////////////////////////////////////////
317
318static unsigned int _is_ancestor( fat_inode_t* a,
319                                  fat_inode_t* b);
320
321//////////////////////////////////////////////////////////////////////////////////
322// This function computes the length and the number of LFN entries required
323// to store a node name in the "length" and "nb_lfn" arguments.
324// Short name (less than 13 characters) require 1 LFN entry.
325// Medium names (from 14 to 26 characters require 2 LFN entries.
326// Large names (up to 31 characters) require 3 LFN entries.
327// It returns 0 on success.
328// It returns 1 if length larger than 31 characters.
329//////////////////////////////////////////////////////////////////////////////////
330
331static unsigned int _check_name_length( char* name,
332                                        unsigned int* length,
333                                        unsigned int* nb_lfn );
334
335//////////////////////////////////////////////////////////////////////////////////
336// For a node identified by the "inode" argument, this function updates the
337// "size" and "cluster" values in the entry of the parent directory File-Cache.
338// It set the dirty bit in the modified buffer of the parent directory File-Cache.
339//////////////////////////////////////////////////////////////////////////////////
340
341static unsigned int _update_dir_entry( fat_inode_t*  inode );
342
343//////////////////////////////////////////////////////////////////////////////////
344// The following function add new "child" in Cache-File of "parent" directory.
345// It accesses the File_Cache associated to the parent directory, and scan the
346// clusters allocated to this directory to find the NO_MORE entry.
347// This entry will be the first modified entry in the directory.
348// Regarding the name storage, it uses LFN entries for all names.
349// Therefore, it writes 1, 2, or 3 LFN entries (depending on the child name
350// actual length, it writes one NORMAL entry, and writes the new NOMORE entry.
351// It updates the dentry field in the child inode.
352// It set the dirty bit for all modified File-Cache buffers.
353// The block device is not modified by this function.
354//////////////////////////////////////////////////////////////////////////////////
355
356static unsigned int _add_dir_entry( fat_inode_t* child,
357                                    fat_inode_t* parent );
358
359//////////////////////////////////////////////////////////////////////////////////
360// The following function invalidates all dir_entries associated to the "inode"
361// argument from its parent directory.
362// It set the dirty bit for all modified buffers in parent directory Cache-File.
363// The inode itself is not modified by this function.
364// The block device is not modified by this function.
365//////////////////////////////////////////////////////////////////////////////////
366
367static unsigned int _remove_dir_entry( fat_inode_t*  inode );
368
369//////////////////////////////////////////////////////////////////////////////////
370// The following function add the special entries "." and ".." in the File-Cache
371// of the directory identified by the "child" argument.
372// The parent directory is defined by the "parent" argument.
373// The child directory File-Cache is supposed to be empty.
374// We use two NORMAL entries for these "." and ".." entries.
375// The block device is not modified by this function.
376//////////////////////////////////////////////////////////////////////////////////
377
378static void _add_special_directories( fat_inode_t* child,
379                                      fat_inode_t* parent );
380
381//////////////////////////////////////////////////////////////////////////////////
382// The following function releases all clusters allocated to a file or directory,
383// from the cluster index defined by the "cluster" argument, until the end
384// of the FAT linked list.
385// It calls _get_fat_entry() and _set_fat_entry() functions to scan the FAT,
386// and to update the clusters chaining.
387// The FAT region on block device is updated.
388// It returns 0 on success.
389// It returns 1 on error.
390//////////////////////////////////////////////////////////////////////////////////
391
392static unsigned int _clusters_release( unsigned int cluster );
393
394//////////////////////////////////////////////////////////////////////////////////
395// This function allocate "nb_clusters_more" new clusters to a file (or directory)
396// identified by the "inode" pointer. It allocates also the associated buffers
397// and buffer descriptors in the Cache-File.
398// It calls _get_fat_entry() and _set_fat_entry() functions to update the
399// clusters chaining in the Cache-Fat. The FAT region on block device is updated.
400// It returns 0 on success.
401// It returns 1 on error.
402//////////////////////////////////////////////////////////////////////////////////
403
404static unsigned int _clusters_allocate( fat_inode_t* inode, 
405                                        unsigned int nb_clusters_current,
406                                        unsigned int nb_clusters_more );
407
408//////////////////////////////////////////////////////////////////////////////////
409// This recursive function scans one File-Cache (or Fat-Cache) from root to
410// leaves. All memory allocated for 4KB buffers, and buffer descriptors (in
411// leaves) is released, along with the 64-Tree structure (root node is kept).
412// The cache is identified by the "root" and "levels" arguments.
413// It should not contain any dirty clusters.
414//////////////////////////////////////////////////////////////////////////////////
415
416static void _release_cache_memory( fat_cache_node_t*  root,
417                                   unsigned int       levels );
418
419//////////////////////////////////////////////////////////////////////////////////
420// The following function allocates and initializes a new Fat-Cache node.
421// Its first child can be specified (used when adding a cache level).
422// The Fat-Cache is initialized as empty: all children set to NULL.
423// It returns a pointer to a new Fat-Cache node.
424//////////////////////////////////////////////////////////////////////////////////
425
426static fat_cache_node_t* _allocate_one_cache_node( fat_cache_node_t* first_child );
427
428//////////////////////////////////////////////////////////////////////////////////
429// The following function allocates and initializes a new inode,
430// using the values defined by the arguments.
431// If the "cache_allocate" argument is true ans empty cache is allocated.
432// It returns a pointer on the new inode.
433//////////////////////////////////////////////////////////////////////////////////
434
435static fat_inode_t* _allocate_one_inode( char*        name,
436                                         unsigned int is_dir,
437                                         unsigned int cluster,
438                                         unsigned int size,
439                                         unsigned int count,
440                                         unsigned int dentry,
441                                         unsigned int cache_allocate );
442
443//////////////////////////////////////////////////////////////////////////////////
444// The following function allocates one 4 Kbytes buffer and associated cluster
445// descriptor for the file (or directory) identified by the "inode" argument,
446// and updates the Cache_File slot identified by the "cluster_id" argument.
447// The File-Cache slot must be empty.
448// It updates the cluster descriptor, using the "cluster" argument, that is
449// the cluster index in FAT.  The cluster descriptor dirty field is set.
450// It traverse the 64-tree Cache-file from top to bottom to find the last level.
451//////////////////////////////////////////////////////////////////////////////////
452
453static void _allocate_one_buffer( fat_inode_t*    inode,
454                                  unsigned int    cluster_id,
455                                  unsigned int    cluster );
456
457//////////////////////////////////////////////////////////////////////////////////
458// The following function allocates one free cluster from the FAT "heap" of free
459// clusters, and returns the cluster index in the "cluster" argument.
460// It updates the FAT slot, and the two FAT global variables: first_free_cluster,
461// and free_clusters_number.
462// It returns 0 on success.
463// It returns 1 on error.
464//////////////////////////////////////////////////////////////////////////////////
465
466static unsigned int _allocate_one_cluster( unsigned int*  cluster );
467
468/////////////////////////////////////////////////////////////////////////////
469// This function remove from the file system a file or a directory
470// identified by the "inode" argument.
471// The remove condition must be checked by the caller.
472// The relevant lock(s) must have been taken by te caller.
473// It returns 0 on success.
474// It returns 1 on error.
475/////////////////////////////////////////////////////////////////////////////
476
477static unsigned int _remove_node_from_fs( fat_inode_t* inode );
478
479/////////////////////////////////////////////////////////////////////////////
480// This function return the cluster index and the size for a file
481// identified by the "pathname" argument, scanning directly the block
482// device DATA region.
483// It is intended to be called only by the _fat_load_no_cache() function,
484// it does not use the dynamically allocated File Caches, but uses only
485// the 4 Kbytes _fat_buffer_data.
486// It returns 0 on success.
487// It returns 1 on error.
488/////////////////////////////////////////////////////////////////////////////
489
490static unsigned int _file_info_no_cache( char*          pathname,
491                                         unsigned int*  file_cluster,
492                                         unsigned int*  file_size );
493
494/////////////////////////////////////////////////////////////////////////////
495// This function scan directly the FAT region on the block device,
496// and returns in the "next" argument the value stored in the fat slot
497// identified by the "cluster" argument.
498// It is intended to be called only by the _fat_load_no_cache() function,
499// as it does not use the dynamically allocated Fat-Cache, but uses only
500// the 4 Kbytes _fat_buffer_fat.
501// It returns 0 on success.
502// It returns 1 on error.
503/////////////////////////////////////////////////////////////////////////////
504
505static unsigned int _next_cluster_no_cache( unsigned int   cluster,
506                                            unsigned int*  next );
507
508
509//////////////////////////////////////////////////////////////////////////////////
510// The following functions return the length or the size of a FAT field,
511// identified by an (offset,length) mnemonic defined in the fat32.h file.
512//////////////////////////////////////////////////////////////////////////////////
513
514static inline int get_length( int offset , int length ) { return length; }
515
516static inline int get_offset( int offset , int length ) { return offset; }
517
518
519
520
521
522//////////////////////////////////////////////////////////////////////////////////
523//////////////////////////////////////////////////////////////////////////////////
524//                  Static functions definition
525//////////////////////////////////////////////////////////////////////////////////
526//////////////////////////////////////////////////////////////////////////////////
527
528#if GIET_DEBUG_FAT
529///////////////////////////////////////////////////
530static void _display_one_block( unsigned char* buf,
531                                char*          string,
532                                unsigned int   block_id )
533{
534    unsigned int line;
535    unsigned int word;
536
537    _printf("\n***  <%s>  block %x  ***********************************\n",
538            string , block_id );
539
540    for ( line = 0 ; line < 16 ; line++ )
541    {
542        // display line index
543        _printf("%x : ", line );
544
545        // display 8*4 bytes hexa
546        for ( word=0 ; word<8 ; word++ )
547        {
548            unsigned int byte  = (line<<5) + (word<<2);
549            unsigned int hexa  = (buf[byte  ]<<24) |
550                                 (buf[byte+1]<<16) |
551                                 (buf[byte+2]<< 8) |
552                                 (buf[byte+3]      );
553            _printf(" %X |", hexa );
554        }
555        _printf("\n");
556    }
557    _printf("*******************************************************************\n"); 
558} // end _display_one_block() 
559#endif
560
561
562
563#if GIET_DEBUG_FAT
564/////////////////////////////////////
565static void _display_fat_descriptor()
566{
567    _printf("\n###############  FAT DESCRIPTOR  ################################" 
568            "\nFAT initialized                  %x"
569            "\nBlock Size  (bytes)              %x"
570            "\nCluster Size  (bytes)            %x"
571            "\nFAT region first lba             %x"
572            "\nFAT region size (blocks)         %x"
573            "\nDATA region first lba            %x"
574            "\nDATA region size (blocks)        %x"
575            "\nNumber of free clusters          %x"
576            "\nFirst free cluster index         %x" 
577            "\nFat_cache_levels                 %d" 
578            "\n#################################################################\n",
579            _fat.initialized,
580            _fat.sector_size,
581            _fat.cluster_size,
582            _fat.fat_lba,
583            _fat.fat_sectors,
584            _fat.data_lba,
585            _fat.data_sectors,
586            _fat.free_clusters_number,
587            _fat.first_free_cluster,
588            _fat.fat_cache_levels );
589
590} // end _display_fat_descriptor()
591#endif
592
593
594
595#if GIET_DEBUG_FAT
596////////////////////////////////////////////////////////
597static void _display_clusters_list( fat_inode_t* inode )
598{
599    _printf("\n**************** clusters for <%s> ***********************\n", inode->name );
600    unsigned int next;
601    unsigned int n       = 0;
602    unsigned int current = inode->cluster;
603    while( (current < END_OF_CHAIN_CLUSTER_MIN) && (n < 1024) )
604    {
605        _get_fat_entry( current , &next );
606        _printf(" > %X", current );
607        n++;
608        if ( (n & 0x7) == 0 ) _printf("\n");
609        current = next;
610    }
611    _printf("\n");
612}  // end _display_clusters_list()
613#endif
614
615
616
617/////////////////////////////////////////////////////////////////////////////////
618static int _fat_ioc_access( unsigned int use_irq,       // descheduling if non zero
619                            unsigned int to_mem,        // read / write
620                            unsigned int lba,           // first sector on device
621                            unsigned int buf_vaddr,     // memory buffer vaddr
622                            unsigned int count )        // number of sectors
623{
624    // compute memory buffer physical address
625    unsigned int       flags;         // for _v2p_translate
626    unsigned long long buf_paddr;     // buffer physical address
627
628    if ( ((_get_mmu_mode() & 0x4) == 0 ) || USE_IOC_RDK )  // identity
629    { 
630        buf_paddr = (unsigned long long)buf_vaddr;
631    }
632    else                                // V2P translation required
633    {
634        buf_paddr = _v2p_translate( buf_vaddr , &flags );
635    }
636
637#if (GIET_DEBUG_FAT & 1)
638if ( _get_proctime() > GIET_DEBUG_FAT )
639_printf("\n[DEBUG FAT] _fat_ioc_access(): enters at cycle %d\n"
640        "  to_mem = %d / vaddr = %x / paddr = %l / sectors = %d / lba = %x\n",
641        _get_proctime(), to_mem, buf_vaddr, buf_paddr, count, lba );
642#endif
643
644
645#if GIET_NO_HARD_CC     // L1 cache inval (virtual addresses)
646    if ( to_mem ) _dcache_buf_invalidate( buf_vaddr, count<<9 );
647#endif
648
649
650#if   ( USE_IOC_BDV )   // call the proper driver
651    return( _bdv_access( use_irq , to_mem , lba , buf_paddr , count ) ); 
652#elif ( USE_IOC_HBA )
653    return( _hba_access( use_irq , to_mem , lba , buf_paddr , count ) );
654#elif ( USE_IOC_SDC )
655    return( _sdc_access( use_irq , to_mem , lba , buf_paddr , count ) );
656#elif ( USE_IOC_SPI )
657    return( _spi_access( use_irq , to_mem , lba , buf_paddr , count ) );
658#elif ( USE_IOC_RDK )
659    return( _rdk_access( use_irq , to_mem , lba , buf_paddr , count ) );
660#else
661    _printf("\n[FAT ERROR] _fat_ioc_access(): no IOC driver\n");
662    _exit();
663#endif
664
665}  // end _fat_ioc_access()
666
667
668
669
670/////////////////////////////////////////////////////////////////////
671static inline unsigned int _get_levels_from_size( unsigned int size )
672{ 
673    if      ( size <= (1<<18) ) return 1;     // 64 clusters == 256 Kbytes
674    else if ( size <= (1<<24) ) return 2;     // 64 * 64 clusters => 16 Mbytes
675    else if ( size <= (1<<30) ) return 3;     // 64 * 64 * 64 cluster => 1 Gbytes
676    else                        return 4;     // 64 * 64 * 64 * 64 clusters
677}
678
679
680
681////////////////////////////////////////////////////////
682static unsigned int _read_entry( unsigned int    offset,
683                                 unsigned int    size,
684                                 unsigned char*  buffer,
685                                 unsigned int    little_endian )
686{
687    unsigned int n;
688    unsigned int res  = 0;
689
690    if ( little_endian)
691    {
692        for( n = size ; n > 0 ; n-- ) res = (res<<8) | buffer[offset+n-1];
693    }
694    else
695    {
696        for( n = 0 ; n < size ; n++ ) res = (res<<8) | buffer[offset+n];
697    }
698    return res;
699
700}  // end _read_entry
701
702
703
704//////////////////////////////////////////////////////////////////
705static inline unsigned int _cluster_to_lba( unsigned int cluster )       
706{
707    if ( cluster < 2 )
708    { 
709        _printf("\n[FAT ERROR] _cluster_to_lba(): cluster smaller than 2\n");
710        _exit();
711    }
712
713   return  ((cluster - 2) << 3) + _fat.data_lba;
714}
715
716
717//////////////////////////////////////////////////////
718static inline unsigned char _to_lower(unsigned char c)
719{
720   if (c >= 'A' && c <= 'Z') return (c | 0x20);
721   else                      return c;
722}
723
724
725//////////////////////////////////////////////////////
726static inline unsigned char _to_upper(unsigned char c)
727{
728   if (c >= 'a' && c <= 'z') return (c & ~(0x20));
729   else                      return c;
730}
731
732
733
734///////////////////////////////////////////////////////////////////////////
735static unsigned int _get_name_from_path( char*          pathname,  // input
736                                         char*          name,      // output
737                                         unsigned int*  nb_read )  // input & output   
738{
739    // skip leading "/" character
740    if ( pathname[*nb_read] == '/' ) *nb_read = *nb_read + 1;
741
742    // initialises current indexes
743    unsigned int i = *nb_read;
744    unsigned int j = 0;
745   
746    while ( (pathname[i] != '/') && (pathname[i] != 0) )
747    {
748        name[j++] = pathname[i++];   
749        if ( j > NAME_MAX_SIZE ) return 1;
750    }
751
752    // set end of string
753    name[j] = 0;
754
755    // skip trailing "/" character
756    if ( pathname[i] == '/' ) *nb_read += j+1;
757    else                      *nb_read += j;
758
759    return 0;
760}
761
762
763
764////////////////////////////////////////////////////////////////////
765static unsigned int _get_last_name( char*   pathname,       // input
766                                    char*   name )          // output
767{
768    unsigned int nb_read = 0;     
769    while ( pathname[nb_read] != 0 )
770    {
771        if ( _get_name_from_path( pathname, name, &nb_read ) ) return 1;
772    }
773
774    return 0;
775}   // end _get_last_name()
776
777
778
779////////////////////////////////////////////////////////////////////////////////
780static void _get_name_from_short( unsigned char* buffer,  // input:  SFN dir_entry
781                                  char*          name )   // output: name
782{
783    unsigned int i;
784    unsigned int j = 0;
785
786    // get name
787    for ( i = 0; i < 8 && buffer[i] != ' '; i++ )
788    {
789        name[j] = _to_lower( buffer[i] );
790        j++;
791    }
792
793    // get extension
794    for ( i = 8; i < 8 + 3 && buffer[i] != ' '; i++ )
795    {
796        // we entered the loop so there is an extension. add the dot
797        if ( i == 8 )
798        {
799            name[j] = '.';
800            j++;
801        }
802
803        name[j] = _to_lower( buffer[i] );
804        j++;
805    }
806
807    name[j] = '\0';
808}
809
810///////////////////////////////////////////////////////////////////////////////
811static void _get_name_from_long( unsigned char*  buffer, // input : LFN dir_entry
812                                 char*           name )  // output : name
813{
814    unsigned int   name_offset         = 0;
815    unsigned int   buffer_offset       = get_length(LDIR_ORD);
816    unsigned int   l_name_1            = get_length(LDIR_NAME_1);
817    unsigned int   l_name_2            = get_length(LDIR_NAME_2);
818    unsigned int   l_name_3            = get_length(LDIR_NAME_3);
819    unsigned int   l_attr              = get_length(LDIR_ATTR);
820    unsigned int   l_type              = get_length(LDIR_TYPE);
821    unsigned int   l_chksum            = get_length(LDIR_CHKSUM);
822    unsigned int   l_rsvd              = get_length(LDIR_RSVD);
823
824    unsigned int j            = 0;
825    unsigned int eof          = 0;
826
827    while ( (buffer_offset != DIR_ENTRY_SIZE)  && (!eof) )
828    {
829        while (j != l_name_1 && !eof )
830        {
831            if ( (buffer[buffer_offset] == 0x00) || 
832                 (buffer[buffer_offset] == 0xFF) )
833            {
834                eof = 1;
835                continue;
836            }
837            name[name_offset] = buffer[buffer_offset];
838            buffer_offset += 2;
839            j += 2;
840            name_offset++;
841        }
842
843        buffer_offset += (l_attr + l_type + l_chksum);
844        j = 0;
845
846        while (j != l_name_2 && !eof )
847        {
848            if ( (buffer[buffer_offset] == 0x00) || 
849                 (buffer[buffer_offset] == 0xFF) )
850            {
851                eof = 1;
852                continue;
853            }
854            name[name_offset] = buffer[buffer_offset];
855            buffer_offset += 2;
856            j += 2;
857            name_offset++;
858        }
859
860        buffer_offset += l_rsvd;
861        j = 0;
862
863        while (j != l_name_3 && !eof )
864        {
865            if ( (buffer[buffer_offset] == 0x00) || 
866                 (buffer[buffer_offset] == 0xFF) )
867            {
868                eof = 1;
869                continue;
870            }
871            name[name_offset] = buffer[buffer_offset];
872            buffer_offset += 2;
873            j += 2;
874            name_offset++;
875        }
876    }
877    name[name_offset] = 0;
878} // end get_name_from_long()
879
880
881
882////////////////////////////////////////////////////////////
883static fat_cache_node_t* _allocate_one_cache_node( fat_cache_node_t* first_child )
884{
885    fat_cache_node_t* cnode;
886    unsigned int i;
887
888    cnode = _malloc( sizeof(fat_cache_node_t) );
889
890    cnode->children[0] = first_child;
891    for ( i = 1 ; i < 64 ; i++ )
892        cnode->children[i] = NULL;
893
894    return cnode;
895}   // end _allocate_one_cache_node()
896
897
898
899////////////////////////////////////////////////////////////
900static fat_inode_t* _allocate_one_inode( char*        name,
901                                         unsigned int is_dir,
902                                         unsigned int cluster,
903                                         unsigned int size, 
904                                         unsigned int count,
905                                         unsigned int dentry,
906                                         unsigned int cache_allocate )
907{
908    fat_inode_t* new_inode  = _malloc( sizeof(fat_inode_t) );
909
910    new_inode->parent   = NULL;                 // set by _add_inode_in_tree()
911    new_inode->next     = NULL;                 // set by _add_inode_in_tree()
912    new_inode->child    = NULL;                 // set by _add_inode_in_tree()
913    new_inode->cluster  = cluster;
914    new_inode->size     = size; 
915    new_inode->cache    = NULL;
916    new_inode->levels   = 0;
917    new_inode->count    = count;
918    new_inode->is_dir   = (is_dir != 0);
919    new_inode->dentry   = dentry;             
920
921    _strcpy( new_inode->name , name ); 
922
923    if ( cache_allocate )
924    {
925        new_inode->cache    = _allocate_one_cache_node( NULL );
926        new_inode->levels   = _get_levels_from_size( size );
927    }
928
929    return new_inode;
930}   // end _allocate_one_inode()
931
932
933
934
935////////////////////////////////////////////////////
936static void _add_inode_in_tree( fat_inode_t*  child,
937                                fat_inode_t*  parent )
938{
939    child->parent = parent;
940    child->next   = parent->child;
941    parent->child = child;
942}   // end _add_inode-in_tree()
943
944
945
946
947//////////////////////////////////////////////////////////
948static void _remove_inode_from_tree( fat_inode_t*  inode )
949{
950    fat_inode_t*  current;
951    fat_inode_t*  prev = inode->parent->child;
952
953    if ( inode == prev )  // removed inode is first in its linked list
954    {
955        inode->parent->child = inode->next;
956    }
957    else                  // removed inode is not the first
958    {
959        for( current = prev->next ; current ; current = current->next )
960        {
961            if ( current == inode )
962            {
963                prev->next = current->next;
964            }
965            prev = current;
966        }   
967    }   
968}  // end _delete_one_inode()
969
970
971
972
973//////////////////////////////////////////////////////////////////////
974static unsigned int _get_buffer_from_cache( fat_inode_t*        inode,
975                                            unsigned int        cluster_id,
976                                            fat_cache_desc_t**  desc )
977{
978    // get cache pointer and levels
979    fat_cache_node_t*   node;         // pointer on a 64-tree node
980    unsigned int        level;        // cache level
981
982    if ( inode == NULL )   // searched cache is the Fat-Cache
983    {
984        node   = _fat.fat_cache_root;
985        level  = _fat.fat_cache_levels;
986
987#if (GIET_DEBUG_FAT & 1)
988if ( _get_proctime() > GIET_DEBUG_FAT )
989_printf("\n[DEBUG FAT] _get_buffer_from_cache(): enters in FAT-Cache"
990        " for cluster_id = %d\n", cluster_id );
991#endif
992    }
993    else                   // searched cache is a File-Cache
994    {
995        // add cache levels if needed
996        while ( _get_levels_from_size( (cluster_id + 1) * 4096 ) > inode->levels )
997        {
998#if (GIET_DEBUG_FAT & 1)
999if ( _get_proctime() > GIET_DEBUG_FAT )
1000_printf("\n[DEBUG FAT] _get_buffer_from_cache(): adding a File-Cache level\n" );
1001#endif
1002
1003            inode->cache = _allocate_one_cache_node( inode->cache );
1004            inode->levels++;
1005        }
1006
1007        node   = inode->cache;
1008        level  = inode->levels;
1009
1010#if (GIET_DEBUG_FAT & 1)
1011if ( _get_proctime() > GIET_DEBUG_FAT )
1012_printf("\n[DEBUG FAT] _get_buffer_from_cache(): enters in File-Cache <%s>"
1013        " for cluster_id = %d\n", inode->name , cluster_id );
1014#endif
1015    }
1016
1017    // search the 64-tree cache from top to bottom
1018    while ( level )
1019    {
1020        // compute child index at each level
1021        unsigned int index = (cluster_id >> (6*(level-1))) & 0x3F;
1022
1023        if ( level == 1 )        // last level => children are cluster descriptors
1024        {
1025            fat_cache_desc_t* pdesc = (fat_cache_desc_t*)node->children[index];
1026
1027            if ( pdesc == NULL )      // miss
1028            {
1029                // get missing cluster index lba
1030                unsigned int lba;
1031                unsigned int next;
1032                unsigned int current = inode->cluster;
1033                unsigned int count   = cluster_id;
1034
1035                if ( inode == NULL )      // searched cache is the Fat-Cache
1036                {
1037
1038#if (GIET_DEBUG_FAT & 1)
1039if ( _get_proctime() > GIET_DEBUG_FAT )
1040_printf("\n[DEBUG FAT] _get_buffer_from_cache(): miss in FAT-Cache for cluster_id %d\n",
1041        cluster_id );
1042#endif
1043                    lba = _fat.fat_lba + (cluster_id << 3);
1044                }
1045                else                      // searched cache is a File-Cache
1046                {
1047
1048#if (GIET_DEBUG_FAT & 1)
1049if ( _get_proctime() > GIET_DEBUG_FAT )
1050_printf("\n[DEBUG FAT] _get_buffer_from_cache(): miss in File-Cache <%s> "
1051        "for cluster_id %d\n", inode->name, cluster_id );
1052#endif
1053                    while ( count )
1054                    { 
1055                        if ( _get_fat_entry( current , &next ) ) return 1;
1056                        current = next;
1057                        count--;
1058                    }
1059                    lba = _cluster_to_lba( current );
1060                }
1061
1062                // allocate 4K buffer
1063                void* buf = _malloc( 4096 );
1064
1065                // load one cluster (8 blocks) from block device
1066                if ( _fat_ioc_access( 1,         // descheduling
1067                                      1,         // to memory
1068                                      lba,
1069                                      (unsigned int)buf,
1070                                      8 ) )
1071                {
1072                    _free( buf );
1073                    _printf("\n[FAT ERROR] _get_buffer_from_cache()"
1074                            ": cannot access block device for lba = %x\n", lba );
1075                    return 1;
1076                }
1077
1078                // allocate buffer descriptor
1079                pdesc          = _malloc( sizeof(fat_cache_desc_t) );
1080                pdesc->lba     = lba;
1081                pdesc->buffer  = buf;
1082                pdesc->dirty   = 0;
1083                node->children[index] = pdesc;
1084
1085#if (GIET_DEBUG_FAT & 1)
1086if ( _get_proctime() > GIET_DEBUG_FAT )
1087_printf("\n[DEBUG FAT] _get_buffer_from_cache(): buffer loaded from device"
1088        " at vaddr = %x\n", (unsigned int)buf );
1089#endif
1090            }
1091
1092            // return pdesc pointer
1093            *desc = pdesc;
1094
1095            // prepare next iteration
1096            level--;
1097        }
1098        else                      // not last level => children are 64-tree nodes
1099        {
1100            fat_cache_node_t* child = (fat_cache_node_t*)node->children[index];
1101            if ( child == NULL )  // miss
1102            {
1103                // allocate a cache node if miss
1104                child = _allocate_one_cache_node( NULL );
1105                node->children[index] = child;   
1106            }
1107
1108            // prepare next iteration
1109            node = child;
1110            level--;
1111        }
1112    } // end while
1113
1114    return 0;
1115}  // end _get_buffer_from_cache()
1116
1117
1118
1119
1120/////////////////////////////////////
1121static unsigned int _update_fs_info()
1122{
1123    // update buffer if miss
1124    if ( _fat.fs_info_lba != _fat.block_buffer_lba )
1125    {
1126        if ( _fat_ioc_access( 1,                 // descheduling
1127                              1,                 // read
1128                              _fat.fs_info_lba, 
1129                              (unsigned int)_fat.block_buffer, 
1130                              1 ) )              // one block
1131        {
1132            _printf("\n[FAT_ERROR] _update_fs_info(): cannot read block\n");
1133            return 1;
1134        }
1135        _fat.block_buffer_lba = _fat.fs_info_lba;
1136    }
1137
1138    // update FAT buffer
1139    unsigned int* ptr;
1140    ptr  = (unsigned int*)(_fat.block_buffer + get_offset(FS_FREE_CLUSTERS) );
1141    *ptr = _fat.free_clusters_number;
1142
1143    ptr  = (unsigned int*)(_fat.block_buffer + get_offset(FS_FREE_CLUSTER_HINT) );
1144    *ptr = _fat.first_free_cluster;
1145   
1146    // write bloc to FAT
1147    if ( _fat_ioc_access( 1,                // descheduling
1148                          0,                // write
1149                          _fat.fs_info_lba,
1150                          (unsigned int)_fat.block_buffer, 
1151                          1 ) )             // one block
1152    {
1153        _printf("\n[FAT_ERROR] _update_fs_info(): cannot write block\n");
1154        return 1;
1155    }
1156
1157#if (GIET_DEBUG_FAT & 1)
1158if ( _get_proctime() > GIET_DEBUG_FAT )
1159_printf("\n[DEBUG FAT] _update_fs_info(): nb_free = %x / first_free = %x\n",
1160        _fat.free_clusters_number , _fat.first_free_cluster );
1161#endif
1162
1163    return 0;
1164}  // end _update_fs_info()
1165
1166
1167
1168/////////////////////////////////////////////////////////////////
1169static inline unsigned int _get_fat_entry( unsigned int  cluster,
1170                                           unsigned int* value )
1171{
1172    // compute cluster_id & entry_id in FAT
1173    // a FAT cluster is an array of 1024 unsigned int entries
1174    unsigned int       cluster_id = cluster >> 10;       
1175    unsigned int       entry_id   = cluster & 0x3FF;
1176
1177    // get pointer on the relevant cluster descriptor in FAT cache
1178    fat_cache_desc_t*  pdesc;
1179    unsigned int*      buffer;
1180    if ( _get_buffer_from_cache( NULL,               // Fat-Cache
1181                                 cluster_id,
1182                                 &pdesc ) ) return 1;
1183
1184    // get value from FAT slot
1185    buffer = (unsigned int*)pdesc->buffer;
1186    *value = buffer[entry_id];
1187
1188    return 0;
1189}  // end _get_fat_entry()
1190
1191
1192
1193////////////////////////////////////////////////////////////////
1194static inline unsigned int _set_fat_entry( unsigned int cluster, 
1195                                           unsigned int value  )
1196{
1197    // compute cluster_id & entry_id in FAT
1198    // a FAT cluster is an array of 1024 unsigned int entries
1199    unsigned int cluster_id = cluster >> 10;
1200    unsigned int entry_id   = cluster & 0x3FF;
1201
1202    // get pointer on the relevant cluster descriptor in FAT cache
1203    fat_cache_desc_t*  pdesc;
1204    unsigned int*      buffer; 
1205    if ( _get_buffer_from_cache( NULL,               // Fat-Cache
1206                                 cluster_id,
1207                                 &pdesc ) )  return 1;           
1208
1209    // set value into FAT slot
1210    buffer           = (unsigned int*)pdesc->buffer;
1211    buffer[entry_id] = value;
1212    pdesc->dirty     = 1;
1213
1214    return 0;
1215} // end _set_fat_entry()
1216
1217
1218
1219//////////////////////////////////////////////////////
1220static void _allocate_one_buffer( fat_inode_t*  inode,
1221                                  unsigned int  cluster_id,
1222                                  unsigned int  cluster )
1223{
1224    // add cache levels if needed
1225    while ( _get_levels_from_size( (cluster_id + 1) * 4096 ) > inode->levels )
1226    {
1227#if (GIET_DEBUG_FAT & 1)
1228if ( _get_proctime() > GIET_DEBUG_FAT )
1229_printf("\n[DEBUG FAT] _allocate_one_buffer(): adding a cache level\n" );
1230#endif
1231
1232        inode->cache = _allocate_one_cache_node( inode->cache );
1233        inode->levels++;
1234    }
1235
1236    // search the 64-tree cache from top to bottom
1237    fat_cache_node_t*  node   = inode->cache;
1238    unsigned int       level;
1239
1240    for ( level = inode->levels; level != 0; level-- )
1241    {
1242        // compute child index
1243        unsigned int index = (cluster_id >> (6*(level-1))) & 0x3F;
1244
1245        if ( level == 1 )        // last level => children are cluster descriptors
1246        {
1247            fat_cache_desc_t* pdesc = (fat_cache_desc_t*)node->children[index];
1248            if ( pdesc != NULL )      // slot not empty!!!
1249            {
1250                _printf("\n[FAT ERROR] allocate_one buffer(): slot not empty "
1251                        "in File-Cache <%s> / cluster_id = %d\n", inode->name , cluster_id );
1252                _exit();
1253            }
1254
1255#if (GIET_DEBUG_FAT & 1)
1256if ( _get_proctime() > GIET_DEBUG_FAT )
1257_printf("\n[DEBUG FAT] _allocate_one_buffer(): buffer allocated to <%s> for cluster_id %d\n",
1258        inode->name, cluster_id );
1259#endif
1260
1261            // allocate buffer descriptor
1262            pdesc = _malloc( sizeof(fat_cache_desc_t) );
1263            pdesc->lba     = _cluster_to_lba( cluster );
1264            pdesc->buffer  = _malloc( 4096 );
1265            pdesc->dirty   = 1;
1266            node->children[index] = pdesc;
1267        }
1268        else                      // not last level => children are 64-tree nodes
1269        {
1270            fat_cache_node_t* child = (fat_cache_node_t*)node->children[index];
1271            if ( child == NULL )  // miss
1272            {
1273                // allocate a cache node if miss
1274                child = _allocate_one_cache_node( NULL );
1275                node->children[index] = child;   
1276            }
1277
1278            // prepare next iteration
1279            node  = child;
1280        }
1281    } // end for
1282} // end _allocate_one_buffer
1283
1284
1285
1286
1287///////////////////////////////////////////////////////////////////
1288static unsigned int _allocate_one_cluster( unsigned int*  cluster ) 
1289{
1290    unsigned int nb_free = _fat.free_clusters_number;
1291    unsigned int free    = _fat.first_free_cluster;
1292
1293    // scan FAT to get next free cluster index
1294    unsigned int current = free;
1295    unsigned int found   = 0;
1296    unsigned int max     = (_fat.data_sectors >> 3);
1297    unsigned int value;
1298    do
1299    {
1300        // increment current
1301        current++;
1302
1303        // get FAT entry indexed by current
1304        if ( _get_fat_entry( current , &value ) ) return 1;
1305        // test if free
1306        if ( value == FREE_CLUSTER ) found = 1;
1307    }
1308    while ( (current < max) && (found == 0) );
1309       
1310    // check found 
1311    if ( found == 0 )
1312    {
1313        _printf("\n[FAT_ERROR] _allocate_one_cluster(): unconsistent FAT state");
1314        return 1;
1315    }
1316
1317    // update allocated FAT slot
1318    if ( _set_fat_entry( free , END_OF_CHAIN_CLUSTER_MAX ) ) return 1;
1319
1320    // update FAT descriptor global variables
1321    _fat.free_clusters_number = nb_free - 1;
1322    _fat.first_free_cluster   = current;
1323
1324#if (GIET_DEBUG_FAT & 1)
1325if ( _get_proctime() > GIET_DEBUG_FAT )
1326_printf("\n[DEBUG FAT] _allocate_one_cluster(): cluster = %x / first_free = %x\n",
1327        free , current );
1328#endif
1329
1330    // returns free cluster index
1331    *cluster = free;
1332    return 0;
1333
1334}  // end _allocate_one_cluster()
1335
1336
1337
1338
1339//////////////////////////////////////////////////////////////////////////
1340static unsigned int _update_device_from_cache( unsigned int        levels,
1341                                               fat_cache_node_t*   root,
1342                                               char*               string )
1343{
1344    unsigned int index;
1345    unsigned int ret = 0;
1346
1347    if ( levels == 1 )  // last level => children are cluster descriptors
1348    {
1349        for( index = 0 ; index < 64 ; index++ )
1350        { 
1351            fat_cache_desc_t* pdesc = root->children[index];
1352            if ( pdesc != NULL )
1353            { 
1354                // update cluster on device if dirty
1355                if ( pdesc->dirty )
1356                {
1357                    if ( _fat_ioc_access( 1,           // descheduling
1358                                          0,           // to block device
1359                                          pdesc->lba,
1360                                          (unsigned int)pdesc->buffer,
1361                                          8 ) )
1362                    {
1363                        _printf("\n[FAT_ERROR] _update_device from_cache(): "
1364                                " cannot access lba = %x\n", pdesc->lba );
1365                        ret = 1;
1366                    }
1367                    else
1368                    {
1369                        pdesc->dirty = 0;
1370
1371#if (GIET_DEBUG_FAT & 1)
1372if ( _get_proctime() > GIET_DEBUG_FAT )
1373_printf("\n[DEBUG FAT] _update_device_from_cache(): cluster_id = %d for <%s>\n",
1374        index , string );
1375#endif
1376
1377                    }
1378                }
1379            }
1380        }
1381    }
1382    else               // not the last level = recursive call on each children
1383    {
1384        for( index = 0 ; index < 64 ; index++ )
1385        { 
1386            fat_cache_node_t* pnode = root->children[index];
1387            if ( pnode != NULL )
1388            {
1389                if ( _update_device_from_cache( levels - 1,
1390                                                root->children[index],
1391                                                string ) ) ret = 1;
1392            }   
1393        }
1394    }
1395    return ret;
1396}  // end _update_device_from_cache()
1397
1398
1399
1400///////////////////////////////////////////////////////////////////
1401static void _release_cache_memory( fat_cache_node_t*  root,
1402                                   unsigned int       levels )
1403{
1404    unsigned int i;
1405
1406    if ( levels == 1 )  // last level => children are cluster descriptors
1407    {
1408        for( i = 0 ; i < 64 ; i++ )
1409        { 
1410            fat_cache_desc_t* pdesc = root->children[i];
1411
1412            if ( pdesc != NULL )
1413            { 
1414                // check dirty
1415                if ( pdesc->dirty )
1416                    _printf("\n[FAT ERROR] _release_cache_memory(): dirty cluster\n");
1417
1418                _free( pdesc->buffer );
1419                _free( pdesc );
1420                root->children[i] = NULL;
1421            }
1422        }
1423    }
1424    else               // not the last level = recursive call on each children
1425    {
1426        for( i = 0 ; i < 64 ; i++ )
1427        { 
1428            fat_cache_node_t* cnode = root->children[i];
1429
1430            if ( cnode != NULL )
1431            {
1432                _release_cache_memory( cnode, levels - 1 );
1433                _free( cnode );
1434                root->children[i] = NULL;
1435            }
1436        }
1437    }
1438}  // end _release_cache_memory()
1439
1440
1441
1442
1443
1444/////////////////////////////////////////////////////////////
1445static unsigned int _clusters_allocate( fat_inode_t* inode, 
1446                                        unsigned int nb_current_clusters,
1447                                        unsigned int nb_required_clusters )
1448{
1449    // Check if FAT contains enough free clusters
1450    if ( nb_required_clusters > _fat.free_clusters_number )
1451    {
1452        _printf("\n[FAT ERROR] _clusters_allocate(): required_clusters = %d"
1453                " / free_clusters = %d\n", nb_required_clusters , _fat.free_clusters_number );
1454        return 1;
1455    }
1456
1457#if (GIET_DEBUG_FAT & 1)
1458if ( _get_proctime() > GIET_DEBUG_FAT )
1459_printf("\n[DEBUG FAT] _clusters_allocate(): enters for <%s> / nb_current_clusters = %d "
1460        "/ nb_required_clusters = %d\n", 
1461        inode->name , nb_current_clusters , nb_required_clusters );
1462#endif
1463 
1464    // compute last allocated cluster index when (nb_current_clusters > 0)
1465    unsigned int current = inode->cluster;
1466    unsigned int next;
1467    unsigned int last;
1468    if ( nb_current_clusters )   // clusters allocated => search last
1469    {   
1470        while ( current < END_OF_CHAIN_CLUSTER_MIN )
1471        {
1472            // get next cluster
1473            if ( _get_fat_entry( current , &next ) )  return 1;
1474            last    = current;
1475            current = next;
1476        }
1477    } 
1478
1479    // Loop on the new clusters to be allocated
1480    // if (nb_current_clusters == 0) the first new cluster index must
1481    //                               be written in inode->cluster field
1482    // if (nb_current_clusters >  0) the first new cluster index must
1483    //                               be written in FAT[last]
1484    unsigned int      cluster_id;
1485    unsigned int      new;
1486    for ( cluster_id = nb_current_clusters ; 
1487          cluster_id < (nb_current_clusters + nb_required_clusters) ; 
1488          cluster_id ++ )
1489    {
1490        // allocate one cluster on block device
1491        if ( _allocate_one_cluster( &new ) ) return 1;
1492
1493        // allocate one 4K buffer to File-Cache
1494        _allocate_one_buffer( inode,
1495                              cluster_id,
1496                              new );
1497
1498        if ( cluster_id == 0 )  // update inode
1499        {
1500            inode->cluster = new;
1501        }
1502        else                    // update FAT
1503        {
1504            if ( _set_fat_entry( last , new ) ) return 1;
1505        }
1506
1507#if (GIET_DEBUG_FAT & 1)
1508if ( _get_proctime() > GIET_DEBUG_FAT )
1509_printf("\n[DEBUG FAT] _clusters_allocate(): done for cluster_id = %d / cluster = %x\n",
1510        cluster_id , new );
1511#endif
1512
1513        // update loop variables
1514        last = new;
1515
1516    } // end for loop
1517
1518    // update FAT : last slot should contain END_OF_CHAIN_CLUSTER_MAX
1519    if ( _set_fat_entry( last , END_OF_CHAIN_CLUSTER_MAX ) )  return 1;
1520
1521    // update the FAT on block device
1522    if ( _update_device_from_cache( _fat.fat_cache_levels,
1523                                    _fat.fat_cache_root,
1524                                    "FAT" ) )              return 1;
1525    return 0;
1526}  // end _clusters_allocate()
1527
1528
1529
1530//////////////////////////////////////////////////////////////
1531static unsigned int _clusters_release( unsigned int cluster )
1532{
1533    // scan the FAT
1534    unsigned int current = cluster;
1535    unsigned int next;
1536    do
1537    { 
1538        // get next_cluster index
1539        if ( _get_fat_entry( current , &next ) )  return 1;
1540
1541        // release current_cluster
1542        if ( _set_fat_entry( current , FREE_CLUSTER ) )   return 1;
1543
1544        // update first_free_cluster and free_clusters_number in FAT descriptor
1545        _fat.free_clusters_number = _fat.free_clusters_number + 1;
1546        if ( _fat.first_free_cluster > current ) _fat.first_free_cluster = current;
1547
1548        // update loop variable
1549        current = next;
1550    }
1551    while ( next < END_OF_CHAIN_CLUSTER_MIN );
1552
1553    // update the FAT on block device
1554    if ( _update_device_from_cache( _fat.fat_cache_levels,
1555                                    _fat.fat_cache_root,
1556                                    "FAT" ) )                return 1;
1557    return 0;
1558}  // end _clusters_release()
1559
1560
1561
1562///////////////////////////////////////////////////////////
1563static void _add_special_directories( fat_inode_t*  child, 
1564                                      fat_inode_t*  parent )
1565{
1566    // get first File-Cache buffer for child
1567    fat_cache_desc_t*   pdesc  = (fat_cache_desc_t*)child->cache->children[0];
1568    unsigned char*      entry;
1569
1570    unsigned int i;
1571    unsigned int cluster;
1572    unsigned int size;
1573
1574    // set "." entry (32 bytes)
1575    cluster = child->cluster;
1576    size    = child->size;
1577    entry   = pdesc->buffer;
1578   
1579    for ( i = 0 ; i < 32 ; i++ )
1580    {
1581        if      (i == 0 )     entry[i] = 0x2E;          // SFN
1582        else if (i <  11)     entry[i] = 0x20;          // SFN
1583        else if (i == 11)     entry[i] = 0x10;          // ATTR == dir
1584        else if (i == 20)     entry[i] = cluster>>16;   // cluster.B2
1585        else if (i == 21)     entry[i] = cluster>>24;   // cluster.B3
1586        else if (i == 26)     entry[i] = cluster>>0;    // cluster.B0
1587        else if (i == 27)     entry[i] = cluster>>8;    // cluster.B1
1588        else if (i == 28)     entry[i] = size>>0;       // size.B0
1589        else if (i == 29)     entry[i] = size>>8;       // size.B1
1590        else if (i == 30)     entry[i] = size>>16;      // size.B2
1591        else if (i == 31)     entry[i] = size>>24;      // size.B3
1592        else                  entry[i] = 0x00;
1593    }
1594
1595    // set ".." entry (32 bytes)
1596    cluster = parent->cluster;
1597    size    = parent->size;
1598    entry   = pdesc->buffer + 32;
1599
1600    for ( i = 0 ; i < 32 ; i++ )
1601    {
1602        if      (i <  2 )     entry[i] = 0x2E;          // SFN
1603        else if (i <  11)     entry[i] = 0x20;          // SFN
1604        else if (i == 11)     entry[i] = 0x10;          // ATTR == dir
1605        else if (i == 20)     entry[i] = cluster>>16;   // cluster.B2
1606        else if (i == 21)     entry[i] = cluster>>24;   // cluster.B3
1607        else if (i == 26)     entry[i] = cluster>>0;    // cluster.B0
1608        else if (i == 27)     entry[i] = cluster>>8;    // cluster.B1
1609        else if (i == 28)     entry[i] = size>>0;       // size.B0
1610        else if (i == 29)     entry[i] = size>>8;       // size.B1
1611        else if (i == 30)     entry[i] = size>>16;      // size.B2
1612        else if (i == 31)     entry[i] = size>>24;      // size.B3
1613        else                  entry[i] = 0x00;
1614    }
1615}  // end _add_special_directories
1616
1617
1618
1619////////////////////////////////////////////////////////////
1620static unsigned int _is_ancestor( fat_inode_t* a,
1621                                  fat_inode_t* b )
1622{
1623    while ( b )
1624    {
1625        if ( a == b )
1626            return 1;
1627
1628        b = b->parent;
1629    }
1630
1631    return 0;
1632} // _is_ancestor()
1633
1634
1635
1636////////////////////////////////////////////////////////////
1637static unsigned int _check_name_length( char* name,
1638                                        unsigned int* length,
1639                                        unsigned int* nb_lfn )
1640{
1641    unsigned int len = _strlen( name );
1642    if      ( len <= 13 )
1643    {
1644        *length  = len;
1645        *nb_lfn  = 1;
1646        return 0;
1647    }
1648    else if ( len <= 26 )
1649    {
1650        *length  = len;
1651        *nb_lfn  = 2;
1652        return 0;
1653    }
1654    else if ( len <= 31 )
1655    {
1656        *length  = len;
1657        *nb_lfn  = 3;
1658        return 0;
1659    }
1660    else
1661    {
1662        return 1;
1663    }
1664}  // _check_name_length()
1665
1666
1667
1668
1669///////////////////////////////////////////////////////////
1670static unsigned int _get_nb_entries( fat_inode_t*   inode,
1671                                     unsigned int*  nb_entries )
1672{
1673    // scan directory until "end of directory" with two embedded loops:
1674    // - scan the clusters allocated to this directory
1675    // - scan the entries to find NO_MORE_ENTRY
1676    fat_cache_desc_t*  pdesc;                      // pointer on buffer descriptor
1677    unsigned char*     buffer;                     // 4 Kbytes buffer (one cluster)
1678    unsigned int       ord;                        // ORD field in directory entry
1679    unsigned int       attr;                       // ATTR field in directory entry
1680    unsigned int       cluster_id = 0;             // cluster index in directory
1681    unsigned int       offset     = 0;             // position in scanned buffer
1682    unsigned int       found      = 0;             // NO_MORE_ENTRY found
1683    unsigned int       count      = 0;             // number of valid NORMAL entries
1684
1685    // loop on clusters allocated to directory
1686    while ( found == 0 )
1687    {
1688        // get one 4 Kytes buffer from File_Cache 
1689        if ( _get_buffer_from_cache( inode,
1690                                     cluster_id,
1691                                     &pdesc ) )   return 1;
1692        buffer = pdesc->buffer;
1693       
1694        // loop on directory entries in buffer
1695        while ( (offset < 4096) && (found == 0) )
1696        {
1697            attr = _read_entry( DIR_ATTR , buffer + offset , 0 );   
1698            ord  = _read_entry( LDIR_ORD , buffer + offset , 0 );
1699
1700            if ( ord == NO_MORE_ENTRY )
1701            {
1702                found = 1;
1703            } 
1704            else if ( ord == FREE_ENTRY )             // free entry => skip
1705            {
1706                offset = offset + 32;
1707            }
1708            else if ( attr == ATTR_LONG_NAME_MASK )   // LFN entry => skip
1709            {
1710                offset = offset + 32;
1711            }
1712            else                                      // NORMAL entry
1713            {
1714                offset = offset + 32;
1715                count++;
1716            }
1717        }  // end loop on directory entries
1718
1719        cluster_id++;
1720        offset = 0;
1721
1722    }  // end loop on clusters
1723
1724    // return nb_entries
1725    *nb_entries = count;
1726   
1727    return 0;
1728}  // end dir_not_empty()
1729
1730
1731
1732///////////////////////////////////////////////////////////
1733static unsigned int _add_dir_entry( fat_inode_t*   child,
1734                                    fat_inode_t*   parent )
1735{
1736    // get child attributes
1737    unsigned int      is_dir  = child->is_dir;     
1738    unsigned int      size    = child->size;
1739    unsigned int      cluster = child->cluster;
1740
1741    // compute number of required entries to store child->name
1742    // - Short name (less than 13 characters) require 3 entries:
1743    //   one LFN entry / one NORMAL entry / one NO_MORE_ENTRY entry.
1744    // - Longer names (up to 31 characters) can require 4 or 5 entries:
1745    //   2 or 3 LFN entries / one NORMAL entry / one NO_MORE entry.
1746    unsigned int length;
1747    unsigned int nb_lfn;
1748    if ( _check_name_length( child->name, 
1749                             &length,
1750                             &nb_lfn ) )  return 1;
1751
1752#if (GIET_DEBUG_FAT & 1)
1753if ( _get_proctime() > GIET_DEBUG_FAT )
1754_printf("\n[DEBUG FAT] _add_dir_entry(): try to add <%s> in <%s> / nb_lfn = %d\n", 
1755        child->name , parent->name, nb_lfn );
1756#endif
1757
1758    // Find end of directory : two embedded loops:
1759    // - scan the clusters allocated to this directory
1760    // - scan the entries to find NO_MORE_ENTRY
1761    fat_cache_desc_t*  pdesc;                      // pointer on buffer descriptor
1762    unsigned char*     buffer;                     // 4 Kbytes buffer (one cluster)
1763    unsigned int       cluster_id = 0;             // cluster index in directory
1764    unsigned int       offset     = 0;             // position in scanned buffer
1765    unsigned int       found      = 0;             // NO_MORE_ENTRY found
1766
1767    // loop on clusters allocated to directory
1768    while ( found == 0 )
1769    {
1770        // get one 4 Kytes buffer from File_Cache 
1771        if ( _get_buffer_from_cache( parent,
1772                                     cluster_id,
1773                                     &pdesc ) )   return 1;
1774
1775        buffer = pdesc->buffer;
1776       
1777        // loop on directory entries in buffer
1778        while ( (offset < 4096) && (found == 0) )
1779        {
1780            if ( _read_entry( LDIR_ORD , buffer + offset , 0 ) == NO_MORE_ENTRY )
1781            {
1782                found        = 1;
1783                pdesc->dirty = 1;
1784            } 
1785            else
1786            {
1787                offset = offset + 32;
1788            }
1789        }  // end loop on entries
1790        if ( found == 0 )
1791        {
1792            cluster_id++;
1793            offset = 0;
1794        }
1795    }  // end loop on clusters
1796
1797#if (GIET_DEBUG_FAT & 1)
1798if ( _get_proctime() > GIET_DEBUG_FAT )
1799_printf("\n[DEBUG FAT] _add_dir_entry(): get NO_MORE directory entry : "
1800        " buffer = %x / offset = %x / cluster_id = %d\n",
1801        (unsigned int)buffer , offset , cluster_id );
1802#endif
1803
1804    // enter FSM :
1805    // The new child requires to write 3, 4, or 5 directory entries.
1806    // To actually register the new child, we use a 5 steps FSM
1807    // (one state per entry to be written), that is traversed as:
1808    //    LFN3 -> LFN2 -> LFN1 -> NORMAL -> NOMORE
1809    // The buffer and first directory entry to be  written are identified
1810    // by the variables : buffer / cluster_id / offset
1811
1812    unsigned char* name  = (unsigned char*)child->name;
1813
1814    unsigned int step;          // FSM state
1815
1816    if      ( nb_lfn == 1 ) step = 3;
1817    else if ( nb_lfn == 2 ) step = 4;
1818    else if ( nb_lfn == 3 ) step = 5;
1819   
1820    unsigned int   i;           // byte index in 32 bytes directory
1821    unsigned int   c;           // character index in name
1822    unsigned char* entry;       // buffer + offset;
1823
1824    while ( step )   
1825    {
1826        // get another buffer if required
1827        if ( offset >= 4096 )  // new buffer required
1828        {
1829            if ( _get_buffer_from_cache( parent,
1830                                         cluster_id + 1,
1831                                         &pdesc ) )      return 1;
1832            buffer       = pdesc->buffer;
1833            pdesc->dirty = 1;
1834            offset       = 0;
1835        }
1836
1837        // compute directory entry address
1838        entry = buffer + offset;
1839
1840#if (GIET_DEBUG_FAT & 1)
1841if ( _get_proctime() > GIET_DEBUG_FAT )
1842_printf("\n[DEBUG FAT] _add_dir_entry(): FSM step = %d /"
1843        " offset = %x / nb_lfn = %d\n", step, offset, nb_lfn );
1844#endif
1845
1846        // write one 32 bytes directory entry per iteration
1847        switch ( step )
1848        {
1849            case 5:   // write LFN3 entry
1850            {
1851                c = 26;
1852                // scan the 32 bytes in dir_entry
1853                for ( i = 0 ; i < 32 ; i++ )
1854                {
1855                    if (i == 0)
1856                    {
1857                        if ( nb_lfn == 3) entry[i] = 0x43;
1858                        else              entry[i] = 0x03;
1859                    }
1860                    else if ( ( ((i >= 1 ) && (i<=10) && ((i&1)==1))   ||
1861                                ((i >= 14) && (i<=25) && ((i&1)==0))   ||
1862                                ((i >= 28) && (i<=31) && ((i&1)==0)) ) &&
1863                              ( c < length ) )
1864                    {
1865                                          entry[i] = name[c];
1866                                          c++;
1867                    }
1868                    else if (i == 11)     entry[i] = 0x0F;
1869                    else if (i == 12)     entry[i] = 0xCA;
1870                    else                  entry[i] = 0x00;
1871                }
1872                step--;
1873                break;
1874            }
1875            case 4:   // write LFN2 entry 
1876            {
1877                c = 13;
1878                // scan the 32 bytes in dir_entry
1879                for ( i = 0 ; i < 32 ; i++ )
1880                {
1881                    if (i == 0)
1882                    {
1883                        if ( nb_lfn == 2) entry[i] = 0x42;
1884                        else              entry[i] = 0x02;
1885                    }
1886                    else if ( ( ((i >= 1 ) && (i<=10) && ((i&1)==1))   ||
1887                                ((i >= 14) && (i<=25) && ((i&1)==0))   ||
1888                                ((i >= 28) && (i<=31) && ((i&1)==0)) ) &&
1889                              ( c < length ) )
1890                    {
1891                                          entry[i] = name[c];
1892                                          c++;
1893                    }
1894                    else if (i == 11)     entry[i] = 0x0F;
1895                    else if (i == 12)     entry[i] = 0xCA;
1896                    else                  entry[i] = 0x00;
1897                }
1898                step--;
1899                break;
1900            }
1901            case 3:   // Write LFN1 entry   
1902            {
1903                c = 0;
1904                // scan the 32 bytes in dir_entry
1905                for ( i = 0 ; i < 32 ; i++ )
1906                {
1907                    if (i == 0)
1908                    {
1909                        if ( nb_lfn == 1) entry[i] = 0x41;
1910                        else              entry[i] = 0x01;
1911                    }
1912                    else if ( ( ((i >= 1 ) && (i<=10) && ((i&1)==1))   ||
1913                                ((i >= 14) && (i<=25) && ((i&1)==0))   ||
1914                                ((i >= 28) && (i<=31) && ((i&1)==0)) ) &&
1915                              ( c < length ) )
1916                    {
1917                                          entry[i] = name[c];
1918                                          c++;
1919                    }
1920                    else if (i == 11)     entry[i] = 0x0F;
1921                    else if (i == 12)     entry[i] = 0xCA;
1922                    else                  entry[i] = 0x00;
1923                }
1924                step--;
1925                break;
1926            }
1927            case 2:   // write NORMAL entry     
1928            {
1929                c = 0;
1930                // scan the 32 bytes in dir_entry
1931                for ( i = 0 ; i < 32 ; i++ )
1932                {
1933                    if      ( (i < 8) && (c < length) )             // SFN
1934                    {
1935                                          entry[i] = _to_upper( name[c] );
1936                                          c++;
1937                    }
1938                    else if (i <  11)     entry[i] = 0x20;          // EXT
1939                    else if (i == 11)                               // ATTR
1940                    {
1941                        if (is_dir)       entry[i] = 0x10;
1942                        else              entry[i] = 0x20;
1943                    }
1944                    else if (i == 20)     entry[i] = cluster>>16;   // cluster.B2
1945                    else if (i == 21)     entry[i] = cluster>>24;   // cluster.B3
1946                    else if (i == 26)     entry[i] = cluster>>0;    // cluster.B0
1947                    else if (i == 27)     entry[i] = cluster>>8;    // cluster.B1
1948                    else if (i == 28)     entry[i] = size>>0;       // size.B0
1949                    else if (i == 29)     entry[i] = size>>8;       // size.B1
1950                    else if (i == 30)     entry[i] = size>>16;      // size.B2
1951                    else if (i == 31)     entry[i] = size>>24;      // size.B3
1952                    else                  entry[i] = 0x00;
1953                }
1954
1955                // update the dentry field in child inode
1956                child->dentry = ((cluster_id<<12) + offset)>>5;
1957
1958                step--;
1959                break;
1960            }
1961            case 1:   // write NOMORE entry 
1962            {
1963                step--;
1964                entry [0] = 0x00;
1965                break;
1966            }
1967        } // end switch step
1968        offset += 32;
1969    } // exit while => exit FSM   
1970
1971#if (GIET_DEBUG_FAT & 1)
1972if ( _get_proctime() > GIET_DEBUG_FAT )
1973{
1974    _printf("\n[DEBUG FAT] _add_dir_entry(): <%s> successfully added in <%s>\n",
1975            child->name , parent->name );
1976}
1977#endif
1978
1979    return 0;       
1980} // end _add_dir_entry
1981
1982
1983
1984////////////////////////////////////////////////////////////
1985static unsigned int _remove_dir_entry( fat_inode_t*  inode )
1986{
1987    // compute number of LFN entries
1988    unsigned int length;
1989    unsigned int nb_lfn;
1990    if ( _check_name_length( inode->name, 
1991                             &length,
1992                             &nb_lfn ) )  return 1;
1993
1994    // get cluster_id and offset in parent directory cache
1995    unsigned int  dentry     = inode->dentry;
1996    unsigned int  cluster_id = dentry >> 7;
1997    unsigned int  offset     = (dentry & 0x7F)<<5;
1998
1999    // get buffer from parent directory cache
2000    unsigned char*     buffer;
2001    fat_cache_desc_t*  pdesc;
2002
2003    if ( _get_buffer_from_cache( inode->parent,
2004                                 cluster_id,
2005                                 &pdesc ) ) return 1;
2006    buffer       = pdesc->buffer;
2007    pdesc->dirty = 1;
2008
2009    // invalidate NORMAL entry in directory cache
2010    buffer[offset] = 0xE5;
2011
2012    // invalidate LFN entries
2013    while ( nb_lfn )
2014    {
2015        if (offset == 0)  // we must load buffer for (cluster_id - 1)
2016        {
2017            if ( cluster_id == 0 )
2018                break;
2019
2020            if ( _get_buffer_from_cache( inode->parent,
2021                                         cluster_id - 1,
2022                                         &pdesc ) )   return 1;
2023            buffer       = pdesc->buffer;
2024            pdesc->dirty = 1;
2025            offset       = 4096;
2026        }
2027
2028        offset = offset - 32;
2029
2030        // check for LFN entry
2031        if ( _read_entry( DIR_ATTR , buffer + offset , 0 ) != ATTR_LONG_NAME_MASK )
2032            break;
2033
2034        // invalidate LFN entry
2035        buffer[offset] = 0xE5;
2036
2037        nb_lfn--;
2038    }     
2039         
2040    return 0;
2041}  // end _remove_dir_entry
2042
2043
2044
2045
2046////////////////////////////////////////////////////////////
2047static unsigned int _update_dir_entry( fat_inode_t*  inode )
2048{ 
2049    // get Cache-File buffer containing the parent directory entry
2050    // 128 directories entries in one 4 Kbytes buffer
2051    fat_cache_desc_t*  pdesc;
2052    unsigned char*     buffer;   
2053    unsigned int       cluster_id = inode->dentry>>7;
2054    unsigned int       offset     = (inode->dentry & 0x7F)<<5;
2055
2056    if ( _get_buffer_from_cache( inode->parent,
2057                                 cluster_id,
2058                                 &pdesc ) )    return 1;
2059    buffer       = pdesc->buffer;
2060    pdesc->dirty = 1;
2061
2062    // update size field
2063    buffer[offset + 28] = inode->size>>0;       // size.B0
2064    buffer[offset + 29] = inode->size>>8;       // size.B1
2065    buffer[offset + 30] = inode->size>>16;      // size.B2
2066    buffer[offset + 31] = inode->size>>24;      // size.B3
2067
2068    // update cluster field
2069    buffer[offset + 26] = inode->cluster>>0;    // cluster.B0
2070    buffer[offset + 27] = inode->cluster>>8;    // cluster.B1
2071    buffer[offset + 20] = inode->cluster>>16;   // cluster.B2
2072    buffer[offset + 21] = inode->cluster>>24;   // cluster.B3
2073   
2074    return 0;
2075} // end _update_dir_entry()
2076
2077
2078
2079
2080//////////////////////////////////////////////////////////////////
2081static unsigned int _get_child_from_parent( fat_inode_t*   parent,
2082                                            char*          name, 
2083                                            fat_inode_t**  inode )
2084{
2085    fat_inode_t*   current;
2086
2087#if (GIET_DEBUG_FAT & 1)
2088if ( _get_proctime() > GIET_DEBUG_FAT )
2089_printf("\n[DEBUG FAT] _get_child_from_parent(): search <%s> in directory <%s>\n",
2090        name , parent->name );
2091#endif
2092   
2093    // scan inodes in the parent directory
2094    for ( current = parent->child ; current ; current = current->next )
2095    {
2096        if ( _strcmp( name , current->name ) == 0 )
2097        {
2098
2099#if (GIET_DEBUG_FAT & 1)
2100if ( _get_proctime() > GIET_DEBUG_FAT )
2101_printf("\n[DEBUG FAT] _get_child_from_parent(): found inode <%s> in directory <%s>\n", 
2102        name , parent->name );
2103#endif
2104            *inode = current;
2105            return 0;           // name found
2106        }
2107    }
2108
2109    // not found in Inode-Tree => access the parent directory
2110    // file_cache.  Two embedded loops:
2111    // - scan the clusters allocated to this directory
2112    // - scan the directory entries in each 4 Kbytes buffer
2113
2114    unsigned char*    buffer;           // pointer on one cache buffer
2115    char              cname[32];        // buffer for one full entry name
2116    char              lfn1[16];         // buffer for one partial name
2117    char              lfn2[16];         // buffer for one partial name
2118    char              lfn3[16];         // buffer for one partial name
2119    unsigned int      size;             // searched file/dir size (bytes)
2120    unsigned int      cluster;          // searched file/dir cluster index
2121    unsigned int      is_dir;           // searched file/dir type
2122    unsigned int      attr;             // directory entry ATTR field
2123    unsigned int      ord;              // directory entry ORD field
2124    unsigned int      lfn = 0;          // LFN entries number
2125    unsigned int      dentry;           // directory entry index
2126    unsigned int      offset     = 0;   // byte offset in buffer
2127    unsigned int      cluster_id = 0;   // cluster index in directory
2128    int               found      = 0;   // not found (0) / name found (1) / end of dir (-1)
2129
2130#if (GIET_DEBUG_FAT & 1)
2131if ( _get_proctime() > GIET_DEBUG_FAT )
2132_printf("\n[DEBUG FAT] _get_child_from_parent(): does not found inode <%s>"
2133        " in directory <%s> => search in cache\n", name , parent->name );
2134#endif
2135
2136    // scan the clusters allocated to parent directory
2137    while ( found == 0 )
2138    {
2139        // get one 4 Kytes buffer from parent File_Cache 
2140        fat_cache_desc_t*  pdesc;
2141        if ( _get_buffer_from_cache( parent,
2142                                     cluster_id,
2143                                     &pdesc ) )    return 2;
2144        buffer = pdesc->buffer;
2145
2146        // scan this buffer until end of directory, end of buffer, or name found
2147        while( (offset < 4096) && (found == 0) )
2148        {
2149
2150#if (GIET_DEBUG_FAT & 1)
2151if ( _get_proctime() > GIET_DEBUG_FAT )
2152_printf("\n[DEBUG FAT] _get_child_from_parent(): scan buffer %d for <%s>\n",
2153        cluster_id , name );
2154#endif
2155            attr = _read_entry( DIR_ATTR , buffer + offset , 0 );   
2156            ord  = _read_entry( LDIR_ORD , buffer + offset , 0 );
2157
2158            if (ord == NO_MORE_ENTRY)                 // no more entry in directory => break
2159            {
2160                found = -1;
2161            }
2162            else if ( ord == FREE_ENTRY )             // free entry => skip
2163            {
2164                offset = offset + 32;
2165            }
2166            else if ( attr == ATTR_LONG_NAME_MASK )   // LFN entry => get partial name
2167            {
2168                unsigned int seq = ord & 0x3;
2169                lfn = (seq > lfn) ? seq : lfn;   
2170                if      ( seq == 1 ) _get_name_from_long( buffer + offset, lfn1 );
2171                else if ( seq == 2 ) _get_name_from_long( buffer + offset, lfn2 );
2172                else if ( seq == 3 ) _get_name_from_long( buffer + offset, lfn3 );
2173                offset = offset + 32;
2174            }
2175            else                                 // NORMAL entry
2176            {
2177                // build the extracted name
2178                if      ( lfn == 0 )
2179                {
2180                    _get_name_from_short( buffer + offset , cname );
2181                }
2182                else if ( lfn == 1 )
2183                {
2184                    _strcpy( cname      , lfn1 );
2185                }   
2186                else if ( lfn == 2 ) 
2187                {
2188                    _strcpy( cname      , lfn1 );
2189                    _strcpy( cname + 13 , lfn2 );
2190                }
2191                else if ( lfn == 3 ) 
2192                {
2193                    _strcpy( cname      , lfn1 );
2194                    _strcpy( cname + 13 , lfn2 );
2195                    _strcpy( cname + 26 , lfn3 );
2196                }
2197                   
2198                // test if extracted name == searched name
2199                if ( _strcmp( name , cname ) == 0 )
2200                {
2201                    cluster = (_read_entry( DIR_FST_CLUS_HI , buffer + offset , 1 ) << 16) |
2202                              (_read_entry( DIR_FST_CLUS_LO , buffer + offset , 1 )      ) ;
2203                    dentry  = ((cluster_id<<12) + offset)>>5;
2204                    is_dir  = ((attr & ATTR_DIRECTORY) == ATTR_DIRECTORY);
2205                    size    = _read_entry( DIR_FILE_SIZE , buffer + offset , 1 );
2206                    found   = 1;
2207                }
2208                offset = offset + 32;
2209                lfn    = 0;
2210            }
2211        }  // end loop on directory entries
2212        cluster_id++;
2213        offset = 0;
2214    }  // end loop on buffers
2215
2216    if ( found == -1 )  // found end of directory in parent directory
2217    {
2218
2219#if (GIET_DEBUG_FAT & 1)
2220if ( _get_proctime() > GIET_DEBUG_FAT )
2221_printf("\n[DEBUG FAT] _get_child_from_parent(): found end of directory in <%s>\n",
2222        parent->name );
2223#endif
2224        *inode = NULL;
2225        return 1;
2226    }
2227    else               // found searched name in parent directory
2228    {
2229        // allocate a new inode and an empty Cache-File
2230        *inode = _allocate_one_inode( name,
2231                                      is_dir,
2232                                      cluster,
2233                                      size,
2234                                      0,             // count
2235                                      dentry,
2236                                      1 );           // cache_allocate
2237
2238        // introduce it in Inode-Tree
2239        _add_inode_in_tree( *inode , parent );
2240
2241#if (GIET_DEBUG_FAT & 1)
2242if ( _get_proctime() > GIET_DEBUG_FAT )
2243_printf("\n[DEBUG FAT] _get_child_from_parent(): found <%s> on device\n", name );
2244#endif
2245        return 0;
2246    }
2247}  // end _get_child_from_parent()
2248
2249
2250
2251
2252//////////////////////////////////////////////////////////////////
2253static unsigned int _get_inode_from_path( char*          pathname,
2254                                          fat_inode_t**  inode )
2255{
2256    char                 name[32];         // buffer for one name in pathname
2257    unsigned int         nb_read;              // number of characters written in name[]
2258    fat_inode_t*         parent;           // parent inode
2259    fat_inode_t*         child;            // child inode
2260    unsigned int         last;             // while exit condition
2261    unsigned int         code;             // return value
2262
2263#if (GIET_DEBUG_FAT & 1)
2264if ( _get_proctime() > GIET_DEBUG_FAT )
2265_printf("\n[DEBUG FAT] _get_inode_from_path(): enters for path <%s>\n", pathname );
2266#endif
2267
2268    // handle root directory case
2269    if ( _strcmp( pathname , "/" ) == 0 )
2270    {
2271
2272#if (GIET_DEBUG_FAT & 1)
2273if ( _get_proctime() > GIET_DEBUG_FAT )
2274_printf("\n[DEBUG FAT] _get_inode_from_path(): found root inode for <%s>\n", 
2275        pathname );
2276#endif
2277        *inode  = _fat.inode_tree_root;
2278        return 0;
2279    }
2280
2281    // If the pathname is not "/", we traverse the inode tree from the root.
2282    // We use _get_name_from_path() to scan pathname and extract inode names.
2283    // We use _get_child_from_parent() to scan each directory in the path.
2284
2285    last       = 0;
2286    nb_read    = 0;                      // number of characters analysed in path
2287    parent     = _fat.inode_tree_root;   // Inode-Tree root
2288   
2289    while ( !last )
2290    {
2291        // get searched file/dir name
2292        if ( _get_name_from_path( pathname, name, &nb_read ) )
2293        {
2294            return 3;   // error : name too long
2295        }
2296
2297        // compute last iteration condition
2298        last = (pathname[nb_read] == 0);
2299
2300#if (GIET_DEBUG_FAT & 1)
2301if ( _get_proctime() > GIET_DEBUG_FAT )
2302_printf("\n[DEBUG FAT] _get_inode_from_path(): got name <%s>\n", name );
2303#endif
2304
2305        if ( _strcmp( name, ".." ) == 0)
2306        {
2307            // found special name "..", try to go up
2308            code = 0;
2309            if ( parent->parent )
2310                child = parent->parent;
2311            else
2312                child = parent;
2313        }
2314        else if ( _strcmp( name, "." ) == 0 )
2315        {
2316            // found special name ".", stay on the same level
2317            code = 0;
2318            child = parent;
2319        }
2320        else
2321        {
2322            // get child inode from parent directory
2323            code = _get_child_from_parent( parent,
2324                                           name,
2325                                           &child );
2326
2327            // we need to find the child inode for all non terminal names
2328            if ( (code == 2) || ((code == 1 ) && !last) )
2329            {
2330
2331    #if (GIET_DEBUG_FAT & 1)
2332    if ( _get_proctime() > GIET_DEBUG_FAT )
2333    _printf("\n[DEBUG FAT] _get_inode_from_path(): neither parent, nor child found for <%s>\n",
2334            pathname );
2335    #endif
2336                return 2;  // error : parent inode not found
2337            }
2338        }
2339
2340        // update parent if not the last iteration
2341        if ( !last )
2342            parent = child;
2343    } // end while
2344
2345    // returns inode pointer
2346    if (code == 0 )
2347    {
2348
2349#if (GIET_DEBUG_FAT & 1)
2350if ( _get_proctime() > GIET_DEBUG_FAT )
2351_printf("\n[DEBUG FAT] _get_inode_from_path(): found inode for <%s>\n", 
2352        pathname );
2353#endif
2354        *inode  = child;
2355    }
2356    else
2357    {
2358
2359#if (GIET_DEBUG_FAT & 1)
2360if ( _get_proctime() > GIET_DEBUG_FAT )
2361_printf("\n[DEBUG FAT] _get_inode_from_path(): found only parent inode for <%s>\n",
2362        pathname );
2363#endif
2364        *inode  = parent;
2365    }
2366
2367    return code;                 // can be 0 (found) or 1 (not found)
2368
2369}  // end _get_inode_from_path()
2370
2371
2372
2373
2374//////////////////////////////////////////////////////////////
2375static unsigned int _remove_node_from_fs( fat_inode_t* inode )
2376{
2377    // check for root node
2378    if ( !inode->parent ) return 1;
2379
2380    // remove entry in parent directory
2381    if ( _remove_dir_entry( inode ) ) return 1;
2382
2383    // update parent directory on device
2384    if ( _update_device_from_cache( inode->parent->levels,
2385                                    inode->parent->cache,
2386                                    inode->parent->name ) ) return 1;
2387
2388    // release clusters allocated to file/dir in DATA region
2389    if ( _clusters_release( inode->cluster ) ) return 1;
2390
2391    // release File-Cache
2392    _release_cache_memory( inode->cache, inode->levels );
2393    _free ( inode->cache );
2394
2395    // remove inode from Inode-Tree
2396    _remove_inode_from_tree( inode );
2397
2398    // release inode
2399    _free ( inode );
2400
2401    return 0;
2402}  // end _remove_node_from_fs()
2403
2404
2405//////////////////////////////////////////////////////////////////
2406static unsigned int _next_cluster_no_cache( unsigned int   cluster,
2407                                            unsigned int*  next )
2408{
2409    // compute cluster_id and slot_id
2410    // each cluster contains 1024 slots (4 bytes per slot)
2411    unsigned int cluster_id  = cluster >> 10;
2412    unsigned int slot_id     = cluster & 0x3FF;
2413
2414    // compute lba of cluster identified by cluster_id
2415    unsigned int lba = _fat.fat_lba + (cluster_id << 3);
2416
2417    // get cluster containing the adressed FAT slot in FAT buffer
2418    if ( _fat_buffer_fat_lba != lba )
2419    {
2420        if ( _fat_ioc_access( 0,         // no descheduling
2421                              1,         // read
2422                              lba,
2423                              (unsigned int)_fat_buffer_fat,
2424                              8 ) )
2425        {
2426            _printf("\n[FAT ERROR] _next_cluster_no_cache(): "
2427                    "cannot load lba = %x into fat_buffer\n", lba );
2428            return 1;
2429        }
2430
2431        _fat_buffer_fat_lba = lba;
2432    }
2433
2434    // return next cluster index
2435    unsigned int* buf = (unsigned int*)_fat_buffer_fat;
2436    *next = buf[slot_id];
2437    return 0;
2438   
2439}  // end _next_cluster_no_cache()
2440
2441
2442
2443
2444/////////////////////////////////////////////////////////////////
2445static unsigned int _file_info_no_cache( char*          pathname,
2446                                         unsigned int*  file_cluster,
2447                                         unsigned int*  file_size )
2448{
2449   
2450#if (GIET_DEBUG_FAT & 1)
2451if ( _get_proctime() > GIET_DEBUG_FAT )
2452_printf("\n[DEBUG FAT] _file_info_no_cache(): enters for path <%s>\n", pathname );
2453#endif
2454
2455    char            name[32];             // buffer for one name in the analysed pathname
2456    char            lfn1[16];             // buffer for a partial name in LFN entry
2457    char            lfn2[16];             // buffer for a partial name in LFN entry
2458    char            lfn3[16];             // buffer for a partial name in LFN entry
2459    char            cname[32];            // buffer for a full name in a directory entry
2460    unsigned int    nb_read;              // number of characters analysed in path
2461    unsigned int    parent_cluster;       // cluster index for the parent directory
2462    unsigned int    child_cluster = 0;    // cluster index for the searched file/dir
2463    unsigned int    child_size = 0;       // size of the searched file/dir
2464    unsigned int    child_is_dir;         // type of the searched file/dir
2465    unsigned int    offset;               // offset in a 4 Kbytes buffer
2466    unsigned int    ord;                  // ORD field in a directory entry
2467    unsigned int    attr;                 // ATTR field in a directory entry
2468    unsigned int    lfn = 0;              // number of lfn entries
2469    unsigned char*  buf;                  // pointer on a 4 Kbytes buffer
2470    unsigned int    found;                // name found in current directory entry
2471
2472    // Three embedded loops:
2473    // - scan pathname to extract file/dir names,
2474    // - for each name, scan the clusters of the parent directory
2475    // - for each cluster, scan the 4 Kbytes buffer to find the file/dir name
2476    // The starting point is the root directory (cluster 2)
2477
2478    nb_read        = 0;
2479    parent_cluster = 2; 
2480
2481    // scan pathname 
2482    while ( pathname[nb_read] != 0 )   
2483    {
2484        // get searched file/dir name
2485        if ( _get_name_from_path( pathname, name, &nb_read ) ) return 1;
2486
2487#if (GIET_DEBUG_FAT & 1)
2488if ( _get_proctime() > GIET_DEBUG_FAT )
2489_printf("\n[DEBUG FAT] _file_info_no_cache(): search name <%s>"
2490        " in cluster %x\n", name , parent_cluster );
2491#endif
2492        found  = 0;
2493
2494        // scan clusters containing the parent directory
2495        while ( found == 0 ) 
2496        {
2497            // compute lba
2498            unsigned int lba = _cluster_to_lba( parent_cluster );
2499
2500            // load one cluster of the parent directory into data_buffer
2501            if ( _fat_buffer_data_lba != lba )
2502            {
2503                if ( _fat_ioc_access( 0,         // no descheduling
2504                                      1,         // read
2505                                      lba,
2506                                      (unsigned int)_fat_buffer_data,
2507                                      8 ) )
2508                {
2509                    _printf("\n[FAT ERROR] _file_info_no_cache(): "
2510                            "cannot load lba = %x into data_buffer\n", lba );
2511                    return 1;
2512                }
2513
2514                _fat_buffer_data_lba = lba;
2515            }
2516
2517            offset = 0;
2518
2519            // scan this 4 Kbytes buffer
2520            while ( (offset < 4096) && (found == 0) )
2521            {
2522                buf  = _fat_buffer_data + offset;
2523                attr = _read_entry( DIR_ATTR , buf , 0 );   
2524                ord  = _read_entry( LDIR_ORD , buf , 0 );
2525
2526                if (ord == NO_MORE_ENTRY)               // no more entry => break
2527                {
2528                    found = 2;
2529                }
2530                else if ( ord == FREE_ENTRY )           // free entry => skip
2531                {
2532                    offset = offset + 32;
2533                }
2534                else if ( attr == ATTR_LONG_NAME_MASK ) // LFN entry => get partial name
2535                {
2536                    unsigned int seq = ord & 0x3;
2537                    lfn = (seq > lfn) ? seq : lfn;   
2538                    if      ( seq == 1 ) _get_name_from_long( buf, lfn1 );
2539                    else if ( seq == 2 ) _get_name_from_long( buf, lfn2 );
2540                    else if ( seq == 3 ) _get_name_from_long( buf, lfn3 );
2541                    offset = offset + 32;
2542                }
2543                else                                    // NORMAL entry
2544                {
2545                    // build the full mame for current directory entry
2546                    if      ( lfn == 0 )
2547                    {
2548                        _get_name_from_short( buf , cname );
2549                    }
2550                    else if ( lfn == 1 )
2551                    {
2552                        _strcpy( cname      , lfn1 );
2553                    }   
2554                    else if ( lfn == 2 ) 
2555                    {
2556                        _strcpy( cname      , lfn1 );
2557                        _strcpy( cname + 13 , lfn2 );
2558                    }
2559                    else if ( lfn == 3 ) 
2560                    {
2561                        _strcpy( cname      , lfn1 );
2562                        _strcpy( cname + 13 , lfn2 );
2563                        _strcpy( cname + 26 , lfn3 );
2564                    }
2565                   
2566                    // test if extracted name == searched name
2567                    if ( _strcmp( name , cname ) == 0 )
2568                    {
2569                        child_cluster = (_read_entry( DIR_FST_CLUS_HI , buf , 1 ) << 16) |
2570                                        (_read_entry( DIR_FST_CLUS_LO , buf , 1 )      ) ;
2571                        child_is_dir  = ((attr & ATTR_DIRECTORY) == ATTR_DIRECTORY);
2572                        child_size    = _read_entry( DIR_FILE_SIZE , buf , 1 );
2573                        found         = 1;
2574                    }
2575                    offset = offset + 32;
2576                    lfn = 0;
2577                }
2578            }  // en loop on directory entries
2579           
2580            // compute next cluster index
2581            unsigned int next;
2582            if ( _next_cluster_no_cache ( parent_cluster , &next ) ) return 1;
2583            parent_cluster = next;
2584        } // end loop on clusters
2585
2586        if ( found == 2 )  // found end of directory => error
2587        { 
2588            _printf("\n[FAT ERROR] _file_info_no_cache(): <%s> not found\n",
2589                    name );
2590            return 1;
2591        }
2592 
2593        // check type
2594        if ( ((pathname[nb_read] == 0) && (child_is_dir != 0)) ||
2595             ((pathname[nb_read] != 0) && (child_is_dir == 0)) )
2596        {
2597            _printf("\n[FAT ERROR] _file_info_no_cache(): illegal type for <%s>\n", name );
2598            return 1;
2599        }
2600
2601        // update parent_cluster for next name
2602        parent_cluster = child_cluster;
2603
2604    }  // end loop on names
2605
2606#if (GIET_DEBUG_FAT & 1)
2607if ( _get_proctime() > GIET_DEBUG_FAT )
2608_printf("\n[DEBUG FAT] _file_info_no_cache(): success for <%s> / "
2609        "file_size = %x / file_cluster = %x\n", pathname, child_size, child_cluster );
2610#endif
2611
2612    // return file cluster and size
2613    *file_size    = child_size;
2614    *file_cluster = child_cluster;
2615    return 0;
2616
2617}  // end _file_info_no_cache()
2618
2619
2620
2621/////////////////////////////////////////////////////////////////////////////
2622/////////////////////////////////////////////////////////////////////////////
2623//             Extern functions                                               
2624/////////////////////////////////////////////////////////////////////////////
2625/////////////////////////////////////////////////////////////////////////////
2626
2627
2628/////////////////////////////////////////////////////////////////////////////
2629// This function initializes the FAT structures.
2630// - The Fat-Descriptor is always initialized.
2631// - The dynamically allocated structures (the Inode-Tre, the Fat_Cache,
2632//   and the File-Cache for the root directory) are only allocated
2633//   and initialized if the "kernel_mode" argument is set.
2634/////////////////////////////////////////////////////////////////////////////
2635// Implementation note:
2636// This function is called twice, by the boot-loader, and by the kernel_init.
2637// It does not use dynamic memory allocation from the distributed heap.
2638// It use informations found in the boot sector and FS-INFO sector.
2639// that are loaded in the Fat-Descriptor temporary block_buffer.
2640/////////////////////////////////////////////////////////////////////////////
2641// Returns GIET_FAT32_OK on success.
2642// Returns a negative value on error:
2643//   GIET_FAT32_IO_ERROR,
2644//   GIET_FAT32_INVALID_BOOT_SECTOR
2645/////////////////////////////////////////////////////////////////////////////
2646int _fat_init( unsigned int kernel_mode ) 
2647{
2648
2649#if GIET_DEBUG_FAT
2650if ( _get_proctime() > GIET_DEBUG_FAT )
2651_printf("\n[DEBUG FAT] _fat_init(): enters at cycle %d\n", _get_proctime() );
2652#endif
2653
2654    // FAT initialisation should be done only once
2655    if ( _fat.initialized == FAT_INITIALIZED )
2656    {
2657        _printf("\n[FAT WARNING] _fat_init(): FAT already initialized\n");
2658        return GIET_FAT32_OK;
2659    }
2660
2661    // load Boot sector (VBR) into FAT buffer
2662    if ( _fat_ioc_access( 0,                                  // no descheduling
2663                          1,                                  // read
2664                          0,                                  // block index
2665                          (unsigned int)_fat.block_buffer,
2666                          1 ) )                               // one block
2667    {
2668        _printf("\n[FAT ERROR] _fat_init(): cannot load VBR\n");
2669        return GIET_FAT32_IO_ERROR;
2670    }
2671
2672    _fat.block_buffer_lba = 0;
2673   
2674#if GIET_DEBUG_FAT
2675if ( _get_proctime() > GIET_DEBUG_FAT )
2676{
2677    _printf("\n[DEBUG FAT] _fat_init(): Boot sector loaded\n");
2678    _display_one_block( _fat.block_buffer, "block device", _fat.block_buffer_lba );
2679}
2680#endif
2681
2682    // checking various FAT32 assuptions from boot sector
2683    if( _read_entry( BPB_BYTSPERSEC, _fat.block_buffer, 1 ) != 512 )
2684    {
2685        _printf("\n[FAT ERROR] _fat_init(): The sector size must be 512 bytes\n");
2686        return GIET_FAT32_INVALID_BOOT_SECTOR;
2687    }
2688    if( _read_entry( BPB_SECPERCLUS, _fat.block_buffer, 1 ) != 8 )
2689    {
2690        _printf("\n[FAT ERROR] _fat_init(): The cluster size must be 8 blocks\n");
2691        return GIET_FAT32_INVALID_BOOT_SECTOR;
2692    }
2693    if( _read_entry( BPB_NUMFATS, _fat.block_buffer, 1 ) != 1 )
2694    {
2695        _printf("\n[FAT ERROR] _fat_init(): The number of FAT copies in FAT region must be 1\n");
2696        return GIET_FAT32_INVALID_BOOT_SECTOR;
2697    }
2698    if( (_read_entry( BPB_FAT32_FATSZ32, _fat.block_buffer, 1 ) & 0xF) != 0 )
2699    {
2700        _printf("\n[FAT ERROR] _fat_init(): The FAT region must be multiple of 16 sectors\n");
2701        return GIET_FAT32_INVALID_BOOT_SECTOR;
2702    }
2703    if( _read_entry( BPB_FAT32_ROOTCLUS, _fat.block_buffer, 1 ) != 2 )
2704    {
2705        _printf("\n[FAT ERROR] _fat_init(): The root directory must be at cluster 2\n");
2706        return GIET_FAT32_INVALID_BOOT_SECTOR;
2707    }
2708
2709    // initialise Fat-Descriptor from VBR
2710    _fat.sector_size         = 512;
2711    _fat.cluster_size        = 4096;
2712    _fat.fat_sectors         = _read_entry( BPB_FAT32_FATSZ32 , _fat.block_buffer , 1 );
2713    _fat.fat_lba             = _read_entry( BPB_RSVDSECCNT , _fat.block_buffer , 1 );
2714    _fat.data_sectors        = _fat.fat_sectors << 10;
2715    _fat.data_lba            = _fat.fat_lba + _fat.fat_sectors;
2716    _fat.fs_info_lba         = _read_entry( BPB_FAT32_FSINFO , _fat.block_buffer , 1 );
2717    _fat_buffer_fat_lba      = 0xFFFFFFFF;
2718    _fat_buffer_data_lba     = 0xFFFFFFFF;
2719    _fat.initialized         = FAT_INITIALIZED;
2720
2721    // load FS_INFO sector into FAT buffer
2722    if ( _fat_ioc_access( 0,                                // no descheduling
2723                          1,                                // read
2724                          _fat.fs_info_lba,                 // lba
2725                          (unsigned int)_fat.block_buffer,
2726                          1 ) )                             // one block
2727    { 
2728        _printf("\n[FAT ERROR] _fat_init(): cannot load FS_INFO Sector\n"); 
2729        return GIET_FAT32_IO_ERROR;
2730    }
2731
2732    _fat.block_buffer_lba = _fat.fs_info_lba;
2733
2734#if GIET_DEBUG_FAT
2735if ( _get_proctime() > GIET_DEBUG_FAT )
2736{
2737    _printf("\n[DEBUG FAT] _fat_init(): FS-INFO sector loaded\n");
2738    _display_one_block( _fat.block_buffer, "block device", _fat.block_buffer_lba );
2739}
2740#endif
2741
2742    // initialise Fat-Descriptor from FS_INFO
2743    _fat.free_clusters_number   = _read_entry( FS_FREE_CLUSTERS    , _fat.block_buffer, 1);
2744    _fat.first_free_cluster     = _read_entry( FS_FREE_CLUSTER_HINT, _fat.block_buffer, 1);
2745
2746    // This is done only when the _fat_init() is called in kernel mode
2747
2748    if ( kernel_mode )
2749    {
2750        unsigned int i;
2751
2752        // create Inode-Tree root
2753        _fat.inode_tree_root = _allocate_one_inode("/", // dir name
2754                                                   1,   // directory
2755                                                   2,   // cluster id
2756                                                   0,   // no size
2757                                                   0,   // no children
2758                                                   0,   // no dentry
2759                                                   1);  // allocate cache
2760
2761        // initialize lock
2762        _spin_lock_init( &_fat.fat_lock );
2763
2764        // initialize File Descriptor Array
2765        for( i = 0 ; i < GIET_OPEN_FILES_MAX ; i++ ) _fat.fd[i].allocated = 0;
2766
2767        // initialize fat_cache root
2768        _fat.fat_cache_root   = _allocate_one_cache_node( NULL );
2769        _fat.fat_cache_levels = _get_levels_from_size( _fat.fat_sectors << 9 );
2770    }  // end if kernel_mode
2771
2772#if GIET_DEBUG_FAT
2773if ( _get_proctime() > GIET_DEBUG_FAT )
2774_display_fat_descriptor();
2775#endif
2776
2777    return GIET_FAT32_OK;
2778}  // end _fat_init()
2779
2780
2781
2782
2783///////////////////////////////////////////////////////////////////////////////
2784// This function implements the giet_fat_open() system call.
2785// The semantic is similar to the UNIX open() function, but only the O_CREATE
2786// and O_RDONLY flags are supported. The UNIX access rights are not supported.
2787// If the file does not exist in the specified directory, it is created.
2788// If the specified directory does not exist, an error is returned.
2789// It allocates a file descriptor to the calling task, for the file identified
2790// by "pathname". If several tasks try to open the same file, each task 
2791// obtains a private file descriptor.
2792// A node name (file or directory) cannot be larger than 31 characters.
2793///////////////////////////////////////////////////////////////////////////////
2794// Returns a file descriptor index on success.
2795// Returns a negative value on error:
2796//   GIET_FAT32_NOT_INITIALIZED,
2797//   GIET_FAT32_FILE_NOT_FOUND,
2798//   GIET_FAT32_NAME_TOO_LONG,
2799//   GIET_FAT32_IO_ERROR,
2800//   GIET_FAT32_TOO_MANY_OPEN_FILES
2801///////////////////////////////////////////////////////////////////////////////
2802int _fat_open( char*        pathname,     // absolute path from root
2803               unsigned int flags )       // O_CREATE and O_RDONLY
2804{
2805    unsigned int         fd_id;            // index in File-Descriptor-Array
2806    unsigned int         code;             // error code
2807    fat_inode_t*         inode;            // anonymous inode pointer
2808    fat_inode_t*         child;            // pointer on searched file inode
2809    fat_inode_t*         parent;           // pointer on parent directory inode
2810   
2811    // get flags
2812    unsigned int create    = ((flags & O_CREATE) != 0);
2813    unsigned int read_only = ((flags & O_RDONLY) != 0);
2814    unsigned int truncate  = ((flags & O_TRUNC)  != 0);
2815
2816#if GIET_DEBUG_FAT
2817unsigned int procid  = _get_procid();
2818unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
2819unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
2820unsigned int p       = procid & ((1<<P_WIDTH)-1);
2821if ( _get_proctime() > GIET_DEBUG_FAT )
2822_printf("\n[DEBUG FAT] _fat_open(): P[%d,%d,%d] enters for path <%s> / "
2823        " create = %d / read_only = %d\n",
2824        x, y, p, pathname , create , read_only );
2825#endif
2826
2827    // checking FAT initialized
2828    if( _fat.initialized != FAT_INITIALIZED )
2829    {
2830        _printf("\n[FAT ERROR] _fat_open(): FAT not initialized\n");
2831        return GIET_FAT32_NOT_INITIALIZED;
2832    }
2833
2834    // takes the lock
2835    _spin_lock_acquire( &_fat.fat_lock );
2836
2837    // get inode pointer
2838    code = _get_inode_from_path( pathname , &inode );
2839
2840    if ( code == 2 ) 
2841    {
2842        _spin_lock_release( &_fat.fat_lock );
2843        _printf("\n[FAT ERROR] _fat_open(): path to parent not found"
2844                " for file <%s>\n", pathname );
2845        return GIET_FAT32_FILE_NOT_FOUND;
2846    }
2847    else if ( code == 3 ) 
2848    {
2849        _spin_lock_release( &_fat.fat_lock );
2850        _printf("\n[FAT ERROR] _fat_open(): one name in path too long"
2851                " for file <%s>\n", pathname );
2852        return GIET_FAT32_NAME_TOO_LONG;
2853    }
2854    else if ( (code == 1) && (create == 0) )   
2855    {
2856        _spin_lock_release( &_fat.fat_lock );
2857        _printf("\n[FAT ERROR] _fat_open(): file not found"
2858                " for file <%s>\n", pathname );
2859        return GIET_FAT32_FILE_NOT_FOUND;
2860    }
2861    else if ( (code == 1) && (create != 0) )   // file name not found => create
2862    {
2863        // set parent inode pointer
2864        parent = inode;
2865
2866#if GIET_DEBUG_FAT
2867if ( _get_proctime() > GIET_DEBUG_FAT )
2868_printf("\n[DEBUG FAT] _fat_open(): P[%d,%d,%d] create a new file <%s>\n",
2869        x , y , p , pathname );
2870#endif
2871
2872        // get new file name / error check already done by _get_inode_from_path()
2873        char name[32];       
2874        _get_last_name( pathname , name );
2875
2876        // allocate a new inode and an empty Cache-File
2877        child = _allocate_one_inode( name,
2878                                     0,                         // not a directory
2879                                     END_OF_CHAIN_CLUSTER_MAX,  // no cluster allocated
2880                                     0,                         // size : new file is empty
2881                                     0,                         // count incremented later
2882                                     0,                         // dentry set by add_dir_entry
2883                                     1 );                       // cache_allocate
2884
2885        // introduce inode into Inode-Tree
2886        _add_inode_in_tree( child , parent );
2887
2888        // add an entry in the parent directory Cache_file
2889        if ( _add_dir_entry( child , parent ) )
2890        {
2891            _spin_lock_release( &_fat.fat_lock );
2892            _printf("\n[FAT ERROR] _fat_open(): cannot update parent directory"
2893                    " for file <%s>\n" , pathname );
2894            return GIET_FAT32_IO_ERROR;
2895        } 
2896
2897        // update DATA region on block device for parent directory
2898        if ( _update_device_from_cache( parent->levels,
2899                                        parent->cache,
2900                                        parent->name ) )
2901        {
2902            _spin_lock_release( &_fat.fat_lock );
2903            _printf("\n[FAT ERROR] _fat_open(): cannot update DATA region "
2904                    " for parent of file <%s>\n", pathname );
2905            return GIET_FAT32_IO_ERROR;
2906        }
2907
2908        // update FAT region on block device
2909        if ( _update_device_from_cache( _fat.fat_cache_levels,
2910                                        _fat.fat_cache_root,
2911                                        "FAT" ) )
2912        {
2913            _spin_lock_release( &_fat.fat_lock );
2914            _printf("\n[FAT ERROR] _fat_open(): cannot update FAT region"
2915                    " for file <%s>\n", pathname );
2916            return GIET_FAT32_IO_ERROR;
2917        }
2918
2919        // update FS_INFO sector
2920        if ( _update_fs_info() )
2921        {
2922            _spin_lock_release( &_fat.fat_lock );
2923            _printf("\n[FAT ERROR] _fat_open(): cannot update FS-INFO"
2924                    " for file <%s>\n", pathname );
2925            return GIET_FAT32_IO_ERROR;
2926        }
2927
2928        // no need to truncate a new file
2929        truncate = 0;
2930    }
2931    else // code == 0
2932    {
2933        // set searched file inode pointer
2934        child = inode;
2935
2936#if GIET_DEBUG_FAT
2937if ( _get_proctime() > GIET_DEBUG_FAT )
2938_printf("\n[DEBUG FAT] _fat_open(): P[%d,%d,%d] found file <%s> on device : inode = %x\n",
2939        x , y , p , pathname , child );
2940#endif
2941    }
2942
2943    // Search an empty slot in file descriptors array
2944    fd_id = 0;
2945    while ( (_fat.fd[fd_id].allocated) != 0 && (fd_id < GIET_OPEN_FILES_MAX) )
2946    {
2947        fd_id++;
2948    }
2949
2950    // set file descriptor if an empty slot has been found
2951    if ( fd_id >= GIET_OPEN_FILES_MAX )
2952    {
2953        _spin_lock_release( &_fat.fat_lock );
2954        _printf("\n[FAT ERROR] _fat_open(): File-Descriptors-Array full\n");
2955        return GIET_FAT32_TOO_MANY_OPEN_FILES;
2956    }
2957
2958    // update file descriptor
2959    _fat.fd[fd_id].allocated  = 1;
2960    _fat.fd[fd_id].seek       = 0;
2961    _fat.fd[fd_id].read_only  = read_only;
2962    _fat.fd[fd_id].inode      = child;
2963
2964    // increment the refcount
2965    child->count = child->count + 1;
2966
2967    // truncate the file if requested
2968    if ( truncate && !read_only && !child->is_dir )
2969    {
2970        // empty file
2971        child->size = 0;
2972        child->levels = _get_levels_from_size( child->size );
2973
2974        // release File-Cache (keep root node)
2975        _release_cache_memory( child->cache, child->levels );
2976
2977        // release clusters allocated to file/dir in DATA region
2978        if ( _clusters_release( child->cluster ) )
2979        {
2980            _spin_lock_release( &_fat.fat_lock );
2981            _printf("\n[FAT ERROR] _fat_open(): can't truncate file\n");
2982            return GIET_FAT32_IO_ERROR;
2983        }
2984
2985        // update parent directory entry (size and cluster index)
2986        if ( _update_dir_entry( child ) )
2987        {
2988            _spin_lock_release( &_fat.fat_lock );
2989            _printf("\n[FAT ERROR] _fat_open(): can't truncate file\n");
2990            return GIET_FAT32_IO_ERROR;
2991        }
2992    }
2993
2994    // releases the lock
2995    _spin_lock_release( &_fat.fat_lock );
2996
2997#if GIET_DEBUG_FAT
2998if ( _get_proctime() > GIET_DEBUG_FAT )
2999_printf("\n[DEBUG FAT] _fat_open(): P[%d,%d,%d] got fd = %d for <%s> / "
3000        "read_only = %d\n",
3001        x , y , p , fd_id , pathname , read_only );
3002#endif
3003    return fd_id;
3004} // end _fat_open()
3005
3006
3007
3008
3009/////////////////////////////////////////////////////////////////////////////////
3010// This function implements the "giet_fat_close()" system call.
3011// It decrements the inode reference count, and release the fd_id entry
3012// in the file descriptors array.
3013// If the reference count is zero, it writes all dirty clusters on block device,
3014// and releases the memory allocated to the File_Cache.
3015/////////////////////////////////////////////////////////////////////////////////
3016// Returns GIET_FAT32_OK on success.
3017// Returns a negative value on error:
3018//   GIET_FAT32_NOT_INITIALIZED,
3019//   GIET_FAT32_INVALID_FD,
3020//   GIET_FAT32_NOT_OPEN,
3021//   GIET_FAT32_IO_ERROR
3022/////////////////////////////////////////////////////////////////////////////////
3023int _fat_close( unsigned int fd_id )
3024{
3025    // checking FAT initialized
3026    if( _fat.initialized != FAT_INITIALIZED )
3027    {
3028        _printf("\n[FAT ERROR] _fat_close(): FAT not initialized\n");
3029        return GIET_FAT32_NOT_INITIALIZED;
3030    }
3031
3032    if( (fd_id >= GIET_OPEN_FILES_MAX) )
3033    {
3034        _printf("\n[FAT ERROR] _fat_close(): illegal file descriptor index\n");
3035        return GIET_FAT32_INVALID_FD;
3036    } 
3037
3038    // takes lock
3039    _spin_lock_acquire( &_fat.fat_lock );
3040
3041    if( _fat.fd[fd_id].allocated == 0 )
3042    {
3043        _spin_lock_release( &_fat.fat_lock );
3044        _printf("\n[FAT ERROR] _fat_close(): file not open\n");
3045        return GIET_FAT32_NOT_OPEN;
3046    }
3047
3048    // get the inode pointer
3049    fat_inode_t*  inode = _fat.fd[fd_id].inode;
3050
3051    // decrement reference count
3052    inode->count = inode->count - 1;
3053   
3054#if GIET_DEBUG_FAT
3055if ( _get_proctime() > GIET_DEBUG_FAT )
3056_printf("\n[FAT DEBUG] _fat_close() for file <%s> : refcount = %d\n",
3057        inode->name , inode->count );
3058#endif
3059
3060    // update block device and release File-Cache if no more references
3061    if ( inode->count == 0 )
3062    {
3063        // update all dirty clusters for closed file
3064        if ( _update_device_from_cache( inode->levels, 
3065                                        inode->cache,
3066                                        inode->name ) ) 
3067        {
3068            _spin_lock_release( &_fat.fat_lock );
3069            _printf("\n[FAT ERROR] _fat_close(): cannot write dirty clusters "
3070                    "for file <%s>\n", inode->name );
3071            return GIET_FAT32_IO_ERROR;
3072        }
3073
3074#if GIET_DEBUG_FAT
3075if ( _get_proctime() > GIET_DEBUG_FAT )
3076_printf("\n[FAT DEBUG] _fat_close() update device for file <%s>\n", inode->name );
3077#endif
3078
3079        // update directory dirty clusters for parent directory
3080        if ( inode->parent &&
3081             _update_device_from_cache( inode->parent->levels,
3082                                        inode->parent->cache,
3083                                        inode->parent->name ) )
3084        {
3085            _spin_lock_release( &_fat.fat_lock );
3086            _printf("\n[FAT ERROR] _fat_close(): cannot write dirty clusters "
3087                    "for directory <%s>\n", inode->parent->name );
3088            return GIET_FAT32_IO_ERROR;
3089        }
3090
3091#if GIET_DEBUG_FAT
3092if ( _get_proctime() > GIET_DEBUG_FAT )
3093_printf("\n[FAT DEBUG] _fat_close() update device for parent directory <%s>\n",
3094        inode->parent->name );
3095#endif
3096
3097        // release memory allocated to File-Cache (keep cache root node)
3098        _release_cache_memory( inode->cache, inode->levels );
3099
3100#if GIET_DEBUG_FAT
3101if ( _get_proctime() > GIET_DEBUG_FAT )
3102_printf("\n[FAT DEBUG] _fat_close() release memory for File-Cache <%s>\n",
3103        inode->name );
3104#endif
3105
3106    }
3107
3108    // release fd_id entry in file descriptor array
3109    _fat.fd[fd_id].allocated = 0;
3110
3111    // release lock
3112    _spin_lock_release( &_fat.fat_lock );
3113
3114    return GIET_FAT32_OK;
3115} // end fat_close()
3116
3117
3118
3119
3120/////////////////////////////////////////////////////////////////////////////////
3121// This function implements the giet_fat_file_info() system call.
3122// It returns the size, the current offset and the directory info for a file
3123// identified by the "fd_id" argument.
3124/////////////////////////////////////////////////////////////////////////////////
3125// Returns GIET_FAT32_OK on success.
3126// Returns a negative value on error:
3127//   GIET_FAT32_NOT_INITIALIZED,
3128//   GIET_FAT32_INVALID_FD,
3129//   GIET_FAT32_NOT_OPEN
3130/////////////////////////////////////////////////////////////////////////////////
3131int _fat_file_info( unsigned int     fd_id,
3132                    fat_file_info_t* info )
3133{
3134    if ( _fat.initialized != FAT_INITIALIZED )
3135    {
3136        _printf("\n[FAT ERROR] _fat_file_info(): FAT not initialized\n");
3137        return GIET_FAT32_NOT_INITIALIZED;
3138    }
3139
3140    if ( fd_id >= GIET_OPEN_FILES_MAX )
3141    {
3142        _printf("\n[FAT ERROR] _fat_file_info(): illegal file descriptor index\n");
3143        return GIET_FAT32_INVALID_FD;
3144    } 
3145
3146    if ( _fat.fd[fd_id].allocated == 0 )
3147    {
3148        _printf("\n[FAT ERROR] _fat_file_info(): file not open\n");
3149        return GIET_FAT32_NOT_OPEN;
3150    }
3151
3152    info->size   = _fat.fd[fd_id].inode->size;
3153    info->offset = _fat.fd[fd_id].seek;
3154    info->is_dir = _fat.fd[fd_id].inode->is_dir;
3155
3156    return GIET_FAT32_OK;
3157} // end _fat_file_info()
3158
3159
3160
3161
3162/////////////////////////////////////////////////////////////////////////////////
3163// The following function implements the "giet_fat_read()" system call.
3164// It transfers "count" bytes from the File_Cache associated to the file
3165// identified by "fd_id", to the user "buffer", from the current file offset.
3166// In case of miss in the File_Cache, it loads all involved clusters into cache.
3167/////////////////////////////////////////////////////////////////////////////////
3168// Returns the number of bytes actually transfered on success.
3169// Returns 0 if EOF is encountered (offset + count > file_size).
3170// Returns a negative value on error:
3171//   GIET_FAT32_NOT_INITIALIZED,
3172//   GIET_FAT32_INVALID_FD,
3173//   GIET_FAT32_NOT_OPEN,
3174//   GIET_FAT32_IO_ERROR
3175/////////////////////////////////////////////////////////////////////////////////
3176int _fat_read( unsigned int fd_id,          // file descriptor index
3177               paddr_t buffer,              // destination buffer
3178               unsigned int count,          // number of bytes to read
3179               unsigned int phys )          // use physical_memcpy
3180{
3181    // checking FAT initialized
3182    if( _fat.initialized != FAT_INITIALIZED )
3183    {
3184        _printf("\n[FAT ERROR] _fat_write(): FAT not initialized\n");
3185        return GIET_FAT32_NOT_INITIALIZED;
3186    }
3187
3188    // check fd_id overflow
3189    if ( fd_id >= GIET_OPEN_FILES_MAX )
3190    {
3191        _printf("\n[FAT ERROR] _fat_read(): illegal file descriptor\n");
3192        return GIET_FAT32_INVALID_FD;
3193    }
3194
3195    // check file is open
3196    if ( _fat.fd[fd_id].allocated == 0 )
3197    {
3198        _printf("\n[FAT ERROR] _fat_read(): file not open\n");
3199        return GIET_FAT32_NOT_OPEN;
3200    }
3201
3202    // takes lock
3203    _spin_lock_acquire( &_fat.fat_lock );
3204           
3205    // get file inode pointer and offset
3206    fat_inode_t* inode  = _fat.fd[fd_id].inode;
3207    unsigned int seek   = _fat.fd[fd_id].seek;
3208
3209    // check count & seek versus file size
3210    if ( count + seek > inode->size && !inode->is_dir )
3211    {
3212        _spin_lock_release( &_fat.fat_lock );
3213        _printf("\n[FAT ERROR] _fat_read(): file too small"
3214                " / seek = %x / count = %x / file_size = %x\n",
3215                seek , count , inode->size );
3216        return 0;
3217    }
3218
3219    // compute first_cluster_id and first_byte_to_move
3220    unsigned int first_cluster_id   = seek >> 12;
3221    unsigned int first_byte_to_move = seek & 0xFFF;   
3222
3223    // compute last_cluster and last_byte_to_move
3224    unsigned int last_cluster_id   = (seek + count - 1) >> 12;   
3225    unsigned int last_byte_to_move = (seek + count - 1) & 0xFFF;
3226
3227#if GIET_DEBUG_FAT
3228unsigned int procid  = _get_procid();
3229unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
3230unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
3231unsigned int p       = procid & ((1<<P_WIDTH)-1);
3232if ( _get_proctime() > GIET_DEBUG_FAT )
3233_printf("\n[DEBUG FAT] _fat_read(): P[%d,%d,%d] enters for file <%s> "
3234        " / bytes = %x / offset = %x\n"
3235        "first_cluster_id = %x / first_byte_to_move = %x"
3236        " / last_cluster_id = %x / last_byte_to_move = %x\n",
3237        x , y , p , inode->name , count , seek ,
3238        first_cluster_id , first_byte_to_move , last_cluster_id , last_byte_to_move );
3239#endif
3240
3241    // loop on all cluster covering the requested transfer
3242    unsigned int cluster_id;
3243    unsigned int done = 0;
3244    for ( cluster_id = first_cluster_id ; cluster_id <= last_cluster_id ; cluster_id++ )
3245    {
3246        // get pointer on the cluster_id buffer in cache
3247        unsigned char*     cbuf;
3248        fat_cache_desc_t*  pdesc;
3249        if ( _get_buffer_from_cache( inode, 
3250                                     cluster_id,
3251                                     &pdesc ) )
3252        {
3253            _spin_lock_release( &_fat.fat_lock );
3254            _printf("\n[FAT ERROR] _fat_read(): cannot load file <%s>\n",
3255                    inode->name );
3256            return GIET_FAT32_IO_ERROR;
3257        }
3258        cbuf = pdesc->buffer;
3259
3260#if GIET_DEBUG_FAT
3261if ( _get_proctime() > GIET_DEBUG_FAT )
3262_printf("\n[DEBUG FAT] _fat_read(): P[%d,%d,%d] moves cluster_id %d from Cache-File <%s>\n",
3263        x , y , p , cluster_id, inode->name );
3264#endif
3265
3266        // compute memcpy arguments
3267        unsigned char*  source;
3268        unsigned int    nbytes;
3269
3270        if ( (cluster_id == first_cluster_id) && (cluster_id == last_cluster_id) )
3271        {
3272            source = cbuf + first_byte_to_move; 
3273            nbytes = last_byte_to_move - first_byte_to_move + 1;
3274        }
3275        else if ( cluster_id == first_cluster_id )
3276        {
3277            source = cbuf + first_byte_to_move; 
3278            nbytes = 4096 - first_byte_to_move;
3279        }
3280        else if ( cluster_id == last_cluster_id )
3281        {
3282            source = cbuf; 
3283            nbytes = last_byte_to_move + 1;
3284        }
3285        else  // not first / not last
3286        {
3287            source = cbuf; 
3288            nbytes = 4096;
3289        }
3290
3291        // move data
3292        if ( !phys )
3293        {
3294            void* dest = (void*)(unsigned int)buffer + done;
3295
3296            memcpy( dest, source, nbytes );
3297        }
3298        else
3299        {
3300            unsigned int flags;
3301            paddr_t pdest = buffer + done;
3302            paddr_t psource  = _v2p_translate( (unsigned int)source, &flags );
3303
3304            _physical_memcpy( pdest, psource, nbytes );
3305        }
3306
3307        done = done + nbytes;
3308    }
3309
3310#if GIET_DEBUG_FAT
3311if ( _get_proctime() > GIET_DEBUG_FAT )
3312_printf("\n[DEBUG FAT] _fat_read(): P[%d,%d,%d] loaded file <%s> from Cache-File\n",
3313        x , y , p , inode->name );
3314#endif
3315
3316    // update seek
3317    _fat.fd[fd_id].seek += done;
3318
3319    // release lock
3320    _spin_lock_release( &_fat.fat_lock );
3321
3322    return done;
3323} // end _fat_read()
3324
3325
3326
3327
3328/////////////////////////////////////////////////////////////////////////////////
3329// The following function implements the "giet_fat_write()" system call.
3330// It transfers "count" bytes to the fat_cache associated to the file
3331// identified by "fd_id", from the user "buffer", using the current file offset.
3332// It increases the file size and allocate new clusters if (count + offset)
3333// is larger than the current file size. Then it loads and updates all
3334// involved clusters in the cache.
3335/////////////////////////////////////////////////////////////////////////////////
3336// Returns number of bytes actually written on success.
3337// Returns a negative value on error:
3338//   GIET_FAT32_NOT_INITIALIZED,
3339//   GIET_FAT32_INVALID_FD,
3340//   GIET_FAT32_NOT_OPEN,
3341//   GIET_FAT32_READ_ONLY,
3342//   GIET_FAT32_NO_FREE_SPACE,
3343//   GIET_FAT32_IO_ERROR
3344/////////////////////////////////////////////////////////////////////////////////
3345int _fat_write( unsigned int fd_id,    // file descriptor index
3346                void*        buffer,   // source buffer
3347                unsigned int count )   // number of bytes to write
3348{
3349    // checking FAT initialized
3350    if( _fat.initialized != FAT_INITIALIZED )
3351    {
3352        _printf("\n[FAT ERROR] _fat_write(): FAT not initialized\n");
3353        return GIET_FAT32_NOT_INITIALIZED;
3354    }
3355
3356    // takes lock
3357    _spin_lock_acquire( &_fat.fat_lock );
3358           
3359    // check fd_id overflow
3360    if ( fd_id >= GIET_OPEN_FILES_MAX )
3361    {
3362        _spin_lock_release( &_fat.fat_lock );
3363        _printf("\n[FAT ERROR] _fat_write(): illegal file descriptor\n");
3364        return GIET_FAT32_INVALID_FD;
3365    }
3366
3367    // check file open
3368    if ( _fat.fd[fd_id].allocated == 0 )
3369    {
3370        _spin_lock_release( &_fat.fat_lock );
3371        _printf("\n[FAT ERROR] _fat_write(): file not open\n" );
3372        return GIET_FAT32_NOT_OPEN;
3373    }
3374
3375    // check file writable
3376    if ( _fat.fd[fd_id].read_only )
3377    {
3378        _spin_lock_release( &_fat.fat_lock );
3379        _printf("\n[FAT ERROR] _fat_write(): file <%s> is read-only\n",
3380                _fat.fd[fd_id].inode->name );
3381        return GIET_FAT32_READ_ONLY;
3382    }
3383
3384    // get file inode pointer and seek
3385    fat_inode_t* inode  = _fat.fd[fd_id].inode;
3386    unsigned int seek   = _fat.fd[fd_id].seek;
3387
3388#if GIET_DEBUG_FAT
3389unsigned int procid  = _get_procid();
3390unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
3391unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
3392unsigned int p       = procid & ((1<<P_WIDTH)-1);
3393if ( _get_proctime() > GIET_DEBUG_FAT )
3394_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] enters for file <%s> "
3395        " / bytes = %x / seek = %x\n",
3396        x , y , p , inode->name , count , seek );
3397#endif
3398
3399    // chek if file size must be incremented
3400    // and allocate new clusters from FAT if required
3401    unsigned int old_size = inode->size;
3402    unsigned int new_size = seek + count;
3403    if ( new_size > old_size )
3404    {
3405        // update size in inode
3406        inode->size = new_size;
3407 
3408        // compute current and required numbers of clusters
3409        unsigned old_clusters = old_size >> 12;
3410        if ( old_size & 0xFFF ) old_clusters++;
3411
3412        unsigned new_clusters = new_size >> 12;
3413        if ( new_size & 0xFFF ) new_clusters++;
3414
3415        // allocate new clusters from FAT if required
3416        if ( new_clusters > old_clusters )
3417        {
3418
3419#if GIET_DEBUG_FAT
3420if ( _get_proctime() > GIET_DEBUG_FAT )
3421_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] allocates new clusters for file <%s>"
3422        " / current = %d / required = %d\n",
3423        x , y , p , inode->name , old_clusters , new_clusters );
3424#endif
3425            // allocate missing clusters
3426            if ( _clusters_allocate( inode,
3427                                     old_clusters,
3428                                     new_clusters - old_clusters ) )
3429            {
3430                _spin_lock_release( &_fat.fat_lock );
3431                _printf("\n[FAT ERROR] _fat_write(): no free clusters"
3432                        " for file <%s>\n", _fat.fd[fd_id].inode->name );
3433                return GIET_FAT32_NO_FREE_SPACE;
3434            }
3435        }
3436         
3437        // update parent directory entry (size and cluster index)
3438        if ( _update_dir_entry( inode ) )
3439        {
3440            _spin_lock_release( &_fat.fat_lock );
3441            _printf("\n[FAT ERROR] _fat_write(): cannot update parent directory entry"
3442                    " for file <%s>\n", _fat.fd[fd_id].inode->name );
3443            return GIET_FAT32_IO_ERROR;
3444        }
3445           
3446
3447#if GIET_DEBUG_FAT
3448if ( _get_proctime() > GIET_DEBUG_FAT )
3449_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] updates size for file <%s> / size = %x\n",
3450        x , y , p , inode->name , (new_size - old_size) );
3451#endif
3452
3453    }
3454
3455    // compute first_cluster_id and first_byte_to_move
3456    unsigned int first_cluster_id   = seek >> 12;
3457    unsigned int first_byte_to_move = seek & 0xFFF;   
3458
3459    // compute last_cluster and last_byte_to_move
3460    unsigned int last_cluster_id   = (seek + count - 1) >> 12;   
3461    unsigned int last_byte_to_move = (seek + count - 1) & 0xFFF;
3462
3463#if GIET_DEBUG_FAT
3464if ( _get_proctime() > GIET_DEBUG_FAT )
3465_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] starts loop on clusters for file <%s>\n"
3466        "  first_cluster_id = %d / first_byte_to_move = %x"
3467        " / last_cluster_id = %d / last_byte_to_move = %x\n",
3468        x , y , p , inode->name ,
3469        first_cluster_id , first_byte_to_move , last_cluster_id , last_byte_to_move );
3470#endif
3471
3472    // loop on all clusters covering the requested transfer
3473    unsigned int cluster_id;
3474    unsigned int done = 0;
3475    for ( cluster_id = first_cluster_id ; cluster_id <= last_cluster_id ; cluster_id++ )
3476    {
3477        // get pointer on one 4K buffer in File-Cache
3478        unsigned char*     cbuf;
3479        fat_cache_desc_t*  pdesc;
3480        if ( _get_buffer_from_cache( inode,   
3481                                     cluster_id, 
3482                                     &pdesc ) )   
3483        {
3484            _spin_lock_release( &_fat.fat_lock );
3485            _printf("\n[FAT ERROR] _fat_write(): cannot load file <%s>\n",
3486                    inode->name );
3487            return GIET_FAT32_IO_ERROR;
3488        }
3489       
3490        cbuf         = pdesc->buffer;
3491        pdesc->dirty = 1;
3492   
3493#if GIET_DEBUG_FAT
3494if ( _get_proctime() > GIET_DEBUG_FAT )
3495_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] move cluster_id %d to Cache-file <%s>\n",
3496        x , y , p , cluster_id, inode->name );
3497#endif
3498
3499        // compute memcpy arguments
3500        unsigned char* source = (unsigned char*)buffer + done;
3501        unsigned char* dest;
3502        unsigned int   nbytes;
3503        if ( (cluster_id == first_cluster_id) && (cluster_id == last_cluster_id) )
3504        {
3505            dest   = cbuf + first_byte_to_move; 
3506            nbytes = last_byte_to_move - first_byte_to_move + 1;
3507        }
3508        else if ( cluster_id == first_cluster_id )
3509        {
3510            dest   = cbuf + first_byte_to_move; 
3511            nbytes = 4096 - first_byte_to_move;
3512        }
3513        else if ( cluster_id == last_cluster_id )
3514        {
3515            dest   = cbuf; 
3516            nbytes = last_byte_to_move + 1;
3517        }
3518        else
3519        {
3520            dest   = cbuf; 
3521            nbytes = 4096;
3522        }
3523
3524        //move date
3525        memcpy( dest , source , nbytes ); 
3526        done = done + nbytes;
3527
3528    } // end for clusters
3529
3530    // update seek
3531    _fat.fd[fd_id].seek += done;
3532
3533#if GIET_DEBUG_FAT
3534if ( _get_proctime() > GIET_DEBUG_FAT )
3535_printf("\n[DEBUG FAT] _fat_write(): P[%d,%d,%d] store file <%s> into Cache-File\n",
3536        x , y , p , inode->name );
3537#endif
3538
3539    // release lock
3540    _spin_lock_release( &_fat.fat_lock );
3541
3542    return done;
3543} // end _fat_write()
3544
3545
3546
3547/////////////////////////////////////////////////////////////////////////////////
3548// The following function implements the "giet_fat_lseek()" system call.
3549// It repositions the seek in the file descriptor "fd_id", according to
3550// the "seek" and "whence" arguments.
3551// It has the same semantic as the UNIX lseek() function.
3552// Accepted values for whence are SEEK_SET and SEEK_CUR.
3553/////////////////////////////////////////////////////////////////////////////////
3554// Returns new seek value (in bytes) on success.
3555// Returns a negative value on error:
3556//   GIET_FAT32_NOT_INITIALIZED,
3557//   GIET_FAT32_INVALID_FD,
3558//   GIET_FAT32_NOT_OPEN,
3559//   GIET_FAT32_INVALID_ARG
3560/////////////////////////////////////////////////////////////////////////////////
3561int _fat_lseek( unsigned int fd_id,
3562                unsigned int seek,
3563                unsigned int whence )
3564{
3565    // checking FAT initialized
3566    if( _fat.initialized != FAT_INITIALIZED )
3567    {
3568        _printf("\n[FAT ERROR] _fat_lseek(): FAT not initialized\n");
3569        return GIET_FAT32_NOT_INITIALIZED;
3570    }
3571
3572    // check fd_id overflow
3573    if ( fd_id >= GIET_OPEN_FILES_MAX )
3574    {
3575        _printf("\n[FAT ERROR] _fat_lseek(): illegal file descriptor\n");
3576        return GIET_FAT32_INVALID_FD;
3577    }
3578
3579    // takes lock
3580    _spin_lock_acquire( &_fat.fat_lock );
3581
3582    // check file open
3583    if ( _fat.fd[fd_id].allocated == 0 )
3584    {
3585        _spin_lock_release( &_fat.fat_lock );
3586        _printf("\n[FAT ERROR] _fat_lseek(): file not open\n");
3587        return GIET_FAT32_NOT_OPEN;
3588    }
3589
3590    unsigned int  new_seek;
3591
3592    // compute new seek
3593    if      ( whence == SEEK_CUR ) new_seek = _fat.fd[fd_id].seek + seek;
3594    else if ( whence == SEEK_SET ) new_seek = seek;
3595    else
3596    {
3597        _spin_lock_release( &_fat.fat_lock );
3598        _printf("\n[FAT ERROR] _fat_lseek(): illegal whence value\n");
3599        return GIET_FAT32_INVALID_ARG;
3600    }
3601
3602    // update file descriptor offset
3603    _fat.fd[fd_id].seek = new_seek;
3604
3605#if GIET_DEBUG_FAT
3606unsigned int procid  = _get_procid();
3607unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
3608unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
3609unsigned int p       = procid & ((1<<P_WIDTH)-1);
3610if ( _get_proctime() > GIET_DEBUG_FAT )
3611_printf("\n[DEBUG FAT] _fat_lseek(): P[%d,%d,%d] set seek = %x for file <%s>\n",
3612        x , y , p , new_seek , _fat.fd[fd_id].inode->name );
3613#endif
3614
3615    // release lock
3616    _spin_lock_release( &_fat.fat_lock );
3617
3618    return new_seek;
3619}  // end _fat_lseek()
3620
3621
3622
3623/////////////////////////////////////////////////////////////////////////////////
3624// The following function implements the giet_fat_remove() system call.
3625// It deletes the file/directory identified by the "pathname" argument from
3626// the file system, if the remove condition is fulfilled (directory empty,
3627// or file not referenced).
3628// All clusters allocated in the block device DATA region are released.
3629// The FAT region is updated on the block device.
3630// The Inode-Tree is updated.
3631// The associated File_Cache is released.
3632// The Fat_Cache is updated.
3633/////////////////////////////////////////////////////////////////////////////////
3634// Returns GIET_FAT32_OK on success.
3635// Returns a negative value on error:
3636//   GIET_FAT32_NOT_INITIALIZED,
3637//   GIET_FAT32_FILE_NOT_FOUND,
3638//   GIET_FAT32_NAME_TOO_LONG,
3639//   GIET_FAT32_IS_DIRECTORY,
3640//   GIET_FAT32_NOT_A_DIRECTORY,
3641//   GIET_FAT32_IS_OPEN,
3642//   GIET_FAT32_IO_ERROR,
3643//   GIET_FAT32_DIRECTORY_NOT_EMPTY
3644/////////////////////////////////////////////////////////////////////////////////
3645int _fat_remove( char*        pathname,
3646                 unsigned int should_be_dir )
3647{
3648    fat_inode_t*  inode;            // searched file inode pointer
3649
3650#if GIET_DEBUG_FAT
3651unsigned int procid  = _get_procid();
3652unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
3653unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
3654unsigned int p       = procid & ((1<<P_WIDTH)-1);
3655if ( _get_proctime() > GIET_DEBUG_FAT )
3656_printf("\n[DEBUG FAT] _fat_remove(): P[%d,%d,%d] enters for path <%s>\n",
3657        x, y, p, pathname );
3658#endif
3659
3660    // checking FAT initialized
3661    if( _fat.initialized != FAT_INITIALIZED )
3662    {
3663        _printf("\n[FAT ERROR] _fat_remove(): FAT not initialized\n");
3664        return GIET_FAT32_NOT_INITIALIZED;
3665    }
3666
3667    // take the lock
3668    _spin_lock_acquire( &_fat.fat_lock );
3669
3670    // get searched file inode
3671    unsigned int code = _get_inode_from_path( pathname , &inode );
3672
3673#if GIET_DEBUG_FAT
3674if ( _get_proctime() > GIET_DEBUG_FAT )
3675_printf("\n[DEBUG FAT] _fat_remove(): P[%d,%d,%d] found inode %x for <%s> / code = %d\n",
3676        x , y , p , (unsigned int)inode , pathname , code );
3677#endif
3678
3679    if ( (code == 1) || (code == 2) )
3680    {
3681        _spin_lock_release( &_fat.fat_lock );
3682        _printf("\n[FAT ERROR] _fat_remove(): file <%s> not found\n", 
3683                pathname );
3684        return GIET_FAT32_FILE_NOT_FOUND;
3685    }
3686    else if ( code == 3 )
3687    {
3688        _spin_lock_release( &_fat.fat_lock );
3689        _printf("\n[FAT ERROR] _fat_remove(): name too long in <%s>\n",
3690                pathname );
3691        return GIET_FAT32_NAME_TOO_LONG;
3692    }
3693
3694    // check inode type
3695    if ( (inode->is_dir != 0) && (should_be_dir == 0) ) 
3696    {
3697        _spin_lock_release( &_fat.fat_lock );
3698        _printf("\n[FAT ERROR] _fat_remove(): <%s> is a directory\n",
3699                pathname );
3700        return GIET_FAT32_IS_DIRECTORY;
3701    }
3702    if ( (inode->is_dir == 0) && (should_be_dir != 0) )
3703    {
3704        _spin_lock_release( &_fat.fat_lock );
3705        _printf("\n[FAT ERROR] _fat_remove(): <%s> is not a directory\n", 
3706                pathname );
3707        return GIET_FAT32_NOT_A_DIRECTORY;
3708    }
3709
3710#if GIET_DEBUG_FAT
3711if ( _get_proctime() > GIET_DEBUG_FAT )
3712_printf("\n[DEBUG FAT] _fat_remove(): P[%d,%d,%d] checked inode type for <%s>\n",
3713        x , y , p , pathname );
3714#endif
3715   
3716    // check references count for a file
3717    if ( (inode->is_dir == 0) && (inode->count != 0) )
3718    {
3719        _spin_lock_release( &_fat.fat_lock );
3720        _printf("\n[FAT ERROR] _fat_remove(): file <%s> still referenced\n",
3721                pathname );
3722        return GIET_FAT32_IS_OPEN;
3723    }
3724
3725    //  check empty for a directory
3726    if ( inode->is_dir )
3727    {
3728        unsigned int entries;
3729        if ( _get_nb_entries( inode , &entries ) )
3730        {
3731            _spin_lock_release( &_fat.fat_lock );
3732            _printf("\n[FAT ERROR] _fat_remove(): cannot scan directory <%s>\n", 
3733                    pathname );
3734            return GIET_FAT32_IO_ERROR;
3735        }
3736        else if ( entries > 2 )
3737        {
3738            _spin_lock_release( &_fat.fat_lock );
3739            _printf("\n[FAT ERROR] _fat_remove(): directory <%s> not empty\n", 
3740                    pathname );
3741            return GIET_FAT32_DIRECTORY_NOT_EMPTY;
3742        }
3743    }
3744
3745#if GIET_DEBUG_FAT
3746if ( _get_proctime() > GIET_DEBUG_FAT )
3747_printf("\n[DEBUG FAT] _fat_remove(): P[%d,%d,%d] checked remove condition OK for <%s>\n",
3748        x , y , p , pathname );
3749#endif
3750   
3751    // remove the file or directory from the file system
3752    if ( _remove_node_from_fs( inode ) )
3753    {
3754        _spin_lock_release( &_fat.fat_lock );
3755        _printf("\n[FAT ERROR] _fat_remove(): cannot remove <%s> from FS\n",
3756                pathname );
3757        return GIET_FAT32_IO_ERROR;
3758    }
3759
3760    // release lock and return success
3761    _spin_lock_release( &_fat.fat_lock );
3762
3763#if GIET_DEBUG_FAT
3764if ( _get_proctime() > GIET_DEBUG_FAT )
3765_printf("\n[DEBUG FAT] _fat_remove(): P[%d,%d,%d] removed  <%s> from FS\n",
3766        x, y, p, pathname );
3767#endif
3768   
3769    return GIET_FAT32_OK;
3770       
3771}  // end _fat_remove()
3772
3773
3774
3775
3776
3777/////////////////////////////////////////////////////////////////////////////////
3778// This function implements the giet_fat_rename() system call.
3779// It moves an existing file or directory from one node (defined by "old_path"
3780// argument) to another node (defined by "new_path" argument) in the FS tree.
3781// The type (file/directory) and content are not modified.
3782// If the new_path file/dir exist, it is removed from the file system, but only 
3783// if the remove condition is respected (directory empty / file not referenced).
3784// The removed entry is only removed after the new entry is actually created.
3785/////////////////////////////////////////////////////////////////////////////////
3786// Returns GIET_FAT32_OK on success.
3787// Returns a negative value on error:
3788//   GIET_FAT32_NOT_INITIALIZED,
3789//   GIET_FAT32_FILE_NOT_FOUND,
3790//   GIET_FAT32_MOVE_INTO_SUBDIR,
3791//   GIET_FAT32_IO_ERROR,
3792//   GIET_FAT32_DIRECTORY_NOT_EMPTY,
3793//   GIET_FAT32_IS_OPEN
3794/////////////////////////////////////////////////////////////////////////////////
3795int _fat_rename( char*  old_path,
3796                 char*  new_path )
3797{
3798    fat_inode_t*  inode;        // anonymous inode pointer
3799    fat_inode_t*  old;          // inode identified by old_path      => to be deleted
3800    fat_inode_t*  new;          // inode identified by new_path      => to be created
3801    fat_inode_t*  old_parent;   // parent inode  in old_path         => to be modified
3802    fat_inode_t*  new_parent;   // parent inode  in new_path         => to be modified
3803    fat_inode_t*  to_remove;    // previouly identified by new_path  => to be removed
3804    unsigned int  code;
3805
3806#if GIET_DEBUG_FAT
3807unsigned int procid  = _get_procid();
3808unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
3809unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
3810unsigned int p       = procid & ((1<<P_WIDTH)-1);
3811if ( _get_proctime() > GIET_DEBUG_FAT )
3812_printf("\n[DEBUG FAT] _fat_rename(): P[%d,%d,%d] enters to move <%s> to <%s>\n",
3813        x , y , p , old_path , new_path );
3814#endif
3815
3816    // checking FAT initialized
3817    if( _fat.initialized != FAT_INITIALIZED )
3818    {
3819        _printf("\n[FAT ERROR] _fat_rename(): FAT not initialized\n");
3820        return GIET_FAT32_NOT_INITIALIZED;
3821    }
3822
3823    // take the lock
3824    _spin_lock_acquire( &_fat.fat_lock );
3825
3826    // get "old" and "old_parent" inode pointers
3827    if ( _get_inode_from_path( old_path , &inode ) )
3828    {
3829        _spin_lock_release( &_fat.fat_lock );
3830        _printf("\n[FAT ERROR] _fat_rename(): <%s> not found\n", old_path );
3831        return GIET_FAT32_FILE_NOT_FOUND;
3832    }
3833    else
3834    {
3835        old        = inode;
3836        old_parent = inode->parent;
3837    }
3838
3839    // get "to_removed" and "new_parent" inode pointers
3840    code = _get_inode_from_path( new_path , &inode );
3841
3842    if ( code == 0 )       // new_path inode already exist
3843    {
3844        if ( inode == old )  // the file will replace itself, do nothing
3845        {
3846            _spin_lock_release( &_fat.fat_lock );
3847            return GIET_FAT32_OK;
3848        }
3849
3850        to_remove        = inode;
3851        new_parent       = inode->parent;
3852    }
3853    else if ( code == 1 )  // to_remove does not exist but parent exist
3854    {
3855        to_remove        = NULL;
3856        new_parent       = inode;
3857    }
3858    else                   // parent directory in new_path not found
3859    {
3860        _spin_lock_release( &_fat.fat_lock );
3861        _printf("\n[FAT ERROR] _fat_rename(): <%s> not found\n", new_path );
3862        return GIET_FAT32_FILE_NOT_FOUND;
3863    }
3864
3865    // check for move into own subdirectory
3866    if ( _is_ancestor( old, new_parent ) )
3867    {
3868        _spin_lock_release( &_fat.fat_lock );
3869        _printf("\n[FAT ERROR] _fat_rename(): can't move %s into its own subdirectory\n", old_path );
3870        return GIET_FAT32_MOVE_INTO_SUBDIR;
3871    }
3872
3873#if GIET_DEBUG_FAT
3874if ( _get_proctime() > GIET_DEBUG_FAT )
3875{
3876if ( to_remove )
3877_printf("\n[DEBUG FAT] _fat_rename(): old_parent = %s / old = %s / new_parent = %s "
3878        "/ to_remove = %s\n",
3879        old_parent->name , old->name , new_parent->name , to_remove->name );
3880else
3881_printf("\n[DEBUG FAT] _fat_rename(): old_parent = %s / old = %s / new_parent = %s "
3882        "/ no remove\n", 
3883        old_parent->name , old->name , new_parent->name );
3884}
3885#endif
3886
3887    // check remove condition for "to_remove" inode
3888    if ( to_remove )
3889    {
3890        if ( to_remove->is_dir )   // it's a directory
3891        {
3892            unsigned int entries;
3893            if ( _get_nb_entries( to_remove , &entries ) )
3894            {
3895                _spin_lock_release( &_fat.fat_lock );
3896                _printf("\n[FAT ERROR] _fat_rename(): cannot scan directory <%s>\n", 
3897                        to_remove->name );
3898                return GIET_FAT32_IO_ERROR;
3899            }
3900            else if ( entries > 2 )
3901            {
3902                _spin_lock_release( &_fat.fat_lock );
3903                _printf("\n[FAT ERROR] _fat_rename(): directory <%s> not empty\n", 
3904                        to_remove->name );
3905                return GIET_FAT32_DIRECTORY_NOT_EMPTY;
3906            }
3907        }
3908        else                       // it's a file
3909        {
3910            if ( to_remove->count ) 
3911            {
3912                _spin_lock_release( &_fat.fat_lock );
3913                _printf("\n[FAT ERROR] _fat_rename(): file <%s> still referenced\n", 
3914                        to_remove->name );
3915                return GIET_FAT32_IS_OPEN;
3916            }
3917        }
3918    }
3919
3920#if GIET_DEBUG_FAT
3921if ( _get_proctime() > GIET_DEBUG_FAT )
3922_printf("\n[FAT DEBUG] _fat_rename(): P[%d,%d,%d] checked remove condition OK\n",
3923        x , y , p );
3924#endif
3925
3926    // get new last name / error checking already done by _get_inode_from_path()
3927    char  new_name[32];
3928    _get_last_name( new_path , new_name );
3929
3930    // allocate "new" inode
3931    new = _allocate_one_inode( new_name,
3932                               old->is_dir,
3933                               old->cluster,
3934                               old->size,
3935                               0,              // count
3936                               0,              // dentry
3937                               0 );            // no cache_allocate
3938 
3939    // give the "old" File-Cache to the "new inode
3940    new->levels = old->levels;
3941    new->cache  = old->cache;
3942
3943    // add "new" to "new_parent" directory File-Cache
3944    if ( _add_dir_entry( new , new_parent ) )
3945    {
3946        _spin_lock_release( &_fat.fat_lock );
3947        _printf("\n[FAT ERROR] _fat_rename(): cannot add <%s> into <%s>\n",
3948                new->name , new_parent->name );
3949        return GIET_FAT32_IO_ERROR;
3950    }
3951
3952    // add "new" to "new_parent" directory in Inode-Tree
3953    _add_inode_in_tree( new , new_parent );
3954   
3955    // updates "new_parent" directory on device
3956    if ( _update_device_from_cache( new_parent->levels,
3957                                    new_parent->cache,
3958                                    new_parent->name ) )
3959    {
3960        _spin_lock_release( &_fat.fat_lock );
3961        _printf("\n[FAT ERROR] _fat_rename(): cannot update <%s> on device\n",
3962                    new_parent->name );
3963        return GIET_FAT32_IO_ERROR;
3964    }
3965
3966    // remove "old" from "old_parent" File-Cache
3967    if ( _remove_dir_entry( old ) )
3968    {
3969        _spin_lock_release( &_fat.fat_lock );
3970        _printf("\n[FAT ERROR] _fat_rename(): cannot remove <%s> from <%s>\n",
3971                old->name , old_parent->name );
3972        return GIET_FAT32_IO_ERROR;
3973    }
3974 
3975    // remove "old" inode from Inode-Tree
3976    _remove_inode_from_tree( old );
3977
3978    // release "old" inode
3979    _free( old );
3980
3981    // updates "old_parent" directory on device
3982    if ( _update_device_from_cache( old_parent->levels,
3983                                    old_parent->cache,
3984                                    old_parent->name ) )
3985    {
3986        _spin_lock_release( &_fat.fat_lock );
3987        _printf("\n[FAT ERROR] _fat_rename(): cannot update <%s> on device\n",
3988                    old_parent->name );
3989        return GIET_FAT32_IO_ERROR;
3990    }
3991
3992    // remove "to_remove" from File System (if required)
3993    if ( to_remove )
3994    {
3995        if ( _remove_node_from_fs( to_remove ) )
3996        {
3997            _spin_lock_release( &_fat.fat_lock );
3998            _printf("\n[FAT ERROR] _fat_rename(): cannot remove <%s> from FS\n",
3999                    to_remove->name );
4000            return GIET_FAT32_IO_ERROR;
4001        }
4002    }
4003
4004    // release lock
4005    _spin_lock_release( &_fat.fat_lock );
4006
4007    return GIET_FAT32_OK;
4008}  // end _fat_rename()
4009
4010
4011
4012
4013/////////////////////////////////////////////////////////////////////////////////
4014// The following function implements the giet_fat_mkdir() system call.
4015// It creates in file system the directory specified by the "pathname" argument.
4016// The Inode-Tree is updated.
4017// One cluster is allocated to the new directory.
4018// The associated File-Cache is created.
4019// The FAT region on block device is updated.
4020// The DATA region on block device is updated.
4021/////////////////////////////////////////////////////////////////////////////////
4022// Returns GIET_FAT32_OK on success.
4023// Returns a negative value on error:
4024//   GIET_FAT32_NOT_INITIALIZED,
4025//   GIET_FAT32_FILE_NOT_FOUND,
4026//   GIET_FAT32_NAME_TOO_LONG,
4027//   GIET_FAT32_FILE_EXISTS,
4028//   GIET_FAT32_NO_FREE_SPACE,
4029//   GIET_FAT32_IO_ERROR
4030/////////////////////////////////////////////////////////////////////////////////
4031int _fat_mkdir( char* pathname )
4032{
4033    fat_inode_t*         inode;            // anonymous inode pointer
4034    fat_inode_t*         child;            // searched directory inode pointer
4035    fat_inode_t*         parent;           // parent directory inode pointer
4036
4037#if GIET_DEBUG_FAT
4038unsigned int procid  = _get_procid();
4039unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
4040unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
4041unsigned int p       = procid & ((1<<P_WIDTH)-1);
4042if ( _get_proctime() > GIET_DEBUG_FAT )
4043_printf("\n[DEBUG FAT] _fat_mkdir(): P[%d,%d,%d] enters for path <%s>\n",
4044        x, y, p, pathname );
4045#endif
4046
4047    // checking FAT initialized
4048    if( _fat.initialized != FAT_INITIALIZED )
4049    {
4050        _printf("\n[FAT ERROR] _fat_mkdir(): FAT not initialized\n");
4051        return GIET_FAT32_NOT_INITIALIZED;
4052    }
4053
4054    // takes the lock
4055    _spin_lock_acquire( &_fat.fat_lock );
4056   
4057    // get inode
4058    unsigned int code = _get_inode_from_path( pathname , &inode );
4059
4060    if ( code == 2 ) 
4061    {
4062        _spin_lock_release( &_fat.fat_lock );
4063        _printf("\n[FAT ERROR] _fat_mkdir(): path to parent not found"
4064                " for directory <%s>\n", pathname );
4065        return GIET_FAT32_FILE_NOT_FOUND;
4066    }
4067    else if ( code == 3 ) 
4068    {
4069        _spin_lock_release( &_fat.fat_lock );
4070        _printf("\n[FAT ERROR] _fat_mkdir(): one name in path too long"
4071                " for directory  <%s>\n", pathname );
4072        return GIET_FAT32_NAME_TOO_LONG;
4073    }
4074    else if ( code == 0 )
4075    {
4076        _spin_lock_release( &_fat.fat_lock );
4077        _printf("\n[FAT ERROR] _fat_mkdir(): directory <%s> already exist\n",
4078                pathname );
4079        return GIET_FAT32_FILE_EXISTS;
4080    }
4081    else if ( code == 1 )   // directory not found => create
4082    {
4083        parent = inode;
4084
4085#if GIET_DEBUG_FAT
4086if ( _get_proctime() > GIET_DEBUG_FAT )
4087_printf("\n[DEBUG FAT] _fat_mkdir(): P[%d,%d,%d] create new directory <%s>\n",
4088        x , y , p , pathname );
4089#endif
4090
4091        // get directory name / error check already done by _get_inode_from_path()
4092        char name[32];       
4093        _get_last_name( pathname , name );
4094
4095        // allocate one cluster from FAT for the new directory
4096        unsigned int cluster;
4097        if ( _allocate_one_cluster( &cluster ) )
4098        {
4099            _spin_lock_release( &_fat.fat_lock );
4100            _printf("\n[FAT ERROR] _fat_mkdir(): no free cluster"
4101                    " for directory <%s>\n" , pathname );
4102            return GIET_FAT32_NO_FREE_SPACE;
4103        }
4104
4105        // allocate a new inode and an empty Cache-File
4106        child = _allocate_one_inode( name,
4107                                     1,           // it's a directory
4108                                     cluster, 
4109                                     0,           // size not defined
4110                                     0,           // count
4111                                     0,           // dentry set by _add_dir_entry()
4112                                     1 );         // cache_allocate
4113
4114        // introduce inode in Inode-Tree
4115        _add_inode_in_tree( child , parent );
4116 
4117        // allocate and initialise one 4 Kbytes buffer and associated descriptor
4118        _allocate_one_buffer( child,
4119                              0,            // cluster_id,
4120                              cluster );
4121
4122        _add_special_directories( child, 
4123                                  parent );
4124
4125        // add an entry in the parent directory Cache_file
4126        if ( _add_dir_entry( child , parent ) )
4127        { 
4128            _spin_lock_release( &_fat.fat_lock );
4129            _printf("\n[FAT ERROR] _fat_mkdir(): cannot update parent directory"
4130                    " for directory <%s>\n" , pathname );
4131            return GIET_FAT32_IO_ERROR;
4132        } 
4133
4134        // update DATA region on block device for parent directory
4135        if ( _update_device_from_cache( parent->levels,
4136                                        parent->cache,
4137                                        parent->name ) )
4138        {
4139            _spin_lock_release( &_fat.fat_lock );
4140            _printf("\n[FAT ERROR] _fat_mkdir(): cannot update DATA region "
4141                    " for parent of directory <%s>\n", pathname );
4142            return GIET_FAT32_IO_ERROR;
4143        }
4144
4145        // update FAT region on block device
4146        if ( _update_device_from_cache( _fat.fat_cache_levels,
4147                                        _fat.fat_cache_root,
4148                                        "FAT" ) )
4149        {
4150            _spin_lock_release( &_fat.fat_lock );
4151            _printf("\n[FAT ERROR] _fat_mkdir(): cannot update FAT region"
4152                    " for directory <%s>\n", pathname );
4153            return GIET_FAT32_IO_ERROR;
4154        }
4155
4156        // update FS_INFO sector
4157        if ( _update_fs_info() )
4158        {
4159            _spin_lock_release( &_fat.fat_lock );
4160            _printf("\n[FAT ERROR] _fat_mkdir(): cannot update FS-INFO"
4161                    " for directory <%s>\n", pathname );
4162            return GIET_FAT32_IO_ERROR;
4163        }
4164
4165        // update DATA region on block device for the new directory
4166        if ( _update_device_from_cache( child->levels,   
4167                                        child->cache,
4168                                        child->name ) )
4169        {
4170            _spin_lock_release( &_fat.fat_lock );
4171            _printf("\n[FAT ERROR] _fat_mkdir(): cannot update DATA region"
4172                    " for directory <%s>\n", pathname );
4173            return GIET_FAT32_IO_ERROR;
4174        }
4175    }  // end create directory
4176
4177    // release lock
4178    _spin_lock_release( &_fat.fat_lock );
4179
4180    return GIET_FAT32_OK;
4181}  // end _fat_mkdir()
4182
4183
4184
4185
4186///////////////////////////////////////////////////////////////////////////////
4187// This function implements the giet_fat_opendir() system call.
4188// The semantic is similar to the UNIX opendir() function.
4189// If the specified directory does not exist, an error is returned.
4190// It allocates a file descriptor to the calling task, for the directory
4191// identified by "pathname". If several tasks try to open the same directory,
4192// each task obtains a private file descriptor.
4193// A node name cannot be larger than 31 characters.
4194///////////////////////////////////////////////////////////////////////////////
4195// Returns a file descriptor for the directory index on success
4196// Returns a negative value on error:
4197//   GIET_FAT32_NOT_INITIALIZED,
4198//   GIET_FAT32_NAME_TOO_LONG,
4199//   GIET_FAT32_FILE_NOT_FOUND,
4200//   GIET_FAT32_TOO_MANY_OPEN_FILES,
4201//   GIET_FAT32_NOT_A_DIRECTORY
4202///////////////////////////////////////////////////////////////////////////////
4203extern int _fat_opendir( char* pathname )
4204{
4205    int fd_id = _fat_open( pathname, O_RDONLY );
4206
4207    if ( fd_id < 0 )
4208        return fd_id;
4209
4210    if ( !_fat.fd[fd_id].inode->is_dir )
4211    {
4212        _printf("\n[FAT ERROR] _fat_opendir(): <%s> is not a directory\n",
4213                pathname );
4214        return GIET_FAT32_NOT_A_DIRECTORY;
4215    }
4216
4217    return fd_id;
4218}
4219
4220
4221
4222
4223/////////////////////////////////////////////////////////////////////////////////
4224// This function implements the "giet_fat_closedir()" system call.
4225// Same behavior as _fat_close(), no check for directory.
4226/////////////////////////////////////////////////////////////////////////////////
4227// Returns GIET_FAT32_OK on success.
4228// Returns a negative value on error:
4229//   GIET_FAT32_NOT_INITIALIZED,
4230//   GIET_FAT32_INVALID_FD,
4231//   GIET_FAT32_NOT_OPEN,
4232//   GIET_FAT32_IO_ERROR
4233/////////////////////////////////////////////////////////////////////////////////
4234extern int _fat_closedir( unsigned int fd_id )
4235{
4236    return _fat_close( fd_id );
4237}
4238
4239
4240
4241
4242/////////////////////////////////////////////////////////////////////////////////
4243// This function implements the "giet_fat_readdir()" system call.
4244// It reads one directory entry from the file descriptor opened by
4245// "giet_fat_opendir()" and writes its info to the "entry" argument.
4246// This includes the cluster, size, is_dir and name info for each entry.
4247/////////////////////////////////////////////////////////////////////////////////
4248// Returns GIET_FAT32_OK on success.
4249// Returns a negative value on error:
4250//   GIET_FAT32_NOT_INITIALIZED,
4251//   GIET_FAT32_INVALID_FD,
4252//   GIET_FAT32_NOT_OPEN,
4253//   GIET_FAT32_NOT_A_DIRECTORY,
4254//   GIET_FAT32_IO_ERROR,
4255//   GIET_FAT32_NO_MORE_ENTRIES
4256/////////////////////////////////////////////////////////////////////////////////
4257extern int _fat_readdir( unsigned int  fd_id,
4258                         fat_dirent_t* entry )
4259{
4260    unsigned int  lfn   = 0;            // lfn entries count
4261    unsigned int  attr;                 // ATTR field value
4262    unsigned int  ord;                  // ORD field value
4263    char          lfn1[16];             // temporary buffer for string in LFN1
4264    char          lfn2[16];             // temporary buffer for string in LFN2
4265    char          lfn3[16];             // temporary buffer for string in LFN3
4266    unsigned char buf[DIR_ENTRY_SIZE];  // raw entry buffer
4267    fat_file_info_t info;
4268
4269    // check for directory
4270    int ret = _fat_file_info( fd_id, &info );
4271    if (ret < 0)
4272    {
4273        return ret;
4274    }
4275    else if ( !info.is_dir )
4276    {
4277        _printf("\n[FAT ERROR] _fat_readdir(): not a directory\n" );
4278        return GIET_FAT32_NOT_A_DIRECTORY;
4279    }
4280
4281    while ( 1 )
4282    {
4283        if ( _fat_read( fd_id, (unsigned int)&buf, sizeof(buf), 0 ) != sizeof(buf) )
4284        {
4285            _printf("\n[FAT ERROR] _fat_readdir(): can't read entry\n" );
4286            return GIET_FAT32_IO_ERROR;
4287        }
4288
4289        attr = _read_entry( DIR_ATTR, buf, 0 );
4290        ord  = _read_entry( LDIR_ORD, buf, 0 );
4291
4292        if (ord == NO_MORE_ENTRY)               // no more entry in directory => stop
4293        {
4294            // seek back to this entry
4295            _spin_lock_acquire( &_fat.fat_lock );
4296            _fat.fd[fd_id].seek -= DIR_ENTRY_SIZE;
4297            _spin_lock_release( &_fat.fat_lock );
4298
4299            return GIET_FAT32_NO_MORE_ENTRIES;
4300        }
4301        else if ( ord == FREE_ENTRY )           // free entry => skip
4302        {
4303            continue;
4304        }
4305        else if ( attr == ATTR_LONG_NAME_MASK ) // LFN entry => get partial names
4306        {
4307            unsigned int seq = ord & 0x3;
4308            lfn = (seq > lfn) ? seq : lfn;
4309            if      ( seq == 1 ) _get_name_from_long( buf, lfn1 );
4310            else if ( seq == 2 ) _get_name_from_long( buf, lfn2 );
4311            else if ( seq == 3 ) _get_name_from_long( buf, lfn3 );
4312            continue;
4313        }
4314        else                                    // NORMAL entry => stop
4315        {
4316            break;
4317        }
4318    }
4319
4320    // TODO handle is_vid
4321    entry->cluster = (_read_entry( DIR_FST_CLUS_HI, buf, 1 ) << 16) |
4322                     (_read_entry( DIR_FST_CLUS_LO, buf, 1 )      ) ;
4323    entry->size    = (_read_entry( DIR_FILE_SIZE  , buf, 1 )      ) ;
4324    entry->is_dir  = ((attr & ATTR_DIRECTORY) == ATTR_DIRECTORY);
4325
4326    if      ( lfn == 0 )
4327    {
4328        _get_name_from_short( buf, entry->name );
4329    }
4330    else if ( lfn == 1 )
4331    {
4332        _strcpy( entry->name     , lfn1 );
4333    }
4334    else if ( lfn == 2 )
4335    {
4336        _strcpy( entry->name     , lfn1 );
4337        _strcpy( entry->name + 13, lfn2 );
4338    }
4339    else if ( lfn == 3 )
4340    {
4341        _strcpy( entry->name     , lfn1 );
4342        _strcpy( entry->name + 13, lfn2 );
4343        _strcpy( entry->name + 26, lfn3 );
4344    }
4345
4346    return GIET_FAT32_OK;
4347}
4348
4349
4350
4351
4352///////////////////////////////////////////////////////////////////////////////
4353// This function loads a file identified by the "pathname" argument into the
4354// memory buffer defined by the "buffer_vbase" and "buffer_size" arguments.
4355// It is intended to be called by the boot-loader, as it does not use the
4356// dynamically allocated FAT structures (Inode-Tree, Fat_Cache or File-Cache,
4357// File-Descriptor-Array).
4358// It uses only the 512 bytes buffer defined in the FAT descriptor.
4359///////////////////////////////////////////////////////////////////////////////
4360// Returns GIET_FAT32_OK on success.
4361// Returns negative value on error:
4362//   GIET_FAT32_NOT_INITIALIZED
4363//   GIET_FAT32_FILE_NOT_FOUND
4364//   GIET_FAT32_BUFFER_TOO_SMALL
4365//   GIET_FAT32_IO_ERROR
4366///////////////////////////////////////////////////////////////////////////////
4367int _fat_load_no_cache( char*        pathname,
4368                        unsigned int buffer_vbase, 
4369                        unsigned int buffer_size ) 
4370{
4371    // checking FAT initialized
4372    if( _fat.initialized != FAT_INITIALIZED )
4373    {
4374        _printf("\n[FAT ERROR] _fat_load_no_cache(): FAT not initialized\n");
4375        return GIET_FAT32_NOT_INITIALIZED;
4376    }
4377
4378    unsigned int  file_size;
4379    unsigned int  cluster;
4380
4381#if GIET_DEBUG_FAT
4382unsigned int procid  = _get_procid();
4383unsigned int x       = procid >> (Y_WIDTH + P_WIDTH);
4384unsigned int y       = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1);
4385unsigned int p       = procid & ((1<<P_WIDTH)-1);
4386if ( _get_proctime() > GIET_DEBUG_FAT )
4387_printf("\n[DEBUG FAT] _fat_load_no_cache(): P[%d,%d,%d] enters for file <%s>\n",
4388        x , y , p , pathname );
4389#endif
4390
4391    // get file size, and cluster index in FAT
4392    if ( _file_info_no_cache( pathname,
4393                              &cluster,
4394                              &file_size ) )
4395    {
4396        _printf("\n[FAT ERROR] _fat_load_no_cache(): file <%s> not found\n",
4397        pathname );
4398        return GIET_FAT32_FILE_NOT_FOUND;
4399    }
4400
4401    // check buffer size
4402    if ( file_size > buffer_size )
4403    {
4404        _printf("\n[FAT ERROR] _fat_load_no_cache(): buffer too small : "
4405                "file_size = %x / buffer_size = %x", file_size , buffer_size );
4406        return GIET_FAT32_BUFFER_TOO_SMALL;
4407    }
4408
4409    // compute total number of clusters to read
4410    unsigned int nb_clusters = file_size >> 12;
4411    if ( file_size & 0xFFF ) nb_clusters++;
4412
4413    // initialise buffer address
4414    unsigned int dst = buffer_vbase;
4415
4416    // loop on the clusters containing the file
4417    while ( nb_clusters > 0 )
4418    {
4419        unsigned int lba = _cluster_to_lba( cluster );
4420
4421        if( _fat_ioc_access( 0,         // no descheduling
4422                             1,         // read
4423                             lba, 
4424                             dst, 
4425                             8 ) )      // 8 blocks
4426        {
4427            _printf("\n[FAT ERROR] _fat_load_no_cache(): cannot load lba %x", lba );
4428            return GIET_FAT32_IO_ERROR;
4429        }
4430         
4431
4432        // compute next cluster index
4433        unsigned int next;
4434        if ( _next_cluster_no_cache( cluster , &next ) )
4435        {
4436            _printf("\n[FAT ERROR] _fat_load_no_cache(): cannot get next cluster "
4437                    " for cluster = %x\n", cluster );
4438            return GIET_FAT32_IO_ERROR;
4439        }
4440       
4441        // update variables for next iteration
4442        nb_clusters = nb_clusters - 1;
4443        dst         = dst + 4096;
4444        cluster     = next;
4445    }
4446         
4447#if GIET_DEBUG_FAT
4448if ( _get_proctime() > GIET_DEBUG_FAT )
4449_printf("\n[DEBUG FAT] _fat_load_no_cache(): P[%d,%d,%d] loaded <%s> at vaddr = %x"
4450        " / size = %x\n", x , y , p , pathname , buffer_vbase , file_size );
4451#endif
4452
4453    return GIET_FAT32_OK;
4454}  // end _fat_load_no_cache()
4455
4456
4457
4458// Local Variables:
4459// tab-width: 4
4460// c-basic-offset: 4
4461// c-file-offsets:((innamespace . 0)(inline-open . 0))
4462// indent-tabs-mode: nil
4463// End:
4464// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
4465
Note: See TracBrowser for help on using the repository browser.