blob: 67920aa61b6e018e871231993f8fc8fee7291669 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 main.c (02.09.09)
3 exFAT file system checker.
4
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04005 Free exFAT implementation.
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -04006 Copyright (C) 2011-2014 Andrew Nayenko
bigbiff bigbiff9c754052013-01-09 09:09:08 -05007
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04008 This program is free software; you can redistribute it and/or modify
bigbiff bigbiff9c754052013-01-09 09:09:08 -05009 it under the terms of the GNU General Public License as published by
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040010 the Free Software Foundation, either version 2 of the License, or
bigbiff bigbiff9c754052013-01-09 09:09:08 -050011 (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
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040018 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.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050021*/
22
23#include <stdio.h>
24#include <string.h>
25#include <exfat.h>
26#include <exfatfs.h>
27#include <inttypes.h>
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040028#include <unistd.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050029
30#define exfat_debug(format, ...)
31
32uint64_t files_count, directories_count;
33
34static 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 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040045 char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
bigbiff bigbiff9c754052013-01-09 09:09:08 -050046
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040047 exfat_get_name(node, name, sizeof(name) - 1);
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040048 exfat_error("file '%s' has invalid cluster 0x%x", name, c);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050049 rc = 1;
50 break;
51 }
52 if (BMAP_GET(ef->cmap.chunk, c - EXFAT_FIRST_DATA_CLUSTER) == 0)
53 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040054 char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
bigbiff bigbiff9c754052013-01-09 09:09:08 -050055
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040056 exfat_get_name(node, name, sizeof(name) - 1);
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040057 exfat_error("cluster 0x%x of file '%s' is not allocated", c, name);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050058 rc = 1;
59 }
60 c = exfat_next_cluster(ef, node, c);
61 }
62 return rc;
63}
64
65static 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)
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040075 exfat_bug("directory '%s' is not found", path);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050076 if (!(parent->flags & EXFAT_ATTRIB_DIR))
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040077 exfat_bug("'%s' is not a directory (0x%x)", path, parent->flags);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050078 if (nodeck(ef, parent) != 0)
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040079 {
80 exfat_put_node(ef, parent);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050081 return;
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040082 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -050083
84 path_length = strlen(path);
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040085 entry_path = malloc(path_length + 1 + UTF8_BYTES(EXFAT_NAME_MAX) + 1);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050086 if (entry_path == NULL)
87 {
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040088 exfat_put_node(ef, parent);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050089 exfat_error("out of memory");
90 return;
91 }
92 strcpy(entry_path, path);
93 strcat(entry_path, "/");
94
95 rc = exfat_opendir(ef, parent, &it);
96 if (rc != 0)
97 {
98 free(entry_path);
99 exfat_put_node(ef, parent);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500100 return;
101 }
102 while ((node = exfat_readdir(ef, &it)))
103 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400104 exfat_get_name(node, entry_path + path_length + 1,
105 UTF8_BYTES(EXFAT_NAME_MAX));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500106 exfat_debug("%s: %s, %"PRIu64" bytes, cluster %u", entry_path,
107 IS_CONTIGUOUS(*node) ? "contiguous" : "fragmented",
108 node->size, node->start_cluster);
109 if (node->flags & EXFAT_ATTRIB_DIR)
110 {
111 directories_count++;
112 dirck(ef, entry_path);
113 }
114 else
115 {
116 files_count++;
117 nodeck(ef, node);
118 }
119 exfat_put_node(ef, node);
120 }
121 exfat_closedir(ef, &it);
122 exfat_put_node(ef, parent);
123 free(entry_path);
124}
125
126static void fsck(struct exfat* ef)
127{
128 exfat_print_info(ef->sb, exfat_count_free_clusters(ef));
129 dirck(ef, "");
130}
131
132static void usage(const char* prog)
133{
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400134 fprintf(stderr, "Usage: %s [-V] <device>\n", prog);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500135 exit(1);
136}
137
138int main(int argc, char* argv[])
139{
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400140 int opt;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500141 const char* spec = NULL;
142 struct exfat ef;
143
144 printf("exfatfsck %u.%u.%u\n",
145 EXFAT_VERSION_MAJOR, EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
146
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400147 while ((opt = getopt(argc, argv, "V")) != -1)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500148 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400149 switch (opt)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500150 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400151 case 'V':
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400152 puts("Copyright (C) 2011-2014 Andrew Nayenko");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500153 return 0;
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400154 default:
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500155 usage(argv[0]);
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400156 break;
157 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500158 }
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400159 if (argc - optind != 1)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500160 usage(argv[0]);
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400161 spec = argv[optind];
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500162
163 if (exfat_mount(&ef, spec, "ro") != 0)
164 return 1;
165
166 printf("Checking file system on %s.\n", spec);
167 fsck(&ef);
168 exfat_unmount(&ef);
169 printf("Totally %"PRIu64" directories and %"PRIu64" files.\n",
170 directories_count, files_count);
171
172 fputs("File system checking finished. ", stdout);
173 if (exfat_errors != 0)
174 {
175 printf("ERRORS FOUND: %d.\n", exfat_errors);
176 return 1;
177 }
178 puts("No errors found.");
179 return 0;
180}