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
|
/*
* The Sleuth Kit
*
* Brian Carrier [carrier <at> sleuthkit [dot] org]
* Copyright (c) 2006-2008 Brian Carrier. All Rights reserved
*
* This software is distributed under the Common Public License 1.0
*/
#include "tsk_base_i.h"
/**
* \file tsk_error.c
* Contains the error handling code and variables.
*/
/* Global variables that fit here as well as anywhere */
char *progname = "unknown";
int tsk_verbose = 0;
/**
* \ingroup baselib
* Set when an error occurs and contains the error code.
*/
uint32_t tsk_errno = 0;
/* \internal
* Contains an error-specific string and is valid only
* when tsk_errno is set. This should be set when errno is set,
* if it is not needed, then set tsk_errstr[0] to '\0'. */
char tsk_errstr[TSK_ERRSTR_L];
/* \internal
* Contains a caller-specific string and is valid only when tsk_errno is set
*
* This is typically set to start with a NULL char when errno is set and then set with
* a string by the code that called the
* function that had the error. For
* example, the X_read() function may set why
* the read failed in tsk_errstr and the
* function that called X_read() can provide
* more context about why X_read() was
* called in the first place
*/
char tsk_errstr2[TSK_ERRSTR_L];
/* \internal
* Buffer used to store the printed message formed by tsk_errstr and tsk_errstr2 */
char tsk_errstr_print[TSK_ERRSTR_PR_L];
/* Error messages */
static const char *tsk_err_aux_str[TSK_ERR_IMG_MAX] = {
"Insufficient memory",
""
};
/* imagetools specific error strings */
static const char *tsk_err_img_str[TSK_ERR_IMG_MAX] = {
"Missing image file names", // 0
"Invalid image offset",
"Cannot determine image type",
"Unsupported image type",
"Error opening image file",
"Error stat(ing) image file", // 5
"Error seeking in image file",
"Error reading image file",
"Read offset too large for image file",
"Invalid API argument",
"Invalid magic value", // 10
"Error writing data",
"Error converting file name",
"Incorrect or missing password"
};
static const char *tsk_err_mm_str[TSK_ERR_VS_MAX] = {
"Cannot determine partition type", // 0
"Unsupported partition type",
"Error reading image file",
"Invalid magic value",
"Invalid walk range",
"Invalid buffer size", // 5
"Invalid sector address",
"Invalid API argument",
};
static const char *tsk_err_fs_str[TSK_ERR_FS_MAX] = {
"Cannot determine file system type", // 0
"Unsupported file system type",
"Function/Feature not supported",
"Invalid walk range",
"Error reading image file",
"Invalid file offset", // 5
"Invalid API argument",
"Invalid block address",
"Invalid metadata address",
"Error in metadata structure",
"Invalid magic value", // 10
"Error extracting file from image",
"Error writing data",
"Error converting Unicode",
"Error recovering deleted file",
"General file system error", // 15
"File system is corrupt",
"Attribute not found in file",
};
static const char *tsk_err_hdb_str[TSK_ERR_HDB_MAX] = {
"Cannot determine hash database type", // 0
"Unsupported hash database type",
"Error reading hash database file",
"Error reading hash database index",
"Invalid argument",
"Error writing data", // 5
"Error creating file",
"Error deleting file",
"Missing file",
"Error creating process",
"Error opening file", // 10
"Corrupt hash database"
};
static const char *tsk_err_auto_str[TSK_ERR_AUTO_MAX] = {
"Database Error",
"Corrupt file data",
"Error converting Unicode",
"Image not opened yet"
};
/**
* \ingroup baselib
* Return the string with the current error message. The string does not end with a
* newline.
*
* @returns String with error message or NULL if there is no error
*/
const char *
tsk_error_get()
{
size_t pidx = 0;
if (tsk_errno == 0)
return NULL;
memset(tsk_errstr_print, 0, TSK_ERRSTR_PR_L);
if (tsk_errno & TSK_ERR_AUX) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_AUX_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_aux_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"auxtools error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else if (tsk_errno & TSK_ERR_IMG) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_IMG_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_img_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"imgtools error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else if (tsk_errno & TSK_ERR_VS) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_VS_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_mm_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"mmtools error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else if (tsk_errno & TSK_ERR_FS) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_FS_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_fs_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"fstools error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else if (tsk_errno & TSK_ERR_HDB) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_HDB_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_hdb_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"hashtools error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else if (tsk_errno & TSK_ERR_AUTO) {
if ((TSK_ERR_MASK & tsk_errno) < TSK_ERR_AUTO_MAX)
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"%s", tsk_err_auto_str[tsk_errno & TSK_ERR_MASK]);
else
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"auto error: %" PRIu32, TSK_ERR_MASK & tsk_errno);
}
else {
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
"Unknown Error: %" PRIu32, tsk_errno);
}
pidx = strlen(tsk_errstr_print);
/* Print the unique string, if it exists */
if (tsk_errstr[0] != '\0') {
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
" (%s)", tsk_errstr);
pidx = strlen(tsk_errstr_print);
}
if (tsk_errstr2[0] != '\0') {
snprintf(&tsk_errstr_print[pidx], TSK_ERRSTR_PR_L - pidx,
" (%s)", tsk_errstr2);
pidx = strlen(tsk_errstr_print);
}
return (char *) &tsk_errstr_print[0];
}
/**
* \ingroup baselib
* Print the current error message to a file.
*
* @param hFile File to print message to
*/
void
tsk_error_print(FILE * hFile)
{
const char *str;
if (tsk_errno == 0)
return;
str = tsk_error_get();
if (str != NULL) {
tsk_fprintf(hFile, "%s\n", str);
}
else {
tsk_fprintf(hFile,
"Error creating Sleuth Kit error string (Errno: %d)\n",
tsk_errno);
}
}
/**
* \ingroup baselib
* Clear the error number and error message.
*/
void
tsk_error_reset()
{
tsk_errno = 0;
tsk_errstr[0] = '\0';
tsk_errstr2[0] = '\0';
}
|