blob: 096bafef7bdb7b3200488aacf0de44b271436b45 [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'ofc6d9d51997-04-29 14:51:31 +0000104 optind = 0;
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'od3aea7d1999-09-14 20:55:37 +0000242 const char *usage = "Usage: show_super [-h]";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000243
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000244 optind = 0;
245#ifdef HAVE_OPTRESET
246 optreset = 1; /* Makes BSD getopt happy */
247#endif
248 while ((c = getopt (argc, argv, "h")) != EOF) {
249 switch (c) {
250 case 'h':
251 header_only++;
252 break;
253 default:
254 com_err(argv[0], 0, usage);
255 return;
256 }
257 }
258 if (optind != argc) {
259 com_err(argv[0], 0, usage);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000260 return;
261 }
262 if (check_fs_open(argv[0]))
263 return;
264 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000265
266 list_super2(current_fs->super, out);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000267
268 if (header_only) {
269 close_pager(out);
270 return;
271 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000272
273 gdp = &current_fs->group_desc[0];
274 for (i = 0; i < current_fs->group_desc_count; i++, gdp++)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000275 fprintf(out, " Group %2d: block bitmap at %d, "
276 "inode bitmap at %d, "
277 "inode table at %d\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000278 " %d free %s, "
279 "%d free %s, "
280 "%d used %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000281 i, gdp->bg_block_bitmap,
282 gdp->bg_inode_bitmap, gdp->bg_inode_table,
283 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000284 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000285 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000286 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000287 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000288 gdp->bg_used_dirs_count != 1 ? "directories"
289 : "directory");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000290 close_pager(out);
291}
292
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000293void do_dirty_filesys(int argc, char **argv)
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000294{
295 if (check_fs_open(argv[0]))
296 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000297 if (check_fs_read_write(argv[0]))
298 return;
299
300 if (argv[1] && !strcmp(argv[1], "-clean"))
301 current_fs->super->s_state |= EXT2_VALID_FS;
302 else
303 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000304 ext2fs_mark_super_dirty(current_fs);
305}
306
Theodore Ts'o3839e651997-04-26 13:21:57 +0000307struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700308 FILE *f;
309 e2_blkcnt_t total;
310 blk_t first_block, last_block;
311 e2_blkcnt_t first_bcnt, last_bcnt;
312 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000313};
314
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000315static void finish_range(struct list_blocks_struct *lb)
316{
317 if (lb->first_block == 0)
318 return;
319 if (lb->first)
320 lb->first = 0;
321 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000322 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000323 if (lb->first_block == lb->last_block)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100324 fprintf(lb->f, "(%lld):%d", lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000325 else
Theodore Ts'oe8981882001-11-30 11:51:30 +0100326 fprintf(lb->f, "(%lld-%lld):%d-%d", lb->first_bcnt,
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000327 lb->last_bcnt, lb->first_block, lb->last_block);
328 lb->first_block = 0;
329}
330
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700331static int list_blocks_proc(ext2_filsys fs, blk_t *blocknr,
332 e2_blkcnt_t blockcnt, blk_t ref_block,
333 int ref_offset, void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000334{
335 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
336
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000337 lb->total++;
338 if (blockcnt >= 0) {
339 /*
340 * See if we can add on to the existing range (if it exists)
341 */
342 if (lb->first_block &&
343 (lb->last_block+1 == *blocknr) &&
344 (lb->last_bcnt+1 == blockcnt)) {
345 lb->last_block = *blocknr;
346 lb->last_bcnt = blockcnt;
347 return 0;
348 }
349 /*
350 * Start a new range.
351 */
352 finish_range(lb);
353 lb->first_block = lb->last_block = *blocknr;
354 lb->first_bcnt = lb->last_bcnt = blockcnt;
355 return 0;
356 }
357 /*
358 * Not a normal block. Always force a new range.
359 */
360 finish_range(lb);
361 if (lb->first)
362 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000363 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000364 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000365 if (blockcnt == -1)
366 fprintf(lb->f, "(IND):%d", *blocknr);
367 else if (blockcnt == -2)
368 fprintf(lb->f, "(DIND):%d", *blocknr);
369 else if (blockcnt == -3)
370 fprintf(lb->f, "(TIND):%d", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000371 return 0;
372}
373
374
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000375static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000376{
377 struct list_blocks_struct lb;
378
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000379 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000380 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000381 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000382 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000383 lb.first = 1;
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700384 ext2fs_block_iterate2(current_fs, inode, 0, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000385 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000386 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000387 if (lb.total)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100388 fprintf(f, "\n%sTOTAL: %lld\n", prefix, lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000389 fprintf(f,"\n");
390}
391
392
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000393void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000394 ext2_ino_t inode_num, struct ext2_inode *inode,
395 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000396{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000397 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000398 char frag, fsize;
399 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000400
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000401 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
402 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
403 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
404 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
405 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
406 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
407 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000408 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000409 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
410 fprintf(out, "%sMode: %04o Flags: 0x%x Generation: %u\n",
411 prefix,
412 inode->i_mode & 0777, inode->i_flags, inode->i_generation);
413 fprintf(out, "%sUser: %5d Group: %5d Size: ",
414 prefix, inode->i_uid, inode->i_gid);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700415 if (LINUX_S_ISREG(inode->i_mode)) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000416 __u64 i_size = (inode->i_size |
417 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700418
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000419 fprintf(out, "%lld\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700420 } else
421 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000422 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000423 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000424 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
425 prefix,
426 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
427 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000428 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000429 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
430 prefix,
431 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
432 fprintf(out, "%sLinks: %d Blockcount: %d\n",
433 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000434 switch (os) {
435 case EXT2_OS_LINUX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000436 frag = inode->osd2.linux2.l_i_frag;
437 fsize = inode->osd2.linux2.l_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000438 break;
439 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000440 frag = inode->osd2.hurd2.h_i_frag;
441 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000442 break;
443 case EXT2_OS_MASIX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000444 frag = inode->osd2.masix2.m_i_frag;
445 fsize = inode->osd2.masix2.m_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000446 break;
447 default:
448 frag = fsize = 0;
449 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000450 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
451 prefix, inode->i_faddr, frag, fsize);
452 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
453 time_to_string(inode->i_ctime));
454 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
455 time_to_string(inode->i_atime));
456 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
457 time_to_string(inode->i_mtime));
458 if (inode->i_dtime)
459 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
460 time_to_string(inode->i_dtime));
461 if (LINUX_S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
462 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
463 (int) inode->i_size, (char *)inode->i_block);
464 else if (do_dump_blocks)
465 dump_blocks(out, prefix, inode_num);
466}
467
468static void dump_inode(ext2_ino_t inode_num, struct ext2_inode inode)
469{
470 FILE *out;
471
472 out = open_pager();
473 internal_dump_inode(out, "", inode_num, &inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000474 close_pager(out);
475}
476
Theodore Ts'o3839e651997-04-26 13:21:57 +0000477void do_stat(int argc, char *argv[])
478{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000479 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000480 struct ext2_inode inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000481
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500482 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000483 return;
484
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500485 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
486 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000487
488 dump_inode(inode,inode_buf);
489 return;
490}
491
492void do_chroot(int argc, char *argv[])
493{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000494 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000495 int retval;
496
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500497 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000498 return;
499
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000500 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000501 if (retval) {
502 com_err(argv[1], retval, "");
503 return;
504 }
505 root = inode;
506}
507
508void do_clri(int argc, char *argv[])
509{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000510 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000511 struct ext2_inode inode_buf;
512
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500513 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000514 return;
515
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500516 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000517 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000518 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500519 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000520 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000521}
522
523void do_freei(int argc, char *argv[])
524{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000525 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000526
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500527 if (common_inode_args_process(argc, argv, &inode,
528 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000529 return;
530
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000531 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000532 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000533 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
534 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000535}
536
537void do_seti(int argc, char *argv[])
538{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000539 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500541 if (common_inode_args_process(argc, argv, &inode,
542 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000543 return;
544
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000545 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000546 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000547 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
548 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000549}
550
551void do_testi(int argc, char *argv[])
552{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000553 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000554
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500555 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000556 return;
557
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000558 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000559 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000560 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000561 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000562}
563
Theodore Ts'o3839e651997-04-26 13:21:57 +0000564void do_freeb(int argc, char *argv[])
565{
566 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500567 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000568
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500569 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000570 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000571 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000572 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500573 while (count-- > 0) {
574 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
575 com_err(argv[0], 0, "Warning: block %d already clear",
576 block);
577 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
578 block++;
579 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000580 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000581}
582
583void do_setb(int argc, char *argv[])
584{
585 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500586 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000587
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500588 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000589 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000590 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000591 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500592 while (count-- > 0) {
593 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
594 com_err(argv[0], 0, "Warning: block %d already set",
595 block);
596 ext2fs_mark_block_bitmap(current_fs->block_map,block);
597 block++;
598 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000599 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000600}
601
602void do_testb(int argc, char *argv[])
603{
604 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500605 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000606
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500607 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000608 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500609 while (count-- > 0) {
610 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
611 printf("Block %d marked in use\n", block);
612 else
613 printf("Block %d not in use\n", block);
614 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000615 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000616}
617
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000618static void modify_u8(char *com, const char *prompt,
619 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000620{
621 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000622 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000623 char *tmp;
624
625 sprintf(buf, format, *val);
626 printf("%30s [%s] ", prompt, buf);
627 fgets(buf, sizeof(buf), stdin);
628 if (buf[strlen (buf) - 1] == '\n')
629 buf[strlen (buf) - 1] = '\0';
630 if (!buf[0])
631 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000632 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000633 if (*tmp)
634 com_err(com, 0, "Bad value - %s", buf);
635 else
636 *val = v;
637}
638
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000639static void modify_u16(char *com, const char *prompt,
640 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000641{
642 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000643 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000644 char *tmp;
645
646 sprintf(buf, format, *val);
647 printf("%30s [%s] ", prompt, buf);
648 fgets(buf, sizeof(buf), stdin);
649 if (buf[strlen (buf) - 1] == '\n')
650 buf[strlen (buf) - 1] = '\0';
651 if (!buf[0])
652 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000653 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000654 if (*tmp)
655 com_err(com, 0, "Bad value - %s", buf);
656 else
657 *val = v;
658}
659
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000660static void modify_u32(char *com, const char *prompt,
661 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000662{
663 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000664 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000665 char *tmp;
666
667 sprintf(buf, format, *val);
668 printf("%30s [%s] ", prompt, buf);
669 fgets(buf, sizeof(buf), stdin);
670 if (buf[strlen (buf) - 1] == '\n')
671 buf[strlen (buf) - 1] = '\0';
672 if (!buf[0])
673 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000674 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000675 if (*tmp)
676 com_err(com, 0, "Bad value - %s", buf);
677 else
678 *val = v;
679}
680
681
682void do_modify_inode(int argc, char *argv[])
683{
684 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000685 ext2_ino_t inode_num;
686 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000687 unsigned char *frag, *fsize;
688 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500689 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000690 const char *hex_format = "0x%x";
691 const char *octal_format = "0%o";
692 const char *decimal_format = "%d";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000693
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500694 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000695 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000696
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500697 os = current_fs->super->s_creator_os;
698
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500699 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000700 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000701
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000702 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
703 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
704 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
705 modify_u32(argv[0], "Size", decimal_format, &inode.i_size);
706 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
707 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
708 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
709 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
710 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
711 modify_u32(argv[0], "Block count", decimal_format, &inode.i_blocks);
712 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000713 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000714#if 0
715 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
716#endif
717 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000718 if (LINUX_S_ISDIR(inode.i_mode))
719 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
720 else
721 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000722
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000723 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000724 modify_u32(argv[0], "Translator Block",
725 decimal_format, &inode.osd1.hurd1.h_i_translator);
726
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000727 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000728 switch (os) {
729 case EXT2_OS_LINUX:
730 frag = &inode.osd2.linux2.l_i_frag;
731 fsize = &inode.osd2.linux2.l_i_fsize;
732 break;
733 case EXT2_OS_HURD:
734 frag = &inode.osd2.hurd2.h_i_frag;
735 fsize = &inode.osd2.hurd2.h_i_fsize;
736 break;
737 case EXT2_OS_MASIX:
738 frag = &inode.osd2.masix2.m_i_frag;
739 fsize = &inode.osd2.masix2.m_i_fsize;
740 break;
741 default:
742 frag = fsize = 0;
743 }
744 if (frag)
745 modify_u8(argv[0], "Fragment number", decimal_format, frag);
746 if (fsize)
747 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
748
Theodore Ts'o3839e651997-04-26 13:21:57 +0000749 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
750 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000751 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000752 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000753 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000754 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000755 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000756 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000757 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000758 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500759 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000760 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000761}
762
Theodore Ts'o3839e651997-04-26 13:21:57 +0000763void do_change_working_dir(int argc, char *argv[])
764{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000765 ext2_ino_t inode;
766 int retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000767
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500768 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000769 return;
770
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000771 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000772 if (retval) {
773 com_err(argv[1], retval, "");
774 return;
775 }
776 cwd = inode;
777 return;
778}
779
Theodore Ts'o3839e651997-04-26 13:21:57 +0000780void do_print_working_directory(int argc, char *argv[])
781{
782 int retval;
783 char *pathname = NULL;
784
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500785 if (common_args_process(argc, argv, 1, 1,
786 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000787 return;
788
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000789 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000790 if (retval) {
791 com_err(argv[0], retval,
792 "while trying to get pathname of cwd");
793 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000794 printf("[pwd] INODE: %6u PATH: %s\n", cwd, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000795 free(pathname);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000796 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000797 if (retval) {
798 com_err(argv[0], retval,
799 "while trying to get pathname of root");
800 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000801 printf("[root] INODE: %6u PATH: %s\n", root, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000802 free(pathname);
803 return;
804}
805
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000806static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000807{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000808 ext2_ino_t inode;
809 int retval;
810 ext2_ino_t dir;
811 char *dest, *cp, *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000812
813 /*
814 * Get the source inode
815 */
816 inode = string_to_inode(sourcename);
817 if (!inode)
818 return;
819 basename = strrchr(sourcename, '/');
820 if (basename)
821 basename++;
822 else
823 basename = sourcename;
824 /*
825 * Figure out the destination. First see if it exists and is
826 * a directory.
827 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000828 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000829 dest = basename;
830 else {
831 /*
832 * OK, it doesn't exist. See if it is
833 * '<dir>/basename' or 'basename'
834 */
835 cp = strrchr(destname, '/');
836 if (cp) {
837 *cp = 0;
838 dir = string_to_inode(destname);
839 if (!dir)
840 return;
841 dest = cp+1;
842 } else {
843 dir = cwd;
844 dest = destname;
845 }
846 }
847
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000848 retval = ext2fs_link(current_fs, dir, dest, inode, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000849 if (retval)
850 com_err("make_link", retval, "");
851 return;
852}
853
854
855void do_link(int argc, char *argv[])
856{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500857 if (common_args_process(argc, argv, 3, 3, "link",
858 "<source file> <dest_name>", CHECK_FS_RW))
859 return;
860
861 make_link(argv[1], argv[2]);
862}
863
864static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
865 int blockcnt, void *private)
866{
867 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500868
869 block = *blocknr;
870 ext2fs_block_alloc_stats(fs, block, +1);
871 return 0;
872}
873
874void do_undel(int argc, char *argv[])
875{
876 ext2_ino_t ino;
877 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500878
879 if (common_args_process(argc, argv, 3, 3, "undelete",
880 "<inode_num> <dest_name>",
881 CHECK_FS_RW | CHECK_FS_BITMAPS))
882 return;
883
884 ino = string_to_inode(argv[1]);
885 if (!ino)
886 return;
887
888 if (debugfs_read_inode(ino, &inode, argv[1]))
889 return;
890
891 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
892 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000893 return;
894 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500895
896 /*
897 * XXX this function doesn't handle changing the links count on the
898 * parent directory when undeleting a directory.
899 */
900 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
901 inode.i_dtime = 0;
902
903 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000904 return;
905
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500906 ext2fs_block_iterate(current_fs, ino, 0, NULL,
907 mark_blocks_proc, NULL);
908
909 ext2fs_inode_alloc_stats(current_fs, ino, +1);
910
Theodore Ts'o3839e651997-04-26 13:21:57 +0000911 make_link(argv[1], argv[2]);
912}
913
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000914static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000915{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000916 int retval;
917 ext2_ino_t dir;
918 char *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000919
920 basename = strrchr(filename, '/');
921 if (basename) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000922 *basename++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000923 dir = string_to_inode(filename);
924 if (!dir)
925 return;
926 } else {
927 dir = cwd;
928 basename = filename;
929 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000930 retval = ext2fs_unlink(current_fs, dir, basename, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000931 if (retval)
932 com_err("unlink_file_by_name", retval, "");
933 return;
934}
935
936void do_unlink(int argc, char *argv[])
937{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500938 if (common_args_process(argc, argv, 2, 2, "link",
939 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000940 return;
941
942 unlink_file_by_name(argv[1]);
943}
944
945void do_find_free_block(int argc, char *argv[])
946{
947 blk_t free_blk, goal;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500948 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000949 errcode_t retval;
950 char *tmp;
951
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500952 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
953 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000954 return;
955 }
956 if (check_fs_open(argv[0]))
957 return;
958
959 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500960 count = strtol(argv[1],&tmp,0);
961 if (*tmp) {
962 com_err(argv[0], 0, "Bad count - %s", argv[1]);
963 return;
964 }
965 } else
966 count = 1;
967
968 if (argc > 2) {
969 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000970 if (*tmp) {
971 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
972 return;
973 }
974 }
975 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000976 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000977
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500978 printf("Free blocks found: ");
979 free_blk = goal - 1;
980 while (count-- > 0) {
981 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
982 &free_blk);
983 if (retval) {
984 com_err("ext2fs_new_block", retval, "");
985 return;
986 } else
987 printf("%d ", free_blk);
988 }
989 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000990}
991
992void do_find_free_inode(int argc, char *argv[])
993{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000994 ext2_ino_t free_inode, dir;
995 int mode;
996 int retval;
997 char *tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000998
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000999 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1000 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001001 return;
1002 }
1003 if (check_fs_open(argv[0]))
1004 return;
1005
1006 if (argc > 1) {
1007 dir = strtol(argv[1], &tmp, 0);
1008 if (*tmp) {
1009 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1010 return;
1011 }
1012 }
1013 else
1014 dir = root;
1015 if (argc > 2) {
1016 mode = strtol(argv[2], &tmp, 0);
1017 if (*tmp) {
1018 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1019 return;
1020 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001021 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001022 mode = 010755;
1023
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001024 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001025 if (retval)
1026 com_err("ext2fs_new_inode", retval, "");
1027 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001028 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001029}
1030
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001031static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001032{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001033 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001034 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001035 int got;
1036 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001037 char buf[8192];
1038 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001039
Theodore Ts'o5a513841997-10-25 22:41:14 +00001040 retval = ext2fs_file_open(current_fs, newfile,
1041 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001042 if (retval)
1043 return retval;
1044
Theodore Ts'o5a513841997-10-25 22:41:14 +00001045 while (1) {
1046 got = read(fd, buf, sizeof(buf));
1047 if (got == 0)
1048 break;
1049 if (got < 0) {
1050 retval = errno;
1051 goto fail;
1052 }
1053 ptr = buf;
1054 while (got > 0) {
1055 retval = ext2fs_file_write(e2_file, ptr,
1056 got, &written);
1057 if (retval)
1058 goto fail;
1059
1060 got -= written;
1061 ptr += written;
1062 }
1063 }
1064 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001065 return retval;
1066
1067fail:
1068 (void) ext2fs_file_close(e2_file);
1069 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001070}
1071
Theodore Ts'o5a513841997-10-25 22:41:14 +00001072
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001073void do_write(int argc, char *argv[])
1074{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001075 int fd;
1076 struct stat statbuf;
1077 ext2_ino_t newfile;
1078 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001079 struct ext2_inode inode;
1080
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001081 if (common_args_process(argc, argv, 3, 3, "write",
1082 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001083 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001084
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001085 fd = open(argv[1], O_RDONLY);
1086 if (fd < 0) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001087 com_err(argv[1], errno, "");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001088 return;
1089 }
1090 if (fstat(fd, &statbuf) < 0) {
1091 com_err(argv[1], errno, "");
1092 close(fd);
1093 return;
1094 }
1095
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001096 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001097 if (retval) {
1098 com_err(argv[0], retval, "");
1099 close(fd);
1100 return;
1101 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001102 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001103 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1104 EXT2_FT_REG_FILE);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001105 if (retval) {
1106 com_err(argv[2], retval, "");
1107 close(fd);
1108 return;
1109 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001110 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001111 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001112 ext2fs_inode_alloc_stats(current_fs, newfile, +1);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001113 memset(&inode, 0, sizeof(inode));
1114 inode.i_mode = statbuf.st_mode;
1115 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1116 inode.i_links_count = 1;
1117 inode.i_size = statbuf.st_size;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001118 if (debugfs_write_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001119 close(fd);
1120 return;
1121 }
1122 if (LINUX_S_ISREG(inode.i_mode)) {
1123 retval = copy_file(fd, newfile);
1124 if (retval)
1125 com_err("copy_file", retval, "");
1126 }
1127 close(fd);
1128}
1129
1130void do_mknod(int argc, char *argv[])
1131{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001132 unsigned long mode, major, minor, nr;
1133 ext2_ino_t newfile;
1134 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001135 struct ext2_inode inode;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001136 int filetype;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001137
1138 if (check_fs_open(argv[0]))
1139 return;
1140 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001141 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001142 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1143 return;
1144 }
1145 mode = minor = major = 0;
1146 switch (argv[2][0]) {
1147 case 'p':
1148 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001149 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001150 nr = 3;
1151 break;
1152 case 'c':
1153 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001154 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001155 nr = 5;
1156 break;
1157 case 'b':
1158 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001159 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001160 nr = 5;
1161 break;
1162 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001163 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001164 nr = 0;
1165 }
1166 if (nr == 5) {
1167 major = strtoul(argv[3], argv+3, 0);
1168 minor = strtoul(argv[4], argv+4, 0);
1169 if (major > 255 || minor > 255 || argv[3][0] || argv[4][0])
1170 nr = 0;
1171 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001172 if (argc != nr)
1173 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001174 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001175 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001176 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001177 if (retval) {
1178 com_err(argv[0], retval, "");
1179 return;
1180 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001181 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001182 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001183 if (retval) {
1184 if (retval == EXT2_ET_DIR_NO_SPACE) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001185 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001186 if (!retval)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001187 retval = ext2fs_link(current_fs, cwd,
Theodore Ts'o085cb192001-05-09 06:09:12 +00001188 argv[1], newfile,
1189 filetype);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001190 }
1191 if (retval) {
1192 com_err(argv[1], retval, "");
1193 return;
1194 }
1195 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001196 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001197 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001198 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1199 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001200 memset(&inode, 0, sizeof(inode));
1201 inode.i_mode = mode;
1202 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1203 inode.i_block[0] = major*256+minor;
1204 inode.i_links_count = 1;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001205 if (debugfs_write_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001206 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001207}
1208
Theodore Ts'o3839e651997-04-26 13:21:57 +00001209void do_mkdir(int argc, char *argv[])
1210{
1211 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001212 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001213 char *name;
1214 errcode_t retval;
1215
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001216 if (common_args_process(argc, argv, 2, 2, "mkdir",
1217 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001218 return;
1219
Theodore Ts'o3839e651997-04-26 13:21:57 +00001220 cp = strrchr(argv[1], '/');
1221 if (cp) {
1222 *cp = 0;
1223 parent = string_to_inode(argv[1]);
1224 if (!parent) {
1225 com_err(argv[1], ENOENT, "");
1226 return;
1227 }
1228 name = cp+1;
1229 } else {
1230 parent = cwd;
1231 name = argv[1];
1232 }
1233
1234
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001235 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001236 if (retval) {
1237 com_err("ext2fs_mkdir", retval, "");
1238 return;
1239 }
1240
1241}
1242
1243void do_rmdir(int argc, char *argv[])
1244{
1245 printf("Unimplemented\n");
1246}
1247
1248
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001249static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
1250 int blockcnt, void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001251{
Theodore Ts'o34436892001-12-22 13:06:02 -05001252 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001253
1254 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001255 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001256 return 0;
1257}
1258
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001259static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001260{
1261 struct ext2_inode inode_buf;
1262
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001263 if (debugfs_read_inode(inode, &inode_buf, 0))
1264 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001265 inode_buf.i_dtime = time(NULL);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001266 if (debugfs_write_inode(inode, &inode_buf, 0))
1267 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001268
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001269 printf("Kill file by inode %u\n", inode);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001270 ext2fs_block_iterate(current_fs, inode, 0, NULL,
1271 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001272 printf("\n");
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001273 ext2fs_inode_alloc_stats(current_fs, inode, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001274}
1275
1276
1277void do_kill_file(int argc, char *argv[])
1278{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001279 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001280
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001281 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001282 return;
1283
Theodore Ts'o3839e651997-04-26 13:21:57 +00001284 kill_file_by_inode(inode_num);
1285}
1286
1287void do_rm(int argc, char *argv[])
1288{
1289 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001290 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001291 struct ext2_inode inode;
1292
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001293 if (common_args_process(argc, argv, 2, 2, "rm",
1294 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001295 return;
1296
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001297 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001298 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001299 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001300 return;
1301 }
1302
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001303 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001304 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001305
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001306 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001307 com_err(argv[0], 0, "file is a directory");
1308 return;
1309 }
1310
1311 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001312 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001313 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001314
1315 unlink_file_by_name(argv[1]);
1316 if (inode.i_links_count == 0)
1317 kill_file_by_inode(inode_num);
1318}
1319
1320void do_show_debugfs_params(int argc, char *argv[])
1321{
1322 FILE *out = stdout;
1323
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001324 if (current_fs)
1325 fprintf(out, "Open mode: read-%s\n",
1326 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001327 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001328 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001329}
1330
1331void do_expand_dir(int argc, char *argv[])
1332{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001333 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001334 int retval;
1335
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001336 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001337 return;
1338
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001339 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001340 if (retval)
1341 com_err("ext2fs_expand_dir", retval, "");
1342 return;
1343}
1344
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001345void do_features(int argc, char *argv[])
1346{
1347 int i;
1348
1349 if (check_fs_open(argv[0]))
1350 return;
1351
1352 if ((argc != 1) && check_fs_read_write(argv[0]))
1353 return;
1354 for (i=1; i < argc; i++) {
1355 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001356 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001357 com_err(argv[0], 0, "Unknown feature: %s\n",
1358 argv[i]);
1359 else
1360 ext2fs_mark_super_dirty(current_fs);
1361 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001362 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001363}
1364
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001365void do_bmap(int argc, char *argv[])
1366{
1367 ext2_ino_t ino;
1368 blk_t blk, pblk;
1369 int err;
1370 errcode_t errcode;
1371
1372 if (common_args_process(argc, argv, 3, 3, argv[0],
1373 "<file> logical_blk", 0))
1374 return;
1375
1376 ino = string_to_inode(argv[1]);
1377 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1378
1379 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1380 if (errcode) {
1381 com_err("argv[0]", errcode,
1382 "while mapping logical block %d\n", blk);
1383 return;
1384 }
1385 printf("%d\n", pblk);
1386}
1387
1388
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001389static int source_file(const char *cmd_file, int sci_idx)
1390{
1391 FILE *f;
1392 char buf[256];
1393 char *cp;
1394 int exit_status = 0;
1395 int retval;
1396
1397 if (strcmp(cmd_file, "-") == 0)
1398 f = stdin;
1399 else {
1400 f = fopen(cmd_file, "r");
1401 if (!f) {
1402 perror(cmd_file);
1403 exit(1);
1404 }
1405 }
1406 setbuf(stdout, NULL);
1407 setbuf(stderr, NULL);
1408 while (!feof(f)) {
1409 if (fgets(buf, sizeof(buf), f) == NULL)
1410 break;
1411 cp = strchr(buf, '\n');
1412 if (cp)
1413 *cp = 0;
1414 cp = strchr(buf, '\r');
1415 if (cp)
1416 *cp = 0;
1417 printf("debugfs: %s\n", buf);
1418 retval = ss_execute_line(sci_idx, buf);
1419 if (retval) {
1420 ss_perror(sci_idx, retval, buf);
1421 exit_status++;
1422 }
1423 }
1424 return exit_status;
1425}
1426
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001427int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001428{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001429 int retval;
1430 int sci_idx;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001431 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 +00001432 int c;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001433 int open_flags = 0;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001434 char *request = 0;
1435 int exit_status = 0;
1436 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001437 blk_t superblock = 0;
1438 blk_t blocksize = 0;
1439 int catastrophic = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001440
1441 initialize_ext2_error_table();
Theodore Ts'o0f8973f2001-08-27 12:44:23 -04001442 fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
1443 E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001444
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001445 while ((c = getopt (argc, argv, "iwcR:f:b:s:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001446 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001447 case 'R':
1448 request = optarg;
1449 break;
1450 case 'f':
1451 cmd_file = optarg;
1452 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001453 case 'i':
1454 open_flags |= EXT2_FLAG_IMAGE_FILE;
1455 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001456 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001457 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001458 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001459 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001460 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001461 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001462 break;
1463 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001464 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001465 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001466 break;
1467 case 'c':
1468 catastrophic = 1;
1469 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001470 case 'V':
1471 /* Print version number and exit */
1472 fprintf(stderr, "\tUsing %s\n",
1473 error_message(EXT2_ET_BASE));
1474 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001475 default:
1476 com_err(argv[0], 0, usage);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001477 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001478 }
1479 }
1480 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001481 open_filesystem(argv[optind], open_flags,
1482 superblock, blocksize, catastrophic);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001483
1484 sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
1485 &debug_cmds, &retval);
1486 if (retval) {
1487 ss_perror(sci_idx, retval, "creating invocation");
1488 exit(1);
1489 }
1490
1491 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1492 if (retval) {
1493 ss_perror(sci_idx, retval, "adding standard requests");
1494 exit (1);
1495 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001496 if (request) {
1497 retval = 0;
1498 retval = ss_execute_line(sci_idx, request);
1499 if (retval) {
1500 ss_perror(sci_idx, retval, request);
1501 exit_status++;
1502 }
1503 } else if (cmd_file) {
1504 exit_status = source_file(cmd_file, sci_idx);
1505 } else {
1506 ss_listen(sci_idx);
1507 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001508
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001509 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001510 close_filesystem();
1511
Theodore Ts'oe5973042000-01-18 17:58:34 +00001512 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001513}