1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
92
93
94
95
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
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
144
145
146
147
148
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
246
247
248
249
250
251
252
253
255
256
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
278
279
280
281
282
283
284
285
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
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
448
449
450
451
456
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
480
481
482
483
486
487
488
489
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
545
546
547
550
551
554
555
556
557
558
559
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
602
603
606
607
608
609
610
611
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
704
709
710
711
712
713
714
715
716
717
718
719
725
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
757
758
781
782
786
787
788
789
790
791
796
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
825
826
827
828
829
830
831
832
833
838
844
851
852
853
854
855
856
857
858
859
860
861
862
863
864
876
877
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
919
920
921
922
923
924
925
926
927
928
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
968
971
972
973
974
975
976
977
984
985
986
987
988
989
990
991
992
993
994
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1033
1034
1037
1038
1039
1040
1041
1042
1043
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1197
1202
1203
1204
1205
1206
1207
1211
1215
1224
1225
1226
1227
1228
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1280
1281
1282
1283
1284
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1457
1458
1459
1460
1461
1462
1463
1464
1468
1472
1473
1474
1475
1476
1477
1482
1483
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1511
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1567
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1590
1591
1592
1593
1594
1595
1599
1600
1601
1602
1603
1604
1605
1606
1609
1610
1611
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1686
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1714
1715
1716
1720
1721
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1864
1865
1866
1867
1868
1869
1870
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1948
1949
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2028
2029
2030
2031
2036
2037
2038
2039
2045
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2114
2115
2116
2117
2118
2119
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2330
2331
2345
2346
2347
2348
2349
2368
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2453
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2595
2596
2597
2598
2599
2600
2601
2602
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2652
2653
2654
2657
2658
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2685
2686
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2711
2712
2715
2716
2717
2718
2719
2720
2721
2722
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2815
2816
2817
2818
2819
2820
2821
2822
2823
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2885
2886
2887
2888
2898
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2920
2921
2922
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2942
2944
2945
2946
2947
2948
2949
2967
2968
2969
2970
2971
2972
2973
2974
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3014
3019
3020
3024
3028
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3070
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3097
3098
3099
3100
3101
3102
3114
3115
3116
3119
3120
3126
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3155
3156
3157
3158
3159
3162
3163
3164
3165
3168
3169
3181
3185
3186
3187
3188
3189
3190
3191
3199
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3369
3370
3371
3372
3373
3376
3377
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3428
3429
3430
3431
3432
3433
3434
3437
3440
3441
3443
3444
3445
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3504
3505
3506
3507
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3647
3648
3649
3650
3651
3652
3653
3654
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3694
3695
3696
3697
3698
3699
3700
3701
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3761
3762
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3823
3824
3825
3826
3837
3838
3839
3840
3841
3842
3844
3845
3846
3847
3857
3858
3859
3860
3866
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3895
3896
3897
3898
3899
3900
3905
3906
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3994
3995
3996
3997
3998
3999
4002
4003
4004
4014
4015
4016
4017
4018
4028
4029
4030
4031
4032
4033
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4075
4076
4077
4078
4079
4080
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4109
4110
4111
4112
4113
4114
4117
4118
4119
4131
4132
4133
4134
4135
4140
4146
4147
4148
4149
4150
4151
4154
4155
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4191
4192
4193
4194
4195
4196
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4263
4264
4265
4266
4267
4268
4270
4271
4272
4273
4274
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4357
4358
4359
4360
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4418
4419
4420
4421
4422
4425
4426
4427
4428
4429
4430
4431
4432
4449
4450
4451
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4488
4489
4490
4491
4492
4493
4497
4498
4499
4500
4501
4502
4503
4504
4505
4520
4521
4526
4527
4528
4529
4530
4531
4532
4533
4534
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4559
4560
4561
4562
4563
4564
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4594
4598
4599
4600
4601
4602
4603
4608
4609
4610
4614
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4749
4750
4751
4752
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4879
4880
4881
4894
4895
4896
4897
4898
4899
4900
4901
4902
4913
4914
4915
4916
4917
4918
4919
4933
4934
4935
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4971
4972
4973
4974
4975
4978
4979
4980
4981
4982
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5026
5027
5028
5029
5030
5037
5038
5039
5040
5044
5048
5049
5050
5053
5054
5055
5056
5057
5058
5063
5064
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5164
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5240
5241
5242
5243
5244
5245
5246
5247
5248
5262
5263
5264
5265
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5316
5321
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5417
5418
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5439
5440
5441
5442
5443
5447
5448
5449
5450
5454
5455
5456
5457
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5524
5525
5526
5527
5528
5529
5530
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5642
5643
5644
5645
5646
5647
5648
5651
5654
5659
5662
5663
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5743
5744
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5831
5832
5833
5834
5835
5836
5837
5838
5839
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6040
6045
6046
6047
6048
6049
6054
6055
6056
6057
6058
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6079
6080
6081
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6108
6109
6112
6113
6114
6119
6122
6123
6124
6125
6126
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6155
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6209
6210
6211
6212
6213
6217
6218
6219
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6239
6240
6241
6242
6243
6244
6245
6249
6250
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6273
6274
6275
6276
6277
6283
6299
6300
6301
6302
6303
6304
6305
6306
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6377
6378
6379
6380
6385
6386
6387
6388
6389
6390
6401
6402
6403
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6527
6530
6533
6534
6535
6536
6537
6541
6542
6543
6544
6545
6546
6547
6548
6554
6555
6556
6557
6558
6559
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6633
6634
6635
6638
6639
6640
6641
6642
6643
6644
6645
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6672
6673
6674
6675
6676
6677
6678
6679
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6729
6730
6737
6738
6739
6740
6741
6742
6743
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6828
6835
6836
6837
6838
6839
6840
6841
6842
6843
6850
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6926
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6970
6971
6972
6977
6986
6999
7007
7008
7009
7012
7015
7016
7019
7020
7023
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7048
7049
7050
7051
7052
7063
7072
7073
7078
7079
7080
7083
7086
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7126
7127
7128
/* ... */
#include <string.h>
#include "ff.h"
#include "diskio.h"
/* ... */
#if FF_DEFINED != 80286
#error Wrong include file (ff.h).
#endif
#define MAX_DIR 0x200000
#define MAX_DIR_EX 0x10000000
#define MAX_FAT12 0xFF5
#define MAX_FAT16 0xFFF5
#define MAX_FAT32 0x0FFFFFF5
#define MAX_EXFAT 0x7FFFFFFD
#define MIN_FAT12_SEC_VOL 4
/* ... */
#define MIN_FAT12_DATA_SEC 1
#define IsUpper(c) ((c) >= 'A' && (c) <= 'Z')
#define IsLower(c) ((c) >= 'a' && (c) <= 'z')
#define IsDigit(c) ((c) >= '0' && (c) <= '9')
#define IsSeparator(c) ((c) == '/' || (c) == '\\')
#define IsTerminator(c) ((UINT)(c) < (FF_USE_LFN ? ' ' : '!'))
#define IsSurrogate(c) ((c) >= 0xD800 && (c) <= 0xDFFF)
#define IsSurrogateH(c) ((c) >= 0xD800 && (c) <= 0xDBFF)
#define IsSurrogateL(c) ((c) >= 0xDC00 && (c) <= 0xDFFF)
#define FA_SEEKEND 0x20
#define FA_MODIFIED 0x40
#define FA_DIRTY 0x80
#define AM_VOL 0x08
#define AM_LFN 0x0F
#define AM_MASK 0x3F
#define AM_MASKX 0x37
#define NSFLAG 11
#define NS_LOSS 0x01
#define NS_LFN 0x02
#define NS_LAST 0x04
#define NS_BODY 0x08
#define NS_EXT 0x10
#define NS_DOT 0x20
#define NS_NOLFN 0x40
#define NS_NONAME 0x80
#define ET_BITMAP 0x81
#define ET_UPCASE 0x82
#define ET_VLABEL 0x83
#define ET_FILEDIR 0x85
#define ET_STREAM 0xC0
#define ET_FILENAME 0xC1
/* ... */
#define BS_JmpBoot 0
#define BS_OEMName 3
#define BPB_BytsPerSec 11
#define BPB_SecPerClus 13
#define BPB_RsvdSecCnt 14
#define BPB_NumFATs 16
#define BPB_RootEntCnt 17
#define BPB_TotSec16 19
#define BPB_Media 21
#define BPB_FATSz16 22
#define BPB_SecPerTrk 24
#define BPB_NumHeads 26
#define BPB_HiddSec 28
#define BPB_TotSec32 32
#define BS_DrvNum 36
#define BS_NTres 37
#define BS_BootSig 38
#define BS_VolID 39
#define BS_VolLab 43
#define BS_FilSysType 54
#define BS_BootCode 62
#define BS_55AA 510
#define BPB_FATSz32 36
#define BPB_ExtFlags32 40
#define BPB_FSVer32 42
#define BPB_RootClus32 44
#define BPB_FSInfo32 48
#define BPB_BkBootSec32 50
#define BS_DrvNum32 64
#define BS_NTres32 65
#define BS_BootSig32 66
#define BS_VolID32 67
#define BS_VolLab32 71
#define BS_FilSysType32 82
#define BS_BootCode32 90
#define BPB_ZeroedEx 11
#define BPB_VolOfsEx 64
#define BPB_TotSecEx 72
#define BPB_FatOfsEx 80
#define BPB_FatSzEx 84
#define BPB_DataOfsEx 88
#define BPB_NumClusEx 92
#define BPB_RootClusEx 96
#define BPB_VolIDEx 100
#define BPB_FSVerEx 104
#define BPB_VolFlagEx 106
#define BPB_BytsPerSecEx 108
#define BPB_SecPerClusEx 109
#define BPB_NumFATsEx 110
#define BPB_DrvNumEx 111
#define BPB_PercInUseEx 112
#define BPB_RsvdEx 113
#define BS_BootCodeEx 120
#define DIR_Name 0
#define DIR_Attr 11
#define DIR_NTres 12
#define DIR_CrtTime10 13
#define DIR_CrtTime 14
#define DIR_LstAccDate 18
#define DIR_FstClusHI 20
#define DIR_ModTime 22
#define DIR_FstClusLO 26
#define DIR_FileSize 28
#define LDIR_Ord 0
#define LDIR_Attr 11
#define LDIR_Type 12
#define LDIR_Chksum 13
#define LDIR_FstClusLO 26
#define XDIR_Type 0
#define XDIR_NumLabel 1
#define XDIR_Label 2
#define XDIR_CaseSum 4
#define XDIR_NumSec 1
#define XDIR_SetSum 2
#define XDIR_Attr 4
#define XDIR_CrtTime 8
#define XDIR_ModTime 12
#define XDIR_AccTime 16
#define XDIR_CrtTime10 20
#define XDIR_ModTime10 21
#define XDIR_CrtTZ 22
#define XDIR_ModTZ 23
#define XDIR_AccTZ 24
#define XDIR_GenFlags 33
#define XDIR_NumName 35
#define XDIR_NameHash 36
#define XDIR_ValidFileSize 40
#define XDIR_FstClus 52
#define XDIR_FileSize 56
#define SZDIRE 32
#define DDEM 0xE5
#define RDDEM 0x05
#define LLEF 0x40
#define FSI_LeadSig 0
#define FSI_StrucSig 484
#define FSI_Free_Count 488
#define FSI_Nxt_Free 492
#define MBR_Table 446
#define SZ_PTE 16
#define PTE_Boot 0
#define PTE_StHead 1
#define PTE_StSec 2
#define PTE_StCyl 3
#define PTE_System 4
#define PTE_EdHead 5
#define PTE_EdSec 6
#define PTE_EdCyl 7
#define PTE_StLba 8
#define PTE_SizLba 12
#define GPTH_Sign 0
#define GPTH_Rev 8
#define GPTH_Size 12
#define GPTH_Bcc 16
#define GPTH_CurLba 24
#define GPTH_BakLba 32
#define GPTH_FstLba 40
#define GPTH_LstLba 48
#define GPTH_DskGuid 56
#define GPTH_PtOfs 72
#define GPTH_PtNum 80
#define GPTH_PteSize 84
#define GPTH_PtBcc 88
#define SZ_GPTE 128
#define GPTE_PtGuid 0
#define GPTE_UpGuid 16
#define GPTE_FstLba 32
#define GPTE_LstLba 40
#define GPTE_Flags 48
#define GPTE_Name 56
#define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); }168 defines
#if FF_FS_REENTRANT
#if FF_USE_LFN == 1
#error Static LFN work area cannot be used in thread-safe configuration
#endif
#define LEAVE_FF(fs, res) { unlock_volume(fs, res); return res; }/* ... */
#else
#define LEAVE_FF(fs, res) return res
#endif
#if FF_MULTI_PARTITION
#define LD2PD(vol) VolToPart[vol].pd
#define LD2PT(vol) VolToPart[vol].pt /* ... */
#else
#define LD2PD(vol) (BYTE)(vol)
#define LD2PT(vol) 0 /* ... */
#endif
#if (FF_MAX_SS < FF_MIN_SS) || (FF_MAX_SS != 512 && FF_MAX_SS != 1024 && FF_MAX_SS != 2048 && FF_MAX_SS != 4096) || (FF_MIN_SS != 512 && FF_MIN_SS != 1024 && FF_MIN_SS != 2048 && FF_MIN_SS != 4096)
#error Wrong sector size configuration
#endif
#if FF_MAX_SS == FF_MIN_SS
#define SS(fs) ((UINT)FF_MAX_SS)
#else
#define SS(fs) ((fs)->ssize)
#endif
#if FF_FS_NORTC == 1
#if FF_NORTC_YEAR < 1980 || FF_NORTC_YEAR > 2107 || FF_NORTC_MON < 1 || FF_NORTC_MON > 12 || FF_NORTC_MDAY < 1 || FF_NORTC_MDAY > 31
#error Invalid FF_FS_NORTC settings
#endif
#define GET_FATTIME() ((DWORD)(FF_NORTC_YEAR - 1980) << 25 | (DWORD)FF_NORTC_MON << 21 | (DWORD)FF_NORTC_MDAY << 16)/* ... */
#else
#define GET_FATTIME() get_fattime()
#endif
#if FF_FS_LOCK
#if FF_FS_READONLY
#error FF_FS_LOCK must be 0 at read-only configuration
#endif
typedef struct {
FATFS* fs;
DWORD clu;
DWORD ofs;
UINT ctr;
}{...} FILESEM;/* ... */
#endif
#define TBL_CT437 {0x80,0x9A,0x45,0x41,0x8E,0x41,0x8F,0x80,0x45,0x45,0x45,0x49,0x49,0x49,0x8E,0x8F, \
0x90,0x92,0x92,0x4F,0x99,0x4F,0x55,0x55,0x59,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT720 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT737 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x92,0x92,0x93,0x94,0x95,0x96,0x97,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87, \
0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0xAA,0x92,0x93,0x94,0x95,0x96, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0x97,0xEA,0xEB,0xEC,0xE4,0xED,0xEE,0xEF,0xF5,0xF0,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT771 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDC,0xDE,0xDE, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0xF0,0xF0,0xF2,0xF2,0xF4,0xF4,0xF6,0xF6,0xF8,0xF8,0xFA,0xFA,0xFC,0xFC,0xFE,0xFF}{...}
#define TBL_CT775 {0x80,0x9A,0x91,0xA0,0x8E,0x95,0x8F,0x80,0xAD,0xED,0x8A,0x8A,0xA1,0x8D,0x8E,0x8F, \
0x90,0x92,0x92,0xE2,0x99,0x95,0x96,0x97,0x97,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9F, \
0xA0,0xA1,0xE0,0xA3,0xA3,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xB5,0xB6,0xB7,0xB8,0xBD,0xBE,0xC6,0xC7,0xA5,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE3,0xE8,0xE8,0xEA,0xEA,0xEE,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT850 {0x43,0x55,0x45,0x41,0x41,0x41,0x41,0x43,0x45,0x45,0x45,0x49,0x49,0x49,0x41,0x41, \
0x45,0x92,0x92,0x4F,0x4F,0x4F,0x55,0x55,0x59,0x4F,0x55,0x4F,0x9C,0x4F,0x9E,0x9F, \
0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0x41,0x41,0x41,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0x41,0x41,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD1,0xD1,0x45,0x45,0x45,0x49,0x49,0x49,0x49,0xD9,0xDA,0xDB,0xDC,0xDD,0x49,0xDF, \
0x4F,0xE1,0x4F,0x4F,0x4F,0x4F,0xE6,0xE8,0xE8,0x55,0x55,0x55,0x59,0x59,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT852 {0x80,0x9A,0x90,0xB6,0x8E,0xDE,0x8F,0x80,0x9D,0xD3,0x8A,0x8A,0xD7,0x8D,0x8E,0x8F, \
0x90,0x91,0x91,0xE2,0x99,0x95,0x95,0x97,0x97,0x99,0x9A,0x9B,0x9B,0x9D,0x9E,0xAC, \
0xB5,0xD6,0xE0,0xE9,0xA4,0xA4,0xA6,0xA6,0xA8,0xA8,0xAA,0x8D,0xAC,0xB8,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBD,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC6,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD1,0xD1,0xD2,0xD3,0xD2,0xD5,0xD6,0xD7,0xB7,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE3,0xD5,0xE6,0xE6,0xE8,0xE9,0xE8,0xEB,0xED,0xED,0xDD,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xEB,0xFC,0xFC,0xFE,0xFF}{...}
#define TBL_CT855 {0x81,0x81,0x83,0x83,0x85,0x85,0x87,0x87,0x89,0x89,0x8B,0x8B,0x8D,0x8D,0x8F,0x8F, \
0x91,0x91,0x93,0x93,0x95,0x95,0x97,0x97,0x99,0x99,0x9B,0x9B,0x9D,0x9D,0x9F,0x9F, \
0xA1,0xA1,0xA3,0xA3,0xA5,0xA5,0xA7,0xA7,0xA9,0xA9,0xAB,0xAB,0xAD,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB6,0xB6,0xB8,0xB8,0xB9,0xBA,0xBB,0xBC,0xBE,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD1,0xD1,0xD3,0xD3,0xD5,0xD5,0xD7,0xD7,0xDD,0xD9,0xDA,0xDB,0xDC,0xDD,0xE0,0xDF, \
0xE0,0xE2,0xE2,0xE4,0xE4,0xE6,0xE6,0xE8,0xE8,0xEA,0xEA,0xEC,0xEC,0xEE,0xEE,0xEF, \
0xF0,0xF2,0xF2,0xF4,0xF4,0xF6,0xF6,0xF8,0xF8,0xFA,0xFA,0xFC,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT857 {0x80,0x9A,0x90,0xB6,0x8E,0xB7,0x8F,0x80,0xD2,0xD3,0xD4,0xD8,0xD7,0x49,0x8E,0x8F, \
0x90,0x92,0x92,0xE2,0x99,0xE3,0xEA,0xEB,0x98,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9E, \
0xB5,0xD6,0xE0,0xE9,0xA5,0xA5,0xA6,0xA6,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0x49,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xDE,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT860 {0x80,0x9A,0x90,0x8F,0x8E,0x91,0x86,0x80,0x89,0x89,0x92,0x8B,0x8C,0x98,0x8E,0x8F, \
0x90,0x91,0x92,0x8C,0x99,0xA9,0x96,0x9D,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x86,0x8B,0x9F,0x96,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT861 {0x80,0x9A,0x90,0x41,0x8E,0x41,0x8F,0x80,0x45,0x45,0x45,0x8B,0x8B,0x8D,0x8E,0x8F, \
0x90,0x92,0x92,0x4F,0x99,0x8D,0x55,0x97,0x97,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9F, \
0xA4,0xA5,0xA6,0xA7,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT862 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT863 {0x43,0x55,0x45,0x41,0x41,0x41,0x86,0x43,0x45,0x45,0x45,0x49,0x49,0x8D,0x41,0x8F, \
0x45,0x45,0x45,0x4F,0x45,0x49,0x55,0x55,0x98,0x4F,0x55,0x9B,0x9C,0x55,0x55,0x9F, \
0xA0,0xA1,0x4F,0x55,0xA4,0xA5,0xA6,0xA7,0x49,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT864 {0x80,0x9A,0x45,0x41,0x8E,0x41,0x8F,0x80,0x45,0x45,0x45,0x49,0x49,0x49,0x8E,0x8F, \
0x90,0x92,0x92,0x4F,0x99,0x4F,0x55,0x55,0x59,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT865 {0x80,0x9A,0x90,0x41,0x8E,0x41,0x8F,0x80,0x45,0x45,0x45,0x49,0x49,0x49,0x8E,0x8F, \
0x90,0x92,0x92,0x4F,0x99,0x4F,0x55,0x55,0x59,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF, \
0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT866 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \
0xF0,0xF0,0xF2,0xF2,0xF4,0xF4,0xF6,0xF6,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF}{...}
#define TBL_CT869 {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F, \
0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x86,0x9C,0x8D,0x8F,0x90, \
0x91,0x90,0x92,0x95,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF, \
0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \
0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF, \
0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xA4,0xA5,0xA6,0xD9,0xDA,0xDB,0xDC,0xA7,0xA8,0xDF, \
0xA9,0xAA,0xAC,0xAD,0xB5,0xB6,0xB7,0xB8,0xBD,0xBE,0xC6,0xC7,0xCF,0xCF,0xD0,0xEF, \
0xF0,0xF1,0xD1,0xD2,0xD3,0xF5,0xD4,0xF7,0xF8,0xF9,0xD5,0x96,0x95,0x98,0xFE,0xFF}{...}
#define TBL_DC932 {0x81, 0x9F, 0xE0, 0xFC, 0x40, 0x7E, 0x80, 0xFC, 0x00, 0x00}
#define TBL_DC936 {0x81, 0xFE, 0x00, 0x00, 0x40, 0x7E, 0x80, 0xFE, 0x00, 0x00}
#define TBL_DC949 {0x81, 0xFE, 0x00, 0x00, 0x41, 0x5A, 0x61, 0x7A, 0x81, 0xFE}
#define TBL_DC950 {0x81, 0xFE, 0x00, 0x00, 0x40, 0x7E, 0xA1, 0xFE, 0x00, 0x00}
#define MERGE_2STR(a, b) a ## b
#define MKCVTBL(hd, cp) MERGE_2STR(hd, cp)23 defines
/* ... */
/* ... */
#if FF_VOLUMES < 1 || FF_VOLUMES > 10
#error Wrong FF_VOLUMES setting
#endif
static FATFS *FatFs[FF_VOLUMES];
static WORD Fsid;
#if FF_FS_RPATH != 0
static BYTE CurrVol;
#endif
#if FF_FS_LOCK
static FILESEM Files[FF_FS_LOCK];
#if FF_FS_REENTRANT
static volatile BYTE SysLock;
static volatile BYTE SysLockVolume; /* ... */
#endif/* ... */
#endif
#if FF_STR_VOLUME_ID
#ifdef FF_VOLUME_STRS
static const char *const VolumeStr[FF_VOLUMES] = {FF_VOLUME_STRS};
#endif/* ... */
#endif
#if FF_LBA64
#if FF_MIN_GPT > 0x100000000
#error Wrong FF_MIN_GPT setting
#endif
static const BYTE GUID_MS_Basic[16] = {0xA2,0xA0,0xD0,0xEB,0xE5,0xB9,0x33,0x44,0x87,0xC0,0x68,0xB6,0xB7,0x26,0x99,0xC7};/* ... */
#endif
#if FF_USE_LFN == 0
#if FF_FS_EXFAT
#error LFN must be enabled when enable exFAT
#endif
#define DEF_NAMBUF
#define INIT_NAMBUF(fs)
#define FREE_NAMBUF()
#define LEAVE_MKFS(res) return res
/* ... */
#else
#if FF_MAX_LFN < 12 || FF_MAX_LFN > 255
#error Wrong setting of FF_MAX_LFN
#endif
#if FF_LFN_BUF < FF_SFN_BUF || FF_SFN_BUF < 12
#error Wrong setting of FF_LFN_BUF or FF_SFN_BUF
#endif
#if FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3
#error Wrong setting of FF_LFN_UNICODE
#endif
static const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30};
#define MAXDIRB(nc) ((nc + 44U) / 15 * SZDIRE)
#if FF_USE_LFN == 1
#if FF_FS_EXFAT
static BYTE DirBuf[MAXDIRB(FF_MAX_LFN)];
#endif
static WCHAR LfnBuf[FF_MAX_LFN + 1];
#define DEF_NAMBUF
#define INIT_NAMBUF(fs)
#define FREE_NAMBUF()
#define LEAVE_MKFS(res) return res
/* ... */
#elif FF_USE_LFN == 2
#if FF_FS_EXFAT
#define DEF_NAMBUF WCHAR lbuf[FF_MAX_LFN+1]; BYTE dbuf[MAXDIRB(FF_MAX_LFN)];
#define INIT_NAMBUF(fs) { (fs)->lfnbuf = lbuf; (fs)->dirbuf = dbuf; }
#define FREE_NAMBUF()/* ... */
#else
#define DEF_NAMBUF WCHAR lbuf[FF_MAX_LFN+1];
#define INIT_NAMBUF(fs) { (fs)->lfnbuf = lbuf; }
#define FREE_NAMBUF()/* ... */
#endif
#define LEAVE_MKFS(res) return res
/* ... */
#elif FF_USE_LFN == 3
#if FF_FS_EXFAT
#define DEF_NAMBUF WCHAR *lfn;
#define INIT_NAMBUF(fs) { lfn = ff_memalloc((FF_MAX_LFN+1)*2 + MAXDIRB(FF_MAX_LFN)); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnbuf = lfn; (fs)->dirbuf = (BYTE*)(lfn+FF_MAX_LFN+1); }
#define FREE_NAMBUF() ff_memfree(lfn)/* ... */
#else
#define DEF_NAMBUF WCHAR *lfn;
#define INIT_NAMBUF(fs) { lfn = ff_memalloc((FF_MAX_LFN+1)*2); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnbuf = lfn; }
#define FREE_NAMBUF() ff_memfree(lfn)/* ... */
#endif
#define LEAVE_MKFS(res) { if (!work) ff_memfree(buf); return res; }
#define MAX_MALLOC 0x8000
/* ... */
#else
#error Wrong setting of FF_USE_LFN
/* ... */
#endif /* ... */
#endif
#if FF_CODE_PAGE == 0
#define CODEPAGE CodePage
static WORD CodePage;
static const BYTE* ExCvt;
static const BYTE* DbcTbl;
static const BYTE Ct437[] = TBL_CT437;
static const BYTE Ct720[] = TBL_CT720;
static const BYTE Ct737[] = TBL_CT737;
static const BYTE Ct771[] = TBL_CT771;
static const BYTE Ct775[] = TBL_CT775;
static const BYTE Ct850[] = TBL_CT850;
static const BYTE Ct852[] = TBL_CT852;
static const BYTE Ct855[] = TBL_CT855;
static const BYTE Ct857[] = TBL_CT857;
static const BYTE Ct860[] = TBL_CT860;
static const BYTE Ct861[] = TBL_CT861;
static const BYTE Ct862[] = TBL_CT862;
static const BYTE Ct863[] = TBL_CT863;
static const BYTE Ct864[] = TBL_CT864;
static const BYTE Ct865[] = TBL_CT865;
static const BYTE Ct866[] = TBL_CT866;
static const BYTE Ct869[] = TBL_CT869;
static const BYTE Dc932[] = TBL_DC932;
static const BYTE Dc936[] = TBL_DC936;
static const BYTE Dc949[] = TBL_DC949;
static const BYTE Dc950[] = TBL_DC950;
/* ... */
#elif FF_CODE_PAGE < 900
#define CODEPAGE FF_CODE_PAGE
static const BYTE ExCvt[] = MKCVTBL(TBL_CT, FF_CODE_PAGE);
/* ... */
#else
#define CODEPAGE FF_CODE_PAGE
static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
/* ... */
#endif
/* ... */
static WORD ld_word (const BYTE* ptr)
{
WORD rv;
rv = ptr[1];
rv = rv << 8 | ptr[0];
return rv;
}{...}
static DWORD ld_dword (const BYTE* ptr)
{
DWORD rv;
rv = ptr[3];
rv = rv << 8 | ptr[2];
rv = rv << 8 | ptr[1];
rv = rv << 8 | ptr[0];
return rv;
}{...}
#if FF_FS_EXFAT
static QWORD ld_qword (const BYTE* ptr)
{
QWORD rv;
rv = ptr[7];
rv = rv << 8 | ptr[6];
rv = rv << 8 | ptr[5];
rv = rv << 8 | ptr[4];
rv = rv << 8 | ptr[3];
rv = rv << 8 | ptr[2];
rv = rv << 8 | ptr[1];
rv = rv << 8 | ptr[0];
return rv;
}{...}
/* ... */#endif
#if !FF_FS_READONLY
static void st_word (BYTE* ptr, WORD val)
{
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val;
}{...}
static void st_dword (BYTE* ptr, DWORD val)
{
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val;
}{...}
#if FF_FS_EXFAT
static void st_qword (BYTE* ptr, QWORD val)
{
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val; val >>= 8;
*ptr++ = (BYTE)val;
}{...}
/* ... */#endif/* ... */
#endif
static int dbc_1st (BYTE c)
{
#if FF_CODE_PAGE == 0
if (DbcTbl && c >= DbcTbl[0]) {
if (c <= DbcTbl[1]) return 1;
if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1;
}{...}
#elif/* ... */ FF_CODE_PAGE >= 900
if (c >= DbcTbl[0]) {
if (c <= DbcTbl[1]) return 1;
if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1;
}{...}
#else/* ... */
if (c != 0) return 0;
#endif
return 0;
}{ ... }
static int dbc_2nd (BYTE c)
{
#if FF_CODE_PAGE == 0
if (DbcTbl && c >= DbcTbl[4]) {
if (c <= DbcTbl[5]) return 1;
if (c >= DbcTbl[6] && c <= DbcTbl[7]) return 1;
if (c >= DbcTbl[8] && c <= DbcTbl[9]) return 1;
}{...}
#elif/* ... */ FF_CODE_PAGE >= 900
if (c >= DbcTbl[4]) {
if (c <= DbcTbl[5]) return 1;
if (c >= DbcTbl[6] && c <= DbcTbl[7]) return 1;
if (c >= DbcTbl[8] && c <= DbcTbl[9]) return 1;
}{...}
#else/* ... */
if (c != 0) return 0;
#endif
return 0;
}{ ... }
#if FF_USE_LFN
static DWORD tchar2uni (
const TCHAR** str
)
{
DWORD uc;
const TCHAR *p = *str;
#if FF_LFN_UNICODE == 1
WCHAR wc;
uc = *p++;
if (IsSurrogate(uc)) {
wc = *p++;
if (!IsSurrogateH(uc) || !IsSurrogateL(wc)) return 0xFFFFFFFF;
uc = uc << 16 | wc;
}{...}
/* ... */
#elif FF_LFN_UNICODE == 2
BYTE b;
int nf;
uc = (BYTE)*p++;
if (uc & 0x80) {
if ((uc & 0xE0) == 0xC0) {
uc &= 0x1F; nf = 1;
}{...} else if ((uc & 0xF0) == 0xE0) {
uc &= 0x0F; nf = 2;
}{...} else if ((uc & 0xF8) == 0xF0) {
uc &= 0x07; nf = 3;
}{...} else {
return 0xFFFFFFFF;
}{...}
do {
b = (BYTE)*p++;
if ((b & 0xC0) != 0x80) return 0xFFFFFFFF;
uc = uc << 6 | (b & 0x3F);
}{...} while (--nf != 0);
if (uc < 0x80 || IsSurrogate(uc) || uc >= 0x110000) return 0xFFFFFFFF;
if (uc >= 0x010000) uc = 0xD800DC00 | ((uc - 0x10000) << 6 & 0x3FF0000) | (uc & 0x3FF);
}{...}
/* ... */
#elif FF_LFN_UNICODE == 3
uc = (TCHAR)*p++;
if (uc >= 0x110000 || IsSurrogate(uc)) return 0xFFFFFFFF;
if (uc >= 0x010000) uc = 0xD800DC00 | ((uc - 0x10000) << 6 & 0x3FF0000) | (uc & 0x3FF);
/* ... */
#else
BYTE b;
WCHAR wc;
wc = (BYTE)*p++;
if (dbc_1st((BYTE)wc)) {
b = (BYTE)*p++;
if (!dbc_2nd(b)) return 0xFFFFFFFF;
wc = (wc << 8) + b;
}{...}
if (wc != 0) {
wc = ff_oem2uni(wc, CODEPAGE);
if (wc == 0) return 0xFFFFFFFF;
}{...}
uc = wc;
/* ... */
#endif
*str = p;
return uc;
}{...}
static UINT put_utf (
DWORD chr,
TCHAR* buf,
UINT szb
)
{
#if FF_LFN_UNICODE == 1
WCHAR hs, wc;
hs = (WCHAR)(chr >> 16);
wc = (WCHAR)chr;
if (hs == 0) {
if (szb < 1 || IsSurrogate(wc)) return 0;
*buf = wc;
return 1;
}{...}
if (szb < 2 || !IsSurrogateH(hs) || !IsSurrogateL(wc)) return 0;
*buf++ = hs;
*buf++ = wc;
return 2;
/* ... */
#elif FF_LFN_UNICODE == 2
DWORD hc;
if (chr < 0x80) {
if (szb < 1) return 0;
*buf = (TCHAR)chr;
return 1;
}{...}
if (chr < 0x800) {
if (szb < 2) return 0;
*buf++ = (TCHAR)(0xC0 | (chr >> 6 & 0x1F));
*buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F));
return 2;
}{...}
if (chr < 0x10000) {
if (szb < 3 || IsSurrogate(chr)) return 0;
*buf++ = (TCHAR)(0xE0 | (chr >> 12 & 0x0F));
*buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F));
*buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F));
return 3;
}{...}
if (szb < 4) return 0;
hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6;
chr = (chr & 0xFFFF) - 0xDC00;
if (hc >= 0x100000 || chr >= 0x400) return 0;
chr = (hc | chr) + 0x10000;
*buf++ = (TCHAR)(0xF0 | (chr >> 18 & 0x07));
*buf++ = (TCHAR)(0x80 | (chr >> 12 & 0x3F));
*buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F));
*buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F));
return 4;
/* ... */
#elif FF_LFN_UNICODE == 3
DWORD hc;
if (szb < 1) return 0;
if (chr >= 0x10000) {
hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6;
chr = (chr & 0xFFFF) - 0xDC00;
if (hc >= 0x100000 || chr >= 0x400) return 0;
chr = (hc | chr) + 0x10000;
}{...}
*buf++ = (TCHAR)chr;
return 1;
/* ... */
#else
WCHAR wc;
wc = ff_uni2oem(chr, CODEPAGE);
if (wc >= 0x100) {
if (szb < 2) return 0;
*buf++ = (char)(wc >> 8);
*buf++ = (TCHAR)wc;
return 2;
}{...}
if (wc == 0 || szb < 1) return 0;
*buf++ = (TCHAR)wc;
return 1;/* ... */
#endif
}{...}
/* ... */#endif
#if FF_FS_REENTRANT
static int lock_volume (
FATFS* fs,
int syslock
)
{
int rv;
#if FF_FS_LOCK
rv = ff_mutex_take(fs->ldrv);
if (rv && syslock) {
rv = ff_mutex_take(FF_VOLUMES);
if (rv) {
SysLockVolume = fs->ldrv;
SysLock = 2;
}{...} else {
ff_mutex_give(fs->ldrv);
}{...}
}{...}
#else/* ... */
rv = syslock ? ff_mutex_take(fs->ldrv) : ff_mutex_take(fs->ldrv);
#endif
return rv;
}{ ... }
static void unlock_volume (
FATFS* fs,
FRESULT res
)
{
if (fs && res != FR_NOT_ENABLED && res != FR_INVALID_DRIVE && res != FR_TIMEOUT) {
#if FF_FS_LOCK
if (SysLock == 2 && SysLockVolume == fs->ldrv) {
SysLock = 1;
ff_mutex_give(FF_VOLUMES);
}{...}
#endif/* ... */
ff_mutex_give(fs->ldrv);
}{...}
}{ ... }
/* ... */#endif
#if FF_FS_LOCK
static FRESULT chk_share (
FF_DIR* dp,
int acc
)
{
UINT i, be;
be = 0;
for (i = 0; i < FF_FS_LOCK; i++) {
if (Files[i].fs) {
if (Files[i].fs == dp->obj.fs &&
Files[i].clu == dp->obj.sclust &&
Files[i].ofs == dp->dptr) break;
}{...} else {
be = 1;
}{...}
}{...}
if (i == FF_FS_LOCK) {
return (!be && acc != 2) ? FR_TOO_MANY_OPEN_FILES : FR_OK;
}{...}
return (acc != 0 || Files[i].ctr == 0x100) ? FR_LOCKED : FR_OK;
}{...}
static int enq_share (void)
{
UINT i;
for (i = 0; i < FF_FS_LOCK && Files[i].fs; i++) ;
return (i == FF_FS_LOCK) ? 0 : 1;
}{...}
static UINT inc_share (
FF_DIR* dp,
int acc
)
{
UINT i;
for (i = 0; i < FF_FS_LOCK; i++) {
if (Files[i].fs == dp->obj.fs
&& Files[i].clu == dp->obj.sclust
&& Files[i].ofs == dp->dptr) break;
}{...}
if (i == FF_FS_LOCK) {
for (i = 0; i < FF_FS_LOCK && Files[i].fs; i++) ;
if (i == FF_FS_LOCK) return 0;
Files[i].fs = dp->obj.fs;
Files[i].clu = dp->obj.sclust;
Files[i].ofs = dp->dptr;
Files[i].ctr = 0;
}{...}
if (acc >= 1 && Files[i].ctr) return 0;
Files[i].ctr = acc ? 0x100 : Files[i].ctr + 1;
return i + 1;
}{...}
static FRESULT dec_share (
UINT i
)
{
UINT n;
FRESULT res;
if (--i < FF_FS_LOCK) {
n = Files[i].ctr;
if (n == 0x100) n = 0;
if (n > 0) n--;
Files[i].ctr = n;
if (n == 0) {
Files[i].fs = 0;
}{...}
res = FR_OK;
}{...} else {
res = FR_INT_ERR;
}{...}
return res;
}{...}
static void clear_share (
FATFS* fs
)
{
UINT i;
for (i = 0; i < FF_FS_LOCK; i++) {
if (Files[i].fs == fs) Files[i].fs = 0;
}{...}
}{...}
/* ... */
#endif
#if !FF_FS_READONLY
static FRESULT sync_window (
FATFS* fs
)
{
FRESULT res = FR_OK;
if (fs->wflag) {
if (disk_write(fs->pdrv, fs->win, fs->winsect, 1) == RES_OK) {
fs->wflag = 0;
if (fs->winsect - fs->fatbase < fs->fsize) {
if (fs->n_fats == 2) disk_write(fs->pdrv, fs->win, fs->winsect + fs->fsize, 1);
}{...}
}{...} else {
res = FR_DISK_ERR;
}{...}
}{...}
return res;
}{ ... }
/* ... */#endif
static FRESULT move_window (
FATFS* fs,
LBA_t sect
)
{
FRESULT res = FR_OK;
if (sect != fs->winsect) {
#if !FF_FS_READONLY
res = sync_window(fs);
#endif
if (res == FR_OK) {
if (disk_read(fs->pdrv, fs->win, sect, 1) != RES_OK) {
sect = (LBA_t)0 - 1;
res = FR_DISK_ERR;
}{...}
fs->winsect = sect;
}{...}
}{...}
return res;
}{ ... }
#if !FF_FS_READONLY
static FRESULT sync_fs (
FATFS* fs
)
{
FRESULT res;
res = sync_window(fs);
if (res == FR_OK) {
if (fs->fs_type == FS_FAT32 && fs->fsi_flag == 1) {
memset(fs->win, 0, SS(fs));
st_word(fs->win + BS_55AA, 0xAA55);
st_dword(fs->win + FSI_LeadSig, 0x41615252);
st_dword(fs->win + FSI_StrucSig, 0x61417272);
st_dword(fs->win + FSI_Free_Count, fs->free_clst);
st_dword(fs->win + FSI_Nxt_Free, fs->last_clst);
fs->winsect = fs->volbase + 1;
disk_write(fs->pdrv, fs->win, fs->winsect, 1);
fs->fsi_flag = 0;
}{...}
if (disk_ioctl(fs->pdrv, CTRL_SYNC, 0) != RES_OK) res = FR_DISK_ERR;
}{...}
return res;
}{ ... }
/* ... */#endif
static LBA_t clst2sect (
FATFS* fs,
DWORD clst
)
{
clst -= 2;
if (clst >= fs->n_fatent - 2) return 0;
return fs->database + (LBA_t)fs->csize * clst;
}{ ... }
static DWORD get_fat (
FFOBJID* obj,
DWORD clst
)
{
UINT wc, bc;
DWORD val;
FATFS *fs = obj->fs;
if (clst < 2 || clst >= fs->n_fatent) {
val = 1;
}{...} else {
val = 0xFFFFFFFF;
switch (fs->fs_type) {
case FS_FAT12 :
bc = (UINT)clst; bc += bc / 2;
if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break;
wc = fs->win[bc++ % SS(fs)];
if (move_window(fs, fs->fatbase + (bc / SS(fs))) != FR_OK) break;
wc |= fs->win[bc % SS(fs)] << 8;
val = (clst & 1) ? (wc >> 4) : (wc & 0xFFF);
break;
...
case FS_FAT16 :
if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 2))) != FR_OK) break;
val = ld_word(fs->win + clst * 2 % SS(fs));
break;
...
case FS_FAT32 :
if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 4))) != FR_OK) break;
val = ld_dword(fs->win + clst * 4 % SS(fs)) & 0x0FFFFFFF;
break;
#if FF_FS_EXFAT...
case FS_EXFAT :
if ((obj->objsize != 0 && obj->sclust != 0) || obj->stat == 0) {
DWORD cofs = clst - obj->sclust;
DWORD clen = (DWORD)((LBA_t)((obj->objsize - 1) / SS(fs)) / fs->csize);
if (obj->stat == 2 && cofs <= clen) {
val = (cofs == clen) ? 0x7FFFFFFF : clst + 1;
break;
}{...}
if (obj->stat == 3 && cofs < obj->n_cont) {
val = clst + 1;
break;
}{...}
if (obj->stat != 2) {
if (obj->n_frag != 0) {
val = 0x7FFFFFFF;
}{...} else {
if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 4))) != FR_OK) break;
val = ld_dword(fs->win + clst * 4 % SS(fs)) & 0x7FFFFFFF;
}{...}
break;
}{...}
}{...}
val = 1;
break;/* ... */
#endif
default:
val = 1; ...
}{...}
}{...}
return val;
}{ ... }
#if !FF_FS_READONLY
static FRESULT put_fat (
FATFS* fs,
DWORD clst,
DWORD val
)
{
UINT bc;
BYTE *p;
FRESULT res = FR_INT_ERR;
if (clst >= 2 && clst < fs->n_fatent) {
switch (fs->fs_type) {
case FS_FAT12:
bc = (UINT)clst; bc += bc / 2;
res = move_window(fs, fs->fatbase + (bc / SS(fs)));
if (res != FR_OK) break;
p = fs->win + bc++ % SS(fs);
*p = (clst & 1) ? ((*p & 0x0F) | ((BYTE)val << 4)) : (BYTE)val;
fs->wflag = 1;
res = move_window(fs, fs->fatbase + (bc / SS(fs)));
if (res != FR_OK) break;
p = fs->win + bc % SS(fs);
*p = (clst & 1) ? (BYTE)(val >> 4) : ((*p & 0xF0) | ((BYTE)(val >> 8) & 0x0F));
fs->wflag = 1;
break;
...
case FS_FAT16:
res = move_window(fs, fs->fatbase + (clst / (SS(fs) / 2)));
if (res != FR_OK) break;
st_word(fs->win + clst * 2 % SS(fs), (WORD)val);
fs->wflag = 1;
break;
...
case FS_FAT32:
#if FF_FS_EXFAT...
case FS_EXFAT:
#endif
res = move_window(fs, fs->fatbase + (clst / (SS(fs) / 4)));
if (res != FR_OK) break;
if (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT) {
val = (val & 0x0FFFFFFF) | (ld_dword(fs->win + clst * 4 % SS(fs)) & 0xF0000000);
}{...}
st_dword(fs->win + clst * 4 % SS(fs), val);
fs->wflag = 1;
break;
}{...}
}{...}
return res;
}{ ... }
/* ... */#endif
#if FF_FS_EXFAT && !FF_FS_READONLY
static DWORD find_bitmap (
FATFS* fs,
DWORD clst,
DWORD ncl
)
{
BYTE bm, bv;
UINT i;
DWORD val, scl, ctr;
clst -= 2;
if (clst >= fs->n_fatent - 2) clst = 0;
scl = val = clst; ctr = 0;
for (;;) {
if (move_window(fs, fs->bitbase + val / 8 / SS(fs)) != FR_OK) return 0xFFFFFFFF;
i = val / 8 % SS(fs); bm = 1 << (val % 8);
do {
do {
bv = fs->win[i] & bm; bm <<= 1;
if (++val >= fs->n_fatent - 2) {
val = 0; bm = 0; i = SS(fs);
}{...}
if (bv == 0) {
if (++ctr == ncl) return scl + 2;
}{...} else {
scl = val; ctr = 0;
}{...}
if (val == clst) return 0;
}{...} while (bm != 0);
bm = 1;
}{...} while (++i < SS(fs));
}{...}
}{...}
static FRESULT change_bitmap (
FATFS* fs,
DWORD clst,
DWORD ncl,
int bv
)
{
BYTE bm;
UINT i;
LBA_t sect;
clst -= 2;
sect = fs->bitbase + clst / 8 / SS(fs);
i = clst / 8 % SS(fs);
bm = 1 << (clst % 8);
for (;;) {
if (move_window(fs, sect++) != FR_OK) return FR_DISK_ERR;
do {
do {
if (bv == (int)((fs->win[i] & bm) != 0)) return FR_INT_ERR;
fs->win[i] ^= bm;
fs->wflag = 1;
if (--ncl == 0) return FR_OK;
}{...} while (bm <<= 1);
bm = 1;
}{...} while (++i < SS(fs));
i = 0;
}{...}
}{...}
static FRESULT fill_first_frag (
FFOBJID* obj
)
{
FRESULT res;
DWORD cl, n;
if (obj->stat == 3) {
for (cl = obj->sclust, n = obj->n_cont; n; cl++, n--) {
res = put_fat(obj->fs, cl, cl + 1);
if (res != FR_OK) return res;
}{...}
obj->stat = 0;
}{...}
return FR_OK;
}{...}
static FRESULT fill_last_frag (
FFOBJID* obj,
DWORD lcl,
DWORD term
)
{
FRESULT res;
while (obj->n_frag > 0) {
res = put_fat(obj->fs, lcl - obj->n_frag + 1, (obj->n_frag > 1) ? lcl - obj->n_frag + 2 : term);
if (res != FR_OK) return res;
obj->n_frag--;
}{...}
return FR_OK;
}{...}
/* ... */
#endif
#if !FF_FS_READONLY
static FRESULT remove_chain (
FFOBJID* obj,
DWORD clst,
DWORD pclst
)
{
FRESULT res = FR_OK;
DWORD nxt;
FATFS *fs = obj->fs;
#if FF_FS_EXFAT || FF_USE_TRIM
DWORD scl = clst, ecl = clst;
#endif
#if FF_USE_TRIM
LBA_t rt[2];
#endif
if (clst < 2 || clst >= fs->n_fatent) return FR_INT_ERR;
if (pclst != 0 && (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT || obj->stat != 2)) {
res = put_fat(fs, pclst, 0xFFFFFFFF);
if (res != FR_OK) return res;
}{...}
do {
nxt = get_fat(obj, clst);
if (nxt == 0) break;
if (nxt == 1) return FR_INT_ERR;
if (nxt == 0xFFFFFFFF) return FR_DISK_ERR;
if (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT) {
res = put_fat(fs, clst, 0);
if (res != FR_OK) return res;
}{...}
if (fs->free_clst < fs->n_fatent - 2) {
fs->free_clst++;
fs->fsi_flag |= 1;
}{...}
#if FF_FS_EXFAT || FF_USE_TRIM
if (ecl + 1 == nxt) {
ecl = nxt;
}{...} else {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
res = change_bitmap(fs, scl, ecl - scl + 1, 0);
if (res != FR_OK) return res;
}{...}
#endif/* ... */
#if FF_USE_TRIM
rt[0] = clst2sect(fs, scl);
rt[1] = clst2sect(fs, ecl) + fs->csize - 1;
disk_ioctl(fs->pdrv, CTRL_TRIM, rt); /* ... */
#endif
scl = ecl = nxt;
}{...}
#endif/* ... */
clst = nxt;
}{...} while (clst < fs->n_fatent);
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
if (pclst == 0) {
obj->stat = 0;
}{...} else {
if (obj->stat == 0) {
clst = obj->sclust;
while (clst != pclst) {
nxt = get_fat(obj, clst);
if (nxt < 2) return FR_INT_ERR;
if (nxt == 0xFFFFFFFF) return FR_DISK_ERR;
if (nxt != clst + 1) break;
clst++;
}{...}
if (clst == pclst) {
obj->stat = 2;
}{...}
}{...} else {
if (obj->stat == 3 && pclst >= obj->sclust && pclst <= obj->sclust + obj->n_cont) {
obj->stat = 2;
}{...}
}{...}
}{...}
}{...}
#endif/* ... */
return FR_OK;
}{ ... }
static DWORD create_chain (
FFOBJID* obj,
DWORD clst
)
{
DWORD cs, ncl, scl;
FRESULT res;
FATFS *fs = obj->fs;
if (clst == 0) {
scl = fs->last_clst;
if (scl == 0 || scl >= fs->n_fatent) scl = 1;
}{...}
else {
cs = get_fat(obj, clst);
if (cs < 2) return 1;
if (cs == 0xFFFFFFFF) return cs;
if (cs < fs->n_fatent) return cs;
scl = clst;
}{...}
if (fs->free_clst == 0) return 0;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
ncl = find_bitmap(fs, scl, 1);
if (ncl == 0 || ncl == 0xFFFFFFFF) return ncl;
res = change_bitmap(fs, ncl, 1, 1);
if (res == FR_INT_ERR) return 1;
if (res == FR_DISK_ERR) return 0xFFFFFFFF;
if (clst == 0) {
obj->stat = 2;
}{...} else {
if (obj->stat == 2 && ncl != scl + 1) {
obj->n_cont = scl - obj->sclust;
obj->stat = 3;
}{...}
}{...}
if (obj->stat != 2) {
if (ncl == clst + 1) {
obj->n_frag = obj->n_frag ? obj->n_frag + 1 : 2;
}{...} else {
if (obj->n_frag == 0) obj->n_frag = 1;
res = fill_last_frag(obj, clst, ncl);
if (res == FR_OK) obj->n_frag = 1;
}{...}
}{...}
}{...} else
#endif
{
ncl = 0;
if (scl == clst) {
ncl = scl + 1;
if (ncl >= fs->n_fatent) ncl = 2;
cs = get_fat(obj, ncl);
if (cs == 1 || cs == 0xFFFFFFFF) return cs;
if (cs != 0) {
cs = fs->last_clst;
if (cs >= 2 && cs < fs->n_fatent) scl = cs;
ncl = 0;
}{...}
}{...}
if (ncl == 0) {
ncl = scl;
for (;;) {
ncl++;
if (ncl >= fs->n_fatent) {
ncl = 2;
if (ncl > scl) return 0;
}{...}
cs = get_fat(obj, ncl);
if (cs == 0) break;
if (cs == 1 || cs == 0xFFFFFFFF) return cs;
if (ncl == scl) return 0;
}{...}
}{...}
res = put_fat(fs, ncl, 0xFFFFFFFF);
if (res == FR_OK && clst != 0) {
res = put_fat(fs, clst, ncl);
}{...}
}{...}
if (res == FR_OK) {
fs->last_clst = ncl;
if (fs->free_clst <= fs->n_fatent - 2) fs->free_clst--;
fs->fsi_flag |= 1;
}{...} else {
ncl = (res == FR_DISK_ERR) ? 0xFFFFFFFF : 1;
}{...}
return ncl;
}{ ... }
/* ... */#endif
#if FF_USE_FASTSEEK
static DWORD clmt_clust (
FIL* fp,
FSIZE_t ofs
)
{
DWORD cl, ncl;
DWORD *tbl;
FATFS *fs = fp->obj.fs;
tbl = fp->cltbl + 1;
cl = (DWORD)(ofs / SS(fs) / fs->csize);
for (;;) {
ncl = *tbl++;
if (ncl == 0) return 0;
if (cl < ncl) break;
cl -= ncl; tbl++;
}{...}
return cl + *tbl;
}{...}
/* ... */
#endif
#if !FF_FS_READONLY
static FRESULT dir_clear (
FATFS *fs,
DWORD clst
)
{
LBA_t sect;
UINT n, szb;
BYTE *ibuf;
if (sync_window(fs) != FR_OK) return FR_DISK_ERR;
sect = clst2sect(fs, clst);
fs->winsect = sect;
memset(fs->win, 0, SS(fs));
#if FF_USE_LFN == 3
for (szb = ((DWORD)fs->csize * SS(fs) >= MAX_MALLOC) ? MAX_MALLOC : fs->csize * SS(fs), ibuf = 0; szb > SS(fs) && (ibuf = ff_memalloc(szb)) == 0; szb /= 2) ;
if (szb > SS(fs)) {
memset(ibuf, 0, szb);
szb /= SS(fs);
for (n = 0; n < fs->csize && disk_write(fs->pdrv, ibuf, sect + n, szb) == RES_OK; n += szb) ;
ff_memfree(ibuf);
}{...} else
#endif
{
ibuf = fs->win; szb = 1;
for (n = 0; n < fs->csize && disk_write(fs->pdrv, ibuf, sect + n, szb) == RES_OK; n += szb) ;
}{...}
return (n == fs->csize) ? FR_OK : FR_DISK_ERR;
}{ ... }
/* ... */#endif
static FRESULT dir_sdi (
FF_DIR* dp,
DWORD ofs
)
{
DWORD csz, clst;
FATFS *fs = dp->obj.fs;
if (ofs >= (DWORD)((FF_FS_EXFAT && fs->fs_type == FS_EXFAT) ? MAX_DIR_EX : MAX_DIR) || ofs % SZDIRE) {
return FR_INT_ERR;
}{...}
dp->dptr = ofs;
clst = dp->obj.sclust;
if (clst == 0 && fs->fs_type >= FS_FAT32) {
clst = (DWORD)fs->dirbase;
if (FF_FS_EXFAT) dp->obj.stat = 0;
}{...}
if (clst == 0) {
if (ofs / SZDIRE >= fs->n_rootdir) return FR_INT_ERR;
dp->sect = fs->dirbase;
}{...} else {
csz = (DWORD)fs->csize * SS(fs);
while (ofs >= csz) {
clst = get_fat(&dp->obj, clst);
if (clst == 0xFFFFFFFF) return FR_DISK_ERR;
if (clst < 2 || clst >= fs->n_fatent) return FR_INT_ERR;
ofs -= csz;
}{...}
dp->sect = clst2sect(fs, clst);
}{...}
dp->clust = clst;
if (dp->sect == 0) return FR_INT_ERR;
dp->sect += ofs / SS(fs);
dp->dir = fs->win + (ofs % SS(fs));
return FR_OK;
}{ ... }
static FRESULT dir_next (
FF_DIR* dp,
int stretch
)
{
DWORD ofs, clst;
FATFS *fs = dp->obj.fs;
ofs = dp->dptr + SZDIRE;
if (ofs >= (DWORD)((FF_FS_EXFAT && fs->fs_type == FS_EXFAT) ? MAX_DIR_EX : MAX_DIR)) dp->sect = 0;
if (dp->sect == 0) return FR_NO_FILE;
if (ofs % SS(fs) == 0) {
dp->sect++;
if (dp->clust == 0) {
if (ofs / SZDIRE >= fs->n_rootdir) {
dp->sect = 0; return FR_NO_FILE;
}{...}
}{...}
else {
if ((ofs / SS(fs) & (fs->csize - 1)) == 0) {
clst = get_fat(&dp->obj, dp->clust);
if (clst <= 1) return FR_INT_ERR;
if (clst == 0xFFFFFFFF) return FR_DISK_ERR;
if (clst >= fs->n_fatent) {
#if !FF_FS_READONLY
if (!stretch) {
dp->sect = 0; return FR_NO_FILE;
}{...}
clst = create_chain(&dp->obj, dp->clust);
if (clst == 0) return FR_DENIED;
if (clst == 1) return FR_INT_ERR;
if (clst == 0xFFFFFFFF) return FR_DISK_ERR;
if (dir_clear(fs, clst) != FR_OK) return FR_DISK_ERR;
if (FF_FS_EXFAT) dp->obj.stat |= 4; /* ... */
#else
if (!stretch) dp->sect = 0;
dp->sect = 0; return FR_NO_FILE; /* ... */
#endif
}{...}
dp->clust = clst;
dp->sect = clst2sect(fs, clst);
}{...}
}{...}
}{...}
dp->dptr = ofs;
dp->dir = fs->win + ofs % SS(fs);
return FR_OK;
}{ ... }
#if !FF_FS_READONLY
static FRESULT dir_alloc (
FF_DIR* dp,
UINT n_ent
)
{
FRESULT res;
UINT n;
FATFS *fs = dp->obj.fs;
res = dir_sdi(dp, 0);
if (res == FR_OK) {
n = 0;
do {
res = move_window(fs, dp->sect);
if (res != FR_OK) break;
#if FF_FS_EXFAT
if ((fs->fs_type == FS_EXFAT) ? (int)((dp->dir[XDIR_Type] & 0x80) == 0) : (int)(dp->dir[DIR_Name] == DDEM || dp->dir[DIR_Name] == 0)) {
#else
if (dp->dir[DIR_Name] == DDEM || dp->dir[DIR_Name] == 0) {
#endif
if (++n == n_ent) break;
}{...} else {
n = 0;
}{...}
res = dir_next(dp, 1);
}{...} while (res == FR_OK);
}{...}
if (res == FR_NO_FILE) res = FR_DENIED;
return res;
}{ ... }
/* ... */#endif
static DWORD ld_clust (
FATFS* fs,
const BYTE* dir
)
{
DWORD cl;
cl = ld_word(dir + DIR_FstClusLO);
if (fs->fs_type == FS_FAT32) {
cl |= (DWORD)ld_word(dir + DIR_FstClusHI) << 16;
}{...}
return cl;
}{ ... }
#if !FF_FS_READONLY
static void st_clust (
FATFS* fs,
BYTE* dir,
DWORD cl
)
{
st_word(dir + DIR_FstClusLO, (WORD)cl);
if (fs->fs_type == FS_FAT32) {
st_word(dir + DIR_FstClusHI, (WORD)(cl >> 16));
}{...}
}{ ... }
/* ... */#endif
#if FF_USE_LFN
static int cmp_lfn (
const WCHAR* lfnbuf,
BYTE* dir
)
{
UINT i, s;
WCHAR wc, uc;
if (ld_word(dir + LDIR_FstClusLO) != 0) return 0;
i = ((dir[LDIR_Ord] & 0x3F) - 1) * 13;
for (wc = 1, s = 0; s < 13; s++) {
uc = ld_word(dir + LfnOfs[s]);
if (wc != 0) {
if (i >= FF_MAX_LFN + 1 || ff_wtoupper(uc) != ff_wtoupper(lfnbuf[i++])) {
return 0;
}{...}
wc = uc;
}{...} else {
if (uc != 0xFFFF) return 0;
}{...}
}{...}
if ((dir[LDIR_Ord] & LLEF) && wc && lfnbuf[i]) return 0;
return 1;
}{...}
#if FF_FS_MINIMIZE <= 1 || FF_FS_RPATH >= 2 || FF_USE_LABEL || FF_FS_EXFAT
static int pick_lfn (
WCHAR* lfnbuf,
BYTE* dir
)
{
UINT i, s;
WCHAR wc, uc;
if (ld_word(dir + LDIR_FstClusLO) != 0) return 0;
i = ((dir[LDIR_Ord] & ~LLEF) - 1) * 13;
for (wc = 1, s = 0; s < 13; s++) {
uc = ld_word(dir + LfnOfs[s]);
if (wc != 0) {
if (i >= FF_MAX_LFN + 1) return 0;
lfnbuf[i++] = wc = uc;
}{...} else {
if (uc != 0xFFFF) return 0;
}{...}
}{...}
if (dir[LDIR_Ord] & LLEF && wc != 0) {
if (i >= FF_MAX_LFN + 1) return 0;
lfnbuf[i] = 0;
}{...}
return 1;
}{...}
/* ... */#endif
#if !FF_FS_READONLY
static void put_lfn (
const WCHAR* lfn,
BYTE* dir,
BYTE ord,
BYTE sum
)
{
UINT i, s;
WCHAR wc;
dir[LDIR_Chksum] = sum;
dir[LDIR_Attr] = AM_LFN;
dir[LDIR_Type] = 0;
st_word(dir + LDIR_FstClusLO, 0);
i = (ord - 1) * 13;
s = wc = 0;
do {
if (wc != 0xFFFF) wc = lfn[i++];
st_word(dir + LfnOfs[s], wc);
if (wc == 0) wc = 0xFFFF;
}{...} while (++s < 13);
if (wc == 0xFFFF || !lfn[i]) ord |= LLEF;
dir[LDIR_Ord] = ord;
}{...}
/* ... */
#endif /* ... */
#endif
#if FF_USE_LFN && !FF_FS_READONLY
static void gen_numname (
BYTE* dst,
const BYTE* src,
const WCHAR* lfn,
UINT seq
)
{
BYTE ns[8], c;
UINT i, j;
WCHAR wc;
DWORD sreg;
memcpy(dst, src, 11);
if (seq > 5) {
sreg = seq;
while (*lfn) {
wc = *lfn++;
for (i = 0; i < 16; i++) {
sreg = (sreg << 1) + (wc & 1);
wc >>= 1;
if (sreg & 0x10000) sreg ^= 0x11021;
}{...}
}{...}
seq = (UINT)sreg;
}{...}
i = 7;
do {
c = (BYTE)((seq % 16) + '0'); seq /= 16;
if (c > '9') c += 7;
ns[i--] = c;
}{...} while (i && seq);
ns[i] = '~';
for (j = 0; j < i && dst[j] != ' '; j++) {
if (dbc_1st(dst[j])) {
if (j == i - 1) break;
j++;
}{...}
}{...}
do {
dst[j++] = (i < 8) ? ns[i++] : ' ';
}{...} while (j < 8);
}{...}
/* ... */#endif
#if FF_USE_LFN
static BYTE sum_sfn (
const BYTE* dir
)
{
BYTE sum = 0;
UINT n = 11;
do {
sum = (sum >> 1) + (sum << 7) + *dir++;
}{...} while (--n);
return sum;
}{...}
/* ... */
#endif
#if FF_FS_EXFAT
static WORD xdir_sum (
const BYTE* dir
)
{
UINT i, szblk;
WORD sum;
szblk = (dir[XDIR_NumSec] + 1) * SZDIRE;
for (i = sum = 0; i < szblk; i++) {
if (i == XDIR_SetSum) {
i++;
}{...} else {
sum = ((sum & 1) ? 0x8000 : 0) + (sum >> 1) + dir[i];
}{...}
}{...}
return sum;
}{...}
static WORD xname_sum (
const WCHAR* name
)
{
WCHAR chr;
WORD sum = 0;
while ((chr = *name++) != 0) {
chr = (WCHAR)ff_wtoupper(chr);
sum = ((sum & 1) ? 0x8000 : 0) + (sum >> 1) + (chr & 0xFF);
sum = ((sum & 1) ? 0x8000 : 0) + (sum >> 1) + (chr >> 8);
}{...}
return sum;
}{...}
#if !FF_FS_READONLY && FF_USE_MKFS
static DWORD xsum32 (
BYTE dat,
DWORD sum
)
{
sum = ((sum & 1) ? 0x80000000 : 0) + (sum >> 1) + dat;
return sum;
}{...}
/* ... */#endif
static FRESULT load_xdir (
FF_DIR* dp
)
{
FRESULT res;
UINT i, sz_ent;
BYTE *dirb = dp->obj.fs->dirbuf;
res = move_window(dp->obj.fs, dp->sect);
if (res != FR_OK) return res;
if (dp->dir[XDIR_Type] != ET_FILEDIR) return FR_INT_ERR;
memcpy(dirb + 0 * SZDIRE, dp->dir, SZDIRE);
sz_ent = (dirb[XDIR_NumSec] + 1) * SZDIRE;
if (sz_ent < 3 * SZDIRE || sz_ent > 19 * SZDIRE) return FR_INT_ERR;
res = dir_next(dp, 0);
if (res == FR_NO_FILE) res = FR_INT_ERR;
if (res != FR_OK) return res;
res = move_window(dp->obj.fs, dp->sect);
if (res != FR_OK) return res;
if (dp->dir[XDIR_Type] != ET_STREAM) return FR_INT_ERR;
memcpy(dirb + 1 * SZDIRE, dp->dir, SZDIRE);
if (MAXDIRB(dirb[XDIR_NumName]) > sz_ent) return FR_INT_ERR;
i = 2 * SZDIRE;
do {
res = dir_next(dp, 0);
if (res == FR_NO_FILE) res = FR_INT_ERR;
if (res != FR_OK) return res;
res = move_window(dp->obj.fs, dp->sect);
if (res != FR_OK) return res;
if (dp->dir[XDIR_Type] != ET_FILENAME) return FR_INT_ERR;
if (i < MAXDIRB(FF_MAX_LFN)) memcpy(dirb + i, dp->dir, SZDIRE);
}{...} while ((i += SZDIRE) < sz_ent);
if (i <= MAXDIRB(FF_MAX_LFN)) {
if (xdir_sum(dirb) != ld_word(dirb + XDIR_SetSum)) return FR_INT_ERR;
}{...}
return FR_OK;
}{...}
static void init_alloc_info (
FATFS* fs,
FFOBJID* obj
)
{
obj->sclust = ld_dword(fs->dirbuf + XDIR_FstClus);
obj->objsize = ld_qword(fs->dirbuf + XDIR_FileSize);
obj->stat = fs->dirbuf[XDIR_GenFlags] & 2;
obj->n_frag = 0;
}{...}
#if !FF_FS_READONLY || FF_FS_RPATH != 0
static FRESULT load_obj_xdir (
FF_DIR* dp,
const FFOBJID* obj
)
{
FRESULT res;
dp->obj.fs = obj->fs;
dp->obj.sclust = obj->c_scl;
dp->obj.stat = (BYTE)obj->c_size;
dp->obj.objsize = obj->c_size & 0xFFFFFF00;
dp->obj.n_frag = 0;
dp->blk_ofs = obj->c_ofs;
res = dir_sdi(dp, dp->blk_ofs);
if (res == FR_OK) {
res = load_xdir(dp);
}{...}
return res;
}{...}
/* ... */#endif
#if !FF_FS_READONLY
static FRESULT store_xdir (
FF_DIR* dp
)
{
FRESULT res;
UINT nent;
BYTE *dirb = dp->obj.fs->dirbuf;
st_word(dirb + XDIR_SetSum, xdir_sum(dirb));
nent = dirb[XDIR_NumSec] + 1;
res = dir_sdi(dp, dp->blk_ofs);
while (res == FR_OK) {
res = move_window(dp->obj.fs, dp->sect);
if (res != FR_OK) break;
memcpy(dp->dir, dirb, SZDIRE);
dp->obj.fs->wflag = 1;
if (--nent == 0) break;
dirb += SZDIRE;
res = dir_next(dp, 0);
}{...}
return (res == FR_OK || res == FR_DISK_ERR) ? res : FR_INT_ERR;
}{...}
static void create_xdir (
BYTE* dirb,
const WCHAR* lfn
)
{
UINT i;
BYTE nc1, nlen;
WCHAR wc;
memset(dirb, 0, 2 * SZDIRE);
dirb[0 * SZDIRE + XDIR_Type] = ET_FILEDIR;
dirb[1 * SZDIRE + XDIR_Type] = ET_STREAM;
i = SZDIRE * 2;
nlen = nc1 = 0; wc = 1;
do {
dirb[i++] = ET_FILENAME; dirb[i++] = 0;
do {
if (wc != 0 && (wc = lfn[nlen]) != 0) nlen++;
st_word(dirb + i, wc);
i += 2;
}{...} while (i % SZDIRE != 0);
nc1++;
}{...} while (lfn[nlen]);
dirb[XDIR_NumName] = nlen;
dirb[XDIR_NumSec] = 1 + nc1;
st_word(dirb + XDIR_NameHash, xname_sum(lfn));
}{...}
/* ... */
#endif /* ... */
#endif
#if FF_FS_MINIMIZE <= 1 || FF_FS_RPATH >= 2 || FF_USE_LABEL || FF_FS_EXFAT
#define DIR_READ_FILE(dp) dir_read(dp, 0)
#define DIR_READ_LABEL(dp) dir_read(dp, 1)
static FRESULT dir_read (
FF_DIR* dp,
int vol
)
{
FRESULT res = FR_NO_FILE;
FATFS *fs = dp->obj.fs;
BYTE attr, b;
#if FF_USE_LFN
BYTE ord = 0xFF, sum = 0xFF;
#endif
while (dp->sect) {
res = move_window(fs, dp->sect);
if (res != FR_OK) break;
b = dp->dir[DIR_Name];
if (b == 0) {
res = FR_NO_FILE; break;
}{...}
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
if (FF_USE_LABEL && vol) {
if (b == ET_VLABEL) break;
}{...} else {
if (b == ET_FILEDIR) {
dp->blk_ofs = dp->dptr;
res = load_xdir(dp);
if (res == FR_OK) {
dp->obj.attr = fs->dirbuf[XDIR_Attr] & AM_MASK;
}{...}
break;
}{...}
}{...}
}{...} else
#endif
{
dp->obj.attr = attr = dp->dir[DIR_Attr] & AM_MASK;
#if FF_USE_LFN
if (b == DDEM || b == '.' || (int)((attr & ~AM_ARC) == AM_VOL) != vol) {
ord = 0xFF;
}{...} else {
if (attr == AM_LFN) {
if (b & LLEF) {
sum = dp->dir[LDIR_Chksum];
b &= (BYTE)~LLEF; ord = b;
dp->blk_ofs = dp->dptr;
}{...}
ord = (b == ord && sum == dp->dir[LDIR_Chksum] && pick_lfn(fs->lfnbuf, dp->dir)) ? ord - 1 : 0xFF;
}{...} else {
if (ord != 0 || sum != sum_sfn(dp->dir)) {
dp->blk_ofs = 0xFFFFFFFF;
}{...}
break;
}{...}
}{...}
#else/* ... */
if (b != DDEM && b != '.' && attr != AM_LFN && (int)((attr & ~AM_ARC) == AM_VOL) == vol) {
break;
}{...}
#endif/* ... */
}{...}
res = dir_next(dp, 0);
if (res != FR_OK) break;
}{...}
if (res != FR_OK) dp->sect = 0;
return res;
}{ ... }
/* ... */#endif
static FRESULT dir_find (
FF_DIR* dp
)
{
FRESULT res;
FATFS *fs = dp->obj.fs;
BYTE c;
#if FF_USE_LFN
BYTE a, ord, sum;
#endif
res = dir_sdi(dp, 0);
if (res != FR_OK) return res;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
BYTE nc;
UINT di, ni;
WORD hash = xname_sum(fs->lfnbuf);
while ((res = DIR_READ_FILE(dp)) == FR_OK) {
#if FF_MAX_LFN < 255
if (fs->dirbuf[XDIR_NumName] > FF_MAX_LFN) continue;
#endif
if (ld_word(fs->dirbuf + XDIR_NameHash) != hash) continue;
for (nc = fs->dirbuf[XDIR_NumName], di = SZDIRE * 2, ni = 0; nc; nc--, di += 2, ni++) {
if ((di % SZDIRE) == 0) di += 2;
if (ff_wtoupper(ld_word(fs->dirbuf + di)) != ff_wtoupper(fs->lfnbuf[ni])) break;
}{...}
if (nc == 0 && !fs->lfnbuf[ni]) break;
}{...}
return res;
}{...}
#endif/* ... */
#if FF_USE_LFN
ord = sum = 0xFF; dp->blk_ofs = 0xFFFFFFFF;
#endif
do {
res = move_window(fs, dp->sect);
if (res != FR_OK) break;
c = dp->dir[DIR_Name];
if (c == 0) { res = FR_NO_FILE; break; }
#if FF_USE_LFN
dp->obj.attr = a = dp->dir[DIR_Attr] & AM_MASK;
if (c == DDEM || ((a & AM_VOL) && a != AM_LFN)) {
ord = 0xFF; dp->blk_ofs = 0xFFFFFFFF;
}{...} else {
if (a == AM_LFN) {
if (!(dp->fn[NSFLAG] & NS_NOLFN)) {
if (c & LLEF) {
sum = dp->dir[LDIR_Chksum];
c &= (BYTE)~LLEF; ord = c;
dp->blk_ofs = dp->dptr;
}{...}
ord = (c == ord && sum == dp->dir[LDIR_Chksum] && cmp_lfn(fs->lfnbuf, dp->dir)) ? ord - 1 : 0xFF;
}{...}
}{...} else {
if (ord == 0 && sum == sum_sfn(dp->dir)) break;
if (!(dp->fn[NSFLAG] & NS_LOSS) && !memcmp(dp->dir, dp->fn, 11)) break;
ord = 0xFF; dp->blk_ofs = 0xFFFFFFFF;
}{...}
}{...}
#else/* ... */
dp->obj.attr = dp->dir[DIR_Attr] & AM_MASK;
if (!(dp->dir[DIR_Attr] & AM_VOL) && !memcmp(dp->dir, dp->fn, 11)) break; /* ... */
#endif
res = dir_next(dp, 0);
}{...} while (res == FR_OK);
return res;
}{ ... }
#if !FF_FS_READONLY
static FRESULT dir_register (
FF_DIR* dp
)
{
FRESULT res;
FATFS *fs = dp->obj.fs;
#if FF_USE_LFN
UINT n, len, n_ent;
BYTE sn[12], sum;
if (dp->fn[NSFLAG] & (NS_DOT | NS_NONAME)) return FR_INVALID_NAME;
for (len = 0; fs->lfnbuf[len]; len++) ;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
n_ent = (len + 14) / 15 + 2;
res = dir_alloc(dp, n_ent);
if (res != FR_OK) return res;
dp->blk_ofs = dp->dptr - SZDIRE * (n_ent - 1);
if (dp->obj.stat & 4) {
dp->obj.stat &= ~4;
res = fill_first_frag(&dp->obj);
if (res != FR_OK) return res;
res = fill_last_frag(&dp->obj, dp->clust, 0xFFFFFFFF);
if (res != FR_OK) return res;
if (dp->obj.sclust != 0) {
FF_DIR dj;
res = load_obj_xdir(&dj, &dp->obj);
if (res != FR_OK) return res;
dp->obj.objsize += (DWORD)fs->csize * SS(fs);
st_qword(fs->dirbuf + XDIR_FileSize, dp->obj.objsize);
st_qword(fs->dirbuf + XDIR_ValidFileSize, dp->obj.objsize);
fs->dirbuf[XDIR_GenFlags] = dp->obj.stat | 1;
res = store_xdir(&dj);
if (res != FR_OK) return res;
}{...}
}{...}
create_xdir(fs->dirbuf, fs->lfnbuf);
return FR_OK;
}{...}
#endif/* ... */
memcpy(sn, dp->fn, 12);
if (sn[NSFLAG] & NS_LOSS) {
dp->fn[NSFLAG] = NS_NOLFN;
for (n = 1; n < 100; n++) {
gen_numname(dp->fn, sn, fs->lfnbuf, n);
res = dir_find(dp);
if (res != FR_OK) break;
}{...}
if (n == 100) return FR_DENIED;
if (res != FR_NO_FILE) return res;
dp->fn[NSFLAG] = sn[NSFLAG];
}{...}
n_ent = (sn[NSFLAG] & NS_LFN) ? (len + 12) / 13 + 1 : 1;
res = dir_alloc(dp, n_ent);
if (res == FR_OK && --n_ent) {
res = dir_sdi(dp, dp->dptr - n_ent * SZDIRE);
if (res == FR_OK) {
sum = sum_sfn(dp->fn);
do {
res = move_window(fs, dp->sect);
if (res != FR_OK) break;
put_lfn(fs->lfnbuf, dp->dir, (BYTE)n_ent, sum);
fs->wflag = 1;
res = dir_next(dp, 0);
}{...} while (res == FR_OK && --n_ent);
}{...}
}{...}
/* ... */#else
res = dir_alloc(dp, 1);
/* ... */
#endif
if (res == FR_OK) {
res = move_window(fs, dp->sect);
if (res == FR_OK) {
memset(dp->dir, 0, SZDIRE);
memcpy(dp->dir + DIR_Name, dp->fn, 11);
#if FF_USE_LFN
dp->dir[DIR_NTres] = dp->fn[NSFLAG] & (NS_BODY | NS_EXT);
#endif
fs->wflag = 1;
}{...}
}{...}
return res;
}{ ... }
/* ... */#endif
#if !FF_FS_READONLY && FF_FS_MINIMIZE == 0
static FRESULT dir_remove (
FF_DIR* dp
)
{
FRESULT res;
FATFS *fs = dp->obj.fs;
#if FF_USE_LFN
DWORD last = dp->dptr;
res = (dp->blk_ofs == 0xFFFFFFFF) ? FR_OK : dir_sdi(dp, dp->blk_ofs);
if (res == FR_OK) {
do {
res = move_window(fs, dp->sect);
if (res != FR_OK) break;
if (FF_FS_EXFAT && fs->fs_type == FS_EXFAT) {
dp->dir[XDIR_Type] &= 0x7F;
}{...} else {
dp->dir[DIR_Name] = DDEM;
}{...}
fs->wflag = 1;
if (dp->dptr >= last) break;
res = dir_next(dp, 0);
}{...} while (res == FR_OK);
if (res == FR_NO_FILE) res = FR_INT_ERR;
}{...}
#else/* ... */
res = move_window(fs, dp->sect);
if (res == FR_OK) {
dp->dir[DIR_Name] = DDEM;
fs->wflag = 1;
}{...}
#endif/* ... */
return res;
}{ ... }
/* ... */#endif
#if FF_FS_MINIMIZE <= 1 || FF_FS_RPATH >= 2
static void get_fileinfo (
FF_DIR* dp,
FILINFO* fno
)
{
UINT si, di;
#if FF_USE_LFN
BYTE lcf;
WCHAR wc, hs;
FATFS *fs = dp->obj.fs;
UINT nw;/* ... */
#else
TCHAR c;
#endif
fno->fname[0] = 0;
if (dp->sect == 0) return;
#if FF_USE_LFN
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
UINT nc = 0;
si = SZDIRE * 2; di = 0;
hs = 0;
while (nc < fs->dirbuf[XDIR_NumName]) {
if (si >= MAXDIRB(FF_MAX_LFN)) {
di = 0; break;
}{...}
if ((si % SZDIRE) == 0) si += 2;
wc = ld_word(fs->dirbuf + si); si += 2; nc++;
if (hs == 0 && IsSurrogate(wc)) {
hs = wc; continue;
}{...}
nw = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di);
if (nw == 0) {
di = 0; break;
}{...}
di += nw;
hs = 0;
}{...}
if (hs != 0) di = 0;
if (di == 0) fno->fname[di++] = '\?';
fno->fname[di] = 0;
fno->altname[0] = 0;
fno->fattrib = fs->dirbuf[XDIR_Attr] & AM_MASKX;
fno->fsize = (fno->fattrib & AM_DIR) ? 0 : ld_qword(fs->dirbuf + XDIR_FileSize);
fno->ftime = ld_word(fs->dirbuf + XDIR_ModTime + 0);
fno->fdate = ld_word(fs->dirbuf + XDIR_ModTime + 2);
return;
}{...} else
#endif
{
if (dp->blk_ofs != 0xFFFFFFFF) {
si = di = 0;
hs = 0;
while (fs->lfnbuf[si] != 0) {
wc = fs->lfnbuf[si++];
if (hs == 0 && IsSurrogate(wc)) {
hs = wc; continue;
}{...}
nw = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di);
if (nw == 0) {
di = 0; break;
}{...}
di += nw;
hs = 0;
}{...}
if (hs != 0) di = 0;
fno->fname[di] = 0;
}{...}
}{...}
si = di = 0;
while (si < 11) {
wc = dp->dir[si++];
if (wc == ' ') continue;
if (wc == RDDEM) wc = DDEM;
if (si == 9 && di < FF_SFN_BUF) fno->altname[di++] = '.';
#if FF_LFN_UNICODE >= 1
if (dbc_1st((BYTE)wc) && si != 8 && si != 11 && dbc_2nd(dp->dir[si])) {
wc = wc << 8 | dp->dir[si++];
}{...}
wc = ff_oem2uni(wc, CODEPAGE);
if (wc == 0) {
di = 0; break;
}{...}
nw = put_utf(wc, &fno->altname[di], FF_SFN_BUF - di);
if (nw == 0) {
di = 0; break;
}{...}
di += nw;/* ... */
#else
fno->altname[di++] = (TCHAR)wc;
#endif
}{...}
fno->altname[di] = 0;
if (fno->fname[0] == 0) {
if (di == 0) {
fno->fname[di++] = '\?';
}{...} else {
for (si = di = 0, lcf = NS_BODY; fno->altname[si]; si++, di++) {
wc = (WCHAR)fno->altname[si];
if (wc == '.') lcf = NS_EXT;
if (IsUpper(wc) && (dp->dir[DIR_NTres] & lcf)) wc += 0x20;
fno->fname[di] = (TCHAR)wc;
}{...}
}{...}
fno->fname[di] = 0;
if (!dp->dir[DIR_NTres]) fno->altname[0] = 0;
}{...}
/* ... */#else
si = di = 0;
while (si < 11) {
c = (TCHAR)dp->dir[si++];
if (c == ' ') continue;
if (c == RDDEM) c = DDEM;
if (si == 9) fno->fname[di++] = '.';
fno->fname[di++] = c;
}{...}
fno->fname[di] = 0; /* ... */
#endif
fno->fattrib = dp->dir[DIR_Attr] & AM_MASK;
fno->fsize = ld_dword(dp->dir + DIR_FileSize);
fno->ftime = ld_word(dp->dir + DIR_ModTime + 0);
fno->fdate = ld_word(dp->dir + DIR_ModTime + 2);
}{ ... }
/* ... */#endif
#if FF_USE_FIND && FF_FS_MINIMIZE <= 1
#define FIND_RECURS 4
static DWORD get_achar (
const TCHAR** ptr
)
{
DWORD chr;
#if FF_USE_LFN && FF_LFN_UNICODE >= 1
chr = tchar2uni(ptr);
if (chr == 0xFFFFFFFF) chr = 0;
chr = ff_wtoupper(chr);
/* ... */
#else
chr = (BYTE)*(*ptr)++;
if (IsLower(chr)) chr -= 0x20;
#if FF_CODE_PAGE == 0
if (ExCvt && chr >= 0x80) chr = ExCvt[chr - 0x80];
#elif FF_CODE_PAGE < 900
if (chr >= 0x80) chr = ExCvt[chr - 0x80];
#endif
#if FF_CODE_PAGE == 0 || FF_CODE_PAGE >= 900
if (dbc_1st((BYTE)chr)) {
chr = dbc_2nd((BYTE)**ptr) ? chr << 8 | (BYTE)*(*ptr)++ : 0;
}{...}
/* ... */#endif
/* ... */
#endif
return chr;
}{...}
static int pattern_match (
const TCHAR* pat,
const TCHAR* nam,
UINT skip,
UINT recur
)
{
const TCHAR *pptr;
const TCHAR *nptr;
DWORD pchr, nchr;
UINT sk;
while ((skip & 0xFF) != 0) {
if (!get_achar(&nam)) return 0;
skip--;
}{...}
if (*pat == 0 && skip) return 1;
do {
pptr = pat; nptr = nam;
for (;;) {
if (*pptr == '\?' || *pptr == '*') {
if (recur == 0) return 0;
sk = 0;
do {
if (*pptr++ == '\?') {
sk++;
}{...} else {
sk |= 0x100;
}{...}
}{...} while (*pptr == '\?' || *pptr == '*');
if (pattern_match(pptr, nptr, sk, recur - 1)) return 1;
nchr = *nptr; break;
}{...}
pchr = get_achar(&pptr);
nchr = get_achar(&nptr);
if (pchr != nchr) break;
if (pchr == 0) return 1;
}{...}
get_achar(&nam);
}{...} while (skip && nchr);
return 0;
}{...}
/* ... */
#endif
static FRESULT create_name (
FF_DIR* dp,
const TCHAR** path
)
{
#if FF_USE_LFN
BYTE b, cf;
WCHAR wc;
WCHAR *lfn;
const TCHAR* p;
DWORD uc;
UINT i, ni, si, di;
p = *path; lfn = dp->obj.fs->lfnbuf; di = 0;
for (;;) {
uc = tchar2uni(&p);
if (uc == 0xFFFFFFFF) return FR_INVALID_NAME;
if (uc >= 0x10000) lfn[di++] = (WCHAR)(uc >> 16);
wc = (WCHAR)uc;
if (wc < ' ' || IsSeparator(wc)) break;
if (wc < 0x80 && strchr("*:<>|\"\?\x7F", (int)wc)) return FR_INVALID_NAME;
if (di >= FF_MAX_LFN) return FR_INVALID_NAME;
lfn[di++] = wc;
}{...}
if (wc < ' ') {
cf = NS_LAST;
}{...} else {
while (IsSeparator(*p)) p++;
cf = 0;
if (IsTerminator(*p)) cf = NS_LAST;
}{...}
*path = p;
#if FF_FS_RPATH != 0
if ((di == 1 && lfn[di - 1] == '.') ||
(di == 2 && lfn[di - 1] == '.' && lfn[di - 2] == '.')) {
lfn[di] = 0;
for (i = 0; i < 11; i++) {
dp->fn[i] = (i < di) ? '.' : ' ';
}{...}
dp->fn[i] = cf | NS_DOT;
return FR_OK;
}{...}
#endif/* ... */
while (di) {
wc = lfn[di - 1];
if (wc != ' ' && wc != '.') break;
di--;
}{...}
lfn[di] = 0;
if (di == 0) return FR_INVALID_NAME;
for (si = 0; lfn[si] == ' '; si++) ;
if (si > 0 || lfn[si] == '.') cf |= NS_LOSS | NS_LFN;
while (di > 0 && lfn[di - 1] != '.') di--;
memset(dp->fn, ' ', 11);
i = b = 0; ni = 8;
for (;;) {
wc = lfn[si++];
if (wc == 0) break;
if (wc == ' ' || (wc == '.' && si != di)) {
cf |= NS_LOSS | NS_LFN;
continue;
}{...}
if (i >= ni || si == di) {
if (ni == 11) {
cf |= NS_LOSS | NS_LFN;
break;
}{...}
if (si != di) cf |= NS_LOSS | NS_LFN;
if (si > di) break;
si = di; i = 8; ni = 11; b <<= 2;
continue;
}{...}
if (wc >= 0x80) {
cf |= NS_LFN;
#if FF_CODE_PAGE == 0
if (ExCvt) {
wc = ff_uni2oem(wc, CODEPAGE);
if (wc & 0x80) wc = ExCvt[wc & 0x7F];
}{...} else {
wc = ff_uni2oem(ff_wtoupper(wc), CODEPAGE);
}{...}
#elif/* ... */ FF_CODE_PAGE < 900
wc = ff_uni2oem(wc, CODEPAGE);
if (wc & 0x80) wc = ExCvt[wc & 0x7F]; /* ... */
#else
wc = ff_uni2oem(ff_wtoupper(wc), CODEPAGE);
#endif
}{...}
if (wc >= 0x100) {
if (i >= ni - 1) {
cf |= NS_LOSS | NS_LFN;
i = ni; continue;
}{...}
dp->fn[i++] = (BYTE)(wc >> 8);
}{...} else {
if (wc == 0 || strchr("+,;=[]", (int)wc)) {
wc = '_'; cf |= NS_LOSS | NS_LFN;
}{...} else {
if (IsUpper(wc)) {
b |= 2;
}{...}
if (IsLower(wc)) {
b |= 1; wc -= 0x20;
}{...}
}{...}
}{...}
dp->fn[i++] = (BYTE)wc;
}{...}
if (dp->fn[0] == DDEM) dp->fn[0] = RDDEM;
if (ni == 8) b <<= 2;
if ((b & 0x0C) == 0x0C || (b & 0x03) == 0x03) cf |= NS_LFN;
if (!(cf & NS_LFN)) {
if (b & 0x01) cf |= NS_EXT;
if (b & 0x04) cf |= NS_BODY;
}{...}
dp->fn[NSFLAG] = cf;
return FR_OK;
/* ... */
#else
BYTE c, d;
BYTE *sfn;
UINT ni, si, i;
const char *p;
p = *path; sfn = dp->fn;
memset(sfn, ' ', 11);
si = i = 0; ni = 8;
#if FF_FS_RPATH != 0
if (p[si] == '.') {
for (;;) {
c = (BYTE)p[si++];
if (c != '.' || si >= 3) break;
sfn[i++] = c;
}{...}
if (!IsSeparator(c) && c > ' ') return FR_INVALID_NAME;
*path = p + si;
sfn[NSFLAG] = (c <= ' ') ? NS_LAST | NS_DOT : NS_DOT;
return FR_OK;
}{...}
#endif/* ... */
for (;;) {
c = (BYTE)p[si++];
if (c <= ' ') break;
if (IsSeparator(c)) {
while (IsSeparator(p[si])) si++;
break;
}{...}
if (c == '.' || i >= ni) {
if (ni == 11 || c != '.') return FR_INVALID_NAME;
i = 8; ni = 11;
continue;
}{...}
#if FF_CODE_PAGE == 0
if (ExCvt && c >= 0x80) {
c = ExCvt[c & 0x7F];
}{...}
#elif/* ... */ FF_CODE_PAGE < 900
if (c >= 0x80) {
c = ExCvt[c & 0x7F];
}{...}
#endif/* ... */
if (dbc_1st(c)) {
d = (BYTE)p[si++];
if (!dbc_2nd(d) || i >= ni - 1) return FR_INVALID_NAME;
sfn[i++] = c;
sfn[i++] = d;
}{...} else {
if (strchr("*+,:;<=>[]|\"\?\x7F", (int)c)) return FR_INVALID_NAME;
if (IsLower(c)) c -= 0x20;
sfn[i++] = c;
}{...}
}{...}
*path = &p[si];
if (i == 0) return FR_INVALID_NAME;
if (sfn[0] == DDEM) sfn[0] = RDDEM;
sfn[NSFLAG] = (c <= ' ' || p[si] <= ' ') ? NS_LAST : 0;
return FR_OK;/* ... */
#endif
}{ ... }
static FRESULT follow_path (
FF_DIR* dp,
const TCHAR* path
)
{
FRESULT res;
BYTE ns;
FATFS *fs = dp->obj.fs;
#if FF_FS_RPATH != 0
if (!IsSeparator(*path) && (FF_STR_VOLUME_ID != 2 || !IsTerminator(*path))) {
dp->obj.sclust = fs->cdir;
}{...} else
#endif
{
while (IsSeparator(*path)) path++;
dp->obj.sclust = 0;
}{...}
#if FF_FS_EXFAT
dp->obj.n_frag = 0;
#if FF_FS_RPATH != 0
if (fs->fs_type == FS_EXFAT && dp->obj.sclust) {
FF_DIR dj;
dp->obj.c_scl = fs->cdc_scl;
dp->obj.c_size = fs->cdc_size;
dp->obj.c_ofs = fs->cdc_ofs;
res = load_obj_xdir(&dj, &dp->obj);
if (res != FR_OK) return res;
dp->obj.objsize = ld_dword(fs->dirbuf + XDIR_FileSize);
dp->obj.stat = fs->dirbuf[XDIR_GenFlags] & 2;
}{...}
#endif/* ... */
/* ... */#endif
if ((UINT)*path < ' ') {
dp->fn[NSFLAG] = NS_NONAME;
res = dir_sdi(dp, 0);
}{...} else {
for (;;) {
res = create_name(dp, &path);
if (res != FR_OK) break;
res = dir_find(dp);
ns = dp->fn[NSFLAG];
if (res != FR_OK) {
if (res == FR_NO_FILE) {
if (FF_FS_RPATH && (ns & NS_DOT)) {
if (!(ns & NS_LAST)) continue;
dp->fn[NSFLAG] = NS_NONAME;
res = FR_OK;
}{...} else {
if (!(ns & NS_LAST)) res = FR_NO_PATH;
}{...}
}{...}
break;
}{...}
if (ns & NS_LAST) break;
if (!(dp->obj.attr & AM_DIR)) {
res = FR_NO_PATH; break;
}{...}
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
dp->obj.c_scl = dp->obj.sclust;
dp->obj.c_size = ((DWORD)dp->obj.objsize & 0xFFFFFF00) | dp->obj.stat;
dp->obj.c_ofs = dp->blk_ofs;
init_alloc_info(fs, &dp->obj);
}{...} else
#endif
{
dp->obj.sclust = ld_clust(fs, fs->win + dp->dptr % SS(fs));
}{...}
}{...}
}{...}
return res;
}{ ... }
static int get_ldnumber (
const TCHAR** path
)
{
const TCHAR *tp;
const TCHAR *tt;
TCHAR tc;
int i;
int vol = -1;
#if FF_STR_VOLUME_ID
const char *sp;
char c;/* ... */
#endif
tt = tp = *path;
if (!tp) return vol;
do {
tc = *tt++;
}{...} while (!IsTerminator(tc) && tc != ':');
if (tc == ':') {
i = FF_VOLUMES;
if (IsDigit(*tp) && tp + 2 == tt) {
i = (int)*tp - '0';
}{...}
#if FF_STR_VOLUME_ID == 1
else {
i = 0;
do {
sp = VolumeStr[i]; tp = *path;
do {
c = *sp++; tc = *tp++;
if (IsLower(c)) c -= 0x20;
if (IsLower(tc)) tc -= 0x20;
}{...} while (c && (TCHAR)c == tc);
}{...} while ((c || tp != tt) && ++i < FF_VOLUMES);
}{...}
#endif/* ... */
if (i < FF_VOLUMES) {
vol = i;
*path = tt;
}{...}
return vol;
}{...}
#if FF_STR_VOLUME_ID == 2
if (*tp == '/') {
while (*(tp + 1) == '/') tp++;
i = 0;
do {
tt = tp; sp = VolumeStr[i];
do {
c = *sp++; tc = *(++tt);
if (IsLower(c)) c -= 0x20;
if (IsLower(tc)) tc -= 0x20;
}{...} while (c && (TCHAR)c == tc);
}{...} while ((c || (tc != '/' && !IsTerminator(tc))) && ++i < FF_VOLUMES);
if (i < FF_VOLUMES) {
vol = i;
*path = tt;
}{...}
return vol;
}{...}
#endif/* ... */
#if FF_FS_RPATH != 0
vol = CurrVol;
#else
vol = 0;
#endif
return vol;
}{ ... }
#if FF_LBA64
static DWORD crc32 (
DWORD crc,
BYTE d
)
{
BYTE b;
for (b = 1; b; b <<= 1) {
crc ^= (d & b) ? 1 : 0;
crc = (crc & 1) ? crc >> 1 ^ 0xEDB88320 : crc >> 1;
}{...}
return crc;
}{...}
static int test_gpt_header (
const BYTE* gpth
)
{
UINT i;
DWORD bcc, hlen;
if (memcmp(gpth + GPTH_Sign, "EFI PART" "\0\0\1", 12)) return 0;
hlen = ld_dword(gpth + GPTH_Size);
if (hlen < 92 || hlen > FF_MIN_SS) return 0;
for (i = 0, bcc = 0xFFFFFFFF; i < hlen; i++) {
bcc = crc32(bcc, i - GPTH_Bcc < 4 ? 0 : gpth[i]);
}{...}
if (~bcc != ld_dword(gpth + GPTH_Bcc)) return 0;
if (ld_dword(gpth + GPTH_PteSize) != SZ_GPTE) return 0;
if (ld_dword(gpth + GPTH_PtNum) > 128) return 0;
return 1;
}{...}
#if !FF_FS_READONLY && FF_USE_MKFS
static DWORD make_rand (
DWORD seed,
BYTE *buff,
UINT n
)
{
UINT r;
if (seed == 0) seed = 1;
do {
for (r = 0; r < 8; r++) seed = seed & 1 ? seed >> 1 ^ 0xA3000000 : seed >> 1;
*buff++ = (BYTE)seed;
}{...} while (--n);
return seed;
}{...}
/* ... */
#endif/* ... */
#endif
static UINT check_fs (
FATFS* fs,
LBA_t sect
)
{
WORD w, sign;
BYTE b;
fs->wflag = 0; fs->winsect = (LBA_t)0 - 1;
if (move_window(fs, sect) != FR_OK) return 4;
sign = ld_word(fs->win + BS_55AA);
#if FF_FS_EXFAT
if (sign == 0xAA55 && !memcmp(fs->win + BS_JmpBoot, "\xEB\x76\x90" "EXFAT ", 11)) return 1;
#endif
b = fs->win[BS_JmpBoot];
if (b == 0xEB || b == 0xE9 || b == 0xE8) {
if (sign == 0xAA55 && !memcmp(fs->win + BS_FilSysType32, "FAT32 ", 8)) {
return 0;
}{...}
w = ld_word(fs->win + BPB_BytsPerSec);
b = fs->win[BPB_SecPerClus];
if ((w & (w - 1)) == 0 && w >= FF_MIN_SS && w <= FF_MAX_SS
&& b != 0 && (b & (b - 1)) == 0
&& ld_word(fs->win + BPB_RsvdSecCnt) != 0
&& (UINT)fs->win[BPB_NumFATs] - 1 <= 1
&& ld_word(fs->win + BPB_RootEntCnt) != 0
&& (ld_word(fs->win + BPB_TotSec16) >= MIN_FAT12_SEC_VOL || ld_dword(fs->win + BPB_TotSec32) >= 0x10000)
&& ld_word(fs->win + BPB_FATSz16) != 0) {
return 0;
}{...}
}{...}
return sign == 0xAA55 ? 2 : 3;
}{ ... }
static UINT find_volume (
FATFS* fs,
UINT part
)
{
UINT fmt, i;
DWORD mbr_pt[4];
fmt = check_fs(fs, 0);
if (fmt != 2 && (fmt >= 3 || part == 0)) return fmt;
#if FF_LBA64
if (fs->win[MBR_Table + PTE_System] == 0xEE) {
DWORD n_ent, v_ent, ofs;
QWORD pt_lba;
if (move_window(fs, 1) != FR_OK) return 4;
if (!test_gpt_header(fs->win)) return 3;
n_ent = ld_dword(fs->win + GPTH_PtNum);
pt_lba = ld_qword(fs->win + GPTH_PtOfs);
for (v_ent = i = 0; i < n_ent; i++) {
if (move_window(fs, pt_lba + i * SZ_GPTE / SS(fs)) != FR_OK) return 4;
ofs = i * SZ_GPTE % SS(fs);
if (!memcmp(fs->win + ofs + GPTE_PtGuid, GUID_MS_Basic, 16)) {
v_ent++;
fmt = check_fs(fs, ld_qword(fs->win + ofs + GPTE_FstLba));
if (part == 0 && fmt <= 1) return fmt;
if (part != 0 && v_ent == part) return fmt;
}{...}
}{...}
return 3;
}{...}
#endif/* ... */
if (FF_MULTI_PARTITION && part > 4) return 3;
for (i = 0; i < 4; i++) {
mbr_pt[i] = ld_dword(fs->win + MBR_Table + i * SZ_PTE + PTE_StLba);
}{...}
i = part ? part - 1 : 0;
do {
fmt = mbr_pt[i] ? check_fs(fs, mbr_pt[i]) : 3;
}{...} while (part == 0 && fmt >= 2 && ++i < 4);
return fmt;
}{ ... }
static FRESULT mount_volume (
const TCHAR** path,
FATFS** rfs,
BYTE mode
)
{
int vol;
FATFS *fs;
DSTATUS stat;
LBA_t bsect;
DWORD tsect, sysect, fasize, nclst, szbfat;
WORD nrsv;
UINT fmt;
*rfs = 0;
vol = get_ldnumber(path);
if (vol < 0) return FR_INVALID_DRIVE;
fs = FatFs[vol];
if (!fs) return FR_NOT_ENABLED;
#if FF_FS_REENTRANT
if (!lock_volume(fs, 1)) return FR_TIMEOUT;
#endif
*rfs = fs;
mode &= (BYTE)~FA_READ;
if (fs->fs_type != 0) {
stat = disk_status(fs->pdrv);
if (!(stat & STA_NOINIT)) {
if (!FF_FS_READONLY && mode && (stat & STA_PROTECT)) {
return FR_WRITE_PROTECTED;
}{...}
return FR_OK;
}{...}
}{...}
fs->fs_type = 0;
stat = disk_initialize(fs->pdrv);
if (stat & STA_NOINIT) {
return FR_NOT_READY;
}{...}
if (!FF_FS_READONLY && mode && (stat & STA_PROTECT)) {
return FR_WRITE_PROTECTED;
}{...}
#if FF_MAX_SS != FF_MIN_SS
if (disk_ioctl(fs->pdrv, GET_SECTOR_SIZE, &SS(fs)) != RES_OK) return FR_DISK_ERR;
if (SS(fs) > FF_MAX_SS || SS(fs) < FF_MIN_SS || (SS(fs) & (SS(fs) - 1))) return FR_DISK_ERR;/* ... */
#endif
#if FF_USE_DYN_BUFFER
fs->win = ff_memalloc(SS(fs));
if (!fs->win) return FR_NOT_ENOUGH_CORE;/* ... */
#endif
fmt = find_volume(fs, LD2PT(vol));
if (fmt == 4) return FR_DISK_ERR;
if (fmt >= 2) return FR_NO_FILESYSTEM;
bsect = fs->winsect;
#if FF_FS_EXFAT
if (fmt == 1) {
QWORD maxlba;
DWORD so, cv, bcl, i;
for (i = BPB_ZeroedEx; i < BPB_ZeroedEx + 53 && fs->win[i] == 0; i++) ;
if (i < BPB_ZeroedEx + 53) return FR_NO_FILESYSTEM;
if (ld_word(fs->win + BPB_FSVerEx) != 0x100) return FR_NO_FILESYSTEM;
if (1 << fs->win[BPB_BytsPerSecEx] != SS(fs)) {
return FR_NO_FILESYSTEM;
}{...}
maxlba = ld_qword(fs->win + BPB_TotSecEx) + bsect;
if (!FF_LBA64 && maxlba >= 0x100000000) return FR_NO_FILESYSTEM;
fs->fsize = ld_dword(fs->win + BPB_FatSzEx);
fs->n_fats = fs->win[BPB_NumFATsEx];
if (fs->n_fats != 1) return FR_NO_FILESYSTEM;
fs->csize = 1 << fs->win[BPB_SecPerClusEx];
if (fs->csize == 0) return FR_NO_FILESYSTEM;
nclst = ld_dword(fs->win + BPB_NumClusEx);
if (nclst > MAX_EXFAT) return FR_NO_FILESYSTEM;
fs->n_fatent = nclst + 2;
fs->volbase = bsect;
fs->database = bsect + ld_dword(fs->win + BPB_DataOfsEx);
fs->fatbase = bsect + ld_dword(fs->win + BPB_FatOfsEx);
if (maxlba < (QWORD)fs->database + nclst * fs->csize) return FR_NO_FILESYSTEM;
fs->dirbase = ld_dword(fs->win + BPB_RootClusEx);
so = i = 0;
for (;;) {
if (i == 0) {
if (so >= fs->csize) return FR_NO_FILESYSTEM;
if (move_window(fs, clst2sect(fs, (DWORD)fs->dirbase) + so) != FR_OK) return FR_DISK_ERR;
so++;
}{...}
if (fs->win[i] == ET_BITMAP) break;
i = (i + SZDIRE) % SS(fs);
}{...}
bcl = ld_dword(fs->win + i + 20);
if (bcl < 2 || bcl >= fs->n_fatent) return FR_NO_FILESYSTEM;
fs->bitbase = fs->database + fs->csize * (bcl - 2);
for (;;) {
if (move_window(fs, fs->fatbase + bcl / (SS(fs) / 4)) != FR_OK) return FR_DISK_ERR;
cv = ld_dword(fs->win + bcl % (SS(fs) / 4) * 4);
if (cv == 0xFFFFFFFF) break;
if (cv != ++bcl) return FR_NO_FILESYSTEM;
}{...}
#if !FF_FS_READONLY
fs->last_clst = fs->free_clst = 0xFFFFFFFF;
#endif
fmt = FS_EXFAT;
}{...} else
#endif
{
if (ld_word(fs->win + BPB_BytsPerSec) != SS(fs)) return FR_NO_FILESYSTEM;
fasize = ld_word(fs->win + BPB_FATSz16);
if (fasize == 0) fasize = ld_dword(fs->win + BPB_FATSz32);
fs->fsize = fasize;
fs->n_fats = fs->win[BPB_NumFATs];
if (fs->n_fats != 1 && fs->n_fats != 2) return FR_NO_FILESYSTEM;
fasize *= fs->n_fats;
fs->csize = fs->win[BPB_SecPerClus];
if (fs->csize == 0 || (fs->csize & (fs->csize - 1))) return FR_NO_FILESYSTEM;
fs->n_rootdir = ld_word(fs->win + BPB_RootEntCnt);
if (fs->n_rootdir % (SS(fs) / SZDIRE)) return FR_NO_FILESYSTEM;
tsect = ld_word(fs->win + BPB_TotSec16);
if (tsect == 0) tsect = ld_dword(fs->win + BPB_TotSec32);
nrsv = ld_word(fs->win + BPB_RsvdSecCnt);
if (nrsv == 0) return FR_NO_FILESYSTEM;
sysect = nrsv + fasize + fs->n_rootdir / (SS(fs) / SZDIRE);
if (tsect < sysect) return FR_NO_FILESYSTEM;
nclst = (tsect - sysect) / fs->csize;
if (nclst == 0) return FR_NO_FILESYSTEM;
fmt = 0;
if (nclst <= MAX_FAT32) fmt = FS_FAT32;
if (nclst <= MAX_FAT16) fmt = FS_FAT16;
if (nclst <= MAX_FAT12) fmt = FS_FAT12;
if (fmt == 0) return FR_NO_FILESYSTEM;
fs->n_fatent = nclst + 2;
fs->volbase = bsect;
fs->fatbase = bsect + nrsv;
fs->database = bsect + sysect;
if (fmt == FS_FAT32) {
if (ld_word(fs->win + BPB_FSVer32) != 0) return FR_NO_FILESYSTEM;
if (fs->n_rootdir != 0) return FR_NO_FILESYSTEM;
fs->dirbase = ld_dword(fs->win + BPB_RootClus32);
szbfat = fs->n_fatent * 4;
}{...} else {
if (fs->n_rootdir == 0) return FR_NO_FILESYSTEM;
fs->dirbase = fs->fatbase + fasize;
szbfat = (fmt == FS_FAT16) ?
fs->n_fatent * 2 : fs->n_fatent * 3 / 2 + (fs->n_fatent & 1);
}{...}
if (fs->fsize < (szbfat + (SS(fs) - 1)) / SS(fs)) return FR_NO_FILESYSTEM;
#if !FF_FS_READONLY
fs->last_clst = fs->free_clst = 0xFFFFFFFF;
fs->fsi_flag = 0x80;
#if (FF_FS_NOFSINFO & 3) != 3
if (fmt == FS_FAT32
&& ld_word(fs->win + BPB_FSInfo32) == 1
&& move_window(fs, bsect + 1) == FR_OK)
{
fs->fsi_flag = 0;
if (ld_word(fs->win + BS_55AA) == 0xAA55
&& ld_dword(fs->win + FSI_LeadSig) == 0x41615252
&& ld_dword(fs->win + FSI_StrucSig) == 0x61417272)
{
#if (FF_FS_NOFSINFO & 1) == 0
fs->free_clst = ld_dword(fs->win + FSI_Free_Count);
#endif
#if (FF_FS_NOFSINFO & 2) == 0
fs->last_clst = ld_dword(fs->win + FSI_Nxt_Free);
#endif
}{...}
}{...}
#endif/* ... */ /* ... */
#endif
}{...}
fs->fs_type = (BYTE)fmt;
fs->id = ++Fsid;
#if FF_USE_LFN == 1
fs->lfnbuf = LfnBuf;
#if FF_FS_EXFAT
fs->dirbuf = DirBuf;
#endif/* ... */
#endif
#if FF_FS_RPATH != 0
fs->cdir = 0;
#endif
#if FF_FS_LOCK
clear_share(fs);
#endif
return FR_OK;
}{ ... }
static FRESULT validate (
FFOBJID* obj,
FATFS** rfs
)
{
FRESULT res = FR_INVALID_OBJECT;
if (obj && obj->fs && obj->fs->fs_type && obj->id == obj->fs->id) {
#if FF_FS_REENTRANT
if (lock_volume(obj->fs, 0)) {
if (!(disk_status(obj->fs->pdrv) & STA_NOINIT)) {
res = FR_OK;
}{...} else {
unlock_volume(obj->fs, FR_OK);
}{...}
}{...} else {
res = FR_TIMEOUT;
}{...}
#else/* ... */
if (!(disk_status(obj->fs->pdrv) & STA_NOINIT)) {
res = FR_OK;
}{...}
#endif/* ... */
}{...}
*rfs = (res == FR_OK) ? obj->fs : 0;
return res;
}{ ... }
/* ... */
FRESULT f_mount (
FATFS* fs,
const TCHAR* path,
BYTE opt
)
{
FATFS *cfs;
int vol;
FRESULT res;
const TCHAR *rp = path;
vol = get_ldnumber(&rp);
if (vol < 0) return FR_INVALID_DRIVE;
cfs = FatFs[vol];
if (cfs) {
FatFs[vol] = 0;
#if FF_FS_LOCK
clear_share(cfs);
#endif
#if FF_FS_REENTRANT
ff_mutex_delete(vol);
#endif
#if FF_USE_DYN_BUFFER
if (cfs->fs_type)
ff_memfree(cfs->win); /* ... */
#endif
cfs->fs_type = 0;
}{...}
if (fs) {
fs->pdrv = LD2PD(vol);
#if FF_FS_REENTRANT
fs->ldrv = (BYTE)vol;
if (!ff_mutex_create(vol)) return FR_INT_ERR;
#if FF_FS_LOCK
if (SysLock == 0) {
if (!ff_mutex_create(FF_VOLUMES)) {
ff_mutex_delete(vol);
return FR_INT_ERR;
}{...}
SysLock = 1;
}{...}
#endif/* ... */
/* ... */#endif
fs->fs_type = 0;
FatFs[vol] = fs;
}{...}
if (opt == 0) return FR_OK;
res = mount_volume(&path, &fs, 0);
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_open (
FIL* fp,
const TCHAR* path,
BYTE mode
)
{
FRESULT res;
FF_DIR dj;
FATFS *fs;
#if !FF_FS_READONLY
DWORD cl, bcs, clst, tm;
LBA_t sc;
FSIZE_t ofs;/* ... */
#endif
DEF_NAMBUF
if (!fp) return FR_INVALID_OBJECT;
mode &= FF_FS_READONLY ? FA_READ : FA_READ | FA_WRITE | FA_CREATE_ALWAYS | FA_CREATE_NEW | FA_OPEN_ALWAYS | FA_OPEN_APPEND;
res = mount_volume(&path, &fs, mode);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
#if !FF_FS_READONLY
if (res == FR_OK) {
if (dj.fn[NSFLAG] & NS_NONAME) {
res = FR_INVALID_NAME;
}{...}
#if FF_FS_LOCK
else {
res = chk_share(&dj, (mode & ~FA_READ) ? 1 : 0);
}{...}
#endif/* ... */
}{...}
if (mode & (FA_CREATE_ALWAYS | FA_OPEN_ALWAYS | FA_CREATE_NEW)) {
if (res != FR_OK) {
if (res == FR_NO_FILE) {
#if FF_FS_LOCK
res = enq_share() ? dir_register(&dj) : FR_TOO_MANY_OPEN_FILES;
#else
res = dir_register(&dj);
#endif
}{...}
mode |= FA_CREATE_ALWAYS;
}{...}
else {
if (dj.obj.attr & (AM_RDO | AM_DIR)) {
res = FR_DENIED;
}{...} else {
if (mode & FA_CREATE_NEW) res = FR_EXIST;
}{...}
}{...}
if (res == FR_OK && (mode & FA_CREATE_ALWAYS)) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
fp->obj.fs = fs;
init_alloc_info(fs, &fp->obj);
memset(fs->dirbuf + 2, 0, 30);
memset(fs->dirbuf + 38, 0, 26);
fs->dirbuf[XDIR_Attr] = AM_ARC;
st_dword(fs->dirbuf + XDIR_CrtTime, GET_FATTIME());
fs->dirbuf[XDIR_GenFlags] = 1;
res = store_xdir(&dj);
if (res == FR_OK && fp->obj.sclust != 0) {
res = remove_chain(&fp->obj, fp->obj.sclust, 0);
fs->last_clst = fp->obj.sclust - 1;
}{...}
}{...} else
#endif
{
tm = GET_FATTIME();
st_dword(dj.dir + DIR_CrtTime, tm);
st_dword(dj.dir + DIR_ModTime, tm);
cl = ld_clust(fs, dj.dir);
dj.dir[DIR_Attr] = AM_ARC;
st_clust(fs, dj.dir, 0);
st_dword(dj.dir + DIR_FileSize, 0);
fs->wflag = 1;
if (cl != 0) {
sc = fs->winsect;
res = remove_chain(&dj.obj, cl, 0);
if (res == FR_OK) {
res = move_window(fs, sc);
fs->last_clst = cl - 1;
}{...}
}{...}
}{...}
}{...}
}{...}
else {
if (res == FR_OK) {
if (dj.obj.attr & AM_DIR) {
res = FR_NO_FILE;
}{...} else {
if ((mode & FA_WRITE) && (dj.obj.attr & AM_RDO)) {
res = FR_DENIED;
}{...}
}{...}
}{...}
}{...}
if (res == FR_OK) {
if (mode & FA_CREATE_ALWAYS) mode |= FA_MODIFIED;
fp->dir_sect = fs->winsect;
fp->dir_ptr = dj.dir;
#if FF_FS_LOCK
fp->obj.lockid = inc_share(&dj, (mode & ~FA_READ) ? 1 : 0);
if (fp->obj.lockid == 0) res = FR_INT_ERR;/* ... */
#endif
}{...}
#else/* ... */
if (res == FR_OK) {
if (dj.fn[NSFLAG] & NS_NONAME) {
res = FR_INVALID_NAME;
}{...} else {
if (dj.obj.attr & AM_DIR) {
res = FR_NO_FILE;
}{...}
}{...}
}{...}
#endif/* ... */
if (res == FR_OK) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
fp->obj.c_scl = dj.obj.sclust;
fp->obj.c_size = ((DWORD)dj.obj.objsize & 0xFFFFFF00) | dj.obj.stat;
fp->obj.c_ofs = dj.blk_ofs;
init_alloc_info(fs, &fp->obj);
}{...} else
#endif
{
fp->obj.sclust = ld_clust(fs, dj.dir);
fp->obj.objsize = ld_dword(dj.dir + DIR_FileSize);
}{...}
#if FF_USE_FASTSEEK
fp->cltbl = 0;
#endif
fp->obj.fs = fs;
fp->obj.id = fs->id;
fp->flag = mode;
fp->err = 0;
fp->sect = 0;
fp->fptr = 0;
#if !FF_FS_READONLY
#if !FF_FS_TINY
#if FF_USE_DYN_BUFFER
fp->buf = NULL;
if (res == FR_OK) {
fp->buf = ff_memalloc(SS(fs));
if (!fp->buf) {
res = FR_NOT_ENOUGH_CORE;
goto fail;
}{...}
memset(fp->buf, 0, SS(fs));
}{...}
#else/* ... */
memset(fp->buf, 0, SS(fs));
#endif/* ... */
#endif
if ((mode & FA_SEEKEND) && fp->obj.objsize > 0) {
fp->fptr = fp->obj.objsize;
bcs = (DWORD)fs->csize * SS(fs);
clst = fp->obj.sclust;
for (ofs = fp->obj.objsize; res == FR_OK && ofs > bcs; ofs -= bcs) {
clst = get_fat(&fp->obj, clst);
if (clst <= 1) res = FR_INT_ERR;
if (clst == 0xFFFFFFFF) res = FR_DISK_ERR;
}{...}
fp->clust = clst;
if (res == FR_OK && ofs % SS(fs)) {
sc = clst2sect(fs, clst);
if (sc == 0) {
res = FR_INT_ERR;
}{...} else {
fp->sect = sc + (DWORD)(ofs / SS(fs));
#if !FF_FS_TINY
if (disk_read(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) res = FR_DISK_ERR;
#endif
}{...}
}{...}
#if FF_FS_LOCK
if (res != FR_OK) dec_share(fp->obj.lockid);
#endif
}{...}
#endif/* ... */
}{...}
FREE_NAMBUF();
}{...}
if (res != FR_OK) {
fp->obj.fs = 0;
#if !FF_FS_TINY && FF_USE_DYN_BUFFER
if (fp->buf) {
ff_memfree(fp->buf);
fp->buf = NULL;
}{...}
#endif/* ... */
}{...}
#if FF_USE_DYN_BUFFER
fail:
#endif
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_read (
FIL* fp,
void* buff,
UINT btr,
UINT* br
)
{
FRESULT res;
FATFS *fs;
DWORD clst;
LBA_t sect;
FSIZE_t remain;
UINT rcnt, cc, csect;
BYTE *rbuff = (BYTE*)buff;
*br = 0;
res = validate(&fp->obj, &fs);
if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res);
if (!(fp->flag & FA_READ)) LEAVE_FF(fs, FR_DENIED);
remain = fp->obj.objsize - fp->fptr;
if (btr > remain) btr = (UINT)remain;
for ( ; btr > 0; btr -= rcnt, *br += rcnt, rbuff += rcnt, fp->fptr += rcnt) {
if (fp->fptr % SS(fs) == 0) {
csect = (UINT)(fp->fptr / SS(fs) & (fs->csize - 1));
if (csect == 0) {
if (fp->fptr == 0) {
clst = fp->obj.sclust;
}{...} else {
#if FF_USE_FASTSEEK
if (fp->cltbl) {
clst = clmt_clust(fp, fp->fptr);
}{...} else
#endif
{
clst = get_fat(&fp->obj, fp->clust);
}{...}
}{...}
if (clst < 2) ABORT(fs, FR_INT_ERR);
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
fp->clust = clst;
}{...}
sect = clst2sect(fs, fp->clust);
if (sect == 0) ABORT(fs, FR_INT_ERR);
sect += csect;
cc = btr / SS(fs);
if (cc > 0) {
if (csect + cc > fs->csize) {
cc = fs->csize - csect;
}{...}
if (disk_read(fs->pdrv, rbuff, sect, cc) != RES_OK) ABORT(fs, FR_DISK_ERR);
#if !FF_FS_READONLY && FF_FS_MINIMIZE <= 2
#if FF_FS_TINY
if (fs->wflag && fs->winsect - sect < cc) {
memcpy(rbuff + ((fs->winsect - sect) * SS(fs)), fs->win, SS(fs));
}{...}
#else/* ... */
if ((fp->flag & FA_DIRTY) && fp->sect - sect < cc) {
memcpy(rbuff + ((fp->sect - sect) * SS(fs)), fp->buf, SS(fs));
}{...}
#endif/* ... */
/* ... */#endif
rcnt = SS(fs) * cc;
continue;
}{...}
#if !FF_FS_TINY
if (fp->sect != sect) {
#if !FF_FS_READONLY
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
if (disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
}{...}
#endif/* ... */
fp->sect = sect;
}{...}
rcnt = SS(fs) - (UINT)fp->fptr % SS(fs);
if (rcnt > btr) rcnt = btr;
#if FF_FS_TINY
if (move_window(fs, fp->sect) != FR_OK) ABORT(fs, FR_DISK_ERR);
memcpy(rbuff, fs->win + fp->fptr % SS(fs), rcnt); /* ... */
#else
memcpy(rbuff, fp->buf + fp->fptr % SS(fs), rcnt);
#endif
}{...}
LEAVE_FF(fs, FR_OK);
}{ ... }
#if !FF_FS_READONLY
FRESULT f_write (
FIL* fp,
const void* buff,
UINT btw,
UINT* bw
)
{
FRESULT res;
FATFS *fs;
DWORD clst;
LBA_t sect;
UINT wcnt, cc, csect;
const BYTE *wbuff = (const BYTE*)buff;
*bw = 0;
res = validate(&fp->obj, &fs);
if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res);
if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED);
if ((!FF_FS_EXFAT || fs->fs_type != FS_EXFAT) && (DWORD)(fp->fptr + btw) < (DWORD)fp->fptr) {
btw = (UINT)(0xFFFFFFFF - (DWORD)fp->fptr);
}{...}
for ( ; btw > 0; btw -= wcnt, *bw += wcnt, wbuff += wcnt, fp->fptr += wcnt, fp->obj.objsize = (fp->fptr > fp->obj.objsize) ? fp->fptr : fp->obj.objsize) {
if (fp->fptr % SS(fs) == 0) {
csect = (UINT)(fp->fptr / SS(fs)) & (fs->csize - 1);
if (csect == 0) {
if (fp->fptr == 0) {
clst = fp->obj.sclust;
if (clst == 0) {
clst = create_chain(&fp->obj, 0);
}{...}
}{...} else {
#if FF_USE_FASTSEEK
if (fp->cltbl) {
clst = clmt_clust(fp, fp->fptr);
}{...} else
#endif
{
clst = create_chain(&fp->obj, fp->clust);
}{...}
}{...}
if (clst == 0) break;
if (clst == 1) ABORT(fs, FR_INT_ERR);
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
fp->clust = clst;
if (fp->obj.sclust == 0) fp->obj.sclust = clst;
}{...}
#if FF_FS_TINY
if (fs->winsect == fp->sect && sync_window(fs) != FR_OK) ABORT(fs, FR_DISK_ERR);
#else
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
sect = clst2sect(fs, fp->clust);
if (sect == 0) ABORT(fs, FR_INT_ERR);
sect += csect;
cc = btw / SS(fs);
if (cc > 0) {
if (csect + cc > fs->csize) {
cc = fs->csize - csect;
}{...}
if (disk_write(fs->pdrv, wbuff, sect, cc) != RES_OK) ABORT(fs, FR_DISK_ERR);
#if FF_FS_MINIMIZE <= 2
#if FF_FS_TINY
if (fs->winsect - sect < cc) {
memcpy(fs->win, wbuff + ((fs->winsect - sect) * SS(fs)), SS(fs));
fs->wflag = 0;
}{...}
#else/* ... */
if (fp->sect - sect < cc) {
memcpy(fp->buf, wbuff + ((fp->sect - sect) * SS(fs)), SS(fs));
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
/* ... */#endif
wcnt = SS(fs) * cc;
continue;
}{...}
#if FF_FS_TINY
if (fp->fptr >= fp->obj.objsize) {
if (sync_window(fs) != FR_OK) ABORT(fs, FR_DISK_ERR);
fs->winsect = sect;
}{...}
#else/* ... */
if (fp->sect != sect &&
fp->fptr < fp->obj.objsize &&
disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) {
ABORT(fs, FR_DISK_ERR);
}{...}
#endif/* ... */
fp->sect = sect;
}{...}
wcnt = SS(fs) - (UINT)fp->fptr % SS(fs);
if (wcnt > btw) wcnt = btw;
#if FF_FS_TINY
if (move_window(fs, fp->sect) != FR_OK) ABORT(fs, FR_DISK_ERR);
memcpy(fs->win + fp->fptr % SS(fs), wbuff, wcnt);
fs->wflag = 1;/* ... */
#else
memcpy(fp->buf + fp->fptr % SS(fs), wbuff, wcnt);
fp->flag |= FA_DIRTY;/* ... */
#endif
}{...}
fp->flag |= FA_MODIFIED;
LEAVE_FF(fs, FR_OK);
}{ ... }
FRESULT f_sync (
FIL* fp
)
{
FRESULT res;
FATFS *fs;
DWORD tm;
BYTE *dir;
res = validate(&fp->obj, &fs);
if (res == FR_OK) {
if (fp->flag & FA_MODIFIED) {
#if !FF_FS_TINY
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) LEAVE_FF(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
tm = GET_FATTIME();
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
res = fill_first_frag(&fp->obj);
if (res == FR_OK) {
res = fill_last_frag(&fp->obj, fp->clust, 0xFFFFFFFF);
}{...}
if (res == FR_OK) {
FF_DIR dj;
DEF_NAMBUF
INIT_NAMBUF(fs);
res = load_obj_xdir(&dj, &fp->obj);
if (res == FR_OK) {
fs->dirbuf[XDIR_Attr] |= AM_ARC;
fs->dirbuf[XDIR_GenFlags] = fp->obj.stat | 1;
st_dword(fs->dirbuf + XDIR_FstClus, fp->obj.sclust);
st_qword(fs->dirbuf + XDIR_FileSize, fp->obj.objsize);
st_qword(fs->dirbuf + XDIR_ValidFileSize, fp->obj.objsize);
st_dword(fs->dirbuf + XDIR_ModTime, tm);
fs->dirbuf[XDIR_ModTime10] = 0;
st_dword(fs->dirbuf + XDIR_AccTime, 0);
res = store_xdir(&dj);
if (res == FR_OK) {
res = sync_fs(fs);
fp->flag &= (BYTE)~FA_MODIFIED;
}{...}
}{...}
FREE_NAMBUF();
}{...}
}{...} else
#endif
{
res = move_window(fs, fp->dir_sect);
if (res == FR_OK) {
dir = fp->dir_ptr;
dir[DIR_Attr] |= AM_ARC;
st_clust(fp->obj.fs, dir, fp->obj.sclust);
st_dword(dir + DIR_FileSize, (DWORD)fp->obj.objsize);
st_dword(dir + DIR_ModTime, tm);
st_word(dir + DIR_LstAccDate, 0);
fs->wflag = 1;
res = sync_fs(fs);
fp->flag &= (BYTE)~FA_MODIFIED;
}{...}
}{...}
}{...}
}{...}
LEAVE_FF(fs, res);
}{ ... }
/* ... */#endif
FRESULT f_close (
FIL* fp
)
{
FRESULT res;
FATFS *fs;
#if !FF_FS_READONLY
res = f_sync(fp);
if (res == FR_OK)/* ... */
#endif
{
res = validate(&fp->obj, &fs);
if (res == FR_OK) {
#if FF_FS_LOCK
res = dec_share(fp->obj.lockid);
if (res == FR_OK) fp->obj.fs = 0; /* ... */
#else
fp->obj.fs = 0;
#endif
#if !FF_FS_TINY && FF_USE_DYN_BUFFER
ff_memfree(fp->buf);
fp->buf = NULL;/* ... */
#endif
#if FF_FS_REENTRANT
unlock_volume(fs, FR_OK);
#endif
}{...}
}{...}
return res;
}{ ... }
#if FF_FS_RPATH >= 1
FRESULT f_chdrive (
const TCHAR* path
)
{
int vol;
vol = get_ldnumber(&path);
if (vol < 0) return FR_INVALID_DRIVE;
CurrVol = (BYTE)vol;
return FR_OK;
}{...}
FRESULT f_chdir (
const TCHAR* path
)
{
#if FF_STR_VOLUME_ID == 2
UINT i;
#endif
FRESULT res;
FF_DIR dj;
FATFS *fs;
DEF_NAMBUF
res = mount_volume(&path, &fs, 0);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
if (res == FR_OK) {
if (dj.fn[NSFLAG] & NS_NONAME) {
fs->cdir = dj.obj.sclust;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
fs->cdc_scl = dj.obj.c_scl;
fs->cdc_size = dj.obj.c_size;
fs->cdc_ofs = dj.obj.c_ofs;
}{...}
/* ... */#endif
}{...} else {
if (dj.obj.attr & AM_DIR) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
fs->cdir = ld_dword(fs->dirbuf + XDIR_FstClus);
fs->cdc_scl = dj.obj.sclust;
fs->cdc_size = ((DWORD)dj.obj.objsize & 0xFFFFFF00) | dj.obj.stat;
fs->cdc_ofs = dj.blk_ofs;
}{...} else
#endif
{
fs->cdir = ld_clust(fs, dj.dir);
}{...}
}{...} else {
res = FR_NO_PATH;
}{...}
}{...}
}{...}
FREE_NAMBUF();
if (res == FR_NO_FILE) res = FR_NO_PATH;
#if FF_STR_VOLUME_ID == 2
if (res == FR_OK) {
for (i = FF_VOLUMES - 1; i && fs != FatFs[i]; i--) ;
CurrVol = (BYTE)i;
}{...}
/* ... */#endif
}{...}
LEAVE_FF(fs, res);
}{...}
#if FF_FS_RPATH >= 2
FRESULT f_getcwd (
TCHAR* buff,
UINT len
)
{
FRESULT res;
FF_DIR dj;
FATFS *fs;
UINT i, n;
DWORD ccl;
TCHAR *tp = buff;
#if FF_VOLUMES >= 2
UINT vl;
#if FF_STR_VOLUME_ID
const char *vp;
#endif/* ... */
#endif
FILINFO fno;
DEF_NAMBUF
buff[0] = 0;
res = mount_volume((const TCHAR**)&buff, &fs, 0);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
i = len;
if (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT) {
dj.obj.sclust = fs->cdir;
while ((ccl = dj.obj.sclust) != 0) {
res = dir_sdi(&dj, 1 * SZDIRE);
if (res != FR_OK) break;
res = move_window(fs, dj.sect);
if (res != FR_OK) break;
dj.obj.sclust = ld_clust(fs, dj.dir);
res = dir_sdi(&dj, 0);
if (res != FR_OK) break;
do {
res = DIR_READ_FILE(&dj);
if (res != FR_OK) break;
if (ccl == ld_clust(fs, dj.dir)) break;
res = dir_next(&dj, 0);
}{...} while (res == FR_OK);
if (res == FR_NO_FILE) res = FR_INT_ERR;
if (res != FR_OK) break;
get_fileinfo(&dj, &fno);
for (n = 0; fno.fname[n]; n++) ;
if (i < n + 1) {
res = FR_NOT_ENOUGH_CORE; break;
}{...}
while (n) buff[--i] = fno.fname[--n];
buff[--i] = '/';
}{...}
}{...}
if (res == FR_OK) {
if (i == len) buff[--i] = '/';
#if FF_VOLUMES >= 2
vl = 0;
#if FF_STR_VOLUME_ID >= 1
for (n = 0, vp = (const char*)VolumeStr[CurrVol]; vp[n]; n++) ;
if (i >= n + 2) {
if (FF_STR_VOLUME_ID == 2) *tp++ = (TCHAR)'/';
for (vl = 0; vl < n; *tp++ = (TCHAR)vp[vl], vl++) ;
if (FF_STR_VOLUME_ID == 1) *tp++ = (TCHAR)':';
vl++;
}{...}
/* ... */#else
if (i >= 3) {
*tp++ = (TCHAR)'0' + CurrVol;
*tp++ = (TCHAR)':';
vl = 2;
}{...}
/* ... */#endif
if (vl == 0) res = FR_NOT_ENOUGH_CORE;/* ... */
#endif
if (res == FR_OK) {
do {
*tp++ = buff[i++];
}{...} while (i < len);
}{...}
}{...}
FREE_NAMBUF();
}{...}
*tp = 0;
LEAVE_FF(fs, res);
}{...}
/* ... */
#endif /* ... */
#endif
#if FF_FS_MINIMIZE <= 2
FRESULT f_lseek (
FIL* fp,
FSIZE_t ofs
)
{
FRESULT res;
FATFS *fs;
DWORD clst, bcs;
LBA_t nsect;
FSIZE_t ifptr;
#if FF_USE_FASTSEEK
DWORD cl, pcl, ncl, tcl, tlen, ulen;
DWORD *tbl;
LBA_t dsc;/* ... */
#endif
res = validate(&fp->obj, &fs);
if (res == FR_OK) res = (FRESULT)fp->err;
#if FF_FS_EXFAT && !FF_FS_READONLY
if (res == FR_OK && fs->fs_type == FS_EXFAT) {
res = fill_last_frag(&fp->obj, fp->clust, 0xFFFFFFFF);
}{...}
#endif/* ... */
if (res != FR_OK) LEAVE_FF(fs, res);
#if FF_USE_FASTSEEK
if (fp->cltbl) {
if (ofs == CREATE_LINKMAP) {
tbl = fp->cltbl;
tlen = *tbl++; ulen = 2;
cl = fp->obj.sclust;
if (cl != 0) {
do {
tcl = cl; ncl = 0; ulen += 2;
do {
pcl = cl; ncl++;
cl = get_fat(&fp->obj, cl);
if (cl <= 1) ABORT(fs, FR_INT_ERR);
if (cl == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
}{...} while (cl == pcl + 1);
if (ulen <= tlen) {
*tbl++ = ncl; *tbl++ = tcl;
}{...}
}{...} while (cl < fs->n_fatent);
}{...}
*fp->cltbl = ulen;
if (ulen <= tlen) {
*tbl = 0;
}{...} else {
res = FR_NOT_ENOUGH_CORE;
}{...}
}{...} else {
if (ofs > fp->obj.objsize) ofs = fp->obj.objsize;
fp->fptr = ofs;
if (ofs > 0) {
fp->clust = clmt_clust(fp, ofs - 1);
dsc = clst2sect(fs, fp->clust);
if (dsc == 0) ABORT(fs, FR_INT_ERR);
dsc += (DWORD)((ofs - 1) / SS(fs)) & (fs->csize - 1);
if (fp->fptr % SS(fs) && dsc != fp->sect) {
#if !FF_FS_TINY
#if !FF_FS_READONLY
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
if (disk_read(fs->pdrv, fp->buf, dsc, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); /* ... */
#endif
fp->sect = dsc;
}{...}
}{...}
}{...}
}{...} else
#endif
{
#if FF_FS_EXFAT
if (fs->fs_type != FS_EXFAT && ofs >= 0x100000000) ofs = 0xFFFFFFFF;
#endif
if (ofs > fp->obj.objsize && (FF_FS_READONLY || !(fp->flag & FA_WRITE))) {
ofs = fp->obj.objsize;
}{...}
ifptr = fp->fptr;
fp->fptr = nsect = 0;
if (ofs > 0) {
bcs = (DWORD)fs->csize * SS(fs);
if (ifptr > 0 &&
(ofs - 1) / bcs >= (ifptr - 1) / bcs) {
fp->fptr = (ifptr - 1) & ~(FSIZE_t)(bcs - 1);
ofs -= fp->fptr;
clst = fp->clust;
}{...} else {
clst = fp->obj.sclust;
#if !FF_FS_READONLY
if (clst == 0) {
clst = create_chain(&fp->obj, 0);
if (clst == 1) ABORT(fs, FR_INT_ERR);
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
fp->obj.sclust = clst;
}{...}
#endif/* ... */
fp->clust = clst;
}{...}
if (clst != 0) {
while (ofs > bcs) {
ofs -= bcs; fp->fptr += bcs;
#if !FF_FS_READONLY
if (fp->flag & FA_WRITE) {
if (FF_FS_EXFAT && fp->fptr > fp->obj.objsize) {
fp->obj.objsize = fp->fptr;
fp->flag |= FA_MODIFIED;
}{...}
clst = create_chain(&fp->obj, clst);
if (clst == 0) {
ofs = 0; break;
}{...}
}{...} else
#endif
{
clst = get_fat(&fp->obj, clst);
}{...}
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
if (clst <= 1 || clst >= fs->n_fatent) ABORT(fs, FR_INT_ERR);
fp->clust = clst;
}{...}
fp->fptr += ofs;
if (ofs % SS(fs)) {
nsect = clst2sect(fs, clst);
if (nsect == 0) ABORT(fs, FR_INT_ERR);
nsect += (DWORD)(ofs / SS(fs));
}{...}
}{...}
}{...}
if (!FF_FS_READONLY && fp->fptr > fp->obj.objsize) {
fp->obj.objsize = fp->fptr;
fp->flag |= FA_MODIFIED;
}{...}
if (fp->fptr % SS(fs) && nsect != fp->sect) {
#if !FF_FS_TINY
#if !FF_FS_READONLY
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
#endif/* ... */
if (disk_read(fs->pdrv, fp->buf, nsect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR); /* ... */
#endif
fp->sect = nsect;
}{...}
}{...}
LEAVE_FF(fs, res);
}{ ... }
#if FF_FS_MINIMIZE <= 1
FRESULT f_opendir (
FF_DIR* dp,
const TCHAR* path
)
{
FRESULT res;
FATFS *fs;
DEF_NAMBUF
if (!dp) return FR_INVALID_OBJECT;
res = mount_volume(&path, &fs, 0);
if (res == FR_OK) {
dp->obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(dp, path);
if (res == FR_OK) {
if (!(dp->fn[NSFLAG] & NS_NONAME)) {
if (dp->obj.attr & AM_DIR) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
dp->obj.c_scl = dp->obj.sclust;
dp->obj.c_size = ((DWORD)dp->obj.objsize & 0xFFFFFF00) | dp->obj.stat;
dp->obj.c_ofs = dp->blk_ofs;
init_alloc_info(fs, &dp->obj);
}{...} else
#endif
{
dp->obj.sclust = ld_clust(fs, dp->dir);
}{...}
}{...} else {
res = FR_NO_PATH;
}{...}
}{...}
if (res == FR_OK) {
dp->obj.id = fs->id;
res = dir_sdi(dp, 0);
#if FF_FS_LOCK
if (res == FR_OK) {
if (dp->obj.sclust != 0) {
dp->obj.lockid = inc_share(dp, 0);
if (!dp->obj.lockid) res = FR_TOO_MANY_OPEN_FILES;
}{...} else {
dp->obj.lockid = 0;
}{...}
}{...}
#endif/* ... */
}{...}
}{...}
FREE_NAMBUF();
if (res == FR_NO_FILE) res = FR_NO_PATH;
}{...}
if (res != FR_OK) dp->obj.fs = 0;
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_closedir (
FF_DIR *dp
)
{
FRESULT res;
FATFS *fs;
res = validate(&dp->obj, &fs);
if (res == FR_OK) {
#if FF_FS_LOCK
if (dp->obj.lockid) res = dec_share(dp->obj.lockid);
if (res == FR_OK) dp->obj.fs = 0; /* ... */
#else
dp->obj.fs = 0;
#endif
#if FF_FS_REENTRANT
unlock_volume(fs, FR_OK);
#endif
}{...}
return res;
}{ ... }
FRESULT f_readdir (
FF_DIR* dp,
FILINFO* fno
)
{
FRESULT res;
FATFS *fs;
DEF_NAMBUF
res = validate(&dp->obj, &fs);
if (res == FR_OK) {
if (!fno) {
res = dir_sdi(dp, 0);
}{...} else {
INIT_NAMBUF(fs);
res = DIR_READ_FILE(dp);
if (res == FR_NO_FILE) res = FR_OK;
if (res == FR_OK) {
get_fileinfo(dp, fno);
res = dir_next(dp, 0);
if (res == FR_NO_FILE) res = FR_OK;
}{...}
FREE_NAMBUF();
}{...}
}{...}
LEAVE_FF(fs, res);
}{ ... }
#if FF_USE_FIND
FRESULT f_findnext (
FF_DIR* dp,
FILINFO* fno
)
{
FRESULT res;
for (;;) {
res = f_readdir(dp, fno);
if (res != FR_OK || !fno || !fno->fname[0]) break;
if (pattern_match(dp->pat, fno->fname, 0, FIND_RECURS)) break;
#if FF_USE_LFN && FF_USE_FIND == 2
if (pattern_match(dp->pat, fno->altname, 0, FIND_RECURS)) break;
#endif
}{...}
return res;
}{...}
FRESULT f_findfirst (
FF_DIR* dp,
FILINFO* fno,
const TCHAR* path,
const TCHAR* pattern
)
{
FRESULT res;
dp->pat = pattern;
res = f_opendir(dp, path);
if (res == FR_OK) {
res = f_findnext(dp, fno);
}{...}
return res;
}{...}
/* ... */
#endif
#if FF_FS_MINIMIZE == 0
FRESULT f_stat (
const TCHAR* path,
FILINFO* fno
)
{
FRESULT res;
FF_DIR dj;
DEF_NAMBUF
res = mount_volume(&path, &dj.obj.fs, 0);
if (res == FR_OK) {
INIT_NAMBUF(dj.obj.fs);
res = follow_path(&dj, path);
if (res == FR_OK) {
if (dj.fn[NSFLAG] & NS_NONAME) {
res = FR_INVALID_NAME;
}{...} else {
if (fno) get_fileinfo(&dj, fno);
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(dj.obj.fs, res);
}{ ... }
#if !FF_FS_READONLY
FRESULT f_getfree (
const TCHAR* path,
DWORD* nclst,
FATFS** fatfs
)
{
FRESULT res;
FATFS *fs;
DWORD nfree, clst, stat;
LBA_t sect;
UINT i;
FFOBJID obj;
res = mount_volume(&path, &fs, 0);
if (res == FR_OK) {
*fatfs = fs;
if (fs->free_clst <= fs->n_fatent - 2) {
*nclst = fs->free_clst;
}{...} else {
nfree = 0;
if (fs->fs_type == FS_FAT12) {
clst = 2; obj.fs = fs;
do {
stat = get_fat(&obj, clst);
if (stat == 0xFFFFFFFF) {
res = FR_DISK_ERR; break;
}{...}
if (stat == 1) {
res = FR_INT_ERR; break;
}{...}
if (stat == 0) nfree++;
}{...} while (++clst < fs->n_fatent);
}{...} else {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
BYTE bm;
UINT b;
clst = fs->n_fatent - 2;
sect = fs->bitbase;
i = 0;
do {
if (i == 0) {
res = move_window(fs, sect++);
if (res != FR_OK) break;
}{...}
for (b = 8, bm = ~fs->win[i]; b && clst; b--, clst--) {
nfree += bm & 1;
bm >>= 1;
}{...}
i = (i + 1) % SS(fs);
}{...} while (clst);
}{...} else
#endif
{
clst = fs->n_fatent;
sect = fs->fatbase;
i = 0;
do {
if (i == 0) {
res = move_window(fs, sect++);
if (res != FR_OK) break;
}{...}
if (fs->fs_type == FS_FAT16) {
if (ld_word(fs->win + i) == 0) nfree++;
i += 2;
}{...} else {
if ((ld_dword(fs->win + i) & 0x0FFFFFFF) == 0) nfree++;
i += 4;
}{...}
i %= SS(fs);
}{...} while (--clst);
}{...}
}{...}
if (res == FR_OK) {
*nclst = nfree;
fs->free_clst = nfree;
fs->fsi_flag |= 1;
}{...}
}{...}
}{...}
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_truncate (
FIL* fp
)
{
FRESULT res;
FATFS *fs;
DWORD ncl;
res = validate(&fp->obj, &fs);
if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res);
if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED);
if (fp->fptr < fp->obj.objsize) {
if (fp->fptr == 0) {
res = remove_chain(&fp->obj, fp->obj.sclust, 0);
fp->obj.sclust = 0;
}{...} else {
ncl = get_fat(&fp->obj, fp->clust);
res = FR_OK;
if (ncl == 0xFFFFFFFF) res = FR_DISK_ERR;
if (ncl == 1) res = FR_INT_ERR;
if (res == FR_OK && ncl < fs->n_fatent) {
res = remove_chain(&fp->obj, ncl, fp->clust);
}{...}
}{...}
fp->obj.objsize = fp->fptr;
fp->flag |= FA_MODIFIED;
#if !FF_FS_TINY
if (res == FR_OK && (fp->flag & FA_DIRTY)) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) {
res = FR_DISK_ERR;
}{...} else {
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
}{...}
#endif/* ... */
if (res != FR_OK) ABORT(fs, res);
}{...}
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_unlink (
const TCHAR* path
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj, sdj;
DWORD dclst = 0;
#if FF_FS_EXFAT
FFOBJID obj;
#endif
DEF_NAMBUF
res = mount_volume(&path, &fs, FA_WRITE);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
if (FF_FS_RPATH && res == FR_OK && (dj.fn[NSFLAG] & NS_DOT)) {
res = FR_INVALID_NAME;
}{...}
#if FF_FS_LOCK
if (res == FR_OK) res = chk_share(&dj, 2);
#endif
if (res == FR_OK) {
if (dj.fn[NSFLAG] & NS_NONAME) {
res = FR_INVALID_NAME;
}{...} else {
if (dj.obj.attr & AM_RDO) {
res = FR_DENIED;
}{...}
}{...}
if (res == FR_OK) {
#if FF_FS_EXFAT
obj.fs = fs;
if (fs->fs_type == FS_EXFAT) {
init_alloc_info(fs, &obj);
dclst = obj.sclust;
}{...} else
#endif
{
dclst = ld_clust(fs, dj.dir);
}{...}
if (dj.obj.attr & AM_DIR) {
#if FF_FS_RPATH != 0
if (dclst == fs->cdir) {
res = FR_DENIED;
}{...} else
#endif
{
sdj.obj.fs = fs;
sdj.obj.sclust = dclst;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
sdj.obj.objsize = obj.objsize;
sdj.obj.stat = obj.stat;
}{...}
#endif/* ... */
res = dir_sdi(&sdj, 0);
if (res == FR_OK) {
res = DIR_READ_FILE(&sdj);
if (res == FR_OK) res = FR_DENIED;
if (res == FR_NO_FILE) res = FR_OK;
}{...}
}{...}
}{...}
}{...}
if (res == FR_OK) {
res = dir_remove(&dj);
if (res == FR_OK && dclst != 0) {
#if FF_FS_EXFAT
res = remove_chain(&obj, dclst, 0);
#else
res = remove_chain(&dj.obj, dclst, 0);
#endif
}{...}
if (res == FR_OK) res = sync_fs(fs);
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_mkdir (
const TCHAR* path
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj;
FFOBJID sobj;
DWORD dcl, pcl, tm;
DEF_NAMBUF
res = mount_volume(&path, &fs, FA_WRITE);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
if (res == FR_OK) res = FR_EXIST;
if (FF_FS_RPATH && res == FR_NO_FILE && (dj.fn[NSFLAG] & NS_DOT)) {
res = FR_INVALID_NAME;
}{...}
if (res == FR_NO_FILE) {
sobj.fs = fs;
dcl = create_chain(&sobj, 0);
res = FR_OK;
if (dcl == 0) res = FR_DENIED;
if (dcl == 1) res = FR_INT_ERR;
if (dcl == 0xFFFFFFFF) res = FR_DISK_ERR;
tm = GET_FATTIME();
if (res == FR_OK) {
res = dir_clear(fs, dcl);
if (res == FR_OK) {
if (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT) {
memset(fs->win + DIR_Name, ' ', 11);
fs->win[DIR_Name] = '.';
fs->win[DIR_Attr] = AM_DIR;
st_dword(fs->win + DIR_ModTime, tm);
st_clust(fs, fs->win, dcl);
memcpy(fs->win + SZDIRE, fs->win, SZDIRE);
fs->win[SZDIRE + 1] = '.'; pcl = dj.obj.sclust;
st_clust(fs, fs->win + SZDIRE, pcl);
fs->wflag = 1;
}{...}
res = dir_register(&dj);
}{...}
}{...}
if (res == FR_OK) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
st_dword(fs->dirbuf + XDIR_ModTime, tm);
st_dword(fs->dirbuf + XDIR_FstClus, dcl);
st_dword(fs->dirbuf + XDIR_FileSize, (DWORD)fs->csize * SS(fs));
st_dword(fs->dirbuf + XDIR_ValidFileSize, (DWORD)fs->csize * SS(fs));
fs->dirbuf[XDIR_GenFlags] = 3;
fs->dirbuf[XDIR_Attr] = AM_DIR;
res = store_xdir(&dj);
}{...} else
#endif
{
st_dword(dj.dir + DIR_ModTime, tm);
st_clust(fs, dj.dir, dcl);
dj.dir[DIR_Attr] = AM_DIR;
fs->wflag = 1;
}{...}
if (res == FR_OK) {
res = sync_fs(fs);
}{...}
}{...} else {
remove_chain(&sobj, dcl, 0);
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_rename (
const TCHAR* path_old,
const TCHAR* path_new
)
{
FRESULT res;
FATFS *fs;
FF_DIR djo, djn;
BYTE buf[FF_FS_EXFAT ? SZDIRE * 2 : SZDIRE], *dir;
LBA_t sect;
DEF_NAMBUF
get_ldnumber(&path_new);
res = mount_volume(&path_old, &fs, FA_WRITE);
if (res == FR_OK) {
djo.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&djo, path_old);
if (res == FR_OK && (djo.fn[NSFLAG] & (NS_DOT | NS_NONAME))) res = FR_INVALID_NAME;
#if FF_FS_LOCK
if (res == FR_OK) {
res = chk_share(&djo, 2);
}{...}
#endif/* ... */
if (res == FR_OK) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
BYTE nf, nn;
WORD nh;
memcpy(buf, fs->dirbuf, SZDIRE * 2);
memcpy(&djn, &djo, sizeof djo);
res = follow_path(&djn, path_new);
if (res == FR_OK) {
res = (djn.obj.sclust == djo.obj.sclust && djn.dptr == djo.dptr) ? FR_NO_FILE : FR_EXIST;
}{...}
if (res == FR_NO_FILE) {
res = dir_register(&djn);
if (res == FR_OK) {
nf = fs->dirbuf[XDIR_NumSec]; nn = fs->dirbuf[XDIR_NumName];
nh = ld_word(fs->dirbuf + XDIR_NameHash);
memcpy(fs->dirbuf, buf, SZDIRE * 2);
fs->dirbuf[XDIR_NumSec] = nf; fs->dirbuf[XDIR_NumName] = nn;
st_word(fs->dirbuf + XDIR_NameHash, nh);
if (!(fs->dirbuf[XDIR_Attr] & AM_DIR)) fs->dirbuf[XDIR_Attr] |= AM_ARC;
res = store_xdir(&djn);
}{...}
}{...}
}{...} else
#endif
{
memcpy(buf, djo.dir, SZDIRE);
memcpy(&djn, &djo, sizeof (FF_DIR));
res = follow_path(&djn, path_new);
if (res == FR_OK) {
res = (djn.obj.sclust == djo.obj.sclust && djn.dptr == djo.dptr) ? FR_NO_FILE : FR_EXIST;
}{...}
if (res == FR_NO_FILE) {
res = dir_register(&djn);
if (res == FR_OK) {
dir = djn.dir;
memcpy(dir + 13, buf + 13, SZDIRE - 13);
dir[DIR_Attr] = buf[DIR_Attr];
if (!(dir[DIR_Attr] & AM_DIR)) dir[DIR_Attr] |= AM_ARC;
fs->wflag = 1;
if ((dir[DIR_Attr] & AM_DIR) && djo.obj.sclust != djn.obj.sclust) {
sect = clst2sect(fs, ld_clust(fs, dir));
if (sect == 0) {
res = FR_INT_ERR;
}{...} else {
res = move_window(fs, sect);
dir = fs->win + SZDIRE * 1;
if (res == FR_OK && dir[1] == '.') {
st_clust(fs, dir, djn.obj.sclust);
fs->wflag = 1;
}{...}
}{...}
}{...}
}{...}
}{...}
}{...}
if (res == FR_OK) {
res = dir_remove(&djo);
if (res == FR_OK) {
res = sync_fs(fs);
}{...}
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(fs, res);
}{ ... }
/* ... */#endif /* ... */
#endif /* ... */
#endif /* ... */
#endif
#if FF_USE_CHMOD && !FF_FS_READONLY
FRESULT f_chmod (
const TCHAR* path,
BYTE attr,
BYTE mask
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj;
DEF_NAMBUF
res = mount_volume(&path, &fs, FA_WRITE);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
if (res == FR_OK && (dj.fn[NSFLAG] & (NS_DOT | NS_NONAME))) res = FR_INVALID_NAME;
if (res == FR_OK) {
mask &= AM_RDO|AM_HID|AM_SYS|AM_ARC;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
fs->dirbuf[XDIR_Attr] = (attr & mask) | (fs->dirbuf[XDIR_Attr] & (BYTE)~mask);
res = store_xdir(&dj);
}{...} else
#endif
{
dj.dir[DIR_Attr] = (attr & mask) | (dj.dir[DIR_Attr] & (BYTE)~mask);
fs->wflag = 1;
}{...}
if (res == FR_OK) {
res = sync_fs(fs);
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(fs, res);
}{ ... }
FRESULT f_utime (
const TCHAR* path,
const FILINFO* fno
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj;
DEF_NAMBUF
res = mount_volume(&path, &fs, FA_WRITE);
if (res == FR_OK) {
dj.obj.fs = fs;
INIT_NAMBUF(fs);
res = follow_path(&dj, path);
if (res == FR_OK && (dj.fn[NSFLAG] & (NS_DOT | NS_NONAME))) res = FR_INVALID_NAME;
if (res == FR_OK) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
st_dword(fs->dirbuf + XDIR_ModTime, (DWORD)fno->fdate << 16 | fno->ftime);
res = store_xdir(&dj);
}{...} else
#endif
{
st_dword(dj.dir + DIR_ModTime, (DWORD)fno->fdate << 16 | fno->ftime);
fs->wflag = 1;
}{...}
if (res == FR_OK) {
res = sync_fs(fs);
}{...}
}{...}
FREE_NAMBUF();
}{...}
LEAVE_FF(fs, res);
}{ ... }
/* ... */#endif
#if FF_USE_LABEL
FRESULT f_getlabel (
const TCHAR* path,
TCHAR* label,
DWORD* vsn
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj;
UINT si, di;
WCHAR wc;
res = mount_volume(&path, &fs, 0);
if (res == FR_OK && label) {
dj.obj.fs = fs; dj.obj.sclust = 0;
res = dir_sdi(&dj, 0);
if (res == FR_OK) {
res = DIR_READ_LABEL(&dj);
if (res == FR_OK) {
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
WCHAR hs;
UINT nw;
for (si = di = hs = 0; si < dj.dir[XDIR_NumLabel]; si++) {
wc = ld_word(dj.dir + XDIR_Label + si * 2);
if (hs == 0 && IsSurrogate(wc)) {
hs = wc; continue;
}{...}
nw = put_utf((DWORD)hs << 16 | wc, &label[di], 4);
if (nw == 0) {
di = 0; break;
}{...}
di += nw;
hs = 0;
}{...}
if (hs != 0) di = 0;
label[di] = 0;
}{...} else
#endif
{
si = di = 0;
while (si < 11) {
wc = dj.dir[si++];
#if FF_USE_LFN && FF_LFN_UNICODE >= 1
if (dbc_1st((BYTE)wc) && si < 11) wc = wc << 8 | dj.dir[si++];
wc = ff_oem2uni(wc, CODEPAGE);
if (wc == 0) {
di = 0; break;
}{...}
di += put_utf(wc, &label[di], 4); /* ... */
#else
label[di++] = (TCHAR)wc;
#endif
}{...}
do {
label[di] = 0;
if (di == 0) break;
}{...} while (label[--di] == ' ');
}{...}
}{...}
}{...}
if (res == FR_NO_FILE) {
label[0] = 0;
res = FR_OK;
}{...}
}{...}
if (res == FR_OK && vsn) {
res = move_window(fs, fs->volbase);
if (res == FR_OK) {
switch (fs->fs_type) {
case FS_EXFAT:
di = BPB_VolIDEx;
break;
...
case FS_FAT32:
di = BS_VolID32;
break;
...
default:
di = BS_VolID;...
}{...}
*vsn = ld_dword(fs->win + di);
}{...}
}{...}
LEAVE_FF(fs, res);
}{...}
#if !FF_FS_READONLY
FRESULT f_setlabel (
const TCHAR* label
)
{
FRESULT res;
FATFS *fs;
FF_DIR dj;
BYTE dirvn[22];
UINT di;
WCHAR wc;
static const char badchr[18] = "+.,;=[]" "/*:<>|\\\"\?\x7F";
#if FF_USE_LFN
DWORD dc;
#endif
res = mount_volume(&label, &fs, FA_WRITE);
if (res != FR_OK) LEAVE_FF(fs, res);
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
memset(dirvn, 0, 22);
di = 0;
while ((UINT)*label >= ' ') {
dc = tchar2uni(&label);
if (dc >= 0x10000) {
if (dc == 0xFFFFFFFF || di >= 10) {
dc = 0;
}{...} else {
st_word(dirvn + di * 2, (WCHAR)(dc >> 16)); di++;
}{...}
}{...}
if (dc == 0 || strchr(&badchr[7], (int)dc) || di >= 11) {
LEAVE_FF(fs, FR_INVALID_NAME);
}{...}
st_word(dirvn + di * 2, (WCHAR)dc); di++;
}{...}
}{...} else
#endif
{
memset(dirvn, ' ', 11);
di = 0;
while ((UINT)*label >= ' ') {
#if FF_USE_LFN
dc = tchar2uni(&label);
wc = (dc < 0x10000) ? ff_uni2oem(ff_wtoupper(dc), CODEPAGE) : 0;/* ... */
#else
wc = (BYTE)*label++;
if (dbc_1st((BYTE)wc)) wc = dbc_2nd((BYTE)*label) ? wc << 8 | (BYTE)*label++ : 0;
if (IsLower(wc)) wc -= 0x20;
#if FF_CODE_PAGE == 0
if (ExCvt && wc >= 0x80) wc = ExCvt[wc - 0x80];
#elif FF_CODE_PAGE < 900
if (wc >= 0x80) wc = ExCvt[wc - 0x80];
#endif/* ... */
#endif
if (wc == 0 || strchr(&badchr[0], (int)wc) || di >= (UINT)((wc >= 0x100) ? 10 : 11)) {
LEAVE_FF(fs, FR_INVALID_NAME);
}{...}
if (wc >= 0x100) dirvn[di++] = (BYTE)(wc >> 8);
dirvn[di++] = (BYTE)wc;
}{...}
if (dirvn[0] == DDEM) LEAVE_FF(fs, FR_INVALID_NAME);
while (di && dirvn[di - 1] == ' ') di--;
}{...}
dj.obj.fs = fs; dj.obj.sclust = 0;
res = dir_sdi(&dj, 0);
if (res == FR_OK) {
res = DIR_READ_LABEL(&dj);
if (res == FR_OK) {
if (FF_FS_EXFAT && fs->fs_type == FS_EXFAT) {
dj.dir[XDIR_NumLabel] = (BYTE)di;
memcpy(dj.dir + XDIR_Label, dirvn, 22);
}{...} else {
if (di != 0) {
memcpy(dj.dir, dirvn, 11);
}{...} else {
dj.dir[DIR_Name] = DDEM;
}{...}
}{...}
fs->wflag = 1;
res = sync_fs(fs);
}{...} else {
if (res == FR_NO_FILE) {
res = FR_OK;
if (di != 0) {
res = dir_alloc(&dj, 1);
if (res == FR_OK) {
memset(dj.dir, 0, SZDIRE);
if (FF_FS_EXFAT && fs->fs_type == FS_EXFAT) {
dj.dir[XDIR_Type] = ET_VLABEL;
dj.dir[XDIR_NumLabel] = (BYTE)di;
memcpy(dj.dir + XDIR_Label, dirvn, 22);
}{...} else {
dj.dir[DIR_Attr] = AM_VOL;
memcpy(dj.dir, dirvn, 11);
}{...}
fs->wflag = 1;
res = sync_fs(fs);
}{...}
}{...}
}{...}
}{...}
}{...}
LEAVE_FF(fs, res);
}{...}
/* ... */
#endif /* ... */
#endif
#if FF_USE_EXPAND && !FF_FS_READONLY
FRESULT f_expand (
FIL* fp,
FSIZE_t fsz,
BYTE opt
)
{
FRESULT res;
FATFS *fs;
DWORD n, clst, stcl, scl, ncl, tcl, lclst;
res = validate(&fp->obj, &fs);
if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res);
if (fsz == 0 || fp->obj.objsize != 0 || !(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED);
#if FF_FS_EXFAT
if (fs->fs_type != FS_EXFAT && fsz >= 0x100000000) LEAVE_FF(fs, FR_DENIED);
#endif
n = (DWORD)fs->csize * SS(fs);
tcl = (DWORD)(fsz / n) + ((fsz & (n - 1)) ? 1 : 0);
stcl = fs->last_clst; lclst = 0;
if (stcl < 2 || stcl >= fs->n_fatent) stcl = 2;
#if FF_FS_EXFAT
if (fs->fs_type == FS_EXFAT) {
scl = find_bitmap(fs, stcl, tcl);
if (scl == 0) res = FR_DENIED;
if (scl == 0xFFFFFFFF) res = FR_DISK_ERR;
if (res == FR_OK) {
if (opt) {
res = change_bitmap(fs, scl, tcl, 1);
lclst = scl + tcl - 1;
}{...} else {
lclst = scl - 1;
}{...}
}{...}
}{...} else
#endif
{
scl = clst = stcl; ncl = 0;
for (;;) {
n = get_fat(&fp->obj, clst);
if (++clst >= fs->n_fatent) clst = 2;
if (n == 1) {
res = FR_INT_ERR; break;
}{...}
if (n == 0xFFFFFFFF) {
res = FR_DISK_ERR; break;
}{...}
if (n == 0) {
if (++ncl == tcl) break;
}{...} else {
scl = clst; ncl = 0;
}{...}
if (clst == stcl) {
res = FR_DENIED; break;
}{...}
}{...}
if (res == FR_OK) {
if (opt) {
for (clst = scl, n = tcl; n; clst++, n--) {
res = put_fat(fs, clst, (n == 1) ? 0xFFFFFFFF : clst + 1);
if (res != FR_OK) break;
lclst = clst;
}{...}
}{...} else {
lclst = scl - 1;
}{...}
}{...}
}{...}
if (res == FR_OK) {
fs->last_clst = lclst;
if (opt) {
fp->obj.sclust = scl;
fp->obj.objsize = fsz;
if (FF_FS_EXFAT) fp->obj.stat = 2;
fp->flag |= FA_MODIFIED;
if (fs->free_clst <= fs->n_fatent - 2) {
fs->free_clst -= tcl;
fs->fsi_flag |= 1;
}{...}
}{...}
}{...}
LEAVE_FF(fs, res);
}{ ... }
/* ... */#endif
#if FF_USE_FORWARD
FRESULT f_forward (
FIL* fp,
UINT (*func)(const BYTE*,UINT),
UINT btf,
UINT* bf
)
{
FRESULT res;
FATFS *fs;
DWORD clst;
LBA_t sect;
FSIZE_t remain;
UINT rcnt, csect;
BYTE *dbuf;
*bf = 0;
res = validate(&fp->obj, &fs);
if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res);
if (!(fp->flag & FA_READ)) LEAVE_FF(fs, FR_DENIED);
remain = fp->obj.objsize - fp->fptr;
if (btf > remain) btf = (UINT)remain;
for ( ; btf > 0 && (*func)(0, 0); fp->fptr += rcnt, *bf += rcnt, btf -= rcnt) {
csect = (UINT)(fp->fptr / SS(fs) & (fs->csize - 1));
if (fp->fptr % SS(fs) == 0) {
if (csect == 0) {
clst = (fp->fptr == 0) ?
fp->obj.sclust : get_fat(&fp->obj, fp->clust);
if (clst <= 1) ABORT(fs, FR_INT_ERR);
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
fp->clust = clst;
}{...}
}{...}
sect = clst2sect(fs, fp->clust);
if (sect == 0) ABORT(fs, FR_INT_ERR);
sect += csect;
#if FF_FS_TINY
if (move_window(fs, sect) != FR_OK) ABORT(fs, FR_DISK_ERR);
dbuf = fs->win;/* ... */
#else
if (fp->sect != sect) {
#if !FF_FS_READONLY
if (fp->flag & FA_DIRTY) {
if (disk_write(fs->pdrv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= (BYTE)~FA_DIRTY;
}{...}
/* ... */#endif
if (disk_read(fs->pdrv, fp->buf, sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
}{...}
dbuf = fp->buf;/* ... */
#endif
fp->sect = sect;
rcnt = SS(fs) - (UINT)fp->fptr % SS(fs);
if (rcnt > btf) rcnt = btf;
rcnt = (*func)(dbuf + ((UINT)fp->fptr % SS(fs)), rcnt);
if (rcnt == 0) ABORT(fs, FR_INT_ERR);
}{...}
LEAVE_FF(fs, FR_OK);
}{...}
/* ... */#endif
#if !FF_FS_READONLY && FF_USE_MKFS
#define N_SEC_TRACK 63
#define GPT_ALIGN 0x100000
#define GPT_ITEMS 128
static FRESULT create_partition (
BYTE drv,
const LBA_t plst[],
BYTE sys,
BYTE *buf
)
{
UINT i, cy;
LBA_t sz_drv;
DWORD sz_drv32, nxt_alloc32, sz_part32;
BYTE *pte;
BYTE hd, n_hd, sc, n_sc;
if (disk_ioctl(drv, GET_SECTOR_COUNT, &sz_drv) != RES_OK) return FR_DISK_ERR;
#if FF_LBA64
if (sz_drv >= FF_MIN_GPT) {
WORD ss;
UINT sz_ptbl, pi, si, ofs;
DWORD bcc, rnd, align;
QWORD nxt_alloc, sz_part, sz_pool, top_bpt;
static const BYTE gpt_mbr[16] = {0x00, 0x00, 0x02, 0x00, 0xEE, 0xFE, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF};
#if FF_MAX_SS != FF_MIN_SS
if (disk_ioctl(drv, GET_SECTOR_SIZE, &ss) != RES_OK) return FR_DISK_ERR;
if (ss > FF_MAX_SS || ss < FF_MIN_SS || (ss & (ss - 1))) return FR_DISK_ERR;/* ... */
#else
ss = FF_MAX_SS;
#endif
rnd = (DWORD)sz_drv + GET_FATTIME();
align = GPT_ALIGN / ss;
sz_ptbl = GPT_ITEMS * SZ_GPTE / ss;
top_bpt = sz_drv - sz_ptbl - 1;
nxt_alloc = 2 + sz_ptbl;
sz_pool = top_bpt - nxt_alloc;
bcc = 0xFFFFFFFF; sz_part = 1;
pi = si = 0;
do {
if (pi * SZ_GPTE % ss == 0) memset(buf, 0, ss);
if (sz_part != 0) {
nxt_alloc = (nxt_alloc + align - 1) & ((QWORD)0 - align);
sz_part = plst[si++];
if (sz_part <= 100) {
sz_part = sz_pool * sz_part / 100;
sz_part = (sz_part + align - 1) & ((QWORD)0 - align);
}{...}
if (nxt_alloc + sz_part > top_bpt) {
sz_part = (nxt_alloc < top_bpt) ? top_bpt - nxt_alloc : 0;
}{...}
}{...}
if (sz_part != 0) {
ofs = pi * SZ_GPTE % ss;
memcpy(buf + ofs + GPTE_PtGuid, GUID_MS_Basic, 16);
rnd = make_rand(rnd, buf + ofs + GPTE_UpGuid, 16);
st_qword(buf + ofs + GPTE_FstLba, nxt_alloc);
st_qword(buf + ofs + GPTE_LstLba, nxt_alloc + sz_part - 1);
nxt_alloc += sz_part;
}{...}
if ((pi + 1) * SZ_GPTE % ss == 0) {
for (i = 0; i < ss; bcc = crc32(bcc, buf[i++])) ;
if (disk_write(drv, buf, 2 + pi * SZ_GPTE / ss, 1) != RES_OK) return FR_DISK_ERR;
if (disk_write(drv, buf, top_bpt + pi * SZ_GPTE / ss, 1) != RES_OK) return FR_DISK_ERR;
}{...}
}{...} while (++pi < GPT_ITEMS);
memset(buf, 0, ss);
memcpy(buf + GPTH_Sign, "EFI PART" "\0\0\1\0" "\x5C\0\0", 16);
st_dword(buf + GPTH_PtBcc, ~bcc);
st_qword(buf + GPTH_CurLba, 1);
st_qword(buf + GPTH_BakLba, sz_drv - 1);
st_qword(buf + GPTH_FstLba, 2 + sz_ptbl);
st_qword(buf + GPTH_LstLba, top_bpt - 1);
st_dword(buf + GPTH_PteSize, SZ_GPTE);
st_dword(buf + GPTH_PtNum, GPT_ITEMS);
st_dword(buf + GPTH_PtOfs, 2);
rnd = make_rand(rnd, buf + GPTH_DskGuid, 16);
for (i = 0, bcc= 0xFFFFFFFF; i < 92; bcc = crc32(bcc, buf[i++])) ;
st_dword(buf + GPTH_Bcc, ~bcc);
if (disk_write(drv, buf, 1, 1) != RES_OK) return FR_DISK_ERR;
st_qword(buf + GPTH_CurLba, sz_drv - 1);
st_qword(buf + GPTH_BakLba, 1);
st_qword(buf + GPTH_PtOfs, top_bpt);
st_dword(buf + GPTH_Bcc, 0);
for (i = 0, bcc= 0xFFFFFFFF; i < 92; bcc = crc32(bcc, buf[i++])) ;
st_dword(buf + GPTH_Bcc, ~bcc);
if (disk_write(drv, buf, sz_drv - 1, 1) != RES_OK) return FR_DISK_ERR;
memset(buf, 0, ss);
memcpy(buf + MBR_Table, gpt_mbr, 16);
st_word(buf + BS_55AA, 0xAA55);
if (disk_write(drv, buf, 0, 1) != RES_OK) return FR_DISK_ERR;
}{...} else
#endif
{
sz_drv32 = (DWORD)sz_drv;
n_sc = N_SEC_TRACK;
for (n_hd = 8; n_hd != 0 && sz_drv32 / n_hd / n_sc > 1024; n_hd *= 2) ;
if (n_hd == 0) n_hd = 255;
memset(buf, 0, FF_MAX_SS);
pte = buf + MBR_Table;
for (i = 0, nxt_alloc32 = n_sc; i < 4 && nxt_alloc32 != 0 && nxt_alloc32 < sz_drv32; i++, nxt_alloc32 += sz_part32) {
sz_part32 = (DWORD)plst[i];
if (sz_part32 <= 100) sz_part32 = (sz_part32 == 100) ? sz_drv32 : sz_drv32 / 100 * sz_part32;
if (nxt_alloc32 + sz_part32 > sz_drv32 || nxt_alloc32 + sz_part32 < nxt_alloc32) sz_part32 = sz_drv32 - nxt_alloc32;
if (sz_part32 == 0) break;
st_dword(pte + PTE_StLba, nxt_alloc32);
st_dword(pte + PTE_SizLba, sz_part32);
pte[PTE_System] = sys;
cy = (UINT)(nxt_alloc32 / n_sc / n_hd);
hd = (BYTE)(nxt_alloc32 / n_sc % n_hd);
sc = (BYTE)(nxt_alloc32 % n_sc + 1);
pte[PTE_StHead] = hd;
pte[PTE_StSec] = (BYTE)((cy >> 2 & 0xC0) | sc);
pte[PTE_StCyl] = (BYTE)cy;
cy = (UINT)((nxt_alloc32 + sz_part32 - 1) / n_sc / n_hd);
hd = (BYTE)((nxt_alloc32 + sz_part32 - 1) / n_sc % n_hd);
sc = (BYTE)((nxt_alloc32 + sz_part32 - 1) % n_sc + 1);
pte[PTE_EdHead] = hd;
pte[PTE_EdSec] = (BYTE)((cy >> 2 & 0xC0) | sc);
pte[PTE_EdCyl] = (BYTE)cy;
pte += SZ_PTE;
}{...}
st_word(buf + BS_55AA, 0xAA55);
if (disk_write(drv, buf, 0, 1) != RES_OK) return FR_DISK_ERR;
}{...}
return FR_OK;
}{ ... }
FRESULT f_mkfs (
const TCHAR* path,
const MKFS_PARM* opt,
void* work,
UINT len
)
{
static const WORD cst[] = {1, 4, 16, 64, 256, 512, 0};
static const WORD cst32[] = {1, 2, 4, 8, 16, 32, 0};
static const MKFS_PARM defopt = {FM_ANY, 0, 0, 0, 0};
BYTE fsopt, fsty, sys, pdrv, ipart;
BYTE *buf;
BYTE *pte;
WORD ss;
DWORD sz_buf, sz_blk, n_clst, pau, nsect, n, vsn;
LBA_t sz_vol, b_vol, b_fat, b_data;
LBA_t sect, lba[2];
DWORD sz_rsv, sz_fat, sz_dir, sz_au;
UINT n_fat, n_root, i;
int vol;
DSTATUS ds;
FRESULT res;
vol = get_ldnumber(&path);
if (vol < 0) return FR_INVALID_DRIVE;
if (FatFs[vol]) FatFs[vol]->fs_type = 0;
pdrv = LD2PD(vol);
ipart = LD2PT(vol);
ds = disk_initialize(pdrv);
if (ds & STA_NOINIT) return FR_NOT_READY;
if (ds & STA_PROTECT) return FR_WRITE_PROTECTED;
if (!opt) opt = &defopt;
sz_blk = opt->align;
if (sz_blk == 0) disk_ioctl(pdrv, GET_BLOCK_SIZE, &sz_blk);
if (sz_blk == 0 || sz_blk > 0x8000 || (sz_blk & (sz_blk - 1))) sz_blk = 1;
#if FF_MAX_SS != FF_MIN_SS
if (disk_ioctl(pdrv, GET_SECTOR_SIZE, &ss) != RES_OK) return FR_DISK_ERR;
if (ss > FF_MAX_SS || ss < FF_MIN_SS || (ss & (ss - 1))) return FR_DISK_ERR;/* ... */
#else
ss = FF_MAX_SS;
#endif
fsopt = opt->fmt & (FM_ANY | FM_SFD);
n_fat = (opt->n_fat >= 1 && opt->n_fat <= 2) ? opt->n_fat : 1;
n_root = (opt->n_root >= 1 && opt->n_root <= 32768 && (opt->n_root % (ss / SZDIRE)) == 0) ? opt->n_root : 512;
sz_au = (opt->au_size <= 0x1000000 && (opt->au_size & (opt->au_size - 1)) == 0) ? opt->au_size : 0;
sz_au /= ss;
sz_buf = len / ss;
if (sz_buf == 0) return FR_NOT_ENOUGH_CORE;
buf = (BYTE*)work;
#if FF_USE_LFN == 3
if (!buf) buf = ff_memalloc(sz_buf * ss);
#endif
if (!buf) return FR_NOT_ENOUGH_CORE;
b_vol = sz_vol = 0;
if (FF_MULTI_PARTITION && ipart != 0) {
if (disk_read(pdrv, buf, 0, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
if (ld_word(buf + BS_55AA) != 0xAA55) LEAVE_MKFS(FR_MKFS_ABORTED);
#if FF_LBA64
if (buf[MBR_Table + PTE_System] == 0xEE) {
DWORD n_ent, ofs;
QWORD pt_lba;
if (disk_read(pdrv, buf, 1, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
if (!test_gpt_header(buf)) LEAVE_MKFS(FR_MKFS_ABORTED);
n_ent = ld_dword(buf + GPTH_PtNum);
pt_lba = ld_qword(buf + GPTH_PtOfs);
ofs = i = 0;
while (n_ent) {
if (ofs == 0 && disk_read(pdrv, buf, pt_lba++, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
if (!memcmp(buf + ofs + GPTE_PtGuid, GUID_MS_Basic, 16) && ++i == ipart) {
b_vol = ld_qword(buf + ofs + GPTE_FstLba);
sz_vol = ld_qword(buf + ofs + GPTE_LstLba) - b_vol + 1;
break;
}{...}
n_ent--; ofs = (ofs + SZ_GPTE) % ss;
}{...}
if (n_ent == 0) LEAVE_MKFS(FR_MKFS_ABORTED);
fsopt |= 0x80;
}{...} else
#endif
{
pte = buf + (MBR_Table + (ipart - 1) * SZ_PTE);
if (ipart > 4 || pte[PTE_System] == 0) LEAVE_MKFS(FR_MKFS_ABORTED);
b_vol = ld_dword(pte + PTE_StLba);
sz_vol = ld_dword(pte + PTE_SizLba);
}{...}
}{...} else {
if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_vol) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
if (!(fsopt & FM_SFD)) {
#if FF_LBA64
if (sz_vol >= FF_MIN_GPT) {
fsopt |= 0x80;
b_vol = GPT_ALIGN / ss; sz_vol -= b_vol + GPT_ITEMS * SZ_GPTE / ss + 1;
}{...} else
#endif
{
if (sz_vol > N_SEC_TRACK) {
b_vol = N_SEC_TRACK; sz_vol -= b_vol;
}{...}
}{...}
}{...}
}{...}
if (n_fat == 1) {
if (sz_vol < MIN_FAT12_SEC_VOL) LEAVE_MKFS(FR_MKFS_ABORTED);
}{...} else {
if (sz_vol < (MIN_FAT12_SEC_VOL + 1)) LEAVE_MKFS(FR_MKFS_ABORTED);
}{...}
do {
if (FF_FS_EXFAT && (fsopt & FM_EXFAT)) {
if ((fsopt & FM_ANY) == FM_EXFAT || sz_vol >= 0x4000000 || sz_au > 128) {
fsty = FS_EXFAT; break;
}{...}
}{...}
#if FF_LBA64
if (sz_vol >= 0x100000000) LEAVE_MKFS(FR_MKFS_ABORTED);
#endif
if (sz_au > 128) sz_au = 128;
if (fsopt & FM_FAT32) {
if (!(fsopt & FM_FAT)) {
fsty = FS_FAT32; break;
}{...}
}{...}
if (!(fsopt & FM_FAT)) LEAVE_MKFS(FR_INVALID_PARAMETER);
fsty = FS_FAT16;
}{...} while (0);
vsn = (DWORD)sz_vol + GET_FATTIME();
#if FF_FS_EXFAT
if (fsty == FS_EXFAT) {
DWORD szb_bit, szb_case, sum, nbit, clu, clen[3];
WCHAR ch, si;
UINT j, st;
if (sz_vol < 0x1000) LEAVE_MKFS(FR_MKFS_ABORTED);
#if FF_USE_TRIM
lba[0] = b_vol; lba[1] = b_vol + sz_vol - 1;
disk_ioctl(pdrv, CTRL_TRIM, lba);/* ... */
#endif
if (sz_au == 0) {
sz_au = 8;
if (sz_vol >= 0x80000) sz_au = 64;
if (sz_vol >= 0x4000000) sz_au = 256;
}{...}
b_fat = b_vol + 32;
sz_fat = (DWORD)((sz_vol / sz_au + 2) * 4 + ss - 1) / ss;
b_data = (b_fat + sz_fat + sz_blk - 1) & ~((LBA_t)sz_blk - 1);
if (b_data - b_vol >= sz_vol / 2) LEAVE_MKFS(FR_MKFS_ABORTED);
n_clst = (DWORD)((sz_vol - (b_data - b_vol)) / sz_au);
if (n_clst <16) LEAVE_MKFS(FR_MKFS_ABORTED);
if (n_clst > MAX_EXFAT) LEAVE_MKFS(FR_MKFS_ABORTED);
szb_bit = (n_clst + 7) / 8;
clen[0] = (szb_bit + sz_au * ss - 1) / (sz_au * ss);
sect = b_data + sz_au * clen[0];
sum = 0;
st = 0; si = 0; i = 0; j = 0; szb_case = 0;
do {
switch (st) {
case 0:
ch = (WCHAR)ff_wtoupper(si);
if (ch != si) {
si++; break;
}{...}
for (j = 1; (WCHAR)(si + j) && (WCHAR)(si + j) == ff_wtoupper((WCHAR)(si + j)); j++) ;
if (j >= 128) {
ch = 0xFFFF; st = 2; break;
}{...}
st = 1;
...
case 1:
ch = si++;
if (--j == 0) st = 0;
break;
...
default:
ch = (WCHAR)j; si += (WCHAR)j;
st = 0;...
}{...}
sum = xsum32(buf[i + 0] = (BYTE)ch, sum);
sum = xsum32(buf[i + 1] = (BYTE)(ch >> 8), sum);
i += 2; szb_case += 2;
if (si == 0 || i == sz_buf * ss) {
n = (i + ss - 1) / ss;
if (disk_write(pdrv, buf, sect, n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
sect += n; i = 0;
}{...}
}{...} while (si);
clen[1] = (szb_case + sz_au * ss - 1) / (sz_au * ss);
clen[2] = 1;
sect = b_data; nsect = (szb_bit + ss - 1) / ss;
nbit = clen[0] + clen[1] + clen[2];
do {
memset(buf, 0, sz_buf * ss);
for (i = 0; nbit != 0 && i / 8 < sz_buf * ss; buf[i / 8] |= 1 << (i % 8), i++, nbit--) ;
n = (nsect > sz_buf) ? sz_buf : nsect;
if (disk_write(pdrv, buf, sect, n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
sect += n; nsect -= n;
}{...} while (nsect);
sect = b_fat; nsect = sz_fat;
j = nbit = clu = 0;
do {
memset(buf, 0, sz_buf * ss); i = 0;
if (clu == 0) {
st_dword(buf + i, 0xFFFFFFF8); i += 4; clu++;
st_dword(buf + i, 0xFFFFFFFF); i += 4; clu++;
}{...}
do {
while (nbit != 0 && i < sz_buf * ss) {
st_dword(buf + i, (nbit > 1) ? clu + 1 : 0xFFFFFFFF);
i += 4; clu++; nbit--;
}{...}
if (nbit == 0 && j < 3) nbit = clen[j++];
}{...} while (nbit != 0 && i < sz_buf * ss);
n = (nsect > sz_buf) ? sz_buf : nsect;
if (disk_write(pdrv, buf, sect, n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
sect += n; nsect -= n;
}{...} while (nsect);
memset(buf, 0, sz_buf * ss);
buf[SZDIRE * 0 + 0] = ET_VLABEL;
buf[SZDIRE * 1 + 0] = ET_BITMAP;
st_dword(buf + SZDIRE * 1 + 20, 2);
st_dword(buf + SZDIRE * 1 + 24, szb_bit);
buf[SZDIRE * 2 + 0] = ET_UPCASE;
st_dword(buf + SZDIRE * 2 + 4, sum);
st_dword(buf + SZDIRE * 2 + 20, 2 + clen[0]);
st_dword(buf + SZDIRE * 2 + 24, szb_case);
sect = b_data + sz_au * (clen[0] + clen[1]); nsect = sz_au;
do {
n = (nsect > sz_buf) ? sz_buf : nsect;
if (disk_write(pdrv, buf, sect, n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
memset(buf, 0, ss);
sect += n; nsect -= n;
}{...} while (nsect);
sect = b_vol;
for (n = 0; n < 2; n++) {
memset(buf, 0, ss);
memcpy(buf + BS_JmpBoot, "\xEB\x76\x90" "EXFAT ", 11);
st_qword(buf + BPB_VolOfsEx, b_vol);
st_qword(buf + BPB_TotSecEx, sz_vol);
st_dword(buf + BPB_FatOfsEx, (DWORD)(b_fat - b_vol));
st_dword(buf + BPB_FatSzEx, sz_fat);
st_dword(buf + BPB_DataOfsEx, (DWORD)(b_data - b_vol));
st_dword(buf + BPB_NumClusEx, n_clst);
st_dword(buf + BPB_RootClusEx, 2 + clen[0] + clen[1]);
st_dword(buf + BPB_VolIDEx, vsn);
st_word(buf + BPB_FSVerEx, 0x100);
for (buf[BPB_BytsPerSecEx] = 0, i = ss; i >>= 1; buf[BPB_BytsPerSecEx]++) ;
for (buf[BPB_SecPerClusEx] = 0, i = sz_au; i >>= 1; buf[BPB_SecPerClusEx]++) ;
buf[BPB_NumFATsEx] = 1;
buf[BPB_DrvNumEx] = 0x80;
st_word(buf + BS_BootCodeEx, 0xFEEB);
st_word(buf + BS_55AA, 0xAA55);
for (i = sum = 0; i < ss; i++) {
if (i != BPB_VolFlagEx && i != BPB_VolFlagEx + 1 && i != BPB_PercInUseEx) sum = xsum32(buf[i], sum);
}{...}
if (disk_write(pdrv, buf, sect++, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
memset(buf, 0, ss);
st_word(buf + ss - 2, 0xAA55);
for (j = 1; j < 9; j++) {
for (i = 0; i < ss; sum = xsum32(buf[i++], sum)) ;
if (disk_write(pdrv, buf, sect++, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
}{...}
memset(buf, 0, ss);
for ( ; j < 11; j++) {
for (i = 0; i < ss; sum = xsum32(buf[i++], sum)) ;
if (disk_write(pdrv, buf, sect++, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
}{...}
for (i = 0; i < ss; i += 4) st_dword(buf + i, sum);
if (disk_write(pdrv, buf, sect++, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
}{...}
}{...} else
#endif
{
do {
pau = sz_au;
if (fsty == FS_FAT32) {
if (pau == 0) {
n = (DWORD)sz_vol / 0x20000;
for (i = 0, pau = 1; cst32[i] && cst32[i] <= n; i++, pau <<= 1) ;
}{...}
n_clst = (DWORD)sz_vol / pau;
sz_fat = (n_clst * 4 + 8 + ss - 1) / ss;
sz_rsv = 32;
sz_dir = 0;
if (n_clst <= MAX_FAT16 || n_clst > MAX_FAT32) LEAVE_MKFS(FR_MKFS_ABORTED);
}{...} else {
if (pau == 0) {
n = (DWORD)sz_vol / 0x1000;
for (i = 0, pau = 1; cst[i] && cst[i] <= n; i++, pau <<= 1) ;
}{...}
n_clst = (DWORD)sz_vol / pau;
if (n_clst > MAX_FAT12) {
n = n_clst * 2 + 4;
}{...} else {
fsty = FS_FAT12;
n = (n_clst * 3 + 1) / 2 + 3;
}{...}
sz_fat = (n + ss - 1) / ss;
sz_rsv = 1;
sz_dir = (DWORD)n_root * SZDIRE / ss;
}{...}
b_fat = b_vol + sz_rsv;
b_data = b_fat + sz_fat * n_fat + sz_dir;
n = (DWORD)(((b_data + sz_blk - 1) & ~(sz_blk - 1)) - b_data);
if (fsty == FS_FAT32) {
sz_rsv += n; b_fat += n;
}{...} else {
if (n % n_fat) {
n--; sz_rsv++; b_fat++;
}{...}
sz_fat += n / n_fat;
}{...}
if (sz_vol < b_data + pau * MIN_FAT12_DATA_SEC - b_vol) LEAVE_MKFS(FR_MKFS_ABORTED);
n_clst = ((DWORD)sz_vol - sz_rsv - sz_fat * n_fat - sz_dir) / pau;
if (fsty == FS_FAT32) {
if (n_clst <= MAX_FAT16) {
if (sz_au == 0 && (sz_au = pau / 2) != 0) continue;
LEAVE_MKFS(FR_MKFS_ABORTED);
}{...}
}{...}
if (fsty == FS_FAT16) {
if (n_clst > MAX_FAT16) {
if (sz_au == 0 && (pau * 2) <= 64) {
sz_au = pau * 2; continue;
}{...}
if ((fsopt & FM_FAT32)) {
fsty = FS_FAT32; continue;
}{...}
if (sz_au == 0 && (sz_au = pau * 2) <= 128) continue;
LEAVE_MKFS(FR_MKFS_ABORTED);
}{...}
if (n_clst <= MAX_FAT12) {
if (sz_au == 0 && (sz_au = pau * 2) <= 128) continue;
LEAVE_MKFS(FR_MKFS_ABORTED);
}{...}
}{...}
if (fsty == FS_FAT12 && n_clst > MAX_FAT12) LEAVE_MKFS(FR_MKFS_ABORTED);
break;
}{...} while (1);
#if FF_USE_TRIM
lba[0] = b_vol; lba[1] = b_vol + sz_vol - 1;
disk_ioctl(pdrv, CTRL_TRIM, lba);/* ... */
#endif
memset(buf, 0, ss);
memcpy(buf + BS_JmpBoot, "\xEB\xFE\x90" "MSDOS5.0", 11);
st_word(buf + BPB_BytsPerSec, ss);
buf[BPB_SecPerClus] = (BYTE)pau;
st_word(buf + BPB_RsvdSecCnt, (WORD)sz_rsv);
buf[BPB_NumFATs] = (BYTE)n_fat;
st_word(buf + BPB_RootEntCnt, (WORD)((fsty == FS_FAT32) ? 0 : n_root));
if (sz_vol < 0x10000) {
st_word(buf + BPB_TotSec16, (WORD)sz_vol);
}{...} else {
st_dword(buf + BPB_TotSec32, (DWORD)sz_vol);
}{...}
buf[BPB_Media] = 0xF8;
st_word(buf + BPB_SecPerTrk, 63);
st_word(buf + BPB_NumHeads, 255);
st_dword(buf + BPB_HiddSec, (DWORD)b_vol);
if (fsty == FS_FAT32) {
st_dword(buf + BS_VolID32, vsn);
st_dword(buf + BPB_FATSz32, sz_fat);
st_dword(buf + BPB_RootClus32, 2);
st_word(buf + BPB_FSInfo32, 1);
st_word(buf + BPB_BkBootSec32, 6);
buf[BS_DrvNum32] = 0x80;
buf[BS_BootSig32] = 0x29;
memcpy(buf + BS_VolLab32, "NO NAME " "FAT32 ", 19);
}{...} else {
st_dword(buf + BS_VolID, vsn);
st_word(buf + BPB_FATSz16, (WORD)sz_fat);
buf[BS_DrvNum] = 0x80;
buf[BS_BootSig] = 0x29;
memcpy(buf + BS_VolLab, "NO NAME " "FAT ", 19);
}{...}
st_word(buf + BS_55AA, 0xAA55);
if (disk_write(pdrv, buf, b_vol, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
if (fsty == FS_FAT32) {
disk_write(pdrv, buf, b_vol + 6, 1);
memset(buf, 0, ss);
st_dword(buf + FSI_LeadSig, 0x41615252);
st_dword(buf + FSI_StrucSig, 0x61417272);
st_dword(buf + FSI_Free_Count, n_clst - 1);
st_dword(buf + FSI_Nxt_Free, 2);
st_word(buf + BS_55AA, 0xAA55);
disk_write(pdrv, buf, b_vol + 7, 1);
disk_write(pdrv, buf, b_vol + 1, 1);
}{...}
memset(buf, 0, sz_buf * ss);
sect = b_fat;
for (i = 0; i < n_fat; i++) {
if (fsty == FS_FAT32) {
st_dword(buf + 0, 0xFFFFFFF8);
st_dword(buf + 4, 0xFFFFFFFF);
st_dword(buf + 8, 0x0FFFFFFF);
}{...} else {
st_dword(buf + 0, (fsty == FS_FAT12) ? 0xFFFFF8 : 0xFFFFFFF8);
}{...}
nsect = sz_fat;
do {
n = (nsect > sz_buf) ? sz_buf : nsect;
if (disk_write(pdrv, buf, sect, (UINT)n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
memset(buf, 0, ss);
sect += n; nsect -= n;
}{...} while (nsect);
}{...}
nsect = (fsty == FS_FAT32) ? pau : sz_dir;
do {
n = (nsect > sz_buf) ? sz_buf : nsect;
if (disk_write(pdrv, buf, sect, (UINT)n) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
sect += n; nsect -= n;
}{...} while (nsect);
}{...}
if (FF_FS_EXFAT && fsty == FS_EXFAT) {
sys = 0x07;
}{...} else if (fsty == FS_FAT32) {
sys = 0x0C;
}{...} else if (sz_vol >= 0x10000) {
sys = 0x06;
}{...} else if (fsty == FS_FAT16) {
sys = 0x04;
}{...} else {
sys = 0x01;
}{...}
if (FF_MULTI_PARTITION && ipart != 0) {
if (!FF_LBA64 || !(fsopt & 0x80)) {
if (disk_read(pdrv, buf, 0, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
buf[MBR_Table + (ipart - 1) * SZ_PTE + PTE_System] = sys;
if (disk_write(pdrv, buf, 0, 1) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
}{...}
}{...} else {
if (!(fsopt & FM_SFD)) {
lba[0] = sz_vol; lba[1] = 0;
res = create_partition(pdrv, lba, sys, buf);
if (res != FR_OK) LEAVE_MKFS(res);
}{...}
}{...}
if (disk_ioctl(pdrv, CTRL_SYNC, 0) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
LEAVE_MKFS(FR_OK);
}{ ... }
#if FF_MULTI_PARTITION
FRESULT f_fdisk (
BYTE pdrv,
const LBA_t ptbl[],
void* work
)
{
BYTE *buf = (BYTE*)work;
DSTATUS stat;
FRESULT res;
stat = disk_initialize(pdrv);
if (stat & STA_NOINIT) return FR_NOT_READY;
if (stat & STA_PROTECT) return FR_WRITE_PROTECTED;
#if FF_USE_LFN == 3
if (!buf) buf = ff_memalloc(FF_MAX_SS);
#endif
if (!buf) return FR_NOT_ENOUGH_CORE;
res = create_partition(pdrv, ptbl, 0x07, buf);
LEAVE_MKFS(res);
}{ ... }
/* ... */#endif /* ... */
#endif
#if FF_USE_STRFUNC
#if FF_USE_LFN && FF_LFN_UNICODE && (FF_STRF_ENCODE < 0 || FF_STRF_ENCODE > 3)
#error Wrong FF_STRF_ENCODE setting
#endif
TCHAR* f_gets (
TCHAR* buff,
int len,
FIL* fp
)
{
int nc = 0;
TCHAR *p = buff;
BYTE s[4];
UINT rc;
DWORD dc;
#if FF_USE_LFN && FF_LFN_UNICODE && FF_STRF_ENCODE <= 2
WCHAR wc;
#endif
#if FF_USE_LFN && FF_LFN_UNICODE && FF_STRF_ENCODE == 3
UINT ct;
#endif
#if FF_USE_LFN && FF_LFN_UNICODE
if (FF_LFN_UNICODE == 1) len -= (FF_STRF_ENCODE == 0) ? 1 : 2;
if (FF_LFN_UNICODE == 2) len -= (FF_STRF_ENCODE == 0) ? 3 : 4;
if (FF_LFN_UNICODE == 3) len -= 1;
while (nc < len) {
#if FF_STRF_ENCODE == 0
f_read(fp, s, 1, &rc);
if (rc != 1) break;
wc = s[0];
if (dbc_1st((BYTE)wc)) {
f_read(fp, s, 1, &rc);
if (rc != 1 || !dbc_2nd(s[0])) continue;
wc = wc << 8 | s[0];
}{...}
dc = ff_oem2uni(wc, CODEPAGE);
if (dc == 0) continue; /* ... */
#elif FF_STRF_ENCODE == 1 || FF_STRF_ENCODE == 2
f_read(fp, s, 2, &rc);
if (rc != 2) break;
dc = (FF_STRF_ENCODE == 1) ? ld_word(s) : s[0] << 8 | s[1];
if (IsSurrogateL(dc)) continue;
if (IsSurrogateH(dc)) {
f_read(fp, s, 2, &rc);
if (rc != 2) break;
wc = (FF_STRF_ENCODE == 1) ? ld_word(s) : s[0] << 8 | s[1];
if (!IsSurrogateL(wc)) continue;
dc = ((dc & 0x3FF) + 0x40) << 10 | (wc & 0x3FF);
}{...}
/* ... */#else
f_read(fp, s, 1, &rc);
if (rc != 1) break;
dc = s[0];
if (dc >= 0x80) {
ct = 0;
if ((dc & 0xE0) == 0xC0) {
dc &= 0x1F; ct = 1;
}{...}
if ((dc & 0xF0) == 0xE0) {
dc &= 0x0F; ct = 2;
}{...}
if ((dc & 0xF8) == 0xF0) {
dc &= 0x07; ct = 3;
}{...}
if (ct == 0) continue;
f_read(fp, s, ct, &rc);
if (rc != ct) break;
rc = 0;
do {
if ((s[rc] & 0xC0) != 0x80) break;
dc = dc << 6 | (s[rc] & 0x3F);
}{...} while (++rc < ct);
if (rc != ct || dc < 0x80 || IsSurrogate(dc) || dc >= 0x110000) continue;
}{...}
/* ... */#endif
if (FF_USE_STRFUNC == 2 && dc == '\r') continue;
#if FF_LFN_UNICODE == 1 || FF_LFN_UNICODE == 3
if (FF_LFN_UNICODE == 1 && dc >= 0x10000) {
*p++ = (TCHAR)(0xD800 | ((dc >> 10) - 0x40)); nc++;
dc = 0xDC00 | (dc & 0x3FF);
}{...}
*p++ = (TCHAR)dc; nc++;
if (dc == '\n') break; /* ... */
#elif FF_LFN_UNICODE == 2
if (dc < 0x80) {
*p++ = (TCHAR)dc;
nc++;
if (dc == '\n') break;
}{...} else if (dc < 0x800) {
*p++ = (TCHAR)(0xC0 | (dc >> 6 & 0x1F));
*p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
nc += 2;
}{...} else if (dc < 0x10000) {
*p++ = (TCHAR)(0xE0 | (dc >> 12 & 0x0F));
*p++ = (TCHAR)(0x80 | (dc >> 6 & 0x3F));
*p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
nc += 3;
}{...} else {
*p++ = (TCHAR)(0xF0 | (dc >> 18 & 0x07));
*p++ = (TCHAR)(0x80 | (dc >> 12 & 0x3F));
*p++ = (TCHAR)(0x80 | (dc >> 6 & 0x3F));
*p++ = (TCHAR)(0x80 | (dc >> 0 & 0x3F));
nc += 4;
}{...}
/* ... */#endif
}{...}
/* ... */
#else
len -= 1;
while (nc < len) {
f_read(fp, s, 1, &rc);
if (rc != 1) break;
dc = s[0];
if (FF_USE_STRFUNC == 2 && dc == '\r') continue;
*p++ = (TCHAR)dc; nc++;
if (dc == '\n') break;
}{...}
/* ... */#endif
*p = 0;
return nc ? buff : 0;
}{...}
#if !FF_FS_READONLY
#include <stdarg.h>
#define SZ_PUTC_BUF 64
#define SZ_NUM_BUF 32
typedef struct {
FIL *fp;
int idx, nchr;
#if FF_USE_LFN && FF_LFN_UNICODE == 1
WCHAR hs;
#elif FF_USE_LFN && FF_LFN_UNICODE == 2
BYTE bs[4];
UINT wi, ct;/* ... */
#endif
BYTE buf[SZ_PUTC_BUF];
}{...} putbuff;
static void putc_bfd (putbuff* pb, TCHAR c)
{
UINT n;
int i, nc;
#if FF_USE_LFN && FF_LFN_UNICODE
WCHAR hs, wc;
#if FF_LFN_UNICODE == 2
DWORD dc;
const TCHAR* tp;/* ... */
#endif/* ... */
#endif
if (FF_USE_STRFUNC == 2 && c == '\n') {
putc_bfd(pb, '\r');
}{...}
i = pb->idx;
if (i < 0) return;
nc = pb->nchr;
#if FF_USE_LFN && FF_LFN_UNICODE
#if FF_LFN_UNICODE == 1
if (IsSurrogateH(c)) {
pb->hs = c; return;
}{...}
hs = pb->hs; pb->hs = 0;
if (hs != 0) {
if (!IsSurrogateL(c)) hs = 0;
}{...} else {
if (IsSurrogateL(c)) return;
}{...}
wc = c;/* ... */
#elif FF_LFN_UNICODE == 2
for (;;) {
if (pb->ct == 0) {
pb->bs[pb->wi = 0] = (BYTE)c;
if ((BYTE)c < 0x80) break;
if (((BYTE)c & 0xE0) == 0xC0) pb->ct = 1;
if (((BYTE)c & 0xF0) == 0xE0) pb->ct = 2;
if (((BYTE)c & 0xF8) == 0xF0) pb->ct = 3;
return;
}{...} else {
if (((BYTE)c & 0xC0) != 0x80) {
pb->ct = 0; continue;
}{...}
pb->bs[++pb->wi] = (BYTE)c;
if (--pb->ct == 0) break;
return;
}{...}
}{...}
tp = (const TCHAR*)pb->bs;
dc = tchar2uni(&tp);
if (dc == 0xFFFFFFFF) return;
hs = (WCHAR)(dc >> 16);
wc = (WCHAR)dc;/* ... */
#elif FF_LFN_UNICODE == 3
if (IsSurrogate(c) || c >= 0x110000) return;
if (c >= 0x10000) {
hs = (WCHAR)(0xD800 | ((c >> 10) - 0x40));
wc = 0xDC00 | (c & 0x3FF);
}{...} else {
hs = 0;
wc = (WCHAR)c;
}{...}
/* ... */#endif
#if FF_STRF_ENCODE == 1
if (hs != 0) {
st_word(&pb->buf[i], hs);
i += 2;
nc++;
}{...}
st_word(&pb->buf[i], wc);
i += 2;/* ... */
#elif FF_STRF_ENCODE == 2
if (hs != 0) {
pb->buf[i++] = (BYTE)(hs >> 8);
pb->buf[i++] = (BYTE)hs;
nc++;
}{...}
pb->buf[i++] = (BYTE)(wc >> 8);
pb->buf[i++] = (BYTE)wc;/* ... */
#elif FF_STRF_ENCODE == 3
if (hs != 0) {
nc += 3;
hs = (hs & 0x3FF) + 0x40;
pb->buf[i++] = (BYTE)(0xF0 | hs >> 8);
pb->buf[i++] = (BYTE)(0x80 | (hs >> 2 & 0x3F));
pb->buf[i++] = (BYTE)(0x80 | (hs & 3) << 4 | (wc >> 6 & 0x0F));
pb->buf[i++] = (BYTE)(0x80 | (wc & 0x3F));
}{...} else {
if (wc < 0x80) {
pb->buf[i++] = (BYTE)wc;
}{...} else {
if (wc < 0x800) {
nc += 1;
pb->buf[i++] = (BYTE)(0xC0 | wc >> 6);
}{...} else {
nc += 2;
pb->buf[i++] = (BYTE)(0xE0 | wc >> 12);
pb->buf[i++] = (BYTE)(0x80 | (wc >> 6 & 0x3F));
}{...}
pb->buf[i++] = (BYTE)(0x80 | (wc & 0x3F));
}{...}
}{...}
/* ... */#else
if (hs != 0) return;
wc = ff_uni2oem(wc, CODEPAGE);
if (wc == 0) return;
if (wc >= 0x100) {
pb->buf[i++] = (BYTE)(wc >> 8); nc++;
}{...}
pb->buf[i++] = (BYTE)wc;/* ... */
#endif
/* ... */
#else
pb->buf[i++] = (BYTE)c;
#endif
if (i >= (int)(sizeof pb->buf) - 4) {
f_write(pb->fp, pb->buf, (UINT)i, &n);
i = (n == (UINT)i) ? 0 : -1;
}{...}
pb->idx = i;
pb->nchr = nc + 1;
}{...}
static int putc_flush (putbuff* pb)
{
UINT nw;
if ( pb->idx >= 0
&& f_write(pb->fp, pb->buf, (UINT)pb->idx, &nw) == FR_OK
&& (UINT)pb->idx == nw) return pb->nchr;
return -1;
}{...}
static void putc_init (putbuff* pb, FIL* fp)
{
memset(pb, 0, sizeof (putbuff));
pb->fp = fp;
}{...}
int f_putc (
TCHAR c,
FIL* fp
)
{
putbuff pb;
putc_init(&pb, fp);
putc_bfd(&pb, c);
return putc_flush(&pb);
}{...}
int f_puts (
const TCHAR* str,
FIL* fp
)
{
putbuff pb;
putc_init(&pb, fp);
while (*str) putc_bfd(&pb, *str++);
return putc_flush(&pb);
}{...}
#if FF_PRINT_FLOAT && FF_INTDEF == 2
#include <math.h>
static int ilog10 (double n)
{
int rv = 0;
while (n >= 10) {
if (n >= 100000) {
n /= 100000; rv += 5;
}{...} else {
n /= 10; rv++;
}{...}
}{...}
while (n < 1) {
if (n < 0.00001) {
n *= 100000; rv -= 5;
}{...} else {
n *= 10; rv--;
}{...}
}{...}
return rv;
}{...}
static double i10x (int n)
{
double rv = 1;
while (n > 0) {
if (n >= 5) {
rv *= 100000; n -= 5;
}{...} else {
rv *= 10; n--;
}{...}
}{...}
while (n < 0) {
if (n <= -5) {
rv /= 100000; n += 5;
}{...} else {
rv /= 10; n++;
}{...}
}{...}
return rv;
}{...}
static void ftoa (
char* buf,
double val,
int prec,
TCHAR fmt
)
{
int d;
int e = 0, m = 0;
char sign = 0;
double w;
const char *er = 0;
const char ds = FF_PRINT_FLOAT == 2 ? ',' : '.';
if (isnan(val)) {
er = "NaN";
}{...} else {
if (prec < 0) prec = 6;
if (val < 0) {
val = 0 - val; sign = '-';
}{...} else {
sign = '+';
}{...}
if (isinf(val)) {
er = "INF";
}{...} else {
if (fmt == 'f') {
val += i10x(0 - prec) / 2;
m = ilog10(val);
if (m < 0) m = 0;
if (m + prec + 3 >= SZ_NUM_BUF) er = "OV";
}{...} else {
if (val != 0) {
val += i10x(ilog10(val) - prec) / 2;
e = ilog10(val);
if (e > 99 || prec + 7 >= SZ_NUM_BUF) {
er = "OV";
}{...} else {
if (e < -99) e = -99;
val /= i10x(e);
}{...}
}{...}
}{...}
}{...}
if (!er) {
if (sign == '-') *buf++ = sign;
do {
if (m == -1) *buf++ = ds;
w = i10x(m);
d = (int)(val / w); val -= d * w;
*buf++ = (char)('0' + d);
}{...} while (--m >= -prec);
if (fmt != 'f') {
*buf++ = (char)fmt;
if (e < 0) {
e = 0 - e; *buf++ = '-';
}{...} else {
*buf++ = '+';
}{...}
*buf++ = (char)('0' + e / 10);
*buf++ = (char)('0' + e % 10);
}{...}
}{...}
}{...}
if (er) {
if (sign) *buf++ = sign;
do {
*buf++ = *er++;
}{...} while (*er);
}{...}
*buf = 0;
}{...}
/* ... */#endif
int f_printf (
FIL* fp,
const TCHAR* fmt,
...
)
{
va_list arp;
putbuff pb;
UINT i, j, w, f, r;
int prec;
#if FF_PRINT_LLI && FF_INTDEF == 2
QWORD v;
#else
DWORD v;
#endif
TCHAR *tp;
TCHAR tc, pad;
TCHAR nul = 0;
char d, str[SZ_NUM_BUF];
putc_init(&pb, fp);
va_start(arp, fmt);
for (;;) {
tc = *fmt++;
if (tc == 0) break;
if (tc != '%') {
putc_bfd(&pb, tc);
continue;
}{...}
f = w = 0; pad = ' '; prec = -1;
tc = *fmt++;
if (tc == '0') {
pad = '0'; tc = *fmt++;
}{...} else if (tc == '-') {
f = 2; tc = *fmt++;
}{...}
if (tc == '*') {
w = va_arg(arp, int);
tc = *fmt++;
}{...} else {
while (IsDigit(tc)) {
w = w * 10 + tc - '0';
tc = *fmt++;
}{...}
}{...}
if (tc == '.') {
tc = *fmt++;
if (tc == '*') {
prec = va_arg(arp, int);
tc = *fmt++;
}{...} else {
prec = 0;
while (IsDigit(tc)) {
prec = prec * 10 + tc - '0';
tc = *fmt++;
}{...}
}{...}
}{...}
if (tc == 'l') {
f |= 4; tc = *fmt++;
#if FF_PRINT_LLI && FF_INTDEF == 2
if (tc == 'l') {
f |= 8; tc = *fmt++;
}{...}
/* ... */#endif
}{...}
if (tc == 0) break;
switch (tc) {
case 'b':
r = 2; break;
...
case 'o':
r = 8; break;
...
case 'd':
case 'u':
r = 10; break;
...
case 'x':
case 'X':
r = 16; break;
...
case 'c':
putc_bfd(&pb, (TCHAR)va_arg(arp, int));
continue;
...
case 's':
tp = va_arg(arp, TCHAR*);
if (!tp) tp = &nul;
for (j = 0; tp[j]; j++) ;
if (prec >= 0 && j > (UINT)prec) j = prec;
for ( ; !(f & 2) && j < w; j++) putc_bfd(&pb, pad);
while (*tp && prec--) putc_bfd(&pb, *tp++);
while (j++ < w) putc_bfd(&pb, ' ');
continue;
#if FF_PRINT_FLOAT && FF_INTDEF == 2...
case 'f':
case 'e':
case 'E':
ftoa(str, va_arg(arp, double), prec, tc);
for (j = strlen(str); !(f & 2) && j < w; j++) putc_bfd(&pb, pad);
for (i = 0; str[i]; putc_bfd(&pb, str[i++])) ;
while (j++ < w) putc_bfd(&pb, ' ');
continue;/* ... */
#endif
default:
putc_bfd(&pb, tc); continue;...
}{...}
#if FF_PRINT_LLI && FF_INTDEF == 2
if (f & 8) {
v = (QWORD)va_arg(arp, long long);
}{...} else if (f & 4) {
v = (tc == 'd') ? (QWORD)(long long)va_arg(arp, long) : (QWORD)va_arg(arp, unsigned long);
}{...} else {
v = (tc == 'd') ? (QWORD)(long long)va_arg(arp, int) : (QWORD)va_arg(arp, unsigned int);
}{...}
if (tc == 'd' && (v & 0x8000000000000000)) {
v = 0 - v; f |= 1;
}{...}
/* ... */#else
if (f & 4) {
v = (DWORD)va_arg(arp, long);
}{...} else {
v = (tc == 'd') ? (DWORD)(long)va_arg(arp, int) : (DWORD)va_arg(arp, unsigned int);
}{...}
if (tc == 'd' && (v & 0x80000000)) {
v = 0 - v; f |= 1;
}{...}
/* ... */#endif
i = 0;
do {
d = (char)(v % r); v /= r;
if (d > 9) d += (tc == 'x') ? 0x27 : 0x07;
str[i++] = d + '0';
}{...} while (v && i < SZ_NUM_BUF);
if (f & 1) str[i++] = '-';
for (j = i; !(f & 2) && j < w; j++) {
putc_bfd(&pb, pad);
}{...}
do {
putc_bfd(&pb, (TCHAR)str[--i]);
}{...} while (i);
while (j++ < w) {
putc_bfd(&pb, ' ');
}{...}
}{...}
va_end(arp);
return putc_flush(&pb);
}{...}
/* ... */
#endif /* ... */
#endif
#if FF_CODE_PAGE == 0
FRESULT f_setcp (
WORD cp
)
{
static const WORD validcp[22] = { 437, 720, 737, 771, 775, 850, 852, 855, 857, 860, 861, 862, 863, 864, 865, 866, 869, 932, 936, 949, 950, 0};
static const BYTE *const tables[22] = {Ct437, Ct720, Ct737, Ct771, Ct775, Ct850, Ct852, Ct855, Ct857, Ct860, Ct861, Ct862, Ct863, Ct864, Ct865, Ct866, Ct869, Dc932, Dc936, Dc949, Dc950, 0};
UINT i;
for (i = 0; validcp[i] != 0 && validcp[i] != cp; i++) ;
if (validcp[i] != cp) return FR_INVALID_PARAMETER;
CodePage = cp;
if (cp >= 900) {
ExCvt = 0;
DbcTbl = tables[i];
}{...} else {
ExCvt = tables[i];
DbcTbl = 0;
}{...}
return FR_OK;
}{...}
/* ... */#endif