blob: 620a513c37b9d220999e3a6677db7ae0b321e78a [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"
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'o1ad54a92004-07-28 21:11:48 -040049 blk_t blocksize, int catastrophic,
50 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) {
63 com_err(device, 0,
64 "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'o3839e651997-04-26 13:21:57 +000081
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) {
108 com_err(device, retval,
109 "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'o3839e651997-04-26 13:21:57 +0000132
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'o1ad54a92004-07-28 21:11:48 -0400176 superblock, blocksize, catastrophic,
177 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;
203
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'o3839e651997-04-26 13:21:57 +0000233
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);
318
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000319 if (header_only) {
320 close_pager(out);
321 return;
322 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000323
324 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'o54434922003-12-07 01:28:50 -0500364void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
365 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'o54434922003-12-07 01:28:50 -0500405static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
406 blk_t *blocknr, e2_blkcnt_t blockcnt,
407 blk_t ref_block EXT2FS_ATTR((unused)),
408 int ref_offset EXT2FS_ATTR((unused)),
409 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;
454
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
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400471static void internal_dump_inode_extra(FILE *out,
472 const char *prefix EXT2FS_ATTR((unused)),
473 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, " ");
507 dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry),
508 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) {
562 fprintf(out, "%sGeneration: %u Version: 0x%08x:%08x\n",
563 prefix, inode->i_generation, large_inode->i_version_hi,
564 inode->osd1.linux1.l_i_version);
565 } else {
566 fprintf(out, "%sGeneration: %u Version: 0x%08x\n", prefix,
567 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'o5d171192006-11-11 06:32:03 -0500588 if (os == EXT2_OS_LINUX)
589 fprintf(out, "%sLinks: %d Blockcount: %llu\n",
590 prefix, inode->i_links_count,
591 (((unsigned long long)
592 inode->osd2.linux2.l_i_blocks_hi << 32)) +
593 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) {
608 fprintf(out, "%s ctime: 0x%08x:%08x -- %s", prefix,
609 inode->i_ctime, large_inode->i_ctime_extra,
610 time_to_string(inode->i_ctime));
611 fprintf(out, "%s atime: 0x%08x:%08x -- %s", prefix,
612 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'oda81e3f2001-03-29 20:49:58 +0000628 if (inode->i_dtime)
629 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;
647 minor = ((inode->i_block[1] & 0xff) |
648 ((inode->i_block[1] >> 12) & 0xfff00));
649 devnote = "(New-style) ";
650 }
651 fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
652 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;
661
662 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'o3839e651997-04-26 13:21:57 +0000903
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'o3839e651997-04-26 13:21:57 +0000911
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)
922 modify_u16(argv[0], "Block count high", unsignedlong_format,
923 &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);
939
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'o3839e651997-04-26 13:21:57 +0000959 &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'o3839e651997-04-26 13:21:57 +0000972
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;
989
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;
1029
1030 if (LINUX_S_ISCHR(mode))
1031 return EXT2_FT_CHRDEV;
1032
1033 if (LINUX_S_ISBLK(mode))
1034 return EXT2_FT_BLKDEV;
1035
1036 if (LINUX_S_ISLNK(mode))
1037 return EXT2_FT_SYMLINK;
1038
1039 if (LINUX_S_ISFIFO(mode))
1040 return EXT2_FT_FIFO;
1041
1042 if (LINUX_S_ISSOCK(mode))
1043 return EXT2_FT_SOCK;
1044
1045 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
1069 * a directory.
1070 */
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'o3839e651997-04-26 13:21:57 +00001093
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001094 retval = ext2fs_link(current_fs, dir, dest, ino,
1095 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'o54434922003-12-07 01:28:50 -05001112 int blockcnt EXT2FS_ATTR((unused)),
1113 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
1146 * parent directory when undeleting a directory.
1147 */
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'o3839e651997-04-26 13:21:57 +00001168
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;
1200
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: ");
1228 free_blk = goal - 1;
1229 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'o3839e651997-04-26 13:21:57 +00001252
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'o4efae602005-09-24 21:56:38 -04001386 inode.i_atime = inode.i_ctime = inode.i_mtime =
1387 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'o030970e2005-03-20 20:05:22 -05001390 if (debugfs_write_new_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001391 close(fd);
1392 return;
1393 }
1394 if (LINUX_S_ISREG(inode.i_mode)) {
1395 retval = copy_file(fd, newfile);
1396 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001397 com_err("copy_file", retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001398 }
1399 close(fd);
1400}
1401
1402void do_mknod(int argc, char *argv[])
1403{
Theodore Ts'o54434922003-12-07 01:28:50 -05001404 unsigned long mode, major, minor;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001405 ext2_ino_t newfile;
1406 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001407 struct ext2_inode inode;
Theodore Ts'o54434922003-12-07 01:28:50 -05001408 int filetype, nr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001409
1410 if (check_fs_open(argv[0]))
1411 return;
1412 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001413 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001414 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1415 return;
1416 }
1417 mode = minor = major = 0;
1418 switch (argv[2][0]) {
1419 case 'p':
1420 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001421 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001422 nr = 3;
1423 break;
1424 case 'c':
1425 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001426 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001427 nr = 5;
1428 break;
1429 case 'b':
1430 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001431 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001432 nr = 5;
1433 break;
1434 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001435 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001436 nr = 0;
1437 }
1438 if (nr == 5) {
1439 major = strtoul(argv[3], argv+3, 0);
1440 minor = strtoul(argv[4], argv+4, 0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001441 if (major > 65535 || minor > 65535 || argv[3][0] || argv[4][0])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001442 nr = 0;
1443 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001444 if (argc != nr)
1445 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001446 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001447 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001448 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001449 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001450 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001451 return;
1452 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001453 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001454 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001455 if (retval == EXT2_ET_DIR_NO_SPACE) {
1456 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001457 if (retval) {
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001458 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001459 return;
1460 }
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001461 retval = ext2fs_link(current_fs, cwd, argv[1], newfile,
1462 filetype);
1463 }
1464 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001465 com_err(argv[1], retval, 0);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001466 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001467 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001468 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001469 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001470 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1471 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001472 memset(&inode, 0, sizeof(inode));
1473 inode.i_mode = mode;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001474 inode.i_atime = inode.i_ctime = inode.i_mtime =
1475 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001476 if ((major < 256) && (minor < 256)) {
1477 inode.i_block[0] = major*256+minor;
1478 inode.i_block[1] = 0;
1479 } else {
1480 inode.i_block[0] = 0;
1481 inode.i_block[1] = (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
1482 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001483 inode.i_links_count = 1;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001484 if (debugfs_write_new_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001485 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001486}
1487
Theodore Ts'o3839e651997-04-26 13:21:57 +00001488void do_mkdir(int argc, char *argv[])
1489{
1490 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001491 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001492 char *name;
1493 errcode_t retval;
1494
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001495 if (common_args_process(argc, argv, 2, 2, "mkdir",
1496 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001497 return;
1498
Theodore Ts'o3839e651997-04-26 13:21:57 +00001499 cp = strrchr(argv[1], '/');
1500 if (cp) {
1501 *cp = 0;
1502 parent = string_to_inode(argv[1]);
1503 if (!parent) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001504 com_err(argv[1], ENOENT, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001505 return;
1506 }
1507 name = cp+1;
1508 } else {
1509 parent = cwd;
1510 name = argv[1];
1511 }
1512
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001513try_again:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001514 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001515 if (retval == EXT2_ET_DIR_NO_SPACE) {
1516 retval = ext2fs_expand_dir(current_fs, parent);
1517 if (retval) {
Manish Katiyar73b05422008-08-23 22:28:05 +05301518 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001519 return;
1520 }
1521 goto try_again;
1522 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001523 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001524 com_err("ext2fs_mkdir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001525 return;
1526 }
1527
1528}
1529
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001530static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001531 int blockcnt EXT2FS_ATTR((unused)),
1532 void *private EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001533{
Theodore Ts'o34436892001-12-22 13:06:02 -05001534 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001535
1536 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001537 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001538 return 0;
1539}
1540
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001541static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001542{
1543 struct ext2_inode inode_buf;
1544
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001545 if (debugfs_read_inode(inode, &inode_buf, 0))
1546 return;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001547 inode_buf.i_dtime = current_fs->now ? current_fs->now : time(0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001548 if (debugfs_write_inode(inode, &inode_buf, 0))
1549 return;
Theodore Ts'o9c92d842004-11-19 14:39:14 -05001550 if (!ext2fs_inode_has_valid_blocks(&inode_buf))
1551 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001552
Theodore Ts'o43323be2008-02-07 14:37:17 -05001553 ext2fs_block_iterate(current_fs, inode, BLOCK_FLAG_READ_ONLY, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001554 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001555 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001556 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1557 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001558}
1559
1560
1561void do_kill_file(int argc, char *argv[])
1562{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001563 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001564
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001565 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001566 return;
1567
Theodore Ts'o3839e651997-04-26 13:21:57 +00001568 kill_file_by_inode(inode_num);
1569}
1570
1571void do_rm(int argc, char *argv[])
1572{
1573 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001574 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001575 struct ext2_inode inode;
1576
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001577 if (common_args_process(argc, argv, 2, 2, "rm",
1578 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001579 return;
1580
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001581 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001582 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001583 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001584 return;
1585 }
1586
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001587 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001588 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001589
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001590 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001591 com_err(argv[0], 0, "file is a directory");
1592 return;
1593 }
1594
1595 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001596 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001597 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001598
1599 unlink_file_by_name(argv[1]);
1600 if (inode.i_links_count == 0)
1601 kill_file_by_inode(inode_num);
1602}
1603
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001604struct rd_struct {
1605 ext2_ino_t parent;
1606 int empty;
1607};
1608
Theodore Ts'o54434922003-12-07 01:28:50 -05001609static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
1610 int entry EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001611 struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -05001612 int offset EXT2FS_ATTR((unused)),
1613 int blocksize EXT2FS_ATTR((unused)),
1614 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001615 void *private)
1616{
1617 struct rd_struct *rds = (struct rd_struct *) private;
1618
1619 if (dirent->inode == 0)
1620 return 0;
1621 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1622 return 0;
1623 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1624 (dirent->name[1] == '.')) {
1625 rds->parent = dirent->inode;
1626 return 0;
1627 }
1628 rds->empty = 0;
1629 return 0;
1630}
1631
1632void do_rmdir(int argc, char *argv[])
1633{
1634 int retval;
1635 ext2_ino_t inode_num;
1636 struct ext2_inode inode;
1637 struct rd_struct rds;
1638
1639 if (common_args_process(argc, argv, 2, 2, "rmdir",
1640 "<filename>", CHECK_FS_RW))
1641 return;
1642
1643 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1644 if (retval) {
1645 com_err(argv[0], retval, "while trying to resolve filename");
1646 return;
1647 }
1648
1649 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1650 return;
1651
1652 if (!LINUX_S_ISDIR(inode.i_mode)) {
1653 com_err(argv[0], 0, "file is not a directory");
1654 return;
1655 }
1656
1657 rds.parent = 0;
1658 rds.empty = 1;
1659
1660 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1661 0, rmdir_proc, &rds);
1662 if (retval) {
1663 com_err(argv[0], retval, "while iterating over directory");
1664 return;
1665 }
1666 if (rds.empty == 0) {
1667 com_err(argv[0], 0, "directory not empty");
1668 return;
1669 }
1670
1671 inode.i_links_count = 0;
1672 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1673 return;
1674
1675 unlink_file_by_name(argv[1]);
1676 kill_file_by_inode(inode_num);
1677
1678 if (rds.parent) {
1679 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1680 return;
1681 if (inode.i_links_count > 1)
1682 inode.i_links_count--;
1683 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1684 return;
1685 }
1686}
1687
Theodore Ts'o54434922003-12-07 01:28:50 -05001688void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
1689 char *argv[] EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001690{
1691 FILE *out = stdout;
1692
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001693 if (current_fs)
1694 fprintf(out, "Open mode: read-%s\n",
1695 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001696 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001697 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001698}
1699
1700void do_expand_dir(int argc, char *argv[])
1701{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001702 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001703 int retval;
1704
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001705 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001706 return;
1707
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001708 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001709 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001710 com_err("ext2fs_expand_dir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001711 return;
1712}
1713
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001714void do_features(int argc, char *argv[])
1715{
1716 int i;
1717
1718 if (check_fs_open(argv[0]))
1719 return;
1720
1721 if ((argc != 1) && check_fs_read_write(argv[0]))
1722 return;
1723 for (i=1; i < argc; i++) {
1724 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001725 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001726 com_err(argv[0], 0, "Unknown feature: %s\n",
1727 argv[i]);
1728 else
1729 ext2fs_mark_super_dirty(current_fs);
1730 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001731 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001732}
1733
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001734void do_bmap(int argc, char *argv[])
1735{
1736 ext2_ino_t ino;
1737 blk_t blk, pblk;
1738 int err;
1739 errcode_t errcode;
1740
1741 if (common_args_process(argc, argv, 3, 3, argv[0],
1742 "<file> logical_blk", 0))
1743 return;
1744
1745 ino = string_to_inode(argv[1]);
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001746 if (!ino)
1747 return;
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001748 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1749
1750 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1751 if (errcode) {
1752 com_err("argv[0]", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -05001753 "while mapping logical block %u\n", blk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001754 return;
1755 }
Takashi Sato8deb80a2006-03-18 21:43:46 -05001756 printf("%u\n", pblk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001757}
1758
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001759void do_imap(int argc, char *argv[])
1760{
1761 ext2_ino_t ino;
1762 unsigned long group, block, block_nr, offset;
1763
1764 if (common_args_process(argc, argv, 2, 2, argv[0],
1765 "<file>", 0))
1766 return;
1767 ino = string_to_inode(argv[1]);
1768 if (!ino)
Theodore Ts'o88494bb2003-05-13 23:03:43 -04001769 return;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001770
1771 group = (ino - 1) / EXT2_INODES_PER_GROUP(current_fs->super);
1772 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
1773 EXT2_INODE_SIZE(current_fs->super);
1774 block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
1775 if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
Theodore Ts'o54434922003-12-07 01:28:50 -05001776 com_err(argv[0], 0, "Inode table for group %lu is missing\n",
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001777 group);
1778 return;
1779 }
1780 block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table +
1781 block;
1782 offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
1783
Theodore Ts'o48e6e812003-07-06 00:36:48 -04001784 printf("Inode %d is part of block group %lu\n"
1785 "\tlocated at block %lu, offset 0x%04lx\n", ino, group,
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001786 block_nr, offset);
1787
1788}
1789
Theodore Ts'o4efae602005-09-24 21:56:38 -04001790void do_set_current_time(int argc, char *argv[])
1791{
Theodore Ts'o4efae602005-09-24 21:56:38 -04001792 time_t now;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001793
Theodore Ts'o4efae602005-09-24 21:56:38 -04001794 if (common_args_process(argc, argv, 2, 2, argv[0],
1795 "<time>", 0))
1796 return;
1797
1798 now = string_to_time(argv[1]);
1799 if (now == ((time_t) -1)) {
1800 com_err(argv[0], 0, "Couldn't parse argument as a time: %s\n",
1801 argv[1]);
1802 return;
1803
1804 } else {
1805 printf("Setting current time to %s\n", time_to_string(now));
1806 current_fs->now = now;
1807 }
1808}
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001809
Andreas Dilger03efde82008-08-23 21:42:46 -06001810static int find_supp_feature(__u32 *supp, int feature_type, char *name)
1811{
1812 int compat, bit, ret;
1813 unsigned int feature_mask;
1814
1815 if (name) {
1816 if (feature_type == E2P_FS_FEATURE)
1817 ret = e2p_string2feature(name, &compat, &feature_mask);
1818 else
1819 ret = e2p_jrnl_string2feature(name, &compat,
1820 &feature_mask);
1821 if (ret)
1822 return ret;
1823
1824 if (!(supp[compat] & feature_mask))
1825 return 1;
1826 } else {
1827 for (compat = 0; compat < 3; compat++) {
1828 for (bit = 0, feature_mask = 1; bit < 32;
1829 bit++, feature_mask <<= 1) {
1830 if (supp[compat] & feature_mask) {
1831 if (feature_type == E2P_FS_FEATURE)
1832 fprintf(stdout, " %s",
1833 e2p_feature2string(compat,
1834 feature_mask));
1835 else
1836 fprintf(stdout, " %s",
1837 e2p_jrnl_feature2string(compat,
1838 feature_mask));
1839 }
1840 }
1841 }
1842 fprintf(stdout, "\n");
1843 }
1844
1845 return 0;
1846}
1847
1848void do_supported_features(int argc, char *argv[])
1849{
1850 int i, j, ret;
1851 __u32 supp[3] = { EXT2_LIB_FEATURE_COMPAT_SUPP,
1852 EXT2_LIB_FEATURE_INCOMPAT_SUPP,
1853 EXT2_LIB_FEATURE_RO_COMPAT_SUPP };
1854 __u32 jrnl_supp[3] = { JFS_KNOWN_COMPAT_FEATURES,
1855 JFS_KNOWN_INCOMPAT_FEATURES,
1856 JFS_KNOWN_ROCOMPAT_FEATURES };
1857
1858 if (argc > 1) {
1859 ret = find_supp_feature(supp, E2P_FS_FEATURE, argv[1]);
1860 if (ret) {
1861 ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE,
1862 argv[1]);
1863 }
1864 if (ret)
1865 com_err(argv[0], 0, "Unknown feature: %s\n", argv[1]);
1866 else
1867 fprintf(stdout, "Supported feature: %s\n", argv[1]);
1868 } else {
1869 fprintf(stdout, "Supported features:");
1870 ret = find_supp_feature(supp, E2P_FS_FEATURE, NULL);
1871 ret = find_supp_feature(jrnl_supp, E2P_JOURNAL_FEATURE, NULL);
1872 }
1873}
1874
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001875static int source_file(const char *cmd_file, int sci_idx)
1876{
1877 FILE *f;
1878 char buf[256];
1879 char *cp;
1880 int exit_status = 0;
1881 int retval;
1882
1883 if (strcmp(cmd_file, "-") == 0)
1884 f = stdin;
1885 else {
1886 f = fopen(cmd_file, "r");
1887 if (!f) {
1888 perror(cmd_file);
1889 exit(1);
1890 }
1891 }
Theodore Ts'o2a7bfe82008-07-13 15:40:15 -04001892 fflush(stdout);
1893 fflush(stderr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001894 setbuf(stdout, NULL);
1895 setbuf(stderr, NULL);
1896 while (!feof(f)) {
1897 if (fgets(buf, sizeof(buf), f) == NULL)
1898 break;
1899 cp = strchr(buf, '\n');
1900 if (cp)
1901 *cp = 0;
1902 cp = strchr(buf, '\r');
1903 if (cp)
1904 *cp = 0;
1905 printf("debugfs: %s\n", buf);
1906 retval = ss_execute_line(sci_idx, buf);
1907 if (retval) {
1908 ss_perror(sci_idx, retval, buf);
1909 exit_status++;
1910 }
1911 }
1912 return exit_status;
1913}
1914
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001915int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001916{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001917 int retval;
1918 int sci_idx;
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001919 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 +00001920 int c;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -05001921 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001922 char *request = 0;
1923 int exit_status = 0;
1924 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001925 blk_t superblock = 0;
1926 blk_t blocksize = 0;
1927 int catastrophic = 0;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001928 char *data_filename = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001929
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001930 if (debug_prog_name == 0)
1931 debug_prog_name = "debugfs";
1932
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001933 add_error_table(&et_ext2_error_table);
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001934 fprintf (stderr, "%s %s (%s)\n", debug_prog_name,
1935 E2FSPROGS_VERSION, E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001936
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001937 while ((c = getopt (argc, argv, "iwcR:f:b:s:Vd:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001938 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001939 case 'R':
1940 request = optarg;
1941 break;
1942 case 'f':
1943 cmd_file = optarg;
1944 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001945 case 'd':
1946 data_filename = optarg;
1947 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001948 case 'i':
1949 open_flags |= EXT2_FLAG_IMAGE_FILE;
1950 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001951 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001952 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001953 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001954 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001955 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001956 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001957 break;
1958 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001959 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001960 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001961 break;
1962 case 'c':
1963 catastrophic = 1;
1964 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001965 case 'V':
1966 /* Print version number and exit */
1967 fprintf(stderr, "\tUsing %s\n",
1968 error_message(EXT2_ET_BASE));
1969 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001970 default:
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001971 com_err(argv[0], 0, usage, debug_prog_name);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001972 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001973 }
1974 }
1975 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001976 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001977 superblock, blocksize, catastrophic,
1978 data_filename);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001979
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001980 sci_idx = ss_create_invocation(debug_prog_name, "0.0", (char *) NULL,
Theodore Ts'o3839e651997-04-26 13:21:57 +00001981 &debug_cmds, &retval);
1982 if (retval) {
1983 ss_perror(sci_idx, retval, "creating invocation");
1984 exit(1);
1985 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001986 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001987
1988 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1989 if (retval) {
1990 ss_perror(sci_idx, retval, "adding standard requests");
1991 exit (1);
1992 }
Theodore Ts'o49ce6cb2007-08-31 13:39:23 -04001993 if (extra_cmds)
1994 ss_add_request_table (sci_idx, extra_cmds, 1, &retval);
1995 if (retval) {
1996 ss_perror(sci_idx, retval, "adding extra requests");
1997 exit (1);
1998 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001999 if (request) {
2000 retval = 0;
2001 retval = ss_execute_line(sci_idx, request);
2002 if (retval) {
2003 ss_perror(sci_idx, retval, request);
2004 exit_status++;
2005 }
2006 } else if (cmd_file) {
2007 exit_status = source_file(cmd_file, sci_idx);
2008 } else {
2009 ss_listen(sci_idx);
2010 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00002011
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00002012 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00002013 close_filesystem();
2014
Theodore Ts'oa6d83022006-12-26 03:38:07 -05002015 remove_error_table(&et_ext2_error_table);
Theodore Ts'oe5973042000-01-18 17:58:34 +00002016 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00002017}