]> git.sven.stormbind.net Git - sven/exfat-utils.git/blob - dump/main.c
75f7ff19c3680b24fe7c46c36c84176f58573238
[sven/exfat-utils.git] / dump / main.c
1 /*
2         main.c (08.11.10)
3         Prints detailed information about exFAT volume.
4
5         Free exFAT implementation.
6         Copyright (C) 2011-2016  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 <exfat.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26 #include <inttypes.h>
27 #include <stdio.h>
28 #include <string.h>
29
30 static void print_generic_info(const struct exfat_super_block* sb)
31 {
32         printf("Volume serial number      0x%08x\n",
33                         le32_to_cpu(sb->volume_serial));
34         printf("FS version                       %hhu.%hhu\n",
35                         sb->version.major, sb->version.minor);
36         printf("Sector size               %10u\n",
37                         SECTOR_SIZE(*sb));
38         printf("Cluster size              %10u\n",
39                         CLUSTER_SIZE(*sb));
40 }
41
42 static void print_sector_info(const struct exfat_super_block* sb)
43 {
44         printf("Sectors count             %10"PRIu64"\n",
45                         le64_to_cpu(sb->sector_count));
46 }
47
48 static void print_cluster_info(const struct exfat_super_block* sb)
49 {
50         printf("Clusters count            %10u\n",
51                         le32_to_cpu(sb->cluster_count));
52 }
53
54 static void print_other_info(const struct exfat_super_block* sb)
55 {
56         printf("First sector              %10"PRIu64"\n",
57                         le64_to_cpu(sb->sector_start));
58         printf("FAT first sector          %10u\n",
59                         le32_to_cpu(sb->fat_sector_start));
60         printf("FAT sectors count         %10u\n",
61                         le32_to_cpu(sb->fat_sector_count));
62         printf("First cluster sector      %10u\n",
63                         le32_to_cpu(sb->cluster_sector_start));
64         printf("Root directory cluster    %10u\n",
65                         le32_to_cpu(sb->rootdir_cluster));
66         printf("Volume state                  0x%04hx\n",
67                         le16_to_cpu(sb->volume_state));
68         printf("FATs count                %10hhu\n",
69                         sb->fat_count);
70         printf("Drive number                    0x%02hhx\n",
71                         sb->drive_no);
72         printf("Allocated space           %9hhu%%\n",
73                         sb->allocated_percent);
74 }
75
76 static int dump_sb(const char* spec)
77 {
78         struct exfat_dev* dev;
79         struct exfat_super_block sb;
80
81         dev = exfat_open(spec, EXFAT_MODE_RO);
82         if (dev == NULL)
83                 return 1;
84
85         if (exfat_read(dev, &sb, sizeof(struct exfat_super_block)) < 0)
86         {
87                 exfat_close(dev);
88                 exfat_error("failed to read from '%s'", spec);
89                 return 1;
90         }
91         if (memcmp(sb.oem_name, "EXFAT   ", sizeof(sb.oem_name)) != 0)
92         {
93                 exfat_close(dev);
94                 exfat_error("exFAT file system is not found on '%s'", spec);
95                 return 1;
96         }
97
98         print_generic_info(&sb);
99         print_sector_info(&sb);
100         print_cluster_info(&sb);
101         print_other_info(&sb);
102
103         exfat_close(dev);
104         return 0;
105 }
106
107 static void dump_sectors(struct exfat* ef)
108 {
109         off_t a = 0, b = 0;
110
111         printf("Used sectors ");
112         while (exfat_find_used_sectors(ef, &a, &b) == 0)
113                 printf(" %"PRIu64"-%"PRIu64, a, b);
114         puts("");
115 }
116
117 static int dump_full(const char* spec, bool used_sectors)
118 {
119         struct exfat ef;
120         uint32_t free_clusters;
121         uint64_t free_sectors;
122
123         if (exfat_mount(&ef, spec, "ro") != 0)
124                 return 1;
125
126         free_clusters = exfat_count_free_clusters(&ef);
127         free_sectors = (uint64_t) free_clusters << ef.sb->spc_bits;
128
129         printf("Volume label         %15s\n", exfat_get_label(&ef));
130         print_generic_info(ef.sb);
131         print_sector_info(ef.sb);
132         printf("Free sectors              %10"PRIu64"\n", free_sectors);
133         print_cluster_info(ef.sb);
134         printf("Free clusters             %10u\n", free_clusters);
135         print_other_info(ef.sb);
136         if (used_sectors)
137                 dump_sectors(&ef);
138
139         exfat_unmount(&ef);
140         return 0;
141 }
142
143 static void usage(const char* prog)
144 {
145         fprintf(stderr, "Usage: %s [-s] [-u] [-V] <device>\n", prog);
146         exit(1);
147 }
148
149 int main(int argc, char* argv[])
150 {
151         int opt;
152         const char* spec = NULL;
153         bool sb_only = false;
154         bool used_sectors = false;
155
156         printf("dumpexfat %s\n", VERSION);
157
158         while ((opt = getopt(argc, argv, "suV")) != -1)
159         {
160                 switch (opt)
161                 {
162                 case 's':
163                         sb_only = true;
164                         break;
165                 case 'u':
166                         used_sectors = true;
167                         break;
168                 case 'V':
169                         puts("Copyright (C) 2011-2016  Andrew Nayenko");
170                         return 0;
171                 default:
172                         usage(argv[0]);
173                 }
174         }
175         if (argc - optind != 1)
176                 usage(argv[0]);
177         spec = argv[optind];
178
179         if (sb_only)
180                 return dump_sb(spec);
181
182         return dump_full(spec, used_sectors);
183 }