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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/*
* System functions
*
* Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program 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 3 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 Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <memory.h>
#include <narrow_string.h>
#include <system_string.h>
#include <types.h>
#include <wide_string.h>
#if defined( HAVE_STDLIB_H ) || defined( WINAPI )
#include <stdlib.h>
#endif
#if defined( HAVE_STRING_H ) || defined( WINAPI )
#include <string.h>
#endif
#if defined( HAVE_STDARG_H ) || defined( WINAPI )
#include <stdarg.h>
#elif defined( HAVE_VARARGS_H )
#include <varargs.h>
#else
#error Missing headers stdarg.h and varargs.h
#endif
#include "libcerror_definitions.h"
#include "libcerror_error.h"
#include "libcerror_system.h"
#include "libcerror_types.h"
#if defined( WINAPI )
/* The make language identifier macro for the WINAPI FormatMessage function
*/
#if !defined( MAKELANGID )
#define MAKELANGID( primary_language_identifier, sub_language_identifier ) \
( ( ( (WORD) ( sub_language_identifier ) ) << 10 ) | (WORD) ( primary_language_identifier ) )
#endif
#if !defined( LANG_NEUTRAL )
#define LANG_NEUTRAL 0
#endif
#if !defined( SUBLANG_DEFAULT )
#define SUBLANG_DEFAULT 1
#endif
#endif /* defined( WINAPI ) */
#if defined( WINAPI ) && ( WINVER <= 0x0500 )
/* Cross Windows safe version of FormatMessageA
* Returns the number of printed characters without the end-of-string character or 0 on error
*/
DWORD libcerror_FormatMessageA(
DWORD flags,
LPCVOID source,
DWORD message_identifier,
DWORD language_identifier,
LPCSTR string,
DWORD string_size,
va_list *argument_list )
{
FARPROC function = NULL;
HMODULE library_handle = NULL;
DWORD print_count = 0;
if( string == NULL )
{
return( 0 );
}
library_handle = LoadLibrary(
_SYSTEM_STRING( "kernel32.dll" ) );
if( library_handle == NULL )
{
return( 0 );
}
function = GetProcAddress(
library_handle,
(LPCSTR) "FormatMessageA" );
if( function != NULL )
{
print_count = function(
flags,
source,
message_identifier,
language_identifier,
string,
string_size,
argument_list );
}
/* This call should be after using the function
* in most cases kernel32.dll will still be available after free
*/
if( FreeLibrary(
library_handle ) != TRUE )
{
print_count = 0;
}
return( print_count );
}
/* Cross Windows safe version of FormatMessageW
* Returns the number of printed characters without the end-of-string character or 0 on error
*/
DWORD libcerror_FormatMessageW(
DWORD flags,
LPCVOID source,
DWORD message_identifier,
DWORD language_identifier,
LPWSTR string,
DWORD string_size,
va_list *argument_list )
{
FARPROC function = NULL;
HMODULE library_handle = NULL;
DWORD print_count = 0;
if( string == NULL )
{
return( 0 );
}
library_handle = LoadLibrary(
_SYSTEM_STRING( "kernel32.dll" ) );
if( library_handle == NULL )
{
return( 0 );
}
function = GetProcAddress(
library_handle,
(LPCSTR) "FormatMessageW" );
if( function != NULL )
{
print_count = function(
flags,
source,
message_identifier,
language_identifier,
string,
string_size,
argument_list );
}
/* This call should be after using the function
* in most cases kernel32.dll will still be available after free
*/
if( FreeLibrary(
library_handle ) != TRUE )
{
print_count = 0;
}
return( print_count );
}
#endif /* defined( WINAPI ) && ( WINVER <= 0x0500 ) */
#if defined( WINAPI )
#if ( WINVER <= 0x0500 )
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
#define libcerror_system_FormatMessage libcerror_FormatMessageW
#else
#define libcerror_system_FormatMessage libcerror_FormatMessageA
#endif
#else
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
#define libcerror_system_FormatMessage FormatMessageW
#else
#define libcerror_system_FormatMessage FormatMessageA
#endif
#endif /* ( WINVER <= 0x0500 ) */
/* Retrieves a descriptive string of the error number
* This function uses the WINAPI functions for Windows XP or later
* Returns the string_length if successful or -1 on error
*/
int libcerror_system_copy_string_from_error_number(
system_character_t *string,
size_t string_size,
uint32_t error_number )
{
DWORD print_count = 0;
if( string == NULL )
{
return( -1 );
}
if( string_size > (size_t) INT_MAX )
{
return( -1 );
}
print_count = libcerror_system_FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
(DWORD) error_number,
MAKELANGID(
LANG_NEUTRAL,
SUBLANG_DEFAULT ),
string,
(DWORD) string_size,
NULL );
if( print_count == 0 )
{
return( -1 );
}
return( (int) print_count );
}
#elif defined( HAVE_STRERROR_R )
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
#error Missing wide character strerror_r function
#endif
/* Retrieves a descriptive string of the error number
* This function uses the POSIX strerror_r function or equivalent
* Returns the string_length if successful or -1 on error
*/
int libcerror_system_copy_string_from_error_number(
system_character_t *string,
size_t string_size,
uint32_t error_number )
{
size_t string_length = 0;
if( string == NULL )
{
return( -1 );
}
if( string_size > (size_t) INT_MAX )
{
return( -1 );
}
#if defined( STRERROR_R_CHAR_P )
if( strerror_r(
(int) error_number,
string,
string_size ) == NULL )
#else
if( strerror_r(
(int) error_number,
string,
string_size ) != 0 )
#endif
{
return( -1 );
}
string[ string_size - 1 ] = (system_character_t) 0;
string_length = system_string_length(
string );
return( (int) string_length );
}
#elif defined( HAVE_STRERROR )
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
#error Missing wide character strerror function
#endif
/* Retrieves a descriptive string of the error number
* This function uses the POSIX strerror function or equivalent
* Returns the string_length if successful or -1 on error
*/
int libcerror_system_copy_string_from_error_number(
system_character_t *string,
size_t string_size,
uint32_t error_number )
{
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
const wchar_t *static_error_string = NULL;
#else
const char *static_error_string = NULL;
#endif
size_t static_error_string_length = 0;
if( string == NULL )
{
return( -1 );
}
if( string_size > (size_t) INT_MAX )
{
return( -1 );
}
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
static_error_string = _wcserror(
(int) error_number );
#else
static_error_string = strerror(
(int) error_number );
#endif
if( static_error_string == NULL )
{
return( -1 );
}
static_error_string_length = system_string_length(
static_error_string );
if( system_string_copy(
string,
static_error_string,
static_error_string_length ) == NULL )
{
return( -1 );
}
string[ static_error_string_length ] = 0;
return( (int) static_error_string_length );
}
#else
#error Missing error to string system function
#endif
#if defined( HAVE_STDARG_H ) || defined( WINAPI )
#define VARARGS( function, error, error_domain, error_code, system_error_code, type, argument ) \
function( error, error_domain, error_code, system_error_code, type argument, ... )
#define VASTART( argument_list, type, name ) \
va_start( argument_list, name )
#define VAEND( argument_list ) \
va_end( argument_list )
#elif defined( HAVE_VARARGS_H )
#define VARARGS( function, error, error_domain, error_code, system_error_code, type, argument ) \
function( error, error_domain, error_code, system_error_code, va_alist ) va_dcl
#define VASTART( argument_list, type, name ) \
{ type name; va_start( argument_list ); name = va_arg( argument_list, type )
#define VAEND( argument_list ) \
va_end( argument_list ); }
#endif
/* Sets an error and adds a system specific error string if possible
* Creates the error if necessary
* The error domain and code are set only the first time and the error message is appended for back tracing
*/
void VARARGS(
libcerror_system_set_error,
libcerror_error_t **error,
int error_domain,
int error_code,
uint32_t system_error_code,
const char *,
format_string )
{
va_list argument_list;
libcerror_internal_error_t *internal_error = NULL;
system_character_t *error_string = NULL;
system_character_t *system_format_string = NULL;
void *reallocation = NULL;
size_t error_string_size = 0;
size_t format_string_length = 0;
size_t message_size = 0;
size_t next_message_size = LIBCERROR_MESSAGE_INCREMENT_SIZE;
size_t string_index = 0;
int message_index = 0;
int print_count = 0;
if( error == NULL )
{
return;
}
if( format_string == NULL )
{
return;
}
format_string_length = narrow_string_length(
format_string );
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
libcerror_error_get_system_format_string(
format_string,
format_string_length,
&system_format_string );
if( system_format_string == NULL )
{
return;
}
#else
system_format_string = (system_character_t *) format_string;
#endif
if( *error == NULL )
{
if( libcerror_error_initialize(
error,
error_domain,
error_code ) != 1 )
{
goto on_error;
}
}
internal_error = (libcerror_internal_error_t *) *error;
if( libcerror_error_resize(
internal_error ) != 1 )
{
goto on_error;
}
if( format_string_length > next_message_size )
{
next_message_size = ( ( format_string_length / LIBCERROR_MESSAGE_INCREMENT_SIZE ) + 1 )
* LIBCERROR_MESSAGE_INCREMENT_SIZE;
}
do
{
if( next_message_size >= LIBCERROR_MESSAGE_MAXIMUM_SIZE )
{
next_message_size = LIBCERROR_MESSAGE_MAXIMUM_SIZE;
}
reallocation = memory_reallocate(
error_string,
sizeof( system_character_t ) * next_message_size );
if( reallocation == NULL )
{
memory_free(
error_string );
goto on_error;
}
error_string = (system_character_t *) reallocation;
message_size = next_message_size;
/* argument_list cannot be reused in successive calls to vsnprintf
*/
VASTART(
argument_list,
const char *,
format_string );
print_count = system_string_vsnprintf(
error_string,
message_size,
system_format_string,
argument_list );
VAEND(
argument_list );
if( print_count <= -1 )
{
next_message_size += LIBCERROR_MESSAGE_INCREMENT_SIZE;
}
else if( ( (size_t) print_count >= message_size )
|| ( error_string[ print_count ] != (system_character_t) 0 ) )
{
next_message_size = (size_t) ( print_count + 1 );
print_count = -1;
}
else
{
error_string_size = (size_t) print_count + 1;
}
if( message_size >= LIBCERROR_MESSAGE_MAXIMUM_SIZE )
{
break;
}
}
while( print_count <= -1 );
if( message_size >= LIBCERROR_MESSAGE_MAXIMUM_SIZE )
{
error_string[ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 4 ] = (system_character_t) '.';
error_string[ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 3 ] = (system_character_t) '.';
error_string[ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 2 ] = (system_character_t) '.';
error_string[ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 1 ] = 0;
error_string_size = (size_t) LIBCERROR_MESSAGE_MAXIMUM_SIZE;
}
message_index = internal_error->number_of_messages - 1;
internal_error->messages[ message_index ] = error_string;
internal_error->sizes[ message_index ] = error_string_size;
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
memory_free(
system_format_string );
system_format_string = NULL;
#endif
message_size = internal_error->sizes[ message_index ];
if( message_size < LIBCERROR_MESSAGE_MAXIMUM_SIZE )
{
/* TODO move to separate helper function */
string_index = internal_error->sizes[ message_index ] - 1;
if( ( internal_error->messages[ message_index ] != NULL )
&& ( ( internal_error->messages[ message_index ] )[ string_index - 1 ] == (system_character_t) '.' ) )
{
string_index -= 1;
}
reallocation = memory_reallocate(
internal_error->messages[ message_index ],
sizeof( system_character_t ) * ( message_size + 13 + 512 ) );
if( reallocation == NULL )
{
memory_free(
internal_error->messages[ message_index ] );
internal_error->messages[ message_index ] = NULL;
goto on_error;
}
internal_error->messages[ message_index ] = (system_character_t *) reallocation;
if( system_string_copy(
&( ( internal_error->messages[ message_index ] )[ string_index ] ),
_SYSTEM_STRING( " with error: " ),
13 ) == NULL )
{
memory_free(
internal_error->messages[ message_index ] );
internal_error->messages[ message_index ] = NULL;
goto on_error;
}
internal_error->sizes[ message_index ] += 13;
string_index += 13;
print_count = libcerror_system_copy_string_from_error_number(
&( ( internal_error->messages[ message_index ] )[ string_index ] ),
512,
system_error_code );
if( print_count == -1 )
{
goto on_error;
}
internal_error->sizes[ message_index ] += print_count;
}
if( internal_error->sizes[ message_index ] >= LIBCERROR_MESSAGE_MAXIMUM_SIZE )
{
internal_error->messages[ message_index ][ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 4 ] = (system_character_t) '.';
internal_error->messages[ message_index ][ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 3 ] = (system_character_t) '.';
internal_error->messages[ message_index ][ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 2 ] = (system_character_t) '.';
internal_error->messages[ message_index ][ LIBCERROR_MESSAGE_MAXIMUM_SIZE - 1 ] = 0;
internal_error->sizes[ message_index ] = (size_t) LIBCERROR_MESSAGE_MAXIMUM_SIZE;
}
return;
on_error:
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
if( system_format_string != NULL )
{
memory_free(
system_format_string );
}
#endif
return;
}
#undef VARARGS
#undef VASTART
#undef VAEND
|