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
|
/*
* Brian Carrier [carrier <at> sleuthkit [dot] org]
* Copyright (c) 2006-2008 Brian Carrier, Basis Technology. All rights reserved
*
* This software is distributed under the Common Public License 1.0
*/
/**
* \file aff.c
* Internal code to interface with afflib to read and open AFF image files
*/
#include "tsk_img_i.h"
#if HAVE_LIBAFFLIB
typedef int bool;
#include "aff.h"
static ssize_t
aff_read(TSK_IMG_INFO * img_info, TSK_OFF_T offset, char *buf, size_t len)
{
ssize_t cnt;
IMG_AFF_INFO *aff_info = (IMG_AFF_INFO *) img_info;
if (tsk_verbose)
tsk_fprintf(stderr,
"aff_read: byte offset: %" PRIuOFF " len: %" PRIuOFF
"\n", offset, len);
if (offset > img_info->size) {
tsk_error_reset();
tsk_errno = TSK_ERR_IMG_READ_OFF;
snprintf(tsk_errstr, TSK_ERRSTR_L, "aff_read - %" PRIuOFF, offset);
return -1;
}
if (aff_info->seek_pos != offset) {
if (af_seek(aff_info->af_file, offset, SEEK_SET) != offset) {
tsk_error_reset();
// @@@ ADD more specific error messages
tsk_errno = TSK_ERR_IMG_SEEK;
snprintf(tsk_errstr, TSK_ERRSTR_L,
"aff_read - %" PRIuOFF " - %s", offset, strerror(errno));
return -1;
}
aff_info->seek_pos = offset;
}
cnt = af_read(aff_info->af_file, (unsigned char *) buf, len);
if (cnt < 0) {
// @@@ Add more specific error message
tsk_error_reset();
tsk_errno = TSK_ERR_IMG_READ;
snprintf(tsk_errstr, TSK_ERRSTR_L,
"aff_read - offset: %" PRIuOFF " - len: %" PRIuSIZE " - %s",
offset, len, strerror(errno));
return -1;
}
/* AFF will return 0 if the page does not exist -- fill the
* buffer with zeros in this case */
if (cnt == 0) {
// @@@ We could improve this if there is an AFF call
// to see if the data exists or not
if ((af_eof(aff_info->af_file) == 0) &&
(offset + len < img_info->size)) {
memset(buf, 0, len);
cnt = len;
}
}
aff_info->seek_pos += cnt;
return cnt;
}
static void
aff_imgstat(TSK_IMG_INFO * img_info, FILE * hFile)
{
IMG_AFF_INFO *aff_info = (IMG_AFF_INFO *) img_info;
unsigned char buf[512];
size_t buf_len = 512;
tsk_fprintf(hFile, "IMAGE FILE INFORMATION\n");
tsk_fprintf(hFile, "--------------------------------------------\n");
tsk_fprintf(hFile, "Image Type: ");
switch (aff_info->type) {
case AF_IDENTIFY_AFF:
tsk_fprintf(hFile, "AFF\n");
break;
case AF_IDENTIFY_AFD:
tsk_fprintf(hFile, "AFD\n");
break;
case AF_IDENTIFY_AFM:
tsk_fprintf(hFile, "AFM\n");
break;
default:
tsk_fprintf(hFile, "AFFLIB (%d)\n", aff_info->type);
break;
}
tsk_fprintf(hFile, "\nSize in bytes: %" PRIuOFF "\n", img_info->size);
// we won't have the rest of the info for the non-AFF formats.
if (img_info->itype == TSK_IMG_TYPE_AFF_ANY)
return;
tsk_fprintf(hFile, "\nMD5: ");
if (af_get_seg(aff_info->af_file, AF_MD5, NULL, buf, &buf_len) == 0) {
int i;
for (i = 0; i < 16; i++) {
tsk_fprintf(hFile, "%x", buf[i]);
}
tsk_fprintf(hFile, "\n");
}
else {
tsk_fprintf(hFile, "Segment not found\n");
}
buf_len = 512;
tsk_fprintf(hFile, "SHA1: ");
if (af_get_seg(aff_info->af_file, AF_SHA1, NULL, buf, &buf_len) == 0) {
int i;
for (i = 0; i < 20; i++) {
tsk_fprintf(hFile, "%x", buf[i]);
}
tsk_fprintf(hFile, "\n");
}
else {
tsk_fprintf(hFile, "Segment not found\n");
}
/* Creator segment */
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_CREATOR, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Creator: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_CASE_NUM, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Case Number: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_IMAGE_GID, NULL, buf,
&buf_len) == 0) {
unsigned int i;
tsk_fprintf(hFile, "Image GID: ");
for (i = 0; i < buf_len; i++) {
tsk_fprintf(hFile, "%X", buf[i]);
}
tsk_fprintf(hFile, "\n");
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_ACQUISITION_DATE, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Acquisition Date: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_ACQUISITION_NOTES, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Acquisition Notes: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_ACQUISITION_DEVICE, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Acquisition Device: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_AFFLIB_VERSION, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "AFFLib Version: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_DEVICE_MANUFACTURER, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Device Manufacturer: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_DEVICE_MODEL, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Device Model: %s\n", buf);
}
buf_len = 512;
if (af_get_seg(aff_info->af_file, AF_DEVICE_SN, NULL, buf,
&buf_len) == 0) {
buf[buf_len] = '\0';
tsk_fprintf(hFile, "Device SN: %s\n", buf);
}
return;
}
static void
aff_close(TSK_IMG_INFO * img_info)
{
IMG_AFF_INFO *aff_info = (IMG_AFF_INFO *) img_info;
af_close(aff_info->af_file);
free(aff_info);
}
TSK_IMG_INFO *
aff_open(const char *const images[], unsigned int a_ssize)
{
IMG_AFF_INFO *aff_info;
TSK_IMG_INFO *img_info;
int type;
if ((aff_info =
(IMG_AFF_INFO *) tsk_malloc(sizeof(IMG_AFF_INFO))) == NULL) {
return NULL;
}
img_info = (TSK_IMG_INFO *) aff_info;
img_info->read = aff_read;
img_info->close = aff_close;
img_info->imgstat = aff_imgstat;
img_info->sector_size = 512;
if (a_ssize)
img_info->sector_size = a_ssize;
type = af_identify_file_type(images[0], 1);
if ((type == AF_IDENTIFY_ERR) || (type == AF_IDENTIFY_NOEXIST)) {
if (tsk_verbose) {
tsk_fprintf(stderr,
"aff_open: Error determining type of file: %" PRIttocTSK
"\n", images[0]);
perror("aff_open");
}
tsk_error_reset();
tsk_errno = TSK_ERR_IMG_OPEN;
snprintf(tsk_errstr, TSK_ERRSTR_L,
"aff_open file: %" PRIttocTSK ": Error checking type",
images[0]);
tsk_errstr2[0] = '\0';
free(aff_info);
return NULL;
}
else if (type == AF_IDENTIFY_AFF) {
img_info->itype = TSK_IMG_TYPE_AFF_AFF;
}
else if (type == AF_IDENTIFY_AFD) {
img_info->itype = TSK_IMG_TYPE_AFF_AFD;
}
else if (type == AF_IDENTIFY_AFM) {
img_info->itype = TSK_IMG_TYPE_AFF_AFM;
}
else {
img_info->itype = TSK_IMG_TYPE_AFF_ANY;
}
aff_info->af_file = af_open(images[0], O_RDONLY | O_BINARY, 0);
if (!aff_info->af_file) {
// @@@ Need to check here if the open failed because of an incorrect password.
tsk_error_reset();
tsk_errno = TSK_ERR_IMG_OPEN;
snprintf(tsk_errstr, TSK_ERRSTR_L,
"aff_open file: %" PRIttocTSK ": Error opening - %s",
images[0], strerror(errno));
free(aff_info);
if (tsk_verbose) {
tsk_fprintf(stderr, "Error opening AFF/AFD/AFM file\n");
perror("aff_open");
}
return NULL;
}
// verify that a password was given and we can read encrypted data.
if (af_cannot_decrypt(aff_info->af_file)) {
tsk_error_reset();
tsk_errno = TSK_ERR_IMG_PASSWD;
snprintf(tsk_errstr, TSK_ERRSTR_L,
"aff_open file: %" PRIttocTSK, images[0]);
free(aff_info);
if (tsk_verbose) {
tsk_fprintf(stderr, "Error opening AFF/AFD/AFM file (incorrect password)\n");
}
return NULL;
}
aff_info->type = type;
img_info->size = af_imagesize(aff_info->af_file);
af_seek(aff_info->af_file, 0, SEEK_SET);
aff_info->seek_pos = 0;
return img_info;
}
#endif
|