blob: 95cc89c772fe2455d37b8b78e3cf42516ae9086b [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.
7 *
8 * 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'o50e1e101997-04-26 13:58:21 +000019#else
20extern 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"
39
Theodore Ts'o3839e651997-04-26 13:21:57 +000040extern ss_request_table debug_cmds;
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -040041ss_request_table *extra_cmds;
Theodore Ts'o2d328bb2008-03-17 23:17:13 -040042const char *debug_prog_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +000043
Theodore Ts'ob044c2e2001-01-11 15:26:39 +000044ext2_filsys current_fs = NULL;
45ext2_ino_t root, cwd;
Theodore Ts'o3839e651997-04-26 13:21:57 +000046
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000047static void open_filesystem(char *device, int open_flags, blk_t superblock,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040048 blk_t blocksize, int catastrophic,
49 char *data_filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +000050{
51 int retval;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040052 io_channel data_io = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000053
54 if (superblock != 0 && blocksize == 0) {
55 com_err(device, 0, "if you specify the superblock, you must also specify the block size");
56 current_fs = NULL;
57 return;
58 }
59
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040060 if (data_filename) {
61 if ((open_flags & EXT2_FLAG_IMAGE_FILE) == 0) {
62 com_err(device, 0,
63 "The -d option is only valid when reading an e2image file");
64 current_fs = NULL;
65 return;
66 }
67 retval = unix_io_manager->open(data_filename, 0, &data_io);
68 if (retval) {
69 com_err(data_filename, 0, "while opening data source");
70 current_fs = NULL;
71 return;
72 }
73 }
74
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000075 if (catastrophic && (open_flags & EXT2_FLAG_RW)) {
76 com_err(device, 0,
77 "opening read-only because of catastrophic mode");
78 open_flags &= ~EXT2_FLAG_RW;
79 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000080
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000081 retval = ext2fs_open(device, open_flags, superblock, blocksize,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000082 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000083 if (retval) {
84 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000085 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000086 return;
87 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000088
89 if (catastrophic)
90 com_err(device, 0, "catastrophic mode - not reading inode or group bitmaps");
91 else {
92 retval = ext2fs_read_inode_bitmap(current_fs);
93 if (retval) {
94 com_err(device, retval, "while reading inode bitmap");
95 goto errout;
96 }
97 retval = ext2fs_read_block_bitmap(current_fs);
98 if (retval) {
99 com_err(device, retval, "while reading block bitmap");
100 goto errout;
101 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000102 }
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400103
104 if (data_io) {
105 retval = ext2fs_set_data_io(current_fs, data_io);
106 if (retval) {
107 com_err(device, retval,
108 "while setting data source");
109 goto errout;
110 }
111 }
112
Theodore Ts'o3839e651997-04-26 13:21:57 +0000113 root = cwd = EXT2_ROOT_INO;
114 return;
115
116errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000117 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000118 if (retval)
119 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000120 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000121}
122
123void do_open_filesys(int argc, char **argv)
124{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500125 int c, err;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000126 int catastrophic = 0;
127 blk_t superblock = 0;
128 blk_t blocksize = 0;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -0500129 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ob0d17e02004-11-29 17:35:58 -0500130 char *data_filename = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000131
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400132 reset_getopt();
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500133 while ((c = getopt (argc, argv, "iwfecb:s:d:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 switch (c) {
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000135 case 'i':
136 open_flags |= EXT2_FLAG_IMAGE_FILE;
137 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000138 case 'w':
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000139 open_flags |= EXT2_FLAG_RW;
140 break;
141 case 'f':
142 open_flags |= EXT2_FLAG_FORCE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000143 break;
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500144 case 'e':
145 open_flags |= EXT2_FLAG_EXCLUSIVE;
146 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000147 case 'c':
148 catastrophic = 1;
149 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400150 case 'd':
151 data_filename = optarg;
152 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000153 case 'b':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500154 blocksize = parse_ulong(optarg, argv[0],
155 "block size", &err);
156 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000157 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000158 break;
159 case 's':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500160 superblock = parse_ulong(optarg, argv[0],
161 "superblock number", &err);
162 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000163 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000164 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000165 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500166 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000167 }
168 }
169 if (optind != argc-1) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500170 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000171 }
172 if (check_fs_not_open(argv[0]))
173 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000174 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400175 superblock, blocksize, catastrophic,
176 data_filename);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500177 return;
178
179print_usage:
180 fprintf(stderr, "%s: Usage: open [-s superblock] [-b blocksize] "
181 "[-c] [-w] <device>\n", argv[0]);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000182}
183
184void do_lcd(int argc, char **argv)
185{
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500186 if (argc != 2) {
187 com_err(argv[0], 0, "Usage: %s %s", argv[0], "<native dir>");
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000188 return;
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500189 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000190
191 if (chdir(argv[1]) == -1) {
192 com_err(argv[0], errno,
193 "while trying to change native directory to %s",
194 argv[1]);
195 return;
196 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000197}
198
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000199static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000200{
201 int retval;
202
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000203 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
204 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500206 com_err("ext2fs_write_inode_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000207 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000208 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
209 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000210 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500211 com_err("ext2fs_write_block_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000212 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000213 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000214 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500215 com_err("ext2fs_close", retval, 0);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000216 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000217 return;
218}
219
220void do_close_filesys(int argc, char **argv)
221{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500222 if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000223 return;
224 close_filesystem();
225}
226
227void do_init_filesys(int argc, char **argv)
228{
Theodore Ts'o3839e651997-04-26 13:21:57 +0000229 struct ext2_super_block param;
230 errcode_t retval;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500231 int err;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000232
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500233 if (common_args_process(argc, argv, 3, 3, "initialize",
234 "<device> <blocksize>", CHECK_FS_NOTOPEN))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000235 return;
236
237 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'ob38cd282002-05-11 22:13:20 -0400238 param.s_blocks_count = parse_ulong(argv[2], argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500239 "blocks count", &err);
240 if (err)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000241 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000242 retval = ext2fs_initialize(argv[1], 0, &param,
243 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000244 if (retval) {
245 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000246 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000247 return;
248 }
249 root = cwd = EXT2_ROOT_INO;
250 return;
251}
252
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000253static void print_features(struct ext2_super_block * s, FILE *f)
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000254{
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000255 int i, j, printed=0;
Theodore Ts'o092c3de2001-05-14 11:20:48 +0000256 __u32 *mask = &s->s_feature_compat, m;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000257
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000258 fputs("Filesystem features:", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000259 for (i=0; i <3; i++,mask++) {
260 for (j=0,m=1; j < 32; j++, m<<=1) {
261 if (*mask & m) {
262 fprintf(f, " %s", e2p_feature2string(i, m));
263 printed++;
264 }
265 }
266 }
267 if (printed == 0)
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000268 fputs("(none)", f);
269 fputs("\n", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000270}
271
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400272static void print_bg_opts(struct ext2_group_desc *gdp, int mask,
273 const char *str, int *first, FILE *f)
274{
275 if (gdp->bg_flags & mask) {
276 if (*first) {
277 fputs(" [", f);
278 *first = 0;
279 } else
280 fputs(", ", f);
281 fputs(str, f);
282 }
283}
284
Theodore Ts'o3839e651997-04-26 13:21:57 +0000285void do_show_super_stats(int argc, char *argv[])
286{
Theodore Ts'o54434922003-12-07 01:28:50 -0500287 dgrp_t i;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000288 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000289 struct ext2_group_desc *gdp;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000290 int c, header_only = 0;
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500291 int numdirs = 0, first, gdt_csum;
292
293 gdt_csum = EXT2_HAS_RO_COMPAT_FEATURE(current_fs->super,
294 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000295
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400296 reset_getopt();
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000297 while ((c = getopt (argc, argv, "h")) != EOF) {
298 switch (c) {
299 case 'h':
300 header_only++;
301 break;
302 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500303 goto print_usage;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000304 }
305 }
306 if (optind != argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500307 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000308 }
309 if (check_fs_open(argv[0]))
310 return;
311 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000312
313 list_super2(current_fs->super, out);
Theodore Ts'o34be9602002-07-15 16:56:41 -0400314 for (i=0; i < current_fs->group_desc_count; i++)
315 numdirs += current_fs->group_desc[i].bg_used_dirs_count;
316 fprintf(out, "Directories: %d\n", numdirs);
317
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000318 if (header_only) {
319 close_pager(out);
320 return;
321 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000322
323 gdp = &current_fs->group_desc[0];
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400324 for (i = 0; i < current_fs->group_desc_count; i++, gdp++) {
Takashi Sato8deb80a2006-03-18 21:43:46 -0500325 fprintf(out, " Group %2d: block bitmap at %u, "
326 "inode bitmap at %u, "
327 "inode table at %u\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000328 " %d free %s, "
329 "%d free %s, "
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500330 "%d used %s%s",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000331 i, gdp->bg_block_bitmap,
332 gdp->bg_inode_bitmap, gdp->bg_inode_table,
333 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000334 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000335 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000336 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000337 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000338 gdp->bg_used_dirs_count != 1 ? "directories"
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500339 : "directory", gdt_csum ? ", " : "\n");
340 if (gdt_csum)
341 fprintf(out, "%d unused %s\n",
342 gdp->bg_itable_unused,
343 gdp->bg_itable_unused != 1 ? "inodes":"inode");
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400344 first = 1;
345 print_bg_opts(gdp, EXT2_BG_INODE_UNINIT, "Inode not init",
346 &first, out);
347 print_bg_opts(gdp, EXT2_BG_BLOCK_UNINIT, "Block not init",
348 &first, out);
Jose R. Santos8fdf2912007-10-21 21:03:57 -0500349 if (gdt_csum) {
350 fprintf(out, "%sChecksum 0x%04x",
351 first ? " [":", ", gdp->bg_checksum);
352 first = 0;
353 }
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400354 if (!first)
355 fputs("]\n", out);
356 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000357 close_pager(out);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500358 return;
359print_usage:
360 fprintf(stderr, "%s: Usage: show_super [-h]\n", argv[0]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000361}
362
Theodore Ts'o54434922003-12-07 01:28:50 -0500363void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
364 char **argv EXT2FS_ATTR((unused)))
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000365{
366 if (check_fs_open(argv[0]))
367 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000368 if (check_fs_read_write(argv[0]))
369 return;
370
371 if (argv[1] && !strcmp(argv[1], "-clean"))
372 current_fs->super->s_state |= EXT2_VALID_FS;
373 else
374 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000375 ext2fs_mark_super_dirty(current_fs);
376}
377
Theodore Ts'o3839e651997-04-26 13:21:57 +0000378struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700379 FILE *f;
380 e2_blkcnt_t total;
381 blk_t first_block, last_block;
382 e2_blkcnt_t first_bcnt, last_bcnt;
383 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000384};
385
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000386static void finish_range(struct list_blocks_struct *lb)
387{
388 if (lb->first_block == 0)
389 return;
390 if (lb->first)
391 lb->first = 0;
392 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000393 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000394 if (lb->first_block == lb->last_block)
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400395 fprintf(lb->f, "(%lld):%u",
396 (long long)lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000397 else
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400398 fprintf(lb->f, "(%lld-%lld):%u-%u",
399 (long long)lb->first_bcnt, (long long)lb->last_bcnt,
400 lb->first_block, lb->last_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000401 lb->first_block = 0;
402}
403
Theodore Ts'o54434922003-12-07 01:28:50 -0500404static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
405 blk_t *blocknr, e2_blkcnt_t blockcnt,
406 blk_t ref_block EXT2FS_ATTR((unused)),
407 int ref_offset EXT2FS_ATTR((unused)),
408 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000409{
410 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
411
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000412 lb->total++;
413 if (blockcnt >= 0) {
414 /*
415 * See if we can add on to the existing range (if it exists)
416 */
417 if (lb->first_block &&
418 (lb->last_block+1 == *blocknr) &&
419 (lb->last_bcnt+1 == blockcnt)) {
420 lb->last_block = *blocknr;
421 lb->last_bcnt = blockcnt;
422 return 0;
423 }
424 /*
425 * Start a new range.
426 */
427 finish_range(lb);
428 lb->first_block = lb->last_block = *blocknr;
429 lb->first_bcnt = lb->last_bcnt = blockcnt;
430 return 0;
431 }
432 /*
433 * Not a normal block. Always force a new range.
434 */
435 finish_range(lb);
436 if (lb->first)
437 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000438 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000439 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000440 if (blockcnt == -1)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500441 fprintf(lb->f, "(IND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000442 else if (blockcnt == -2)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500443 fprintf(lb->f, "(DIND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000444 else if (blockcnt == -3)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500445 fprintf(lb->f, "(TIND):%u", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000446 return 0;
447}
448
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500449static void dump_xattr_string(FILE *out, const char *str, int len)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500450{
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600451 int printable = 0;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500452 int i;
453
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600454 /* check: is string "printable enough?" */
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500455 for (i = 0; i < len; i++)
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600456 if (isprint(str[i]))
457 printable++;
458
459 if (printable <= len*7/8)
460 printable = 0;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500461
462 for (i = 0; i < len; i++)
463 if (printable)
Eric Sandeen290ac0e2008-01-29 21:30:46 -0600464 fprintf(out, isprint(str[i]) ? "%c" : "\\%03o",
465 (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500466 else
Andreas Dilgerd047e072006-06-21 00:01:42 -0400467 fprintf(out, "%02x ", (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500468}
469
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400470static void internal_dump_inode_extra(FILE *out,
471 const char *prefix EXT2FS_ATTR((unused)),
472 ext2_ino_t inode_num EXT2FS_ATTR((unused)),
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500473 struct ext2_inode_large *inode)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500474{
475 struct ext2_ext_attr_entry *entry;
476 __u32 *magic;
477 char *start, *end;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500478 unsigned int storage_size;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500479
Takashi Sato8deb80a2006-03-18 21:43:46 -0500480 fprintf(out, "Size of extra inode fields: %u\n", inode->i_extra_isize);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500481 if (inode->i_extra_isize > EXT2_INODE_SIZE(current_fs->super) -
482 EXT2_GOOD_OLD_INODE_SIZE) {
483 fprintf(stderr, "invalid inode->i_extra_isize (%u)\n",
484 inode->i_extra_isize);
485 return;
486 }
487 storage_size = EXT2_INODE_SIZE(current_fs->super) -
488 EXT2_GOOD_OLD_INODE_SIZE -
489 inode->i_extra_isize;
490 magic = (__u32 *)((char *)inode + EXT2_GOOD_OLD_INODE_SIZE +
491 inode->i_extra_isize);
492 if (*magic == EXT2_EXT_ATTR_MAGIC) {
493 fprintf(out, "Extended attributes stored in inode body: \n");
494 end = (char *) inode + EXT2_INODE_SIZE(current_fs->super);
495 start = (char *) magic + sizeof(__u32);
496 entry = (struct ext2_ext_attr_entry *) start;
497 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
498 struct ext2_ext_attr_entry *next =
499 EXT2_EXT_ATTR_NEXT(entry);
500 if (entry->e_value_size > storage_size ||
501 (char *) next >= end) {
502 fprintf(out, "invalid EA entry in inode\n");
503 return;
504 }
505 fprintf(out, " ");
506 dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry),
507 entry->e_name_len);
508 fprintf(out, " = \"");
509 dump_xattr_string(out, start + entry->e_value_offs,
510 entry->e_value_size);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500511 fprintf(out, "\" (%u)\n", entry->e_value_size);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500512 entry = next;
513 }
514 }
515}
Theodore Ts'o3839e651997-04-26 13:21:57 +0000516
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000517static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000518{
519 struct list_blocks_struct lb;
520
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000521 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000522 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000523 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000524 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000525 lb.first = 1;
Theodore Ts'o43323be2008-02-07 14:37:17 -0500526 ext2fs_block_iterate2(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000527 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000528 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000529 if (lb.total)
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400530 fprintf(f, "\n%sTOTAL: %lld\n", prefix, (long long)lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000531 fprintf(f,"\n");
532}
533
534
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000535void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000536 ext2_ino_t inode_num, struct ext2_inode *inode,
537 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000538{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000539 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000540 char frag, fsize;
541 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000542
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000543 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
544 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
545 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
546 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
547 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
548 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
549 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000551 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
552 fprintf(out, "%sMode: %04o Flags: 0x%x Generation: %u\n",
553 prefix,
554 inode->i_mode & 0777, inode->i_flags, inode->i_generation);
555 fprintf(out, "%sUser: %5d Group: %5d Size: ",
Eric Sandeen5113a6e2007-05-08 00:10:54 -0400556 prefix, inode_uid(*inode), inode_gid(*inode));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700557 if (LINUX_S_ISREG(inode->i_mode)) {
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400558 unsigned long long i_size = (inode->i_size |
559 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700560
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400561 fprintf(out, "%llu\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700562 } else
563 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500564 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000565 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000566 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
567 prefix,
568 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
569 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000570 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000571 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
572 prefix,
573 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500574 if (os == EXT2_OS_LINUX)
575 fprintf(out, "%sLinks: %d Blockcount: %llu\n",
576 prefix, inode->i_links_count,
577 (((unsigned long long)
578 inode->osd2.linux2.l_i_blocks_hi << 32)) +
579 inode->i_blocks);
580 else
581 fprintf(out, "%sLinks: %d Blockcount: %u\n",
582 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000583 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000584 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000585 frag = inode->osd2.hurd2.h_i_frag;
586 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000587 break;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000588 default:
589 frag = fsize = 0;
590 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000591 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
592 prefix, inode->i_faddr, frag, fsize);
593 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
594 time_to_string(inode->i_ctime));
595 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
596 time_to_string(inode->i_atime));
597 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
598 time_to_string(inode->i_mtime));
599 if (inode->i_dtime)
600 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
601 time_to_string(inode->i_dtime));
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500602 if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
603 internal_dump_inode_extra(out, prefix, inode_num,
604 (struct ext2_inode_large *) inode);
Theodore Ts'o795afc42004-02-21 20:54:31 -0500605 if (LINUX_S_ISLNK(inode->i_mode) && ext2fs_inode_data_blocks(current_fs,inode) == 0)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000606 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
607 (int) inode->i_size, (char *)inode->i_block);
Theodore Ts'o2d107692004-02-23 22:30:54 -0500608 else if (LINUX_S_ISBLK(inode->i_mode) || LINUX_S_ISCHR(inode->i_mode)) {
609 int major, minor;
610 const char *devnote;
611
612 if (inode->i_block[0]) {
613 major = (inode->i_block[0] >> 8) & 255;
614 minor = inode->i_block[0] & 255;
615 devnote = "";
616 } else {
617 major = (inode->i_block[1] & 0xfff00) >> 8;
618 minor = ((inode->i_block[1] & 0xff) |
619 ((inode->i_block[1] >> 12) & 0xfff00));
620 devnote = "(New-style) ";
621 }
622 fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
623 devnote, major, minor, major, minor);
624 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000625 else if (do_dump_blocks)
626 dump_blocks(out, prefix, inode_num);
627}
628
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500629static void dump_inode(ext2_ino_t inode_num, struct ext2_inode *inode)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000630{
631 FILE *out;
632
633 out = open_pager();
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500634 internal_dump_inode(out, "", inode_num, inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000635 close_pager(out);
636}
637
Theodore Ts'o3839e651997-04-26 13:21:57 +0000638void do_stat(int argc, char *argv[])
639{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000640 ext2_ino_t inode;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500641 struct ext2_inode * inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000642
Theodore Ts'o64777392005-05-05 17:21:46 -0400643 if (check_fs_open(argv[0]))
Theodore Ts'o8363e352005-05-06 09:04:37 -0400644 return;
Theodore Ts'o64777392005-05-05 17:21:46 -0400645
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500646 inode_buf = (struct ext2_inode *)
647 malloc(EXT2_INODE_SIZE(current_fs->super));
648 if (!inode_buf) {
649 fprintf(stderr, "do_stat: can't allocate buffer\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000650 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500651 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000652
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500653 if (common_inode_args_process(argc, argv, &inode, 0)) {
654 free(inode_buf);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500655 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500656 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000657
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500658 if (debugfs_read_inode_full(inode, inode_buf, argv[0],
659 EXT2_INODE_SIZE(current_fs->super))) {
660 free(inode_buf);
661 return;
662 }
663
664 dump_inode(inode, inode_buf);
665 free(inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000666 return;
667}
668
669void do_chroot(int argc, char *argv[])
670{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000671 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000672 int retval;
673
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500674 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000675 return;
676
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000677 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000678 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500679 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000680 return;
681 }
682 root = inode;
683}
684
685void do_clri(int argc, char *argv[])
686{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000687 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000688 struct ext2_inode inode_buf;
689
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500690 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000691 return;
692
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500693 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000694 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000695 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500696 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000697 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000698}
699
700void do_freei(int argc, char *argv[])
701{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000702 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000703
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500704 if (common_inode_args_process(argc, argv, &inode,
705 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000706 return;
707
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000708 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000709 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000710 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
711 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000712}
713
714void do_seti(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
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500718 if (common_inode_args_process(argc, argv, &inode,
719 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000720 return;
721
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000722 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000723 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000724 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
725 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000726}
727
728void do_testi(int argc, char *argv[])
729{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000730 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000731
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500732 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000733 return;
734
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000735 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000736 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000737 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000738 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000739}
740
Theodore Ts'o3839e651997-04-26 13:21:57 +0000741void do_freeb(int argc, char *argv[])
742{
743 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400744 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000745
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500746 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000747 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000748 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000749 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500750 while (count-- > 0) {
751 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500752 com_err(argv[0], 0, "Warning: block %u already clear",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500753 block);
754 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
755 block++;
756 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000757 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000758}
759
760void do_setb(int argc, char *argv[])
761{
762 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400763 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000764
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500765 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000766 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000767 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000768 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500769 while (count-- > 0) {
770 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500771 com_err(argv[0], 0, "Warning: block %u already set",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500772 block);
773 ext2fs_mark_block_bitmap(current_fs->block_map,block);
774 block++;
775 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000776 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000777}
778
779void do_testb(int argc, char *argv[])
780{
781 blk_t block;
Eric Sandeen3e419132007-04-10 15:40:04 -0400782 blk_t count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000783
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500784 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000785 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500786 while (count-- > 0) {
787 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500788 printf("Block %u marked in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500789 else
Takashi Sato8deb80a2006-03-18 21:43:46 -0500790 printf("Block %u not in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500791 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000792 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000793}
794
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000795static void modify_u8(char *com, const char *prompt,
796 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000797{
798 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000799 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000800 char *tmp;
801
802 sprintf(buf, format, *val);
803 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400804 if (!fgets(buf, sizeof(buf), stdin))
805 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000806 if (buf[strlen (buf) - 1] == '\n')
807 buf[strlen (buf) - 1] = '\0';
808 if (!buf[0])
809 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000810 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000811 if (*tmp)
812 com_err(com, 0, "Bad value - %s", buf);
813 else
814 *val = v;
815}
816
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000817static void modify_u16(char *com, const char *prompt,
818 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000819{
820 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000821 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000822 char *tmp;
823
824 sprintf(buf, format, *val);
825 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400826 if (!fgets(buf, sizeof(buf), stdin))
827 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000828 if (buf[strlen (buf) - 1] == '\n')
829 buf[strlen (buf) - 1] = '\0';
830 if (!buf[0])
831 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000832 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000833 if (*tmp)
834 com_err(com, 0, "Bad value - %s", buf);
835 else
836 *val = v;
837}
838
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000839static void modify_u32(char *com, const char *prompt,
840 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000841{
842 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000843 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000844 char *tmp;
845
846 sprintf(buf, format, *val);
847 printf("%30s [%s] ", prompt, buf);
Dmitry V. Levind9039ae2007-10-20 22:08:40 +0400848 if (!fgets(buf, sizeof(buf), stdin))
849 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000850 if (buf[strlen (buf) - 1] == '\n')
851 buf[strlen (buf) - 1] = '\0';
852 if (!buf[0])
853 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000854 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000855 if (*tmp)
856 com_err(com, 0, "Bad value - %s", buf);
857 else
858 *val = v;
859}
860
861
862void do_modify_inode(int argc, char *argv[])
863{
864 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000865 ext2_ino_t inode_num;
866 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000867 unsigned char *frag, *fsize;
868 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500869 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000870 const char *hex_format = "0x%x";
871 const char *octal_format = "0%o";
872 const char *decimal_format = "%d";
Takashi Sato8deb80a2006-03-18 21:43:46 -0500873 const char *unsignedlong_format = "%lu";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000874
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500875 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000876 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000877
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500878 os = current_fs->super->s_creator_os;
879
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500880 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000881 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000882
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000883 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
884 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
885 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500886 modify_u32(argv[0], "Size", unsignedlong_format, &inode.i_size);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000887 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
888 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
889 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
890 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
891 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500892 if (os == EXT2_OS_LINUX)
893 modify_u16(argv[0], "Block count high", unsignedlong_format,
894 &inode.osd2.linux2.l_i_blocks_hi);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500895 modify_u32(argv[0], "Block count", unsignedlong_format, &inode.i_blocks);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000896 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000897 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000898#if 0
899 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
900#endif
901 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000902 if (LINUX_S_ISDIR(inode.i_mode))
903 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
904 else
905 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000906
Theodore Ts'o5d171192006-11-11 06:32:03 -0500907 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000908 modify_u32(argv[0], "Translator Block",
909 decimal_format, &inode.osd1.hurd1.h_i_translator);
910
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000911 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000912 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000913 case EXT2_OS_HURD:
914 frag = &inode.osd2.hurd2.h_i_frag;
915 fsize = &inode.osd2.hurd2.h_i_fsize;
916 break;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000917 default:
918 frag = fsize = 0;
919 }
920 if (frag)
921 modify_u8(argv[0], "Fragment number", decimal_format, frag);
922 if (fsize)
923 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
924
Theodore Ts'o3839e651997-04-26 13:21:57 +0000925 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
926 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000927 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000928 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000929 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000930 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000931 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000932 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000933 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000934 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500935 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000936 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000937}
938
Theodore Ts'o3839e651997-04-26 13:21:57 +0000939void do_change_working_dir(int argc, char *argv[])
940{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000941 ext2_ino_t inode;
942 int retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000943
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500944 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000945 return;
946
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000947 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000948 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500949 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000950 return;
951 }
952 cwd = inode;
953 return;
954}
955
Theodore Ts'o3839e651997-04-26 13:21:57 +0000956void do_print_working_directory(int argc, char *argv[])
957{
958 int retval;
959 char *pathname = NULL;
960
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500961 if (common_args_process(argc, argv, 1, 1,
962 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000963 return;
964
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000965 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000966 if (retval) {
967 com_err(argv[0], retval,
968 "while trying to get pathname of cwd");
969 }
Brian Behlendorf971fe052007-03-29 00:32:23 -0400970 printf("[pwd] INODE: %6u PATH: %s\n",
971 cwd, pathname ? pathname : "NULL");
972 if (pathname) {
973 free(pathname);
974 pathname = NULL;
975 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000976 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000977 if (retval) {
978 com_err(argv[0], retval,
979 "while trying to get pathname of root");
980 }
Brian Behlendorf971fe052007-03-29 00:32:23 -0400981 printf("[root] INODE: %6u PATH: %s\n",
982 root, pathname ? pathname : "NULL");
983 if (pathname) {
984 free(pathname);
985 pathname = NULL;
986 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000987 return;
988}
989
Theodore Ts'oabdf84f2004-03-20 16:54:15 -0500990/*
991 * Given a mode, return the ext2 file type
992 */
993static int ext2_file_type(unsigned int mode)
994{
995 if (LINUX_S_ISREG(mode))
996 return EXT2_FT_REG_FILE;
997
998 if (LINUX_S_ISDIR(mode))
999 return EXT2_FT_DIR;
1000
1001 if (LINUX_S_ISCHR(mode))
1002 return EXT2_FT_CHRDEV;
1003
1004 if (LINUX_S_ISBLK(mode))
1005 return EXT2_FT_BLKDEV;
1006
1007 if (LINUX_S_ISLNK(mode))
1008 return EXT2_FT_SYMLINK;
1009
1010 if (LINUX_S_ISFIFO(mode))
1011 return EXT2_FT_FIFO;
1012
1013 if (LINUX_S_ISSOCK(mode))
1014 return EXT2_FT_SOCK;
1015
1016 return 0;
1017}
1018
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001019static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001020{
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001021 ext2_ino_t ino;
1022 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001023 int retval;
1024 ext2_ino_t dir;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001025 char *dest, *cp, *base_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001026
1027 /*
1028 * Get the source inode
1029 */
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001030 ino = string_to_inode(sourcename);
1031 if (!ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001032 return;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001033 base_name = strrchr(sourcename, '/');
1034 if (base_name)
1035 base_name++;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001036 else
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001037 base_name = sourcename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001038 /*
1039 * Figure out the destination. First see if it exists and is
1040 * a directory.
1041 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001042 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001043 dest = base_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001044 else {
1045 /*
1046 * OK, it doesn't exist. See if it is
1047 * '<dir>/basename' or 'basename'
1048 */
1049 cp = strrchr(destname, '/');
1050 if (cp) {
1051 *cp = 0;
1052 dir = string_to_inode(destname);
1053 if (!dir)
1054 return;
1055 dest = cp+1;
1056 } else {
1057 dir = cwd;
1058 dest = destname;
1059 }
1060 }
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001061
1062 if (debugfs_read_inode(ino, &inode, sourcename))
1063 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001064
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001065 retval = ext2fs_link(current_fs, dir, dest, ino,
1066 ext2_file_type(inode.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001067 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001068 com_err("make_link", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001069 return;
1070}
1071
1072
1073void do_link(int argc, char *argv[])
1074{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001075 if (common_args_process(argc, argv, 3, 3, "link",
1076 "<source file> <dest_name>", CHECK_FS_RW))
1077 return;
1078
1079 make_link(argv[1], argv[2]);
1080}
1081
1082static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001083 int blockcnt EXT2FS_ATTR((unused)),
1084 void *private EXT2FS_ATTR((unused)))
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001085{
1086 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001087
1088 block = *blocknr;
1089 ext2fs_block_alloc_stats(fs, block, +1);
1090 return 0;
1091}
1092
1093void do_undel(int argc, char *argv[])
1094{
1095 ext2_ino_t ino;
1096 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001097
Theodore Ts'ob026d532008-01-01 11:37:20 -05001098 if (common_args_process(argc, argv, 2, 3, "undelete",
1099 "<inode_num> [dest_name]",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001100 CHECK_FS_RW | CHECK_FS_BITMAPS))
1101 return;
1102
1103 ino = string_to_inode(argv[1]);
1104 if (!ino)
1105 return;
1106
1107 if (debugfs_read_inode(ino, &inode, argv[1]))
1108 return;
1109
1110 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
1111 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001112 return;
1113 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001114
1115 /*
1116 * XXX this function doesn't handle changing the links count on the
1117 * parent directory when undeleting a directory.
1118 */
1119 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
1120 inode.i_dtime = 0;
1121
1122 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001123 return;
1124
Theodore Ts'o43323be2008-02-07 14:37:17 -05001125 ext2fs_block_iterate(current_fs, ino, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001126 mark_blocks_proc, NULL);
1127
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001128 ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001129
Theodore Ts'ob026d532008-01-01 11:37:20 -05001130 if (argc > 2)
1131 make_link(argv[1], argv[2]);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001132}
1133
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001134static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001135{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001136 int retval;
1137 ext2_ino_t dir;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001138 char *base_name;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001139
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001140 base_name = strrchr(filename, '/');
1141 if (base_name) {
1142 *base_name++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +00001143 dir = string_to_inode(filename);
1144 if (!dir)
1145 return;
1146 } else {
1147 dir = cwd;
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001148 base_name = filename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001149 }
Theodore Ts'od4e0b1c2007-08-03 18:56:01 -04001150 retval = ext2fs_unlink(current_fs, dir, base_name, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001151 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001152 com_err("unlink_file_by_name", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001153 return;
1154}
1155
1156void do_unlink(int argc, char *argv[])
1157{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001158 if (common_args_process(argc, argv, 2, 2, "link",
1159 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001160 return;
1161
1162 unlink_file_by_name(argv[1]);
1163}
1164
1165void do_find_free_block(int argc, char *argv[])
1166{
Theodore Ts'o5aae7c22008-02-27 13:38:56 -05001167 blk_t free_blk, goal, first_free = 0;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001168 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001169 errcode_t retval;
1170 char *tmp;
1171
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001172 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
1173 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001174 return;
1175 }
1176 if (check_fs_open(argv[0]))
1177 return;
1178
1179 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001180 count = strtol(argv[1],&tmp,0);
1181 if (*tmp) {
1182 com_err(argv[0], 0, "Bad count - %s", argv[1]);
1183 return;
1184 }
1185 } else
1186 count = 1;
1187
1188 if (argc > 2) {
1189 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001190 if (*tmp) {
1191 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
1192 return;
1193 }
1194 }
1195 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001196 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001197
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001198 printf("Free blocks found: ");
1199 free_blk = goal - 1;
1200 while (count-- > 0) {
1201 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
1202 &free_blk);
Theodore Ts'o5aae7c22008-02-27 13:38:56 -05001203 if (first_free) {
1204 if (first_free == free_blk)
1205 break;
1206 } else
1207 first_free = free_blk;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001208 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001209 com_err("ext2fs_new_block", retval, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001210 return;
1211 } else
Takashi Sato8deb80a2006-03-18 21:43:46 -05001212 printf("%u ", free_blk);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001213 }
1214 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001215}
1216
1217void do_find_free_inode(int argc, char *argv[])
1218{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001219 ext2_ino_t free_inode, dir;
1220 int mode;
1221 int retval;
1222 char *tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001223
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001224 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1225 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001226 return;
1227 }
1228 if (check_fs_open(argv[0]))
1229 return;
1230
1231 if (argc > 1) {
1232 dir = strtol(argv[1], &tmp, 0);
1233 if (*tmp) {
1234 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1235 return;
1236 }
1237 }
1238 else
1239 dir = root;
1240 if (argc > 2) {
1241 mode = strtol(argv[2], &tmp, 0);
1242 if (*tmp) {
1243 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1244 return;
1245 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001246 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001247 mode = 010755;
1248
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001249 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001250 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001251 com_err("ext2fs_new_inode", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001252 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001253 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001254}
1255
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001256static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001257{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001258 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001259 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001260 int got;
1261 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001262 char buf[8192];
1263 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001264
Theodore Ts'o5a513841997-10-25 22:41:14 +00001265 retval = ext2fs_file_open(current_fs, newfile,
1266 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001267 if (retval)
1268 return retval;
1269
Theodore Ts'o5a513841997-10-25 22:41:14 +00001270 while (1) {
1271 got = read(fd, buf, sizeof(buf));
1272 if (got == 0)
1273 break;
1274 if (got < 0) {
1275 retval = errno;
1276 goto fail;
1277 }
1278 ptr = buf;
1279 while (got > 0) {
1280 retval = ext2fs_file_write(e2_file, ptr,
1281 got, &written);
1282 if (retval)
1283 goto fail;
1284
1285 got -= written;
1286 ptr += written;
1287 }
1288 }
1289 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001290 return retval;
1291
1292fail:
1293 (void) ext2fs_file_close(e2_file);
1294 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001295}
1296
Theodore Ts'o5a513841997-10-25 22:41:14 +00001297
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001298void do_write(int argc, char *argv[])
1299{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001300 int fd;
1301 struct stat statbuf;
1302 ext2_ino_t newfile;
1303 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001304 struct ext2_inode inode;
1305
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001306 if (common_args_process(argc, argv, 3, 3, "write",
1307 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001308 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001309
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001310 fd = open(argv[1], O_RDONLY);
1311 if (fd < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001312 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001313 return;
1314 }
1315 if (fstat(fd, &statbuf) < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001316 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001317 close(fd);
1318 return;
1319 }
1320
Theodore Ts'o1dd090f2002-10-31 11:53:49 -05001321 retval = ext2fs_namei(current_fs, root, cwd, argv[2], &newfile);
1322 if (retval == 0) {
1323 com_err(argv[0], 0, "The file '%s' already exists\n", argv[2]);
1324 close(fd);
1325 return;
1326 }
1327
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001328 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001329 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001330 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001331 close(fd);
1332 return;
1333 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001334 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001335 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1336 EXT2_FT_REG_FILE);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001337 if (retval == EXT2_ET_DIR_NO_SPACE) {
1338 retval = ext2fs_expand_dir(current_fs, cwd);
1339 if (retval) {
1340 com_err(argv[0], retval, "while expanding directory");
1341 return;
1342 }
1343 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1344 EXT2_FT_REG_FILE);
1345 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001346 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001347 com_err(argv[2], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001348 close(fd);
1349 return;
1350 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001351 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001352 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001353 ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001354 memset(&inode, 0, sizeof(inode));
Theodore Ts'o04df4912003-12-07 16:31:45 -05001355 inode.i_mode = (statbuf.st_mode & ~LINUX_S_IFMT) | LINUX_S_IFREG;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001356 inode.i_atime = inode.i_ctime = inode.i_mtime =
1357 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001358 inode.i_links_count = 1;
1359 inode.i_size = statbuf.st_size;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001360 if (debugfs_write_new_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001361 close(fd);
1362 return;
1363 }
1364 if (LINUX_S_ISREG(inode.i_mode)) {
1365 retval = copy_file(fd, newfile);
1366 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001367 com_err("copy_file", retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001368 }
1369 close(fd);
1370}
1371
1372void do_mknod(int argc, char *argv[])
1373{
Theodore Ts'o54434922003-12-07 01:28:50 -05001374 unsigned long mode, major, minor;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001375 ext2_ino_t newfile;
1376 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001377 struct ext2_inode inode;
Theodore Ts'o54434922003-12-07 01:28:50 -05001378 int filetype, nr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001379
1380 if (check_fs_open(argv[0]))
1381 return;
1382 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001383 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001384 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1385 return;
1386 }
1387 mode = minor = major = 0;
1388 switch (argv[2][0]) {
1389 case 'p':
1390 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001391 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001392 nr = 3;
1393 break;
1394 case 'c':
1395 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001396 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001397 nr = 5;
1398 break;
1399 case 'b':
1400 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001401 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001402 nr = 5;
1403 break;
1404 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001405 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001406 nr = 0;
1407 }
1408 if (nr == 5) {
1409 major = strtoul(argv[3], argv+3, 0);
1410 minor = strtoul(argv[4], argv+4, 0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001411 if (major > 65535 || minor > 65535 || argv[3][0] || argv[4][0])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001412 nr = 0;
1413 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001414 if (argc != nr)
1415 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001416 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001417 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001418 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001419 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001420 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001421 return;
1422 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001423 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001424 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001425 if (retval == EXT2_ET_DIR_NO_SPACE) {
1426 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001427 if (retval) {
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001428 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001429 return;
1430 }
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001431 retval = ext2fs_link(current_fs, cwd, argv[1], newfile,
1432 filetype);
1433 }
1434 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001435 com_err(argv[1], retval, 0);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001436 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001437 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001438 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001439 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001440 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1441 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001442 memset(&inode, 0, sizeof(inode));
1443 inode.i_mode = mode;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001444 inode.i_atime = inode.i_ctime = inode.i_mtime =
1445 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001446 if ((major < 256) && (minor < 256)) {
1447 inode.i_block[0] = major*256+minor;
1448 inode.i_block[1] = 0;
1449 } else {
1450 inode.i_block[0] = 0;
1451 inode.i_block[1] = (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
1452 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001453 inode.i_links_count = 1;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001454 if (debugfs_write_new_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001455 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001456}
1457
Theodore Ts'o3839e651997-04-26 13:21:57 +00001458void do_mkdir(int argc, char *argv[])
1459{
1460 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001461 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001462 char *name;
1463 errcode_t retval;
1464
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001465 if (common_args_process(argc, argv, 2, 2, "mkdir",
1466 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001467 return;
1468
Theodore Ts'o3839e651997-04-26 13:21:57 +00001469 cp = strrchr(argv[1], '/');
1470 if (cp) {
1471 *cp = 0;
1472 parent = string_to_inode(argv[1]);
1473 if (!parent) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001474 com_err(argv[1], ENOENT, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001475 return;
1476 }
1477 name = cp+1;
1478 } else {
1479 parent = cwd;
1480 name = argv[1];
1481 }
1482
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001483try_again:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001484 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001485 if (retval == EXT2_ET_DIR_NO_SPACE) {
1486 retval = ext2fs_expand_dir(current_fs, parent);
1487 if (retval) {
1488 com_err("argv[0]", retval, "while expanding directory");
1489 return;
1490 }
1491 goto try_again;
1492 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001493 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001494 com_err("ext2fs_mkdir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001495 return;
1496 }
1497
1498}
1499
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001500static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001501 int blockcnt EXT2FS_ATTR((unused)),
1502 void *private EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001503{
Theodore Ts'o34436892001-12-22 13:06:02 -05001504 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001505
1506 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001507 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001508 return 0;
1509}
1510
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001511static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001512{
1513 struct ext2_inode inode_buf;
1514
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001515 if (debugfs_read_inode(inode, &inode_buf, 0))
1516 return;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001517 inode_buf.i_dtime = current_fs->now ? current_fs->now : time(0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001518 if (debugfs_write_inode(inode, &inode_buf, 0))
1519 return;
Theodore Ts'o9c92d842004-11-19 14:39:14 -05001520 if (!ext2fs_inode_has_valid_blocks(&inode_buf))
1521 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001522
Theodore Ts'o43323be2008-02-07 14:37:17 -05001523 ext2fs_block_iterate(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001524 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001525 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001526 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1527 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001528}
1529
1530
1531void do_kill_file(int argc, char *argv[])
1532{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001533 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001534
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001535 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001536 return;
1537
Theodore Ts'o3839e651997-04-26 13:21:57 +00001538 kill_file_by_inode(inode_num);
1539}
1540
1541void do_rm(int argc, char *argv[])
1542{
1543 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001544 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001545 struct ext2_inode inode;
1546
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001547 if (common_args_process(argc, argv, 2, 2, "rm",
1548 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001549 return;
1550
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001551 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001552 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001553 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001554 return;
1555 }
1556
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001557 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001558 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001559
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001560 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001561 com_err(argv[0], 0, "file is a directory");
1562 return;
1563 }
1564
1565 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001566 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001567 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001568
1569 unlink_file_by_name(argv[1]);
1570 if (inode.i_links_count == 0)
1571 kill_file_by_inode(inode_num);
1572}
1573
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001574struct rd_struct {
1575 ext2_ino_t parent;
1576 int empty;
1577};
1578
Theodore Ts'o54434922003-12-07 01:28:50 -05001579static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
1580 int entry EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001581 struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -05001582 int offset EXT2FS_ATTR((unused)),
1583 int blocksize EXT2FS_ATTR((unused)),
1584 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001585 void *private)
1586{
1587 struct rd_struct *rds = (struct rd_struct *) private;
1588
1589 if (dirent->inode == 0)
1590 return 0;
1591 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1592 return 0;
1593 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1594 (dirent->name[1] == '.')) {
1595 rds->parent = dirent->inode;
1596 return 0;
1597 }
1598 rds->empty = 0;
1599 return 0;
1600}
1601
1602void do_rmdir(int argc, char *argv[])
1603{
1604 int retval;
1605 ext2_ino_t inode_num;
1606 struct ext2_inode inode;
1607 struct rd_struct rds;
1608
1609 if (common_args_process(argc, argv, 2, 2, "rmdir",
1610 "<filename>", CHECK_FS_RW))
1611 return;
1612
1613 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1614 if (retval) {
1615 com_err(argv[0], retval, "while trying to resolve filename");
1616 return;
1617 }
1618
1619 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1620 return;
1621
1622 if (!LINUX_S_ISDIR(inode.i_mode)) {
1623 com_err(argv[0], 0, "file is not a directory");
1624 return;
1625 }
1626
1627 rds.parent = 0;
1628 rds.empty = 1;
1629
1630 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1631 0, rmdir_proc, &rds);
1632 if (retval) {
1633 com_err(argv[0], retval, "while iterating over directory");
1634 return;
1635 }
1636 if (rds.empty == 0) {
1637 com_err(argv[0], 0, "directory not empty");
1638 return;
1639 }
1640
1641 inode.i_links_count = 0;
1642 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1643 return;
1644
1645 unlink_file_by_name(argv[1]);
1646 kill_file_by_inode(inode_num);
1647
1648 if (rds.parent) {
1649 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1650 return;
1651 if (inode.i_links_count > 1)
1652 inode.i_links_count--;
1653 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1654 return;
1655 }
1656}
1657
Theodore Ts'o54434922003-12-07 01:28:50 -05001658void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
1659 char *argv[] EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001660{
1661 FILE *out = stdout;
1662
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001663 if (current_fs)
1664 fprintf(out, "Open mode: read-%s\n",
1665 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001666 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001667 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001668}
1669
1670void do_expand_dir(int argc, char *argv[])
1671{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001672 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001673 int retval;
1674
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001675 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001676 return;
1677
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001678 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001679 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001680 com_err("ext2fs_expand_dir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001681 return;
1682}
1683
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001684void do_features(int argc, char *argv[])
1685{
1686 int i;
1687
1688 if (check_fs_open(argv[0]))
1689 return;
1690
1691 if ((argc != 1) && check_fs_read_write(argv[0]))
1692 return;
1693 for (i=1; i < argc; i++) {
1694 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001695 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001696 com_err(argv[0], 0, "Unknown feature: %s\n",
1697 argv[i]);
1698 else
1699 ext2fs_mark_super_dirty(current_fs);
1700 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001701 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001702}
1703
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001704void do_bmap(int argc, char *argv[])
1705{
1706 ext2_ino_t ino;
1707 blk_t blk, pblk;
1708 int err;
1709 errcode_t errcode;
1710
1711 if (common_args_process(argc, argv, 3, 3, argv[0],
1712 "<file> logical_blk", 0))
1713 return;
1714
1715 ino = string_to_inode(argv[1]);
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001716 if (!ino)
1717 return;
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001718 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1719
1720 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1721 if (errcode) {
1722 com_err("argv[0]", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -05001723 "while mapping logical block %u\n", blk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001724 return;
1725 }
Takashi Sato8deb80a2006-03-18 21:43:46 -05001726 printf("%u\n", pblk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001727}
1728
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001729void do_imap(int argc, char *argv[])
1730{
1731 ext2_ino_t ino;
1732 unsigned long group, block, block_nr, offset;
1733
1734 if (common_args_process(argc, argv, 2, 2, argv[0],
1735 "<file>", 0))
1736 return;
1737 ino = string_to_inode(argv[1]);
1738 if (!ino)
Theodore Ts'o88494bb2003-05-13 23:03:43 -04001739 return;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001740
1741 group = (ino - 1) / EXT2_INODES_PER_GROUP(current_fs->super);
1742 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
1743 EXT2_INODE_SIZE(current_fs->super);
1744 block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
1745 if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
Theodore Ts'o54434922003-12-07 01:28:50 -05001746 com_err(argv[0], 0, "Inode table for group %lu is missing\n",
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001747 group);
1748 return;
1749 }
1750 block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table +
1751 block;
1752 offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
1753
Theodore Ts'o48e6e812003-07-06 00:36:48 -04001754 printf("Inode %d is part of block group %lu\n"
1755 "\tlocated at block %lu, offset 0x%04lx\n", ino, group,
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001756 block_nr, offset);
1757
1758}
1759
Theodore Ts'o4efae602005-09-24 21:56:38 -04001760void do_set_current_time(int argc, char *argv[])
1761{
Theodore Ts'o4efae602005-09-24 21:56:38 -04001762 time_t now;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001763
Theodore Ts'o4efae602005-09-24 21:56:38 -04001764 if (common_args_process(argc, argv, 2, 2, argv[0],
1765 "<time>", 0))
1766 return;
1767
1768 now = string_to_time(argv[1]);
1769 if (now == ((time_t) -1)) {
1770 com_err(argv[0], 0, "Couldn't parse argument as a time: %s\n",
1771 argv[1]);
1772 return;
1773
1774 } else {
1775 printf("Setting current time to %s\n", time_to_string(now));
1776 current_fs->now = now;
1777 }
1778}
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001779
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001780static int source_file(const char *cmd_file, int sci_idx)
1781{
1782 FILE *f;
1783 char buf[256];
1784 char *cp;
1785 int exit_status = 0;
1786 int retval;
1787
1788 if (strcmp(cmd_file, "-") == 0)
1789 f = stdin;
1790 else {
1791 f = fopen(cmd_file, "r");
1792 if (!f) {
1793 perror(cmd_file);
1794 exit(1);
1795 }
1796 }
1797 setbuf(stdout, NULL);
1798 setbuf(stderr, NULL);
1799 while (!feof(f)) {
1800 if (fgets(buf, sizeof(buf), f) == NULL)
1801 break;
1802 cp = strchr(buf, '\n');
1803 if (cp)
1804 *cp = 0;
1805 cp = strchr(buf, '\r');
1806 if (cp)
1807 *cp = 0;
1808 printf("debugfs: %s\n", buf);
1809 retval = ss_execute_line(sci_idx, buf);
1810 if (retval) {
1811 ss_perror(sci_idx, retval, buf);
1812 exit_status++;
1813 }
1814 }
1815 return exit_status;
1816}
1817
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001818int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001819{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001820 int retval;
1821 int sci_idx;
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001822 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 +00001823 int c;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -05001824 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001825 char *request = 0;
1826 int exit_status = 0;
1827 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001828 blk_t superblock = 0;
1829 blk_t blocksize = 0;
1830 int catastrophic = 0;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001831 char *data_filename = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001832
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001833 if (debug_prog_name == 0)
1834 debug_prog_name = "debugfs";
1835
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001836 add_error_table(&et_ext2_error_table);
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001837 fprintf (stderr, "%s %s (%s)\n", debug_prog_name,
1838 E2FSPROGS_VERSION, E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001839
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001840 while ((c = getopt (argc, argv, "iwcR:f:b:s:Vd:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001841 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001842 case 'R':
1843 request = optarg;
1844 break;
1845 case 'f':
1846 cmd_file = optarg;
1847 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001848 case 'd':
1849 data_filename = optarg;
1850 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001851 case 'i':
1852 open_flags |= EXT2_FLAG_IMAGE_FILE;
1853 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001854 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001855 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001856 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001857 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001858 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001859 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001860 break;
1861 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001862 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001863 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001864 break;
1865 case 'c':
1866 catastrophic = 1;
1867 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001868 case 'V':
1869 /* Print version number and exit */
1870 fprintf(stderr, "\tUsing %s\n",
1871 error_message(EXT2_ET_BASE));
1872 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001873 default:
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001874 com_err(argv[0], 0, usage, debug_prog_name);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001875 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001876 }
1877 }
1878 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001879 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001880 superblock, blocksize, catastrophic,
1881 data_filename);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001882
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001883 sci_idx = ss_create_invocation(debug_prog_name, "0.0", (char *) NULL,
Theodore Ts'o3839e651997-04-26 13:21:57 +00001884 &debug_cmds, &retval);
1885 if (retval) {
1886 ss_perror(sci_idx, retval, "creating invocation");
1887 exit(1);
1888 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001889 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001890
1891 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1892 if (retval) {
1893 ss_perror(sci_idx, retval, "adding standard requests");
1894 exit (1);
1895 }
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001896 if (extra_cmds)
1897 ss_add_request_table (sci_idx, extra_cmds, 1, &retval);
1898 if (retval) {
1899 ss_perror(sci_idx, retval, "adding extra requests");
1900 exit (1);
1901 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001902 if (request) {
1903 retval = 0;
1904 retval = ss_execute_line(sci_idx, request);
1905 if (retval) {
1906 ss_perror(sci_idx, retval, request);
1907 exit_status++;
1908 }
1909 } else if (cmd_file) {
1910 exit_status = source_file(cmd_file, sci_idx);
1911 } else {
1912 ss_listen(sci_idx);
1913 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001914
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001915 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001916 close_filesystem();
1917
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001918 remove_error_table(&et_ext2_error_table);
Theodore Ts'oe5973042000-01-18 17:58:34 +00001919 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001920}