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
|
/*
*
* This is a sample file that shows how to use some of the basic C++
* POSIX-style library functions in The Sleuth Kit (www.sleuthkit.org).
* There are also callback-style functions that can be used to read
* the data and partitions.
*
* Copyright (c) 2008>, Brian Carrier <carrier <at> sleuthkit <dot> org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* - Neither the Sleuth Kit name nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <tsk/libtsk.h>
/**
* Open a directory and cycle through its contents. Read each file and recurse
* into each directory.
*
* @param fs_info File system to process
* @param stack Stack to prevent infinite recursion loops
* @param dir_inum Metadata address of directory to open
* @param path Path of directory being opened
* @returns 1 on error
*/
static uint8_t
procDir(TskFsInfo * fs_info, TSK_STACK * stack,
TSK_INUM_T dir_inum, const char *path)
{
TskFsDir *fs_dir = new TskFsDir();
size_t i;
char *path2 = NULL;
char *buf = NULL;
// open the directory
if ((fs_dir->open(fs_info, dir_inum)) == 1) {
fprintf(stderr, "Error opening directory: %" PRIuINUM "\n",
dir_inum);
tsk_error_print(stderr);
return 1;
}
/* These should be dynamic lengths, but this is just a sample program.
* Allocate heap space instead of stack to prevent overflow for deep
* directories. */
if ((path2 = (char *) malloc(4096)) == NULL) {
return 1;
}
if ((buf = (char *) malloc(2048)) == NULL) {
free(path2);
return 1;
}
// cycle through each entry
for (i = 0; i < fs_dir->getSize(); i++) {
TskFsFile *fs_file;
TSK_OFF_T off = 0;
size_t len = 0;
// get the entry
if ((fs_file = fs_dir->getFile(i)) == NULL) {
fprintf(stderr,
"Error getting directory entry %" PRIuSIZE
" in directory %" PRIuINUM "\n", i, dir_inum);
tsk_error_print(stderr);
free(path2);
free(buf);
return 1;
}
/* Ignore NTFS System files */
if ((TSK_FS_TYPE_ISNTFS(fs_file->getFsInfo()->getFsType())) &&
(const_cast<TskFsName *>(fs_file->getName())->getName()[0] == '$')) {
fs_file->close();
continue;
}
//printf("Processing %s/%s\n", path, fs_file->name->name);
// make sure it's got metadata and not only a name
if (fs_file->getMeta()) {
ssize_t cnt;
/* Note that we could also cycle through all of the attributes in the
* file by using one of the tsk_fs_attr_get() functions and reading it
* with tsk_fs_attr_read(). See the File Systems section of the Library
* User's Guide for more details:
* http://www.sleuthkit.org/sleuthkit/docs/api-docs/ */
// read file contents
if (fs_file->getMeta()->getType() == TSK_FS_META_TYPE_REG) {
int myflags = 0;
TSK_OFF_T fSize = fs_file->getMeta()->getSize();
for (off = 0; off < fSize; off += len) {
if (fSize - off < 2048)
len = (size_t) (fSize - off);
else
len = 2048;
cnt = fs_file->read(off, buf, len,
(TSK_FS_FILE_READ_FLAG_ENUM) myflags);
if (cnt == -1) {
// could check tsk_errno here for a recovery error (TSK_ERR_FS_RECOVER)
fprintf(stderr, "Error reading %s file: %s\n",
((fs_file->getName()->getFlags()
& TSK_FS_NAME_FLAG_UNALLOC)
|| (fs_file->getMeta()->getFlags()
& TSK_FS_META_FLAG_UNALLOC)) ?
"unallocated" : "allocated",
fs_file->getName()->getName());
tsk_error_print(stderr);
break;
}
else if (cnt != (ssize_t) len) {
fprintf(stderr,
"Warning: %" PRIuSIZE " of %" PRIuSIZE
" bytes read from %s file %s\n", cnt, len,
((fs_file->getName()->getFlags()
& TSK_FS_NAME_FLAG_UNALLOC)
|| (fs_file->getMeta()->getFlags()
& TSK_FS_META_FLAG_UNALLOC)) ?
"unallocated" : "allocated",
fs_file->getName()->getName());
}
// do something with the data...
}
}
// recurse into another directory (unless it is a '.' or '..')
else if (TSK_FS_IS_DIR_META(fs_file->getMeta()->getType())){
if (TSK_FS_ISDOT(fs_file->getName()->getName()) == 0) {
// only go in if it is not on our stack
if (tsk_stack_find(stack, fs_file->getMeta()->getAddr()) == 0) {
// add the address to the top of the stack
tsk_stack_push(stack, fs_file->getMeta()->getAddr() );
snprintf(path2, 4096, "%s/%s", path,
fs_file->getName()->getName());
if (procDir(fs_info, stack, fs_file->getMeta()->getAddr(),
path2)) {
fs_file->close();
fs_dir->close();
free(path2);
free(buf);
return 1;
}
// pop the address
tsk_stack_pop(stack);
}
}
}
}
fs_file->close();
}
fs_dir->close();
free(path2);
free(buf);
return 0;
}
/**
* Analyze the volume starting at byte offset 'start' and look
* for a file system. When found, the files will be analyzed.
*
* @param img Disk image to be analyzed.
* @param start Byte offset of volume starting location.
*
* @return 1 on error and 0 on success
*/
static uint8_t
procFs(TskImgInfo * img_info, TSK_OFF_T start)
{
TskFsInfo *fs_info = new TskFsInfo();
TSK_STACK *stack;
/* Try it as a file system */
if ((fs_info->open(img_info, start, TSK_FS_TYPE_DETECT)) == 1)
{
fprintf(stderr,
"Error opening file system in partition at offset %" PRIdOFF
"\n", start);
tsk_error_print(stderr);
/* We could do some carving on the volume data at this point */
return 1;
}
// create a stack to prevent infinite loops
stack = tsk_stack_create();
// Process the directories
if (procDir(fs_info, stack, fs_info->getRootINum(), "")) {
fprintf(stderr,
"Error processing file system in partition at offset %" PRIdOFF
"\n", start);
delete fs_info;
return 1;
}
tsk_stack_free(stack);
/* We could do some analysis of unallocated blocks at this point... */
delete fs_info;
return 0;
}
/**
* Process the data as a volume system to find the partitions
* and volumes.
* File system analysis will be performed on each partition.
*
* @param img Image file information structure for data to analyze
* @param start Byte offset to start analyzing from.
*
* @return 1 on error and 0 on success
*/
static uint8_t
procVs(TskImgInfo * img_info, TSK_OFF_T start)
{
TskVsInfo *vs_info = new TskVsInfo();
// Open the volume system
if ((vs_info->open(img_info, start, TSK_VS_TYPE_DETECT)) == 1) {
if (tsk_verbose)
fprintf(stderr,
"Error determining volume system -- trying file systems\n");
/* There was no volume system, but there could be a file system */
tsk_error_reset();
if (procFs(img_info, start)) {
return 1;
}
}
else {
fprintf(stderr, "Volume system open, examining each\n");
// cycle through the partitions
for (TSK_PNUM_T i = 0; i < vs_info->getPartCount(); i++) {
const TskVsPartInfo *vs_part;
if ((vs_part = vs_info->getPart(i)) == NULL) {
fprintf(stderr, "Error getting volume %" PRIuPNUM "\n", i);
continue;
}
// ignore the metadata partitions
if (const_cast<TskVsPartInfo *>(vs_part)->getFlags() & TSK_VS_PART_FLAG_META)
continue;
// could do something with unallocated volumes
else if (const_cast<TskVsPartInfo *>(vs_part)->getFlags() & TSK_VS_PART_FLAG_UNALLOC) {
}
else {
if (procFs(img_info,
const_cast<TskVsPartInfo *>(vs_part)->getStart() * vs_info->getBlockSize())) {
// We could do more fancy error checking here to see the cause
// of the error or consider the allocation status of the volume...
tsk_error_reset();
}
}
}
vs_info->close();
}
return 0;
}
int
main(int argc, char **argv1)
{
TskImgInfo *img_info = new TskImgInfo();
TSK_TCHAR **argv;
#ifdef TSK_WIN32
// On Windows, get the wide arguments (mingw doesn't support wmain)
argv = CommandLineToArgvW(GetCommandLineW(), &argc);
if (argv == NULL) {
fprintf(stderr, "Error getting wide arguments\n");
exit(1);
}
#else
argv = (TSK_TCHAR **) argv1;
#endif
if (argc != 2) {
fprintf(stderr, "Missing image name\n");
exit(1);
}
// open the disk image
img_info->open((const TSK_TCHAR *) argv[1],
TSK_IMG_TYPE_DETECT, 0);
if (img_info == NULL) {
fprintf(stderr, "Error opening file\n");
tsk_error_print(stderr);
exit(1);
}
// process the volume starting at sector 0
if (procVs(img_info, 0)) {
tsk_error_print(stderr);
delete img_info;
exit(1);
}
// close the image
delete img_info;
return 0;
}
|