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 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
|
/*
* Copyright (c) International Business Machines Corp., 2000-2002
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <config.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include "jfs_types.h"
#include "jfs_endian.h"
#include "jfs_filsys.h"
#include "jfs_superblock.h"
#include "jfs_dinode.h"
#include "jfs_dtree.h"
#include "jfs_xtree.h"
#include "jfs_logmgr.h"
#include "jfs_dmap.h"
#include "jfs_imap.h"
#include "logredo.h"
#include "devices.h"
#include "debug.h"
extern int LogOpenMode;
#define LOGDMP_OK 0
#define LOGDMP_FAILED -1
#define MAKEDEV(__x,__y) (dev_t)(((__x)<<16) | (__y))
#define LOGPNTOB(x) ((x)<<L2LOGPSIZE)
#define LOG2NUM(NUM, L2NUM)\
{\
if ((NUM) <= 0)\
L2NUM = -1;\
else\
if ((NUM) == 1)\
L2NUM = 0;\
else\
{\
L2NUM = 0;\
while ( (NUM) > 1 )\
{\
L2NUM++;\
(NUM) >>= 1;\
}\
}\
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
*
* things for the log.
*/
int32_t logend; /* address of the end of last log record */
struct logsuper logsup; /* log super block */
int32_t numdoblk; /* number of do blocks used */
int32_t numnodofile; /* number of nodo file blocks used */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
*
* The output file.
*
*/
FILE *outfp;
#define output_filename "./jfslog.dmp"
int logdmp_outfile_is_open = 0;
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
*
* open file system aggregate/lv array
*
* logredo() processes a single log.
* at the first release, logredo will process a single log
* related to one aggregate. But the future release, logredo needs to
* to process one single log related to multiple agreegates.
* In both cases, the aggregate(logical volume) where the log stays
* will be different from the file system aggregate/lv.
*
* There will be one imap for the aggregate inode allocation map
* and a list of imap pointers to multiple fileset inode allocation maps.
*
* There is one block allocation map per aggregate and shared by all the
* filesets within the aggregate.
*
* the log and related aggregates (logical volumes) are all in
* the same volume group, i.e., each logical volume is uniquely specified
* by their minor number with the same major number,
* the maximum number of lvs in a volume group is NUMMINOR (256).
*/
/*
* We only deal with the log here. No need for vopen array
*/
struct vopen volume;
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
*
* file system page buffer cache
*
* for k > 0, bufhdr[k] describes contents of buffer[k-1].
* bufhdr[0] is reserved as anchor for free/lru list:
* bufhdr[0].next points to the MRU buffer (head),
* bufhdr[0].prev points to the LRU buffer (tail);
*/
/* buffer header table */
struct bufhdr {
int16_t next; /* 2: next on free/lru list */
int16_t prev; /* 2: previous on free/lru list */
int16_t hnext; /* 2: next on hash chain */
int16_t hprev; /* 2: previous on hash chain */
char modify; /* 1: buffer was modified */
char inuse; /* 1: buffer on hash chain */
int16_t reserve; /* 2 */
int32_t vol; /* 4: minor of agrregate/lv number */
pxd_t pxd; /* 8: on-disk page pxd */
} bufhdr[NBUFPOOL]; /* (24) */
/* buffer table */
struct bufpool {
char bytes[PSIZE];
} buffer[NBUFPOOL - 1];
/*
* log page buffer cache
*
* log has its own 4 page buffer pool.
*/
uint8_t afterdata[LOGPSIZE * 2]; /* buffer to read in redopage data */
/*
* Miscellaneous
*/
caddr_t prog; /* Program name */
int32_t mntcnt, bufsize;
char *mntinfo;
int32_t retcode; /* return code from logredo */
/*
* external references
*/
extern char *optarg;
extern int optind;
extern int initMaps(int32_t);
extern int updateMaps(int);
extern int findEndOfLog(void);
extern int logRead(int32_t, struct lrd *, char *);
extern int logredoInit(void);
extern int alloc_wrksp(uint32_t, int, int, void **); /* defined in fsckwsp.c */
/*
* forward references
*/
int open_outfile(void);
int ldmp_readSuper(FILE *, struct superblock *);
int ldmp_isLogging(caddr_t, int32_t, char *, int32_t);
int ldmp_logError(int, int);
int usage(void);
int disp_updatemap(struct lrd *);
int disp_redopage(struct lrd *);
int disp_noredopage(struct lrd *);
int disp_noredoinoext(struct lrd *);
void ldmp_xdump(char *, int);
int ldmp_x_scmp(char *, char *);
void ldmp_x_scpy(char *, char *);
int prtdesc(struct lrd *);
/* --------------------------------------------------------------------
*
* NAME: jfs_logdump()
*
* FUNCTION:
*
*/
int jfs_logdump(caddr_t pathname, FILE *fp, int32_t dump_all)
{
int rc;
int32_t logaddr, nextaddr, lastaddr, nlogrecords;
struct lrd ld;
int32_t lowest_lr_byte = 2 * LOGPSIZE + LOGPHDRSIZE;
int32_t highest_lr_byte = 0;
int log_has_wrapped = 0;
int in_use;
rc = open_outfile();
if (rc == 0) { /* output file is open */
/*
* loop until we get enough memory to read vmount struct
*/
mntinfo = (char *) &bufsize;
bufsize = sizeof (int);
/*
* Find and open the log
*/
LogOpenMode = O_RDONLY;
rc = findLog(fp, &in_use);
if (rc < 0) {
printf("JFS_LOGDUMP:Error occurred when open/read device\n");
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "JFS_LOGDUMP:Error occurred when open/read device\n");
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return (rc);
}
/*
* validate log superblock
*
* aggregate block size is for log file as well.
*/
rc = ujfs_rw_diskblocks(Log.fp,
(uint64_t) (Log.xaddr + LOGPNTOB(LOGSUPER_B)),
(unsigned) sizeof (struct logsuper), (char *) &logsup, GET);
if (rc != 0) {
printf("JFS_LOGDUMP:couldn't read log superblock:failure in %s\n", prog);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "JFS_LOGDUMP:couldn't read log superblock:failure in %s\n",
prog);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return (LOGSUPER_READ_ERROR);
}
ujfs_swap_logsuper(&logsup);
fprintf(outfp, "JOURNAL SUPERBLOCK: \n");
fprintf(outfp, "------------------------------------------------------\n");
fprintf(outfp, " magic number: x %x \n", logsup.magic);
fprintf(outfp, " version : x %x \n", logsup.version);
fprintf(outfp, " serial : x %x \n", logsup.serial);
fprintf(outfp, " size : t %d pages (4096 bytes/page)\n", logsup.size);
fprintf(outfp, " bsize : t %d bytes/block\n", logsup.bsize);
fprintf(outfp, " l2bsize : t %d \n", logsup.l2bsize);
fprintf(outfp, " flag : x %x \n", logsup.flag);
fprintf(outfp, " state : x %x \n", logsup.state);
fprintf(outfp, " end : x %x \n", logsup.end);
fprintf(outfp, "\n");
fprintf(outfp, "======================================================\n");
fprintf(outfp, "\n");
if (logsup.magic != LOGMAGIC) {
fprintf(outfp, "\n");
fprintf(outfp, "**WARNING** %s: %s is not a log file\n", prog, pathname);
fprintf(outfp, "\n");
fprintf(outfp, "======================================================\n");
fprintf(outfp, "\n");
}
if (logsup.version != LOGVERSION) {
fprintf(outfp, "\n");
fprintf(outfp, "**WARNING** %s and log file %s version mismatch\n", prog,
pathname);
fprintf(outfp, "\n");
fprintf(outfp, "======================================================\n");
fprintf(outfp, "\n");
}
if (logsup.state == LOGREDONE) {
fprintf(outfp, "\n");
fprintf(outfp, "**WARNING** %s and log file %s state is LOGREDONE\n", prog,
pathname);
fprintf(outfp, "\n");
fprintf(outfp, "======================================================\n");
fprintf(outfp, "\n");
}
Log.size = logsup.size;
Log.serial = logsup.serial;
/*
* find the end of log
*/
logend = findEndOfLog();
if (logend < 0) {
printf("logend < 0\n");
ldmp_logError(LOGEND, 0);
ujfs_swap_logsuper(&logsup);
rc = ujfs_rw_diskblocks(Log.fp,
(uint64_t) (Log.xaddr + LOGPNTOB(LOGSUPER_B)),
(unsigned long) LOGPSIZE, (char *) &logsup, PUT);
rc = logend;
goto loopexit;
}
highest_lr_byte = logsup.size * LOGPSIZE - LOGRDSIZE;
if ((logend < lowest_lr_byte) || (logend > highest_lr_byte)) {
fprintf(outfp, "\n");
fprintf(outfp,
"**ERROR** logend address is not valid for a logrec. logend: 0x0%x\n",
logend);
fprintf(outfp, "\n");
fprintf(outfp, "======================================================\n");
fprintf(outfp, "\n");
return (INVALID_LOGEND);
}
/*
* replay log
*
* read log backwards and process records as we go.
* reading stops at place specified by first SYNCPT we
* encounter.
*/
nlogrecords = lastaddr = 0;
nextaddr = logend;
do {
logaddr = nextaddr;
nextaddr = logRead(logaddr, &ld, afterdata);
fprintf(outfp,
"logrec d %d Logaddr= x %x Nextaddr= x %x Backchain = x %x\n",
nlogrecords, logaddr, nextaddr, ld.backchain);
fprintf(outfp, "\n");
nlogrecords += 1;
/*
*
* Validate the nextaddr as much as possible
*
*/
if (nextaddr < 0) {
ldmp_logError(READERR, logaddr);
if (nextaddr == REFORMAT_ERROR) {
rc = nextaddr;
goto loopexit;
}
break;
}
/*
* Certain errors we'll assume signal the end of the log
* since we're just dumping everything from the latest
* commit record to the earliest valid record.
*/
if ((nextaddr < lowest_lr_byte) || (nextaddr > highest_lr_byte)) {
lastaddr = logaddr;
}
if (nextaddr == logaddr) {
lastaddr = logaddr;
}
if (nextaddr > logaddr) {
if (log_has_wrapped) {
fprintf(outfp, "\n");
fprintf(outfp,
"**ERROR** log wrapped twice. logaddr:0x0%x nextaddr:0x0%x\n",
logaddr, nextaddr);
fprintf(outfp, "\n");
fprintf(outfp,
"======================================================\n");
fprintf(outfp, "\n");
lastaddr = logaddr;
} else {
log_has_wrapped = -1;
}
}
/*
*
* The addresses seem ok. Process the current record.
*
*/
if (lastaddr != logaddr) {
switch (ld.type) {
case LOG_COMMIT:
fprintf(outfp,
"LOG_COMMIT (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d\n", ld.length);
break;
case LOG_MOUNT:
fprintf(outfp,
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n");
fprintf(outfp,
"LOG_MOUNT (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d\n", ld.length);
fprintf(outfp,
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n");
break;
case LOG_SYNCPT:
fprintf(outfp,
"****************************************************************\n");
fprintf(outfp,
"LOG_SYNCPT (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d\n", ld.length);
fprintf(outfp, "\tsync = x %x\n", ld.log.syncpt.sync);
fprintf(outfp,
"****************************************************************\n");
rc = 0;
if (!dump_all) { /* user just wants from last synch point forward */
if (lastaddr == 0) {
lastaddr = (ld.log.syncpt.sync == 0)
? logaddr : ld.log.syncpt.sync;
}
} /* end user just wants from last synch point forward */
break;
case LOG_REDOPAGE:
fprintf(outfp,
"LOG_REDOPAGE (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d ", ld.length);
disp_redopage(&ld);
break;
case LOG_NOREDOPAGE:
fprintf(outfp,
"LOG_NOREDOPAGE (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d ", ld.length);
disp_noredopage(&ld);
break;
case LOG_NOREDOINOEXT:
fprintf(outfp,
"LOG_NOREDOINOEXT (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d ", ld.length);
disp_noredoinoext(&ld);
break;
case LOG_UPDATEMAP:
fprintf(outfp,
"LOG_UPDATEMAP (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d ", ld.length);
disp_updatemap(&ld);
break;
default:
fprintf(outfp,
"*UNRECOGNIZED* (type = d %d) logtid = d %d aggregate = d %d\n",
ld.type, ld.logtid, ld.aggregate);
fprintf(outfp, "\n");
fprintf(outfp, "\tdata length = d %d\n", ld.length);
fprintf(outfp, "\n");
fprintf(outfp, "**ERROR** unrecognized log record type\n");
fprintf(outfp, "\n");
fprintf(outfp,
"======================================================\n");
fprintf(outfp, "\n");
return (UNRECOG_LOGRECTYP);
}
if (rc == 0) {
fprintf(outfp, "\n");
if (ld.length > 0) {
ldmp_xdump((char *) afterdata, ld.length);
}
}
fprintf(outfp, "\n");
fprintf(outfp,
"----------------------------------------------------------------------\n");
}
/* end if( lastaddr != logaddr ) */
} while (logaddr != lastaddr);
loopexit:
/*
* Close the output file
*/
if (logdmp_outfile_is_open) {
fclose(outfp);
}
if (rc == 0) { /* log has been dumped successfully */
printf
("JFS_LOGDUMP: The current JFS log has been dumped into ./jfslog.dmp\n");
} else {
printf("JFS_LOGDUMP:Failed in %s\n", prog);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "JFS_LOGDUMP:Failed in %s\n", prog);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
}
}
/* end output file is open */
return (rc < 0) ? (rc) : (0);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_readSuper(fp, sb)
*
* FUNCTION: read the superblock for the file system described
* by the file descriptor of the opened aggregate/lv.
* if a read of primary superblock fails,
* try to read the secondary superblock. report error only
* when both reads failed.
*/
int ldmp_readSuper(FILE *fp, /* file descriptor */
struct superblock * sb)
{ /* superblock of the opened aggregate/lv */
int rc;
union {
struct superblock super;
char block[PSIZE];
} super;
/*
* seek to the postion of the primary superblock.
* since at this time we don't know the aggregate/lv
* logical block size yet, we have to use the fixed
* byte offset address SUPER1_OFF to seek for.
*/
/*
* read super block
*/
rc = ujfs_rw_diskblocks(fp, SUPER1_OFF, (unsigned) SIZE_OF_SUPER, super.block, GET);
if (rc != 0) {
printf
("ldmp_readSuper: read primary agg superblock failed. errno=%d Continuing.\n",
errno);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp,
"ldmp_readSuper: read primary agg superblock failed. errno=%d Continuing\n",
errno);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
/* read failed for the primary superblock:
* try to read the secondary superblock
*/
rc = ujfs_rw_diskblocks(fp, SUPER2_OFF, (unsigned) SIZE_OF_SUPER, super.block, GET);
if (rc != 0) {
printf
("ldmp_readSuper: read 2ndary agg superblock failed. errno=%d Cannot continue.\n",
errno);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp,
"ldmp_readSuper: read 2ndary agg superblock failed. errno=%d Cannot continue.\n",
errno);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return (MAJOR_ERROR);
}
}
*sb = super.super;
ujfs_swap_superblock(sb);
return (0);
}
extern void exit(int);
/*----------------------------------------------------------------
*
* ldmp_logError(type)
*
* error handling for log read errors.
*/
int ldmp_logError(int type, int logaddr)
{
retcode = -1;
logsup.state = LOGREADERR;
switch (type) {
case LOGEND:
printf("ldmp_logError:find end of log failed \n");
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_logError:find end of log failed \n");
fprintf(outfp, "??????????????????????????????????????????????????????\n");
break;
case READERR:
printf("log read failed 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "log read failed 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
break;
case UNKNOWNR:
printf("unknown log record type \nlog read failed 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "unknown log record type \nlog read failed 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
break;
case IOERROR:
printf("i/o error log reading page 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "i/o error log reading page 0x%x\n", logaddr);
fprintf(outfp, "??????????????????????????????????????????????????????\n");
break;
case LOGWRAP:
printf("log wrapped...\n");
fprintf(outfp, "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n");
fprintf(outfp, "log wrapped...\n");
fprintf(outfp, "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n");
}
return (0);
}
/*----------------------------------------------------------------
*
* ldmp_xdump()
*
* hex dump
*/
void ldmp_xdump(char *saddr, int count)
{
#define LINESZ 60
#define ASCIISTRT 40
#define HEXEND 36
int i, j, k, hexdigit;
int c;
char *hexchar;
char linebuf[LINESZ + 1];
char prevbuf[LINESZ + 1];
char *linestart;
int asciistart;
char asterisk = ' ';
hexchar = "0123456789ABCDEF";
prevbuf[0] = '\0';
i = (int) saddr % 4;
if (i != 0)
saddr = saddr - i;
for (i = 0; i < count;) {
for (j = 0; j < LINESZ; j++)
linebuf[j] = ' ';
linestart = saddr;
asciistart = ASCIISTRT;
for (j = 0; j < HEXEND;) {
for (k = 0; k < 4; k++) {
c = *(saddr++) & 0xFF;
if ((c >= 0x20) && (c <= 0x7e))
linebuf[asciistart++] = (char) c;
else
linebuf[asciistart++] = '.';
hexdigit = c >> 4;
linebuf[j++] = hexchar[hexdigit];
hexdigit = c & 0x0f;
linebuf[j++] = hexchar[hexdigit];
i++;
}
if (i >= count)
break;
linebuf[j++] = ' ';
}
linebuf[LINESZ] = '\0';
if (((j = ldmp_x_scmp(linebuf, prevbuf)) == 0) && (i < count)) {
if (asterisk == ' ') {
asterisk = '*';
fprintf(outfp, " *\n");
}
} else {
fprintf(outfp, " %p %s\n", linestart, linebuf);
asterisk = ' ';
ldmp_x_scpy(prevbuf, linebuf);
}
}
return;
}
/*----------------------------------------------------------------
*
* ldmp_x_scmp()
*
*/
int ldmp_x_scmp(char *s1, char *s2)
{
while ((*s1) && (*s1 == *s2)) {
s1++;
s2++;
}
if (*s1 || *s2)
return (-1);
else
return (0);
}
/*----------------------------------------------------------------
*
* ldmp_x_scpy()
*
*/
void ldmp_x_scpy(char *s1, char *s2)
{
while ((*s1 = *s2) != '\0') {
s1++;
s2++;
}
}
/***************************************************************************
*
* NAME: disp_noredopage
*
* FUNCTION:
*
* PARAMETERS: none
*
* NOTES:
*
* RETURNS:
* success: LOGDMP_OK
* failure: something else
*/
int disp_noredopage(struct lrd *lrd_ptr)
{
fprintf(outfp, "fileset = d %d inode = d %d (x %x)\n",
lrd_ptr->log.noredopage.fileset,
lrd_ptr->log.noredopage.inode, lrd_ptr->log.noredopage.inode);
switch (lrd_ptr->log.noredopage.type) {
case LOG_INODE:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:INODE\n", lrd_ptr->log.noredopage.type);
break;
case LOG_XTREE:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:XTREE\n ", lrd_ptr->log.noredopage.type);
break;
case (LOG_XTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:XTREE_NEW\n ",
lrd_ptr->log.noredopage.type);
break;
case (LOG_BTROOT | LOG_XTREE):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:BTROOT_XTREE\n ",
lrd_ptr->log.noredopage.type);
break;
case LOG_DTREE:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:DTREE\n ", lrd_ptr->log.noredopage.type);
break;
case (LOG_DTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:DTREE_NEW \n ",
lrd_ptr->log.noredopage.type);
break;
case (LOG_DTREE | LOG_EXTEND):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:DTREE_EXTEND\n ",
lrd_ptr->log.noredopage.type);
break;
case (LOG_BTROOT | LOG_DTREE):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:BTROOT_DTREE\n ",
lrd_ptr->log.noredopage.type);
break;
case (LOG_BTROOT | LOG_DTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d NOREDOPAGE:BTROOT_DTREE.NEW\n ",
lrd_ptr->log.noredopage.type);
break;
case LOG_EA:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:EA\n", lrd_ptr->log.noredopage.type);
break;
case LOG_ACL:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:ACL\n", lrd_ptr->log.noredopage.type);
break;
case LOG_DATA:
fprintf(outfp, "\ttype = d %d NOREDOPAGE:DATA\n", lrd_ptr->log.noredopage.type);
break;
/*
case LOG_NOREDOFILE:
fprintf( outfp, "\ttype = d %d NOREDOPAGE:NOREDOFILE\n",
lrd_ptr->log.noredopage.type );
break;
*/
default:
fprintf(outfp, "\ttype = d %d ***UNRECOGNIZED***\n", lrd_ptr->log.noredopage.type);
break;
}
fprintf(outfp, "\tpxd length = d %d phys offset = x %llx (d %lld)\n",
lengthPXD(&(lrd_ptr->log.noredopage.pxd)),
(long long) addressPXD(&(lrd_ptr->log.noredopage.pxd)),
(long long) addressPXD(&(lrd_ptr->log.noredopage.pxd)));
return (LOGDMP_OK);
} /* end of disp_noredopage() */
/***************************************************************************
*
* NAME: disp_noredoinoext
*
* FUNCTION:
*
* PARAMETERS: none
*
* NOTES:
*
* RETURNS:
* success: LOGDMP_OK
* failure: something else
*/
int disp_noredoinoext(struct lrd * lrd_ptr)
{
fprintf(outfp, "fileset = d %d \n", lrd_ptr->log.noredoinoext.fileset);
fprintf(outfp, "\tiag number = d %d extent index = d %d\n",
lrd_ptr->log.noredoinoext.iagnum, lrd_ptr->log.noredoinoext.inoext_idx);
fprintf(outfp, "\tpxd length = d %d phys offset = x %llx (d %lld)\n",
lengthPXD(&(lrd_ptr->log.noredoinoext.pxd)),
(long long) addressPXD(&(lrd_ptr->log.noredoinoext.pxd)),
(long long) addressPXD(&(lrd_ptr->log.noredoinoext.pxd)));
return (LOGDMP_OK);
} /* end of disp_noredopage() */
/***************************************************************************
*
* NAME: disp_redopage
*
* FUNCTION:
*
* PARAMETERS: none
*
* NOTES:
*
* RETURNS:
* success: LOGDMP_OK
* failure: something else
*/
int disp_redopage(struct lrd * lrd_ptr)
{
fprintf(outfp, "fileset = d %d inode = d %d (x %x)\n",
lrd_ptr->log.redopage.fileset, lrd_ptr->log.redopage.inode,
lrd_ptr->log.redopage.inode);
switch (lrd_ptr->log.redopage.type) {
case LOG_INODE:
fprintf(outfp, "\ttype = d %d REDOPAGE:INODE\n", lrd_ptr->log.redopage.type);
break;
case LOG_XTREE:
fprintf(outfp, "\ttype = d %d REDOPAGE:XTREE\n ", lrd_ptr->log.redopage.type);
break;
case (LOG_XTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d REDOPAGE:XTREE_NEW\n ", lrd_ptr->log.redopage.type);
break;
case (LOG_BTROOT | LOG_XTREE):
fprintf(outfp, "\ttype = d %d REDOPAGE:BTROOT_XTREE\n ",
lrd_ptr->log.redopage.type);
break;
case LOG_DTREE:
fprintf(outfp, "\ttype = d %d REDOPAGE:DTREE\n ", lrd_ptr->log.redopage.type);
break;
case (LOG_DTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d REDOPAGE:DTREE_NEW \n ", lrd_ptr->log.redopage.type);
break;
case (LOG_DTREE | LOG_EXTEND):
fprintf(outfp, "\ttype = d %d REDOPAGE:DTREE_EXTEND\n ",
lrd_ptr->log.redopage.type);
break;
case (LOG_BTROOT | LOG_DTREE):
fprintf(outfp, "\ttype = d %d REDOPAGE:BTROOT_DTREE\n ",
lrd_ptr->log.redopage.type);
break;
case (LOG_BTROOT | LOG_DTREE | LOG_NEW):
fprintf(outfp, "\ttype = d %d REDOPAGE:BTROOT_DTREE.NEW\n ",
lrd_ptr->log.redopage.type);
break;
case LOG_EA:
fprintf(outfp, "\ttype = d %d REDOPAGE:EA\n", lrd_ptr->log.redopage.type);
break;
case LOG_ACL:
fprintf(outfp, "\ttype = d %d REDOPAGE:ACL\n", lrd_ptr->log.redopage.type);
break;
case LOG_DATA:
fprintf(outfp, "\ttype = d %d REDOPAGE:DATA\n", lrd_ptr->log.redopage.type);
break;
/*
case LOG_NOREDOFILE:
fprintf( outfp, "\ttype = d %d REDOPAGE:NOREDOFILE\n",
lrd_ptr->log.redopage.type );
break;
*/
default:
fprintf(outfp, "\ttype = d %d ***UNRECOGNIZED***\n", lrd_ptr->log.redopage.type);
break;
}
fprintf(outfp, "\tl2linesize = d %d ", lrd_ptr->log.redopage.l2linesize);
fprintf(outfp, "pxd length = d %d phys offset = x %llx (d %lld)\n",
lengthPXD(&(lrd_ptr->log.redopage.pxd)),
(long long) addressPXD(&(lrd_ptr->log.redopage.pxd)),
(long long) addressPXD(&(lrd_ptr->log.redopage.pxd)));
return (LOGDMP_OK);
} /* end of disp_redopage() */
/***************************************************************************
*
* NAME: disp_updatemap
*
* FUNCTION:
*
* PARAMETERS: none
*
* NOTES:
*
* RETURNS:
* success: LOGDMP_OK
* failure: something else
*/
int disp_updatemap(struct lrd * lrd_ptr)
{
int flag_unrecognized = -1;
fprintf(outfp, "fileset = d %d inode = d %d (x %x)\n",
lrd_ptr->log.updatemap.fileset, lrd_ptr->log.updatemap.inode,
lrd_ptr->log.updatemap.inode);
fprintf(outfp, "\ttype = x %x UPDATEMAP: ", lrd_ptr->log.updatemap.type);
if ((lrd_ptr->log.updatemap.type & LOG_ALLOCXADLIST) == LOG_ALLOCXADLIST) {
flag_unrecognized = 0;
fprintf(outfp, " ALLOCXADLIST");
}
if ((lrd_ptr->log.updatemap.type & LOG_ALLOCPXDLIST) == LOG_ALLOCPXDLIST) {
flag_unrecognized = 0;
fprintf(outfp, " ALLOCPXDLIST");
}
if ((lrd_ptr->log.updatemap.type & LOG_ALLOCXAD) == LOG_ALLOCXAD) {
flag_unrecognized = 0;
fprintf(outfp, " ALLOCXAD");
}
if ((lrd_ptr->log.updatemap.type & LOG_ALLOCPXD) == LOG_ALLOCPXD) {
flag_unrecognized = 0;
fprintf(outfp, " ALLOCPXD");
}
if ((lrd_ptr->log.updatemap.type & LOG_FREEXADLIST) == LOG_FREEXADLIST) {
flag_unrecognized = 0;
fprintf(outfp, " FREEXADLIST");
}
if ((lrd_ptr->log.updatemap.type & LOG_FREEPXDLIST) == LOG_FREEPXDLIST) {
flag_unrecognized = 0;
fprintf(outfp, " FREEPXDLIST");
}
if ((lrd_ptr->log.updatemap.type & LOG_FREEXAD) == LOG_FREEXAD) {
flag_unrecognized = 0;
fprintf(outfp, " FREEXAD");
}
if ((lrd_ptr->log.updatemap.type & LOG_FREEPXD) == LOG_FREEPXD) {
flag_unrecognized = 0;
fprintf(outfp, " FREEPXD");
}
if (flag_unrecognized) {
fprintf(outfp, " *** UNRECOGNIZED ***");
}
fprintf(outfp, "\n");
fprintf(outfp, "\tnxd = d %d (number of extents)\n", lrd_ptr->log.updatemap.nxd);
fprintf(outfp, "\tpxd length = d %d phys offset = x %llx (d %lld)\n",
lengthPXD(&(lrd_ptr->log.updatemap.pxd)),
(long long) addressPXD(&(lrd_ptr->log.updatemap.pxd)),
(long long) addressPXD(&(lrd_ptr->log.updatemap.pxd)));
return (LOGDMP_OK);
} /* end of disp_updatemap() */
/*****************************************************************************
* NAME: open_outfile
*
* FUNCTION: Open the output file.
*
* PARAMETERS:
* Device - input - the device specification
*
* NOTES:
*
* RETURNS:
* success: XCHKLOG_OK
* failure: something else
*/
int open_outfile()
{
int openof_rc = 0;
outfp = fopen(output_filename, "w");
if (outfp == NULL) { /* output file open failed */
printf("LOG_DUMP: unable to open output file: ./jfslog.dmp\n");
openof_rc = -1;
} else {
logdmp_outfile_is_open = -1;
}
return (openof_rc);
} /* end of open_outfile ( ) */
|