OSDN Git Service

Relicensed the code from GPLv3+ to GPLv2+.
[android-x86/external-exfat.git] / fsck / main.c
1 /*
2         main.c (02.09.09)
3         exFAT file system checker.
4
5         Free exFAT implementation.
6         Copyright (C) 2011-2013  Andrew Nayenko
7
8         This program is free software; you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 2 of the License, or
11         (at your option) any later version.
12
13         This program is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License along
19         with this program; if not, write to the Free Software Foundation, Inc.,
20         51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #include <stdio.h>
24 #include <string.h>
25 #include <exfat.h>
26 #include <exfatfs.h>
27 #include <inttypes.h>
28 #include <unistd.h>
29
30 #define exfat_debug(format, ...)
31
32 uint64_t files_count, directories_count;
33
34 static int nodeck(struct exfat* ef, struct exfat_node* node)
35 {
36         const cluster_t cluster_size = CLUSTER_SIZE(*ef->sb);
37         cluster_t clusters = (node->size + cluster_size - 1) / cluster_size;
38         cluster_t c = node->start_cluster;
39         int rc = 0;
40
41         while (clusters--)
42         {
43                 if (CLUSTER_INVALID(c))
44                 {
45                         char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
46
47                         exfat_get_name(node, name, sizeof(name) - 1);
48                         exfat_error("file `%s' has invalid cluster 0x%x", name, c);
49                         rc = 1;
50                         break;
51                 }
52                 if (BMAP_GET(ef->cmap.chunk, c - EXFAT_FIRST_DATA_CLUSTER) == 0)
53                 {
54                         char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
55
56                         exfat_get_name(node, name, sizeof(name) - 1);
57                         exfat_error("cluster 0x%x of file `%s' is not allocated", c, name);
58                         rc = 1;
59                 }
60                 c = exfat_next_cluster(ef, node, c);
61         }
62         return rc;
63 }
64
65 static void dirck(struct exfat* ef, const char* path)
66 {
67         struct exfat_node* parent;
68         struct exfat_node* node;
69         struct exfat_iterator it;
70         int rc;
71         size_t path_length;
72         char* entry_path;
73
74         if (exfat_lookup(ef, &parent, path) != 0)
75                 exfat_bug("directory `%s' is not found", path);
76         if (!(parent->flags & EXFAT_ATTRIB_DIR))
77                 exfat_bug("`%s' is not a directory (0x%x)", path, parent->flags);
78         if (nodeck(ef, parent) != 0)
79                 return;
80
81         path_length = strlen(path);
82         entry_path = malloc(path_length + 1 + UTF8_BYTES(EXFAT_NAME_MAX) + 1);
83         if (entry_path == NULL)
84         {
85                 exfat_error("out of memory");
86                 return;
87         }
88         strcpy(entry_path, path);
89         strcat(entry_path, "/");
90
91         rc = exfat_opendir(ef, parent, &it);
92         if (rc != 0)
93         {
94                 free(entry_path);
95                 exfat_put_node(ef, parent);
96                 return;
97         }
98         while ((node = exfat_readdir(ef, &it)))
99         {
100                 exfat_get_name(node, entry_path + path_length + 1,
101                                 UTF8_BYTES(EXFAT_NAME_MAX));
102                 exfat_debug("%s: %s, %"PRIu64" bytes, cluster %u", entry_path,
103                                 IS_CONTIGUOUS(*node) ? "contiguous" : "fragmented",
104                                 node->size, node->start_cluster);
105                 if (node->flags & EXFAT_ATTRIB_DIR)
106                 {
107                         directories_count++;
108                         dirck(ef, entry_path);
109                 }
110                 else
111                 {
112                         files_count++;
113                         nodeck(ef, node);
114                 }
115                 exfat_put_node(ef, node);
116         }
117         exfat_closedir(ef, &it);
118         exfat_put_node(ef, parent);
119         free(entry_path);
120 }
121
122 static void fsck(struct exfat* ef)
123 {
124         exfat_print_info(ef->sb, exfat_count_free_clusters(ef));
125         dirck(ef, "");
126 }
127
128 static void usage(const char* prog)
129 {
130         fprintf(stderr, "Usage: %s [-V] <device>\n", prog);
131         exit(1);
132 }
133
134 int main(int argc, char* argv[])
135 {
136         int opt;
137         const char* spec = NULL;
138         struct exfat ef;
139
140         printf("exfatfsck %u.%u.%u\n",
141                         EXFAT_VERSION_MAJOR, EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
142
143         while ((opt = getopt(argc, argv, "V")) != -1)
144         {
145                 switch (opt)
146                 {
147                 case 'V':
148                         puts("Copyright (C) 2011-2013  Andrew Nayenko");
149                         return 0;
150                 default:
151                         usage(argv[0]);
152                         break;
153                 }
154         }
155         if (argc - optind != 1)
156                 usage(argv[0]);
157         spec = argv[optind];
158
159         if (exfat_mount(&ef, spec, "ro") != 0)
160                 return 1;
161
162         printf("Checking file system on %s.\n", spec);
163         fsck(&ef);
164         exfat_unmount(&ef);
165         printf("Totally %"PRIu64" directories and %"PRIu64" files.\n",
166                         directories_count, files_count);
167
168         fputs("File system checking finished. ", stdout);
169         if (exfat_errors != 0)
170         {
171                 printf("ERRORS FOUND: %d.\n", exfat_errors);
172                 return 1;
173         }
174         puts("No errors found.");
175         return 0;
176 }