blob: 0719d4cef5b0c2b8a04b5c09773b4105372fc847 [file] [log] [blame]
Theodore Ts'o96424132003-12-17 10:13:41 -05001/*
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
Theodore Ts'od605ba12004-02-03 19:18:03 -050012#ifndef __linux__
Matthias Andreeb34cbdd2003-12-28 18:21:26 +010013#include <stdio.h>
14#include <stdlib.h>
15
16int main(void) {
17 fputs("This program is only supported on Linux!\n", stderr);
18 exit(EXIT_FAILURE);
19}
20#else
Theodore Ts'o96424132003-12-17 10:13:41 -050021#define _LARGEFILE64_SOURCE
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <unistd.h>
26#include <string.h>
27#include <time.h>
28#include <fcntl.h>
29#include <errno.h>
Theodore Ts'o6b394c12004-02-26 21:08:06 -050030#ifdef HAVE_GETOPT_H
31#include <getopt.h>
32#else
33extern char *optarg;
34extern int optind;
35#endif
Theodore Ts'o96424132003-12-17 10:13:41 -050036#include <sys/types.h>
37#include <sys/stat.h>
38#include <sys/vfs.h>
Matthias Andreeaa3a2fe2003-12-21 00:52:48 +010039#include <sys/ioctl.h>
Theodore Ts'o96424132003-12-17 10:13:41 -050040#include <linux/fd.h>
41
42int verbose = 0;
43
44#define FIBMAP _IO(0x00,1) /* bmap access */
45#define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
46
Andreas Dilger8fe81a32006-08-05 18:50:22 -040047#define EXT4_EXTENTS_FL 0x00080000 /* Inode uses extents */
Theodore Ts'o3d16b3f2005-03-18 20:37:45 -050048#define EXT3_IOC_GETFLAGS _IOR('f', 1, long)
49
Theodore Ts'o96424132003-12-17 10:13:41 -050050static unsigned long get_bmap(int fd, unsigned long block)
51{
52 int ret;
Theodore Ts'o8198e792005-05-20 23:10:35 -040053 unsigned int b;
Theodore Ts'o96424132003-12-17 10:13:41 -050054
55 b = block;
Theodore Ts'o8198e792005-05-20 23:10:35 -040056 ret = ioctl(fd, FIBMAP, &b); /* FIBMAP takes a pointer to an integer */
Theodore Ts'o96424132003-12-17 10:13:41 -050057 if (ret < 0) {
58 if (errno == EPERM) {
59 fprintf(stderr, "No permission to use FIBMAP ioctl; must have root privileges\n");
60 exit(1);
61 }
62 perror("FIBMAP");
63 }
64 return b;
65}
66
67#define EXT2_DIRECT 12
68
Theodore Ts'o6b394c12004-02-26 21:08:06 -050069static void frag_report(const char *filename)
Theodore Ts'o96424132003-12-17 10:13:41 -050070{
71 struct statfs fsinfo;
Theodore Ts'o9c07dc02006-05-29 11:06:16 -040072#ifdef HAVE_FSTAT64
Theodore Ts'o96424132003-12-17 10:13:41 -050073 struct stat64 fileinfo;
Theodore Ts'o9c07dc02006-05-29 11:06:16 -040074#else
75 struct stat fileinfo;
76#endif
Theodore Ts'o8198e792005-05-20 23:10:35 -040077 int bs;
Theodore Ts'o40198dd2006-04-22 04:49:09 -040078 long i, fd;
79 unsigned long block, last_block = 0, numblocks;
Theodore Ts'o96424132003-12-17 10:13:41 -050080 long bpib; /* Blocks per indirect block */
81 long cylgroups;
82 int discont = 0, expected;
83 int is_ext2 = 0;
Theodore Ts'o3d16b3f2005-03-18 20:37:45 -050084 unsigned int flags;
Theodore Ts'o96424132003-12-17 10:13:41 -050085
86 if (statfs(filename, &fsinfo) < 0) {
87 perror("statfs");
88 return;
89 }
Theodore Ts'o9c07dc02006-05-29 11:06:16 -040090#ifdef HAVE_FSTAT64
Theodore Ts'o96424132003-12-17 10:13:41 -050091 if (stat64(filename, &fileinfo) < 0) {
Theodore Ts'o9c07dc02006-05-29 11:06:16 -040092#else
93 if (stat(filename, &fileinfo) < 0) {
94#endif
Theodore Ts'o96424132003-12-17 10:13:41 -050095 perror("stat");
96 return;
97 }
98 if (!S_ISREG(fileinfo.st_mode)) {
99 printf("%s: Not a regular file\n", filename);
100 return;
101 }
102 if ((fsinfo.f_type == 0xef51) || (fsinfo.f_type == 0xef52) ||
103 (fsinfo.f_type == 0xef53))
104 is_ext2++;
105 if (verbose) {
Matthias Andreeaa3a2fe2003-12-21 00:52:48 +0100106 printf("Filesystem type is: %x\n", fsinfo.f_type);
Theodore Ts'o96424132003-12-17 10:13:41 -0500107 }
108 cylgroups = (fsinfo.f_blocks + fsinfo.f_bsize*8-1) / fsinfo.f_bsize*8;
109 if (verbose) {
110 printf("Filesystem cylinder groups is approximately %ld\n",
111 cylgroups);
112 }
Theodore Ts'o9c07dc02006-05-29 11:06:16 -0400113#ifdef HAVE_OPEN64
114 fd = open64(filename, O_RDONLY);
115#else
116 fd = open(filename, O_RDONLY);
117#endif
Theodore Ts'o96424132003-12-17 10:13:41 -0500118 if (fd < 0) {
119 perror("open");
120 return;
121 }
Theodore Ts'o8198e792005-05-20 23:10:35 -0400122 if (ioctl(fd, FIGETBSZ, &bs) < 0) { /* FIGETBSZ takes an int */
Theodore Ts'o96424132003-12-17 10:13:41 -0500123 perror("FIGETBSZ");
Theodore Ts'o92904042005-01-17 14:32:20 -0500124 close(fd);
Theodore Ts'o96424132003-12-17 10:13:41 -0500125 return;
126 }
Theodore Ts'oa4897d42005-04-09 01:24:04 -0400127 if (ioctl(fd, EXT3_IOC_GETFLAGS, &flags) < 0)
128 flags = 0;
Andreas Dilger8fe81a32006-08-05 18:50:22 -0400129 if (flags & EXT4_EXTENTS_FL) {
Theodore Ts'o3d16b3f2005-03-18 20:37:45 -0500130 printf("File is stored in extents format\n");
131 is_ext2 = 0;
132 }
Theodore Ts'o96424132003-12-17 10:13:41 -0500133 if (verbose)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500134 printf("Blocksize of file %s is %d\n", filename, bs);
Theodore Ts'o96424132003-12-17 10:13:41 -0500135 bpib = bs / 4;
136 numblocks = (fileinfo.st_size + (bs-1)) / bs;
Theodore Ts'o7f1faaa2005-02-04 09:50:41 -0500137 if (verbose) {
Matthias Andreeaa3a2fe2003-12-21 00:52:48 +0100138 printf("File size of %s is %lld (%ld blocks)\n", filename,
Theodore Ts'o96424132003-12-17 10:13:41 -0500139 (long long) fileinfo.st_size, numblocks);
Theodore Ts'o40198dd2006-04-22 04:49:09 -0400140 printf("First block: %lu\nLast block: %lu\n",
Theodore Ts'o7f1faaa2005-02-04 09:50:41 -0500141 get_bmap(fd, 0), get_bmap(fd, numblocks - 1));
142 }
Theodore Ts'o96424132003-12-17 10:13:41 -0500143 for (i=0; i < numblocks; i++) {
Theodore Ts'obfd97622005-05-05 22:55:20 -0400144 if (is_ext2 && last_block) {
Theodore Ts'o96424132003-12-17 10:13:41 -0500145 if (((i-EXT2_DIRECT) % bpib) == 0)
146 last_block++;
147 if (((i-EXT2_DIRECT-bpib) % (bpib*bpib)) == 0)
148 last_block++;
149 if (((i-EXT2_DIRECT-bpib-bpib*bpib) % (bpib*bpib*bpib)) == 0)
150 last_block++;
151 }
152 block = get_bmap(fd, i);
Theodore Ts'o3d16b3f2005-03-18 20:37:45 -0500153 if (block == 0)
154 continue;
155 if (last_block && (block != last_block +1) ) {
Theodore Ts'o96424132003-12-17 10:13:41 -0500156 if (verbose)
Theodore Ts'o40198dd2006-04-22 04:49:09 -0400157 printf("Discontinuity: Block %ld is at %lu (was %lu)\n",
Theodore Ts'o96424132003-12-17 10:13:41 -0500158 i, block, last_block);
159 discont++;
160 }
Theodore Ts'o3d16b3f2005-03-18 20:37:45 -0500161 last_block = block;
Theodore Ts'o96424132003-12-17 10:13:41 -0500162 }
163 if (discont==0)
164 printf("%s: 1 extent found", filename);
165 else
166 printf("%s: %d extents found", filename, discont+1);
167 expected = (numblocks/((bs*8)-(fsinfo.f_files/8/cylgroups)-3))+1;
168 if (is_ext2 && expected != discont+1)
169 printf(", perfection would be %d extent%s\n", expected,
170 (expected>1) ? "s" : "");
171 else
172 fputc('\n', stdout);
Theodore Ts'o92904042005-01-17 14:32:20 -0500173 close(fd);
Theodore Ts'o96424132003-12-17 10:13:41 -0500174}
175
Theodore Ts'o6b394c12004-02-26 21:08:06 -0500176static void usage(const char *progname)
Theodore Ts'o96424132003-12-17 10:13:41 -0500177{
178 fprintf(stderr, "Usage: %s [-v] file ...\n", progname);
179 exit(1);
180}
181
182int main(int argc, char**argv)
183{
184 char **cpp;
185 int c;
186
187 while ((c = getopt(argc, argv, "v")) != EOF)
188 switch (c) {
189 case 'v':
190 verbose++;
191 break;
192 default:
193 usage(argv[0]);
194 break;
195 }
196 if (optind == argc)
197 usage(argv[0]);
198 for (cpp=argv+optind; *cpp; cpp++) {
199 if (verbose)
200 printf("Checking %s\n", *cpp);
201 frag_report(*cpp);
202 }
203 return 0;
204}
Matthias Andreeb34cbdd2003-12-28 18:21:26 +0100205#endif