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

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

fat32: handle . and .. in _get_inode_from_path()

It is now possible to go up or to stay on the same level of the
inode tree.

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