blob: e6bcdbae222c85fcedf4a9a352c72547b48063e1 [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
23#ifdef HAVE_OPTRESET
24extern int optreset; /* defined by BSD, but not others */
25#endif
26#ifdef HAVE_ERRNO_H
27#include <errno.h>
28#endif
29#include <fcntl.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000030#include <sys/types.h>
31#include <sys/stat.h>
32
33#include "et/com_err.h"
34#include "ss/ss.h"
35#include "debugfs.h"
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000036#include "uuid/uuid.h"
Theodore Ts'of68aa411999-10-26 14:20:22 +000037#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000038
Theodore Ts'o818180c1998-06-27 05:11:14 +000039#include "../version.h"
40
Theodore Ts'o3839e651997-04-26 13:21:57 +000041extern ss_request_table debug_cmds;
42
Theodore Ts'ob044c2e2001-01-11 15:26:39 +000043ext2_filsys current_fs = NULL;
44ext2_ino_t root, cwd;
Theodore Ts'o3839e651997-04-26 13:21:57 +000045
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000046static void open_filesystem(char *device, int open_flags, blk_t superblock,
47 blk_t blocksize, int catastrophic)
Theodore Ts'o3839e651997-04-26 13:21:57 +000048{
49 int retval;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000050
51 if (superblock != 0 && blocksize == 0) {
52 com_err(device, 0, "if you specify the superblock, you must also specify the block size");
53 current_fs = NULL;
54 return;
55 }
56
57 if (catastrophic && (open_flags & EXT2_FLAG_RW)) {
58 com_err(device, 0,
59 "opening read-only because of catastrophic mode");
60 open_flags &= ~EXT2_FLAG_RW;
61 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000062
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000063 retval = ext2fs_open(device, open_flags, superblock, blocksize,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000064 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000065 if (retval) {
66 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000067 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000068 return;
69 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000070
71 if (catastrophic)
72 com_err(device, 0, "catastrophic mode - not reading inode or group bitmaps");
73 else {
74 retval = ext2fs_read_inode_bitmap(current_fs);
75 if (retval) {
76 com_err(device, retval, "while reading inode bitmap");
77 goto errout;
78 }
79 retval = ext2fs_read_block_bitmap(current_fs);
80 if (retval) {
81 com_err(device, retval, "while reading block bitmap");
82 goto errout;
83 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000084 }
85 root = cwd = EXT2_ROOT_INO;
86 return;
87
88errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000089 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000090 if (retval)
91 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000092 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000093}
94
95void do_open_filesys(int argc, char **argv)
96{
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000097 const char *usage = "Usage: open [-s superblock] [-b blocksize] [-c] [-w] <device>";
Theodore Ts'oe1018ee2002-01-03 04:55:25 -050098 int c, err;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000099 int catastrophic = 0;
100 blk_t superblock = 0;
101 blk_t blocksize = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000102 int open_flags = 0;
103
Theodore Ts'oed78c022003-03-06 11:09:18 -0500104 optind = 1;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000105#ifdef HAVE_OPTRESET
106 optreset = 1; /* Makes BSD getopt happy */
107#endif
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000108 while ((c = getopt (argc, argv, "iwfcb:s:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000109 switch (c) {
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000110 case 'i':
111 open_flags |= EXT2_FLAG_IMAGE_FILE;
112 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000113 case 'w':
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000114 open_flags |= EXT2_FLAG_RW;
115 break;
116 case 'f':
117 open_flags |= EXT2_FLAG_FORCE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000118 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000119 case 'c':
120 catastrophic = 1;
121 break;
122 case 'b':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500123 blocksize = parse_ulong(optarg, argv[0],
124 "block size", &err);
125 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000126 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000127 break;
128 case 's':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500129 superblock = parse_ulong(optarg, argv[0],
130 "superblock number", &err);
131 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000132 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000133 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 default:
135 com_err(argv[0], 0, usage);
136 return;
137 }
138 }
139 if (optind != argc-1) {
140 com_err(argv[0], 0, usage);
141 return;
142 }
143 if (check_fs_not_open(argv[0]))
144 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000145 open_filesystem(argv[optind], open_flags,
146 superblock, blocksize, catastrophic);
147}
148
149void do_lcd(int argc, char **argv)
150{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500151 if (common_args_process(argc, argv, 2, 2, "lcd",
152 "<native dir>", 0))
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000153 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000154
155 if (chdir(argv[1]) == -1) {
156 com_err(argv[0], errno,
157 "while trying to change native directory to %s",
158 argv[1]);
159 return;
160 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000161}
162
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000163static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000164{
165 int retval;
166
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000167 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
168 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000169 if (retval)
170 com_err("ext2fs_write_inode_bitmap", retval, "");
171 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000172 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
173 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000174 if (retval)
175 com_err("ext2fs_write_block_bitmap", retval, "");
176 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000177 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000178 if (retval)
179 com_err("ext2fs_close", retval, "");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000180 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000181 return;
182}
183
184void do_close_filesys(int argc, char **argv)
185{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500186 if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000187 return;
188 close_filesystem();
189}
190
191void do_init_filesys(int argc, char **argv)
192{
Theodore Ts'o3839e651997-04-26 13:21:57 +0000193 struct ext2_super_block param;
194 errcode_t retval;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500195 int err;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000196
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500197 if (common_args_process(argc, argv, 3, 3, "initialize",
198 "<device> <blocksize>", CHECK_FS_NOTOPEN))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000199 return;
200
201 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'ob38cd282002-05-11 22:13:20 -0400202 param.s_blocks_count = parse_ulong(argv[2], argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500203 "blocks count", &err);
204 if (err)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000206 retval = ext2fs_initialize(argv[1], 0, &param,
207 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000208 if (retval) {
209 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000210 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 return;
212 }
213 root = cwd = EXT2_ROOT_INO;
214 return;
215}
216
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000217static void print_features(struct ext2_super_block * s, FILE *f)
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000218{
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000219 int i, j, printed=0;
Theodore Ts'o092c3de2001-05-14 11:20:48 +0000220 __u32 *mask = &s->s_feature_compat, m;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000221
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000222 fputs("Filesystem features:", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000223 for (i=0; i <3; i++,mask++) {
224 for (j=0,m=1; j < 32; j++, m<<=1) {
225 if (*mask & m) {
226 fprintf(f, " %s", e2p_feature2string(i, m));
227 printed++;
228 }
229 }
230 }
231 if (printed == 0)
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000232 fputs("(none)", f);
233 fputs("\n", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000234}
235
Theodore Ts'o3839e651997-04-26 13:21:57 +0000236void do_show_super_stats(int argc, char *argv[])
237{
238 int i;
239 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000240 struct ext2_group_desc *gdp;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000241 int c, header_only = 0;
Theodore Ts'o34be9602002-07-15 16:56:41 -0400242 int numdirs = 0;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000243 const char *usage = "Usage: show_super [-h]";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000244
Theodore Ts'oed78c022003-03-06 11:09:18 -0500245 optind = 1;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000246#ifdef HAVE_OPTRESET
247 optreset = 1; /* Makes BSD getopt happy */
248#endif
249 while ((c = getopt (argc, argv, "h")) != EOF) {
250 switch (c) {
251 case 'h':
252 header_only++;
253 break;
254 default:
255 com_err(argv[0], 0, usage);
256 return;
257 }
258 }
259 if (optind != argc) {
260 com_err(argv[0], 0, usage);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000261 return;
262 }
263 if (check_fs_open(argv[0]))
264 return;
265 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000266
267 list_super2(current_fs->super, out);
Theodore Ts'o34be9602002-07-15 16:56:41 -0400268 for (i=0; i < current_fs->group_desc_count; i++)
269 numdirs += current_fs->group_desc[i].bg_used_dirs_count;
270 fprintf(out, "Directories: %d\n", numdirs);
271
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000272 if (header_only) {
273 close_pager(out);
274 return;
275 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000276
277 gdp = &current_fs->group_desc[0];
278 for (i = 0; i < current_fs->group_desc_count; i++, gdp++)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000279 fprintf(out, " Group %2d: block bitmap at %d, "
280 "inode bitmap at %d, "
281 "inode table at %d\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000282 " %d free %s, "
283 "%d free %s, "
284 "%d used %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000285 i, gdp->bg_block_bitmap,
286 gdp->bg_inode_bitmap, gdp->bg_inode_table,
287 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000288 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000289 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000290 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000291 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000292 gdp->bg_used_dirs_count != 1 ? "directories"
293 : "directory");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000294 close_pager(out);
295}
296
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000297void do_dirty_filesys(int argc, char **argv)
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000298{
299 if (check_fs_open(argv[0]))
300 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000301 if (check_fs_read_write(argv[0]))
302 return;
303
304 if (argv[1] && !strcmp(argv[1], "-clean"))
305 current_fs->super->s_state |= EXT2_VALID_FS;
306 else
307 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000308 ext2fs_mark_super_dirty(current_fs);
309}
310
Theodore Ts'o3839e651997-04-26 13:21:57 +0000311struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700312 FILE *f;
313 e2_blkcnt_t total;
314 blk_t first_block, last_block;
315 e2_blkcnt_t first_bcnt, last_bcnt;
316 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000317};
318
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000319static void finish_range(struct list_blocks_struct *lb)
320{
321 if (lb->first_block == 0)
322 return;
323 if (lb->first)
324 lb->first = 0;
325 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000326 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000327 if (lb->first_block == lb->last_block)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100328 fprintf(lb->f, "(%lld):%d", lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000329 else
Theodore Ts'oe8981882001-11-30 11:51:30 +0100330 fprintf(lb->f, "(%lld-%lld):%d-%d", lb->first_bcnt,
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000331 lb->last_bcnt, lb->first_block, lb->last_block);
332 lb->first_block = 0;
333}
334
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700335static int list_blocks_proc(ext2_filsys fs, blk_t *blocknr,
336 e2_blkcnt_t blockcnt, blk_t ref_block,
337 int ref_offset, void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000338{
339 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
340
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000341 lb->total++;
342 if (blockcnt >= 0) {
343 /*
344 * See if we can add on to the existing range (if it exists)
345 */
346 if (lb->first_block &&
347 (lb->last_block+1 == *blocknr) &&
348 (lb->last_bcnt+1 == blockcnt)) {
349 lb->last_block = *blocknr;
350 lb->last_bcnt = blockcnt;
351 return 0;
352 }
353 /*
354 * Start a new range.
355 */
356 finish_range(lb);
357 lb->first_block = lb->last_block = *blocknr;
358 lb->first_bcnt = lb->last_bcnt = blockcnt;
359 return 0;
360 }
361 /*
362 * Not a normal block. Always force a new range.
363 */
364 finish_range(lb);
365 if (lb->first)
366 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000367 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000368 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000369 if (blockcnt == -1)
370 fprintf(lb->f, "(IND):%d", *blocknr);
371 else if (blockcnt == -2)
372 fprintf(lb->f, "(DIND):%d", *blocknr);
373 else if (blockcnt == -3)
374 fprintf(lb->f, "(TIND):%d", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000375 return 0;
376}
377
378
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000379static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000380{
381 struct list_blocks_struct lb;
382
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000383 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000384 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000385 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000386 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000387 lb.first = 1;
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700388 ext2fs_block_iterate2(current_fs, inode, 0, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000389 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000390 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000391 if (lb.total)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100392 fprintf(f, "\n%sTOTAL: %lld\n", prefix, lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000393 fprintf(f,"\n");
394}
395
396
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000397void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000398 ext2_ino_t inode_num, struct ext2_inode *inode,
399 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000400{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000401 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000402 char frag, fsize;
403 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000404
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000405 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
406 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
407 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
408 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
409 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
410 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
411 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000412 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000413 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
414 fprintf(out, "%sMode: %04o Flags: 0x%x Generation: %u\n",
415 prefix,
416 inode->i_mode & 0777, inode->i_flags, inode->i_generation);
417 fprintf(out, "%sUser: %5d Group: %5d Size: ",
418 prefix, inode->i_uid, inode->i_gid);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700419 if (LINUX_S_ISREG(inode->i_mode)) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000420 __u64 i_size = (inode->i_size |
421 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700422
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000423 fprintf(out, "%lld\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700424 } else
425 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000426 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000427 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000428 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
429 prefix,
430 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
431 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000432 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000433 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
434 prefix,
435 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
436 fprintf(out, "%sLinks: %d Blockcount: %d\n",
437 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000438 switch (os) {
439 case EXT2_OS_LINUX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000440 frag = inode->osd2.linux2.l_i_frag;
441 fsize = inode->osd2.linux2.l_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000442 break;
443 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000444 frag = inode->osd2.hurd2.h_i_frag;
445 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000446 break;
447 case EXT2_OS_MASIX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000448 frag = inode->osd2.masix2.m_i_frag;
449 fsize = inode->osd2.masix2.m_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000450 break;
451 default:
452 frag = fsize = 0;
453 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000454 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
455 prefix, inode->i_faddr, frag, fsize);
456 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
457 time_to_string(inode->i_ctime));
458 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
459 time_to_string(inode->i_atime));
460 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
461 time_to_string(inode->i_mtime));
462 if (inode->i_dtime)
463 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
464 time_to_string(inode->i_dtime));
465 if (LINUX_S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
466 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
467 (int) inode->i_size, (char *)inode->i_block);
468 else if (do_dump_blocks)
469 dump_blocks(out, prefix, inode_num);
470}
471
472static void dump_inode(ext2_ino_t inode_num, struct ext2_inode inode)
473{
474 FILE *out;
475
476 out = open_pager();
477 internal_dump_inode(out, "", inode_num, &inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000478 close_pager(out);
479}
480
Theodore Ts'o3839e651997-04-26 13:21:57 +0000481void do_stat(int argc, char *argv[])
482{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000483 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000484 struct ext2_inode inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000485
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500486 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000487 return;
488
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500489 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
490 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000491
492 dump_inode(inode,inode_buf);
493 return;
494}
495
496void do_chroot(int argc, char *argv[])
497{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000498 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000499 int retval;
500
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500501 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000502 return;
503
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000504 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000505 if (retval) {
506 com_err(argv[1], retval, "");
507 return;
508 }
509 root = inode;
510}
511
512void do_clri(int argc, char *argv[])
513{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000514 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000515 struct ext2_inode inode_buf;
516
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500517 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000518 return;
519
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500520 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000521 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000522 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500523 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000524 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000525}
526
527void do_freei(int argc, char *argv[])
528{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000529 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000530
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500531 if (common_inode_args_process(argc, argv, &inode,
532 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000533 return;
534
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000535 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000536 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000537 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
538 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000539}
540
541void do_seti(int argc, char *argv[])
542{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000543 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000544
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500545 if (common_inode_args_process(argc, argv, &inode,
546 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000547 return;
548
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000549 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000551 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
552 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000553}
554
555void do_testi(int argc, char *argv[])
556{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000557 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000558
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500559 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000560 return;
561
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000562 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000563 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000564 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000565 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000566}
567
Theodore Ts'o3839e651997-04-26 13:21:57 +0000568void do_freeb(int argc, char *argv[])
569{
570 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500571 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000572
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500573 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000574 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000575 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000576 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500577 while (count-- > 0) {
578 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
579 com_err(argv[0], 0, "Warning: block %d already clear",
580 block);
581 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
582 block++;
583 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000584 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000585}
586
587void do_setb(int argc, char *argv[])
588{
589 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500590 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000591
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500592 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000593 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000594 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000595 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500596 while (count-- > 0) {
597 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
598 com_err(argv[0], 0, "Warning: block %d already set",
599 block);
600 ext2fs_mark_block_bitmap(current_fs->block_map,block);
601 block++;
602 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000603 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000604}
605
606void do_testb(int argc, char *argv[])
607{
608 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500609 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000610
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500611 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000612 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500613 while (count-- > 0) {
614 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
615 printf("Block %d marked in use\n", block);
616 else
617 printf("Block %d not in use\n", block);
618 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000619 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000620}
621
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000622static void modify_u8(char *com, const char *prompt,
623 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000624{
625 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000626 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000627 char *tmp;
628
629 sprintf(buf, format, *val);
630 printf("%30s [%s] ", prompt, buf);
631 fgets(buf, sizeof(buf), stdin);
632 if (buf[strlen (buf) - 1] == '\n')
633 buf[strlen (buf) - 1] = '\0';
634 if (!buf[0])
635 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000636 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000637 if (*tmp)
638 com_err(com, 0, "Bad value - %s", buf);
639 else
640 *val = v;
641}
642
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000643static void modify_u16(char *com, const char *prompt,
644 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000645{
646 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000647 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000648 char *tmp;
649
650 sprintf(buf, format, *val);
651 printf("%30s [%s] ", prompt, buf);
652 fgets(buf, sizeof(buf), stdin);
653 if (buf[strlen (buf) - 1] == '\n')
654 buf[strlen (buf) - 1] = '\0';
655 if (!buf[0])
656 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000657 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000658 if (*tmp)
659 com_err(com, 0, "Bad value - %s", buf);
660 else
661 *val = v;
662}
663
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000664static void modify_u32(char *com, const char *prompt,
665 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000666{
667 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000668 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000669 char *tmp;
670
671 sprintf(buf, format, *val);
672 printf("%30s [%s] ", prompt, buf);
673 fgets(buf, sizeof(buf), stdin);
674 if (buf[strlen (buf) - 1] == '\n')
675 buf[strlen (buf) - 1] = '\0';
676 if (!buf[0])
677 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000678 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000679 if (*tmp)
680 com_err(com, 0, "Bad value - %s", buf);
681 else
682 *val = v;
683}
684
685
686void do_modify_inode(int argc, char *argv[])
687{
688 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000689 ext2_ino_t inode_num;
690 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000691 unsigned char *frag, *fsize;
692 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500693 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000694 const char *hex_format = "0x%x";
695 const char *octal_format = "0%o";
696 const char *decimal_format = "%d";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000697
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500698 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000699 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000700
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500701 os = current_fs->super->s_creator_os;
702
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500703 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000704 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000705
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000706 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
707 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
708 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
709 modify_u32(argv[0], "Size", decimal_format, &inode.i_size);
710 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
711 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
712 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
713 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
714 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
715 modify_u32(argv[0], "Block count", decimal_format, &inode.i_blocks);
716 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000717 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000718#if 0
719 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
720#endif
721 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000722 if (LINUX_S_ISDIR(inode.i_mode))
723 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
724 else
725 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000726
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000727 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000728 modify_u32(argv[0], "Translator Block",
729 decimal_format, &inode.osd1.hurd1.h_i_translator);
730
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000731 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000732 switch (os) {
733 case EXT2_OS_LINUX:
734 frag = &inode.osd2.linux2.l_i_frag;
735 fsize = &inode.osd2.linux2.l_i_fsize;
736 break;
737 case EXT2_OS_HURD:
738 frag = &inode.osd2.hurd2.h_i_frag;
739 fsize = &inode.osd2.hurd2.h_i_fsize;
740 break;
741 case EXT2_OS_MASIX:
742 frag = &inode.osd2.masix2.m_i_frag;
743 fsize = &inode.osd2.masix2.m_i_fsize;
744 break;
745 default:
746 frag = fsize = 0;
747 }
748 if (frag)
749 modify_u8(argv[0], "Fragment number", decimal_format, frag);
750 if (fsize)
751 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
752
Theodore Ts'o3839e651997-04-26 13:21:57 +0000753 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
754 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000755 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000756 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000757 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000758 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000759 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000760 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000761 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000762 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500763 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000764 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000765}
766
Theodore Ts'o3839e651997-04-26 13:21:57 +0000767void do_change_working_dir(int argc, char *argv[])
768{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000769 ext2_ino_t inode;
770 int retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000771
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500772 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000773 return;
774
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000775 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000776 if (retval) {
777 com_err(argv[1], retval, "");
778 return;
779 }
780 cwd = inode;
781 return;
782}
783
Theodore Ts'o3839e651997-04-26 13:21:57 +0000784void do_print_working_directory(int argc, char *argv[])
785{
786 int retval;
787 char *pathname = NULL;
788
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500789 if (common_args_process(argc, argv, 1, 1,
790 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000791 return;
792
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000793 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000794 if (retval) {
795 com_err(argv[0], retval,
796 "while trying to get pathname of cwd");
797 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000798 printf("[pwd] INODE: %6u PATH: %s\n", cwd, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000799 free(pathname);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000800 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000801 if (retval) {
802 com_err(argv[0], retval,
803 "while trying to get pathname of root");
804 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000805 printf("[root] INODE: %6u PATH: %s\n", root, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000806 free(pathname);
807 return;
808}
809
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000810static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000811{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000812 ext2_ino_t inode;
813 int retval;
814 ext2_ino_t dir;
815 char *dest, *cp, *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000816
817 /*
818 * Get the source inode
819 */
820 inode = string_to_inode(sourcename);
821 if (!inode)
822 return;
823 basename = strrchr(sourcename, '/');
824 if (basename)
825 basename++;
826 else
827 basename = sourcename;
828 /*
829 * Figure out the destination. First see if it exists and is
830 * a directory.
831 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000832 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000833 dest = basename;
834 else {
835 /*
836 * OK, it doesn't exist. See if it is
837 * '<dir>/basename' or 'basename'
838 */
839 cp = strrchr(destname, '/');
840 if (cp) {
841 *cp = 0;
842 dir = string_to_inode(destname);
843 if (!dir)
844 return;
845 dest = cp+1;
846 } else {
847 dir = cwd;
848 dest = destname;
849 }
850 }
851
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000852 retval = ext2fs_link(current_fs, dir, dest, inode, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000853 if (retval)
854 com_err("make_link", retval, "");
855 return;
856}
857
858
859void do_link(int argc, char *argv[])
860{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500861 if (common_args_process(argc, argv, 3, 3, "link",
862 "<source file> <dest_name>", CHECK_FS_RW))
863 return;
864
865 make_link(argv[1], argv[2]);
866}
867
868static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
869 int blockcnt, void *private)
870{
871 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500872
873 block = *blocknr;
874 ext2fs_block_alloc_stats(fs, block, +1);
875 return 0;
876}
877
878void do_undel(int argc, char *argv[])
879{
880 ext2_ino_t ino;
881 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500882
883 if (common_args_process(argc, argv, 3, 3, "undelete",
884 "<inode_num> <dest_name>",
885 CHECK_FS_RW | CHECK_FS_BITMAPS))
886 return;
887
888 ino = string_to_inode(argv[1]);
889 if (!ino)
890 return;
891
892 if (debugfs_read_inode(ino, &inode, argv[1]))
893 return;
894
895 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
896 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000897 return;
898 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500899
900 /*
901 * XXX this function doesn't handle changing the links count on the
902 * parent directory when undeleting a directory.
903 */
904 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
905 inode.i_dtime = 0;
906
907 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000908 return;
909
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500910 ext2fs_block_iterate(current_fs, ino, 0, NULL,
911 mark_blocks_proc, NULL);
912
Theodore Ts'od7f64ae2002-07-09 01:27:05 -0400913 ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500914
Theodore Ts'o3839e651997-04-26 13:21:57 +0000915 make_link(argv[1], argv[2]);
916}
917
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000918static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000919{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000920 int retval;
921 ext2_ino_t dir;
922 char *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000923
924 basename = strrchr(filename, '/');
925 if (basename) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000926 *basename++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000927 dir = string_to_inode(filename);
928 if (!dir)
929 return;
930 } else {
931 dir = cwd;
932 basename = filename;
933 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000934 retval = ext2fs_unlink(current_fs, dir, basename, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000935 if (retval)
936 com_err("unlink_file_by_name", retval, "");
937 return;
938}
939
940void do_unlink(int argc, char *argv[])
941{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500942 if (common_args_process(argc, argv, 2, 2, "link",
943 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000944 return;
945
946 unlink_file_by_name(argv[1]);
947}
948
949void do_find_free_block(int argc, char *argv[])
950{
951 blk_t free_blk, goal;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500952 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000953 errcode_t retval;
954 char *tmp;
955
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500956 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
957 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000958 return;
959 }
960 if (check_fs_open(argv[0]))
961 return;
962
963 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500964 count = strtol(argv[1],&tmp,0);
965 if (*tmp) {
966 com_err(argv[0], 0, "Bad count - %s", argv[1]);
967 return;
968 }
969 } else
970 count = 1;
971
972 if (argc > 2) {
973 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000974 if (*tmp) {
975 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
976 return;
977 }
978 }
979 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000980 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000981
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500982 printf("Free blocks found: ");
983 free_blk = goal - 1;
984 while (count-- > 0) {
985 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
986 &free_blk);
987 if (retval) {
988 com_err("ext2fs_new_block", retval, "");
989 return;
990 } else
991 printf("%d ", free_blk);
992 }
993 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000994}
995
996void do_find_free_inode(int argc, char *argv[])
997{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000998 ext2_ino_t free_inode, dir;
999 int mode;
1000 int retval;
1001 char *tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001002
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001003 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1004 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001005 return;
1006 }
1007 if (check_fs_open(argv[0]))
1008 return;
1009
1010 if (argc > 1) {
1011 dir = strtol(argv[1], &tmp, 0);
1012 if (*tmp) {
1013 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1014 return;
1015 }
1016 }
1017 else
1018 dir = root;
1019 if (argc > 2) {
1020 mode = strtol(argv[2], &tmp, 0);
1021 if (*tmp) {
1022 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1023 return;
1024 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001025 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001026 mode = 010755;
1027
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001028 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001029 if (retval)
1030 com_err("ext2fs_new_inode", retval, "");
1031 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001032 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001033}
1034
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001035static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001036{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001037 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001038 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001039 int got;
1040 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001041 char buf[8192];
1042 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001043
Theodore Ts'o5a513841997-10-25 22:41:14 +00001044 retval = ext2fs_file_open(current_fs, newfile,
1045 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001046 if (retval)
1047 return retval;
1048
Theodore Ts'o5a513841997-10-25 22:41:14 +00001049 while (1) {
1050 got = read(fd, buf, sizeof(buf));
1051 if (got == 0)
1052 break;
1053 if (got < 0) {
1054 retval = errno;
1055 goto fail;
1056 }
1057 ptr = buf;
1058 while (got > 0) {
1059 retval = ext2fs_file_write(e2_file, ptr,
1060 got, &written);
1061 if (retval)
1062 goto fail;
1063
1064 got -= written;
1065 ptr += written;
1066 }
1067 }
1068 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001069 return retval;
1070
1071fail:
1072 (void) ext2fs_file_close(e2_file);
1073 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001074}
1075
Theodore Ts'o5a513841997-10-25 22:41:14 +00001076
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001077void do_write(int argc, char *argv[])
1078{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001079 int fd;
1080 struct stat statbuf;
1081 ext2_ino_t newfile;
1082 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001083 struct ext2_inode inode;
1084
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001085 if (common_args_process(argc, argv, 3, 3, "write",
1086 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001087 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001088
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001089 fd = open(argv[1], O_RDONLY);
1090 if (fd < 0) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001091 com_err(argv[1], errno, "");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001092 return;
1093 }
1094 if (fstat(fd, &statbuf) < 0) {
1095 com_err(argv[1], errno, "");
1096 close(fd);
1097 return;
1098 }
1099
Theodore Ts'o1dd090f2002-10-31 11:53:49 -05001100 retval = ext2fs_namei(current_fs, root, cwd, argv[2], &newfile);
1101 if (retval == 0) {
1102 com_err(argv[0], 0, "The file '%s' already exists\n", argv[2]);
1103 close(fd);
1104 return;
1105 }
1106
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001107 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001108 if (retval) {
1109 com_err(argv[0], retval, "");
1110 close(fd);
1111 return;
1112 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001113 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001114 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1115 EXT2_FT_REG_FILE);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001116 if (retval) {
1117 com_err(argv[2], retval, "");
1118 close(fd);
1119 return;
1120 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001121 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001122 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001123 ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001124 memset(&inode, 0, sizeof(inode));
1125 inode.i_mode = statbuf.st_mode;
1126 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1127 inode.i_links_count = 1;
1128 inode.i_size = statbuf.st_size;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001129 if (debugfs_write_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001130 close(fd);
1131 return;
1132 }
1133 if (LINUX_S_ISREG(inode.i_mode)) {
1134 retval = copy_file(fd, newfile);
1135 if (retval)
1136 com_err("copy_file", retval, "");
1137 }
1138 close(fd);
1139}
1140
1141void do_mknod(int argc, char *argv[])
1142{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001143 unsigned long mode, major, minor, nr;
1144 ext2_ino_t newfile;
1145 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001146 struct ext2_inode inode;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001147 int filetype;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001148
1149 if (check_fs_open(argv[0]))
1150 return;
1151 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001152 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001153 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1154 return;
1155 }
1156 mode = minor = major = 0;
1157 switch (argv[2][0]) {
1158 case 'p':
1159 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001160 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001161 nr = 3;
1162 break;
1163 case 'c':
1164 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001165 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001166 nr = 5;
1167 break;
1168 case 'b':
1169 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001170 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001171 nr = 5;
1172 break;
1173 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001174 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001175 nr = 0;
1176 }
1177 if (nr == 5) {
1178 major = strtoul(argv[3], argv+3, 0);
1179 minor = strtoul(argv[4], argv+4, 0);
1180 if (major > 255 || minor > 255 || argv[3][0] || argv[4][0])
1181 nr = 0;
1182 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001183 if (argc != nr)
1184 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001185 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001186 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001187 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001188 if (retval) {
1189 com_err(argv[0], retval, "");
1190 return;
1191 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001192 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001193 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001194 if (retval) {
1195 if (retval == EXT2_ET_DIR_NO_SPACE) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001196 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001197 if (!retval)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001198 retval = ext2fs_link(current_fs, cwd,
Theodore Ts'o085cb192001-05-09 06:09:12 +00001199 argv[1], newfile,
1200 filetype);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001201 }
1202 if (retval) {
1203 com_err(argv[1], retval, "");
1204 return;
1205 }
1206 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001207 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001208 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001209 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1210 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001211 memset(&inode, 0, sizeof(inode));
1212 inode.i_mode = mode;
1213 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1214 inode.i_block[0] = major*256+minor;
1215 inode.i_links_count = 1;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001216 if (debugfs_write_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001217 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001218}
1219
Theodore Ts'o3839e651997-04-26 13:21:57 +00001220void do_mkdir(int argc, char *argv[])
1221{
1222 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001223 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001224 char *name;
1225 errcode_t retval;
1226
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001227 if (common_args_process(argc, argv, 2, 2, "mkdir",
1228 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001229 return;
1230
Theodore Ts'o3839e651997-04-26 13:21:57 +00001231 cp = strrchr(argv[1], '/');
1232 if (cp) {
1233 *cp = 0;
1234 parent = string_to_inode(argv[1]);
1235 if (!parent) {
1236 com_err(argv[1], ENOENT, "");
1237 return;
1238 }
1239 name = cp+1;
1240 } else {
1241 parent = cwd;
1242 name = argv[1];
1243 }
1244
1245
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001246 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001247 if (retval) {
1248 com_err("ext2fs_mkdir", retval, "");
1249 return;
1250 }
1251
1252}
1253
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001254static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
1255 int blockcnt, void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001256{
Theodore Ts'o34436892001-12-22 13:06:02 -05001257 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001258
1259 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001260 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001261 return 0;
1262}
1263
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001264static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001265{
1266 struct ext2_inode inode_buf;
1267
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001268 if (debugfs_read_inode(inode, &inode_buf, 0))
1269 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001270 inode_buf.i_dtime = time(NULL);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001271 if (debugfs_write_inode(inode, &inode_buf, 0))
1272 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001273
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001274 ext2fs_block_iterate(current_fs, inode, 0, NULL,
1275 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001276 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001277 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1278 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001279}
1280
1281
1282void do_kill_file(int argc, char *argv[])
1283{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001284 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001285
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001286 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001287 return;
1288
Theodore Ts'o3839e651997-04-26 13:21:57 +00001289 kill_file_by_inode(inode_num);
1290}
1291
1292void do_rm(int argc, char *argv[])
1293{
1294 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001295 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001296 struct ext2_inode inode;
1297
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001298 if (common_args_process(argc, argv, 2, 2, "rm",
1299 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001300 return;
1301
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001302 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001303 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001304 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001305 return;
1306 }
1307
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001308 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001309 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001310
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001311 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001312 com_err(argv[0], 0, "file is a directory");
1313 return;
1314 }
1315
1316 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001317 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001318 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001319
1320 unlink_file_by_name(argv[1]);
1321 if (inode.i_links_count == 0)
1322 kill_file_by_inode(inode_num);
1323}
1324
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001325struct rd_struct {
1326 ext2_ino_t parent;
1327 int empty;
1328};
1329
1330static int rmdir_proc(ext2_ino_t dir,
1331 int entry,
1332 struct ext2_dir_entry *dirent,
1333 int offset,
1334 int blocksize,
1335 char *buf,
1336 void *private)
1337{
1338 struct rd_struct *rds = (struct rd_struct *) private;
1339
1340 if (dirent->inode == 0)
1341 return 0;
1342 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1343 return 0;
1344 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1345 (dirent->name[1] == '.')) {
1346 rds->parent = dirent->inode;
1347 return 0;
1348 }
1349 rds->empty = 0;
1350 return 0;
1351}
1352
1353void do_rmdir(int argc, char *argv[])
1354{
1355 int retval;
1356 ext2_ino_t inode_num;
1357 struct ext2_inode inode;
1358 struct rd_struct rds;
1359
1360 if (common_args_process(argc, argv, 2, 2, "rmdir",
1361 "<filename>", CHECK_FS_RW))
1362 return;
1363
1364 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1365 if (retval) {
1366 com_err(argv[0], retval, "while trying to resolve filename");
1367 return;
1368 }
1369
1370 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1371 return;
1372
1373 if (!LINUX_S_ISDIR(inode.i_mode)) {
1374 com_err(argv[0], 0, "file is not a directory");
1375 return;
1376 }
1377
1378 rds.parent = 0;
1379 rds.empty = 1;
1380
1381 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1382 0, rmdir_proc, &rds);
1383 if (retval) {
1384 com_err(argv[0], retval, "while iterating over directory");
1385 return;
1386 }
1387 if (rds.empty == 0) {
1388 com_err(argv[0], 0, "directory not empty");
1389 return;
1390 }
1391
1392 inode.i_links_count = 0;
1393 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1394 return;
1395
1396 unlink_file_by_name(argv[1]);
1397 kill_file_by_inode(inode_num);
1398
1399 if (rds.parent) {
1400 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1401 return;
1402 if (inode.i_links_count > 1)
1403 inode.i_links_count--;
1404 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1405 return;
1406 }
1407}
1408
Theodore Ts'o3839e651997-04-26 13:21:57 +00001409void do_show_debugfs_params(int argc, char *argv[])
1410{
1411 FILE *out = stdout;
1412
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001413 if (current_fs)
1414 fprintf(out, "Open mode: read-%s\n",
1415 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001416 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001417 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001418}
1419
1420void do_expand_dir(int argc, char *argv[])
1421{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001422 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001423 int retval;
1424
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001425 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001426 return;
1427
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001428 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001429 if (retval)
1430 com_err("ext2fs_expand_dir", retval, "");
1431 return;
1432}
1433
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001434void do_features(int argc, char *argv[])
1435{
1436 int i;
1437
1438 if (check_fs_open(argv[0]))
1439 return;
1440
1441 if ((argc != 1) && check_fs_read_write(argv[0]))
1442 return;
1443 for (i=1; i < argc; i++) {
1444 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001445 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001446 com_err(argv[0], 0, "Unknown feature: %s\n",
1447 argv[i]);
1448 else
1449 ext2fs_mark_super_dirty(current_fs);
1450 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001451 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001452}
1453
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001454void do_bmap(int argc, char *argv[])
1455{
1456 ext2_ino_t ino;
1457 blk_t blk, pblk;
1458 int err;
1459 errcode_t errcode;
1460
1461 if (common_args_process(argc, argv, 3, 3, argv[0],
1462 "<file> logical_blk", 0))
1463 return;
1464
1465 ino = string_to_inode(argv[1]);
1466 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1467
1468 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1469 if (errcode) {
1470 com_err("argv[0]", errcode,
1471 "while mapping logical block %d\n", blk);
1472 return;
1473 }
1474 printf("%d\n", pblk);
1475}
1476
1477
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001478static int source_file(const char *cmd_file, int sci_idx)
1479{
1480 FILE *f;
1481 char buf[256];
1482 char *cp;
1483 int exit_status = 0;
1484 int retval;
1485
1486 if (strcmp(cmd_file, "-") == 0)
1487 f = stdin;
1488 else {
1489 f = fopen(cmd_file, "r");
1490 if (!f) {
1491 perror(cmd_file);
1492 exit(1);
1493 }
1494 }
1495 setbuf(stdout, NULL);
1496 setbuf(stderr, NULL);
1497 while (!feof(f)) {
1498 if (fgets(buf, sizeof(buf), f) == NULL)
1499 break;
1500 cp = strchr(buf, '\n');
1501 if (cp)
1502 *cp = 0;
1503 cp = strchr(buf, '\r');
1504 if (cp)
1505 *cp = 0;
1506 printf("debugfs: %s\n", buf);
1507 retval = ss_execute_line(sci_idx, buf);
1508 if (retval) {
1509 ss_perror(sci_idx, retval, buf);
1510 exit_status++;
1511 }
1512 }
1513 return exit_status;
1514}
1515
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001516int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001517{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001518 int retval;
1519 int sci_idx;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001520 const char *usage = "Usage: debugfs [-b blocksize] [-s superblock] [-f cmd_file] [-R request] [-V] [[-w] [-c] device]";
Theodore Ts'of1304811997-10-25 03:51:53 +00001521 int c;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001522 int open_flags = 0;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001523 char *request = 0;
1524 int exit_status = 0;
1525 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001526 blk_t superblock = 0;
1527 blk_t blocksize = 0;
1528 int catastrophic = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001529
1530 initialize_ext2_error_table();
Theodore Ts'o0f8973f2001-08-27 12:44:23 -04001531 fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
1532 E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001533
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001534 while ((c = getopt (argc, argv, "iwcR:f:b:s:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001535 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001536 case 'R':
1537 request = optarg;
1538 break;
1539 case 'f':
1540 cmd_file = optarg;
1541 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001542 case 'i':
1543 open_flags |= EXT2_FLAG_IMAGE_FILE;
1544 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001545 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001546 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001547 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001548 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001549 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001550 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001551 break;
1552 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001553 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001554 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001555 break;
1556 case 'c':
1557 catastrophic = 1;
1558 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001559 case 'V':
1560 /* Print version number and exit */
1561 fprintf(stderr, "\tUsing %s\n",
1562 error_message(EXT2_ET_BASE));
1563 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001564 default:
1565 com_err(argv[0], 0, usage);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001566 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001567 }
1568 }
1569 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001570 open_filesystem(argv[optind], open_flags,
1571 superblock, blocksize, catastrophic);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001572
1573 sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
1574 &debug_cmds, &retval);
1575 if (retval) {
1576 ss_perror(sci_idx, retval, "creating invocation");
1577 exit(1);
1578 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001579 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001580
1581 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1582 if (retval) {
1583 ss_perror(sci_idx, retval, "adding standard requests");
1584 exit (1);
1585 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001586 if (request) {
1587 retval = 0;
1588 retval = ss_execute_line(sci_idx, request);
1589 if (retval) {
1590 ss_perror(sci_idx, retval, request);
1591 exit_status++;
1592 }
1593 } else if (cmd_file) {
1594 exit_status = source_file(cmd_file, sci_idx);
1595 } else {
1596 ss_listen(sci_idx);
1597 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001598
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001599 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001600 close_filesystem();
1601
Theodore Ts'oe5973042000-01-18 17:58:34 +00001602 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001603}