2003-01-20 06:01:18 +08:00
|
|
|
/**
|
2002-11-29 20:16:35 +08:00
|
|
|
* NtfsDump_LogFile - Part of the Linux-NTFS project.
|
|
|
|
*
|
2004-02-20 22:44:16 +08:00
|
|
|
* Copyright (c) 2000-2004 Anton Altaparmakov
|
2002-11-29 20:16:35 +08:00
|
|
|
*
|
|
|
|
* This utility will interpret the contents of the journal ($LogFile) of an
|
|
|
|
* NTFS partition and display the results on stdout. Errors will be output to
|
|
|
|
* stderr.
|
|
|
|
*
|
|
|
|
* 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 (in the main directory of the Linux-NTFS source
|
|
|
|
* in the file COPYING); if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: This program might not work on architectures which do not allow
|
|
|
|
* unaligned access. For those, the program would need to start using
|
|
|
|
* get/put_unaligned macros (#include <asm/unaligned.h>), but not doing it yet,
|
|
|
|
* since NTFS really mostly applies to ia32 only, which does allow unaligned
|
|
|
|
* accesses. We might not actually have a problem though, since the structs are
|
|
|
|
* defined as being packed so that might be enough for gcc to insert the
|
|
|
|
* correct code.
|
|
|
|
*
|
|
|
|
* If anyone using a non-little endian and/or an aligned access only CPU tries
|
|
|
|
* this program please let me know whether it works or not!
|
|
|
|
*
|
2002-12-02 02:54:13 +08:00
|
|
|
* Anton Altaparmakov <aia21@cantab.net>
|
2002-11-29 20:16:35 +08:00
|
|
|
*/
|
|
|
|
|
2004-02-20 22:44:16 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2004-03-25 01:38:31 +08:00
|
|
|
#include <stdarg.h>
|
2002-11-29 20:16:35 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "types.h"
|
2004-03-25 01:38:31 +08:00
|
|
|
#include "endians.h"
|
|
|
|
#include "volume.h"
|
|
|
|
#include "inode.h"
|
2002-11-29 20:16:35 +08:00
|
|
|
#include "attrib.h"
|
2004-03-25 01:38:31 +08:00
|
|
|
#include "layout.h"
|
2002-11-29 20:16:35 +08:00
|
|
|
#include "logfile.h"
|
|
|
|
#include "mst.h"
|
|
|
|
|
2004-03-25 01:38:31 +08:00
|
|
|
/* Need these global so ntfsdump_logfile_exit can access them. */
|
|
|
|
static char *EXEC_NAME;
|
|
|
|
static ntfs_volume *vol;
|
|
|
|
static ntfs_inode *ni;
|
|
|
|
static ntfs_attr *na;
|
|
|
|
static u8 *lfd;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* err_exit - error output and terminate
|
|
|
|
*/
|
|
|
|
void err_exit(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
fprintf(stderr, "ERROR: ");
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "Aborting...\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ntfsdump_logfile_exit
|
|
|
|
*/
|
|
|
|
void ntfsdump_logfile_exit(void)
|
|
|
|
{
|
|
|
|
if (lfd)
|
|
|
|
free(lfd);
|
|
|
|
if (na)
|
|
|
|
ntfs_attr_close(na);
|
|
|
|
if (ni && ntfs_inode_close(ni))
|
|
|
|
fprintf(stderr, "Warning: Failed to close $LogFile (inode "
|
|
|
|
"%i): %s\n", FILE_LogFile, strerror(errno));
|
|
|
|
if (ntfs_umount(vol, 0))
|
|
|
|
fprintf(stderr, "Warning: Failed to umount %s: %s\n",
|
|
|
|
EXEC_NAME, strerror(errno));
|
|
|
|
}
|
2003-01-20 06:01:18 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* main
|
|
|
|
*/
|
2002-11-29 20:16:35 +08:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2004-03-25 01:38:31 +08:00
|
|
|
s64 br;
|
|
|
|
int err;
|
|
|
|
|
2002-11-29 20:16:35 +08:00
|
|
|
RESTART_PAGE_HEADER *rph;
|
|
|
|
RESTART_AREA *rr;
|
2004-03-26 22:42:21 +08:00
|
|
|
LOG_CLIENT_RECORD *cr;
|
2002-11-29 20:16:35 +08:00
|
|
|
RECORD_PAGE_HEADER *rcrd_ph;
|
|
|
|
LOG_RECORD *lr;
|
|
|
|
int pass = 1;
|
|
|
|
int i, lps, client;
|
|
|
|
|
2004-03-25 01:38:31 +08:00
|
|
|
EXEC_NAME = argv[0];
|
2002-11-29 20:16:35 +08:00
|
|
|
printf("\n");
|
2004-03-25 01:38:31 +08:00
|
|
|
if (argc != 2)
|
|
|
|
err_exit("%s v%s - Interpret and display information about "
|
|
|
|
"the journal\n($LogFile) of an NTFS volume.\n"
|
|
|
|
"Copyright (c) 2000-2004 Anton Altaparmakov.\n"
|
|
|
|
"%s is free software, released under the GNU "
|
|
|
|
"General Public License\nand you are welcome "
|
|
|
|
"to redistribute it under certain "
|
|
|
|
"conditions.\n%s comes with ABSOLUTELY NO "
|
|
|
|
"WARRANTY; for details read the GNU\nGeneral "
|
|
|
|
"Public License to be found in the file "
|
|
|
|
"COPYING in the main Linux-NTFS\ndistribution "
|
|
|
|
"directory.\nUsage: %s device\n e.g. %s "
|
|
|
|
"/dev/hda6\n", EXEC_NAME, VERSION, EXEC_NAME,
|
|
|
|
EXEC_NAME, EXEC_NAME, EXEC_NAME);
|
2002-11-29 20:16:35 +08:00
|
|
|
vol = ntfs_mount(argv[1], MS_RDONLY);
|
2004-03-25 01:38:31 +08:00
|
|
|
if (!vol)
|
|
|
|
err_exit("Failed to mount %s: %s\n", argv[1], strerror(errno));
|
|
|
|
err = atexit(&ntfsdump_logfile_exit);
|
|
|
|
if (err < 0) {
|
|
|
|
err = errno;
|
|
|
|
ntfsdump_logfile_exit();
|
|
|
|
err_exit("Could not set up exit() function because atexit() "
|
|
|
|
"failed: %s\n", strerror(err));
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
2004-03-25 01:38:31 +08:00
|
|
|
printf("\nMounted NTFS volume %s (NTFS v%i.%i) on device %s.\n",
|
|
|
|
vol->vol_name ? vol->vol_name : "<NO_NAME>",
|
|
|
|
vol->major_ver, vol->minor_ver, argv[1]);
|
|
|
|
if (ntfs_version_is_supported(vol))
|
|
|
|
err_exit("Unsupported NTFS version.\n");
|
|
|
|
ni = ntfs_inode_open(vol, FILE_LogFile);
|
|
|
|
if (!ni)
|
|
|
|
err_exit("Failed to open $LogFile (inode %i): %s\n",
|
|
|
|
FILE_LogFile, strerror(errno));
|
|
|
|
na = ntfs_attr_open(ni, AT_DATA, AT_UNNAMED, 0);
|
|
|
|
if (!na)
|
|
|
|
err_exit("Failed to open $LogFile/$DATA (attribute 0x%x): "
|
|
|
|
"%s\n", le32_to_cpu(AT_DATA), strerror(errno));
|
|
|
|
if (!na->data_size)
|
|
|
|
err_exit("$LogFile has zero length. Run chkdsk /f to correct "
|
|
|
|
"this.\n");
|
|
|
|
/* For simplicity we hold the entirety of $LogFile/$DATA in memory. */
|
|
|
|
lfd = malloc(na->data_size);
|
|
|
|
if (!lfd)
|
|
|
|
err_exit("Failed to allocate buffer for $LogFile/$DATA: %s",
|
|
|
|
strerror(errno));
|
|
|
|
br = ntfs_attr_pread(na, 0, na->data_size, lfd);
|
|
|
|
if (br != na->data_size)
|
|
|
|
err_exit("Failed to read $LogFile/$DATA: %s", br < 0 ?
|
|
|
|
strerror(errno) : "Partial read.");
|
|
|
|
/*
|
|
|
|
* We now have the entirety of $LogFile/$DATA in the memory buffer lfd.
|
|
|
|
*/
|
|
|
|
// FIXME: TODO: I am here... (AIA)
|
2002-11-29 20:16:35 +08:00
|
|
|
/* Check restart area. */
|
2002-12-10 19:53:41 +08:00
|
|
|
if (!ntfs_is_rstr_recordp(lfd)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
s64 _l;
|
|
|
|
|
2004-03-25 01:38:31 +08:00
|
|
|
for (_l = 0LL; _l < na->data_size; _l++)
|
2002-11-29 20:16:35 +08:00
|
|
|
if (lfd[_l] != (unsigned char)-1)
|
|
|
|
break;
|
2004-03-25 01:38:31 +08:00
|
|
|
if (_l < na->data_size)
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("$LogFile contents are corrupt (magic RSTR "
|
|
|
|
"missing)!");
|
|
|
|
else
|
|
|
|
puts("$LogFile is empty.");
|
|
|
|
goto log_file_error;
|
|
|
|
}
|
|
|
|
/* Do the interpretation and display now. */
|
|
|
|
rph = (RESTART_PAGE_HEADER*)lfd;
|
|
|
|
lps = le32_to_cpu(rph->log_page_size);
|
|
|
|
pass_loc:
|
2002-12-10 19:53:41 +08:00
|
|
|
if (ntfs_mst_post_read_fixup((NTFS_RECORD*)rph, lps) ||
|
|
|
|
ntfs_is_baad_record(rph->magic)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("$LogFile incomplete multi sector transfer detected! "
|
|
|
|
"Cannot handle this yet!");
|
|
|
|
goto log_file_error;
|
|
|
|
}
|
|
|
|
if ((pass == 2) && !memcmp(lfd, rph, lps)) {
|
|
|
|
printf("2nd restart area fully matches the 1st one. Skipping "
|
|
|
|
"display.\n");
|
|
|
|
goto skip_rstr_pass;
|
|
|
|
}
|
|
|
|
if (le16_to_cpu(rph->major_ver != 1) ||
|
|
|
|
le16_to_cpu(rph->minor_ver != 1)) {
|
|
|
|
fprintf(stderr, "$LogFile version %i.%i! Error: Unknown "
|
|
|
|
"$LogFile version!\n",
|
|
|
|
le16_to_cpu(rph->major_ver),
|
|
|
|
le16_to_cpu(rph->minor_ver));
|
|
|
|
goto log_file_error;
|
|
|
|
}
|
|
|
|
rr = (RESTART_AREA*)((char*)rph + le16_to_cpu(rph->restart_offset));
|
2004-03-26 22:42:21 +08:00
|
|
|
cr = (LOG_CLIENT_RECORD*)((char*)rr +
|
2002-11-29 20:16:35 +08:00
|
|
|
le16_to_cpu(rr->client_array_offset));
|
|
|
|
/* Dump of the interpreted $LogFile restart area. */
|
|
|
|
if (pass == 1)
|
|
|
|
printf("\n$LogFile version %i.%i.\n",
|
|
|
|
le16_to_cpu(rph->major_ver),
|
|
|
|
le16_to_cpu(rph->minor_ver));
|
|
|
|
printf("\n%s restart area:\n", pass == 1? "1st": "2nd");
|
|
|
|
printf("magic = RSTR\n");
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("ChkDskLsn = 0x%llx\n",
|
|
|
|
(unsigned long long)sle64_to_cpu(rph->chkdsk_lsn));
|
2002-11-29 20:16:35 +08:00
|
|
|
printf("SystemPageSize = %u\n", le32_to_cpu(rph->system_page_size));
|
|
|
|
printf("LogPageSize = %u\n", le32_to_cpu(rph->log_page_size));
|
|
|
|
printf("RestartOffset = 0x%x\n", le16_to_cpu(rph->restart_offset));
|
|
|
|
printf("\n(1st) restart record:\n");
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("CurrentLsn = %llx\n",
|
|
|
|
(unsigned long long)sle64_to_cpu(rr->current_lsn));
|
2002-11-29 20:16:35 +08:00
|
|
|
printf("LogClients = %u\n", le16_to_cpu(rr->log_clients));
|
|
|
|
printf("ClientFreeList = %i\n", sle16_to_cpu(rr->client_free_list));
|
|
|
|
printf("ClientInUseList = %i\n", sle16_to_cpu(rr->client_in_use_list));
|
|
|
|
printf("Flags = 0x%x\n", le16_to_cpu(rr->flags));
|
|
|
|
printf("SeqNumberBits = %u (0x%x)\n", le32_to_cpu(rr->seq_number_bits),
|
|
|
|
le32_to_cpu(rr->seq_number_bits));
|
|
|
|
printf("RestartAreaLength = 0x%x\n",
|
|
|
|
le16_to_cpu(rr->restart_area_length));
|
|
|
|
printf("ClientArrayOffset = 0x%x\n",
|
|
|
|
le16_to_cpu(rr->client_array_offset));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("FileSize = %lld (0x%llx)\n",
|
|
|
|
(long long)sle64_to_cpu(rr->file_size),
|
|
|
|
(unsigned long long)sle64_to_cpu(rr->file_size));
|
2004-03-25 01:38:31 +08:00
|
|
|
if (sle64_to_cpu(rr->file_size) != na->data_size)
|
2002-11-29 20:16:35 +08:00
|
|
|
puts("$LogFile restart area indicates a log file size"
|
|
|
|
"different from the actual size!");
|
|
|
|
printf("LastLsnDataLength = 0x%x\n",
|
|
|
|
le32_to_cpu(rr->last_lsn_data_length));
|
|
|
|
printf("RecordLength = 0x%x\n", le16_to_cpu(rr->record_length));
|
|
|
|
printf("LogPageDataOffset = 0x%x\n",
|
|
|
|
le16_to_cpu(rr->log_page_data_offset));
|
|
|
|
for (client = 0; client < le16_to_cpu(rr->log_clients); client++) {
|
|
|
|
printf("\nRestart client record number %i:\n", client);
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("OldestLsn = 0x%llx\n", (unsigned long long)
|
|
|
|
sle64_to_cpu(cr->oldest_lsn));
|
|
|
|
printf("ClientRestartLsn = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
sle64_to_cpu(cr->client_restart_lsn));
|
|
|
|
printf("PrevClient = %i\n", sle16_to_cpu(cr->prev_client));
|
|
|
|
printf("NextClient = %i\n", sle16_to_cpu(cr->next_client));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("SeqNumber = 0x%llx\n", (unsigned long long)
|
|
|
|
le64_to_cpu(cr->seq_number));
|
2002-11-29 20:16:35 +08:00
|
|
|
printf("ClientNameLength = 0x%x\n",
|
|
|
|
le32_to_cpu(cr->client_name_length));
|
|
|
|
if (le32_to_cpu(cr->client_name_length)) {
|
|
|
|
// convert to ascii and print out.
|
|
|
|
// printf("ClientName = %u\n", le16_to_cpu(cr->client_name));
|
|
|
|
}
|
|
|
|
/* Size of a restart client record is fixed at 0xa0 bytes. */
|
2004-03-26 22:42:21 +08:00
|
|
|
cr = (LOG_CLIENT_RECORD*)((char*)cr + 0xa0);
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
|
|
|
skip_rstr_pass:
|
|
|
|
if (pass == 1) {
|
|
|
|
rph = (RESTART_PAGE_HEADER*)((char*)rph + lps);
|
|
|
|
++pass;
|
|
|
|
goto pass_loc;
|
|
|
|
}
|
|
|
|
rcrd_ph = (RECORD_PAGE_HEADER*)rph;
|
|
|
|
/* Reuse pass for log record clienter. */
|
|
|
|
pass = 0;
|
|
|
|
printf("\nFinished with restart area. Beginning with log area.\n");
|
|
|
|
rcrd_pass_loc:
|
|
|
|
rcrd_ph = (RECORD_PAGE_HEADER*)((char*)rcrd_ph + lps);
|
2004-03-25 01:38:31 +08:00
|
|
|
if ((char*)rcrd_ph + lps > (char*)lfd + na->data_size)
|
2002-11-29 20:16:35 +08:00
|
|
|
goto end_of_rcrd_passes;
|
|
|
|
printf("\nLog record page number %i", pass);
|
2002-12-10 19:53:41 +08:00
|
|
|
if (!ntfs_is_rcrd_record(rcrd_ph->magic)) {
|
2002-11-29 20:16:35 +08:00
|
|
|
for (i = 0; i < lps; i++)
|
|
|
|
if (((char*)rcrd_ph)[i] != (char)-1)
|
|
|
|
break;
|
|
|
|
if (i < lps)
|
|
|
|
puts(" is corrupt (magic RCRD is missing).");
|
|
|
|
else
|
|
|
|
puts(" is empty.");
|
|
|
|
pass++;
|
|
|
|
goto rcrd_pass_loc;
|
|
|
|
} else
|
|
|
|
printf(":");
|
|
|
|
/* Dump log record page */
|
|
|
|
printf("\nmagic = RCRD\n");
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("copy.last_lsn/file_offset = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
le64_to_cpu(rcrd_ph->copy.last_lsn));
|
|
|
|
printf("flags = 0x%x\n", le32_to_cpu(rcrd_ph->flags));
|
|
|
|
printf("page count = %i\n", le16_to_cpu(rcrd_ph->page_count));
|
|
|
|
printf("page position = %i\n", le16_to_cpu(rcrd_ph->page_position));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("header.next_record_offset = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
le64_to_cpu(rcrd_ph->header.packed.next_record_offset));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("header.last_end_lsn = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
le64_to_cpu(rcrd_ph->header.packed.last_end_lsn));
|
|
|
|
/*
|
|
|
|
* Where does the 0x40 come from? Is it just usa_offset +
|
|
|
|
* usa_client * 2 + 7 & ~7 or is it derived from somewhere?
|
|
|
|
*/
|
|
|
|
lr = (LOG_RECORD*)((char*)rcrd_ph + 0x40);
|
|
|
|
client = 0;
|
|
|
|
log_record_pass:
|
|
|
|
printf("\nLog record %i:\n", client);
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("this lsn = 0x%llx\n",
|
|
|
|
(unsigned long long)le64_to_cpu(lr->this_lsn));
|
|
|
|
printf("client previous lsn = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
le64_to_cpu(lr->client_previous_lsn));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("client undo next lsn = 0x%llx\n", (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
le64_to_cpu(lr->client_undo_next_lsn));
|
|
|
|
printf("client data length = 0x%x\n",
|
|
|
|
le32_to_cpu(lr->client_data_length));
|
|
|
|
printf("client_id.seq_number = 0x%x\n",
|
|
|
|
le16_to_cpu(lr->client_id.seq_number));
|
|
|
|
printf("client_id.client_index = 0x%x\n",
|
|
|
|
le16_to_cpu(lr->client_id.client_index));
|
|
|
|
printf("record type = 0x%x\n", le32_to_cpu(lr->record_type));
|
|
|
|
printf("transaction_id = 0x%x\n", le32_to_cpu(lr->transaction_id));
|
|
|
|
printf("flags = 0x%x:", lr->flags);
|
|
|
|
if (!lr->flags)
|
|
|
|
printf(" NONE\n");
|
|
|
|
else {
|
|
|
|
int _b = 0;
|
|
|
|
|
|
|
|
if (lr->flags & LOG_RECORD_MULTI_PAGE) {
|
|
|
|
printf(" LOG_RECORD_MULTI_PAGE");
|
|
|
|
_b = 1;
|
|
|
|
}
|
|
|
|
if (lr->flags & ~LOG_RECORD_MULTI_PAGE) {
|
|
|
|
if (_b)
|
|
|
|
printf(" |");
|
|
|
|
printf(" Unknown flags");
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
printf("redo_operation = 0x%x\n", le16_to_cpu(lr->redo_operation));
|
|
|
|
printf("undo_operation = 0x%x\n", le16_to_cpu(lr->undo_operation));
|
|
|
|
printf("redo_offset = 0x%x\n", le16_to_cpu(lr->redo_offset));
|
|
|
|
printf("redo_length = 0x%x\n", le16_to_cpu(lr->redo_length));
|
|
|
|
printf("undo_offset = 0x%x\n", le16_to_cpu(lr->undo_offset));
|
|
|
|
printf("undo_length = 0x%x\n", le16_to_cpu(lr->undo_length));
|
|
|
|
printf("target_attribute = 0x%x\n", le16_to_cpu(lr->target_attribute));
|
|
|
|
printf("lcns_to_follow = 0x%x\n", le16_to_cpu(lr->lcns_to_follow));
|
|
|
|
printf("record_offset = 0x%x\n", le16_to_cpu(lr->record_offset));
|
|
|
|
printf("attribute_offset = 0x%x\n", le16_to_cpu(lr->attribute_offset));
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("target_vcn = 0x%llx\n",
|
|
|
|
(unsigned long long)sle64_to_cpu(lr->target_vcn));
|
2002-11-29 20:16:35 +08:00
|
|
|
if (le16_to_cpu(lr->lcns_to_follow) > 0)
|
|
|
|
printf("Array of lcns:\n");
|
|
|
|
for (i = 0; i < le16_to_cpu(lr->lcns_to_follow); i++)
|
2004-03-09 22:47:34 +08:00
|
|
|
printf("lcn_list[%i].lcn = 0x%llx\n", i, (unsigned long long)
|
2002-11-29 20:16:35 +08:00
|
|
|
sle64_to_cpu(lr->lcn_list[i].lcn));
|
|
|
|
client++;
|
|
|
|
lr = (LOG_RECORD*)((char*)lr + 0x70);
|
|
|
|
if (((char*)lr + 0x70 <= (char*)rcrd_ph +
|
|
|
|
le64_to_cpu(rcrd_ph->header.packed.next_record_offset)))
|
|
|
|
goto log_record_pass;
|
|
|
|
pass++;
|
|
|
|
goto rcrd_pass_loc;
|
|
|
|
end_of_rcrd_passes:
|
|
|
|
log_file_error:
|
|
|
|
printf("\n");
|
2004-03-25 01:38:31 +08:00
|
|
|
return 0;
|
2002-11-29 20:16:35 +08:00
|
|
|
}
|
|
|
|
|