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 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
|
/*
* Copyright (c) International Business Machines Corp., 2000
*
* 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
*
* MODULE_NAME: log_dump.c
*
* COMPONENT_NAME: jfslib
*
* FUNCTIONS: jfs_logdump.c: write the current log records to ./jfslog.dmp
*
* NOTES: **************** This is a SERVICE-ONLY TOOL ****************
*
*
*/
#include "jfs_types.h"
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <string.h>
#include "jfs_byteorder.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 "jfs_debug.h"
#include "logredo.h"
#include "devices.h"
#include "debug.h"
#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.
*/
extern int16_t loglocation; /* 1 = inlinelog, 2 = outlinelog */
extern int32_t logmajor; /* major number of log device */
extern int32_t logminor; /* minor number of log device */
int32_t logserial; /* log serial number in super block */
int32_t logend; /* address of the end of last log record */
int32_t logfd; /* file descriptor for log */
int32_t logsize; /* size of log in pages */
logsuper_t 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).
*/
struct vopen vopen[NUMMINOR];
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
*
* 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 */
char loglockpath[MAXPATHLEN + 1]; /* log lock file */
/*
* external references
*/
extern char *optarg;
extern int optind;
extern int errno;
extern int initMaps( int32_t );
extern int updateMaps(int);
extern int32_t findEndOfLog(void);
extern int logRead( int32_t , struct lrd *, char* );
extern int32_t logredoInit(void);
extern int32_t alloc_storage( int32_t, void **, int32_t * );
extern int alloc_wrksp( uint32_t, int, int, void ** ); /* defined in fsckwsp.c */
extern void ujfs_swap_superblock ( struct superblock * );
extern void ujfs_swap_logsuper_t ( logsuper_t * );
/*
* forward references
*/
int32_t open_outfile( void );
int ldmp_doMount( struct lrd * );
int32_t ldmp_openVol( int32_t );
int32_t ldmp_rdwrSuper( int32_t , struct superblock *, int32_t );
int ldmp_isLogging( caddr_t , int32_t , char *, int32_t );
int32_t ldmp_isFilesystem( caddr_t , int32_t );
int32_t ldmp_logOpen(void);
int ldmp_fsError( int , int , int64_t );
int ldmp_logError( int , int );
int usage (void);
int32_t disp_updatemap ( lrd_t * );
int32_t disp_redopage ( lrd_t * );
int32_t disp_noredopage ( lrd_t * );
int32_t disp_noredoinoext ( lrd_t * );
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:
*
*/
int32_t jfs_logdump( caddr_t pathname, int32_t fd, int32_t dump_all )
{
int32_t rc;
int32_t logaddr,nextaddr,lastaddr, nlogrecords;
int syncrecord;
struct lrd ld;
int32_t lowest_lr_byte = 2 * LOGPSIZE + LOGPHDRSIZE;
int32_t highest_lr_byte = 0;
int log_has_wrapped = 0;
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);
/*
* validate that the log is not currently in use;
*/
rc = ldmp_isLogging(pathname, fd, mntinfo, mntcnt);
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);
}
/*
* open log
*/
logfd = ldmp_logOpen();
/*
* validate log superblock
*
* aggregate block size is for log file as well.
*/
rc = ujfs_rw_diskblocks( logfd,
(uint64_t)(vopen[logminor].logxaddr+LOGPNTOB(LOGSUPER_B)),
(unsigned)sizeof(logsuper_t),
(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_t ( &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");
}
logsize = logsup.size;
logserial = logsup.serial;
/*
* find the end of log
*/
logend = findEndOfLog();
if (logend < 0) {
printf("logend < 0\n");
ldmp_logError(LOGEND,0);
ujfs_swap_logsuper_t ( &logsup );
rc = ujfs_rw_diskblocks(logfd,
(uint64_t)(vopen[logminor].logxaddr+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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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) {
syncrecord = logaddr;
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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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\n",
ld.type, ld.logtid );
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_doMount(ld)
*
* FUNCTION: a log mount record is the first-in-time record which is
* put in the log so it is the last we want to process in
* logredo. so we mark volume as cleanly unmounted in vopen
* array. the mount record is imperative when the volume
* is a newly made filesystem.
*/
int ldmp_doMount(struct lrd *ld) /* pointer to record descriptor */
{
int vol, status;
vol = 0;
status = vopen[vol].status;
if (status != FM_LOGREDO && status != FM_DIRTY)
vopen[vol].status = FM_CLEAN;
return(0);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_openVol(vol)
*
* FUNCTION: open the aggregate/volume specified.
* check if it was cleanly unmounted. also check log
* serial number. initialize disk and inode mpas.
*/
int32_t ldmp_openVol(int32_t vol) /* device minor number of aggregate/lv */
{
int32_t fd, rc, l2agsize, agsize;
int64_t fssize; /* number of aggre. blks in the aggregate/lv */
struct superblock sb;
fd = vopen[logminor].fd;
/* read superblock of the aggregate/volume */
if ((rc = ldmp_rdwrSuper(fd, &sb, PB_READ)) !=0) {
printf( "ldmp_openVol: ldmp_rdwrSuper failed\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol: ldmp_rdwrSuper failed\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
ldmp_fsError(READERR,vol, SUPER1_B);
vopen[vol].active = 0;
return(MINOR_ERROR);
}
/* check magic number and initialize version specific
* values in the vopen struct for this vol.
*/
if (strncmp(sb.s_magic,JFS_MAGIC,(unsigned)strlen(JFS_MAGIC)) == 0) {
if (sb.s_version != JFS_VERSION) {
printf( "ldmp_openVol:version number not right %d\n",vol );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol:version number not right %d\n",vol );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
vopen[vol].active = 0;
return(MINOR_ERROR);
}
if ( loglocation == OUTLINELOG &&
(sb.s_flag & (JFS_INLINELOG == JFS_INLINELOG) )) {
printf( "ldmp_openVol: log location wrong\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol: log location wrong\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
vopen[vol].active = 0;
return(MAJOR_ERROR);
}
if ( loglocation != INLINELOG) {
return(MAJOR_ERROR);
}
vopen[vol].lblksize = sb.s_bsize;
vopen[vol].l2bsize = sb.s_l2bsize;
vopen[vol].l2bfactor = sb.s_l2bfactor;
fssize = sb.s_size >> sb.s_l2bfactor;
vopen[vol].fssize = fssize;
vopen[vol].agsize = sb.s_agsize;
/* LOG2NUM will alter agsize, so use local var */
agsize = vopen[vol].agsize;
LOG2NUM(agsize, l2agsize);
vopen[vol].numag = fssize >> l2agsize;
if ( fssize & (vopen[vol].agsize - 1 ))
vopen[vol].numag += 1;
vopen[vol].l2agsize = l2agsize;
} else {
printf( "ldmp_openVol: magic number not right %d\n",vol );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol: magic number not right %d\n",vol );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
vopen[vol].active = 0;
return(MINOR_ERROR);
}
/* set lbperpage in vopen.
*/
vopen[vol].lbperpage = PSIZE >> vopen[vol].l2bsize;
/* was it cleanly umounted ?
*/
if (sb.s_state == FM_CLEAN) {
vopen[vol].status = FM_CLEAN;
vopen[vol].active = 0;
return(0);
}
/* else get status of volume
*/
vopen[vol].status = sb.s_state;
vopen[vol].is_fsdirty = ( sb.s_state == FM_DIRTY );
/* check log serial number
*/
if (sb.s_logserial != logserial) {
printf( "ldmp_openVol: bad serial number\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol: bad serial number\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
vopen[vol].active = 0;
ldmp_fsError(SERIALNO, vol, SUPER1_B);
return(MINOR_ERROR);
}
/* initialize the disk and inode maps
*/
if ((rc = initMaps(vol)) !=0) {
printf( "ldmp_openVol: initMaps failed\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_openVol: initMaps failed\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
ldmp_fsError(MAPERR,vol,0);
}
return(rc);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_rdwrSuper(fd, sb, rwflag)
*
* FUNCTION: read or write the superblock for the file system described
* by the file descriptor of the opened aggregate/lv.
* for read, if a read of primary superblock is failed,
* try to read the secondary superblock. report error only
* when both reads failed.
* for write, any write failure should be reported.
*/
int32_t ldmp_rdwrSuper( int32_t fd, /* file descriptor */
struct superblock *sb, /* superblock of the opened aggregate/lv */
int32_t rwflag ) /* PB_READ, PB_UPDATE */
{
int32_t 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
*/
if (rwflag == PB_READ) {
rc = ujfs_rw_diskblocks(fd, SUPER1_OFF,
(unsigned)SIZE_OF_SUPER,
super.block, GET);
if ( rc != 0 ) {
printf( "ldmp_rdwrSuper: read primary agg superblock failed. errno=%d Continuing.\n", errno );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_rdwrSuper: 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(fd, SUPER2_OFF,
(unsigned)SIZE_OF_SUPER,
super.block, GET);
if ( rc != 0 ) {
printf( "ldmp_rdwrSuper: read 2ndary agg superblock failed. errno=%d Cannot continue.\n", errno );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_rdwrSuper: read 2ndary agg superblock failed. errno=%d Cannot continue.\n", errno );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return(MAJOR_ERROR);
}
}
*sb = super.super;
ujfs_swap_superblock( sb );
} else {
printf( "ldmp_rdwrSuper: log_dump attempting to write!!!\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_rdwrSuper: log_dump attempting to write!!!\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return(MAJOR_ERROR);
}
return(0);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_isLogging()
*
* FUNCTION: Check to see if device is currently in use as a log
*
* NOTES: mntctl and stat are AIX system calls. major and minor number are
* also AIX concept.
*
* DATA STRUCTURES: global variables logmajor and logminor are altered.
*
* PARAMETERS: logname - device name
* fd - file handle for the logname
* vmt - pointer to buffer that contains an array of
* vmount sturctures, which are returned by the
* mntctl system call.
* cnt - number of vmount structures in buffer pointed by vmt
*
* RETURNS: 0 - device logname is not actively used as a log
* NOT_FSDEV_ERROR (-6) Not a valid fs device (from ldmp_isFilesystem)
* NOT_INLINELOG_ERROR (-7) Log is not an inline log (from ldmp_isFilesystem)
* MAJOR_ERROR - returned from ldmp_isFilesystem().
* MINOR_ERROR - devices already mounted that are using logname
*/
int ldmp_isLogging( caddr_t logname,
int32_t fd,
char *vmt_in,
int32_t cnt)
{
int32_t rc = 0;
/*
* determine if logname represents a file system device or
* a log device and set its major number
*/
if ((rc = ldmp_isFilesystem(logname, fd)) < 0)
return(rc);
return(rc);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_isFilesystem()
*
* FUNCTION: open the device to see if it's a valid filesystem.
* If open failed, then return MAJOR_ERROR.
* If open ok, and it is a valid file system,
* return the minor device number of the log for this
* filesystem. Otherwise, return MINOR_ERROR.
*
* PRE CONDITION: other process opened the device log should allow
* a O_RDONLY re-open.
*
* POST CONDITION: this O_RDONLY open is closed.
*
* PARAMETERS: dev_name - device name. This is the name passed to
* logredo.
*
* RETURNS:
* NOT_FSDEV_ERROR (-6) Not a valid fs device
* NOT_INLINELOG_ERROR (-7) Log is not an inline log -
* MAJOR_ERROR(-2) - open device or stat device failure, or
* s_logdev number wrong.
* if it is not an inlinelog, it is
* an error.
* 0 - 1)read fs superblock ok but dev_name does not
* represent a file system device name
* 2)read fs fs superblock ok, dev_name
* represents a fs device name.
* loglocation is set up. ( INLINELOG or
* OUTLINELOG ).
* 3)read fs superblock failed, but successful
* to read the device as log
*/
int32_t ldmp_isFilesystem( caddr_t dev_name,
int32_t fd )
{
int32_t rc = 0;
struct superblock sb;
int32_t devmajor = 0;
int32_t devminor = 0;
/*
* each file system must maintain its own in-line log.
*/
/*
* try the LV as file system with in-line log
*/
if ((rc = ldmp_rdwrSuper(fd, &sb, PB_READ)) == 0) {
/*
* is the LV a file system ?
*/
if (strncmp(sb.s_magic,JFS_MAGIC,(unsigned)strlen(JFS_MAGIC))
== 0 ) {
/*
* does file system contains its in-line log ?
*/
if ( ( sb.s_flag & JFS_INLINELOG ) == JFS_INLINELOG ) {
if ( !( logmajor == devmajor &&
logminor == devminor ) ) {
printf( "ldmp_isFilesystem: s_logdev is not a fs dev number\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_isFilesystem: s_logdev is not a fs dev number\n" );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return(NOT_FSDEV_ERROR);
}
loglocation = INLINELOG;
vopen[devminor].active = 1;
vopen[devminor].fd = fd;
vopen[devminor].log_pxd = sb.s_logpxd;
vopen[devminor].l2bsize = sb.s_l2bsize;
vopen[devminor].logxaddr =
addressPXD(&sb.s_logpxd) << sb.s_l2bsize;
/*
* the FS is associated with external/out-of-line log
*/
} else {
rc = NOT_INLINELOG_ERROR;
}
/*
* validation failure: the LV is not a file system:
*/
} else {
rc = NOT_FSDEV_ERROR;
}
/*
* read failure: try the LV as out-of-line log
*/
} else {
rc = NOT_INLINELOG_ERROR;
}
return(rc);
}
/*----------------------------------------------------------------
*
* NAME: ldmp_logOpen()
*
* FUNCTION: opens the log and returns its fd.
* sets logmajor to the major number of the device.
*
* PRE CONDITION: logmajor and logminor have been set up
*
* POST CONDITION: log is opened and locked by the loglock file
*
* PARAMETERS: NONE
*
* RETURNS: >= 0 - file descriptor reported from makeOpen()
* < 0 - any error reported from makeOpen()
*/
int32_t ldmp_logOpen()
{
int fd;
fd = vopen[logminor].fd;
return(fd);
}
extern void exit(int);
/*----------------------------------------------------------------
*
* NAME: ldmp_fsError(type,vol,bn)
*
* FUNCTION: error handling code for the specified
* aggregate/lv (filesystem).
*/
int ldmp_fsError( int type, /* error types */
int vol, /* the minor number of the aggregate/lv */
int64_t bn) /* aggregate block No. */
{
printf( "ldmp_fsError:bad error in volume %d \n", vol );
fprintf(outfp, "??????????????????????????????????????????????????????\n");
fprintf(outfp, "ldmp_fsError:bad error in volume %d \n", vol );
retcode = -1;
vopen[vol].status = FM_LOGREDO;
switch (type) {
case OPENERR:
printf( "Open failed \n" );
fprintf(outfp, "Open failed \n" );
break;
case MAPERR:
printf( "can not initialize maps \n" );
fprintf(outfp, "can not initialize maps \n" );
break;
case DBTYPE:
printf( "bad disk block number %lld\n", (long long)bn );
fprintf(outfp, "bad disk block number %lld\n", (long long)bn );
break;
case INOTYPE:
printf( "bad inode number %lld\n", (long long)bn );
fprintf(outfp, "bad inode number %lld\n", (long long)bn );
break;
case READERR:
printf( "can not read block number %lld\n", (long long)bn );
fprintf(outfp, "can not read block number %lld\n", (long long)bn );
break;
case SERIALNO:
printf( "log serial number no good /n" );
fprintf(outfp, "log serial number no good /n" );
break;
case IOERROR:
printf( "io error reading block number %lld\n", (long long)bn );
fprintf(outfp, "io error reading block number %lld\n", (long long)bn );
break;
case LOGRCERR:
printf( "UpdateMap log rec error. nxd=%lld\n", (long long)bn );
fprintf(outfp, "UpdateMap log rec error. nxd=%lld\n", (long long)bn );
break;
}
fprintf(outfp, "??????????????????????????????????????????????????????\n");
return(0);
}
/*----------------------------------------------------------------
*
* ldmp_logError(type)
*
* error handling for log read errors.
*/
int ldmp_logError( int type,
int logaddr)
{
int k;
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");
}
/* mark all open volumes in error
*/
for (k = 0; k < NUMMINOR; k++) {
if (vopen[k].active && vopen[k].status != FM_CLEAN)
vopen[k].status = FM_LOGREDO;
}
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;
register int c;
char *hexchar;
char linebuf[LINESZ+1];
char prevbuf[LINESZ+1];
char *linestart;
int asciistart;
char asterisk = ' ';
void ldmp_x_scpy ();
int ldmp_x_scmp ();
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( register char *s1,
register char *s2)
{
while ((*s1) && (*s1 == *s2)) {
s1++;
s2++;
}
if (*s1 || *s2)
return(-1);
else
return(0);
}
/*----------------------------------------------------------------
*
* ldmp_x_scpy()
*
*/
void ldmp_x_scpy( register char *s1,
register char *s2)
{
while ((*s1 = *s2) != '\0') {
s1++;
s2++;
}
}
/***************************************************************************
*
* NAME: disp_noredopage
*
* FUNCTION:
*
* PARAMETERS: none
*
* NOTES:
*
* RETURNS:
* success: LOGDMP_OK
* failure: something else
*/
int32_t disp_noredopage ( lrd_t *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
*/
int32_t disp_noredoinoext ( lrd_t *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
*/
int32_t disp_redopage ( lrd_t *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
*/
int32_t disp_updatemap ( lrd_t *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
*/
int32_t open_outfile ( )
{
int32_t 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 ( ) */
|