1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
/*
* Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
*/
#include <xfs/libxfs.h>
#include "command.h"
#include "type.h"
#include "faddr.h"
#include "fprint.h"
#include "field.h"
#include "inode.h"
#include "io.h"
#include "output.h"
#include "init.h"
#include "malloc.h"
static int pop_f(int argc, char **argv);
static void pop_help(void);
static int push_f(int argc, char **argv);
static void push_help(void);
static int stack_f(int argc, char **argv);
static void stack_help(void);
static int forward_f(int argc, char **argv);
static void forward_help(void);
static int back_f(int argc, char **argv);
static void back_help(void);
static int ring_f(int argc, char **argv);
static void ring_help(void);
static const cmdinfo_t pop_cmd =
{ "pop", NULL, pop_f, 0, 0, 0, NULL,
"pop location from the stack", pop_help };
static const cmdinfo_t push_cmd =
{ "push", NULL, push_f, 0, 2, 0, "[command]",
"push location to the stack", push_help };
static const cmdinfo_t stack_cmd =
{ "stack", NULL, stack_f, 0, 0, 0, NULL,
"view the location stack", stack_help };
static const cmdinfo_t forward_cmd =
{ "forward", "f", forward_f, 0, 0, 0, NULL,
"move forward to next entry in the position ring", forward_help };
static const cmdinfo_t back_cmd =
{ "back", "b", back_f, 0, 0, 0, NULL,
"move to the previous location in the position ring", back_help };
static const cmdinfo_t ring_cmd =
{ "ring", NULL, ring_f, 0, 1, 0, NULL,
"show position ring or move to a specific entry", ring_help };
iocur_t *iocur_base;
iocur_t *iocur_top;
int iocur_sp = -1;
int iocur_len;
#define RING_ENTRIES 20
static iocur_t iocur_ring[RING_ENTRIES];
static int ring_head = -1;
static int ring_tail = -1;
static int ring_current = -1;
void
io_init(void)
{
add_command(&pop_cmd);
add_command(&push_cmd);
add_command(&stack_cmd);
add_command(&forward_cmd);
add_command(&back_cmd);
add_command(&ring_cmd);
}
void
off_cur(
int off,
int len)
{
if (iocur_top == NULL || off + len > BBTOB(iocur_top->blen))
dbprintf("can't set block offset to %d\n", off);
else {
iocur_top->boff = off;
iocur_top->off = ((xfs_off_t)iocur_top->bb << BBSHIFT) + off;
iocur_top->len = len;
iocur_top->data = (void *)((char *)iocur_top->buf + off);
}
}
void
pop_cur(void)
{
if (iocur_sp < 0) {
dbprintf("can't pop anything from I/O stack\n");
return;
}
if (iocur_top->buf)
xfree(iocur_top->buf);
if (--iocur_sp >= 0) {
iocur_top = iocur_base + iocur_sp;
cur_typ = iocur_top->typ;
} else {
iocur_top = iocur_base;
iocur_sp = 0;
}
}
/*ARGSUSED*/
static int
pop_f(
int argc,
char **argv)
{
pop_cur();
return 0;
}
static void
pop_help(void)
{
dbprintf(
"\n"
" Changes the address and data type to the first entry on the stack.\n"
"\n"
);
}
void
print_iocur(
char *tag,
iocur_t *ioc)
{
int i;
dbprintf("%s\n", tag);
dbprintf("\tbyte offset %lld, length %d\n", ioc->off, ioc->len);
dbprintf("\tbuffer block %lld (fsbno %lld), %d bb%s\n", ioc->bb,
(xfs_dfsbno_t)XFS_DADDR_TO_FSB(mp, ioc->bb), ioc->blen,
ioc->blen == 1 ? "" : "s");
if (ioc->use_bbmap) {
dbprintf("\tblock map");
for (i = 0; i < ioc->blen; i++)
dbprintf(" %d:%lld", i, ioc->bbmap.b[i]);
dbprintf("\n");
}
dbprintf("\tinode %lld, dir inode %lld, type %s\n", ioc->ino,
ioc->dirino, ioc->typ == NULL ? "none" : ioc->typ->name);
}
void
print_ring(void)
{
int i;
iocur_t *ioc;
if (ring_current == -1) {
dbprintf("no entries in location ring.\n");
return;
}
dbprintf(" type bblock bblen fsbno inode\n");
i = ring_head;
for (;;) {
ioc = &iocur_ring[i];
if (i == ring_current)
printf("*%2d: ", i);
else
printf(" %2d: ", i);
dbprintf("%-7.7s %8lld %5d %8lld %9lld\n",
ioc->typ == NULL ? "none" : ioc->typ->name,
ioc->bb,
ioc->blen,
(xfs_dfsbno_t)XFS_DADDR_TO_FSB(mp, ioc->bb),
ioc->ino
);
if (i == ring_tail)
break;
i = (i+(RING_ENTRIES-1))%RING_ENTRIES;
}
}
void
push_cur(void)
{
if (iocur_sp + 1 >= iocur_len) {
iocur_base = xrealloc(iocur_base,
sizeof(*iocur_base) * (iocur_len + 1));
iocur_len++;
}
iocur_sp++;
iocur_top = iocur_base + iocur_sp;
memset(iocur_top, 0, sizeof(*iocur_base));
iocur_top->ino = iocur_sp > 0 ? iocur_top[-1].ino : NULLFSINO;
iocur_top->dirino = iocur_sp > 0 ? iocur_top[-1].dirino : NULLFSINO;
iocur_top->mode = iocur_sp > 0 ? iocur_top[-1].mode : 0;
cur_typ = NULL;
}
static int
push_f(
int argc,
char **argv)
{
const cmdinfo_t *ct;
if (argc > 1) {
/* check we can execute command */
ct = find_command(argv[1]);
if (ct == NULL) {
dbprintf("no such command %s\n", argv[1]);
return 0;
}
if (!ct->canpush) {
dbprintf("no push form allowed for %s\n", argv[1]);
return 0;
}
}
/* save current state */
push_cur();
if (iocur_top[-1].typ && iocur_top[-1].typ->typnm == TYP_INODE)
set_cur_inode(iocur_top[-1].ino);
else
set_cur(iocur_top[-1].typ, iocur_top[-1].bb,
iocur_top[-1].blen, DB_RING_IGN,
iocur_top[-1].use_bbmap ? &iocur_top[-1].bbmap : NULL);
/* run requested command */
if (argc>1)
(void)command(argc-1, argv+1);
return 0;
}
static void
push_help(void)
{
dbprintf(
"\n"
" Allows you to push the current address and data type on the stack for\n"
" later return. 'push' also accepts an additional command to execute after\n"
" storing the current address (ex: 'push a rootino' from the superblock).\n"
"\n"
);
}
/* move forward through the ring */
/* ARGSUSED */
static int
forward_f(
int argc,
char **argv)
{
if (ring_current == -1) {
dbprintf("ring is empty\n");
return 0;
}
if (ring_current == ring_head) {
dbprintf("no further entries\n");
return 0;
}
ring_current = (ring_current+1)%RING_ENTRIES;
set_cur(iocur_ring[ring_current].typ,
iocur_ring[ring_current].bb,
iocur_ring[ring_current].blen,
DB_RING_IGN,
iocur_ring[ring_current].use_bbmap ?
&iocur_ring[ring_current].bbmap : NULL);
return 0;
}
static void
forward_help(void)
{
dbprintf(
"\n"
" The 'forward' ('f') command moves to the next location in the position\n"
" ring, updating the current position and data type. If the current location\n"
" is the top entry in the ring, then the 'forward' command will have\n"
" no effect.\n"
"\n"
);
}
/* move backwards through the ring */
/* ARGSUSED */
static int
back_f(
int argc,
char **argv)
{
if (ring_current == -1) {
dbprintf("ring is empty\n");
return 0;
}
if (ring_current == ring_tail) {
dbprintf("no previous entries\n");
return 0;
}
ring_current = (ring_current+(RING_ENTRIES-1))%RING_ENTRIES;
set_cur(iocur_ring[ring_current].typ,
iocur_ring[ring_current].bb,
iocur_ring[ring_current].blen,
DB_RING_IGN,
iocur_ring[ring_current].use_bbmap ?
&iocur_ring[ring_current].bbmap : NULL);
return 0;
}
static void
back_help(void)
{
dbprintf(
"\n"
" The 'back' ('b') command moves to the previous location in the position\n"
" ring, updating the current position and data type. If the current location\n"
" is the last entry in the ring, then the 'back' command will have no effect.\n"
"\n"
);
}
/* show or go to specific point in ring */
static int
ring_f(
int argc,
char **argv)
{
int index;
if (argc == 1) {
print_ring();
return 0;
}
index = (int)strtoul(argv[0], NULL, 0);
if (index < 0 || index >= RING_ENTRIES)
dbprintf("invalid entry: %d\n", index);
ring_current = index;
set_cur(iocur_ring[index].typ,
iocur_ring[index].bb,
iocur_ring[index].blen,
DB_RING_IGN,
iocur_ring[index].use_bbmap ? &iocur_ring[index].bbmap : NULL);
return 0;
}
static void
ring_help(void)
{
dbprintf(
"\n"
" The position ring automatically keeps track of each disk location and\n"
" structure type for each change of position you make during your xfs_db\n"
" session. The last %d most recent entries are kept in the ring.\n"
"\n"
" To display the current list of ring entries type 'ring' by itself on\n"
" the command line. The entry highlighted by an asterisk ('*') is the\n"
" current entry.\n"
"\n"
" To move to another entry in the ring type 'ring <num>' where <num> is\n"
" your desired entry from the ring position list.\n"
"\n"
" You may also use the 'forward' ('f') or 'back' ('b') commands to move\n"
" to the previous or next entry in the ring, respectively.\n"
"\n"
" Note: Unlike the 'stack', 'push' and 'pop' commands, the ring tracks your\n"
" location implicitly. Use the 'push' and 'pop' commands if you wish to\n"
" store a specific location explicitly for later return.\n"
"\n",
RING_ENTRIES);
}
void
ring_add(void)
{
if (ring_head == -1) {
/* only get here right after startup */
ring_head = 0;
ring_tail = 0;
ring_current = 0;
iocur_ring[0] = *iocur_top;
} else {
if (ring_current == ring_head) {
ring_head = (ring_head+1)%RING_ENTRIES;
iocur_ring[ring_head] = *iocur_top;
if (ring_head == ring_tail)
ring_tail = (ring_tail+1)%RING_ENTRIES;
ring_current = ring_head;
} else {
ring_current = (ring_current+1)%RING_ENTRIES;
iocur_ring[ring_current] = *iocur_top;
}
}
}
int
write_bbs(
__int64_t bbno,
int count,
void *bufp,
bbmap_t *bbmap)
{
int c;
int i;
int j;
int rval = EINVAL; /* initialize for zero `count' case */
for (j = 0; j < count; j += bbmap ? 1 : count) {
if (bbmap)
bbno = bbmap->b[j];
if (lseek64(x.dfd, bbno << BBSHIFT, SEEK_SET) < 0) {
rval = errno;
dbprintf("can't seek in filesystem at bb %lld\n", bbno);
return rval;
}
c = BBTOB(bbmap ? 1 : count);
i = (int)write(x.dfd, (char *)bufp + BBTOB(j), c);
if (i < 0) {
rval = errno;
} else if (i < c) {
rval = -1;
} else
rval = 0;
if (rval)
break;
}
return rval;
}
int
read_bbs(
__int64_t bbno,
int count,
void **bufp,
bbmap_t *bbmap)
{
void *buf;
int c;
int i;
int j;
int rval = EINVAL;
if (count <= 0)
count = 1;
c = BBTOB(count);
if (*bufp == NULL)
buf = xmalloc(c);
else
buf = *bufp;
for (j = 0; j < count; j += bbmap ? 1 : count) {
if (bbmap)
bbno = bbmap->b[j];
if (lseek64(x.dfd, bbno << BBSHIFT, SEEK_SET) < 0) {
rval = errno;
dbprintf("can't seek in filesystem at bb %lld\n", bbno);
if (*bufp == NULL)
xfree(buf);
buf = NULL;
} else {
c = BBTOB(bbmap ? 1 : count);
i = (int)read(x.dfd, (char *)buf + BBTOB(j), c);
if (i < 0) {
rval = errno;
if (*bufp == NULL)
xfree(buf);
buf = NULL;
} else if (i < c) {
rval = -1;
if (*bufp == NULL)
xfree(buf);
buf = NULL;
} else
rval = 0;
}
if (buf == NULL)
break;
}
if (*bufp == NULL)
*bufp = buf;
return rval;
}
void
write_cur(void)
{
int ret;
if (iocur_sp < 0) {
dbprintf("nothing to write\n");
return;
}
ret = write_bbs(iocur_top->bb, iocur_top->blen, iocur_top->buf,
iocur_top->use_bbmap ? &iocur_top->bbmap : NULL);
if (ret == -1)
dbprintf("incomplete write, block: %lld\n",
(iocur_base + iocur_sp)->bb);
else if (ret != 0)
dbprintf("write error: %s\n", strerror(ret));
/* re-read buffer from disk */
ret = read_bbs(iocur_top->bb, iocur_top->blen, &iocur_top->buf,
iocur_top->use_bbmap ? &iocur_top->bbmap : NULL);
if (ret == -1)
dbprintf("incomplete read, block: %lld\n",
(iocur_base + iocur_sp)->bb);
else if (ret != 0)
dbprintf("read error: %s\n", strerror(ret));
}
void
set_cur(
const typ_t *t,
__int64_t d,
int c,
int ring_flag,
bbmap_t *bbmap)
{
xfs_ino_t dirino;
xfs_ino_t ino;
__uint16_t mode;
if (iocur_sp < 0) {
dbprintf("set_cur no stack element to set\n");
return;
}
#ifdef DEBUG
if (bbmap)
printf("xfs_db got a bbmap for %lld\n", (long long)d);
#endif
ino = iocur_top->ino;
dirino = iocur_top->dirino;
mode = iocur_top->mode;
pop_cur();
push_cur();
if (read_bbs(d, c, &iocur_top->buf, bbmap))
return;
iocur_top->bb = d;
iocur_top->blen = c;
iocur_top->boff = 0;
iocur_top->data = iocur_top->buf;
iocur_top->len = BBTOB(c);
iocur_top->off = d << BBSHIFT;
iocur_top->typ = cur_typ = t;
iocur_top->ino = ino;
iocur_top->dirino = dirino;
iocur_top->mode = mode;
if ((iocur_top->use_bbmap = (bbmap != NULL)))
iocur_top->bbmap = *bbmap;
/* store location in ring */
if (ring_flag)
ring_add();
}
static void
stack_help(void)
{
dbprintf(
"\n"
" The stack is used to explicitly store your location and data type\n"
" for later return. The 'push' operation stores the current address\n"
" and type on the stack, the 'pop' operation returns you to the\n"
" position and datatype of the top entry on the stack.\n"
"\n"
" The 'stack' allows explicit location saves, see 'ring' for implicit\n"
" position tracking.\n"
"\n"
);
}
/*ARGSUSED*/
static int
stack_f(
int argc,
char **argv)
{
int i;
char tagbuf[8];
for (i = iocur_sp; i > 0; i--) {
snprintf(tagbuf, sizeof(tagbuf), "%d: ", i);
print_iocur(tagbuf, &iocur_base[i]);
}
return 0;
}
|