Whamcloud - gitweb
debugfs: add filefrag command
[tools/e2fsprogs.git] / debugfs / debugfs.8.in
1 .\" -*- nroff -*-
2 .\" Copyright 1993, 1994, 1995 by Theodore Ts'o.  All Rights Reserved.
3 .\" This file may be copied under the terms of the GNU Public License.
4 .\" 
5 .TH DEBUGFS 8 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
6 .SH NAME
7 debugfs \- ext2/ext3/ext4 file system debugger
8 .SH SYNOPSIS
9 .B debugfs
10 [
11 .B \-DVwci
12 ]
13 [
14 .B \-b
15 blocksize
16 ]
17 [
18 .B \-s
19 superblock
20 ]
21 [
22 .B \-f 
23 cmd_file
24 ]
25 [
26 .B \-R
27 request
28 ]
29 [
30 .B \-d
31 data_source_device
32 ]
33 [
34 device
35 ]
36 .SH DESCRIPTION
37 The 
38 .B debugfs 
39 program is an interactive file system debugger. It can be used to
40 examine and change the state of an ext2, ext3, or ext4 file system.
41 .br
42 .I device
43 is the special file corresponding to the device containing the
44 file system (e.g /dev/hdXX).
45 .SH OPTIONS
46 .TP
47 .I \-w
48 Specifies that the file system should be opened in read-write mode.
49 Without this option, the file system is opened in read-only mode.
50 .TP
51 .I \-c
52 Specifies that the file system should be opened in catastrophic mode, in
53 which the inode and group bitmaps are not read initially.  This can be
54 useful for filesystems with significant corruption, but because of this,
55 catastrophic mode forces the filesystem to be opened read-only.
56 .TP
57 .I \-i
58 Specifies that 
59 .I device
60 represents an ext2 image file created by the
61 .B e2image
62 program.  Since the ext2 image file only contains the superblock, block
63 group descriptor, block and inode allocation bitmaps, and 
64 the inode table, many
65 .B debugfs
66 commands will not function properly.  
67 .B Warning:
68 no safety checks are in place, and 
69 .B debugfs 
70 may fail in interesting ways if commands such as
71 .IR ls ", " dump ", " 
72 etc. are tried without specifying the 
73 .I data_source_device
74 using the 
75 .I \-d
76 option.
77 .B debugfs 
78 is a debugging tool.  It has rough edges!
79 .TP
80 .I -d data_source_device
81 Used with the 
82 .I \-i
83 option, specifies that
84 .I data_source_device
85 should be used when reading blocks not found in the ext2 image file.
86 This includes data, directory, and indirect blocks.
87 .TP
88 .I -b blocksize
89 Forces the use of the given block size for the file system, rather than
90 detecting the correct block size as normal.
91 .TP
92 .I -s superblock
93 Causes the file system superblock to be read from the given block
94 number, instead of using the primary superblock (located at an offset of
95 1024 bytes from the beginning of the filesystem).  If you specify the
96 .I -s
97 option, you must also provide the blocksize of the filesystem via the
98 .I -b
99 option.
100 .TP
101 .I -f cmd_file
102 Causes 
103 .B debugfs
104 to read in commands from 
105 .IR cmd_file , 
106 and execute them.  When 
107 .B debugfs
108 is finished executing those commands, it will exit.
109 .TP
110 .I -D
111 Causes
112 .B debugfs
113 to open the device using Direct I/O, bypassing the buffer cache.  Note
114 that some Linux devices, notably device mapper as of this writing, do
115 not support Direct I/O.
116 .TP
117 .I -R request
118 Causes 
119 .B debugfs
120 to execute the single command 
121 .IR request ,
122 and then exit.
123 .TP
124 .I -V
125 print the version number of 
126 .B debugfs
127 and exit.
128 .SH SPECIFYING FILES
129 Many
130 .B debugfs
131 commands take a
132 .I filespec
133 as an argument to specify an inode (as opposed to a pathname) 
134 in the filesystem which is currently opened by 
135 .BR debugfs . 
136 The
137 .I filespec
138 argument may be specified in two forms.  The first form is an inode 
139 number surrounded by angle brackets, e.g., 
140 .IR <2> .
141 The second form is a pathname; if the pathname is prefixed by a forward slash
142 ('/'), then it is interpreted relative to the root of the filesystem 
143 which is currently opened by 
144 .BR debugfs .
145 If not, the pathname is 
146 interpreted relative to the current working directory as maintained by 
147 .BR debugfs .  
148 This may be modified by using the 
149 .B debugfs
150 command
151 .IR cd .
152 .\" 
153 .\"
154 .\"
155 .SH COMMANDS
156 This is a list of the commands which 
157 .B debugfs
158 supports.
159 .TP
160 .I blocks filespace
161 Print the blocks used by the inode
162 .I filespec
163 to stdout.
164 .TP
165 .I bmap filespec logical_block
166 Print the physical block number corresponding to the logical block number
167 .I logical_block
168 in the inode
169 .IR filespec .
170 .TP
171 .I cat filespec
172 Dump the contents of the inode 
173 .I filespec
174 to stdout.
175 .TP
176 .I cd filespec
177 Change the current working directory to 
178 .IR filespec .
179 .TP
180 .I chroot filespec
181 Change the root directory to be the directory 
182 .IR filespec .
183 .TP
184 .I close [-a]
185 Close the currently open file system.  If the 
186 .I -a
187 option is specified, write out any changes to the superblock and block
188 group descriptors to all of the backup superblocks, not just to the
189 master superblock.
190 .TP
191 .I clri file
192 Clear the contents of the inode 
193 .IR file .
194 .TP
195 .I dirsearch filespec filename
196 Search the directory
197 .I filespec
198 for
199 .IR filename .
200 .TP
201 .I dump [-p] filespec out_file
202 Dump the contents of the inode 
203 .I filespec
204 to the output file 
205 .IR out_file .  
206 If the 
207 .I -p 
208 option is given set the owner, group and permissions information on 
209 .I out_file 
210 to match 
211 .IR filespec .
212 .TP
213 .I dump_mmp
214 Display the multiple-mount protection (mmp) field values.
215 .TP
216 .I dx_hash [-h hash_alg] [-s hash_seed] filename
217 Calculate the directory hash of
218 .IR filename .
219 The hash algorithm specified with
220 .I -h
221 may be "legacy" "half_md4" or "tea".
222 The hash seed specified with
223 .I -s
224 must be in UUID format.
225 .TP
226 .I dump_extents [-n] [-l] filespec
227 Dump the the extent tree of the inode
228 .IR filespec .
229 The 
230 .I -n
231 flag will cause
232 .I dump_extents
233 to only display the interior nodes in the extent tree.   The
234 .I  -l
235 flag cause
236 .I dump_extents
237 to only display the leaf nodes in the extent tree.
238 .IP
239 (Please note that the length and range of blocks for the last extent in
240 an interior node is an estimate by the extents library functions, and is
241 not stored in filesystem data structures.   Hence, the values displayed
242 may not necessarily by accurate and does not indicate a problem or 
243 corruption in the file system.)
244 .TP
245 .I expand_dir filespec
246 Expand the directory
247 .IR filespec .
248 .TP
249 .I feature [fs_feature] [-fs_feature] ...
250 Set or clear various filesystem features in the superblock.  After setting
251 or clearing any filesystem features that were requested, print the current
252 state of the filesystem feature set.
253 .TP
254 .I filefrag [-dvr] filespec
255 Print the number of contiguous extents in
256 .IR filespec .
257 If
258 .I filespec
259 is a directory and the
260 .I -d
261 option is not specified,
262 .I filefrag
263 will print the number of contiguous extents for each file in
264 the directory.  The
265 .I -v
266 option will cause
267 .I filefrag
268 print a tabular listing of the contiguous extents in the
269 file.  The
270 .I -r
271 option will cause
272 .I filefrag
273 to do a recursive listing of the directory.
274 .TP
275 .I find_free_block [count [goal]]
276 Find the first 
277 .I count
278 free blocks, starting from
279 .I goal
280 and allocate it.
281 .TP
282 .I find_free_inode [dir [mode]]
283 Find a free inode and allocate it.  If present, 
284 .I dir
285 specifies the inode number of the directory 
286 which the inode is to be located.  The second 
287 optional argument
288 .I mode
289 specifies the permissions of the new inode.  (If the directory bit is set
290 on the mode, the allocation routine will function differently.)
291 .TP
292 .I freeb block [count]
293 Mark the block number
294 .I block
295 as not allocated.
296 If the optional argument 
297 .I count 
298 is present, then 
299 .I count
300 blocks starting at block number
301 .I block
302 will be marked as not allocated.
303 .TP
304 .I freefrag [-c chunk_kb ]
305 Report free space fragmentation on the currently open file system.
306 If the
307 .I \-c
308 option is specified then the filefrag command will print how many free
309 chunks of size
310 .I chunk_kb
311 can be found in the file system.  The chunk size must be a power of two
312 and be larger than the file system block size.
313 .TP
314 .I freei filespec
315 Free the inode specified by 
316 .IR filespec .
317 .TP
318 .I help
319 Print a list of commands understood by 
320 .BR debugfs .
321 .TP
322 .I htree_dump filespec
323 Dump the hash-indexed directory
324 .IR filespec ,
325 showing its tree structure.
326 .TP
327 .I icheck block ...
328 Print a listing of the inodes which use the one or more blocks specified
329 on the command line.
330 .TP
331 .I imap filespec
332 Print the location of the inode data structure (in the inode table) 
333 of the inode
334 .IR filespec .
335 .TP
336 .I init_filesys device blocksize
337 Create an ext2 file system on
338 .I device
339 with device size
340 .IR blocksize .
341 Note that this does not fully initialize all of the data structures; 
342 to do this, use the 
343 .BR mke2fs (8)
344 program.  This is just a call to the low-level library, which sets up
345 the superblock and block descriptors.
346 .TP
347 .I kill_file filespec
348 Deallocate the inode 
349 .I filespec
350 and its blocks.  Note that this does not remove any directory
351 entries (if any) to this inode.  See the 
352 .BR rm (1)
353 command if you wish to unlink a file.
354 .TP
355 .I lcd directory
356 Change the current working directory of the
357 .B debugfs
358 process to
359 .I directory
360 on the native filesystem.
361 .TP
362 .I ln filespec dest_file
363 Create a link named 
364 .I dest_file
365 which is a link to 
366 .IR filespec .
367 Note this does not adjust the inode reference counts.
368 .TP
369 .I logdump [-acs] [-b<block>] [-i<filespec>] [-f<journal_file>] [output_file]
370 Dump the contents of the ext3 journal.  By default, the journal inode as
371 specified in the superblock.  However, this can be overridden with the 
372 .I \-i
373 option, which uses an inode specifier to specify the journal to be
374 used.  A file containing journal data can be specified using the
375 .I \-f
376 option.   Finally, the 
377 .I \-s
378 option utilizes the backup information in the superblock to locate the
379 journal.
380 .IP
381 The 
382 .I \-a
383 option causes the 
384 .I logdump
385 program to print the contents of all of the descriptor blocks.
386 The 
387 .I \-b
388 option causes 
389 .I logdump
390 to print all journal records that are refer to the specified block. 
391 The 
392 .I \-c
393 option will print out the contents of all of the data blocks selected by
394 the 
395 .I \-a
396 and 
397 .I \-b
398 options.
399 .TP
400 .I ls [-l] [-d] [-p] filespec
401 Print a listing of the files in the directory
402 .IR filespec .
403 The 
404 .I \-l
405 flag will list files using a more verbose format.
406 The
407 .I \-d
408 flag will list deleted entries in the directory.
409 The 
410 .I \-p
411 flag will list the files in a format which is more easily parsable by
412 scripts, as well as making it more clear when there are spaces or other
413 non-printing characters at the end of filenames.
414 .TP
415 .I modify_inode filespec
416 Modify the contents of the inode structure in the inode
417 .IR filespec .
418 .TP
419 .I mkdir filespec
420 Make a directory.
421 .TP
422 .I mknod filespec [p|[[c|b] major minor]]
423 Create a special device file (a named pipe, character or block device).
424 If a character or block device is to be made, the 
425 .I major
426 and
427 .I minor
428 device numbers must be specified.
429 .TP
430 .I ncheck inode_num ...
431 Take the requested list of inode numbers, and print a listing of pathnames
432 to those inodes.
433 .TP
434 .I open [-w] [-e] [-f] [-i] [-c] [-D] [-b blocksize] [-s superblock] device
435 Open a filesystem for editing.  The 
436 .I -f 
437 flag forces the filesystem to be opened even if there are some unknown 
438 or incompatible filesystem features which would normally 
439 prevent the filesystem from being opened.  The
440 .I -e
441 flag causes the filesystem to be opened in exclusive mode.  The
442 .IR -b ", " -c ", " -i ", " -s ", " -w ", and " -D
443 options behave the same as the command-line options to 
444 .BR debugfs .
445 .TP
446 .I punch filespec start_blk [end_blk]
447 Delete the blocks in the inode ranging from
448 .I start_blk
449 to
450 .IR end_blk .
451 If
452 .I end_blk
453 is omitted then this command will function as a truncate command; that
454 is, all of the blocks starting at
455 .I start_blk
456 through to the end of the file will be deallocated.
457 .TP
458 .I pwd
459 Print the current working directory.
460 .TP
461 .I quit
462 Quit
463 .B debugfs
464 .TP
465 .I rdump directory destination
466 Recursively dump
467 .I directory
468 and all its contents (including regular files, symbolic links, and other
469 directories) into the named
470 .I destination
471 which should be an existing directory on the native filesystem.
472 .TP
473 .I rm pathname
474 Unlink 
475 .IR pathname .
476 If this causes the inode pointed to by 
477 .I pathname
478 to have no other references, deallocate the file.  This command functions
479 as the unlink() system call.
480 .I 
481 .TP
482 .I rmdir filespec
483 Remove the directory
484 .IR filespec .
485 .TP
486 .I setb block [count]
487 Mark the block number
488 .I block
489 as allocated.
490 If the optional argument 
491 .I count 
492 is present, then 
493 .I count
494 blocks starting at block number
495 .I block
496 will be marked as allocated.
497 .TP
498 .I set_block_group bgnum field value
499 Modify the block group descriptor specified by
500 .I bgnum
501 so that the block group descriptor field
502 .I field
503 has value
504 .I value.
505 .TP
506 .I seti filespec
507 Mark inode 
508 .I filespec
509 as in use in the inode bitmap.
510 .TP
511 .I set_inode_field filespec field value
512 Modify the inode specified by 
513 .I filespec
514 so that the inode field
515 .I field
516 has value 
517 .I value.
518 The list of valid inode fields which can be set via this command 
519 can be displayed by using the command:
520 .B set_inode_field -l
521 .TP
522 .I set_mmp_value field value
523 Modify the multiple-mount protection (mmp) data so that the
524 mmp field
525 .I field
526 has value
527 .I value.
528 The list of valid mmp fields which can be set via this command
529 can be displayed by using the command:
530 .B set_mmp_value -l
531 .TP
532 .I set_super_value field value
533 Set the superblock field
534 .I field
535 to 
536 .I value.
537 The list of valid superblock fields which can be set via this command 
538 can be displayed by using the command:
539 .B set_super_value -l
540 .TP
541 .I show_super_stats [-h]
542 List the contents of the super block and the block group descriptors.  If the
543 .I -h
544 flag is given, only print out the superblock contents.
545 .TP
546 .I stat filespec
547 Display the contents of the inode structure of the inode
548 .IR filespec .
549 .TP
550 .I testb block [count]
551 Test if the block number
552 .I block
553 is marked as allocated in the block bitmap.
554 If the optional argument 
555 .I count 
556 is present, then 
557 .I count
558 blocks starting at block number
559 .I block
560 will be tested.
561 .TP
562 .I testi filespec
563 Test if the inode 
564 .I filespec
565 is marked as allocated in the inode bitmap.
566 .TP
567 .I undel <inode num> [pathname]
568 Undelete the specified inode number (which must be surrounded by angle
569 brackets) so that it and its blocks are marked in use, and optionally
570 link the recovered inode to the specified pathname.  The 
571 .B e2fsck
572 command should always be run after using the 
573 .B undel
574 command to recover deleted files.
575 .IP
576 Note that if you are recovering a large number of deleted files, linking
577 the inode to a directory may require the directory to be expanded, which
578 could allocate a block that had been used by one of the
579 yet-to-be-undeleted files.  So it is safer to undelete all of the 
580 inodes without specifying a destination pathname, and then in a separate
581 pass, use the debugfs
582 .B link
583 command to link the inode to the destination pathname, or use 
584 .B e2fsck
585 to check the filesystem and link all of the recovered inodes to the
586 lost+found directory.
587 .TP
588 .I unlink pathname
589 Remove the link specified by 
590 .I pathname 
591 to an inode.  Note this does not adjust the inode reference counts.
592 .TP
593 .I write source_file out_file
594 Create a file in the filesystem named
595 .IR out_file ,
596 and copy the contents of
597 .I source_file
598 into the destination file.
599 .SH ENVIRONMENT VARIABLES
600 .TP
601 .B DEBUGFS_PAGER, PAGER
602 The
603 .B debugfs
604 program always pipes the output of the some commands through a
605 pager program.  These commands include: 
606 .IR show_super_stats ,
607 .IR list_directory ,
608 .IR show_inode_info ,
609 .IR list_deleted_inodes ,
610 and
611 .IR htree_dump .
612 The specific pager can explicitly specified by the
613 .B DEBUGFS_PAGER
614 environment variable, and if it is not set, by the
615 .B PAGER
616 environment variable.  
617 .IP
618 Note that since a pager is always used, the 
619 .BR less (1)
620 pager is not particularly appropriate, since it clears the screen before
621 displaying the output of the command and clears the output the screen
622 when the pager is exited.  Many users prefer to use the 
623 .BR less (1)
624 pager for most purposes, which is why the 
625 .B DEBUGFS_PAGER 
626 environment variable is available to override the more general
627 .B PAGER
628 environment variable.
629 .SH AUTHOR
630 .B debugfs
631 was written by Theodore Ts'o <tytso@mit.edu>.
632 .SH SEE ALSO
633 .BR dumpe2fs (8),
634 .BR tune2fs (8),
635 .BR e2fsck (8),
636 .BR mke2fs (8)