blob: 2752ff843e28f64f0e49e77e064094b3530afd87 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * debugfs.c --- a program which allows you to attach an ext2fs
3 * filesystem and play with it.
4 *
5 * Copyright (C) 1993 Theodore Ts'o. This file may be redistributed
6 * under the terms of the GNU Public License.
7 *
8 * Modifications by Robert Sanders <gt8134b@prism.gatech.edu>
9 */
10
11#include <stdio.h>
12#include <unistd.h>
13#include <stdlib.h>
14#include <ctype.h>
15#include <string.h>
16#include <time.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000017#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <getopt.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000019#else
20extern int optind;
21extern char *optarg;
22#endif
Theodore Ts'o50e1e101997-04-26 13:58:21 +000023#ifdef HAVE_ERRNO_H
24#include <errno.h>
25#endif
26#include <fcntl.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000027#include <sys/types.h>
28#include <sys/stat.h>
29
30#include "et/com_err.h"
31#include "ss/ss.h"
32#include "debugfs.h"
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000033#include "uuid/uuid.h"
Theodore Ts'of68aa411999-10-26 14:20:22 +000034#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000035
Theodore Ts'o818180c1998-06-27 05:11:14 +000036#include "../version.h"
37
Theodore Ts'o3839e651997-04-26 13:21:57 +000038extern ss_request_table debug_cmds;
39
Theodore Ts'ob044c2e2001-01-11 15:26:39 +000040ext2_filsys current_fs = NULL;
41ext2_ino_t root, cwd;
Theodore Ts'o3839e651997-04-26 13:21:57 +000042
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000043static void open_filesystem(char *device, int open_flags, blk_t superblock,
44 blk_t blocksize, int catastrophic)
Theodore Ts'o3839e651997-04-26 13:21:57 +000045{
46 int retval;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000047
48 if (superblock != 0 && blocksize == 0) {
49 com_err(device, 0, "if you specify the superblock, you must also specify the block size");
50 current_fs = NULL;
51 return;
52 }
53
54 if (catastrophic && (open_flags & EXT2_FLAG_RW)) {
55 com_err(device, 0,
56 "opening read-only because of catastrophic mode");
57 open_flags &= ~EXT2_FLAG_RW;
58 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000059
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000060 retval = ext2fs_open(device, open_flags, superblock, blocksize,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000061 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000062 if (retval) {
63 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000064 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000065 return;
66 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000067
68 if (catastrophic)
69 com_err(device, 0, "catastrophic mode - not reading inode or group bitmaps");
70 else {
71 retval = ext2fs_read_inode_bitmap(current_fs);
72 if (retval) {
73 com_err(device, retval, "while reading inode bitmap");
74 goto errout;
75 }
76 retval = ext2fs_read_block_bitmap(current_fs);
77 if (retval) {
78 com_err(device, retval, "while reading block bitmap");
79 goto errout;
80 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000081 }
82 root = cwd = EXT2_ROOT_INO;
83 return;
84
85errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000086 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000087 if (retval)
88 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000089 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000090}
91
92void do_open_filesys(int argc, char **argv)
93{
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000094 const char *usage = "Usage: open [-s superblock] [-b blocksize] [-c] [-w] <device>";
Theodore Ts'oe1018ee2002-01-03 04:55:25 -050095 int c, err;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000096 int catastrophic = 0;
97 blk_t superblock = 0;
98 blk_t blocksize = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000099 int open_flags = 0;
100
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400101 reset_getopt();
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000102 while ((c = getopt (argc, argv, "iwfcb:s:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000103 switch (c) {
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000104 case 'i':
105 open_flags |= EXT2_FLAG_IMAGE_FILE;
106 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000107 case 'w':
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000108 open_flags |= EXT2_FLAG_RW;
109 break;
110 case 'f':
111 open_flags |= EXT2_FLAG_FORCE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000112 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000113 case 'c':
114 catastrophic = 1;
115 break;
116 case 'b':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500117 blocksize = parse_ulong(optarg, argv[0],
118 "block size", &err);
119 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000120 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000121 break;
122 case 's':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500123 superblock = parse_ulong(optarg, argv[0],
124 "superblock number", &err);
125 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000126 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000127 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000128 default:
129 com_err(argv[0], 0, usage);
130 return;
131 }
132 }
133 if (optind != argc-1) {
134 com_err(argv[0], 0, usage);
135 return;
136 }
137 if (check_fs_not_open(argv[0]))
138 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000139 open_filesystem(argv[optind], open_flags,
140 superblock, blocksize, catastrophic);
141}
142
143void do_lcd(int argc, char **argv)
144{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500145 if (common_args_process(argc, argv, 2, 2, "lcd",
146 "<native dir>", 0))
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000147 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000148
149 if (chdir(argv[1]) == -1) {
150 com_err(argv[0], errno,
151 "while trying to change native directory to %s",
152 argv[1]);
153 return;
154 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000155}
156
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000157static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000158{
159 int retval;
160
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000161 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
162 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163 if (retval)
164 com_err("ext2fs_write_inode_bitmap", retval, "");
165 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000166 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
167 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000168 if (retval)
169 com_err("ext2fs_write_block_bitmap", retval, "");
170 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000171 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000172 if (retval)
173 com_err("ext2fs_close", retval, "");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000174 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 return;
176}
177
178void do_close_filesys(int argc, char **argv)
179{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500180 if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000181 return;
182 close_filesystem();
183}
184
185void do_init_filesys(int argc, char **argv)
186{
Theodore Ts'o3839e651997-04-26 13:21:57 +0000187 struct ext2_super_block param;
188 errcode_t retval;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500189 int err;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500191 if (common_args_process(argc, argv, 3, 3, "initialize",
192 "<device> <blocksize>", CHECK_FS_NOTOPEN))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000193 return;
194
195 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'ob38cd282002-05-11 22:13:20 -0400196 param.s_blocks_count = parse_ulong(argv[2], argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500197 "blocks count", &err);
198 if (err)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000199 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000200 retval = ext2fs_initialize(argv[1], 0, &param,
201 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000202 if (retval) {
203 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000204 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 return;
206 }
207 root = cwd = EXT2_ROOT_INO;
208 return;
209}
210
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000211static void print_features(struct ext2_super_block * s, FILE *f)
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000212{
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000213 int i, j, printed=0;
Theodore Ts'o092c3de2001-05-14 11:20:48 +0000214 __u32 *mask = &s->s_feature_compat, m;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000215
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000216 fputs("Filesystem features:", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000217 for (i=0; i <3; i++,mask++) {
218 for (j=0,m=1; j < 32; j++, m<<=1) {
219 if (*mask & m) {
220 fprintf(f, " %s", e2p_feature2string(i, m));
221 printed++;
222 }
223 }
224 }
225 if (printed == 0)
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000226 fputs("(none)", f);
227 fputs("\n", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000228}
229
Theodore Ts'o3839e651997-04-26 13:21:57 +0000230void do_show_super_stats(int argc, char *argv[])
231{
Theodore Ts'o54434922003-12-07 01:28:50 -0500232 dgrp_t i;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000233 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000234 struct ext2_group_desc *gdp;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000235 int c, header_only = 0;
Theodore Ts'o34be9602002-07-15 16:56:41 -0400236 int numdirs = 0;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000237 const char *usage = "Usage: show_super [-h]";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000238
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400239 reset_getopt();
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000240 while ((c = getopt (argc, argv, "h")) != EOF) {
241 switch (c) {
242 case 'h':
243 header_only++;
244 break;
245 default:
246 com_err(argv[0], 0, usage);
247 return;
248 }
249 }
250 if (optind != argc) {
251 com_err(argv[0], 0, usage);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000252 return;
253 }
254 if (check_fs_open(argv[0]))
255 return;
256 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000257
258 list_super2(current_fs->super, out);
Theodore Ts'o34be9602002-07-15 16:56:41 -0400259 for (i=0; i < current_fs->group_desc_count; i++)
260 numdirs += current_fs->group_desc[i].bg_used_dirs_count;
261 fprintf(out, "Directories: %d\n", numdirs);
262
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000263 if (header_only) {
264 close_pager(out);
265 return;
266 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000267
268 gdp = &current_fs->group_desc[0];
269 for (i = 0; i < current_fs->group_desc_count; i++, gdp++)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000270 fprintf(out, " Group %2d: block bitmap at %d, "
271 "inode bitmap at %d, "
272 "inode table at %d\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000273 " %d free %s, "
274 "%d free %s, "
275 "%d used %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000276 i, gdp->bg_block_bitmap,
277 gdp->bg_inode_bitmap, gdp->bg_inode_table,
278 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000279 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000280 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000281 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000282 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000283 gdp->bg_used_dirs_count != 1 ? "directories"
284 : "directory");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000285 close_pager(out);
286}
287
Theodore Ts'o54434922003-12-07 01:28:50 -0500288void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
289 char **argv EXT2FS_ATTR((unused)))
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000290{
291 if (check_fs_open(argv[0]))
292 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000293 if (check_fs_read_write(argv[0]))
294 return;
295
296 if (argv[1] && !strcmp(argv[1], "-clean"))
297 current_fs->super->s_state |= EXT2_VALID_FS;
298 else
299 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000300 ext2fs_mark_super_dirty(current_fs);
301}
302
Theodore Ts'o3839e651997-04-26 13:21:57 +0000303struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700304 FILE *f;
305 e2_blkcnt_t total;
306 blk_t first_block, last_block;
307 e2_blkcnt_t first_bcnt, last_bcnt;
308 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000309};
310
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000311static void finish_range(struct list_blocks_struct *lb)
312{
313 if (lb->first_block == 0)
314 return;
315 if (lb->first)
316 lb->first = 0;
317 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000318 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000319 if (lb->first_block == lb->last_block)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100320 fprintf(lb->f, "(%lld):%d", lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000321 else
Theodore Ts'oe8981882001-11-30 11:51:30 +0100322 fprintf(lb->f, "(%lld-%lld):%d-%d", lb->first_bcnt,
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000323 lb->last_bcnt, lb->first_block, lb->last_block);
324 lb->first_block = 0;
325}
326
Theodore Ts'o54434922003-12-07 01:28:50 -0500327static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
328 blk_t *blocknr, e2_blkcnt_t blockcnt,
329 blk_t ref_block EXT2FS_ATTR((unused)),
330 int ref_offset EXT2FS_ATTR((unused)),
331 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000332{
333 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
334
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000335 lb->total++;
336 if (blockcnt >= 0) {
337 /*
338 * See if we can add on to the existing range (if it exists)
339 */
340 if (lb->first_block &&
341 (lb->last_block+1 == *blocknr) &&
342 (lb->last_bcnt+1 == blockcnt)) {
343 lb->last_block = *blocknr;
344 lb->last_bcnt = blockcnt;
345 return 0;
346 }
347 /*
348 * Start a new range.
349 */
350 finish_range(lb);
351 lb->first_block = lb->last_block = *blocknr;
352 lb->first_bcnt = lb->last_bcnt = blockcnt;
353 return 0;
354 }
355 /*
356 * Not a normal block. Always force a new range.
357 */
358 finish_range(lb);
359 if (lb->first)
360 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000361 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000362 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000363 if (blockcnt == -1)
364 fprintf(lb->f, "(IND):%d", *blocknr);
365 else if (blockcnt == -2)
366 fprintf(lb->f, "(DIND):%d", *blocknr);
367 else if (blockcnt == -3)
368 fprintf(lb->f, "(TIND):%d", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000369 return 0;
370}
371
372
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000373static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000374{
375 struct list_blocks_struct lb;
376
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000377 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000378 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000379 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000380 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000381 lb.first = 1;
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700382 ext2fs_block_iterate2(current_fs, inode, 0, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000383 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000384 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000385 if (lb.total)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100386 fprintf(f, "\n%sTOTAL: %lld\n", prefix, lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000387 fprintf(f,"\n");
388}
389
390
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000391void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000392 ext2_ino_t inode_num, struct ext2_inode *inode,
393 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000394{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000395 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000396 char frag, fsize;
397 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000398
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000399 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
400 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
401 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
402 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
403 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
404 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
405 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000406 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000407 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
408 fprintf(out, "%sMode: %04o Flags: 0x%x Generation: %u\n",
409 prefix,
410 inode->i_mode & 0777, inode->i_flags, inode->i_generation);
411 fprintf(out, "%sUser: %5d Group: %5d Size: ",
412 prefix, inode->i_uid, inode->i_gid);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700413 if (LINUX_S_ISREG(inode->i_mode)) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000414 __u64 i_size = (inode->i_size |
415 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700416
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000417 fprintf(out, "%lld\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700418 } else
419 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000420 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000421 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000422 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
423 prefix,
424 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
425 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000426 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000427 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
428 prefix,
429 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
430 fprintf(out, "%sLinks: %d Blockcount: %d\n",
431 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000432 switch (os) {
433 case EXT2_OS_LINUX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000434 frag = inode->osd2.linux2.l_i_frag;
435 fsize = inode->osd2.linux2.l_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000436 break;
437 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000438 frag = inode->osd2.hurd2.h_i_frag;
439 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000440 break;
441 case EXT2_OS_MASIX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000442 frag = inode->osd2.masix2.m_i_frag;
443 fsize = inode->osd2.masix2.m_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000444 break;
445 default:
446 frag = fsize = 0;
447 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000448 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
449 prefix, inode->i_faddr, frag, fsize);
450 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
451 time_to_string(inode->i_ctime));
452 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
453 time_to_string(inode->i_atime));
454 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
455 time_to_string(inode->i_mtime));
456 if (inode->i_dtime)
457 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
458 time_to_string(inode->i_dtime));
Theodore Ts'o795afc42004-02-21 20:54:31 -0500459 if (LINUX_S_ISLNK(inode->i_mode) && ext2fs_inode_data_blocks(current_fs,inode) == 0)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000460 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
461 (int) inode->i_size, (char *)inode->i_block);
Theodore Ts'o2d107692004-02-23 22:30:54 -0500462 else if (LINUX_S_ISBLK(inode->i_mode) || LINUX_S_ISCHR(inode->i_mode)) {
463 int major, minor;
464 const char *devnote;
465
466 if (inode->i_block[0]) {
467 major = (inode->i_block[0] >> 8) & 255;
468 minor = inode->i_block[0] & 255;
469 devnote = "";
470 } else {
471 major = (inode->i_block[1] & 0xfff00) >> 8;
472 minor = ((inode->i_block[1] & 0xff) |
473 ((inode->i_block[1] >> 12) & 0xfff00));
474 devnote = "(New-style) ";
475 }
476 fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
477 devnote, major, minor, major, minor);
478 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000479 else if (do_dump_blocks)
480 dump_blocks(out, prefix, inode_num);
481}
482
483static void dump_inode(ext2_ino_t inode_num, struct ext2_inode inode)
484{
485 FILE *out;
486
487 out = open_pager();
488 internal_dump_inode(out, "", inode_num, &inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000489 close_pager(out);
490}
491
Theodore Ts'o3839e651997-04-26 13:21:57 +0000492void do_stat(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 struct ext2_inode inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000496
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'oe1018ee2002-01-03 04:55:25 -0500500 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
501 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000502
503 dump_inode(inode,inode_buf);
504 return;
505}
506
507void do_chroot(int argc, char *argv[])
508{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000509 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000510 int retval;
511
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500512 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000513 return;
514
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000515 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000516 if (retval) {
517 com_err(argv[1], retval, "");
518 return;
519 }
520 root = inode;
521}
522
523void do_clri(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 struct ext2_inode inode_buf;
527
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500528 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000529 return;
530
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500531 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000532 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000533 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500534 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000535 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000536}
537
538void do_freei(int argc, char *argv[])
539{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000540 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000541
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500542 if (common_inode_args_process(argc, argv, &inode,
543 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000544 return;
545
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000546 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000547 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000548 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
549 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550}
551
552void do_seti(int argc, char *argv[])
553{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000554 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000555
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500556 if (common_inode_args_process(argc, argv, &inode,
557 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000558 return;
559
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000560 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000561 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000562 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
563 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000564}
565
566void do_testi(int argc, char *argv[])
567{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000568 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000569
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500570 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000571 return;
572
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000573 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000574 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000575 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000576 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000577}
578
Theodore Ts'o3839e651997-04-26 13:21:57 +0000579void do_freeb(int argc, char *argv[])
580{
581 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500582 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000583
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500584 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000585 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000586 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000587 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500588 while (count-- > 0) {
589 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
590 com_err(argv[0], 0, "Warning: block %d already clear",
591 block);
592 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
593 block++;
594 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000595 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000596}
597
598void do_setb(int argc, char *argv[])
599{
600 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500601 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000602
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500603 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000604 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000605 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000606 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500607 while (count-- > 0) {
608 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
609 com_err(argv[0], 0, "Warning: block %d already set",
610 block);
611 ext2fs_mark_block_bitmap(current_fs->block_map,block);
612 block++;
613 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000614 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000615}
616
617void do_testb(int argc, char *argv[])
618{
619 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500620 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000621
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500622 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000623 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500624 while (count-- > 0) {
625 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
626 printf("Block %d marked in use\n", block);
627 else
628 printf("Block %d not in use\n", block);
629 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000630 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000631}
632
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000633static void modify_u8(char *com, const char *prompt,
634 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000635{
636 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000637 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000638 char *tmp;
639
640 sprintf(buf, format, *val);
641 printf("%30s [%s] ", prompt, buf);
642 fgets(buf, sizeof(buf), stdin);
643 if (buf[strlen (buf) - 1] == '\n')
644 buf[strlen (buf) - 1] = '\0';
645 if (!buf[0])
646 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000647 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000648 if (*tmp)
649 com_err(com, 0, "Bad value - %s", buf);
650 else
651 *val = v;
652}
653
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000654static void modify_u16(char *com, const char *prompt,
655 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000656{
657 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000658 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000659 char *tmp;
660
661 sprintf(buf, format, *val);
662 printf("%30s [%s] ", prompt, buf);
663 fgets(buf, sizeof(buf), stdin);
664 if (buf[strlen (buf) - 1] == '\n')
665 buf[strlen (buf) - 1] = '\0';
666 if (!buf[0])
667 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000668 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000669 if (*tmp)
670 com_err(com, 0, "Bad value - %s", buf);
671 else
672 *val = v;
673}
674
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000675static void modify_u32(char *com, const char *prompt,
676 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000677{
678 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000679 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000680 char *tmp;
681
682 sprintf(buf, format, *val);
683 printf("%30s [%s] ", prompt, buf);
684 fgets(buf, sizeof(buf), stdin);
685 if (buf[strlen (buf) - 1] == '\n')
686 buf[strlen (buf) - 1] = '\0';
687 if (!buf[0])
688 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000689 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000690 if (*tmp)
691 com_err(com, 0, "Bad value - %s", buf);
692 else
693 *val = v;
694}
695
696
697void do_modify_inode(int argc, char *argv[])
698{
699 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000700 ext2_ino_t inode_num;
701 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000702 unsigned char *frag, *fsize;
703 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500704 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000705 const char *hex_format = "0x%x";
706 const char *octal_format = "0%o";
707 const char *decimal_format = "%d";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000708
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500709 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000710 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000711
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500712 os = current_fs->super->s_creator_os;
713
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500714 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000715 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000716
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000717 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
718 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
719 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
720 modify_u32(argv[0], "Size", decimal_format, &inode.i_size);
721 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
722 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
723 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
724 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
725 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
726 modify_u32(argv[0], "Block count", decimal_format, &inode.i_blocks);
727 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000728 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000729#if 0
730 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
731#endif
732 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000733 if (LINUX_S_ISDIR(inode.i_mode))
734 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
735 else
736 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000737
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000738 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000739 modify_u32(argv[0], "Translator Block",
740 decimal_format, &inode.osd1.hurd1.h_i_translator);
741
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000742 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000743 switch (os) {
744 case EXT2_OS_LINUX:
745 frag = &inode.osd2.linux2.l_i_frag;
746 fsize = &inode.osd2.linux2.l_i_fsize;
747 break;
748 case EXT2_OS_HURD:
749 frag = &inode.osd2.hurd2.h_i_frag;
750 fsize = &inode.osd2.hurd2.h_i_fsize;
751 break;
752 case EXT2_OS_MASIX:
753 frag = &inode.osd2.masix2.m_i_frag;
754 fsize = &inode.osd2.masix2.m_i_fsize;
755 break;
756 default:
757 frag = fsize = 0;
758 }
759 if (frag)
760 modify_u8(argv[0], "Fragment number", decimal_format, frag);
761 if (fsize)
762 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
763
Theodore Ts'o3839e651997-04-26 13:21:57 +0000764 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
765 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000766 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000767 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000768 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000769 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000770 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000771 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000772 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000773 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500774 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000775 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000776}
777
Theodore Ts'o3839e651997-04-26 13:21:57 +0000778void do_change_working_dir(int argc, char *argv[])
779{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000780 ext2_ino_t inode;
781 int retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000782
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500783 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000784 return;
785
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000786 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000787 if (retval) {
788 com_err(argv[1], retval, "");
789 return;
790 }
791 cwd = inode;
792 return;
793}
794
Theodore Ts'o3839e651997-04-26 13:21:57 +0000795void do_print_working_directory(int argc, char *argv[])
796{
797 int retval;
798 char *pathname = NULL;
799
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500800 if (common_args_process(argc, argv, 1, 1,
801 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000802 return;
803
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000804 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000805 if (retval) {
806 com_err(argv[0], retval,
807 "while trying to get pathname of cwd");
808 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000809 printf("[pwd] INODE: %6u PATH: %s\n", cwd, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000810 free(pathname);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000811 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000812 if (retval) {
813 com_err(argv[0], retval,
814 "while trying to get pathname of root");
815 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000816 printf("[root] INODE: %6u PATH: %s\n", root, pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000817 free(pathname);
818 return;
819}
820
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000821static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000822{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000823 ext2_ino_t inode;
824 int retval;
825 ext2_ino_t dir;
826 char *dest, *cp, *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000827
828 /*
829 * Get the source inode
830 */
831 inode = string_to_inode(sourcename);
832 if (!inode)
833 return;
834 basename = strrchr(sourcename, '/');
835 if (basename)
836 basename++;
837 else
838 basename = sourcename;
839 /*
840 * Figure out the destination. First see if it exists and is
841 * a directory.
842 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000843 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000844 dest = basename;
845 else {
846 /*
847 * OK, it doesn't exist. See if it is
848 * '<dir>/basename' or 'basename'
849 */
850 cp = strrchr(destname, '/');
851 if (cp) {
852 *cp = 0;
853 dir = string_to_inode(destname);
854 if (!dir)
855 return;
856 dest = cp+1;
857 } else {
858 dir = cwd;
859 dest = destname;
860 }
861 }
862
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000863 retval = ext2fs_link(current_fs, dir, dest, inode, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000864 if (retval)
865 com_err("make_link", retval, "");
866 return;
867}
868
869
870void do_link(int argc, char *argv[])
871{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500872 if (common_args_process(argc, argv, 3, 3, "link",
873 "<source file> <dest_name>", CHECK_FS_RW))
874 return;
875
876 make_link(argv[1], argv[2]);
877}
878
879static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -0500880 int blockcnt EXT2FS_ATTR((unused)),
881 void *private EXT2FS_ATTR((unused)))
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500882{
883 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500884
885 block = *blocknr;
886 ext2fs_block_alloc_stats(fs, block, +1);
887 return 0;
888}
889
890void do_undel(int argc, char *argv[])
891{
892 ext2_ino_t ino;
893 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500894
895 if (common_args_process(argc, argv, 3, 3, "undelete",
896 "<inode_num> <dest_name>",
897 CHECK_FS_RW | CHECK_FS_BITMAPS))
898 return;
899
900 ino = string_to_inode(argv[1]);
901 if (!ino)
902 return;
903
904 if (debugfs_read_inode(ino, &inode, argv[1]))
905 return;
906
907 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
908 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000909 return;
910 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500911
912 /*
913 * XXX this function doesn't handle changing the links count on the
914 * parent directory when undeleting a directory.
915 */
916 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
917 inode.i_dtime = 0;
918
919 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000920 return;
921
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500922 ext2fs_block_iterate(current_fs, ino, 0, NULL,
923 mark_blocks_proc, NULL);
924
Theodore Ts'od7f64ae2002-07-09 01:27:05 -0400925 ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500926
Theodore Ts'o3839e651997-04-26 13:21:57 +0000927 make_link(argv[1], argv[2]);
928}
929
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000930static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000931{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000932 int retval;
933 ext2_ino_t dir;
934 char *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000935
936 basename = strrchr(filename, '/');
937 if (basename) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000938 *basename++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000939 dir = string_to_inode(filename);
940 if (!dir)
941 return;
942 } else {
943 dir = cwd;
944 basename = filename;
945 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000946 retval = ext2fs_unlink(current_fs, dir, basename, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000947 if (retval)
948 com_err("unlink_file_by_name", retval, "");
949 return;
950}
951
952void do_unlink(int argc, char *argv[])
953{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500954 if (common_args_process(argc, argv, 2, 2, "link",
955 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000956 return;
957
958 unlink_file_by_name(argv[1]);
959}
960
961void do_find_free_block(int argc, char *argv[])
962{
963 blk_t free_blk, goal;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500964 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000965 errcode_t retval;
966 char *tmp;
967
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500968 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
969 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000970 return;
971 }
972 if (check_fs_open(argv[0]))
973 return;
974
975 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500976 count = strtol(argv[1],&tmp,0);
977 if (*tmp) {
978 com_err(argv[0], 0, "Bad count - %s", argv[1]);
979 return;
980 }
981 } else
982 count = 1;
983
984 if (argc > 2) {
985 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000986 if (*tmp) {
987 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
988 return;
989 }
990 }
991 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000992 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000993
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500994 printf("Free blocks found: ");
995 free_blk = goal - 1;
996 while (count-- > 0) {
997 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
998 &free_blk);
999 if (retval) {
1000 com_err("ext2fs_new_block", retval, "");
1001 return;
1002 } else
1003 printf("%d ", free_blk);
1004 }
1005 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001006}
1007
1008void do_find_free_inode(int argc, char *argv[])
1009{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001010 ext2_ino_t free_inode, dir;
1011 int mode;
1012 int retval;
1013 char *tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001014
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001015 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1016 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001017 return;
1018 }
1019 if (check_fs_open(argv[0]))
1020 return;
1021
1022 if (argc > 1) {
1023 dir = strtol(argv[1], &tmp, 0);
1024 if (*tmp) {
1025 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1026 return;
1027 }
1028 }
1029 else
1030 dir = root;
1031 if (argc > 2) {
1032 mode = strtol(argv[2], &tmp, 0);
1033 if (*tmp) {
1034 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1035 return;
1036 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001037 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001038 mode = 010755;
1039
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001040 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001041 if (retval)
1042 com_err("ext2fs_new_inode", retval, "");
1043 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001044 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001045}
1046
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001047static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001048{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001049 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001050 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001051 int got;
1052 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001053 char buf[8192];
1054 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001055
Theodore Ts'o5a513841997-10-25 22:41:14 +00001056 retval = ext2fs_file_open(current_fs, newfile,
1057 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001058 if (retval)
1059 return retval;
1060
Theodore Ts'o5a513841997-10-25 22:41:14 +00001061 while (1) {
1062 got = read(fd, buf, sizeof(buf));
1063 if (got == 0)
1064 break;
1065 if (got < 0) {
1066 retval = errno;
1067 goto fail;
1068 }
1069 ptr = buf;
1070 while (got > 0) {
1071 retval = ext2fs_file_write(e2_file, ptr,
1072 got, &written);
1073 if (retval)
1074 goto fail;
1075
1076 got -= written;
1077 ptr += written;
1078 }
1079 }
1080 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001081 return retval;
1082
1083fail:
1084 (void) ext2fs_file_close(e2_file);
1085 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001086}
1087
Theodore Ts'o5a513841997-10-25 22:41:14 +00001088
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001089void do_write(int argc, char *argv[])
1090{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001091 int fd;
1092 struct stat statbuf;
1093 ext2_ino_t newfile;
1094 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001095 struct ext2_inode inode;
1096
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001097 if (common_args_process(argc, argv, 3, 3, "write",
1098 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001099 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001100
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001101 fd = open(argv[1], O_RDONLY);
1102 if (fd < 0) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001103 com_err(argv[1], errno, "");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001104 return;
1105 }
1106 if (fstat(fd, &statbuf) < 0) {
1107 com_err(argv[1], errno, "");
1108 close(fd);
1109 return;
1110 }
1111
Theodore Ts'o1dd090f2002-10-31 11:53:49 -05001112 retval = ext2fs_namei(current_fs, root, cwd, argv[2], &newfile);
1113 if (retval == 0) {
1114 com_err(argv[0], 0, "The file '%s' already exists\n", argv[2]);
1115 close(fd);
1116 return;
1117 }
1118
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001119 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001120 if (retval) {
1121 com_err(argv[0], retval, "");
1122 close(fd);
1123 return;
1124 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001125 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001126 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1127 EXT2_FT_REG_FILE);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001128 if (retval == EXT2_ET_DIR_NO_SPACE) {
1129 retval = ext2fs_expand_dir(current_fs, cwd);
1130 if (retval) {
1131 com_err(argv[0], retval, "while expanding directory");
1132 return;
1133 }
1134 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1135 EXT2_FT_REG_FILE);
1136 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001137 if (retval) {
1138 com_err(argv[2], retval, "");
1139 close(fd);
1140 return;
1141 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001142 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001143 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001144 ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001145 memset(&inode, 0, sizeof(inode));
Theodore Ts'o04df4912003-12-07 16:31:45 -05001146 inode.i_mode = (statbuf.st_mode & ~LINUX_S_IFMT) | LINUX_S_IFREG;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001147 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1148 inode.i_links_count = 1;
1149 inode.i_size = statbuf.st_size;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001150 if (debugfs_write_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001151 close(fd);
1152 return;
1153 }
1154 if (LINUX_S_ISREG(inode.i_mode)) {
1155 retval = copy_file(fd, newfile);
1156 if (retval)
1157 com_err("copy_file", retval, "");
1158 }
1159 close(fd);
1160}
1161
1162void do_mknod(int argc, char *argv[])
1163{
Theodore Ts'o54434922003-12-07 01:28:50 -05001164 unsigned long mode, major, minor;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001165 ext2_ino_t newfile;
1166 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001167 struct ext2_inode inode;
Theodore Ts'o54434922003-12-07 01:28:50 -05001168 int filetype, nr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001169
1170 if (check_fs_open(argv[0]))
1171 return;
1172 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001173 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001174 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1175 return;
1176 }
1177 mode = minor = major = 0;
1178 switch (argv[2][0]) {
1179 case 'p':
1180 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001181 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001182 nr = 3;
1183 break;
1184 case 'c':
1185 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001186 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001187 nr = 5;
1188 break;
1189 case 'b':
1190 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001191 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001192 nr = 5;
1193 break;
1194 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001195 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001196 nr = 0;
1197 }
1198 if (nr == 5) {
1199 major = strtoul(argv[3], argv+3, 0);
1200 minor = strtoul(argv[4], argv+4, 0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001201 if (major > 65535 || minor > 65535 || argv[3][0] || argv[4][0])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001202 nr = 0;
1203 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001204 if (argc != nr)
1205 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001206 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001207 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001208 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001209 if (retval) {
1210 com_err(argv[0], retval, "");
1211 return;
1212 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001213 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001214 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001215 if (retval == EXT2_ET_DIR_NO_SPACE) {
1216 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001217 if (retval) {
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001218 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001219 return;
1220 }
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001221 retval = ext2fs_link(current_fs, cwd, argv[1], newfile,
1222 filetype);
1223 }
1224 if (retval) {
1225 com_err(argv[1], retval, "");
1226 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001227 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001228 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001229 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001230 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1231 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001232 memset(&inode, 0, sizeof(inode));
1233 inode.i_mode = mode;
1234 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001235 if ((major < 256) && (minor < 256)) {
1236 inode.i_block[0] = major*256+minor;
1237 inode.i_block[1] = 0;
1238 } else {
1239 inode.i_block[0] = 0;
1240 inode.i_block[1] = (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
1241 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001242 inode.i_links_count = 1;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001243 if (debugfs_write_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001244 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001245}
1246
Theodore Ts'o3839e651997-04-26 13:21:57 +00001247void do_mkdir(int argc, char *argv[])
1248{
1249 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001250 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001251 char *name;
1252 errcode_t retval;
1253
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001254 if (common_args_process(argc, argv, 2, 2, "mkdir",
1255 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001256 return;
1257
Theodore Ts'o3839e651997-04-26 13:21:57 +00001258 cp = strrchr(argv[1], '/');
1259 if (cp) {
1260 *cp = 0;
1261 parent = string_to_inode(argv[1]);
1262 if (!parent) {
1263 com_err(argv[1], ENOENT, "");
1264 return;
1265 }
1266 name = cp+1;
1267 } else {
1268 parent = cwd;
1269 name = argv[1];
1270 }
1271
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001272try_again:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001273 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001274 if (retval == EXT2_ET_DIR_NO_SPACE) {
1275 retval = ext2fs_expand_dir(current_fs, parent);
1276 if (retval) {
1277 com_err("argv[0]", retval, "while expanding directory");
1278 return;
1279 }
1280 goto try_again;
1281 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001282 if (retval) {
1283 com_err("ext2fs_mkdir", retval, "");
1284 return;
1285 }
1286
1287}
1288
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001289static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001290 int blockcnt EXT2FS_ATTR((unused)),
1291 void *private EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001292{
Theodore Ts'o34436892001-12-22 13:06:02 -05001293 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001294
1295 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001296 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001297 return 0;
1298}
1299
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001300static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001301{
1302 struct ext2_inode inode_buf;
1303
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001304 if (debugfs_read_inode(inode, &inode_buf, 0))
1305 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001306 inode_buf.i_dtime = time(NULL);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001307 if (debugfs_write_inode(inode, &inode_buf, 0))
1308 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001309
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001310 ext2fs_block_iterate(current_fs, inode, 0, NULL,
1311 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001312 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001313 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1314 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001315}
1316
1317
1318void do_kill_file(int argc, char *argv[])
1319{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001320 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001321
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001322 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001323 return;
1324
Theodore Ts'o3839e651997-04-26 13:21:57 +00001325 kill_file_by_inode(inode_num);
1326}
1327
1328void do_rm(int argc, char *argv[])
1329{
1330 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001331 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001332 struct ext2_inode inode;
1333
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001334 if (common_args_process(argc, argv, 2, 2, "rm",
1335 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001336 return;
1337
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001338 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001339 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001340 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001341 return;
1342 }
1343
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001344 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001345 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001346
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001347 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001348 com_err(argv[0], 0, "file is a directory");
1349 return;
1350 }
1351
1352 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001353 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001354 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001355
1356 unlink_file_by_name(argv[1]);
1357 if (inode.i_links_count == 0)
1358 kill_file_by_inode(inode_num);
1359}
1360
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001361struct rd_struct {
1362 ext2_ino_t parent;
1363 int empty;
1364};
1365
Theodore Ts'o54434922003-12-07 01:28:50 -05001366static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
1367 int entry EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001368 struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -05001369 int offset EXT2FS_ATTR((unused)),
1370 int blocksize EXT2FS_ATTR((unused)),
1371 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001372 void *private)
1373{
1374 struct rd_struct *rds = (struct rd_struct *) private;
1375
1376 if (dirent->inode == 0)
1377 return 0;
1378 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1379 return 0;
1380 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1381 (dirent->name[1] == '.')) {
1382 rds->parent = dirent->inode;
1383 return 0;
1384 }
1385 rds->empty = 0;
1386 return 0;
1387}
1388
1389void do_rmdir(int argc, char *argv[])
1390{
1391 int retval;
1392 ext2_ino_t inode_num;
1393 struct ext2_inode inode;
1394 struct rd_struct rds;
1395
1396 if (common_args_process(argc, argv, 2, 2, "rmdir",
1397 "<filename>", CHECK_FS_RW))
1398 return;
1399
1400 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1401 if (retval) {
1402 com_err(argv[0], retval, "while trying to resolve filename");
1403 return;
1404 }
1405
1406 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1407 return;
1408
1409 if (!LINUX_S_ISDIR(inode.i_mode)) {
1410 com_err(argv[0], 0, "file is not a directory");
1411 return;
1412 }
1413
1414 rds.parent = 0;
1415 rds.empty = 1;
1416
1417 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1418 0, rmdir_proc, &rds);
1419 if (retval) {
1420 com_err(argv[0], retval, "while iterating over directory");
1421 return;
1422 }
1423 if (rds.empty == 0) {
1424 com_err(argv[0], 0, "directory not empty");
1425 return;
1426 }
1427
1428 inode.i_links_count = 0;
1429 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1430 return;
1431
1432 unlink_file_by_name(argv[1]);
1433 kill_file_by_inode(inode_num);
1434
1435 if (rds.parent) {
1436 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1437 return;
1438 if (inode.i_links_count > 1)
1439 inode.i_links_count--;
1440 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1441 return;
1442 }
1443}
1444
Theodore Ts'o54434922003-12-07 01:28:50 -05001445void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
1446 char *argv[] EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001447{
1448 FILE *out = stdout;
1449
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001450 if (current_fs)
1451 fprintf(out, "Open mode: read-%s\n",
1452 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001453 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001454 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001455}
1456
1457void do_expand_dir(int argc, char *argv[])
1458{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001459 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001460 int retval;
1461
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001462 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001463 return;
1464
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001465 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001466 if (retval)
1467 com_err("ext2fs_expand_dir", retval, "");
1468 return;
1469}
1470
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001471void do_features(int argc, char *argv[])
1472{
1473 int i;
1474
1475 if (check_fs_open(argv[0]))
1476 return;
1477
1478 if ((argc != 1) && check_fs_read_write(argv[0]))
1479 return;
1480 for (i=1; i < argc; i++) {
1481 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001482 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001483 com_err(argv[0], 0, "Unknown feature: %s\n",
1484 argv[i]);
1485 else
1486 ext2fs_mark_super_dirty(current_fs);
1487 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001488 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001489}
1490
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001491void do_bmap(int argc, char *argv[])
1492{
1493 ext2_ino_t ino;
1494 blk_t blk, pblk;
1495 int err;
1496 errcode_t errcode;
1497
1498 if (common_args_process(argc, argv, 3, 3, argv[0],
1499 "<file> logical_blk", 0))
1500 return;
1501
1502 ino = string_to_inode(argv[1]);
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001503 if (!ino)
1504 return;
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001505 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1506
1507 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1508 if (errcode) {
1509 com_err("argv[0]", errcode,
1510 "while mapping logical block %d\n", blk);
1511 return;
1512 }
1513 printf("%d\n", pblk);
1514}
1515
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001516void do_imap(int argc, char *argv[])
1517{
1518 ext2_ino_t ino;
1519 unsigned long group, block, block_nr, offset;
1520
1521 if (common_args_process(argc, argv, 2, 2, argv[0],
1522 "<file>", 0))
1523 return;
1524 ino = string_to_inode(argv[1]);
1525 if (!ino)
Theodore Ts'o88494bb2003-05-13 23:03:43 -04001526 return;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001527
1528 group = (ino - 1) / EXT2_INODES_PER_GROUP(current_fs->super);
1529 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
1530 EXT2_INODE_SIZE(current_fs->super);
1531 block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
1532 if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
Theodore Ts'o54434922003-12-07 01:28:50 -05001533 com_err(argv[0], 0, "Inode table for group %lu is missing\n",
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001534 group);
1535 return;
1536 }
1537 block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table +
1538 block;
1539 offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
1540
Theodore Ts'o48e6e812003-07-06 00:36:48 -04001541 printf("Inode %d is part of block group %lu\n"
1542 "\tlocated at block %lu, offset 0x%04lx\n", ino, group,
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001543 block_nr, offset);
1544
1545}
1546
1547
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001548
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001549static int source_file(const char *cmd_file, int sci_idx)
1550{
1551 FILE *f;
1552 char buf[256];
1553 char *cp;
1554 int exit_status = 0;
1555 int retval;
1556
1557 if (strcmp(cmd_file, "-") == 0)
1558 f = stdin;
1559 else {
1560 f = fopen(cmd_file, "r");
1561 if (!f) {
1562 perror(cmd_file);
1563 exit(1);
1564 }
1565 }
1566 setbuf(stdout, NULL);
1567 setbuf(stderr, NULL);
1568 while (!feof(f)) {
1569 if (fgets(buf, sizeof(buf), f) == NULL)
1570 break;
1571 cp = strchr(buf, '\n');
1572 if (cp)
1573 *cp = 0;
1574 cp = strchr(buf, '\r');
1575 if (cp)
1576 *cp = 0;
1577 printf("debugfs: %s\n", buf);
1578 retval = ss_execute_line(sci_idx, buf);
1579 if (retval) {
1580 ss_perror(sci_idx, retval, buf);
1581 exit_status++;
1582 }
1583 }
1584 return exit_status;
1585}
1586
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001587int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001588{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001589 int retval;
1590 int sci_idx;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001591 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 +00001592 int c;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001593 int open_flags = 0;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001594 char *request = 0;
1595 int exit_status = 0;
1596 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001597 blk_t superblock = 0;
1598 blk_t blocksize = 0;
1599 int catastrophic = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001600
1601 initialize_ext2_error_table();
Theodore Ts'o0f8973f2001-08-27 12:44:23 -04001602 fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
1603 E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001604
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001605 while ((c = getopt (argc, argv, "iwcR:f:b:s:V")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001606 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001607 case 'R':
1608 request = optarg;
1609 break;
1610 case 'f':
1611 cmd_file = optarg;
1612 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001613 case 'i':
1614 open_flags |= EXT2_FLAG_IMAGE_FILE;
1615 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001616 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001617 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001618 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001619 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001620 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001621 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001622 break;
1623 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001624 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001625 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001626 break;
1627 case 'c':
1628 catastrophic = 1;
1629 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001630 case 'V':
1631 /* Print version number and exit */
1632 fprintf(stderr, "\tUsing %s\n",
1633 error_message(EXT2_ET_BASE));
1634 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001635 default:
1636 com_err(argv[0], 0, usage);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001637 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001638 }
1639 }
1640 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001641 open_filesystem(argv[optind], open_flags,
1642 superblock, blocksize, catastrophic);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001643
1644 sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
1645 &debug_cmds, &retval);
1646 if (retval) {
1647 ss_perror(sci_idx, retval, "creating invocation");
1648 exit(1);
1649 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001650 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001651
1652 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1653 if (retval) {
1654 ss_perror(sci_idx, retval, "adding standard requests");
1655 exit (1);
1656 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001657 if (request) {
1658 retval = 0;
1659 retval = ss_execute_line(sci_idx, request);
1660 if (retval) {
1661 ss_perror(sci_idx, retval, request);
1662 exit_status++;
1663 }
1664 } else if (cmd_file) {
1665 exit_status = source_file(cmd_file, sci_idx);
1666 } else {
1667 ss_listen(sci_idx);
1668 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001669
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001670 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001671 close_filesystem();
1672
Theodore Ts'oe5973042000-01-18 17:58:34 +00001673 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001674}