blob: 85d14b0af3e55850365131303b7368a98deb3f3c [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * debugfs.c --- a program which allows you to attach an ext2fs
3 * filesystem and play with it.
4 *
5 * Copyright (C) 1993 Theodore Ts'o. This file may be redistributed
6 * under the terms of the GNU Public License.
7 *
8 * Modifications by Robert Sanders <gt8134b@prism.gatech.edu>
9 */
10
11#include <stdio.h>
12#include <unistd.h>
13#include <stdlib.h>
14#include <ctype.h>
15#include <string.h>
16#include <time.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000017#ifdef HAVE_GETOPT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <getopt.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000019#else
20extern int optind;
21extern char *optarg;
22#endif
23#ifdef HAVE_OPTRESET
24extern int optreset; /* defined by BSD, but not others */
25#endif
26#ifdef HAVE_ERRNO_H
27#include <errno.h>
28#endif
29#include <fcntl.h>
Theodore Ts'o3839e651997-04-26 13:21:57 +000030#include <sys/types.h>
31#include <sys/stat.h>
32
33#include "et/com_err.h"
34#include "ss/ss.h"
35#include "debugfs.h"
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000036#include "uuid/uuid.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000037
38extern ss_request_table debug_cmds;
39
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000040ext2_filsys current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000041ino_t root, cwd;
42
Theodore Ts'o50e1e101997-04-26 13:58:21 +000043static void open_filesystem(char *device, int open_flags)
Theodore Ts'o3839e651997-04-26 13:21:57 +000044{
45 int retval;
46
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000047 retval = ext2fs_open(device, open_flags, 0, 0,
48 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000049 if (retval) {
50 com_err(device, retval, "while opening filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000051 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000052 return;
53 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000054 retval = ext2fs_read_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000055 if (retval) {
56 com_err(device, retval, "while reading inode bitmap");
57 goto errout;
58 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000059 retval = ext2fs_read_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000060 if (retval) {
61 com_err(device, retval, "while reading block bitmap");
62 goto errout;
63 }
64 root = cwd = EXT2_ROOT_INO;
65 return;
66
67errout:
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000068 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +000069 if (retval)
70 com_err(device, retval, "while trying to close filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000071 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +000072}
73
74void do_open_filesys(int argc, char **argv)
75{
Theodore Ts'o50e1e101997-04-26 13:58:21 +000076 const char *usage = "Usage: open [-w] <device>";
Theodore Ts'of1304811997-10-25 03:51:53 +000077 int c;
Theodore Ts'o3839e651997-04-26 13:21:57 +000078 int open_flags = 0;
79
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +000080 optind = 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +000081#ifdef HAVE_OPTRESET
82 optreset = 1; /* Makes BSD getopt happy */
83#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000084 while ((c = getopt (argc, argv, "w")) != EOF) {
85 switch (c) {
86 case 'w':
87 open_flags = EXT2_FLAG_RW;
88 break;
89 default:
90 com_err(argv[0], 0, usage);
91 return;
92 }
93 }
94 if (optind != argc-1) {
95 com_err(argv[0], 0, usage);
96 return;
97 }
98 if (check_fs_not_open(argv[0]))
99 return;
100 open_filesystem(argv[optind], open_flags);
101}
102
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000103static void close_filesystem(NOARGS)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000104{
105 int retval;
106
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000107 if (current_fs->flags & EXT2_FLAG_IB_DIRTY) {
108 retval = ext2fs_write_inode_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000109 if (retval)
110 com_err("ext2fs_write_inode_bitmap", retval, "");
111 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000112 if (current_fs->flags & EXT2_FLAG_BB_DIRTY) {
113 retval = ext2fs_write_block_bitmap(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000114 if (retval)
115 com_err("ext2fs_write_block_bitmap", retval, "");
116 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000117 retval = ext2fs_close(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000118 if (retval)
119 com_err("ext2fs_close", retval, "");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000120 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000121 return;
122}
123
124void do_close_filesys(int argc, char **argv)
125{
126 if (argc > 1) {
127 com_err(argv[0], 0, "Usage: close_filesys");
128 return;
129 }
130 if (check_fs_open(argv[0]))
131 return;
132 close_filesystem();
133}
134
135void do_init_filesys(int argc, char **argv)
136{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000137 const char *usage = "Usage: initialize <device> <blocksize>";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000138 struct ext2_super_block param;
139 errcode_t retval;
140 char *tmp;
141
142 if (argc != 3) {
143 com_err(argv[0], 0, usage);
144 return;
145 }
146 if (check_fs_not_open(argv[0]))
147 return;
148
149 memset(&param, 0, sizeof(struct ext2_super_block));
150 param.s_blocks_count = strtoul(argv[2], &tmp, 0);
151 if (*tmp) {
152 com_err(argv[0], 0, "Bad blocks count - %s", argv[2]);
153 return;
154 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000155 retval = ext2fs_initialize(argv[1], 0, &param,
156 unix_io_manager, &current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157 if (retval) {
158 com_err(argv[1], retval, "while initializing filesystem");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000159 current_fs = NULL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000160 return;
161 }
162 root = cwd = EXT2_ROOT_INO;
163 return;
164}
165
166void do_show_super_stats(int argc, char *argv[])
167{
168 int i;
169 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000170 struct ext2fs_sb *sb;
171 struct ext2_group_desc *gdp;
172 char buf[80];
173 const char *none = "(none)";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000174
175 if (argc > 1) {
176 com_err(argv[0], 0, "Usage: show_super");
177 return;
178 }
179 if (check_fs_open(argv[0]))
180 return;
181 out = open_pager();
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000182 sb = (struct ext2fs_sb *) current_fs->super;
183 fprintf(out, "Filesystem is read-%s\n",
184 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
185 if (sb->s_volume_name[0]) {
186 memset(buf, 0, sizeof(buf));
187 strncpy(buf, sb->s_volume_name, sizeof(sb->s_volume_name));
188 } else
189 strcpy(buf, none);
190 fprintf(out, "Volume name = %s\n", buf);
191 if (sb->s_last_mounted[0]) {
192 memset(buf, 0, sizeof(buf));
193 strncpy(buf, sb->s_last_mounted, sizeof(sb->s_last_mounted));
194 } else
195 strcpy(buf, none);
196 fprintf(out, "Last mounted directory = %s\n", buf);
197 if (!uuid_is_null(sb->s_uuid))
198 uuid_unparse(sb->s_uuid, buf);
199 else
200 strcpy(buf, none);
201 fprintf(out, "Filesystem UUID = %s\n", buf);
202 fprintf(out, "Last mount time = %s", time_to_string(sb->s_mtime));
203 fprintf(out, "Last write time = %s", time_to_string(sb->s_wtime));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000204 fprintf(out, "Mount counts = %d (maximal = %d)\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000205 sb->s_mnt_count, sb->s_max_mnt_count);
206 fputs ("Filesystem OS type = ", out);
207 switch (sb->s_creator_os) {
208 case EXT2_OS_LINUX: fputs ("Linux\n", out); break;
209 case EXT2_OS_HURD: fputs ("GNU\n", out); break;
210 case EXT2_OS_MASIX: fputs ("Masix\n", out); break;
211 default: fputs ("unknown\n", out);
212 }
213 fprintf(out, "Superblock size = %d\n",
214 sizeof(struct ext2_super_block));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000215 fprintf(out, "Block size = %d, fragment size = %d\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000216 EXT2_BLOCK_SIZE(sb), EXT2_FRAG_SIZE(sb));
217 fprintf(out, "Inode size = %d\n", EXT2_INODE_SIZE(sb));
218 fprintf(out, "%d inodes, %d free\n", sb->s_inodes_count,
219 sb->s_free_inodes_count);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000220 fprintf(out, "%d blocks, %d free, %d reserved, first block = %d\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000221 sb->s_blocks_count, sb->s_free_blocks_count,
222 sb->s_r_blocks_count, sb->s_first_data_block);
223 fprintf(out, "%d blocks per group\n", sb->s_blocks_per_group);
224 fprintf(out, "%d fragments per group\n", sb->s_frags_per_group);
225 fprintf(out, "%d inodes per group\n", EXT2_INODES_PER_GROUP(sb));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000226 fprintf(out, "%ld group%s (%ld descriptors block%s)\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000227 current_fs->group_desc_count,
228 (current_fs->group_desc_count != 1) ? "s" : "",
229 current_fs->desc_blocks,
230 (current_fs->desc_blocks != 1) ? "s" : "");
231
232 gdp = &current_fs->group_desc[0];
233 for (i = 0; i < current_fs->group_desc_count; i++, gdp++)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000234 fprintf(out, " Group %2d: block bitmap at %d, "
235 "inode bitmap at %d, "
236 "inode table at %d\n"
Theodore Ts'o3839e651997-04-26 13:21:57 +0000237 " %d free block%s, "
238 "%d free inode%s, "
239 "%d used director%s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000240 i, gdp->bg_block_bitmap,
241 gdp->bg_inode_bitmap, gdp->bg_inode_table,
242 gdp->bg_free_blocks_count,
243 gdp->bg_free_blocks_count != 1 ? "s" : "",
244 gdp->bg_free_inodes_count,
245 gdp->bg_free_inodes_count != 1 ? "s" : "",
246 gdp->bg_used_dirs_count,
247 gdp->bg_used_dirs_count != 1 ? "ies" : "y");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 close_pager(out);
249}
250
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000251void do_dirty_filesys(int argc, char *argv[])
252{
253 if (check_fs_open(argv[0]))
254 return;
255
256 ext2fs_mark_super_dirty(current_fs);
257}
258
Theodore Ts'o3839e651997-04-26 13:21:57 +0000259struct list_blocks_struct {
260 FILE *f;
261 int total;
262};
263
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000264static int list_blocks_proc(ext2_filsys fs, blk_t *blocknr, int blockcnt,
265 void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000266{
267 struct list_blocks_struct *lb = (struct list_blocks_struct *) private;
268
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000269 fprintf(lb->f, "%d ", *blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000270 lb->total++;
271 return 0;
272}
273
274
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000275static void dump_blocks(FILE *f, ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000276{
277 struct list_blocks_struct lb;
278
279 fprintf(f, "BLOCKS:\n");
280 lb.total = 0;
281 lb.f = f;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000282 ext2fs_block_iterate(current_fs, inode, 0, NULL,
283 list_blocks_proc, (void *)&lb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000284 if (lb.total)
285 fprintf(f, "\nTOTAL: %d\n", lb.total);
286 fprintf(f,"\n");
287}
288
289
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000290static void dump_inode(ino_t inode_num, struct ext2_inode inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000291{
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000292 const char *i_type;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000293 FILE *out;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000294 char frag, fsize;
295 int os = current_fs->super->s_creator_os;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000296
297 out = open_pager();
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000298 if (LINUX_S_ISDIR(inode.i_mode)) i_type = "directory";
299 else if (LINUX_S_ISREG(inode.i_mode)) i_type = "regular";
300 else if (LINUX_S_ISLNK(inode.i_mode)) i_type = "symlink";
301 else if (LINUX_S_ISBLK(inode.i_mode)) i_type = "block special";
302 else if (LINUX_S_ISCHR(inode.i_mode)) i_type = "character special";
303 else if (LINUX_S_ISFIFO(inode.i_mode)) i_type = "FIFO";
304 else if (LINUX_S_ISSOCK(inode.i_mode)) i_type = "socket";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000305 else i_type = "bad type";
306 fprintf(out, "Inode: %ld Type: %s ", inode_num, i_type);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000307 fprintf(out, "Mode: %04o Flags: 0x%x Version: %d\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000308 inode.i_mode & 0777, inode.i_flags, inode.i_version);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000309 fprintf(out, "User: %5d Group: %5d Size: %d\n",
Theodore Ts'o3839e651997-04-26 13:21:57 +0000310 inode.i_uid, inode.i_gid, inode.i_size);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000311 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000312 fprintf(out,
313 "File ACL: %d Directory ACL: %d Translator: %d\n",
314 inode.i_file_acl, inode.i_dir_acl,
315 inode.osd1.hurd1.h_i_translator);
316 else
317 fprintf(out, "File ACL: %d Directory ACL: %d\n",
318 inode.i_file_acl, inode.i_dir_acl);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000319 fprintf(out, "Links: %d Blockcount: %d\n", inode.i_links_count,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000320 inode.i_blocks);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000321 switch (os) {
322 case EXT2_OS_LINUX:
323 frag = inode.osd2.linux2.l_i_frag;
324 fsize = inode.osd2.linux2.l_i_fsize;
325 break;
326 case EXT2_OS_HURD:
327 frag = inode.osd2.hurd2.h_i_frag;
328 fsize = inode.osd2.hurd2.h_i_fsize;
329 break;
330 case EXT2_OS_MASIX:
331 frag = inode.osd2.masix2.m_i_frag;
332 fsize = inode.osd2.masix2.m_i_fsize;
333 break;
334 default:
335 frag = fsize = 0;
336 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000337 fprintf(out, "Fragment: Address: %d Number: %d Size: %d\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000338 inode.i_faddr, frag, fsize);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000339 fprintf(out, "ctime: 0x%08x -- %s", inode.i_ctime,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000340 time_to_string(inode.i_ctime));
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000341 fprintf(out, "atime: 0x%08x -- %s", inode.i_atime,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000342 time_to_string(inode.i_atime));
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000343 fprintf(out, "mtime: 0x%08x -- %s", inode.i_mtime,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000344 time_to_string(inode.i_mtime));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000345 if (inode.i_dtime)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000346 fprintf(out, "dtime: 0x%08x -- %s", inode.i_dtime,
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000347 time_to_string(inode.i_dtime));
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000348 if (LINUX_S_ISLNK(inode.i_mode) && inode.i_blocks == 0)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000349 fprintf(out, "Fast_link_dest: %s\n", (char *)inode.i_block);
350 else
351 dump_blocks(out, inode_num);
352 close_pager(out);
353}
354
355
356void do_stat(int argc, char *argv[])
357{
358 ino_t inode;
359 struct ext2_inode inode_buf;
360 int retval;
361
362 if (argc != 2) {
363 com_err(argv[0], 0, "Usage: stat <file>");
364 return;
365 }
366 if (check_fs_open(argv[0]))
367 return;
368 inode = string_to_inode(argv[1]);
369 if (!inode)
370 return;
371
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000372 retval = ext2fs_read_inode(current_fs, inode, &inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000373 if (retval)
374 {
375 com_err(argv[0], 0, "Reading inode");
376 return;
377 }
378
379 dump_inode(inode,inode_buf);
380 return;
381}
382
383void do_chroot(int argc, char *argv[])
384{
385 ino_t inode;
386 int retval;
387
388 if (argc != 2) {
389 com_err(argv[0], 0, "Usage: chroot <file>");
390 return;
391 }
392 if (check_fs_open(argv[0]))
393 return;
394 inode = string_to_inode(argv[1]);
395 if (!inode)
396 return;
397
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000398 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000399 if (retval) {
400 com_err(argv[1], retval, "");
401 return;
402 }
403 root = inode;
404}
405
406void do_clri(int argc, char *argv[])
407{
408 ino_t inode;
409 int retval;
410 struct ext2_inode inode_buf;
411
412 if (argc != 2) {
413 com_err(argv[0], 0, "Usage: clri <file>");
414 return;
415 }
416 if (check_fs_open(argv[0]))
417 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000418 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000419 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000420 inode = string_to_inode(argv[1]);
421 if (!inode)
422 return;
423
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000424 retval = ext2fs_read_inode(current_fs, inode, &inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000425 if (retval) {
426 com_err(argv[0], 0, "while trying to read inode %d", inode);
427 return;
428 }
429 memset(&inode_buf, 0, sizeof(inode_buf));
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000430 retval = ext2fs_write_inode(current_fs, inode, &inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431 if (retval) {
432 com_err(argv[0], retval, "while trying to write inode %d",
433 inode);
434 return;
435 }
436}
437
438void do_freei(int argc, char *argv[])
439{
440 ino_t inode;
441
442 if (argc != 2) {
443 com_err(argv[0], 0, "Usage: freei <file>");
444 return;
445 }
446 if (check_fs_open(argv[0]))
447 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000448 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000449 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000450 inode = string_to_inode(argv[1]);
451 if (!inode)
452 return;
453
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000454 if (!ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000455 com_err(argv[0], 0, "Warning: inode already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000456 ext2fs_unmark_inode_bitmap(current_fs->inode_map,inode);
457 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000458}
459
460void do_seti(int argc, char *argv[])
461{
462 ino_t inode;
463
464 if (argc != 2) {
465 com_err(argv[0], 0, "Usage: seti <file>");
466 return;
467 }
468 if (check_fs_open(argv[0]))
469 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000470 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000471 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000472 inode = string_to_inode(argv[1]);
473 if (!inode)
474 return;
475
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000476 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000477 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000478 ext2fs_mark_inode_bitmap(current_fs->inode_map,inode);
479 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000480}
481
482void do_testi(int argc, char *argv[])
483{
484 ino_t inode;
485
486 if (argc != 2) {
487 com_err(argv[0], 0, "Usage: testi <file>");
488 return;
489 }
490 if (check_fs_open(argv[0]))
491 return;
492 inode = string_to_inode(argv[1]);
493 if (!inode)
494 return;
495
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000496 if (ext2fs_test_inode_bitmap(current_fs->inode_map,inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000497 printf("Inode %ld is marked in use\n", inode);
498 else
499 printf("Inode %ld is not in use\n", inode);
500}
501
502
503void do_freeb(int argc, char *argv[])
504{
505 blk_t block;
506 char *tmp;
507
508 if (argc != 2) {
509 com_err(argv[0], 0, "Usage: freeb <block>");
510 return;
511 }
512 if (check_fs_open(argv[0]))
513 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000514 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000515 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000516 block = strtoul(argv[1], &tmp, 0);
517 if (!block || *tmp) {
518 com_err(argv[0], 0, "No block 0");
519 return;
520 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000521 if (!ext2fs_test_block_bitmap(current_fs->block_map,block))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000522 com_err(argv[0], 0, "Warning: block already clear");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000523 ext2fs_unmark_block_bitmap(current_fs->block_map,block);
524 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000525}
526
527void do_setb(int argc, char *argv[])
528{
529 blk_t block;
530 char *tmp;
531
532 if (argc != 2) {
533 com_err(argv[0], 0, "Usage: setb <block>");
534 return;
535 }
536 if (check_fs_open(argv[0]))
537 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000538 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000539 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540 block = strtoul(argv[1], &tmp, 0);
541 if (!block || *tmp) {
542 com_err(argv[0], 0, "No block 0");
543 return;
544 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000545 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000546 com_err(argv[0], 0, "Warning: block already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000547 ext2fs_mark_block_bitmap(current_fs->block_map,block);
548 ext2fs_mark_bb_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000549}
550
551void do_testb(int argc, char *argv[])
552{
553 blk_t block;
554 char *tmp;
555
556 if (argc != 2) {
557 com_err(argv[0], 0, "Usage: testb <block>");
558 return;
559 }
560 if (check_fs_open(argv[0]))
561 return;
562 block = strtoul(argv[1], &tmp, 0);
563 if (!block || *tmp) {
564 com_err(argv[0], 0, "No block 0");
565 return;
566 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000567 if (ext2fs_test_block_bitmap(current_fs->block_map,block))
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000568 printf("Block %d marked in use\n", block);
569 else printf("Block %d not in use\n", block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000570}
571
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000572static void modify_u8(char *com, const char *prompt,
573 const char *format, __u8 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000574{
575 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000576 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000577 char *tmp;
578
579 sprintf(buf, format, *val);
580 printf("%30s [%s] ", prompt, buf);
581 fgets(buf, sizeof(buf), stdin);
582 if (buf[strlen (buf) - 1] == '\n')
583 buf[strlen (buf) - 1] = '\0';
584 if (!buf[0])
585 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000586 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000587 if (*tmp)
588 com_err(com, 0, "Bad value - %s", buf);
589 else
590 *val = v;
591}
592
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000593static void modify_u16(char *com, const char *prompt,
594 const char *format, __u16 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000595{
596 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000597 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000598 char *tmp;
599
600 sprintf(buf, format, *val);
601 printf("%30s [%s] ", prompt, buf);
602 fgets(buf, sizeof(buf), stdin);
603 if (buf[strlen (buf) - 1] == '\n')
604 buf[strlen (buf) - 1] = '\0';
605 if (!buf[0])
606 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000607 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000608 if (*tmp)
609 com_err(com, 0, "Bad value - %s", buf);
610 else
611 *val = v;
612}
613
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000614static void modify_u32(char *com, const char *prompt,
615 const char *format, __u32 *val)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000616{
617 char buf[200];
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000618 unsigned long v;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000619 char *tmp;
620
621 sprintf(buf, format, *val);
622 printf("%30s [%s] ", prompt, buf);
623 fgets(buf, sizeof(buf), stdin);
624 if (buf[strlen (buf) - 1] == '\n')
625 buf[strlen (buf) - 1] = '\0';
626 if (!buf[0])
627 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000628 v = strtoul(buf, &tmp, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000629 if (*tmp)
630 com_err(com, 0, "Bad value - %s", buf);
631 else
632 *val = v;
633}
634
635
636void do_modify_inode(int argc, char *argv[])
637{
638 struct ext2_inode inode;
639 ino_t inode_num;
640 int i;
641 errcode_t retval;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000642 unsigned char *frag, *fsize;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000643 char buf[80];
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000644 int os = current_fs->super->s_creator_os;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000645 const char *hex_format = "0x%x";
646 const char *octal_format = "0%o";
647 const char *decimal_format = "%d";
Theodore Ts'o3839e651997-04-26 13:21:57 +0000648
649 if (argc != 2) {
650 com_err(argv[0], 0, "Usage: modify_inode <file>");
651 return;
652 }
653 if (check_fs_open(argv[0]))
654 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000655 if (check_fs_read_write(argv[0]))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000656 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000657
658 inode_num = string_to_inode(argv[1]);
659 if (!inode_num)
660 return;
661
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000662 retval = ext2fs_read_inode(current_fs, inode_num, &inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000663 if (retval) {
664 com_err(argv[1], retval, "while trying to read inode %d",
665 inode_num);
666 return;
667 }
668
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000669 modify_u16(argv[0], "Mode", octal_format, &inode.i_mode);
670 modify_u16(argv[0], "User ID", decimal_format, &inode.i_uid);
671 modify_u16(argv[0], "Group ID", decimal_format, &inode.i_gid);
672 modify_u32(argv[0], "Size", decimal_format, &inode.i_size);
673 modify_u32(argv[0], "Creation time", decimal_format, &inode.i_ctime);
674 modify_u32(argv[0], "Modification time", decimal_format, &inode.i_mtime);
675 modify_u32(argv[0], "Access time", decimal_format, &inode.i_atime);
676 modify_u32(argv[0], "Deletion time", decimal_format, &inode.i_dtime);
677 modify_u16(argv[0], "Link count", decimal_format, &inode.i_links_count);
678 modify_u32(argv[0], "Block count", decimal_format, &inode.i_blocks);
679 modify_u32(argv[0], "File flags", hex_format, &inode.i_flags);
680#if 0
681 modify_u32(argv[0], "Reserved1", decimal_format, &inode.i_reserved1);
682#endif
683 modify_u32(argv[0], "File acl", decimal_format, &inode.i_file_acl);
684 modify_u32(argv[0], "Directory acl", decimal_format, &inode.i_dir_acl);
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000685
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000686 if (current_fs->super->s_creator_os == EXT2_OS_HURD)
Theodore Ts'o62c06f71997-04-29 14:34:47 +0000687 modify_u32(argv[0], "Translator Block",
688 decimal_format, &inode.osd1.hurd1.h_i_translator);
689
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000690 modify_u32(argv[0], "Fragment address", decimal_format, &inode.i_faddr);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000691 switch (os) {
692 case EXT2_OS_LINUX:
693 frag = &inode.osd2.linux2.l_i_frag;
694 fsize = &inode.osd2.linux2.l_i_fsize;
695 break;
696 case EXT2_OS_HURD:
697 frag = &inode.osd2.hurd2.h_i_frag;
698 fsize = &inode.osd2.hurd2.h_i_fsize;
699 break;
700 case EXT2_OS_MASIX:
701 frag = &inode.osd2.masix2.m_i_frag;
702 fsize = &inode.osd2.masix2.m_i_fsize;
703 break;
704 default:
705 frag = fsize = 0;
706 }
707 if (frag)
708 modify_u8(argv[0], "Fragment number", decimal_format, frag);
709 if (fsize)
710 modify_u8(argv[0], "Fragment size", decimal_format, fsize);
711
Theodore Ts'o3839e651997-04-26 13:21:57 +0000712 for (i=0; i < EXT2_NDIR_BLOCKS; i++) {
713 sprintf(buf, "Direct Block #%d", i);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000714 modify_u32(argv[0], buf, decimal_format, &inode.i_block[i]);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000715 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000716 modify_u32(argv[0], "Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000717 &inode.i_block[EXT2_IND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000718 modify_u32(argv[0], "Double Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000719 &inode.i_block[EXT2_DIND_BLOCK]);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000720 modify_u32(argv[0], "Triple Indirect Block", decimal_format,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000721 &inode.i_block[EXT2_TIND_BLOCK]);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000722 retval = ext2fs_write_inode(current_fs, inode_num, &inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000723 if (retval) {
724 com_err(argv[1], retval, "while trying to write inode %d",
725 inode_num);
726 return;
727 }
728}
729
Theodore Ts'o3839e651997-04-26 13:21:57 +0000730void do_change_working_dir(int argc, char *argv[])
731{
732 ino_t inode;
733 int retval;
734
735 if (argc != 2) {
736 com_err(argv[0], 0, "Usage: cd <file>");
737 return;
738 }
739 if (check_fs_open(argv[0]))
740 return;
741
742 inode = string_to_inode(argv[1]);
743 if (!inode)
744 return;
745
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000746 retval = ext2fs_check_directory(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000747 if (retval) {
748 com_err(argv[1], retval, "");
749 return;
750 }
751 cwd = inode;
752 return;
753}
754
Theodore Ts'o3839e651997-04-26 13:21:57 +0000755void do_print_working_directory(int argc, char *argv[])
756{
757 int retval;
758 char *pathname = NULL;
759
760 if (argc > 1) {
761 com_err(argv[0], 0, "Usage: print_working_directory");
762 return;
763 }
764 if (check_fs_open(argv[0]))
765 return;
766
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000767 retval = ext2fs_get_pathname(current_fs, cwd, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000768 if (retval) {
769 com_err(argv[0], retval,
770 "while trying to get pathname of cwd");
771 }
772 printf("[pwd] INODE: %6ld PATH: %s\n", cwd, pathname);
773 free(pathname);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000774 retval = ext2fs_get_pathname(current_fs, root, 0, &pathname);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000775 if (retval) {
776 com_err(argv[0], retval,
777 "while trying to get pathname of root");
778 }
779 printf("[root] INODE: %6ld PATH: %s\n", root, pathname);
780 free(pathname);
781 return;
782}
783
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000784static void make_link(char *sourcename, char *destname)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000785{
786 ino_t inode;
787 int retval;
788 ino_t dir;
789 char *dest, *cp, *basename;
790
791 /*
792 * Get the source inode
793 */
794 inode = string_to_inode(sourcename);
795 if (!inode)
796 return;
797 basename = strrchr(sourcename, '/');
798 if (basename)
799 basename++;
800 else
801 basename = sourcename;
802 /*
803 * Figure out the destination. First see if it exists and is
804 * a directory.
805 */
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000806 if (! (retval=ext2fs_namei(current_fs, root, cwd, destname, &dir)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000807 dest = basename;
808 else {
809 /*
810 * OK, it doesn't exist. See if it is
811 * '<dir>/basename' or 'basename'
812 */
813 cp = strrchr(destname, '/');
814 if (cp) {
815 *cp = 0;
816 dir = string_to_inode(destname);
817 if (!dir)
818 return;
819 dest = cp+1;
820 } else {
821 dir = cwd;
822 dest = destname;
823 }
824 }
825
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000826 retval = ext2fs_link(current_fs, dir, dest, inode, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000827 if (retval)
828 com_err("make_link", retval, "");
829 return;
830}
831
832
833void do_link(int argc, char *argv[])
834{
835 if (argc != 3) {
836 com_err(argv[0], 0, "Usage: link <source_file> <dest_name>");
837 return;
838 }
839 if (check_fs_open(argv[0]))
840 return;
841
842 make_link(argv[1], argv[2]);
843}
844
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000845static void unlink_file_by_name(char *filename)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000846{
847 int retval;
848 ino_t dir;
849 char *basename;
850
851 basename = strrchr(filename, '/');
852 if (basename) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000853 *basename++ = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000854 dir = string_to_inode(filename);
855 if (!dir)
856 return;
857 } else {
858 dir = cwd;
859 basename = filename;
860 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000861 retval = ext2fs_unlink(current_fs, dir, basename, 0, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000862 if (retval)
863 com_err("unlink_file_by_name", retval, "");
864 return;
865}
866
867void do_unlink(int argc, char *argv[])
868{
869 if (argc != 2) {
870 com_err(argv[0], 0, "Usage: unlink <pathname>");
871 return;
872 }
873 if (check_fs_open(argv[0]))
874 return;
875
876 unlink_file_by_name(argv[1]);
877}
878
879void do_find_free_block(int argc, char *argv[])
880{
881 blk_t free_blk, goal;
882 errcode_t retval;
883 char *tmp;
884
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000885 if ((argc > 2) || (argc==2 && *argv[1] == '?')) {
886 com_err(argv[0], 0, "Usage: find_free_block [goal]");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000887 return;
888 }
889 if (check_fs_open(argv[0]))
890 return;
891
892 if (argc > 1) {
893 goal = strtol(argv[1], &tmp, 0);
894 if (*tmp) {
895 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
896 return;
897 }
898 }
899 else
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000900 goal = current_fs->super->s_first_data_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000901
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000902 retval = ext2fs_new_block(current_fs, goal, 0, &free_blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000903 if (retval)
904 com_err("ext2fs_new_block", retval, "");
905 else
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000906 printf("Free block found: %d\n", free_blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000907
908}
909
910void do_find_free_inode(int argc, char *argv[])
911{
912 ino_t free_inode, dir;
913 int mode;
914 int retval;
915 char *tmp;
916
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000917 if (argc > 3 || (argc>1 && *argv[1] == '?')) {
918 com_err(argv[0], 0, "Usage: find_free_inode [dir] [mode]");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000919 return;
920 }
921 if (check_fs_open(argv[0]))
922 return;
923
924 if (argc > 1) {
925 dir = strtol(argv[1], &tmp, 0);
926 if (*tmp) {
927 com_err(argv[0], 0, "Bad dir - %s", argv[1]);
928 return;
929 }
930 }
931 else
932 dir = root;
933 if (argc > 2) {
934 mode = strtol(argv[2], &tmp, 0);
935 if (*tmp) {
936 com_err(argv[0], 0, "Bad mode - %s", argv[2]);
937 return;
938 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000939 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +0000940 mode = 010755;
941
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000942 retval = ext2fs_new_inode(current_fs, dir, mode, 0, &free_inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000943 if (retval)
944 com_err("ext2fs_new_inode", retval, "");
945 else
946 printf("Free inode found: %ld\n", free_inode);
947}
948
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000949static errcode_t copy_file(int fd, ino_t newfile)
950{
Theodore Ts'o5a513841997-10-25 22:41:14 +0000951 ext2_file_t e2_file;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000952 errcode_t retval;
Theodore Ts'o5a513841997-10-25 22:41:14 +0000953 int got, written;
954 char buf[8192];
955 char *ptr;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000956
Theodore Ts'o5a513841997-10-25 22:41:14 +0000957 retval = ext2fs_file_open(current_fs, newfile,
958 EXT2_FILE_WRITE, &e2_file);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000959 if (retval)
960 return retval;
961
Theodore Ts'o5a513841997-10-25 22:41:14 +0000962 while (1) {
963 got = read(fd, buf, sizeof(buf));
964 if (got == 0)
965 break;
966 if (got < 0) {
967 retval = errno;
968 goto fail;
969 }
970 ptr = buf;
971 while (got > 0) {
972 retval = ext2fs_file_write(e2_file, ptr,
973 got, &written);
974 if (retval)
975 goto fail;
976
977 got -= written;
978 ptr += written;
979 }
980 }
981 retval = ext2fs_file_close(e2_file);
982
983 return retval;
984
985fail:
986 (void) ext2fs_file_close(e2_file);
987 return retval;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000988}
989
Theodore Ts'o5a513841997-10-25 22:41:14 +0000990
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000991void do_write(int argc, char *argv[])
992{
993 int fd;
994 struct stat statbuf;
995 ino_t newfile;
996 errcode_t retval;
997 struct ext2_inode inode;
Theodore Ts'o5a513841997-10-25 22:41:14 +0000998 dgrp_t group;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000999
1000 if (check_fs_open(argv[0]))
1001 return;
1002 if (argc != 3) {
1003 com_err(argv[0], 0, "Usage: write <nativefile> <newfile>");
1004 return;
1005 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001006 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001007 return;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001008 fd = open(argv[1], O_RDONLY);
1009 if (fd < 0) {
1010 com_err(argv[1], fd, "");
1011 return;
1012 }
1013 if (fstat(fd, &statbuf) < 0) {
1014 com_err(argv[1], errno, "");
1015 close(fd);
1016 return;
1017 }
1018
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001019 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001020 if (retval) {
1021 com_err(argv[0], retval, "");
1022 close(fd);
1023 return;
1024 }
Theodore Ts'o5a513841997-10-25 22:41:14 +00001025 group = ext2fs_group_of_ino(current_fs, newfile);
1026 current_fs->group_desc[group].bg_free_inodes_count--;
1027 current_fs->super->s_free_inodes_count--;
1028 ext2fs_mark_super_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001029 printf("Allocated inode: %ld\n", newfile);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001030 retval = ext2fs_link(current_fs, cwd, argv[2], newfile, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001031 if (retval) {
1032 com_err(argv[2], retval, "");
1033 close(fd);
1034 return;
1035 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001036 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001037 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001038 ext2fs_mark_inode_bitmap(current_fs->inode_map,newfile);
1039 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001040 memset(&inode, 0, sizeof(inode));
1041 inode.i_mode = statbuf.st_mode;
1042 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1043 inode.i_links_count = 1;
1044 inode.i_size = statbuf.st_size;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001045 ext2fs_write_inode(current_fs, newfile, &inode);
1046 retval = ext2fs_write_inode(current_fs, newfile, &inode);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001047 if (retval) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001048 com_err(argv[0], retval, "while trying to write inode %d",
1049 inode);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001050 close(fd);
1051 return;
1052 }
1053 if (LINUX_S_ISREG(inode.i_mode)) {
1054 retval = copy_file(fd, newfile);
1055 if (retval)
1056 com_err("copy_file", retval, "");
1057 }
1058 close(fd);
1059}
1060
1061void do_mknod(int argc, char *argv[])
1062{
1063 unsigned long mode, major, minor, nr;
1064 ino_t newfile;
1065 errcode_t retval;
1066 struct ext2_inode inode;
1067
1068 if (check_fs_open(argv[0]))
1069 return;
1070 if (argc < 3 || argv[2][1]) {
1071 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1072 return;
1073 }
1074 mode = minor = major = 0;
1075 switch (argv[2][0]) {
1076 case 'p':
1077 mode = LINUX_S_IFIFO;
1078 nr = 3;
1079 break;
1080 case 'c':
1081 mode = LINUX_S_IFCHR;
1082 nr = 5;
1083 break;
1084 case 'b':
1085 mode = LINUX_S_IFBLK;
1086 nr = 5;
1087 break;
1088 default:
1089 nr = 0;
1090 }
1091 if (nr == 5) {
1092 major = strtoul(argv[3], argv+3, 0);
1093 minor = strtoul(argv[4], argv+4, 0);
1094 if (major > 255 || minor > 255 || argv[3][0] || argv[4][0])
1095 nr = 0;
1096 }
1097 if (argc != nr) {
1098 com_err(argv[0], 0, "Usage: mknod <name> [p| [c|b] <major> <minor>]");
1099 return;
1100 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001101 if (check_fs_read_write(argv[0]))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001102 return;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001103 retval = ext2fs_new_inode(current_fs, cwd, 010755, 0, &newfile);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001104 if (retval) {
1105 com_err(argv[0], retval, "");
1106 return;
1107 }
1108 printf("Allocated inode: %ld\n", newfile);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001109 retval = ext2fs_link(current_fs, cwd, argv[1], newfile, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001110 if (retval) {
1111 if (retval == EXT2_ET_DIR_NO_SPACE) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001112 retval = ext2fs_expand_dir(current_fs, cwd);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001113 if (!retval)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001114 retval = ext2fs_link(current_fs, cwd,
1115 argv[1], newfile, 0);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001116 }
1117 if (retval) {
1118 com_err(argv[1], retval, "");
1119 return;
1120 }
1121 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001122 if (ext2fs_test_inode_bitmap(current_fs->inode_map,newfile))
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001123 com_err(argv[0], 0, "Warning: inode already set");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001124 ext2fs_mark_inode_bitmap(current_fs->inode_map, newfile);
1125 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001126 memset(&inode, 0, sizeof(inode));
1127 inode.i_mode = mode;
1128 inode.i_atime = inode.i_ctime = inode.i_mtime = time(NULL);
1129 inode.i_block[0] = major*256+minor;
1130 inode.i_links_count = 1;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001131 ext2fs_write_inode(current_fs, newfile, &inode);
1132 retval = ext2fs_write_inode(current_fs, newfile, &inode);
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001133 if (retval) {
1134 com_err(argv[0], retval, "while trying to write inode %d", inode);
1135 return;
1136 }
1137}
1138
Theodore Ts'o3839e651997-04-26 13:21:57 +00001139void do_mkdir(int argc, char *argv[])
1140{
1141 char *cp;
1142 ino_t parent;
1143 char *name;
1144 errcode_t retval;
1145
1146 if (check_fs_open(argv[0]))
1147 return;
1148
1149 if (argc != 2) {
1150 com_err(argv[0], 0, "Usage: mkdir <file>");
1151 return;
1152 }
1153
1154 cp = strrchr(argv[1], '/');
1155 if (cp) {
1156 *cp = 0;
1157 parent = string_to_inode(argv[1]);
1158 if (!parent) {
1159 com_err(argv[1], ENOENT, "");
1160 return;
1161 }
1162 name = cp+1;
1163 } else {
1164 parent = cwd;
1165 name = argv[1];
1166 }
1167
1168
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001169 retval = ext2fs_mkdir(current_fs, parent, 0, name);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001170 if (retval) {
1171 com_err("ext2fs_mkdir", retval, "");
1172 return;
1173 }
1174
1175}
1176
1177void do_rmdir(int argc, char *argv[])
1178{
1179 printf("Unimplemented\n");
1180}
1181
1182
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001183static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
1184 int blockcnt, void *private)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001185{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001186 printf("%d ", *blocknr);
Theodore Ts'of3db3561997-04-26 13:34:30 +00001187 ext2fs_unmark_block_bitmap(fs->block_map,*blocknr);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001188 return 0;
1189}
1190
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001191static void kill_file_by_inode(ino_t inode)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001192{
1193 struct ext2_inode inode_buf;
1194
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001195 ext2fs_read_inode(current_fs, inode, &inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001196 inode_buf.i_dtime = time(NULL);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001197 ext2fs_write_inode(current_fs, inode, &inode_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001198
1199 printf("Kill file by inode %ld\n", inode);
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001200 ext2fs_block_iterate(current_fs, inode, 0, NULL,
1201 release_blocks_proc, NULL);
Theodore Ts'o521e3681997-04-29 17:48:10 +00001202 printf("\n");
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001203 ext2fs_unmark_inode_bitmap(current_fs->inode_map, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001204
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001205 ext2fs_mark_bb_dirty(current_fs);
1206 ext2fs_mark_ib_dirty(current_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001207}
1208
1209
1210void do_kill_file(int argc, char *argv[])
1211{
1212 ino_t inode_num;
1213
1214 if (argc != 2) {
1215 com_err(argv[0], 0, "Usage: kill_file <file>");
1216 return;
1217 }
1218 if (check_fs_open(argv[0]))
1219 return;
1220
1221 inode_num = string_to_inode(argv[1]);
1222 if (!inode_num) {
1223 com_err(argv[0], 0, "Cannot find file");
1224 return;
1225 }
1226 kill_file_by_inode(inode_num);
1227}
1228
1229void do_rm(int argc, char *argv[])
1230{
1231 int retval;
1232 ino_t inode_num;
1233 struct ext2_inode inode;
1234
1235 if (argc != 2) {
1236 com_err(argv[0], 0, "Usage: rm <filename>");
1237 return;
1238 }
1239 if (check_fs_open(argv[0]))
1240 return;
1241
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001242 retval = ext2fs_namei(current_fs, root, cwd, argv[1], &inode_num);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001243 if (retval) {
1244 com_err(argv[0], 0, "Cannot find file");
1245 return;
1246 }
1247
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001248 retval = ext2fs_read_inode(current_fs,inode_num,&inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001249 if (retval) {
1250 com_err(argv[0], retval, "while reading file's inode");
1251 return;
1252 }
1253
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001254 if (LINUX_S_ISDIR(inode.i_mode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001255 com_err(argv[0], 0, "file is a directory");
1256 return;
1257 }
1258
1259 --inode.i_links_count;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001260 retval = ext2fs_write_inode(current_fs,inode_num,&inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001261 if (retval) {
1262 com_err(argv[0], retval, "while writing inode");
1263 return;
1264 }
1265
1266 unlink_file_by_name(argv[1]);
1267 if (inode.i_links_count == 0)
1268 kill_file_by_inode(inode_num);
1269}
1270
1271void do_show_debugfs_params(int argc, char *argv[])
1272{
1273 FILE *out = stdout;
1274
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001275 if (current_fs)
1276 fprintf(out, "Open mode: read-%s\n",
1277 current_fs->flags & EXT2_FLAG_RW ? "write" : "only");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001278 fprintf(out, "Filesystem in use: %s\n",
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001279 current_fs ? current_fs->device_name : "--none--");
Theodore Ts'o3839e651997-04-26 13:21:57 +00001280}
1281
1282void do_expand_dir(int argc, char *argv[])
1283{
1284 ino_t inode;
1285 int retval;
1286
1287 if (argc != 2) {
1288 com_err(argv[0], 0, "Usage: expand_dir <file>");
1289 return;
1290 }
1291 if (check_fs_open(argv[0]))
1292 return;
1293 inode = string_to_inode(argv[1]);
1294 if (!inode)
1295 return;
1296
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001297 retval = ext2fs_expand_dir(current_fs, inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001298 if (retval)
1299 com_err("ext2fs_expand_dir", retval, "");
1300 return;
1301}
1302
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001303static int source_file(const char *cmd_file, int sci_idx)
1304{
1305 FILE *f;
1306 char buf[256];
1307 char *cp;
1308 int exit_status = 0;
1309 int retval;
1310
1311 if (strcmp(cmd_file, "-") == 0)
1312 f = stdin;
1313 else {
1314 f = fopen(cmd_file, "r");
1315 if (!f) {
1316 perror(cmd_file);
1317 exit(1);
1318 }
1319 }
1320 setbuf(stdout, NULL);
1321 setbuf(stderr, NULL);
1322 while (!feof(f)) {
1323 if (fgets(buf, sizeof(buf), f) == NULL)
1324 break;
1325 cp = strchr(buf, '\n');
1326 if (cp)
1327 *cp = 0;
1328 cp = strchr(buf, '\r');
1329 if (cp)
1330 *cp = 0;
1331 printf("debugfs: %s\n", buf);
1332 retval = ss_execute_line(sci_idx, buf);
1333 if (retval) {
1334 ss_perror(sci_idx, retval, buf);
1335 exit_status++;
1336 }
1337 }
1338 return exit_status;
1339}
1340
Theodore Ts'oa8859ca1997-09-16 02:08:28 +00001341int main(int argc, char **argv)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001342{
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001343 int retval;
1344 int sci_idx;
Theodore Ts'o521e3681997-04-29 17:48:10 +00001345 const char *usage = "Usage: debugfs [[-w] device]";
Theodore Ts'of1304811997-10-25 03:51:53 +00001346 int c;
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001347 int open_flags = 0;
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001348 char *request = 0;
1349 int exit_status = 0;
1350 char *cmd_file = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001351
1352 initialize_ext2_error_table();
1353
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001354 while ((c = getopt (argc, argv, "wR:f:")) != EOF) {
Theodore Ts'o3839e651997-04-26 13:21:57 +00001355 switch (c) {
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001356 case 'R':
1357 request = optarg;
1358 break;
1359 case 'f':
1360 cmd_file = optarg;
1361 break;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001362 case 'w':
1363 open_flags = EXT2_FLAG_RW;
1364 break;
1365 default:
1366 com_err(argv[0], 0, usage);
Theodore Ts'ob4ac9cc1997-10-15 01:54:48 +00001367 return 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +00001368 }
1369 }
1370 if (optind < argc)
1371 open_filesystem(argv[optind], open_flags);
1372
1373 sci_idx = ss_create_invocation("debugfs", "0.0", (char *) NULL,
1374 &debug_cmds, &retval);
1375 if (retval) {
1376 ss_perror(sci_idx, retval, "creating invocation");
1377 exit(1);
1378 }
1379
1380 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &retval);
1381 if (retval) {
1382 ss_perror(sci_idx, retval, "adding standard requests");
1383 exit (1);
1384 }
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001385 if (request) {
1386 retval = 0;
1387 retval = ss_execute_line(sci_idx, request);
1388 if (retval) {
1389 ss_perror(sci_idx, retval, request);
1390 exit_status++;
1391 }
1392 } else if (cmd_file) {
1393 exit_status = source_file(cmd_file, sci_idx);
1394 } else {
1395 ss_listen(sci_idx);
1396 }
Theodore Ts'o3839e651997-04-26 13:21:57 +00001397
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001398 if (current_fs)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001399 close_filesystem();
1400
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001401 exit(exit_status);
Theodore Ts'o3839e651997-04-26 13:21:57 +00001402}
1403