blob: 8b0965ecd6e3e9ebcd68e77b3ba43b7f53e2b270 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * debugfs.c --- a program which allows you to attach an ext2fs
3 * filesystem and play with it.
4 *
5 * Copyright (C) 1993 Theodore Ts'o. This file may be redistributed
6 * under the terms of the GNU Public License.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04007 *
Theodore Ts'o3839e651997-04-26 13:21:57 +00008 * Modifications by Robert Sanders <gt8134b@prism.gatech.edu>
9 */
10
11#include <stdio.h>
12#include <unistd.h>
13#include <stdlib.h>
14#include <ctype.h>
15#include <string.h>
16#include <time.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000017#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <getopt.h>
Theodore Ts'oefc6f622008-08-27 23:07:54 -040019#else
Theodore Ts'o50e1e101997-04-26 13:58:21 +000020extern int optind;
21extern char *optarg;
22#endif
Theodore Ts'o50e1e101997-04-26 13:58:21 +000023#ifdef HAVE_ERRNO_H
24#include <errno.h>
25#endif
26#include <fcntl.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000027#include <sys/types.h>
28#include <sys/stat.h>
29
30#include "et/com_err.h"
31#include "ss/ss.h"
32#include "debugfs.h"
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000033#include "uuid/uuid.h"
Theodore Ts'of68aa411999-10-26 14:20:22 +000034#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000035
Theodore Ts'oea822ee2005-03-20 18:03:58 -050036#include <ext2fs/ext2_ext_attr.h>
37
Theodore Ts'o818180c1998-06-27 05:11:14 +000038#include "../version.h"
Andreas Dilger03efde82008-08-23 21:42:46 -060039#include "jfs_user.h"
Theodore Ts'o818180c1998-06-27 05:11:14 +000040
Theodore Ts'o3839e651997-04-26 13:21:57 +000041extern ss_request_table debug_cmds;
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -040042ss_request_table *extra_cmds;
Theodore Ts'o2d328bb2008-03-17 23:17:13 -040043const char *debug_prog_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +000044
Theodore Ts'ob044c2e2001-01-11 15:26:39 +000045ext2_filsys current_fs = NULL;
46ext2_ino_t root, cwd;
Theodore Ts'o3839e651997-04-26 13:21:57 +000047
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000048static void open_filesystem(char *device, int open_flags, blk_t superblock,
Theodore Ts'oefc6f622008-08-27 23:07:54 -040049 blk_t blocksize, int catastrophic,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040050 char *data_filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +000051{
52 int retval;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040053 io_channel data_io = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000054
55 if (superblock != 0 && blocksize == 0) {
56 com_err(device, 0, "if you specify the superblock, you must also specify the block size");
57 current_fs = NULL;
58 return;
59 }
60
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040061 if (data_filename) {
62 if ((open_flags & EXT2_FLAG_IMAGE_FILE) == 0) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -040063 com_err(device, 0,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040064 "The -d option is only valid when reading an e2image file");
65 current_fs = NULL;
66 return;
67 }
68 retval = unix_io_manager->open(data_filename, 0, &data_io);
69 if (retval) {
70 com_err(data_filename, 0, "while opening data source");
71 current_fs = NULL;
72 return;
73 }
74 }
75
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000076 if (catastrophic && (open_flags & EXT2_FLAG_RW)) {
77 com_err(device, 0,
78 "opening read-only because of catastrophic mode");
79 open_flags &= ~EXT2_FLAG_RW;
80 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -040081
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000082 retval = ext2fs_open(device, open_flags, superblock, blocksize,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000083 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000084 if (retval) {
85 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000086 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000087 return;
88 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000089
90 if (catastrophic)
91 com_err(device, 0, "catastrophic mode - not reading inode or group bitmaps");
92 else {
93 retval = ext2fs_read_inode_bitmap(current_fs);
94 if (retval) {
95 com_err(device, retval, "while reading inode bitmap");
96 goto errout;
97 }
98 retval = ext2fs_read_block_bitmap(current_fs);
99 if (retval) {
100 com_err(device, retval, "while reading block bitmap");
101 goto errout;
102 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000103 }
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400104
105 if (data_io) {
106 retval = ext2fs_set_data_io(current_fs, data_io);
107 if (retval) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400108 com_err(device, retval,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400109 "while setting data source");
110 goto errout;
111 }
112 }
113
Theodore Ts'o3839e651997-04-26 13:21:57 +0000114 root = cwd = EXT2_ROOT_INO;
115 return;
116
117errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000118 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000119 if (retval)
120 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000121 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000122}
123
124void do_open_filesys(int argc, char **argv)
125{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500126 int c, err;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000127 int catastrophic = 0;
128 blk_t superblock = 0;
129 blk_t blocksize = 0;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -0500130 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ob0d17e02004-11-29 17:35:58 -0500131 char *data_filename = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400132
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400133 reset_getopt();
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500134 while ((c = getopt (argc, argv, "iwfecb:s:d:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000135 switch (c) {
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000136 case 'i':
137 open_flags |= EXT2_FLAG_IMAGE_FILE;
138 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000139 case 'w':
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000140 open_flags |= EXT2_FLAG_RW;
141 break;
142 case 'f':
143 open_flags |= EXT2_FLAG_FORCE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000144 break;
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500145 case 'e':
146 open_flags |= EXT2_FLAG_EXCLUSIVE;
147 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000148 case 'c':
149 catastrophic = 1;
150 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400151 case 'd':
152 data_filename = optarg;
153 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000154 case 'b':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500155 blocksize = parse_ulong(optarg, argv[0],
156 "block size", &err);
157 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000158 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000159 break;
160 case 's':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500161 superblock = parse_ulong(optarg, argv[0],
162 "superblock number", &err);
163 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000164 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000165 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000166 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500167 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000168 }
169 }
170 if (optind != argc-1) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500171 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000172 }
173 if (check_fs_not_open(argv[0]))
174 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000175 open_filesystem(argv[optind], open_flags,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400176 superblock, blocksize, catastrophic,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400177 data_filename);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500178 return;
179
180print_usage:
181 fprintf(stderr, "%s: Usage: open [-s superblock] [-b blocksize] "
182 "[-c] [-w] <device>\n", argv[0]);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000183}
184
185void do_lcd(int argc, char **argv)
186{
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500187 if (argc != 2) {
188 com_err(argv[0], 0, "Usage: %s %s", argv[0], "<native dir>");
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000189 return;
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500190 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000191
192 if (chdir(argv[1]) == -1) {
193 com_err(argv[0], errno,
194 "while trying to change native directory to %s",
195 argv[1]);
196 return;
197 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000198}
199
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000200static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000201{
202 int retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400203
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000204 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
205 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000206 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500207 com_err("ext2fs_write_inode_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000208 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000209 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
210 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500212 com_err("ext2fs_write_block_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000213 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000214 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000215 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500216 com_err("ext2fs_close", retval, 0);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000217 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000218 return;
219}
220
221void do_close_filesys(int argc, char **argv)
222{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500223 if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000224 return;
225 close_filesystem();
226}
227
228void do_init_filesys(int argc, char **argv)
229{
Theodore Ts'o3839e651997-04-26 13:21:57 +0000230 struct ext2_super_block param;
231 errcode_t retval;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500232 int err;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400233
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500234 if (common_args_process(argc, argv, 3, 3, "initialize",
235 "<device> <blocksize>", CHECK_FS_NOTOPEN))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000236 return;
237
238 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'ob38cd282002-05-11 22:13:20 -0400239 param.s_blocks_count = parse_ulong(argv[2], argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500240 "blocks count", &err);
241 if (err)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000242 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000243 retval = ext2fs_initialize(argv[1], 0, &param,
244 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000245 if (retval) {
246 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000247 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 return;
249 }
250 root = cwd = EXT2_ROOT_INO;
251 return;
252}
253
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000254static void print_features(struct ext2_super_block * s, FILE *f)
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000255{
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000256 int i, j, printed=0;
Theodore Ts'o092c3de2001-05-14 11:20:48 +0000257 __u32 *mask = &s->s_feature_compat, m;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000258
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000259 fputs("Filesystem features:", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000260 for (i=0; i <3; i++,mask++) {
261 for (j=0,m=1; j < 32; j++, m<<=1) {
262 if (*mask & m) {
263 fprintf(f, " %s", e2p_feature2string(i, m));
264 printed++;
265 }
266 }
267 }
268 if (printed == 0)
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000269 fputs("(none)", f);
270 fputs("\n", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000271}
272
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400273static void print_bg_opts(struct ext2_group_desc *gdp, int mask,
274 const char *str, int *first, FILE *f)
275{
276 if (gdp->bg_flags & mask) {
277 if (*first) {
278 fputs(" [", f);
279 *first = 0;
280 } else
281 fputs(", ", f);
282 fputs(str, f);
283 }
284}
285
Theodore Ts'o3839e651997-04-26 13:21:57 +0000286void do_show_super_stats(int argc, char *argv[])
287{
Theodore Ts'o54434922003-12-07 01:28:50 -0500288 dgrp_t i;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000289 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000290 struct ext2_group_desc *gdp;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000291 int c, header_only = 0;
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500292 int numdirs = 0, first, gdt_csum;
293
294 gdt_csum = EXT2_HAS_RO_COMPAT_FEATURE(current_fs->super,
295 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000296
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400297 reset_getopt();
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000298 while ((c = getopt (argc, argv, "h")) != EOF) {
299 switch (c) {
300 case 'h':
301 header_only++;
302 break;
303 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500304 goto print_usage;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000305 }
306 }
307 if (optind != argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500308 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000309 }
310 if (check_fs_open(argv[0]))
311 return;
312 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000313
314 list_super2(current_fs->super, out);
Theodore Ts'o34be9602002-07-15 16:56:41 -0400315 for (i=0; i < current_fs->group_desc_count; i++)
316 numdirs += current_fs->group_desc[i].bg_used_dirs_count;
317 fprintf(out, "Directories: %d\n", numdirs);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400318
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000319 if (header_only) {
320 close_pager(out);
321 return;
322 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400323
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000324 gdp = &current_fs->group_desc[0];
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400325 for (i = 0; i < current_fs->group_desc_count; i++, gdp++) {
Takashi Sato8deb80a2006-03-18 21:43:46 -0500326 fprintf(out, " Group %2d: block bitmap at %u, "
327 "inode bitmap at %u, "
328 "inode table at %u\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000329 " %d free %s, "
330 "%d free %s, "
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500331 "%d used %s%s",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000332 i, gdp->bg_block_bitmap,
333 gdp->bg_inode_bitmap, gdp->bg_inode_table,
334 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000335 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000336 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000337 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000338 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000339 gdp->bg_used_dirs_count != 1 ? "directories"
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500340 : "directory", gdt_csum ? ", " : "\n");
341 if (gdt_csum)
342 fprintf(out, "%d unused %s\n",
343 gdp->bg_itable_unused,
344 gdp->bg_itable_unused != 1 ? "inodes":"inode");
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400345 first = 1;
346 print_bg_opts(gdp, EXT2_BG_INODE_UNINIT, "Inode not init",
347 &first, out);
348 print_bg_opts(gdp, EXT2_BG_BLOCK_UNINIT, "Block not init",
349 &first, out);
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500350 if (gdt_csum) {
351 fprintf(out, "%sChecksum 0x%04x",
352 first ? " [":", ", gdp->bg_checksum);
353 first = 0;
354 }
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400355 if (!first)
356 fputs("]\n", out);
357 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000358 close_pager(out);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500359 return;
360print_usage:
361 fprintf(stderr, "%s: Usage: show_super [-h]\n", argv[0]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000362}
363
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400364void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -0500365 char **argv EXT2FS_ATTR((unused)))
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000366{
367 if (check_fs_open(argv[0]))
368 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000369 if (check_fs_read_write(argv[0]))
370 return;
371
372 if (argv[1] && !strcmp(argv[1], "-clean"))
373 current_fs->super->s_state |= EXT2_VALID_FS;
374 else
375 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000376 ext2fs_mark_super_dirty(current_fs);
377}
378
Theodore Ts'o3839e651997-04-26 13:21:57 +0000379struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700380 FILE *f;
381 e2_blkcnt_t total;
382 blk_t first_block, last_block;
383 e2_blkcnt_t first_bcnt, last_bcnt;
384 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000385};
386
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000387static void finish_range(struct list_blocks_struct *lb)
388{
389 if (lb->first_block == 0)
390 return;
391 if (lb->first)
392 lb->first = 0;
393 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000394 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000395 if (lb->first_block == lb->last_block)
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400396 fprintf(lb->f, "(%lld):%u",
397 (long long)lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000398 else
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400399 fprintf(lb->f, "(%lld-%lld):%u-%u",
400 (long long)lb->first_bcnt, (long long)lb->last_bcnt,
401 lb->first_block, lb->last_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000402 lb->first_block = 0;
403}
404
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400405static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
406 blk_t *blocknr, e2_blkcnt_t blockcnt,
Theodore Ts'o54434922003-12-07 01:28:50 -0500407 blk_t ref_block EXT2FS_ATTR((unused)),
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400408 int ref_offset EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -0500409 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000410{
411 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
412
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000413 lb->total++;
414 if (blockcnt >= 0) {
415 /*
416 * See if we can add on to the existing range (if it exists)
417 */
418 if (lb->first_block &&
419 (lb->last_block+1 == *blocknr) &&
420 (lb->last_bcnt+1 == blockcnt)) {
421 lb->last_block = *blocknr;
422 lb->last_bcnt = blockcnt;
423 return 0;
424 }
425 /*
426 * Start a new range.
427 */
428 finish_range(lb);
429 lb->first_block = lb->last_block = *blocknr;
430 lb->first_bcnt = lb->last_bcnt = blockcnt;
431 return 0;
432 }
433 /*
434 * Not a normal block. Always force a new range.
435 */
436 finish_range(lb);
437 if (lb->first)
438 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000439 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000440 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000441 if (blockcnt == -1)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500442 fprintf(lb->f, "(IND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000443 else if (blockcnt == -2)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500444 fprintf(lb->f, "(DIND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000445 else if (blockcnt == -3)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500446 fprintf(lb->f, "(TIND):%u", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000447 return 0;
448}
449
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500450static void dump_xattr_string(FILE *out, const char *str, int len)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500451{
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600452 int printable = 0;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500453 int i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400454
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600455 /* check: is string "printable enough?" */
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500456 for (i = 0; i < len; i++)
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600457 if (isprint(str[i]))
458 printable++;
459
460 if (printable <= len*7/8)
461 printable = 0;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500462
463 for (i = 0; i < len; i++)
464 if (printable)
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600465 fprintf(out, isprint(str[i]) ? "%c" : "\\%03o",
466 (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500467 else
Andreas Dilgerd047e072006-06-21 00:01:42 -0400468 fprintf(out, "%02x ", (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500469}
470
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400471static void internal_dump_inode_extra(FILE *out,
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400472 const char *prefix EXT2FS_ATTR((unused)),
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400473 ext2_ino_t inode_num EXT2FS_ATTR((unused)),
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500474 struct ext2_inode_large *inode)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500475{
476 struct ext2_ext_attr_entry *entry;
477 __u32 *magic;
478 char *start, *end;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500479 unsigned int storage_size;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500480
Takashi Sato8deb80a2006-03-18 21:43:46 -0500481 fprintf(out, "Size of extra inode fields: %u\n", inode->i_extra_isize);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500482 if (inode->i_extra_isize > EXT2_INODE_SIZE(current_fs->super) -
483 EXT2_GOOD_OLD_INODE_SIZE) {
484 fprintf(stderr, "invalid inode->i_extra_isize (%u)\n",
485 inode->i_extra_isize);
486 return;
487 }
488 storage_size = EXT2_INODE_SIZE(current_fs->super) -
489 EXT2_GOOD_OLD_INODE_SIZE -
490 inode->i_extra_isize;
491 magic = (__u32 *)((char *)inode + EXT2_GOOD_OLD_INODE_SIZE +
492 inode->i_extra_isize);
493 if (*magic == EXT2_EXT_ATTR_MAGIC) {
494 fprintf(out, "Extended attributes stored in inode body: \n");
495 end = (char *) inode + EXT2_INODE_SIZE(current_fs->super);
496 start = (char *) magic + sizeof(__u32);
497 entry = (struct ext2_ext_attr_entry *) start;
498 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
499 struct ext2_ext_attr_entry *next =
500 EXT2_EXT_ATTR_NEXT(entry);
501 if (entry->e_value_size > storage_size ||
502 (char *) next >= end) {
503 fprintf(out, "invalid EA entry in inode\n");
504 return;
505 }
506 fprintf(out, " ");
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400507 dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry),
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500508 entry->e_name_len);
509 fprintf(out, " = \"");
510 dump_xattr_string(out, start + entry->e_value_offs,
511 entry->e_value_size);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500512 fprintf(out, "\" (%u)\n", entry->e_value_size);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500513 entry = next;
514 }
515 }
516}
Theodore Ts'o3839e651997-04-26 13:21:57 +0000517
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000518static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000519{
520 struct list_blocks_struct lb;
521
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000522 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000523 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000524 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000525 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000526 lb.first = 1;
Theodore Ts'o43323be2008-02-07 14:37:17 -0500527 ext2fs_block_iterate2(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000528 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000529 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000530 if (lb.total)
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400531 fprintf(f, "\n%sTOTAL: %lld\n", prefix, (long long)lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000532 fprintf(f,"\n");
533}
534
535
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000536void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000537 ext2_ino_t inode_num, struct ext2_inode *inode,
538 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000539{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000540 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000541 char frag, fsize;
542 int os = current_fs->super->s_creator_os;
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400543 struct ext2_inode_large *large_inode;
544 int is_large_inode = 0;
545
546 if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
547 is_large_inode = 1;
548 large_inode = (struct ext2_inode_large *) inode;
549
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000550 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
551 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
552 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
553 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
554 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
555 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
556 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000557 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000558 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400559 fprintf(out, "%sMode: %04o Flags: 0x%x\n",
560 prefix, inode->i_mode & 0777, inode->i_flags);
561 if (is_large_inode && large_inode->i_extra_isize >= 24) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400562 fprintf(out, "%sGeneration: %u Version: 0x%08x:%08x\n",
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400563 prefix, inode->i_generation, large_inode->i_version_hi,
564 inode->osd1.linux1.l_i_version);
565 } else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400566 fprintf(out, "%sGeneration: %u Version: 0x%08x\n", prefix,
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400567 inode->i_generation, inode->osd1.linux1.l_i_version);
568 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000569 fprintf(out, "%sUser: %5d Group: %5d Size: ",
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400570 prefix, inode_uid(*inode), inode_gid(*inode));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700571 if (LINUX_S_ISREG(inode->i_mode)) {
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400572 unsigned long long i_size = (inode->i_size |
573 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700574
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400575 fprintf(out, "%llu\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700576 } else
577 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500578 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000579 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000580 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
581 prefix,
582 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
583 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000584 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000585 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
586 prefix,
587 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400588 if (os == EXT2_OS_LINUX)
Theodore Ts'o5d171192006-11-11 06:32:03 -0500589 fprintf(out, "%sLinks: %d Blockcount: %llu\n",
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400590 prefix, inode->i_links_count,
591 (((unsigned long long)
592 inode->osd2.linux2.l_i_blocks_hi << 32)) +
Theodore Ts'o5d171192006-11-11 06:32:03 -0500593 inode->i_blocks);
594 else
595 fprintf(out, "%sLinks: %d Blockcount: %u\n",
596 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000597 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000598 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000599 frag = inode->osd2.hurd2.h_i_frag;
600 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000601 break;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000602 default:
603 frag = fsize = 0;
604 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000605 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
606 prefix, inode->i_faddr, frag, fsize);
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400607 if (is_large_inode && large_inode->i_extra_isize >= 24) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400608 fprintf(out, "%s ctime: 0x%08x:%08x -- %s", prefix,
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400609 inode->i_ctime, large_inode->i_ctime_extra,
610 time_to_string(inode->i_ctime));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400611 fprintf(out, "%s atime: 0x%08x:%08x -- %s", prefix,
Theodore Ts'oa16031c2008-05-15 22:17:06 -0400612 inode->i_atime, large_inode->i_atime_extra,
613 time_to_string(inode->i_atime));
614 fprintf(out, "%s mtime: 0x%08x:%08x -- %s", prefix,
615 inode->i_mtime, large_inode->i_mtime_extra,
616 time_to_string(inode->i_mtime));
617 fprintf(out, "%scrtime: 0x%08x:%08x -- %s", prefix,
618 large_inode->i_crtime, large_inode->i_crtime_extra,
619 time_to_string(large_inode->i_crtime));
620 } else {
621 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
622 time_to_string(inode->i_ctime));
623 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
624 time_to_string(inode->i_atime));
625 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
626 time_to_string(inode->i_mtime));
627 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400628 if (inode->i_dtime)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000629 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
630 time_to_string(inode->i_dtime));
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500631 if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
632 internal_dump_inode_extra(out, prefix, inode_num,
633 (struct ext2_inode_large *) inode);
Theodore Ts'o795afc42004-02-21 20:54:31 -0500634 if (LINUX_S_ISLNK(inode->i_mode) && ext2fs_inode_data_blocks(current_fs,inode) == 0)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000635 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
636 (int) inode->i_size, (char *)inode->i_block);
Theodore Ts'o2d107692004-02-23 22:30:54 -0500637 else if (LINUX_S_ISBLK(inode->i_mode) || LINUX_S_ISCHR(inode->i_mode)) {
638 int major, minor;
639 const char *devnote;
640
641 if (inode->i_block[0]) {
642 major = (inode->i_block[0] >> 8) & 255;
643 minor = inode->i_block[0] & 255;
644 devnote = "";
645 } else {
646 major = (inode->i_block[1] & 0xfff00) >> 8;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400647 minor = ((inode->i_block[1] & 0xff) |
Theodore Ts'o2d107692004-02-23 22:30:54 -0500648 ((inode->i_block[1] >> 12) & 0xfff00));
649 devnote = "(New-style) ";
650 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400651 fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
Theodore Ts'o2d107692004-02-23 22:30:54 -0500652 devnote, major, minor, major, minor);
653 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000654 else if (do_dump_blocks)
655 dump_blocks(out, prefix, inode_num);
656}
657
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500658static void dump_inode(ext2_ino_t inode_num, struct ext2_inode *inode)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000659{
660 FILE *out;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400661
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000662 out = open_pager();
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500663 internal_dump_inode(out, "", inode_num, inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000664 close_pager(out);
665}
666
Theodore Ts'o3839e651997-04-26 13:21:57 +0000667void do_stat(int argc, char *argv[])
668{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000669 ext2_ino_t inode;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500670 struct ext2_inode * inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000671
Theodore Ts'o64777392005-05-05 17:21:46 -0400672 if (check_fs_open(argv[0]))
Theodore Ts'o8363e352005-05-06 09:04:37 -0400673 return;
Theodore Ts'o64777392005-05-05 17:21:46 -0400674
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500675 inode_buf = (struct ext2_inode *)
676 malloc(EXT2_INODE_SIZE(current_fs->super));
677 if (!inode_buf) {
678 fprintf(stderr, "do_stat: can't allocate buffer\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000679 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500680 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000681
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500682 if (common_inode_args_process(argc, argv, &inode, 0)) {
683 free(inode_buf);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500684 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500685 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000686
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500687 if (debugfs_read_inode_full(inode, inode_buf, argv[0],
688 EXT2_INODE_SIZE(current_fs->super))) {
689 free(inode_buf);
690 return;
691 }
692
693 dump_inode(inode, inode_buf);
694 free(inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000695 return;
696}
697
698void do_chroot(int argc, char *argv[])
699{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000700 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000701 int retval;
702
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500703 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000704 return;
705
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000706 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000707 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500708 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000709 return;
710 }
711 root = inode;
712}
713
714void do_clri(int argc, char *argv[])
715{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000716 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000717 struct ext2_inode inode_buf;
718
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500719 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000720 return;
721
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500722 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000723 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000724 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500725 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000726 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000727}
728
729void do_freei(int argc, char *argv[])
730{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000731 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000732
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500733 if (common_inode_args_process(argc, argv, &inode,
734 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000735 return;
736
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000737 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000738 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000739 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
740 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000741}
742
743void do_seti(int argc, char *argv[])
744{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000745 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000746
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500747 if (common_inode_args_process(argc, argv, &inode,
748 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000749 return;
750
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000751 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000752 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000753 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
754 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000755}
756
757void do_testi(int argc, char *argv[])
758{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000759 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000760
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500761 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000762 return;
763
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000764 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000765 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000766 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000767 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000768}
769
Theodore Ts'o3839e651997-04-26 13:21:57 +0000770void do_freeb(int argc, char *argv[])
771{
772 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400773 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000774
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500775 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000776 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000777 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000778 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500779 while (count-- > 0) {
780 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500781 com_err(argv[0], 0, "Warning: block %u already clear",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500782 block);
783 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
784 block++;
785 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000786 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000787}
788
789void do_setb(int argc, char *argv[])
790{
791 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400792 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000793
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500794 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000795 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000796 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000797 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500798 while (count-- > 0) {
799 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500800 com_err(argv[0], 0, "Warning: block %u already set",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500801 block);
802 ext2fs_mark_block_bitmap(current_fs->block_map,block);
803 block++;
804 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000805 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000806}
807
808void do_testb(int argc, char *argv[])
809{
810 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400811 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000812
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500813 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000814 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500815 while (count-- > 0) {
816 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500817 printf("Block %u marked in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500818 else
Takashi Sato8deb80a2006-03-18 21:43:46 -0500819 printf("Block %u not in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500820 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000821 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000822}
823
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000824static void modify_u8(char *com, const char *prompt,
825 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000826{
827 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000828 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000829 char *tmp;
830
831 sprintf(buf, format, *val);
832 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400833 if (!fgets(buf, sizeof(buf), stdin))
834 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000835 if (buf[strlen (buf) - 1] == '\n')
836 buf[strlen (buf) - 1] = '\0';
837 if (!buf[0])
838 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000839 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000840 if (*tmp)
841 com_err(com, 0, "Bad value - %s", buf);
842 else
843 *val = v;
844}
845
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000846static void modify_u16(char *com, const char *prompt,
847 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000848{
849 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000850 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000851 char *tmp;
852
853 sprintf(buf, format, *val);
854 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400855 if (!fgets(buf, sizeof(buf), stdin))
856 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000857 if (buf[strlen (buf) - 1] == '\n')
858 buf[strlen (buf) - 1] = '\0';
859 if (!buf[0])
860 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000861 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000862 if (*tmp)
863 com_err(com, 0, "Bad value - %s", buf);
864 else
865 *val = v;
866}
867
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000868static void modify_u32(char *com, const char *prompt,
869 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000870{
871 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000872 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000873 char *tmp;
874
875 sprintf(buf, format, *val);
876 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400877 if (!fgets(buf, sizeof(buf), stdin))
878 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000879 if (buf[strlen (buf) - 1] == '\n')
880 buf[strlen (buf) - 1] = '\0';
881 if (!buf[0])
882 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000883 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000884 if (*tmp)
885 com_err(com, 0, "Bad value - %s", buf);
886 else
887 *val = v;
888}
889
890
891void do_modify_inode(int argc, char *argv[])
892{
893 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000894 ext2_ino_t inode_num;
895 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000896 unsigned char *frag, *fsize;
897 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500898 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000899 const char *hex_format = "0x%x";
900 const char *octal_format = "0%o";
901 const char *decimal_format = "%d";
Takashi Sato8deb80a2006-03-18 21:43:46 -0500902 const char *unsignedlong_format = "%lu";
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400903
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500904 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000905 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000906
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500907 os = current_fs->super->s_creator_os;
908
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500909 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000910 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400911
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000912 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
913 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
914 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500915 modify_u32(argv[0], "Size", unsignedlong_format, &inode.i_size);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000916 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
917 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
918 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
919 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
920 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500921 if (os == EXT2_OS_LINUX)
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400922 modify_u16(argv[0], "Block count high", unsignedlong_format,
Theodore Ts'o5d171192006-11-11 06:32:03 -0500923 &inode.osd2.linux2.l_i_blocks_hi);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500924 modify_u32(argv[0], "Block count", unsignedlong_format, &inode.i_blocks);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000925 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000926 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000927#if 0
928 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
929#endif
930 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000931 if (LINUX_S_ISDIR(inode.i_mode))
932 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
933 else
934 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000935
Theodore Ts'o5d171192006-11-11 06:32:03 -0500936 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000937 modify_u32(argv[0], "Translator Block",
938 decimal_format, &inode.osd1.hurd1.h_i_translator);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400939
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000940 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000941 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000942 case EXT2_OS_HURD:
943 frag = &inode.osd2.hurd2.h_i_frag;
944 fsize = &inode.osd2.hurd2.h_i_fsize;
945 break;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000946 default:
947 frag = fsize = 0;
948 }
949 if (frag)
950 modify_u8(argv[0], "Fragment number", decimal_format, frag);
951 if (fsize)
952 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
953
Theodore Ts'o3839e651997-04-26 13:21:57 +0000954 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
955 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000956 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000957 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000958 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400959 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000960 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000961 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000962 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000963 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500964 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000965 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000966}
967
Theodore Ts'o3839e651997-04-26 13:21:57 +0000968void do_change_working_dir(int argc, char *argv[])
969{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000970 ext2_ino_t inode;
971 int retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400972
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500973 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000974 return;
975
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000976 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000977 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500978 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000979 return;
980 }
981 cwd = inode;
982 return;
983}
984
Theodore Ts'o3839e651997-04-26 13:21:57 +0000985void do_print_working_directory(int argc, char *argv[])
986{
987 int retval;
988 char *pathname = NULL;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400989
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500990 if (common_args_process(argc, argv, 1, 1,
991 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000992 return;
993
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000994 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000995 if (retval) {
996 com_err(argv[0], retval,
997 "while trying to get pathname of cwd");
998 }
Brian Behlendorf971fe052007-03-29 00:32:23 -0400999 printf("[pwd] INODE: %6u PATH: %s\n",
1000 cwd, pathname ? pathname : "NULL");
1001 if (pathname) {
1002 free(pathname);
1003 pathname = NULL;
1004 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001005 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001006 if (retval) {
1007 com_err(argv[0], retval,
1008 "while trying to get pathname of root");
1009 }
Brian Behlendorf971fe052007-03-29 00:32:23 -04001010 printf("[root] INODE: %6u PATH: %s\n",
1011 root, pathname ? pathname : "NULL");
1012 if (pathname) {
1013 free(pathname);
1014 pathname = NULL;
1015 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001016 return;
1017}
1018
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001019/*
1020 * Given a mode, return the ext2 file type
1021 */
1022static int ext2_file_type(unsigned int mode)
1023{
1024 if (LINUX_S_ISREG(mode))
1025 return EXT2_FT_REG_FILE;
1026
1027 if (LINUX_S_ISDIR(mode))
1028 return EXT2_FT_DIR;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001029
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001030 if (LINUX_S_ISCHR(mode))
1031 return EXT2_FT_CHRDEV;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001032
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001033 if (LINUX_S_ISBLK(mode))
1034 return EXT2_FT_BLKDEV;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001035
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001036 if (LINUX_S_ISLNK(mode))
1037 return EXT2_FT_SYMLINK;
1038
1039 if (LINUX_S_ISFIFO(mode))
1040 return EXT2_FT_FIFO;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001041
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001042 if (LINUX_S_ISSOCK(mode))
1043 return EXT2_FT_SOCK;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001044
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001045 return 0;
1046}
1047
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001048static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001049{
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001050 ext2_ino_t ino;
1051 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001052 int retval;
1053 ext2_ino_t dir;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001054 char *dest, *cp, *base_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001055
1056 /*
1057 * Get the source inode
1058 */
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001059 ino = string_to_inode(sourcename);
1060 if (!ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001061 return;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001062 base_name = strrchr(sourcename, '/');
1063 if (base_name)
1064 base_name++;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001065 else
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001066 base_name = sourcename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001067 /*
1068 * Figure out the destination. First see if it exists and is
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001069 * a directory.
Theodore Ts'o3839e651997-04-26 13:21:57 +00001070 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001071 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001072 dest = base_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001073 else {
1074 /*
1075 * OK, it doesn't exist. See if it is
1076 * '<dir>/basename' or 'basename'
1077 */
1078 cp = strrchr(destname, '/');
1079 if (cp) {
1080 *cp = 0;
1081 dir = string_to_inode(destname);
1082 if (!dir)
1083 return;
1084 dest = cp+1;
1085 } else {
1086 dir = cwd;
1087 dest = destname;
1088 }
1089 }
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001090
1091 if (debugfs_read_inode(ino, &inode, sourcename))
1092 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001093
1094 retval = ext2fs_link(current_fs, dir, dest, ino,
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001095 ext2_file_type(inode.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001096 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001097 com_err("make_link", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001098 return;
1099}
1100
1101
1102void do_link(int argc, char *argv[])
1103{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001104 if (common_args_process(argc, argv, 3, 3, "link",
1105 "<source file> <dest_name>", CHECK_FS_RW))
1106 return;
1107
1108 make_link(argv[1], argv[2]);
1109}
1110
1111static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001112 int blockcnt EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -05001113 void *private EXT2FS_ATTR((unused)))
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001114{
1115 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001116
1117 block = *blocknr;
1118 ext2fs_block_alloc_stats(fs, block, +1);
1119 return 0;
1120}
1121
1122void do_undel(int argc, char *argv[])
1123{
1124 ext2_ino_t ino;
1125 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001126
Theodore Ts'ob026d532008-01-01 11:37:20 -05001127 if (common_args_process(argc, argv, 2, 3, "undelete",
1128 "<inode_num> [dest_name]",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001129 CHECK_FS_RW | CHECK_FS_BITMAPS))
1130 return;
1131
1132 ino = string_to_inode(argv[1]);
1133 if (!ino)
1134 return;
1135
1136 if (debugfs_read_inode(ino, &inode, argv[1]))
1137 return;
1138
1139 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
1140 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001141 return;
1142 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001143
1144 /*
1145 * XXX this function doesn't handle changing the links count on the
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001146 * parent directory when undeleting a directory.
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001147 */
1148 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
1149 inode.i_dtime = 0;
1150
1151 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001152 return;
1153
Theodore Ts'o43323be2008-02-07 14:37:17 -05001154 ext2fs_block_iterate(current_fs, ino, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001155 mark_blocks_proc, NULL);
1156
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001157 ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001158
Theodore Ts'ob026d532008-01-01 11:37:20 -05001159 if (argc > 2)
1160 make_link(argv[1], argv[2]);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001161}
1162
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001163static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001164{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001165 int retval;
1166 ext2_ino_t dir;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001167 char *base_name;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001168
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001169 base_name = strrchr(filename, '/');
1170 if (base_name) {
1171 *base_name++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +00001172 dir = string_to_inode(filename);
1173 if (!dir)
1174 return;
1175 } else {
1176 dir = cwd;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001177 base_name = filename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001178 }
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001179 retval = ext2fs_unlink(current_fs, dir, base_name, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001180 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001181 com_err("unlink_file_by_name", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001182 return;
1183}
1184
1185void do_unlink(int argc, char *argv[])
1186{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001187 if (common_args_process(argc, argv, 2, 2, "link",
1188 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001189 return;
1190
1191 unlink_file_by_name(argv[1]);
1192}
1193
1194void do_find_free_block(int argc, char *argv[])
1195{
Theodore Ts'o5aae7c22008-02-27 13:38:56 -05001196 blk_t free_blk, goal, first_free = 0;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001197 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001198 errcode_t retval;
1199 char *tmp;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001200
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001201 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
1202 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001203 return;
1204 }
1205 if (check_fs_open(argv[0]))
1206 return;
1207
1208 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001209 count = strtol(argv[1],&tmp,0);
1210 if (*tmp) {
1211 com_err(argv[0], 0, "Bad count - %s", argv[1]);
1212 return;
1213 }
1214 } else
1215 count = 1;
1216
1217 if (argc > 2) {
1218 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001219 if (*tmp) {
1220 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
1221 return;
1222 }
1223 }
1224 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001225 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001226
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001227 printf("Free blocks found: ");
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001228 free_blk = goal - 1;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001229 while (count-- > 0) {
1230 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
1231 &free_blk);
Theodore Ts'o5aae7c22008-02-27 13:38:56 -05001232 if (first_free) {
1233 if (first_free == free_blk)
1234 break;
1235 } else
1236 first_free = free_blk;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001237 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001238 com_err("ext2fs_new_block", retval, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001239 return;
1240 } else
Takashi Sato8deb80a2006-03-18 21:43:46 -05001241 printf("%u ", free_blk);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001242 }
1243 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001244}
1245
1246void do_find_free_inode(int argc, char *argv[])
1247{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001248 ext2_ino_t free_inode, dir;
1249 int mode;
1250 int retval;
1251 char *tmp;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001252
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001253 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1254 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001255 return;
1256 }
1257 if (check_fs_open(argv[0]))
1258 return;
1259
1260 if (argc > 1) {
1261 dir = strtol(argv[1], &tmp, 0);
1262 if (*tmp) {
1263 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1264 return;
1265 }
1266 }
1267 else
1268 dir = root;
1269 if (argc > 2) {
1270 mode = strtol(argv[2], &tmp, 0);
1271 if (*tmp) {
1272 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1273 return;
1274 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001275 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001276 mode = 010755;
1277
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001278 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001279 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001280 com_err("ext2fs_new_inode", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001281 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001282 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001283}
1284
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001285static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001286{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001287 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001288 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001289 int got;
1290 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001291 char buf[8192];
1292 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001293
Theodore Ts'o5a513841997-10-25 22:41:14 +00001294 retval = ext2fs_file_open(current_fs, newfile,
1295 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001296 if (retval)
1297 return retval;
1298
Theodore Ts'o5a513841997-10-25 22:41:14 +00001299 while (1) {
1300 got = read(fd, buf, sizeof(buf));
1301 if (got == 0)
1302 break;
1303 if (got < 0) {
1304 retval = errno;
1305 goto fail;
1306 }
1307 ptr = buf;
1308 while (got > 0) {
1309 retval = ext2fs_file_write(e2_file, ptr,
1310 got, &written);
1311 if (retval)
1312 goto fail;
1313
1314 got -= written;
1315 ptr += written;
1316 }
1317 }
1318 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001319 return retval;
1320
1321fail:
1322 (void) ext2fs_file_close(e2_file);
1323 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001324}
1325
Theodore Ts'o5a513841997-10-25 22:41:14 +00001326
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001327void do_write(int argc, char *argv[])
1328{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001329 int fd;
1330 struct stat statbuf;
1331 ext2_ino_t newfile;
1332 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001333 struct ext2_inode inode;
1334
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001335 if (common_args_process(argc, argv, 3, 3, "write",
1336 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001337 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001338
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001339 fd = open(argv[1], O_RDONLY);
1340 if (fd < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001341 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001342 return;
1343 }
1344 if (fstat(fd, &statbuf) < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001345 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001346 close(fd);
1347 return;
1348 }
1349
Theodore Ts'o1dd090f2002-10-31 11:53:49 -05001350 retval = ext2fs_namei(current_fs, root, cwd, argv[2], &newfile);
1351 if (retval == 0) {
1352 com_err(argv[0], 0, "The file '%s' already exists\n", argv[2]);
1353 close(fd);
1354 return;
1355 }
1356
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001357 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001358 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001359 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001360 close(fd);
1361 return;
1362 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001363 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001364 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1365 EXT2_FT_REG_FILE);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001366 if (retval == EXT2_ET_DIR_NO_SPACE) {
1367 retval = ext2fs_expand_dir(current_fs, cwd);
1368 if (retval) {
1369 com_err(argv[0], retval, "while expanding directory");
Manish Katiyar42621622008-08-23 21:41:25 +05301370 close(fd);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001371 return;
1372 }
1373 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1374 EXT2_FT_REG_FILE);
1375 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001376 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001377 com_err(argv[2], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001378 close(fd);
1379 return;
1380 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001381 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001382 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001383 ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001384 memset(&inode, 0, sizeof(inode));
Theodore Ts'o04df4912003-12-07 16:31:45 -05001385 inode.i_mode = (statbuf.st_mode & ~LINUX_S_IFMT) | LINUX_S_IFREG;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001386 inode.i_atime = inode.i_ctime = inode.i_mtime =
Theodore Ts'o4efae602005-09-24 21:56:38 -04001387 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001388 inode.i_links_count = 1;
1389 inode.i_size = statbuf.st_size;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001390 if (current_fs->super->s_feature_incompat &
Theodore Ts'oeaf8fed2008-08-27 18:38:47 -04001391 EXT3_FEATURE_INCOMPAT_EXTENTS)
1392 inode.i_flags |= EXT4_EXTENTS_FL;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001393 if (debugfs_write_new_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001394 close(fd);
1395 return;
1396 }
1397 if (LINUX_S_ISREG(inode.i_mode)) {
1398 retval = copy_file(fd, newfile);
1399 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001400 com_err("copy_file", retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001401 }
1402 close(fd);
1403}
1404
1405void do_mknod(int argc, char *argv[])
1406{
Theodore Ts'o54434922003-12-07 01:28:50 -05001407 unsigned long mode, major, minor;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001408 ext2_ino_t newfile;
1409 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001410 struct ext2_inode inode;
Theodore Ts'o54434922003-12-07 01:28:50 -05001411 int filetype, nr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001412
1413 if (check_fs_open(argv[0]))
1414 return;
1415 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001416 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001417 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1418 return;
1419 }
1420 mode = minor = major = 0;
1421 switch (argv[2][0]) {
1422 case 'p':
1423 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001424 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001425 nr = 3;
1426 break;
1427 case 'c':
1428 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001429 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001430 nr = 5;
1431 break;
1432 case 'b':
1433 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001434 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001435 nr = 5;
1436 break;
1437 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001438 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001439 nr = 0;
1440 }
1441 if (nr == 5) {
1442 major = strtoul(argv[3], argv+3, 0);
1443 minor = strtoul(argv[4], argv+4, 0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001444 if (major > 65535 || minor > 65535 || argv[3][0] || argv[4][0])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001445 nr = 0;
1446 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001447 if (argc != nr)
1448 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001449 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001450 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001451 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001452 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001453 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001454 return;
1455 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001456 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001457 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001458 if (retval == EXT2_ET_DIR_NO_SPACE) {
1459 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001460 if (retval) {
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001461 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001462 return;
1463 }
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001464 retval = ext2fs_link(current_fs, cwd, argv[1], newfile,
1465 filetype);
1466 }
1467 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001468 com_err(argv[1], retval, 0);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001469 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001470 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001471 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001472 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001473 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1474 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001475 memset(&inode, 0, sizeof(inode));
1476 inode.i_mode = mode;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001477 inode.i_atime = inode.i_ctime = inode.i_mtime =
Theodore Ts'o4efae602005-09-24 21:56:38 -04001478 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001479 if ((major < 256) && (minor < 256)) {
1480 inode.i_block[0] = major*256+minor;
1481 inode.i_block[1] = 0;
1482 } else {
1483 inode.i_block[0] = 0;
1484 inode.i_block[1] = (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
1485 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001486 inode.i_links_count = 1;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001487 if (debugfs_write_new_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001488 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001489}
1490
Theodore Ts'o3839e651997-04-26 13:21:57 +00001491void do_mkdir(int argc, char *argv[])
1492{
1493 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001494 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001495 char *name;
1496 errcode_t retval;
1497
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001498 if (common_args_process(argc, argv, 2, 2, "mkdir",
1499 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001500 return;
1501
Theodore Ts'o3839e651997-04-26 13:21:57 +00001502 cp = strrchr(argv[1], '/');
1503 if (cp) {
1504 *cp = 0;
1505 parent = string_to_inode(argv[1]);
1506 if (!parent) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001507 com_err(argv[1], ENOENT, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001508 return;
1509 }
1510 name = cp+1;
1511 } else {
1512 parent = cwd;
1513 name = argv[1];
1514 }
1515
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001516try_again:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001517 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001518 if (retval == EXT2_ET_DIR_NO_SPACE) {
1519 retval = ext2fs_expand_dir(current_fs, parent);
1520 if (retval) {
Manish Katiyar73b05422008-08-23 22:28:05 +05301521 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001522 return;
1523 }
1524 goto try_again;
1525 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001526 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001527 com_err("ext2fs_mkdir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001528 return;
1529 }
1530
1531}
1532
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001533static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001534 int blockcnt EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -05001535 void *private EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001536{
Theodore Ts'o34436892001-12-22 13:06:02 -05001537 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001538
1539 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001540 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001541 return 0;
1542}
1543
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001544static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001545{
1546 struct ext2_inode inode_buf;
1547
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001548 if (debugfs_read_inode(inode, &inode_buf, 0))
1549 return;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001550 inode_buf.i_dtime = current_fs->now ? current_fs->now : time(0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001551 if (debugfs_write_inode(inode, &inode_buf, 0))
1552 return;
Theodore Ts'o9c92d842004-11-19 14:39:14 -05001553 if (!ext2fs_inode_has_valid_blocks(&inode_buf))
1554 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001555
Theodore Ts'o43323be2008-02-07 14:37:17 -05001556 ext2fs_block_iterate(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001557 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001558 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001559 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1560 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001561}
1562
1563
1564void do_kill_file(int argc, char *argv[])
1565{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001566 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001567
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001568 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001569 return;
1570
Theodore Ts'o3839e651997-04-26 13:21:57 +00001571 kill_file_by_inode(inode_num);
1572}
1573
1574void do_rm(int argc, char *argv[])
1575{
1576 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001577 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001578 struct ext2_inode inode;
1579
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001580 if (common_args_process(argc, argv, 2, 2, "rm",
1581 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001582 return;
1583
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001584 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001585 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001586 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001587 return;
1588 }
1589
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001590 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001591 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001592
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001593 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001594 com_err(argv[0], 0, "file is a directory");
1595 return;
1596 }
1597
1598 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001599 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001600 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001601
1602 unlink_file_by_name(argv[1]);
1603 if (inode.i_links_count == 0)
1604 kill_file_by_inode(inode_num);
1605}
1606
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001607struct rd_struct {
1608 ext2_ino_t parent;
1609 int empty;
1610};
1611
Theodore Ts'o54434922003-12-07 01:28:50 -05001612static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
1613 int entry EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001614 struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -05001615 int offset EXT2FS_ATTR((unused)),
1616 int blocksize EXT2FS_ATTR((unused)),
1617 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001618 void *private)
1619{
1620 struct rd_struct *rds = (struct rd_struct *) private;
1621
1622 if (dirent->inode == 0)
1623 return 0;
1624 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1625 return 0;
1626 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1627 (dirent->name[1] == '.')) {
1628 rds->parent = dirent->inode;
1629 return 0;
1630 }
1631 rds->empty = 0;
1632 return 0;
1633}
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001634
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001635void do_rmdir(int argc, char *argv[])
1636{
1637 int retval;
1638 ext2_ino_t inode_num;
1639 struct ext2_inode inode;
1640 struct rd_struct rds;
1641
1642 if (common_args_process(argc, argv, 2, 2, "rmdir",
1643 "<filename>", CHECK_FS_RW))
1644 return;
1645
1646 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1647 if (retval) {
1648 com_err(argv[0], retval, "while trying to resolve filename");
1649 return;
1650 }
1651
1652 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1653 return;
1654
1655 if (!LINUX_S_ISDIR(inode.i_mode)) {
1656 com_err(argv[0], 0, "file is not a directory");
1657 return;
1658 }
1659
1660 rds.parent = 0;
1661 rds.empty = 1;
1662
1663 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1664 0, rmdir_proc, &rds);
1665 if (retval) {
1666 com_err(argv[0], retval, "while iterating over directory");
1667 return;
1668 }
1669 if (rds.empty == 0) {
1670 com_err(argv[0], 0, "directory not empty");
1671 return;
1672 }
1673
1674 inode.i_links_count = 0;
1675 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1676 return;
1677
1678 unlink_file_by_name(argv[1]);
1679 kill_file_by_inode(inode_num);
1680
1681 if (rds.parent) {
1682 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1683 return;
1684 if (inode.i_links_count > 1)
1685 inode.i_links_count--;
1686 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1687 return;
1688 }
1689}
1690
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001691void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -05001692 char *argv[] EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001693{
1694 FILE *out = stdout;
1695
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001696 if (current_fs)
1697 fprintf(out, "Open mode: read-%s\n",
1698 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001699 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001700 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001701}
1702
1703void do_expand_dir(int argc, char *argv[])
1704{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001705 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001706 int retval;
1707
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001708 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001709 return;
1710
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001711 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001712 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001713 com_err("ext2fs_expand_dir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001714 return;
1715}
1716
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001717void do_features(int argc, char *argv[])
1718{
1719 int i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001720
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001721 if (check_fs_open(argv[0]))
1722 return;
1723
1724 if ((argc != 1) && check_fs_read_write(argv[0]))
1725 return;
1726 for (i=1; i < argc; i++) {
1727 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001728 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001729 com_err(argv[0], 0, "Unknown feature: %s\n",
1730 argv[i]);
1731 else
1732 ext2fs_mark_super_dirty(current_fs);
1733 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001734 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001735}
1736
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001737void do_bmap(int argc, char *argv[])
1738{
1739 ext2_ino_t ino;
1740 blk_t blk, pblk;
1741 int err;
1742 errcode_t errcode;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001743
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001744 if (common_args_process(argc, argv, 3, 3, argv[0],
1745 "<file> logical_blk", 0))
1746 return;
1747
1748 ino = string_to_inode(argv[1]);
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001749 if (!ino)
1750 return;
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001751 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1752
1753 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1754 if (errcode) {
1755 com_err("argv[0]", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -05001756 "while mapping logical block %u\n", blk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001757 return;
1758 }
Takashi Sato8deb80a2006-03-18 21:43:46 -05001759 printf("%u\n", pblk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001760}
1761
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001762void do_imap(int argc, char *argv[])
1763{
1764 ext2_ino_t ino;
1765 unsigned long group, block, block_nr, offset;
1766
1767 if (common_args_process(argc, argv, 2, 2, argv[0],
1768 "<file>", 0))
1769 return;
1770 ino = string_to_inode(argv[1]);
1771 if (!ino)
Theodore Ts'o88494bb2003-05-13 23:03:43 -04001772 return;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001773
1774 group = (ino - 1) / EXT2_INODES_PER_GROUP(current_fs->super);
1775 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
1776 EXT2_INODE_SIZE(current_fs->super);
1777 block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
1778 if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
Theodore Ts'o54434922003-12-07 01:28:50 -05001779 com_err(argv[0], 0, "Inode table for group %lu is missing\n",
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001780 group);
1781 return;
1782 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001783 block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table +
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001784 block;
1785 offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
1786
Theodore Ts'o48e6e812003-07-06 00:36:48 -04001787 printf("Inode %d is part of block group %lu\n"
1788 "\tlocated at block %lu, offset 0x%04lx\n", ino, group,
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001789 block_nr, offset);
1790
1791}
1792
Theodore Ts'o4efae602005-09-24 21:56:38 -04001793void do_set_current_time(int argc, char *argv[])
1794{
Theodore Ts'o4efae602005-09-24 21:56:38 -04001795 time_t now;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001796
Theodore Ts'o4efae602005-09-24 21:56:38 -04001797 if (common_args_process(argc, argv, 2, 2, argv[0],
1798 "<time>", 0))
1799 return;
1800
1801 now = string_to_time(argv[1]);
1802 if (now == ((time_t) -1)) {
1803 com_err(argv[0], 0, "Couldn't parse argument as a time: %s\n",
1804 argv[1]);
1805 return;
1806
1807 } else {
1808 printf("Setting current time to %s\n", time_to_string(now));
1809 current_fs->now = now;
1810 }
1811}
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001812
Andreas Dilger03efde82008-08-23 21:42:46 -06001813static int find_supp_feature(__u32 *supp, int feature_type, char *name)
1814{
1815 int compat, bit, ret;
1816 unsigned int feature_mask;
1817
1818 if (name) {
1819 if (feature_type == E2P_FS_FEATURE)
1820 ret = e2p_string2feature(name, &compat, &feature_mask);
1821 else
1822 ret = e2p_jrnl_string2feature(name, &compat,
1823 &feature_mask);
1824 if (ret)
1825 return ret;
1826
1827 if (!(supp[compat] & feature_mask))
1828 return 1;
1829 } else {
1830 for (compat = 0; compat < 3; compat++) {
1831 for (bit = 0, feature_mask = 1; bit < 32;
1832 bit++, feature_mask <<= 1) {
1833 if (supp[compat] & feature_mask) {
1834 if (feature_type == E2P_FS_FEATURE)
1835 fprintf(stdout, " %s",
1836 e2p_feature2string(compat,
1837 feature_mask));
1838 else
1839 fprintf(stdout, " %s",
1840 e2p_jrnl_feature2string(compat,
1841 feature_mask));
1842 }
1843 }
1844 }
1845 fprintf(stdout, "\n");
1846 }
1847
1848 return 0;
1849}
1850
1851void do_supported_features(int argc, char *argv[])
1852{
1853 int i, j, ret;
1854 __u32 supp[3] = { EXT2_LIB_FEATURE_COMPAT_SUPP,
1855 EXT2_LIB_FEATURE_INCOMPAT_SUPP,
1856 EXT2_LIB_FEATURE_RO_COMPAT_SUPP };
1857 __u32 jrnl_supp[3] = { JFS_KNOWN_COMPAT_FEATURES,
1858 JFS_KNOWN_INCOMPAT_FEATURES,
1859 JFS_KNOWN_ROCOMPAT_FEATURES };
1860
1861 if (argc > 1) {
1862 ret = find_supp_feature(supp, E2P_FS_FEATURE, argv[1]);
1863 if (ret) {
1864 ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE,
1865 argv[1]);
1866 }
1867 if (ret)
1868 com_err(argv[0], 0, "Unknown feature: %s\n", argv[1]);
1869 else
1870 fprintf(stdout, "Supported feature: %s\n", argv[1]);
1871 } else {
1872 fprintf(stdout, "Supported features:");
1873 ret = find_supp_feature(supp, E2P_FS_FEATURE, NULL);
1874 ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE, NULL);
1875 }
1876}
1877
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001878static int source_file(const char *cmd_file, int sci_idx)
1879{
1880 FILE *f;
1881 char buf[256];
1882 char *cp;
1883 int exit_status = 0;
1884 int retval;
1885
1886 if (strcmp(cmd_file, "-") == 0)
1887 f = stdin;
1888 else {
1889 f = fopen(cmd_file, "r");
1890 if (!f) {
1891 perror(cmd_file);
1892 exit(1);
1893 }
1894 }
Theodore Ts'o2a7bfe82008-07-13 15:40:15 -04001895 fflush(stdout);
1896 fflush(stderr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001897 setbuf(stdout, NULL);
1898 setbuf(stderr, NULL);
1899 while (!feof(f)) {
1900 if (fgets(buf, sizeof(buf), f) == NULL)
1901 break;
1902 cp = strchr(buf, '\n');
1903 if (cp)
1904 *cp = 0;
1905 cp = strchr(buf, '\r');
1906 if (cp)
1907 *cp = 0;
1908 printf("debugfs: %s\n", buf);
1909 retval = ss_execute_line(sci_idx, buf);
1910 if (retval) {
1911 ss_perror(sci_idx, retval, buf);
1912 exit_status++;
1913 }
1914 }
1915 return exit_status;
1916}
1917
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001918int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001919{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001920 int retval;
1921 int sci_idx;
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001922 const char *usage = "Usage: %s [-b blocksize] [-s superblock] [-f cmd_file] [-R request] [-V] [[-w] [-c] device]";
Theodore Ts'of1304811997-10-25 03:51:53 +00001923 int c;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -05001924 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001925 char *request = 0;
1926 int exit_status = 0;
1927 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001928 blk_t superblock = 0;
1929 blk_t blocksize = 0;
1930 int catastrophic = 0;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001931 char *data_filename = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001932
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001933 if (debug_prog_name == 0)
1934 debug_prog_name = "debugfs";
1935
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001936 add_error_table(&et_ext2_error_table);
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001937 fprintf (stderr, "%s %s (%s)\n", debug_prog_name,
1938 E2FSPROGS_VERSION, E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001939
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001940 while ((c = getopt (argc, argv, "iwcR:f:b:s:Vd:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001941 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001942 case 'R':
1943 request = optarg;
1944 break;
1945 case 'f':
1946 cmd_file = optarg;
1947 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001948 case 'd':
1949 data_filename = optarg;
1950 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001951 case 'i':
1952 open_flags |= EXT2_FLAG_IMAGE_FILE;
1953 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001954 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001955 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001956 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001957 case 'b':
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001958 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001959 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001960 break;
1961 case 's':
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001962 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001963 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001964 break;
1965 case 'c':
1966 catastrophic = 1;
1967 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001968 case 'V':
1969 /* Print version number and exit */
1970 fprintf(stderr, "\tUsing %s\n",
1971 error_message(EXT2_ET_BASE));
1972 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001973 default:
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001974 com_err(argv[0], 0, usage, debug_prog_name);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001975 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001976 }
1977 }
1978 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001979 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001980 superblock, blocksize, catastrophic,
1981 data_filename);
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001982
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001983 sci_idx = ss_create_invocation(debug_prog_name, "0.0", (char *) NULL,
Theodore Ts'o3839e651997-04-26 13:21:57 +00001984 &debug_cmds, &retval);
1985 if (retval) {
1986 ss_perror(sci_idx, retval, "creating invocation");
1987 exit(1);
1988 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001989 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001990
1991 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1992 if (retval) {
1993 ss_perror(sci_idx, retval, "adding standard requests");
1994 exit (1);
1995 }
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001996 if (extra_cmds)
1997 ss_add_request_table (sci_idx, extra_cmds, 1, &retval);
1998 if (retval) {
1999 ss_perror(sci_idx, retval, "adding extra requests");
2000 exit (1);
2001 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00002002 if (request) {
2003 retval = 0;
2004 retval = ss_execute_line(sci_idx, request);
2005 if (retval) {
2006 ss_perror(sci_idx, retval, request);
2007 exit_status++;
2008 }
2009 } else if (cmd_file) {
2010 exit_status = source_file(cmd_file, sci_idx);
2011 } else {
2012 ss_listen(sci_idx);
2013 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00002014
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00002015 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00002016 close_filesystem();
Theodore Ts'oefc6f622008-08-27 23:07:54 -04002017
Theodore Ts'oa6d83022006-12-26 03:38:07 -05002018 remove_error_table(&et_ext2_error_table);
Theodore Ts'oe5973042000-01-18 17:58:34 +00002019 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00002020}