blob: 5efeb07c94db31f5df75409b4cb5d51c1d07ba37 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * debugfs.c --- a program which allows you to attach an ext2fs
3 * filesystem and play with it.
4 *
5 * Copyright (C) 1993 Theodore Ts'o. This file may be redistributed
6 * under the terms of the GNU Public License.
7 *
8 * Modifications by Robert Sanders <gt8134b@prism.gatech.edu>
9 */
10
11#include <stdio.h>
12#include <unistd.h>
13#include <stdlib.h>
14#include <ctype.h>
15#include <string.h>
16#include <time.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000017#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <getopt.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000019#else
20extern int optind;
21extern char *optarg;
22#endif
Theodore Ts'o50e1e101997-04-26 13:58:21 +000023#ifdef HAVE_ERRNO_H
24#include <errno.h>
25#endif
26#include <fcntl.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000027#include <sys/types.h>
28#include <sys/stat.h>
29
30#include "et/com_err.h"
31#include "ss/ss.h"
32#include "debugfs.h"
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000033#include "uuid/uuid.h"
Theodore Ts'of68aa411999-10-26 14:20:22 +000034#include "e2p/e2p.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000035
Theodore Ts'oea822ee2005-03-20 18:03:58 -050036#include <ext2fs/ext2_ext_attr.h>
37
Theodore Ts'o818180c1998-06-27 05:11:14 +000038#include "../version.h"
39
Theodore Ts'o3839e651997-04-26 13:21:57 +000040extern ss_request_table debug_cmds;
41
Theodore Ts'ob044c2e2001-01-11 15:26:39 +000042ext2_filsys current_fs = NULL;
43ext2_ino_t root, cwd;
Theodore Ts'o3839e651997-04-26 13:21:57 +000044
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000045static void open_filesystem(char *device, int open_flags, blk_t superblock,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040046 blk_t blocksize, int catastrophic,
47 char *data_filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +000048{
49 int retval;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040050 io_channel data_io = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000051
52 if (superblock != 0 && blocksize == 0) {
53 com_err(device, 0, "if you specify the superblock, you must also specify the block size");
54 current_fs = NULL;
55 return;
56 }
57
Theodore Ts'o1ad54a92004-07-28 21:11:48 -040058 if (data_filename) {
59 if ((open_flags & EXT2_FLAG_IMAGE_FILE) == 0) {
60 com_err(device, 0,
61 "The -d option is only valid when reading an e2image file");
62 current_fs = NULL;
63 return;
64 }
65 retval = unix_io_manager->open(data_filename, 0, &data_io);
66 if (retval) {
67 com_err(data_filename, 0, "while opening data source");
68 current_fs = NULL;
69 return;
70 }
71 }
72
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000073 if (catastrophic && (open_flags & EXT2_FLAG_RW)) {
74 com_err(device, 0,
75 "opening read-only because of catastrophic mode");
76 open_flags &= ~EXT2_FLAG_RW;
77 }
Theodore Ts'o3839e651997-04-26 13:21:57 +000078
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000079 retval = ext2fs_open(device, open_flags, superblock, blocksize,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000080 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000081 if (retval) {
82 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000083 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000084 return;
85 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +000086
87 if (catastrophic)
88 com_err(device, 0, "catastrophic mode - not reading inode or group bitmaps");
89 else {
90 retval = ext2fs_read_inode_bitmap(current_fs);
91 if (retval) {
92 com_err(device, retval, "while reading inode bitmap");
93 goto errout;
94 }
95 retval = ext2fs_read_block_bitmap(current_fs);
96 if (retval) {
97 com_err(device, retval, "while reading block bitmap");
98 goto errout;
99 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000100 }
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400101
102 if (data_io) {
103 retval = ext2fs_set_data_io(current_fs, data_io);
104 if (retval) {
105 com_err(device, retval,
106 "while setting data source");
107 goto errout;
108 }
109 }
110
Theodore Ts'o3839e651997-04-26 13:21:57 +0000111 root = cwd = EXT2_ROOT_INO;
112 return;
113
114errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000115 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000116 if (retval)
117 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000118 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000119}
120
121void do_open_filesys(int argc, char **argv)
122{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500123 int c, err;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000124 int catastrophic = 0;
125 blk_t superblock = 0;
126 blk_t blocksize = 0;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -0500127 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ob0d17e02004-11-29 17:35:58 -0500128 char *data_filename = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000129
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400130 reset_getopt();
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500131 while ((c = getopt (argc, argv, "iwfecb:s:d:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000132 switch (c) {
Theodore Ts'o59cf7e02001-05-03 15:05:55 +0000133 case 'i':
134 open_flags |= EXT2_FLAG_IMAGE_FILE;
135 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000136 case 'w':
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000137 open_flags |= EXT2_FLAG_RW;
138 break;
139 case 'f':
140 open_flags |= EXT2_FLAG_FORCE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000141 break;
Theodore Ts'o98eb44b2006-03-18 19:58:13 -0500142 case 'e':
143 open_flags |= EXT2_FLAG_EXCLUSIVE;
144 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000145 case 'c':
146 catastrophic = 1;
147 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400148 case 'd':
149 data_filename = optarg;
150 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000151 case 'b':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500152 blocksize = parse_ulong(optarg, argv[0],
153 "block size", &err);
154 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000155 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000156 break;
157 case 's':
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500158 superblock = parse_ulong(optarg, argv[0],
159 "superblock number", &err);
160 if (err)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000161 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000162 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500164 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000165 }
166 }
167 if (optind != argc-1) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500168 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000169 }
170 if (check_fs_not_open(argv[0]))
171 return;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000172 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400173 superblock, blocksize, catastrophic,
174 data_filename);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500175 return;
176
177print_usage:
178 fprintf(stderr, "%s: Usage: open [-s superblock] [-b blocksize] "
179 "[-c] [-w] <device>\n", argv[0]);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000180}
181
182void do_lcd(int argc, char **argv)
183{
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500184 if (argc != 2) {
185 com_err(argv[0], 0, "Usage: %s %s", argv[0], "<native dir>");
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000186 return;
Theodore Ts'o57a1cbb2007-03-07 08:09:10 -0500187 }
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +0000188
189 if (chdir(argv[1]) == -1) {
190 com_err(argv[0], errno,
191 "while trying to change native directory to %s",
192 argv[1]);
193 return;
194 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000195}
196
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000197static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000198{
199 int retval;
200
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000201 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
202 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000203 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500204 com_err("ext2fs_write_inode_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000206 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
207 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000208 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500209 com_err("ext2fs_write_block_bitmap", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000210 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000211 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000212 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500213 com_err("ext2fs_close", retval, 0);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000214 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000215 return;
216}
217
218void do_close_filesys(int argc, char **argv)
219{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500220 if (common_args_process(argc, argv, 1, 1, "close_filesys", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000221 return;
222 close_filesystem();
223}
224
225void do_init_filesys(int argc, char **argv)
226{
Theodore Ts'o3839e651997-04-26 13:21:57 +0000227 struct ext2_super_block param;
228 errcode_t retval;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500229 int err;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000230
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500231 if (common_args_process(argc, argv, 3, 3, "initialize",
232 "<device> <blocksize>", CHECK_FS_NOTOPEN))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000233 return;
234
235 memset(&param, 0, sizeof(struct ext2_super_block));
Theodore Ts'ob38cd282002-05-11 22:13:20 -0400236 param.s_blocks_count = parse_ulong(argv[2], argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500237 "blocks count", &err);
238 if (err)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000239 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000240 retval = ext2fs_initialize(argv[1], 0, &param,
241 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000242 if (retval) {
243 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000244 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000245 return;
246 }
247 root = cwd = EXT2_ROOT_INO;
248 return;
249}
250
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000251static void print_features(struct ext2_super_block * s, FILE *f)
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000252{
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000253 int i, j, printed=0;
Theodore Ts'o092c3de2001-05-14 11:20:48 +0000254 __u32 *mask = &s->s_feature_compat, m;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000255
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000256 fputs("Filesystem features:", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000257 for (i=0; i <3; i++,mask++) {
258 for (j=0,m=1; j < 32; j++, m<<=1) {
259 if (*mask & m) {
260 fprintf(f, " %s", e2p_feature2string(i, m));
261 printed++;
262 }
263 }
264 }
265 if (printed == 0)
Theodore Ts'o777ebb32001-05-13 02:45:15 +0000266 fputs("(none)", f);
267 fputs("\n", f);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000268}
269
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400270static void print_bg_opts(struct ext2_group_desc *gdp, int mask,
271 const char *str, int *first, FILE *f)
272{
273 if (gdp->bg_flags & mask) {
274 if (*first) {
275 fputs(" [", f);
276 *first = 0;
277 } else
278 fputs(", ", f);
279 fputs(str, f);
280 }
281}
282
Theodore Ts'o3839e651997-04-26 13:21:57 +0000283void do_show_super_stats(int argc, char *argv[])
284{
Theodore Ts'o54434922003-12-07 01:28:50 -0500285 dgrp_t i;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000286 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000287 struct ext2_group_desc *gdp;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000288 int c, header_only = 0;
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400289 int numdirs = 0, first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000290
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400291 reset_getopt();
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000292 while ((c = getopt (argc, argv, "h")) != EOF) {
293 switch (c) {
294 case 'h':
295 header_only++;
296 break;
297 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500298 goto print_usage;
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000299 }
300 }
301 if (optind != argc) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500302 goto print_usage;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000303 }
304 if (check_fs_open(argv[0]))
305 return;
306 out = open_pager();
Theodore Ts'obd09eff2000-08-14 20:39:17 +0000307
308 list_super2(current_fs->super, out);
Theodore Ts'o34be9602002-07-15 16:56:41 -0400309 for (i=0; i < current_fs->group_desc_count; i++)
310 numdirs += current_fs->group_desc[i].bg_used_dirs_count;
311 fprintf(out, "Directories: %d\n", numdirs);
312
Theodore Ts'od3aea7d1999-09-14 20:55:37 +0000313 if (header_only) {
314 close_pager(out);
315 return;
316 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000317
318 gdp = &current_fs->group_desc[0];
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400319 for (i = 0; i < current_fs->group_desc_count; i++, gdp++) {
Takashi Sato8deb80a2006-03-18 21:43:46 -0500320 fprintf(out, " Group %2d: block bitmap at %u, "
321 "inode bitmap at %u, "
322 "inode table at %u\n"
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000323 " %d free %s, "
324 "%d free %s, "
325 "%d used %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000326 i, gdp->bg_block_bitmap,
327 gdp->bg_inode_bitmap, gdp->bg_inode_table,
328 gdp->bg_free_blocks_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000329 gdp->bg_free_blocks_count != 1 ? "blocks" : "block",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000330 gdp->bg_free_inodes_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000331 gdp->bg_free_inodes_count != 1 ? "inodes" : "inode",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000332 gdp->bg_used_dirs_count,
Theodore Ts'ob74d1d82001-01-12 17:23:52 +0000333 gdp->bg_used_dirs_count != 1 ? "directories"
334 : "directory");
Theodore Ts'of5fa2002006-05-08 20:17:26 -0400335 first = 1;
336 print_bg_opts(gdp, EXT2_BG_INODE_UNINIT, "Inode not init",
337 &first, out);
338 print_bg_opts(gdp, EXT2_BG_BLOCK_UNINIT, "Block not init",
339 &first, out);
340 if (!first)
341 fputs("]\n", out);
342 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000343 close_pager(out);
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500344 return;
345print_usage:
346 fprintf(stderr, "%s: Usage: show_super [-h]\n", argv[0]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000347}
348
Theodore Ts'o54434922003-12-07 01:28:50 -0500349void do_dirty_filesys(int argc EXT2FS_ATTR((unused)),
350 char **argv EXT2FS_ATTR((unused)))
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000351{
352 if (check_fs_open(argv[0]))
353 return;
Theodore Ts'o601002b1999-10-26 02:06:39 +0000354 if (check_fs_read_write(argv[0]))
355 return;
356
357 if (argv[1] && !strcmp(argv[1], "-clean"))
358 current_fs->super->s_state |= EXT2_VALID_FS;
359 else
360 current_fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000361 ext2fs_mark_super_dirty(current_fs);
362}
363
Theodore Ts'o3839e651997-04-26 13:21:57 +0000364struct list_blocks_struct {
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700365 FILE *f;
366 e2_blkcnt_t total;
367 blk_t first_block, last_block;
368 e2_blkcnt_t first_bcnt, last_bcnt;
369 e2_blkcnt_t first;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000370};
371
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000372static void finish_range(struct list_blocks_struct *lb)
373{
374 if (lb->first_block == 0)
375 return;
376 if (lb->first)
377 lb->first = 0;
378 else
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000379 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000380 if (lb->first_block == lb->last_block)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500381 fprintf(lb->f, "(%lld):%u", lb->first_bcnt, lb->first_block);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000382 else
Takashi Sato8deb80a2006-03-18 21:43:46 -0500383 fprintf(lb->f, "(%lld-%lld):%u-%u", lb->first_bcnt,
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000384 lb->last_bcnt, lb->first_block, lb->last_block);
385 lb->first_block = 0;
386}
387
Theodore Ts'o54434922003-12-07 01:28:50 -0500388static int list_blocks_proc(ext2_filsys fs EXT2FS_ATTR((unused)),
389 blk_t *blocknr, e2_blkcnt_t blockcnt,
390 blk_t ref_block EXT2FS_ATTR((unused)),
391 int ref_offset EXT2FS_ATTR((unused)),
392 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000393{
394 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
395
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000396 lb->total++;
397 if (blockcnt >= 0) {
398 /*
399 * See if we can add on to the existing range (if it exists)
400 */
401 if (lb->first_block &&
402 (lb->last_block+1 == *blocknr) &&
403 (lb->last_bcnt+1 == blockcnt)) {
404 lb->last_block = *blocknr;
405 lb->last_bcnt = blockcnt;
406 return 0;
407 }
408 /*
409 * Start a new range.
410 */
411 finish_range(lb);
412 lb->first_block = lb->last_block = *blocknr;
413 lb->first_bcnt = lb->last_bcnt = blockcnt;
414 return 0;
415 }
416 /*
417 * Not a normal block. Always force a new range.
418 */
419 finish_range(lb);
420 if (lb->first)
421 lb->first = 0;
Theodore Ts'oa5eef732000-08-14 15:47:15 +0000422 else
Theodore Ts'o2c4a5402000-08-19 17:33:28 +0000423 fprintf(lb->f, ", ");
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000424 if (blockcnt == -1)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500425 fprintf(lb->f, "(IND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000426 else if (blockcnt == -2)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500427 fprintf(lb->f, "(DIND):%u", *blocknr);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000428 else if (blockcnt == -3)
Takashi Sato8deb80a2006-03-18 21:43:46 -0500429 fprintf(lb->f, "(TIND):%u", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000430 return 0;
431}
432
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500433static void dump_xattr_string(FILE *out, const char *str, int len)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500434{
435 int printable = 1;
436 int i;
437
438 /* check is string printable? */
439 for (i = 0; i < len; i++)
440 if (!isprint(str[i])) {
441 printable = 0;
442 break;
443 }
444
445 for (i = 0; i < len; i++)
446 if (printable)
Andreas Dilgerd047e072006-06-21 00:01:42 -0400447 fprintf(out, "%c", (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500448 else
Andreas Dilgerd047e072006-06-21 00:01:42 -0400449 fprintf(out, "%02x ", (unsigned char)str[i]);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500450}
451
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500452static void internal_dump_inode_extra(FILE *out, const char *prefix,
453 ext2_ino_t inode_num,
454 struct ext2_inode_large *inode)
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500455{
456 struct ext2_ext_attr_entry *entry;
457 __u32 *magic;
458 char *start, *end;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500459 unsigned int storage_size;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500460
Takashi Sato8deb80a2006-03-18 21:43:46 -0500461 fprintf(out, "Size of extra inode fields: %u\n", inode->i_extra_isize);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500462 if (inode->i_extra_isize > EXT2_INODE_SIZE(current_fs->super) -
463 EXT2_GOOD_OLD_INODE_SIZE) {
464 fprintf(stderr, "invalid inode->i_extra_isize (%u)\n",
465 inode->i_extra_isize);
466 return;
467 }
468 storage_size = EXT2_INODE_SIZE(current_fs->super) -
469 EXT2_GOOD_OLD_INODE_SIZE -
470 inode->i_extra_isize;
471 magic = (__u32 *)((char *)inode + EXT2_GOOD_OLD_INODE_SIZE +
472 inode->i_extra_isize);
473 if (*magic == EXT2_EXT_ATTR_MAGIC) {
474 fprintf(out, "Extended attributes stored in inode body: \n");
475 end = (char *) inode + EXT2_INODE_SIZE(current_fs->super);
476 start = (char *) magic + sizeof(__u32);
477 entry = (struct ext2_ext_attr_entry *) start;
478 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
479 struct ext2_ext_attr_entry *next =
480 EXT2_EXT_ATTR_NEXT(entry);
481 if (entry->e_value_size > storage_size ||
482 (char *) next >= end) {
483 fprintf(out, "invalid EA entry in inode\n");
484 return;
485 }
486 fprintf(out, " ");
487 dump_xattr_string(out, EXT2_EXT_ATTR_NAME(entry),
488 entry->e_name_len);
489 fprintf(out, " = \"");
490 dump_xattr_string(out, start + entry->e_value_offs,
491 entry->e_value_size);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500492 fprintf(out, "\" (%u)\n", entry->e_value_size);
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500493 entry = next;
494 }
495 }
496}
Theodore Ts'o3839e651997-04-26 13:21:57 +0000497
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000498static void dump_blocks(FILE *f, const char *prefix, ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000499{
500 struct list_blocks_struct lb;
501
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000502 fprintf(f, "%sBLOCKS:\n%s", prefix, prefix);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000503 lb.total = 0;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000504 lb.first_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000505 lb.f = f;
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000506 lb.first = 1;
Andreas Dilger89e25cf2001-11-08 17:56:12 -0700507 ext2fs_block_iterate2(current_fs, inode, 0, NULL,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000508 list_blocks_proc, (void *)&lb);
Theodore Ts'o0a3db932000-08-14 17:06:05 +0000509 finish_range(&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000510 if (lb.total)
Theodore Ts'oe8981882001-11-30 11:51:30 +0100511 fprintf(f, "\n%sTOTAL: %lld\n", prefix, lb.total);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000512 fprintf(f,"\n");
513}
514
515
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000516void internal_dump_inode(FILE *out, const char *prefix,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000517 ext2_ino_t inode_num, struct ext2_inode *inode,
518 int do_dump_blocks)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000519{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000520 const char *i_type;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000521 char frag, fsize;
522 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000523
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000524 if (LINUX_S_ISDIR(inode->i_mode)) i_type = "directory";
525 else if (LINUX_S_ISREG(inode->i_mode)) i_type = "regular";
526 else if (LINUX_S_ISLNK(inode->i_mode)) i_type = "symlink";
527 else if (LINUX_S_ISBLK(inode->i_mode)) i_type = "block special";
528 else if (LINUX_S_ISCHR(inode->i_mode)) i_type = "character special";
529 else if (LINUX_S_ISFIFO(inode->i_mode)) i_type = "FIFO";
530 else if (LINUX_S_ISSOCK(inode->i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000531 else i_type = "bad type";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000532 fprintf(out, "%sInode: %u Type: %s ", prefix, inode_num, i_type);
533 fprintf(out, "%sMode: %04o Flags: 0x%x Generation: %u\n",
534 prefix,
535 inode->i_mode & 0777, inode->i_flags, inode->i_generation);
536 fprintf(out, "%sUser: %5d Group: %5d Size: ",
537 prefix, inode->i_uid, inode->i_gid);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700538 if (LINUX_S_ISREG(inode->i_mode)) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000539 __u64 i_size = (inode->i_size |
540 ((unsigned long long)inode->i_size_high << 32));
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700541
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000542 fprintf(out, "%lld\n", i_size);
Andreas Dilger1a6bb622001-11-08 17:52:26 -0700543 } else
544 fprintf(out, "%d\n", inode->i_size);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500545 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000546 fprintf(out,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000547 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
548 prefix,
549 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
550 inode->osd1.hurd1.h_i_translator);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000551 else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000552 fprintf(out, "%sFile ACL: %d Directory ACL: %d\n",
553 prefix,
554 inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500555 if (os == EXT2_OS_LINUX)
556 fprintf(out, "%sLinks: %d Blockcount: %llu\n",
557 prefix, inode->i_links_count,
558 (((unsigned long long)
559 inode->osd2.linux2.l_i_blocks_hi << 32)) +
560 inode->i_blocks);
561 else
562 fprintf(out, "%sLinks: %d Blockcount: %u\n",
563 prefix, inode->i_links_count, inode->i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000564 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000565 case EXT2_OS_HURD:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000566 frag = inode->osd2.hurd2.h_i_frag;
567 fsize = inode->osd2.hurd2.h_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000568 break;
569 case EXT2_OS_MASIX:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000570 frag = inode->osd2.masix2.m_i_frag;
571 fsize = inode->osd2.masix2.m_i_fsize;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000572 break;
573 default:
574 frag = fsize = 0;
575 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000576 fprintf(out, "%sFragment: Address: %d Number: %d Size: %d\n",
577 prefix, inode->i_faddr, frag, fsize);
578 fprintf(out, "%sctime: 0x%08x -- %s", prefix, inode->i_ctime,
579 time_to_string(inode->i_ctime));
580 fprintf(out, "%satime: 0x%08x -- %s", prefix, inode->i_atime,
581 time_to_string(inode->i_atime));
582 fprintf(out, "%smtime: 0x%08x -- %s", prefix, inode->i_mtime,
583 time_to_string(inode->i_mtime));
584 if (inode->i_dtime)
585 fprintf(out, "%sdtime: 0x%08x -- %s", prefix, inode->i_dtime,
586 time_to_string(inode->i_dtime));
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500587 if (EXT2_INODE_SIZE(current_fs->super) > EXT2_GOOD_OLD_INODE_SIZE)
588 internal_dump_inode_extra(out, prefix, inode_num,
589 (struct ext2_inode_large *) inode);
Theodore Ts'o795afc42004-02-21 20:54:31 -0500590 if (LINUX_S_ISLNK(inode->i_mode) && ext2fs_inode_data_blocks(current_fs,inode) == 0)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000591 fprintf(out, "%sFast_link_dest: %.*s\n", prefix,
592 (int) inode->i_size, (char *)inode->i_block);
Theodore Ts'o2d107692004-02-23 22:30:54 -0500593 else if (LINUX_S_ISBLK(inode->i_mode) || LINUX_S_ISCHR(inode->i_mode)) {
594 int major, minor;
595 const char *devnote;
596
597 if (inode->i_block[0]) {
598 major = (inode->i_block[0] >> 8) & 255;
599 minor = inode->i_block[0] & 255;
600 devnote = "";
601 } else {
602 major = (inode->i_block[1] & 0xfff00) >> 8;
603 minor = ((inode->i_block[1] & 0xff) |
604 ((inode->i_block[1] >> 12) & 0xfff00));
605 devnote = "(New-style) ";
606 }
607 fprintf(out, "%sDevice major/minor number: %02d:%02d (hex %02x:%02x)\n",
608 devnote, major, minor, major, minor);
609 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000610 else if (do_dump_blocks)
611 dump_blocks(out, prefix, inode_num);
612}
613
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500614static void dump_inode(ext2_ino_t inode_num, struct ext2_inode *inode)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000615{
616 FILE *out;
617
618 out = open_pager();
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500619 internal_dump_inode(out, "", inode_num, inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000620 close_pager(out);
621}
622
Theodore Ts'o3839e651997-04-26 13:21:57 +0000623void do_stat(int argc, char *argv[])
624{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000625 ext2_ino_t inode;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500626 struct ext2_inode * inode_buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000627
Theodore Ts'o64777392005-05-05 17:21:46 -0400628 if (check_fs_open(argv[0]))
Theodore Ts'o8363e352005-05-06 09:04:37 -0400629 return;
Theodore Ts'o64777392005-05-05 17:21:46 -0400630
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500631 inode_buf = (struct ext2_inode *)
632 malloc(EXT2_INODE_SIZE(current_fs->super));
633 if (!inode_buf) {
634 fprintf(stderr, "do_stat: can't allocate buffer\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000635 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500636 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000637
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500638 if (common_inode_args_process(argc, argv, &inode, 0)) {
639 free(inode_buf);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500640 return;
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500641 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000642
Theodore Ts'oea822ee2005-03-20 18:03:58 -0500643 if (debugfs_read_inode_full(inode, inode_buf, argv[0],
644 EXT2_INODE_SIZE(current_fs->super))) {
645 free(inode_buf);
646 return;
647 }
648
649 dump_inode(inode, inode_buf);
650 free(inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000651 return;
652}
653
654void do_chroot(int argc, char *argv[])
655{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000656 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000657 int retval;
658
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500659 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000660 return;
661
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000662 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000663 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500664 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000665 return;
666 }
667 root = inode;
668}
669
670void do_clri(int argc, char *argv[])
671{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000672 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000673 struct ext2_inode inode_buf;
674
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500675 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000676 return;
677
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500678 if (debugfs_read_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000679 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000680 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500681 if (debugfs_write_inode(inode, &inode_buf, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000682 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000683}
684
685void do_freei(int argc, char *argv[])
686{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000687 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000688
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500689 if (common_inode_args_process(argc, argv, &inode,
690 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000691 return;
692
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000693 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000694 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000695 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
696 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000697}
698
699void do_seti(int argc, char *argv[])
700{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000701 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000702
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500703 if (common_inode_args_process(argc, argv, &inode,
704 CHECK_FS_RW | CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000705 return;
706
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000707 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000708 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000709 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
710 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000711}
712
713void do_testi(int argc, char *argv[])
714{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000715 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000716
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500717 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_BITMAPS))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000718 return;
719
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000720 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000721 printf("Inode %u is marked in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000722 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000723 printf("Inode %u is not in use\n", inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000724}
725
Theodore Ts'o3839e651997-04-26 13:21:57 +0000726void do_freeb(int argc, char *argv[])
727{
728 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500729 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000730
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500731 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000732 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000733 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000734 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500735 while (count-- > 0) {
736 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500737 com_err(argv[0], 0, "Warning: block %u already clear",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500738 block);
739 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
740 block++;
741 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000742 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000743}
744
745void do_setb(int argc, char *argv[])
746{
747 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500748 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000749
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500750 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000751 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000752 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000753 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500754 while (count-- > 0) {
755 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500756 com_err(argv[0], 0, "Warning: block %u already set",
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500757 block);
758 ext2fs_mark_block_bitmap(current_fs->block_map,block);
759 block++;
760 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000761 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000762}
763
764void do_testb(int argc, char *argv[])
765{
766 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500767 int count = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000768
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500769 if (common_block_args_process(argc, argv, &block, &count))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000770 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500771 while (count-- > 0) {
772 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Takashi Sato8deb80a2006-03-18 21:43:46 -0500773 printf("Block %u marked in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500774 else
Takashi Sato8deb80a2006-03-18 21:43:46 -0500775 printf("Block %u not in use\n", block);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500776 block++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000777 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000778}
779
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000780static void modify_u8(char *com, const char *prompt,
781 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000782{
783 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000784 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000785 char *tmp;
786
787 sprintf(buf, format, *val);
788 printf("%30s [%s] ", prompt, buf);
789 fgets(buf, sizeof(buf), stdin);
790 if (buf[strlen (buf) - 1] == '\n')
791 buf[strlen (buf) - 1] = '\0';
792 if (!buf[0])
793 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000794 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000795 if (*tmp)
796 com_err(com, 0, "Bad value - %s", buf);
797 else
798 *val = v;
799}
800
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000801static void modify_u16(char *com, const char *prompt,
802 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000803{
804 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000805 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000806 char *tmp;
807
808 sprintf(buf, format, *val);
809 printf("%30s [%s] ", prompt, buf);
810 fgets(buf, sizeof(buf), stdin);
811 if (buf[strlen (buf) - 1] == '\n')
812 buf[strlen (buf) - 1] = '\0';
813 if (!buf[0])
814 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000815 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000816 if (*tmp)
817 com_err(com, 0, "Bad value - %s", buf);
818 else
819 *val = v;
820}
821
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000822static void modify_u32(char *com, const char *prompt,
823 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000824{
825 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000826 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000827 char *tmp;
828
829 sprintf(buf, format, *val);
830 printf("%30s [%s] ", prompt, buf);
831 fgets(buf, sizeof(buf), stdin);
832 if (buf[strlen (buf) - 1] == '\n')
833 buf[strlen (buf) - 1] = '\0';
834 if (!buf[0])
835 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000836 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000837 if (*tmp)
838 com_err(com, 0, "Bad value - %s", buf);
839 else
840 *val = v;
841}
842
843
844void do_modify_inode(int argc, char *argv[])
845{
846 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000847 ext2_ino_t inode_num;
848 int i;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000849 unsigned char *frag, *fsize;
850 char buf[80];
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500851 int os;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000852 const char *hex_format = "0x%x";
853 const char *octal_format = "0%o";
854 const char *decimal_format = "%d";
Takashi Sato8deb80a2006-03-18 21:43:46 -0500855 const char *unsignedlong_format = "%lu";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000856
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500857 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000858 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000859
Theodore Ts'o7380ac92002-03-05 01:57:53 -0500860 os = current_fs->super->s_creator_os;
861
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500862 if (debugfs_read_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000863 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000864
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000865 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
866 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
867 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500868 modify_u32(argv[0], "Size", unsignedlong_format, &inode.i_size);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000869 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
870 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
871 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
872 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
873 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
Theodore Ts'o5d171192006-11-11 06:32:03 -0500874 if (os == EXT2_OS_LINUX)
875 modify_u16(argv[0], "Block count high", unsignedlong_format,
876 &inode.osd2.linux2.l_i_blocks_hi);
Takashi Sato8deb80a2006-03-18 21:43:46 -0500877 modify_u32(argv[0], "Block count", unsignedlong_format, &inode.i_blocks);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000878 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
Theodore Ts'o3db93052000-12-30 20:26:31 +0000879 modify_u32(argv[0], "Generation", hex_format, &inode.i_generation);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000880#if 0
881 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
882#endif
883 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000884 if (LINUX_S_ISDIR(inode.i_mode))
885 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
886 else
887 modify_u32(argv[0], "High 32bits of size", decimal_format, &inode.i_size_high);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000888
Theodore Ts'o5d171192006-11-11 06:32:03 -0500889 if (os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000890 modify_u32(argv[0], "Translator Block",
891 decimal_format, &inode.osd1.hurd1.h_i_translator);
892
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000893 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000894 switch (os) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000895 case EXT2_OS_HURD:
896 frag = &inode.osd2.hurd2.h_i_frag;
897 fsize = &inode.osd2.hurd2.h_i_fsize;
898 break;
899 case EXT2_OS_MASIX:
900 frag = &inode.osd2.masix2.m_i_frag;
901 fsize = &inode.osd2.masix2.m_i_fsize;
902 break;
903 default:
904 frag = fsize = 0;
905 }
906 if (frag)
907 modify_u8(argv[0], "Fragment number", decimal_format, frag);
908 if (fsize)
909 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
910
Theodore Ts'o3839e651997-04-26 13:21:57 +0000911 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
912 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000913 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000914 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000915 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000916 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000917 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000918 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000919 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000920 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500921 if (debugfs_write_inode(inode_num, &inode, argv[1]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000922 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000923}
924
Theodore Ts'o3839e651997-04-26 13:21:57 +0000925void do_change_working_dir(int argc, char *argv[])
926{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +0000927 ext2_ino_t inode;
928 int retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000929
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500930 if (common_inode_args_process(argc, argv, &inode, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000931 return;
932
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000933 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000934 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500935 com_err(argv[1], retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000936 return;
937 }
938 cwd = inode;
939 return;
940}
941
Theodore Ts'o3839e651997-04-26 13:21:57 +0000942void do_print_working_directory(int argc, char *argv[])
943{
944 int retval;
945 char *pathname = NULL;
946
Theodore Ts'oe1018ee2002-01-03 04:55:25 -0500947 if (common_args_process(argc, argv, 1, 1,
948 "print_working_directory", "", 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000949 return;
950
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000951 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000952 if (retval) {
953 com_err(argv[0], retval,
954 "while trying to get pathname of cwd");
955 }
Brian Behlendorf971fe052007-03-29 00:32:23 -0400956 printf("[pwd] INODE: %6u PATH: %s\n",
957 cwd, pathname ? pathname : "NULL");
958 if (pathname) {
959 free(pathname);
960 pathname = NULL;
961 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000962 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000963 if (retval) {
964 com_err(argv[0], retval,
965 "while trying to get pathname of root");
966 }
Brian Behlendorf971fe052007-03-29 00:32:23 -0400967 printf("[root] INODE: %6u PATH: %s\n",
968 root, pathname ? pathname : "NULL");
969 if (pathname) {
970 free(pathname);
971 pathname = NULL;
972 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000973 return;
974}
975
Theodore Ts'oabdf84f2004-03-20 16:54:15 -0500976/*
977 * Given a mode, return the ext2 file type
978 */
979static int ext2_file_type(unsigned int mode)
980{
981 if (LINUX_S_ISREG(mode))
982 return EXT2_FT_REG_FILE;
983
984 if (LINUX_S_ISDIR(mode))
985 return EXT2_FT_DIR;
986
987 if (LINUX_S_ISCHR(mode))
988 return EXT2_FT_CHRDEV;
989
990 if (LINUX_S_ISBLK(mode))
991 return EXT2_FT_BLKDEV;
992
993 if (LINUX_S_ISLNK(mode))
994 return EXT2_FT_SYMLINK;
995
996 if (LINUX_S_ISFIFO(mode))
997 return EXT2_FT_FIFO;
998
999 if (LINUX_S_ISSOCK(mode))
1000 return EXT2_FT_SOCK;
1001
1002 return 0;
1003}
1004
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001005static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001006{
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001007 ext2_ino_t ino;
1008 struct ext2_inode inode;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001009 int retval;
1010 ext2_ino_t dir;
1011 char *dest, *cp, *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001012
1013 /*
1014 * Get the source inode
1015 */
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001016 ino = string_to_inode(sourcename);
1017 if (!ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001018 return;
1019 basename = strrchr(sourcename, '/');
1020 if (basename)
1021 basename++;
1022 else
1023 basename = sourcename;
1024 /*
1025 * Figure out the destination. First see if it exists and is
1026 * a directory.
1027 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001028 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001029 dest = basename;
1030 else {
1031 /*
1032 * OK, it doesn't exist. See if it is
1033 * '<dir>/basename' or 'basename'
1034 */
1035 cp = strrchr(destname, '/');
1036 if (cp) {
1037 *cp = 0;
1038 dir = string_to_inode(destname);
1039 if (!dir)
1040 return;
1041 dest = cp+1;
1042 } else {
1043 dir = cwd;
1044 dest = destname;
1045 }
1046 }
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001047
1048 if (debugfs_read_inode(ino, &inode, sourcename))
1049 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001050
Theodore Ts'oabdf84f2004-03-20 16:54:15 -05001051 retval = ext2fs_link(current_fs, dir, dest, ino,
1052 ext2_file_type(inode.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001053 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001054 com_err("make_link", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001055 return;
1056}
1057
1058
1059void do_link(int argc, char *argv[])
1060{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001061 if (common_args_process(argc, argv, 3, 3, "link",
1062 "<source file> <dest_name>", CHECK_FS_RW))
1063 return;
1064
1065 make_link(argv[1], argv[2]);
1066}
1067
1068static int mark_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001069 int blockcnt EXT2FS_ATTR((unused)),
1070 void *private EXT2FS_ATTR((unused)))
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001071{
1072 blk_t block;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001073
1074 block = *blocknr;
1075 ext2fs_block_alloc_stats(fs, block, +1);
1076 return 0;
1077}
1078
1079void do_undel(int argc, char *argv[])
1080{
1081 ext2_ino_t ino;
1082 struct ext2_inode inode;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001083
1084 if (common_args_process(argc, argv, 3, 3, "undelete",
1085 "<inode_num> <dest_name>",
1086 CHECK_FS_RW | CHECK_FS_BITMAPS))
1087 return;
1088
1089 ino = string_to_inode(argv[1]);
1090 if (!ino)
1091 return;
1092
1093 if (debugfs_read_inode(ino, &inode, argv[1]))
1094 return;
1095
1096 if (ext2fs_test_inode_bitmap(current_fs->inode_map, ino)) {
1097 com_err(argv[1], 0, "Inode is not marked as deleted");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001098 return;
1099 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001100
1101 /*
1102 * XXX this function doesn't handle changing the links count on the
1103 * parent directory when undeleting a directory.
1104 */
1105 inode.i_links_count = LINUX_S_ISDIR(inode.i_mode) ? 2 : 1;
1106 inode.i_dtime = 0;
1107
1108 if (debugfs_write_inode(ino, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001109 return;
1110
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001111 ext2fs_block_iterate(current_fs, ino, 0, NULL,
1112 mark_blocks_proc, NULL);
1113
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001114 ext2fs_inode_alloc_stats2(current_fs, ino, +1, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001115
Theodore Ts'o3839e651997-04-26 13:21:57 +00001116 make_link(argv[1], argv[2]);
1117}
1118
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001119static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001120{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001121 int retval;
1122 ext2_ino_t dir;
1123 char *basename;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001124
1125 basename = strrchr(filename, '/');
1126 if (basename) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001127 *basename++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +00001128 dir = string_to_inode(filename);
1129 if (!dir)
1130 return;
1131 } else {
1132 dir = cwd;
1133 basename = filename;
1134 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001135 retval = ext2fs_unlink(current_fs, dir, basename, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001136 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001137 com_err("unlink_file_by_name", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001138 return;
1139}
1140
1141void do_unlink(int argc, char *argv[])
1142{
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001143 if (common_args_process(argc, argv, 2, 2, "link",
1144 "<pathname>", CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001145 return;
1146
1147 unlink_file_by_name(argv[1]);
1148}
1149
1150void do_find_free_block(int argc, char *argv[])
1151{
1152 blk_t free_blk, goal;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001153 int count;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001154 errcode_t retval;
1155 char *tmp;
1156
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001157 if ((argc > 3) || (argc==2 && *argv[1] == '?')) {
1158 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001159 return;
1160 }
1161 if (check_fs_open(argv[0]))
1162 return;
1163
1164 if (argc > 1) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001165 count = strtol(argv[1],&tmp,0);
1166 if (*tmp) {
1167 com_err(argv[0], 0, "Bad count - %s", argv[1]);
1168 return;
1169 }
1170 } else
1171 count = 1;
1172
1173 if (argc > 2) {
1174 goal = strtol(argv[2], &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001175 if (*tmp) {
1176 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
1177 return;
1178 }
1179 }
1180 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001181 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001182
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001183 printf("Free blocks found: ");
1184 free_blk = goal - 1;
1185 while (count-- > 0) {
1186 retval = ext2fs_new_block(current_fs, free_blk + 1, 0,
1187 &free_blk);
1188 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001189 com_err("ext2fs_new_block", retval, 0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001190 return;
1191 } else
Takashi Sato8deb80a2006-03-18 21:43:46 -05001192 printf("%u ", free_blk);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001193 }
1194 printf("\n");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001195}
1196
1197void do_find_free_inode(int argc, char *argv[])
1198{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001199 ext2_ino_t free_inode, dir;
1200 int mode;
1201 int retval;
1202 char *tmp;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001203
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001204 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
1205 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001206 return;
1207 }
1208 if (check_fs_open(argv[0]))
1209 return;
1210
1211 if (argc > 1) {
1212 dir = strtol(argv[1], &tmp, 0);
1213 if (*tmp) {
1214 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
1215 return;
1216 }
1217 }
1218 else
1219 dir = root;
1220 if (argc > 2) {
1221 mode = strtol(argv[2], &tmp, 0);
1222 if (*tmp) {
1223 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
1224 return;
1225 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001226 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +00001227 mode = 010755;
1228
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001229 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001230 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001231 com_err("ext2fs_new_inode", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001232 else
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001233 printf("Free inode found: %u\n", free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001234}
1235
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001236static errcode_t copy_file(int fd, ext2_ino_t newfile)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001237{
Theodore Ts'o5a513841997-10-25 22:41:14 +00001238 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001239 errcode_t retval;
Theodore Ts'ob7846402001-06-03 23:27:56 +00001240 int got;
1241 unsigned int written;
Theodore Ts'o5a513841997-10-25 22:41:14 +00001242 char buf[8192];
1243 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001244
Theodore Ts'o5a513841997-10-25 22:41:14 +00001245 retval = ext2fs_file_open(current_fs, newfile,
1246 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001247 if (retval)
1248 return retval;
1249
Theodore Ts'o5a513841997-10-25 22:41:14 +00001250 while (1) {
1251 got = read(fd, buf, sizeof(buf));
1252 if (got == 0)
1253 break;
1254 if (got < 0) {
1255 retval = errno;
1256 goto fail;
1257 }
1258 ptr = buf;
1259 while (got > 0) {
1260 retval = ext2fs_file_write(e2_file, ptr,
1261 got, &written);
1262 if (retval)
1263 goto fail;
1264
1265 got -= written;
1266 ptr += written;
1267 }
1268 }
1269 retval = ext2fs_file_close(e2_file);
Theodore Ts'o5a513841997-10-25 22:41:14 +00001270 return retval;
1271
1272fail:
1273 (void) ext2fs_file_close(e2_file);
1274 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001275}
1276
Theodore Ts'o5a513841997-10-25 22:41:14 +00001277
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001278void do_write(int argc, char *argv[])
1279{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001280 int fd;
1281 struct stat statbuf;
1282 ext2_ino_t newfile;
1283 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001284 struct ext2_inode inode;
1285
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001286 if (common_args_process(argc, argv, 3, 3, "write",
1287 "<native file> <new file>", CHECK_FS_RW))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001288 return;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001289
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001290 fd = open(argv[1], O_RDONLY);
1291 if (fd < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001292 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001293 return;
1294 }
1295 if (fstat(fd, &statbuf) < 0) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001296 com_err(argv[1], errno, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001297 close(fd);
1298 return;
1299 }
1300
Theodore Ts'o1dd090f2002-10-31 11:53:49 -05001301 retval = ext2fs_namei(current_fs, root, cwd, argv[2], &newfile);
1302 if (retval == 0) {
1303 com_err(argv[0], 0, "The file '%s' already exists\n", argv[2]);
1304 close(fd);
1305 return;
1306 }
1307
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001308 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001309 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001310 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001311 close(fd);
1312 return;
1313 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001314 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001315 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1316 EXT2_FT_REG_FILE);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001317 if (retval == EXT2_ET_DIR_NO_SPACE) {
1318 retval = ext2fs_expand_dir(current_fs, cwd);
1319 if (retval) {
1320 com_err(argv[0], retval, "while expanding directory");
1321 return;
1322 }
1323 retval = ext2fs_link(current_fs, cwd, argv[2], newfile,
1324 EXT2_FT_REG_FILE);
1325 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001326 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001327 com_err(argv[2], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001328 close(fd);
1329 return;
1330 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001331 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001332 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001333 ext2fs_inode_alloc_stats2(current_fs, newfile, +1, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001334 memset(&inode, 0, sizeof(inode));
Theodore Ts'o04df4912003-12-07 16:31:45 -05001335 inode.i_mode = (statbuf.st_mode & ~LINUX_S_IFMT) | LINUX_S_IFREG;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001336 inode.i_atime = inode.i_ctime = inode.i_mtime =
1337 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001338 inode.i_links_count = 1;
1339 inode.i_size = statbuf.st_size;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001340 if (debugfs_write_new_inode(newfile, &inode, argv[0])) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001341 close(fd);
1342 return;
1343 }
1344 if (LINUX_S_ISREG(inode.i_mode)) {
1345 retval = copy_file(fd, newfile);
1346 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001347 com_err("copy_file", retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001348 }
1349 close(fd);
1350}
1351
1352void do_mknod(int argc, char *argv[])
1353{
Theodore Ts'o54434922003-12-07 01:28:50 -05001354 unsigned long mode, major, minor;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001355 ext2_ino_t newfile;
1356 errcode_t retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001357 struct ext2_inode inode;
Theodore Ts'o54434922003-12-07 01:28:50 -05001358 int filetype, nr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001359
1360 if (check_fs_open(argv[0]))
1361 return;
1362 if (argc < 3 || argv[2][1]) {
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001363 usage:
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001364 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1365 return;
1366 }
1367 mode = minor = major = 0;
1368 switch (argv[2][0]) {
1369 case 'p':
1370 mode = LINUX_S_IFIFO;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001371 filetype = EXT2_FT_FIFO;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001372 nr = 3;
1373 break;
1374 case 'c':
1375 mode = LINUX_S_IFCHR;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001376 filetype = EXT2_FT_CHRDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001377 nr = 5;
1378 break;
1379 case 'b':
1380 mode = LINUX_S_IFBLK;
Theodore Ts'o085cb192001-05-09 06:09:12 +00001381 filetype = EXT2_FT_BLKDEV;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001382 nr = 5;
1383 break;
1384 default:
Theodore Ts'o085cb192001-05-09 06:09:12 +00001385 filetype = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001386 nr = 0;
1387 }
1388 if (nr == 5) {
1389 major = strtoul(argv[3], argv+3, 0);
1390 minor = strtoul(argv[4], argv+4, 0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001391 if (major > 65535 || minor > 65535 || argv[3][0] || argv[4][0])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001392 nr = 0;
1393 }
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001394 if (argc != nr)
1395 goto usage;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001396 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001397 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001398 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001399 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001400 com_err(argv[0], retval, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001401 return;
1402 }
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001403 printf("Allocated inode: %u\n", newfile);
Theodore Ts'o085cb192001-05-09 06:09:12 +00001404 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, filetype);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001405 if (retval == EXT2_ET_DIR_NO_SPACE) {
1406 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001407 if (retval) {
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001408 com_err(argv[0], retval, "while expanding directory");
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001409 return;
1410 }
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001411 retval = ext2fs_link(current_fs, cwd, argv[1], newfile,
1412 filetype);
1413 }
1414 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001415 com_err(argv[1], retval, 0);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001416 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001417 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001418 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001419 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001420 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1421 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001422 memset(&inode, 0, sizeof(inode));
1423 inode.i_mode = mode;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001424 inode.i_atime = inode.i_ctime = inode.i_mtime =
1425 current_fs->now ? current_fs->now : time(0);
Theodore Ts'o2d107692004-02-23 22:30:54 -05001426 if ((major < 256) && (minor < 256)) {
1427 inode.i_block[0] = major*256+minor;
1428 inode.i_block[1] = 0;
1429 } else {
1430 inode.i_block[0] = 0;
1431 inode.i_block[1] = (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
1432 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001433 inode.i_links_count = 1;
Theodore Ts'o030970e2005-03-20 20:05:22 -05001434 if (debugfs_write_new_inode(newfile, &inode, argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001435 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001436}
1437
Theodore Ts'o3839e651997-04-26 13:21:57 +00001438void do_mkdir(int argc, char *argv[])
1439{
1440 char *cp;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001441 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001442 char *name;
1443 errcode_t retval;
1444
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001445 if (common_args_process(argc, argv, 2, 2, "mkdir",
1446 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001447 return;
1448
Theodore Ts'o3839e651997-04-26 13:21:57 +00001449 cp = strrchr(argv[1], '/');
1450 if (cp) {
1451 *cp = 0;
1452 parent = string_to_inode(argv[1]);
1453 if (!parent) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001454 com_err(argv[1], ENOENT, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001455 return;
1456 }
1457 name = cp+1;
1458 } else {
1459 parent = cwd;
1460 name = argv[1];
1461 }
1462
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001463try_again:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001464 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o2d9f0802003-12-11 11:54:48 -05001465 if (retval == EXT2_ET_DIR_NO_SPACE) {
1466 retval = ext2fs_expand_dir(current_fs, parent);
1467 if (retval) {
1468 com_err("argv[0]", retval, "while expanding directory");
1469 return;
1470 }
1471 goto try_again;
1472 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001473 if (retval) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001474 com_err("ext2fs_mkdir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001475 return;
1476 }
1477
1478}
1479
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001480static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -05001481 int blockcnt EXT2FS_ATTR((unused)),
1482 void *private EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001483{
Theodore Ts'o34436892001-12-22 13:06:02 -05001484 blk_t block;
Theodore Ts'o34436892001-12-22 13:06:02 -05001485
1486 block = *blocknr;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001487 ext2fs_block_alloc_stats(fs, block, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001488 return 0;
1489}
1490
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001491static void kill_file_by_inode(ext2_ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001492{
1493 struct ext2_inode inode_buf;
1494
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001495 if (debugfs_read_inode(inode, &inode_buf, 0))
1496 return;
Theodore Ts'o4efae602005-09-24 21:56:38 -04001497 inode_buf.i_dtime = current_fs->now ? current_fs->now : time(0);
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001498 if (debugfs_write_inode(inode, &inode_buf, 0))
1499 return;
Theodore Ts'o9c92d842004-11-19 14:39:14 -05001500 if (!ext2fs_inode_has_valid_blocks(&inode_buf))
1501 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001502
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001503 ext2fs_block_iterate(current_fs, inode, 0, NULL,
1504 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001505 printf("\n");
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001506 ext2fs_inode_alloc_stats2(current_fs, inode, -1,
1507 LINUX_S_ISDIR(inode_buf.i_mode));
Theodore Ts'o3839e651997-04-26 13:21:57 +00001508}
1509
1510
1511void do_kill_file(int argc, char *argv[])
1512{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001513 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001514
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001515 if (common_inode_args_process(argc, argv, &inode_num, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001516 return;
1517
Theodore Ts'o3839e651997-04-26 13:21:57 +00001518 kill_file_by_inode(inode_num);
1519}
1520
1521void do_rm(int argc, char *argv[])
1522{
1523 int retval;
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001524 ext2_ino_t inode_num;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001525 struct ext2_inode inode;
1526
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001527 if (common_args_process(argc, argv, 2, 2, "rm",
1528 "<filename>", CHECK_FS_RW))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001529 return;
1530
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001531 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001532 if (retval) {
Theodore Ts'o91d6d481998-08-01 01:03:39 +00001533 com_err(argv[0], retval, "while trying to resolve filename");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001534 return;
1535 }
1536
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001537 if (debugfs_read_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001538 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001539
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001540 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001541 com_err(argv[0], 0, "file is a directory");
1542 return;
1543 }
1544
1545 --inode.i_links_count;
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001546 if (debugfs_write_inode(inode_num, &inode, argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001547 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001548
1549 unlink_file_by_name(argv[1]);
1550 if (inode.i_links_count == 0)
1551 kill_file_by_inode(inode_num);
1552}
1553
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001554struct rd_struct {
1555 ext2_ino_t parent;
1556 int empty;
1557};
1558
Theodore Ts'o54434922003-12-07 01:28:50 -05001559static int rmdir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
1560 int entry EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001561 struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -05001562 int offset EXT2FS_ATTR((unused)),
1563 int blocksize EXT2FS_ATTR((unused)),
1564 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'od7f64ae2002-07-09 01:27:05 -04001565 void *private)
1566{
1567 struct rd_struct *rds = (struct rd_struct *) private;
1568
1569 if (dirent->inode == 0)
1570 return 0;
1571 if (((dirent->name_len&0xFF) == 1) && (dirent->name[0] == '.'))
1572 return 0;
1573 if (((dirent->name_len&0xFF) == 2) && (dirent->name[0] == '.') &&
1574 (dirent->name[1] == '.')) {
1575 rds->parent = dirent->inode;
1576 return 0;
1577 }
1578 rds->empty = 0;
1579 return 0;
1580}
1581
1582void do_rmdir(int argc, char *argv[])
1583{
1584 int retval;
1585 ext2_ino_t inode_num;
1586 struct ext2_inode inode;
1587 struct rd_struct rds;
1588
1589 if (common_args_process(argc, argv, 2, 2, "rmdir",
1590 "<filename>", CHECK_FS_RW))
1591 return;
1592
1593 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
1594 if (retval) {
1595 com_err(argv[0], retval, "while trying to resolve filename");
1596 return;
1597 }
1598
1599 if (debugfs_read_inode(inode_num, &inode, argv[0]))
1600 return;
1601
1602 if (!LINUX_S_ISDIR(inode.i_mode)) {
1603 com_err(argv[0], 0, "file is not a directory");
1604 return;
1605 }
1606
1607 rds.parent = 0;
1608 rds.empty = 1;
1609
1610 retval = ext2fs_dir_iterate2(current_fs, inode_num, 0,
1611 0, rmdir_proc, &rds);
1612 if (retval) {
1613 com_err(argv[0], retval, "while iterating over directory");
1614 return;
1615 }
1616 if (rds.empty == 0) {
1617 com_err(argv[0], 0, "directory not empty");
1618 return;
1619 }
1620
1621 inode.i_links_count = 0;
1622 if (debugfs_write_inode(inode_num, &inode, argv[0]))
1623 return;
1624
1625 unlink_file_by_name(argv[1]);
1626 kill_file_by_inode(inode_num);
1627
1628 if (rds.parent) {
1629 if (debugfs_read_inode(rds.parent, &inode, argv[0]))
1630 return;
1631 if (inode.i_links_count > 1)
1632 inode.i_links_count--;
1633 if (debugfs_write_inode(rds.parent, &inode, argv[0]))
1634 return;
1635 }
1636}
1637
Theodore Ts'o54434922003-12-07 01:28:50 -05001638void do_show_debugfs_params(int argc EXT2FS_ATTR((unused)),
1639 char *argv[] EXT2FS_ATTR((unused)))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001640{
1641 FILE *out = stdout;
1642
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001643 if (current_fs)
1644 fprintf(out, "Open mode: read-%s\n",
1645 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001646 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001647 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001648}
1649
1650void do_expand_dir(int argc, char *argv[])
1651{
Theodore Ts'ob044c2e2001-01-11 15:26:39 +00001652 ext2_ino_t inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001653 int retval;
1654
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001655 if (common_inode_args_process(argc, argv, &inode, CHECK_FS_RW))
Theodore Ts'o3839e651997-04-26 13:21:57 +00001656 return;
1657
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001658 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001659 if (retval)
Theodore Ts'o9b9a7802005-12-10 21:50:30 -05001660 com_err("ext2fs_expand_dir", retval, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001661 return;
1662}
1663
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001664void do_features(int argc, char *argv[])
1665{
1666 int i;
1667
1668 if (check_fs_open(argv[0]))
1669 return;
1670
1671 if ((argc != 1) && check_fs_read_write(argv[0]))
1672 return;
1673 for (i=1; i < argc; i++) {
1674 if (e2p_edit_feature(argv[i],
Theodore Ts'o06968e71999-10-23 03:17:10 +00001675 &current_fs->super->s_feature_compat, 0))
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001676 com_err(argv[0], 0, "Unknown feature: %s\n",
1677 argv[i]);
1678 else
1679 ext2fs_mark_super_dirty(current_fs);
1680 }
Theodore Ts'o5dd8f962001-01-01 15:51:50 +00001681 print_features(current_fs->super, stdout);
Theodore Ts'od3aea7d1999-09-14 20:55:37 +00001682}
1683
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001684void do_bmap(int argc, char *argv[])
1685{
1686 ext2_ino_t ino;
1687 blk_t blk, pblk;
1688 int err;
1689 errcode_t errcode;
1690
1691 if (common_args_process(argc, argv, 3, 3, argv[0],
1692 "<file> logical_blk", 0))
1693 return;
1694
1695 ino = string_to_inode(argv[1]);
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001696 if (!ino)
1697 return;
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001698 blk = parse_ulong(argv[2], argv[0], "logical_block", &err);
1699
1700 errcode = ext2fs_bmap(current_fs, ino, 0, 0, 0, blk, &pblk);
1701 if (errcode) {
1702 com_err("argv[0]", errcode,
Takashi Sato8deb80a2006-03-18 21:43:46 -05001703 "while mapping logical block %u\n", blk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001704 return;
1705 }
Takashi Sato8deb80a2006-03-18 21:43:46 -05001706 printf("%u\n", pblk);
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001707}
1708
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001709void do_imap(int argc, char *argv[])
1710{
1711 ext2_ino_t ino;
1712 unsigned long group, block, block_nr, offset;
1713
1714 if (common_args_process(argc, argv, 2, 2, argv[0],
1715 "<file>", 0))
1716 return;
1717 ino = string_to_inode(argv[1]);
1718 if (!ino)
Theodore Ts'o88494bb2003-05-13 23:03:43 -04001719 return;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001720
1721 group = (ino - 1) / EXT2_INODES_PER_GROUP(current_fs->super);
1722 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(current_fs->super)) *
1723 EXT2_INODE_SIZE(current_fs->super);
1724 block = offset >> EXT2_BLOCK_SIZE_BITS(current_fs->super);
1725 if (!current_fs->group_desc[(unsigned)group].bg_inode_table) {
Theodore Ts'o54434922003-12-07 01:28:50 -05001726 com_err(argv[0], 0, "Inode table for group %lu is missing\n",
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001727 group);
1728 return;
1729 }
1730 block_nr = current_fs->group_desc[(unsigned)group].bg_inode_table +
1731 block;
1732 offset &= (EXT2_BLOCK_SIZE(current_fs->super) - 1);
1733
Theodore Ts'o48e6e812003-07-06 00:36:48 -04001734 printf("Inode %d is part of block group %lu\n"
1735 "\tlocated at block %lu, offset 0x%04lx\n", ino, group,
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001736 block_nr, offset);
1737
1738}
1739
Theodore Ts'o4efae602005-09-24 21:56:38 -04001740void do_set_current_time(int argc, char *argv[])
1741{
Theodore Ts'o4efae602005-09-24 21:56:38 -04001742 time_t now;
Theodore Ts'obecf36f2003-05-05 11:35:04 -04001743
Theodore Ts'o4efae602005-09-24 21:56:38 -04001744 if (common_args_process(argc, argv, 2, 2, argv[0],
1745 "<time>", 0))
1746 return;
1747
1748 now = string_to_time(argv[1]);
1749 if (now == ((time_t) -1)) {
1750 com_err(argv[0], 0, "Couldn't parse argument as a time: %s\n",
1751 argv[1]);
1752 return;
1753
1754 } else {
1755 printf("Setting current time to %s\n", time_to_string(now));
1756 current_fs->now = now;
1757 }
1758}
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001759
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001760static int source_file(const char *cmd_file, int sci_idx)
1761{
1762 FILE *f;
1763 char buf[256];
1764 char *cp;
1765 int exit_status = 0;
1766 int retval;
1767
1768 if (strcmp(cmd_file, "-") == 0)
1769 f = stdin;
1770 else {
1771 f = fopen(cmd_file, "r");
1772 if (!f) {
1773 perror(cmd_file);
1774 exit(1);
1775 }
1776 }
1777 setbuf(stdout, NULL);
1778 setbuf(stderr, NULL);
1779 while (!feof(f)) {
1780 if (fgets(buf, sizeof(buf), f) == NULL)
1781 break;
1782 cp = strchr(buf, '\n');
1783 if (cp)
1784 *cp = 0;
1785 cp = strchr(buf, '\r');
1786 if (cp)
1787 *cp = 0;
1788 printf("debugfs: %s\n", buf);
1789 retval = ss_execute_line(sci_idx, buf);
1790 if (retval) {
1791 ss_perror(sci_idx, retval, buf);
1792 exit_status++;
1793 }
1794 }
1795 return exit_status;
1796}
1797
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001798int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001799{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001800 int retval;
1801 int sci_idx;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001802 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 +00001803 int c;
Theodore Ts'ocf8272e2006-11-12 23:26:46 -05001804 int open_flags = EXT2_FLAG_SOFTSUPP_FEATURES;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001805 char *request = 0;
1806 int exit_status = 0;
1807 char *cmd_file = 0;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001808 blk_t superblock = 0;
1809 blk_t blocksize = 0;
1810 int catastrophic = 0;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001811 char *data_filename = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001812
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001813 add_error_table(&et_ext2_error_table);
Theodore Ts'o0f8973f2001-08-27 12:44:23 -04001814 fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
1815 E2FSPROGS_DATE);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001816
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001817 while ((c = getopt (argc, argv, "iwcR:f:b:s:Vd:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001818 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001819 case 'R':
1820 request = optarg;
1821 break;
1822 case 'f':
1823 cmd_file = optarg;
1824 break;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001825 case 'd':
1826 data_filename = optarg;
1827 break;
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001828 case 'i':
1829 open_flags |= EXT2_FLAG_IMAGE_FILE;
1830 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001831 case 'w':
Theodore Ts'o59cf7e02001-05-03 15:05:55 +00001832 open_flags |= EXT2_FLAG_RW;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001833 break;
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001834 case 'b':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001835 blocksize = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001836 "block size", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001837 break;
1838 case 's':
Theodore Ts'ob38cd282002-05-11 22:13:20 -04001839 superblock = parse_ulong(optarg, argv[0],
Theodore Ts'oe1018ee2002-01-03 04:55:25 -05001840 "superblock number", 0);
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001841 break;
1842 case 'c':
1843 catastrophic = 1;
1844 break;
Theodore Ts'o818180c1998-06-27 05:11:14 +00001845 case 'V':
1846 /* Print version number and exit */
1847 fprintf(stderr, "\tUsing %s\n",
1848 error_message(EXT2_ET_BASE));
1849 exit(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001850 default:
1851 com_err(argv[0], 0, usage);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001852 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001853 }
1854 }
1855 if (optind < argc)
Theodore Ts'o2e8d40d2000-05-27 15:15:40 +00001856 open_filesystem(argv[optind], open_flags,
Theodore Ts'o1ad54a92004-07-28 21:11:48 -04001857 superblock, blocksize, catastrophic,
1858 data_filename);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001859
1860 sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
1861 &debug_cmds, &retval);
1862 if (retval) {
1863 ss_perror(sci_idx, retval, "creating invocation");
1864 exit(1);
1865 }
Theodore Ts'o3ae497e2003-03-16 06:26:25 -05001866 ss_get_readline(sci_idx);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001867
1868 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1869 if (retval) {
1870 ss_perror(sci_idx, retval, "adding standard requests");
1871 exit (1);
1872 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001873 if (request) {
1874 retval = 0;
1875 retval = ss_execute_line(sci_idx, request);
1876 if (retval) {
1877 ss_perror(sci_idx, retval, request);
1878 exit_status++;
1879 }
1880 } else if (cmd_file) {
1881 exit_status = source_file(cmd_file, sci_idx);
1882 } else {
1883 ss_listen(sci_idx);
1884 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001885
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001886 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001887 close_filesystem();
1888
Theodore Ts'oa6d83022006-12-26 03:38:07 -05001889 remove_error_table(&et_ext2_error_table);
Theodore Ts'oe5973042000-01-18 17:58:34 +00001890 return exit_status;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001891}