From: rpeterso@sourceware.org <rpeterso@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/gfs2/edit gfs2hex.c hexedit.c hexedit.h
Date: 19 Jun 2006 20:49:25 -0000 [thread overview]
Message-ID: <20060619204925.28881.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Changes by: rpeterso at sourceware.org 2006-06-19 20:49:25
Modified files:
gfs2/edit : gfs2hex.c hexedit.c hexedit.h
Log message:
Fixed problems printing stuffed directories like master and jindex.
Also enhanced the jump 'j' command capabilities to jump based on
highlighted directory entries. Also made it remember display mode
and highlighted entry when jumping from structure to structure.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/edit/gfs2hex.c.diff?cvsroot=cluster&r1=1.3&r2=1.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/edit/hexedit.c.diff?cvsroot=cluster&r1=1.4&r2=1.5
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/edit/hexedit.h.diff?cvsroot=cluster&r1=1.3&r2=1.4
--- cluster/gfs2/edit/gfs2hex.c 2006/06/12 20:43:33 1.3
+++ cluster/gfs2/edit/gfs2hex.c 2006/06/19 20:49:25 1.4
@@ -221,6 +221,8 @@
int skip = 0;
/* Directory Entries: */
indirect[0].dirents = 0;
+ indirect[0].block = block;
+ indirect[0].is_dir = TRUE;
for (x = sizeof(struct gfs2_dinode); x < bufsize; x += skip) {
skip = indirect_dirent(&indirect[0], buf + x, indirect[0].dirents);
if (skip <= 0)
--- cluster/gfs2/edit/hexedit.c 2006/06/12 20:43:33 1.4
+++ cluster/gfs2/edit/hexedit.c 2006/06/19 20:49:25 1.5
@@ -627,48 +627,77 @@
/* ------------------------------------------------------------------------ */
int display_extended(void)
{
- int e, start_line, total_dirents;
+ int e, start_line, total_dirents, indir_blocks;
struct gfs2_inode *tmp_inode;
edit_last[display_mode] = 0;
eol(0);
start_line = line;
- if (indirect_blocks) {
- print_gfs2("This inode contains %d indirect blocks", indirect_blocks);
- eol(0);
- print_gfs2("Indirect blocks for this inode:");
- eol(0);
+ if (indirect_blocks ||
+ (gfs2_struct_type == GFS2_METATYPE_DI && S_ISDIR(di.di_mode))) {
+ indir_blocks = indirect_blocks;
+ if (!indirect_blocks) {
+ print_gfs2("This directory contains %d directory entries.",
+ indirect[0].dirents);
+ eol(0);
+ indir_blocks = 1; /* not really an indirect block, but treat it as one */
+ }
+ else {
+ if (gfs2_struct_type == GFS2_METATYPE_DI && S_ISDIR(di.di_mode))
+ print_gfs2("This directory contains %d indirect blocks",
+ indirect_blocks);
+ else
+ print_gfs2("This inode contains %d indirect blocks",
+ indirect_blocks);
+ eol(0);
+ print_gfs2("Indirect blocks for this inode:");
+ eol(0);
+ }
total_dirents = 0;
for (e = 0; (!termlines || e < termlines - start_line - 2) &&
- e < indirect_blocks; e++) {
+ e < indir_blocks; e++) {
if (termlines) {
- if (line - 6 == edit_row[display_mode])
+ if (edit_row[display_mode] >= 0 &&
+ line - start_line - 2 == edit_row[display_mode])
COLORS_HIGHLIGHT;
- move(line, 5);
+ move(line, 1);
}
- print_gfs2("%d => ", e + 1);
- if (termlines)
- move(line,14);
- print_gfs2("0x%llx", indirect[e].block);
- if (termlines) {
- if (line - 6 == edit_row[display_mode]) {
- sprintf(edit_string, "%"PRIx64, indirect[e].block);
- strcpy(edit_fmt, "%"PRIx64);
- edit_size[display_mode] = strlen(edit_string);
- COLORS_NORMAL;
+ if (indir_blocks == indirect_blocks) {
+ print_gfs2("%d => ", e + 1);
+ if (termlines)
+ move(line,9);
+ print_gfs2("0x%llx", indirect[e].block);
+ if (termlines) {
+ if (edit_row[display_mode] >= 0 &&
+ line - start_line - 2 == edit_row[display_mode]) {
+ sprintf(edit_string, "%"PRIx64, indirect[e].block);
+ strcpy(edit_fmt, "%"PRIx64);
+ edit_size[display_mode] = strlen(edit_string);
+ COLORS_NORMAL;
+ }
}
}
- print_gfs2(" ");
+ if (indir_blocks == indirect_blocks)
+ print_gfs2(" ");
if (indirect[e].is_dir) {
int d;
- if (indirect[e].dirents > 1)
+ if (indirect[e].dirents > 1 && indir_blocks == indirect_blocks)
print_gfs2("(directory leaf with %d entries)",
indirect[e].dirents);
for (d = 0; d < indirect[e].dirents; d++) {
total_dirents++;
if (indirect[e].dirents > 1) {
eol(5);
+ if (termlines) {
+ if (edit_row[display_mode] >=0 &&
+ line - start_line - 2 == edit_row[display_mode]) {
+ COLORS_HIGHLIGHT;
+ sprintf(edit_string, "%"PRIx64,
+ indirect[e].dirent[d].block);
+ strcpy(edit_fmt, "%"PRIx64);
+ }
+ }
print_gfs2("%d. (%d). %lld (0x%llx) / %lld (0x%llx): ",
total_dirents, d + 1,
indirect[e].dirent[d].dirent.de_inum.no_formal_ino,
@@ -708,6 +737,11 @@
}
print_gfs2(" %s", indirect[e].dirent[d].filename);
+ if (termlines) {
+ if (edit_row[display_mode] >= 0 &&
+ line - start_line - 2 == edit_row[display_mode])
+ COLORS_NORMAL;
+ }
}
} /* if isdir */
else
@@ -860,9 +894,16 @@
/* ------------------------------------------------------------------------ */
void push_block(uint64_t blk)
{
+ int i;
+
if (blk) {
+ blockstack[blockhist % BLOCK_STACK_SIZE].display_mode = display_mode;
+ for (i = 0; i < DISPLAY_MODES; i++) {
+ blockstack[blockhist % BLOCK_STACK_SIZE].edit_row[i] = edit_row[i];
+ blockstack[blockhist % BLOCK_STACK_SIZE].edit_col[i] = edit_col[i];
+ }
blockhist++;
- blockstack[blockhist % BLOCK_STACK_SIZE] = blk;
+ blockstack[blockhist % BLOCK_STACK_SIZE].block = blk;
}
}
@@ -871,10 +912,17 @@
/* ------------------------------------------------------------------------ */
uint64_t pop_block(void)
{
+ int i;
+
if (!blockhist)
return block;
blockhist--;
- return blockstack[blockhist % BLOCK_STACK_SIZE];
+ display_mode = blockstack[blockhist % BLOCK_STACK_SIZE].display_mode;
+ for (i = 0; i < DISPLAY_MODES; i++) {
+ edit_row[i] = blockstack[blockhist % BLOCK_STACK_SIZE].edit_row[i];
+ edit_col[i] = blockstack[blockhist % BLOCK_STACK_SIZE].edit_col[i];
+ }
+ return blockstack[blockhist % BLOCK_STACK_SIZE].block;
}
/* ------------------------------------------------------------------------ */
@@ -966,7 +1014,7 @@
Quit=TRUE;
break;
/* -------------------------------------------------------------- */
- /* home - return to the superblock */
+ /* home - return to the superblock */
/* -------------------------------------------------------------- */
case KEY_HOME:
block = 0x10;
@@ -974,7 +1022,7 @@
offset = 0;
break;
/* -------------------------------------------------------------- */
- /* backspace - return to the previous block */
+ /* backspace - return to the previous block on the stack */
/* -------------------------------------------------------------- */
case KEY_BACKSPACE:
case 0x7f:
@@ -982,11 +1030,11 @@
offset = 0;
break;
/* -------------------------------------------------------------- */
- /* space */
+ /* space - go down the block stack (opposite of backspace) */
/* -------------------------------------------------------------- */
case ' ':
blockhist++;
- block = blockstack[blockhist % BLOCK_STACK_SIZE];
+ block = blockstack[blockhist % BLOCK_STACK_SIZE].block;
offset = 0;
break;
/* -------------------------------------------------------------- */
@@ -1046,10 +1094,15 @@
else
sscanf(edit_string, "%"SCNx64, &temp_blk);/* retrieve in hex */
if (temp_blk < max_block) { /* if the block number is valid */
+ int i;
+
offset = 0;
- display_mode = HEX_MODE;
block = temp_blk;
push_block(block);
+ for (i = 0; i < DISPLAY_MODES; i++) {
+ edit_row[i] = 0;
+ edit_col[i] = 0;
+ }
}
break;
/* -------------------------------------------------------------- */
@@ -1318,7 +1371,7 @@
******************************************************************************/
int main(int argc, char *argv[])
{
- int i;
+ int i, j;
prog_name = argv[0];
@@ -1329,8 +1382,14 @@
display_mode = HEX_MODE;
type_alloc(buf, char, bufsize); /* allocate/malloc a new 4K buffer */
block = 0x10;
- for (i = 0; i < BLOCK_STACK_SIZE; i++)
- blockstack[i] = block;
+ for (i = 0; i < BLOCK_STACK_SIZE; i++) {
+ blockstack[i].display_mode = display_mode;
+ blockstack[i].block = block;
+ for (j = 0; j < DISPLAY_MODES; j++) {
+ blockstack[i].edit_row[j] = 0;
+ blockstack[i].edit_col[j] = 0;
+ }
+ }
memset(device, 0, sizeof(device));
termlines = 30; /* assume interactive mode until we find -p */
@@ -1351,7 +1410,7 @@
interactive_mode();
else { /* print all the structures requested */
for (i = 0; i <= blockhist; i++) {
- block = blockstack[i + 1];
+ block = blockstack[i + 1].block;
display(display_mode, identify);
if (!identify) {
display_extended();
--- cluster/gfs2/edit/hexedit.h 2006/06/06 14:35:32 1.3
+++ cluster/gfs2/edit/hexedit.h 2006/06/19 20:49:25 1.4
@@ -47,7 +47,6 @@
EXTERN int fd;
EXTERN uint64_t block INIT(0);
EXTERN int blockhist INIT(0);
-EXTERN uint64_t blockstack[BLOCK_STACK_SIZE];
EXTERN int edit_mode INIT(0);
EXTERN int line;
EXTERN char edit_fmt[80];
@@ -89,6 +88,14 @@
struct gfs2_dirents dirent[64];
};
+struct blkstack_info {
+ uint64_t block;
+ int edit_row[DISPLAY_MODES];
+ int edit_col[DISPLAY_MODES];
+ enum dsp_mode display_mode;
+};
+
+EXTERN struct blkstack_info blockstack[BLOCK_STACK_SIZE];
EXTERN struct indirect_info indirect[512]; /* more than the most indirect
pointers possible for any given
4K block */
next reply other threads:[~2006-06-19 20:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-19 20:49 rpeterso [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-11-09 15:29 [Cluster-devel] cluster/gfs2/edit gfs2hex.c hexedit.c hexedit.h rpeterso
2006-11-09 15:31 rpeterso
2006-11-14 20:11 rpeterso
2006-11-14 20:13 rpeterso
2007-02-08 5:41 rpeterso
2007-02-13 1:07 rpeterso
2007-02-28 21:58 rpeterso
2007-11-13 17:22 rpeterso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060619204925.28881.qmail@sourceware.org \
--to=rpeterso@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.