Whamcloud - gitweb
misc: fix alignment warnings on ARM
[tools/e2fsprogs.git] / misc / filefrag.c
1 /*
2  * filefrag.c -- report if a particular file is fragmented
3  *
4  * Copyright 2003 by Theodore Ts'o.
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Public
8  * License.
9  * %End-Header%
10  */
11
12 #include "config.h"
13 #ifndef __linux__
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17
18 int main(void) {
19         fputs("This program is only supported on Linux!\n", stderr);
20         exit(EXIT_FAILURE);
21 }
22 #else
23 #define _LARGEFILE64_SOURCE
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <time.h>
30 #include <fcntl.h>
31 #include <errno.h>
32 #ifdef HAVE_GETOPT_H
33 #include <getopt.h>
34 #else
35 extern char *optarg;
36 extern int optind;
37 #endif
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <sys/vfs.h>
41 #include <sys/ioctl.h>
42 #include <linux/fd.h>
43 #include <ext2fs/ext2fs.h>
44 #include <ext2fs/ext2_types.h>
45 #include <ext2fs/fiemap.h>
46
47 int verbose = 0;
48 int blocksize;          /* Use specified blocksize (default 1kB) */
49 int sync_file = 0;      /* fsync file before getting the mapping */
50 int xattr_map = 0;      /* get xattr mapping */
51 int force_bmap; /* force use of FIBMAP instead of FIEMAP */
52 int force_extent;       /* print output in extent format always */
53 int logical_width = 8;
54 int physical_width = 10;
55 const char *ext_fmt = "%4d: %*llu..%*llu: %*llu..%*llu: %6llu: %s\n";
56 const char *hex_fmt = "%4d: %*llx..%*llx: %*llx..%*llx: %6llx: %s\n";
57
58 #define FILEFRAG_FIEMAP_FLAGS_COMPAT (FIEMAP_FLAG_SYNC | FIEMAP_FLAG_XATTR)
59
60 #define FIBMAP          _IO(0x00, 1)    /* bmap access */
61 #define FIGETBSZ        _IO(0x00, 2)    /* get the block size used for bmap */
62
63 #define LUSTRE_SUPER_MAGIC 0x0BD00BD0
64
65 #define EXT4_EXTENTS_FL                 0x00080000 /* Inode uses extents */
66 #define EXT3_IOC_GETFLAGS               _IOR('f', 1, long)
67
68 static int int_log2(int arg)
69 {
70         int     l = 0;
71
72         arg >>= 1;
73         while (arg) {
74                 l++;
75                 arg >>= 1;
76         }
77         return l;
78 }
79
80 static int int_log10(unsigned long long arg)
81 {
82         int     l = 0;
83
84         arg = arg / 10;
85         while (arg) {
86                 l++;
87                 arg = arg / 10;
88         }
89         return l;
90 }
91
92 static unsigned int div_ceil(unsigned int a, unsigned int b)
93 {
94         if (!a)
95                 return 0;
96         return ((a - 1) / b) + 1;
97 }
98
99 static int get_bmap(int fd, unsigned long block, unsigned long *phy_blk)
100 {
101         int     ret;
102         unsigned int b;
103
104         b = block;
105         ret = ioctl(fd, FIBMAP, &b); /* FIBMAP takes pointer to integer */
106         if (ret < 0)
107                 return -errno;
108         *phy_blk = b;
109
110         return ret;
111 }
112
113 static void print_extent_header(void)
114 {
115         printf(" ext: %*s %*s length: %*s flags:\n",
116                logical_width * 2 + 3,
117                "logical_offset:",
118                physical_width * 2 + 3, "physical_offset:",
119                physical_width + 1,
120                "expected:");
121 }
122
123 static void print_flag(__u32 *flags, __u32 mask, char *buf, const char *name)
124 {
125         if ((*flags & mask) == 0)
126                 return;
127
128         strcat(buf, name);
129         *flags &= ~mask;
130 }
131
132 static void print_extent_info(struct fiemap_extent *fm_extent, int cur_ex,
133                               unsigned long long expected, int blk_shift,
134                               ext2fs_struct_stat *st)
135 {
136         unsigned long long physical_blk;
137         unsigned long long logical_blk;
138         unsigned long long ext_len;
139         unsigned long long ext_blks;
140         __u32 fe_flags, mask;
141         char flags[256] = "";
142
143         /* For inline data all offsets should be in bytes, not blocks */
144         if (fm_extent->fe_flags & FIEMAP_EXTENT_DATA_INLINE)
145                 blk_shift = 0;
146
147         ext_len = fm_extent->fe_length >> blk_shift;
148         ext_blks = (fm_extent->fe_length - 1) >> blk_shift;
149         logical_blk = fm_extent->fe_logical >> blk_shift;
150         if (fm_extent->fe_flags & FIEMAP_EXTENT_UNKNOWN) {
151                 physical_blk = 0;
152         } else {
153                 physical_blk = fm_extent->fe_physical >> blk_shift;
154         }
155
156         if (expected)
157                 sprintf(flags, ext_fmt == hex_fmt ? "%*llx: " : "%*llu: ",
158                         physical_width, expected >> blk_shift);
159         else
160                 sprintf(flags, "%.*s  ", physical_width, "                   ");
161
162         fe_flags = fm_extent->fe_flags;
163         print_flag(&fe_flags, FIEMAP_EXTENT_LAST, flags, "last,");
164         print_flag(&fe_flags, FIEMAP_EXTENT_UNKNOWN, flags, "unknown_loc,");
165         print_flag(&fe_flags, FIEMAP_EXTENT_DELALLOC, flags, "delalloc,");
166         print_flag(&fe_flags, FIEMAP_EXTENT_ENCODED, flags, "encoded,");
167         print_flag(&fe_flags, FIEMAP_EXTENT_DATA_ENCRYPTED, flags,"encrypted,");
168         print_flag(&fe_flags, FIEMAP_EXTENT_NOT_ALIGNED, flags, "not_aligned,");
169         print_flag(&fe_flags, FIEMAP_EXTENT_DATA_INLINE, flags, "inline,");
170         print_flag(&fe_flags, FIEMAP_EXTENT_DATA_TAIL, flags, "tail_packed,");
171         print_flag(&fe_flags, FIEMAP_EXTENT_UNWRITTEN, flags, "unwritten,");
172         print_flag(&fe_flags, FIEMAP_EXTENT_MERGED, flags, "merged,");
173         print_flag(&fe_flags, FIEMAP_EXTENT_SHARED, flags, "shared,");
174         /* print any unknown flags as hex values */
175         for (mask = 1; fe_flags != 0 && mask != 0; mask <<= 1) {
176                 char hex[6];
177
178                 if ((fe_flags & mask) == 0)
179                         continue;
180                 sprintf(hex, "%#04x,", mask);
181                 print_flag(&fe_flags, mask, flags, hex);
182         }
183
184         if (fm_extent->fe_logical + fm_extent->fe_length >= st->st_size)
185                 strcat(flags, "eof,");
186
187         /* Remove trailing comma, if any */
188         if (flags[0] != '\0')
189                 flags[strnlen(flags, sizeof(flags)) - 1] = '\0';
190
191         printf(ext_fmt, cur_ex, logical_width, logical_blk,
192                logical_width, logical_blk + ext_blks,
193                physical_width, physical_blk,
194                physical_width, physical_blk + ext_blks,
195                ext_len, flags);
196 }
197
198 static int filefrag_fiemap(int fd, int blk_shift, int *num_extents,
199                            ext2fs_struct_stat *st)
200 {
201         __u64 buf[2048];        /* __u64 for proper field alignment */
202         struct fiemap *fiemap = (struct fiemap *)buf;
203         struct fiemap_extent *fm_ext = &fiemap->fm_extents[0];
204         int count = (sizeof(buf) - sizeof(*fiemap)) /
205                         sizeof(struct fiemap_extent);
206         unsigned long long expected = 0;
207         unsigned long flags = 0;
208         unsigned int i;
209         int fiemap_header_printed = 0;
210         int tot_extents = 0, n = 0;
211         int last = 0;
212         int rc;
213
214         memset(fiemap, 0, sizeof(struct fiemap));
215
216         if (sync_file)
217                 flags |= FIEMAP_FLAG_SYNC;
218
219         if (xattr_map)
220                 flags |= FIEMAP_FLAG_XATTR;
221
222         do {
223                 fiemap->fm_length = ~0ULL;
224                 fiemap->fm_flags = flags;
225                 fiemap->fm_extent_count = count;
226                 rc = ioctl(fd, FS_IOC_FIEMAP, (unsigned long) fiemap);
227                 if (rc < 0) {
228                         static int fiemap_incompat_printed;
229
230                         rc = -errno;
231                         if (rc == -EBADR && !fiemap_incompat_printed) {
232                                 fprintf(stderr, "FIEMAP failed with unknown "
233                                                 "flags %x\n",
234                                        fiemap->fm_flags);
235                                 fiemap_incompat_printed = 1;
236                         }
237                         return rc;
238                 }
239
240                 /* If 0 extents are returned, then more ioctls are not needed */
241                 if (fiemap->fm_mapped_extents == 0)
242                         break;
243
244                 if (verbose && !fiemap_header_printed) {
245                         print_extent_header();
246                         fiemap_header_printed = 1;
247                 }
248
249                 for (i = 0; i < fiemap->fm_mapped_extents; i++) {
250                         if (fm_ext[i].fe_logical != 0 &&
251                             fm_ext[i].fe_physical != expected) {
252                                 tot_extents++;
253                         } else {
254                                 expected = 0;
255                                 if (!tot_extents)
256                                         tot_extents = 1;
257                         }
258                         if (verbose)
259                                 print_extent_info(&fm_ext[i], n, expected,
260                                                   blk_shift, st);
261
262                         expected = fm_ext[i].fe_physical + fm_ext[i].fe_length;
263                         if (fm_ext[i].fe_flags & FIEMAP_EXTENT_LAST)
264                                 last = 1;
265                         n++;
266                 }
267
268                 fiemap->fm_start = (fm_ext[i - 1].fe_logical +
269                                     fm_ext[i - 1].fe_length);
270         } while (last == 0);
271
272         *num_extents = tot_extents;
273
274         return 0;
275 }
276
277 #define EXT2_DIRECT     12
278
279 static int filefrag_fibmap(int fd, int blk_shift, int *num_extents,
280                            ext2fs_struct_stat *st,
281                            unsigned long numblocks, int is_ext2)
282 {
283         struct fiemap_extent    fm_ext;
284         unsigned long           i, last_block;
285         unsigned long long      logical;
286                                 /* Blocks per indirect block */
287         const long              bpib = st->st_blksize / 4;
288         int                     count;
289
290         if (force_extent) {
291                 memset(&fm_ext, 0, sizeof(fm_ext));
292                 fm_ext.fe_flags = FIEMAP_EXTENT_MERGED;
293         }
294
295         if (sync_file)
296                 fsync(fd);
297
298         for (i = 0, logical = 0, *num_extents = 0, count = last_block = 0;
299              i < numblocks;
300              i++, logical += st->st_blksize) {
301                 unsigned long block = 0;
302                 int rc;
303
304                 if (is_ext2 && last_block) {
305                         if (((i - EXT2_DIRECT) % bpib) == 0)
306                                 last_block++;
307                         if (((i - EXT2_DIRECT - bpib) % (bpib * bpib)) == 0)
308                                 last_block++;
309                         if (((i - EXT2_DIRECT - bpib - bpib * bpib) %
310                              (((unsigned long long)bpib) * bpib * bpib)) == 0)
311                                 last_block++;
312                 }
313                 rc = get_bmap(fd, i, &block);
314                 if (rc < 0)
315                         return rc;
316                 if (block == 0)
317                         continue;
318                 if (*num_extents == 0) {
319                         (*num_extents)++;
320                         if (force_extent) {
321                                 print_extent_header();
322                                 fm_ext.fe_physical = block * st->st_blksize;
323                         }
324                 }
325                 count++;
326                 if (force_extent && last_block != 0 &&
327                     (block != last_block + 1 ||
328                      fm_ext.fe_logical + fm_ext.fe_length != logical)) {
329                         print_extent_info(&fm_ext, *num_extents - 1,
330                                           (last_block + 1) * st->st_blksize,
331                                           blk_shift, st);
332                         fm_ext.fe_length = 0;
333                         (*num_extents)++;
334                 } else if (last_block && (block != last_block + 1)) {
335                         if (verbose)
336                                 printf("Discontinuity: Block %ld is at %lu (was "
337                                        "%lu)\n", i, block, last_block + 1);
338                         fm_ext.fe_length = 0;
339                         (*num_extents)++;
340                 }
341                 fm_ext.fe_logical = logical;
342                 fm_ext.fe_physical = block * st->st_blksize;
343                 fm_ext.fe_length += st->st_blksize;
344                 last_block = block;
345         }
346
347         if (force_extent)
348                 print_extent_info(&fm_ext, *num_extents - 1,
349                                   last_block * st->st_blksize, blk_shift, st);
350
351         return count;
352 }
353
354 static int frag_report(const char *filename)
355 {
356         static struct statfs fsinfo;
357         static unsigned int blksize;
358         ext2fs_struct_stat st;
359         int             blk_shift;
360         long            fd;
361         unsigned long long      numblocks;
362         int             data_blocks_per_cyl = 1;
363         int             num_extents = 1, expected = ~0;
364         int             is_ext2 = 0;
365         static dev_t    last_device;
366         int             width;
367         int             rc = 0;
368
369 #if defined(HAVE_OPEN64) && !defined(__OSX_AVAILABLE_BUT_DEPRECATED)
370         fd = open64(filename, O_RDONLY);
371 #else
372         fd = open(filename, O_RDONLY);
373 #endif
374         if (fd < 0) {
375                 rc = -errno;
376                 perror("open");
377                 return rc;
378         }
379
380 #if defined(HAVE_FSTAT64) && !defined(__OSX_AVAILABLE_BUT_DEPRECATED)
381         if (fstat64(fd, &st) < 0) {
382 #else
383         if (fstat(fd, &st) < 0) {
384 #endif
385                 rc = -errno;
386                 perror("stat");
387                 goto out_close;
388         }
389
390         if (last_device != st.st_dev) {
391                 if (fstatfs(fd, &fsinfo) < 0) {
392                         rc = -errno;
393                         perror("fstatfs");
394                         goto out_close;
395                 }
396                 if (ioctl(fd, FIGETBSZ, &blksize) < 0)
397                         blksize = fsinfo.f_bsize;
398                 if (verbose)
399                         printf("Filesystem type is: %lx\n",
400                                (unsigned long)fsinfo.f_type);
401         }
402         st.st_blksize = blksize;
403         if (fsinfo.f_type == 0xef51 || fsinfo.f_type == 0xef52 ||
404             fsinfo.f_type == 0xef53) {
405                 unsigned int    flags;
406
407                 if (ioctl(fd, EXT3_IOC_GETFLAGS, &flags) == 0 &&
408                     !(flags & EXT4_EXTENTS_FL))
409                         is_ext2 = 1;
410         }
411
412         if (is_ext2) {
413                 long cylgroups = div_ceil(fsinfo.f_blocks, blksize * 8);
414
415                 if (verbose && last_device != st.st_dev)
416                         printf("Filesystem cylinder groups approximately %ld\n",
417                                cylgroups);
418
419                 data_blocks_per_cyl = blksize * 8 -
420                                         (fsinfo.f_files / 8 / cylgroups) - 3;
421         }
422         last_device = st.st_dev;
423
424         width = int_log10(fsinfo.f_blocks);
425         if (width > physical_width)
426                 physical_width = width;
427
428         numblocks = (st.st_size + blksize - 1) / blksize;
429         if (blocksize != 0)
430                 blk_shift = int_log2(blocksize);
431         else
432                 blk_shift = int_log2(blksize);
433
434         width = int_log10(numblocks);
435         if (width > logical_width)
436                 logical_width = width;
437         if (verbose)
438                 printf("File size of %s is %llu (%llu block%s of %d bytes)\n",
439                        filename, (unsigned long long)st.st_size,
440                        numblocks * blksize >> blk_shift,
441                        numblocks == 1 ? "" : "s", 1 << blk_shift);
442
443         if (!force_bmap) {
444                 rc = filefrag_fiemap(fd, blk_shift, &num_extents, &st);
445                 expected = 0;
446         }
447
448         if (force_bmap || rc < 0) { /* FIEMAP failed, try FIBMAP instead */
449                 expected = filefrag_fibmap(fd, blk_shift, &num_extents,
450                                            &st, numblocks, is_ext2);
451                 if (expected < 0) {
452                         if (expected == -EINVAL || expected == -ENOTTY) {
453                                 fprintf(stderr, "%s: FIBMAP unsupported\n",
454                                         filename);
455                         } else if (expected == -EPERM) {
456                                 fprintf(stderr,
457                                         "%s: FIBMAP requires root privileges\n",
458                                         filename);
459                         } else {
460                                 fprintf(stderr, "%s: FIBMAP error: %s",
461                                         filename, strerror(expected));
462                         }
463                         rc = expected;
464                         goto out_close;
465                 } else {
466                         rc = 0;
467                 }
468                 expected = expected / data_blocks_per_cyl + 1;
469         }
470
471         if (num_extents == 1)
472                 printf("%s: 1 extent found", filename);
473         else
474                 printf("%s: %d extents found", filename, num_extents);
475         /* count, and thus expected, only set for indirect FIBMAP'd files */
476         if (is_ext2 && expected && expected < num_extents)
477                 printf(", perfection would be %d extent%s\n", expected,
478                         (expected > 1) ? "s" : "");
479         else
480                 fputc('\n', stdout);
481 out_close:
482         close(fd);
483
484         return rc;
485 }
486
487 static void usage(const char *progname)
488 {
489         fprintf(stderr, "Usage: %s [-b{blocksize}] [-BeklsvxX] file ...\n",
490                 progname);
491         exit(1);
492 }
493
494 int main(int argc, char**argv)
495 {
496         char **cpp;
497         int rc = 0, c;
498
499         while ((c = getopt(argc, argv, "Bb::eksvxX")) != EOF) {
500                 switch (c) {
501                 case 'B':
502                         force_bmap++;
503                         break;
504                 case 'b':
505                         if (optarg) {
506                                 char *end;
507                                 blocksize = strtoul(optarg, &end, 0);
508                                 if (end) {
509                                         switch (end[0]) {
510                                         case 'g':
511                                         case 'G':
512                                                 blocksize *= 1024;
513                                                 /* no break */
514                                         case 'm':
515                                         case 'M':
516                                                 blocksize *= 1024;
517                                                 /* no break */
518                                         case 'k':
519                                         case 'K':
520                                                 blocksize *= 1024;
521                                                 break;
522                                         default:
523                                                 break;
524                                         }
525                                 }
526                         } else { /* Allow -b without argument for compat. Remove
527                                   * this eventually so "-b {blocksize}" works */
528                                 fprintf(stderr, "%s: -b needs a blocksize "
529                                         "option, assuming 1024-byte blocks.\n",
530                                         argv[0]);
531                                 blocksize = 1024;
532                         }
533                         break;
534                 case 'e':
535                         force_extent++;
536                         if (!verbose)
537                                 verbose++;
538                         break;
539                 case 'k':
540                         blocksize = 1024;
541                         break;
542                 case 's':
543                         sync_file++;
544                         break;
545                 case 'v':
546                         verbose++;
547                         break;
548                 case 'x':
549                         xattr_map++;
550                         break;
551                 case 'X':
552                         ext_fmt = hex_fmt;
553                         break;
554                 default:
555                         usage(argv[0]);
556                         break;
557                 }
558         }
559
560         if (optind == argc)
561                 usage(argv[0]);
562
563         for (cpp = argv + optind; *cpp != '\0'; cpp++) {
564                 int rc2 = frag_report(*cpp);
565
566                 if (rc2 < 0 && rc == 0)
567                         rc = rc2;
568         }
569
570         return -rc;
571 }
572 #endif