2019-03-17 20:39:40 +00:00
|
|
|
// /***************************************************************************
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : open.c
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// Component : libdicformat.
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Handles opening DiscImageChef format disk images.
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library 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
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Copyright © 2011-2019 Natalia Portillo
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <dicformat.h>
|
|
|
|
|
#include <malloc.h>
|
|
|
|
|
#include <errno.h>
|
2019-03-17 21:14:40 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
#include <string.h>
|
2019-03-17 21:32:02 +00:00
|
|
|
#include <stdbool.h>
|
2019-03-17 20:39:40 +00:00
|
|
|
|
2019-03-17 21:14:40 +00:00
|
|
|
// TODO: Check CRC64 on structures
|
|
|
|
|
// TODO: ImageInfo
|
2019-03-17 20:39:40 +00:00
|
|
|
void *open(const char *filepath)
|
|
|
|
|
{
|
2019-03-17 21:32:02 +00:00
|
|
|
dicformatContext *ctx = malloc(sizeof(dicformatContext));
|
2019-03-17 20:39:40 +00:00
|
|
|
int errorNo;
|
|
|
|
|
size_t readBytes;
|
2019-03-17 21:14:40 +00:00
|
|
|
long pos;
|
|
|
|
|
IndexHeader idxHeader;
|
|
|
|
|
IndexEntry *idxEntries;
|
2019-03-17 21:32:02 +00:00
|
|
|
uint64_t ImageSize; // TODO: This should be in ImageInfo
|
2019-03-17 21:14:40 +00:00
|
|
|
|
|
|
|
|
memset(ctx, 0, sizeof(dicformatContext));
|
2019-03-17 20:39:40 +00:00
|
|
|
|
|
|
|
|
if(ctx == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
ctx->imageStream = fopen(filepath, "rb");
|
|
|
|
|
|
|
|
|
|
if(ctx->imageStream == NULL)
|
|
|
|
|
{
|
|
|
|
|
errorNo = errno;
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = errorNo;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fseek(ctx->imageStream, 0, SEEK_SET);
|
|
|
|
|
readBytes = fread(&ctx->header, sizeof(DicHeader), 1, ctx->imageStream);
|
|
|
|
|
|
|
|
|
|
if(readBytes != sizeof(DicHeader))
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_FILE_TOO_SMALL;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ctx->header.identifier != DIC_MAGIC)
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_NOT_DICFORMAT;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ctx->header.imageMajorVersion > DICF_VERSION)
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_INCOMPATIBLE_VERSION;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fprintf(stderr,
|
2019-03-17 21:14:40 +00:00
|
|
|
"libdicformat: Opening image version %d.%d",
|
2019-03-17 20:39:40 +00:00
|
|
|
ctx->header.imageMajorVersion,
|
|
|
|
|
ctx->header.imageMinorVersion);
|
|
|
|
|
|
2019-03-17 21:14:40 +00:00
|
|
|
// Read the index header
|
|
|
|
|
pos = fseek(ctx->imageStream, ctx->header.indexOffset, SEEK_CUR);
|
|
|
|
|
if(pos < 0)
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_CANNOT_READ_INDEX;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pos = ftell(ctx->imageStream);
|
|
|
|
|
if(pos != ctx->header.indexOffset)
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_CANNOT_READ_INDEX;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
readBytes = fread(&idxHeader, sizeof(IndexHeader), 1, ctx->imageStream);
|
|
|
|
|
|
|
|
|
|
if(readBytes != sizeof(IndexHeader) || idxHeader.identifier != IndexBlock)
|
|
|
|
|
{
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_CANNOT_READ_INDEX;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "libdicformat: Index at %"PRIu64" contains %d entries", ctx->header.indexOffset, idxHeader.entries);
|
|
|
|
|
|
|
|
|
|
idxEntries = malloc(sizeof(IndexEntry) * idxHeader.entries);
|
|
|
|
|
|
|
|
|
|
if(idxEntries == NULL)
|
|
|
|
|
{
|
|
|
|
|
errorNo = errno;
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = errorNo;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memset(idxEntries, 0, sizeof(IndexEntry) * idxHeader.entries);
|
|
|
|
|
readBytes = fread(idxEntries, sizeof(IndexEntry), idxHeader.entries, ctx->imageStream);
|
|
|
|
|
|
|
|
|
|
if(readBytes != sizeof(IndexEntry) * idxHeader.entries)
|
|
|
|
|
{
|
|
|
|
|
free(idxEntries);
|
|
|
|
|
free(ctx);
|
|
|
|
|
errno = DICF_ERROR_CANNOT_READ_INDEX;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < idxHeader.entries; i++)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"libdicformat: Block type %4s with data type %4s is indexed to be at %"PRIu64"",
|
|
|
|
|
(char *)&idxEntries[i].blockType,
|
|
|
|
|
(char *)&idxEntries[i].dataType,
|
|
|
|
|
idxEntries[i].offset);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-17 21:32:02 +00:00
|
|
|
bool foundUserDataDdt = false;
|
|
|
|
|
for(int i = 0; i < idxHeader.entries; i++)
|
|
|
|
|
{
|
|
|
|
|
pos = fseek(ctx->imageStream, idxEntries[i].offset, SEEK_SET);
|
|
|
|
|
|
|
|
|
|
if(pos < 0 || ftell(ctx->imageStream) != idxEntries[i].offset)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"libdicformat: Could not seek to %"PRIu64" as indicated by index entry %d, continuing...",
|
|
|
|
|
idxEntries[i].offset,
|
|
|
|
|
i);
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(idxEntries[i].blockType)
|
|
|
|
|
{
|
|
|
|
|
case DataBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case DeDuplicationTable:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case GeometryBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case MetadataBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case TracksBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case CicmBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
case DumpHardwareBlock:
|
|
|
|
|
// TODO
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"libdicformat: Unhandled block type %4s with data type %4s is indexed to be at %"PRIu64"",
|
|
|
|
|
(char *)&idxEntries[i].blockType,
|
|
|
|
|
(char *)&idxEntries[i].dataType,
|
|
|
|
|
idxEntries[i].offset);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-17 21:14:40 +00:00
|
|
|
ctx->magic = DIC_MAGIC;
|
|
|
|
|
ctx->libraryMajorVersion = LIBDICFORMAT_MAJOR_VERSION;
|
|
|
|
|
ctx->libraryMinorVersion = LIBDICFORMAT_MINOR_VERSION;
|
|
|
|
|
|
|
|
|
|
free(idxEntries);
|
2019-03-17 20:39:40 +00:00
|
|
|
return ctx;
|
|
|
|
|
}
|