1
10
13
14
20
21
22
23
24
25
26
27
28
29
30
31
32
33
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
93
94
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
208
214
215
216
217
218
219
220
221
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
276
277
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
322
323
324
325
326
327
328
329
330
331
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
359
360
361
366
367
368
369
370
371
373
374
375
376
377
378
379
381
382
383
384
385
386
387
388
389
393
394
395
396
397
398
399
400
401
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
453
454
455
456
457
459
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
493
494
495
496
497
498
499
500
504
505
506
507
508
514
515
516
517
518
519
520
521
522
523
524
525
530
531
532
538
539
540
541
542
543
544
545
546
550
551
553
557
558
559
568
569
570
578
579
580
586
587
588
589
590
591
592
593
594
596
604
605
607
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
682
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
724
725
726
727
729
730
731
732
733
734
735
736
737
738
742
746
750
751
752
753
754
755
756
757
758
759
760
761
762
763
769
774
775
776
777
778
779
785
786
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_directory.h"
#include "fx_utility.h"
#ifdef FX_ENABLE_EXFAT
#include "fx_directory_exFAT.h"
/* ... */
#endif
...
...
#ifdef FX_ENABLE_EXFAT
UINT _fx_directory_entry_read_FAT(FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir,
ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr)/* ... */
#else
UINT _fx_directory_entry_read(FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir,
ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr)/* ... */
#endif
{
UINT i, j, card, dotflag, get_short_name;
UINT number_of_lfns;
UINT status;
ULONG cluster, next_cluster = 0;
UINT relative_cluster;
UINT relative_sector;
ULONG logical_sector;
ULONG byte_offset;
ULONG bytes_per_cluster;
UCHAR *read_ptr;
CHAR *short_name_ptr;
ULONG entry = *entry_ptr;
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_directory_entry_reads++;/* ... */
#endif
FX_DIRECTORY_ENTRY_READ_EXTENSION
FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_DIR_ENTRY_READ, media_ptr, 0, 0, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0)
byte_offset = entry * FX_DIR_ENTRY_SIZE;
#ifdef FX_ENABLE_EXFAT
if ((source_dir) || (media_ptr -> fx_media_FAT_type == FX_FAT32))
#else
if ((source_dir) || (media_ptr -> fx_media_32_bit_FAT))
#endif
{
bytes_per_cluster = ((ULONG)media_ptr -> fx_media_bytes_per_sector) *
((ULONG)media_ptr -> fx_media_sectors_per_cluster);
if (bytes_per_cluster == 0)
{
return(FX_MEDIA_INVALID);
}if (bytes_per_cluster == 0) { ... }
relative_cluster = (UINT)(byte_offset / bytes_per_cluster);
byte_offset = byte_offset % bytes_per_cluster;
relative_sector = (UINT)(byte_offset / ((ULONG)media_ptr -> fx_media_bytes_per_sector));
if (source_dir)
{
if ((source_dir -> fx_dir_entry_last_search_cluster) &&
(source_dir -> fx_dir_entry_last_search_relative_cluster <= relative_cluster) &&
(source_dir -> fx_dir_entry_last_search_log_sector == source_dir -> fx_dir_entry_log_sector) &&
(source_dir -> fx_dir_entry_last_search_byte_offset == source_dir -> fx_dir_entry_byte_offset))
{
cluster = source_dir -> fx_dir_entry_last_search_cluster;
i = source_dir -> fx_dir_entry_last_search_relative_cluster;
source_dir -> fx_dir_entry_last_search_cluster = 0;
}if ((source_dir -> fx_dir_entry_last_search_cluster) && (source_dir -> fx_dir_entry_last_search_relative_cluster <= relative_cluster) && (source_dir -> fx_dir_entry_last_search_log_sector == source_dir -> fx_dir_entry_log_sector) && (source_dir -> fx_dir_entry_last_search_byte_offset == source_dir -> fx_dir_entry_byte_offset)) { ... }
else
{
/* ... */
cluster = source_dir -> fx_dir_entry_cluster;
i = 0;
}else { ... }
}if (source_dir) { ... }
else
{
cluster = media_ptr -> fx_media_root_cluster_32;
i = 0;
}else { ... }
while (i < relative_cluster)
{
/* ... */
if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved))
{
return(FX_FILE_CORRUPT);
}if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { ... }
status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
cluster = next_cluster;
i++;
}while (i < relative_cluster) { ... }
logical_sector = ((ULONG)media_ptr -> fx_media_data_sector_start) +
(((ULONG)cluster - FX_FAT_ENTRY_START) *
((ULONG)media_ptr -> fx_media_sectors_per_cluster)) +
relative_sector;
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) logical_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
byte_offset = byte_offset % media_ptr -> fx_media_bytes_per_sector;
...}
else
{
logical_sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_root_sector_start;
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) logical_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
/* ... */
relative_cluster = relative_sector = cluster = 0;
byte_offset = byte_offset -
((logical_sector - (ULONG)media_ptr -> fx_media_root_sector_start) *
media_ptr -> fx_media_bytes_per_sector);
}else { ... }
read_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer + (UINT)byte_offset;
destination_ptr -> fx_dir_entry_log_sector = logical_sector;
destination_ptr -> fx_dir_entry_byte_offset = byte_offset;
destination_ptr -> fx_dir_entry_long_name_shorted = 0;
destination_ptr -> fx_dir_entry_short_name[0] = 0;
short_name_ptr = destination_ptr -> fx_dir_entry_name;
get_short_name = 0;
if ((*(read_ptr + 11) == (UCHAR)FX_LONG_NAME) && (*read_ptr != (UCHAR)FX_DIR_ENTRY_FREE))
{
i = (((UINT)(*read_ptr & (UCHAR)0x1f) - 1) * FX_LONG_NAME_ENTRY_LEN) & 0xFFFFFFFF;
number_of_lfns = (UINT)(*read_ptr & (UCHAR)0x1f);
if (i >= (FX_MAX_LONG_NAME_LEN - 1))
{
get_short_name = 1;
destination_ptr -> fx_dir_entry_long_name_shorted = (UINT)(*read_ptr & (UCHAR)0x1f);
}if (i >= (FX_MAX_LONG_NAME_LEN - 1)) { ... }
else
{
short_name_ptr = destination_ptr -> fx_dir_entry_short_name;
j = i + FX_LONG_NAME_ENTRY_LEN + 1;
do
{
destination_ptr -> fx_dir_entry_name[i] = 0;
i++;
...} while ((i < j) && (i < FX_MAX_LONG_NAME_LEN));
}else { ... }
do
{
card = (UINT)(*read_ptr & (UCHAR)0x1f) - 1;
if (get_short_name == 0)
{
for (i = 1, j = 0; i < FX_DIR_ENTRY_SIZE; i += 2)
{
if ((i == 11) || (i == 26))
{
continue;
}if ((i == 11) || (i == 26)) { ... }
if (i == 13)
{
i = 12;
continue;
}if (i == 13) { ... }
if (read_ptr[i + 1])
{
/* ... */
if ((read_ptr[i + 1] != (UCHAR)0xFF) || (read_ptr[i] != (UCHAR)0xFF))
{
get_short_name = 1;
/* ... */
destination_ptr -> fx_dir_entry_long_name_shorted = number_of_lfns;
short_name_ptr = destination_ptr -> fx_dir_entry_name;
}if ((read_ptr[i + 1] != (UCHAR)0xFF) || (read_ptr[i] != (UCHAR)0xFF)) { ... }
}if (read_ptr[i + 1]) { ... }
if ((read_ptr[i] == FX_NULL) || (read_ptr[i] == (UCHAR)0xFF))
{
continue;
}if ((read_ptr[i] == FX_NULL) || (read_ptr[i] == (UCHAR)0xFF)) { ... }
if ((card * 13 + j) >= (FX_MAX_LONG_NAME_LEN - 1))
{
get_short_name = 1;
/* ... */
destination_ptr -> fx_dir_entry_long_name_shorted = number_of_lfns;
short_name_ptr = destination_ptr -> fx_dir_entry_name;
break;
}if ((card * 13 + j) >= (FX_MAX_LONG_NAME_LEN - 1)) { ... }
destination_ptr -> fx_dir_entry_name[13 * card + j] = (CHAR)read_ptr[i];
j++;
}for (i = 1, j = 0; i < FX_DIR_ENTRY_SIZE; i += 2) { ... }
}if (get_short_name == 0) { ... }
if (byte_offset + FX_DIR_ENTRY_SIZE >= media_ptr -> fx_media_bytes_per_sector)
{
if ((source_dir) || (media_ptr -> fx_media_32_bit_FAT))
{
if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1))
{
logical_sector++;
relative_sector++;
}if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1)) { ... }
else
{
status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
cluster = next_cluster;
/* ... */
if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved))
{
return(FX_FILE_CORRUPT);
}if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { ... }
relative_cluster++;
relative_sector = 0;
logical_sector = ((ULONG)media_ptr -> fx_media_data_sector_start) +
(((ULONG)cluster - FX_FAT_ENTRY_START) *
((ULONG)media_ptr -> fx_media_sectors_per_cluster));
}else { ... }
}if ((source_dir) || (media_ptr -> fx_media_32_bit_FAT)) { ... }
else
{
logical_sector++;
if (logical_sector >= (ULONG)(media_ptr -> fx_media_root_sector_start + media_ptr -> fx_media_root_sectors))
{
return(FX_FILE_CORRUPT);
}if (logical_sector >= (ULONG)(media_ptr -> fx_media_root_sector_start + media_ptr -> fx_media_root_sectors)) { ... }
}else { ... }
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) logical_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
byte_offset = 0;
}if (byte_offset + FX_DIR_ENTRY_SIZE >= media_ptr -> fx_media_bytes_per_sector) { ... }
else
{
byte_offset += FX_DIR_ENTRY_SIZE;
}else { ... }
read_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer + (UINT) byte_offset;
entry++;
...} while (card > 0);
destination_ptr -> fx_dir_entry_long_name_present = 1;
}if ((*(read_ptr + 11) == (UCHAR)FX_LONG_NAME) && (*read_ptr != (UCHAR)FX_DIR_ENTRY_FREE)) { ... }
else
{
get_short_name = 1;
}else { ... }
if (get_short_name == 1)
{
destination_ptr -> fx_dir_entry_long_name_present = 0;
}if (get_short_name == 1) { ... }
short_name_ptr[0] = 0;
dotflag = 0;
for (i = 0, j = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++)
{
if ((CHAR)read_ptr[i] == 0)
{
break;
}if ((CHAR)read_ptr[i] == 0) { ... }
/* ... */
if ((CHAR)read_ptr[i] == '.')
{
dotflag = 2;
}if ((CHAR)read_ptr[i] == '.') { ... }
if ((CHAR)read_ptr[i] == ' ')
{
if (dotflag == 0)
{
dotflag = 1;
}if (dotflag == 0) { ... }
continue;
}if ((CHAR)read_ptr[i] == ' ') { ... }
if (i == FX_DIR_NAME_SIZE)
{
if (dotflag == 0)
{
dotflag = 1;
}if (dotflag == 0) { ... }
}if (i == FX_DIR_NAME_SIZE) { ... }
if (dotflag == 1)
{
short_name_ptr[j++] = '.';
dotflag = 2;
}if (dotflag == 1) { ... }
short_name_ptr[j] = (CHAR)read_ptr[i];
j++;
}for (i = 0, j = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++) { ... }
/* ... */
if ((destination_ptr -> fx_dir_entry_long_name_present) && (((UCHAR)short_name_ptr[0]) == (UCHAR)FX_DIR_ENTRY_FREE))
{
/* ... */
destination_ptr -> fx_dir_entry_name[0] = (CHAR)FX_DIR_ENTRY_FREE;
short_name_ptr[0] = (CHAR)0;
}if ((destination_ptr -> fx_dir_entry_long_name_present) && (((UCHAR)short_name_ptr[0]) == (UCHAR)FX_DIR_ENTRY_FREE)) { ... }
/* ... */
if ((short_name_ptr[0] == 0) && (read_ptr[0] == ' '))
{
/* ... */
for (j = 0; j < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); j++)
{
short_name_ptr[j] = (CHAR)read_ptr[j];
}for (j = 0; j < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); j++) { ... }
}if ((short_name_ptr[0] == 0) && (read_ptr[0] == ' ')) { ... }
short_name_ptr[j] = 0;
read_ptr += (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE);
destination_ptr -> fx_dir_entry_attributes = *read_ptr++;
destination_ptr -> fx_dir_entry_reserved = *read_ptr++;
/* ... */
if ((get_short_name) && (destination_ptr -> fx_dir_entry_reserved & 0x08))
{
/* ... */
for (j = 0; j <= (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE) && (short_name_ptr[j] != 0x00); j++)
{
if ((short_name_ptr[j] >= 'A') && (short_name_ptr[j] <= 'Z'))
{
short_name_ptr[j] = (CHAR)(short_name_ptr[j] + 32);
}if ((short_name_ptr[j] >= 'A') && (short_name_ptr[j] <= 'Z')) { ... }
}for (j = 0; j <= (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE) && (short_name_ptr[j] != 0x00); j++) { ... }
}if ((get_short_name) && (destination_ptr -> fx_dir_entry_reserved & 0x08)) { ... }
destination_ptr -> fx_dir_entry_created_time_ms = *read_ptr++;
destination_ptr -> fx_dir_entry_created_time = _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_created_date = _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_last_accessed_date = _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
if (media_ptr -> fx_media_32_bit_FAT)
{
destination_ptr -> fx_dir_entry_cluster = _fx_utility_16_unsigned_read(read_ptr);
destination_ptr -> fx_dir_entry_cluster <<= 16;
}if (media_ptr -> fx_media_32_bit_FAT) { ... }
else
{
destination_ptr -> fx_dir_entry_cluster = 0;
}else { ... }
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_time = _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_date = _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_cluster += _fx_utility_16_unsigned_read(read_ptr);
read_ptr = read_ptr + 2;
destination_ptr -> fx_dir_entry_file_size = _fx_utility_32_unsigned_read(read_ptr);
destination_ptr -> fx_dir_entry_last_search_cluster = 0;
destination_ptr -> fx_dir_entry_last_search_relative_cluster = 0;
destination_ptr -> fx_dir_entry_last_search_log_sector = 0;
destination_ptr -> fx_dir_entry_last_search_byte_offset = 0;
destination_ptr -> fx_dir_entry_number = entry;
*entry_ptr = entry;
if (source_dir)
{
/* ... */
source_dir -> fx_dir_entry_last_search_cluster = cluster;
source_dir -> fx_dir_entry_last_search_relative_cluster = relative_cluster;
/* ... */
source_dir -> fx_dir_entry_last_search_log_sector = source_dir -> fx_dir_entry_log_sector;
source_dir -> fx_dir_entry_last_search_byte_offset = source_dir -> fx_dir_entry_byte_offset;
}if (source_dir) { ... }
#ifdef FX_ENABLE_EXFAT
destination_ptr -> fx_dir_entry_dont_use_fat = 0;
if (((UCHAR)destination_ptr -> fx_dir_entry_name[0] == FX_DIR_ENTRY_FREE) && ((UCHAR)destination_ptr -> fx_dir_entry_short_name[0] == 0))
{
destination_ptr -> fx_dir_entry_type = FX_EXFAT_DIR_ENTRY_TYPE_FREE;
}if (((UCHAR)destination_ptr -> fx_dir_entry_name[0] == FX_DIR_ENTRY_FREE) && ((UCHAR)destination_ptr -> fx_dir_entry_short_name[0] == 0)) { ... }
else if ((UCHAR)destination_ptr -> fx_dir_entry_name[0] == FX_DIR_ENTRY_DONE)
{
destination_ptr -> fx_dir_entry_type = FX_EXFAT_DIR_ENTRY_TYPE_END_MARKER;
}else if ((UCHAR)destination_ptr -> fx_dir_entry_name[0] == FX_DIR_ENTRY_DONE) { ... }
else
{
destination_ptr -> fx_dir_entry_type = FX_EXFAT_DIR_ENTRY_TYPE_FILE_DIRECTORY;
}else { ... }
/* ... */#endif
return(FX_SUCCESS);
...}
#ifdef FX_ENABLE_EXFAT
UINT _fx_directory_entry_read_ex(FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir,
ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr, UINT hash)
{
UINT status = FX_SUCCESS;
if (media_ptr -> fx_media_FAT_type == FX_exFAT)
{
status =
_fx_directory_exFAT_entry_read(
media_ptr, source_dir, entry_ptr, destination_ptr, hash, FX_FALSE, NULL, NULL);
}if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... }
else
{
status =
_fx_directory_entry_read_FAT(media_ptr, source_dir, entry_ptr, destination_ptr);
}else { ... }
return(status);
}_fx_directory_entry_read_ex (FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir, ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr, UINT hash) { ... }
UINT _fx_directory_entry_read(FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir,
ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr)
{
return(_fx_directory_entry_read_ex(media_ptr, source_dir, entry_ptr, destination_ptr, 0));
}_fx_directory_entry_read (FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir, ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr) { ... }
/* ... */#endif ...