1
10
13
14
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
117
118
119
127
128
129
130
131
132
140
141
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
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_media.h"
#include "fx_utility.h"
...
...
ULONG _fx_media_check_FAT_chain_check(FX_MEDIA *media_ptr, ULONG starting_cluster, ULONG *last_valid_cluster, ULONG *total_valid_clusters, UCHAR *logical_fat)
{
ULONG prev_cluster, cluster, next_clust = 0;
ULONG cluster_number;
ULONG count, error;
UINT status;
error = 0;
cluster = starting_cluster;
prev_cluster = 0;
count = 0;
while ((cluster >= (ULONG)FX_FAT_ENTRY_START) &&
(cluster < (FX_FAT_ENTRY_START + media_ptr -> fx_media_total_clusters)))
{
cluster_number = cluster;
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_exFAT)
{
cluster_number = cluster - FX_FAT_ENTRY_START;
}if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... }
/* ... */#endif
if (logical_fat[cluster_number >> 3] & (1 << (cluster_number & 7)))
{
/* ... */
error = FX_FAT_CHAIN_ERROR;
break;
}if (logical_fat[cluster_number >> 3] & (1 << (cluster_number & 7))) { ... }
status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_clust);
if (status != FX_SUCCESS)
{
/* ... */
error = FX_IO_ERROR;
break;
}if (status != FX_SUCCESS) { ... }
/* ... */
if ((cluster == next_clust) ||
(next_clust < (ULONG)FX_FAT_ENTRY_START) ||
((next_clust >= (FX_FAT_ENTRY_START + media_ptr -> fx_media_total_clusters)) &&
(next_clust != media_ptr -> fx_media_fat_last)))
{
error = FX_FAT_CHAIN_ERROR;
break;
}if ((cluster == next_clust) || (next_clust < (ULONG)FX_FAT_ENTRY_START) || ((next_clust >= (FX_FAT_ENTRY_START + media_ptr -> fx_media_total_clusters)) && (next_clust != media_ptr -> fx_media_fat_last))) { ... }
logical_fat[cluster_number >> 3] = (UCHAR)(logical_fat[cluster_number >> 3] | (1 << (cluster_number & 7)));
prev_cluster = cluster;
cluster = next_clust;
count++;
}while ((cluster >= (ULONG)FX_FAT_ENTRY_START) && (cluster < (FX_FAT_ENTRY_START + media_ptr -> fx_media_total_clusters))) { ... }
*last_valid_cluster = prev_cluster;
*total_valid_clusters = count;
return(error);
}{ ... }