fix segfaults casused by size_t format specifier

win32/msvc cc does not recognize the %z format specifier which caused
invalid references and segfaults on win32.
Until FreeRDP gets format specifier macros we'll cast size_t to
unsigned long and use the %lu specifier.

Also simplified winpr_backtrace_symbols() a little bit and fixed it
to allocate the correct amount of bytes for the return buffer.
This commit is contained in:
Norbert Federa 2016-05-27 15:53:49 +02:00
parent 00dd6f8c51
commit e8c4910e2e
6 changed files with 33 additions and 42 deletions

View File

@ -25,7 +25,7 @@ static BOOL similar(const BYTE* src, const BYTE* dst, size_t size)
if (abs(diff) > 2) if (abs(diff) > 2)
{ {
fprintf(stderr, "%zd %02X : %02X diff=%lf\n", x, val1, val2, diff); fprintf(stderr, "%lu %02X : %02X diff=%lf\n", (unsigned long)x, val1, val2, diff);
return FALSE; return FALSE;
} }
} }
@ -66,8 +66,8 @@ static BOOL check_padding(const BYTE* psrc, size_t size, size_t padding, const c
while((x < halfPad) && (*esrc++ != 'A')) while((x < halfPad) && (*esrc++ != 'A'))
x++; x++;
fprintf(stderr, "Buffer underflow detected %02x != %02X %s [%zd-%zd]\n", fprintf(stderr, "Buffer underflow detected %02x != %02X %s [%lu-%lu]\n",
d, 'A', buffer, start, x); d, 'A', buffer, (unsigned long)start, (unsigned long)x);
return FALSE; return FALSE;
} }
if(d != 'A') if(d != 'A')
@ -76,8 +76,8 @@ static BOOL check_padding(const BYTE* psrc, size_t size, size_t padding, const c
while((x < halfPad) && (*esrc++ != 'A')) while((x < halfPad) && (*esrc++ != 'A'))
x++; x++;
fprintf(stderr, "Buffer overflow detected %02x != %02X %s [%zd-%zd]\n", fprintf(stderr, "Buffer overflow detected %02x != %02X %s [%lu-%lu]\n",
d, 'A', buffer, start, x); d, 'A', buffer, (unsigned long)start, (unsigned long)x);
return FALSE; return FALSE;
} }
} }

View File

@ -357,25 +357,22 @@ char** winpr_backtrace_symbols(void* buffer, size_t* used)
{ {
size_t line_len = (data->max > 1024) ? data->max : 1024; size_t line_len = (data->max > 1024) ? data->max : 1024;
size_t i; size_t i;
char* lines = calloc(data->used + 1, sizeof(char *) * line_len); size_t array_size = data->used * sizeof(char*);
char** vlines = (char**) lines; size_t lines_size = data->used * line_len;
char **vlines = calloc(1, array_size + lines_size);
backtrace_symbol_t* symbols = calloc(data->used, sizeof(backtrace_symbol_t)); backtrace_symbol_t* symbols = calloc(data->used, sizeof(backtrace_symbol_t));
if (!lines || !symbols) if (!vlines || !symbols)
{ {
if (lines) free(vlines);
free(lines); free(symbols);
if (symbols)
free(symbols);
return NULL; return NULL;
} }
/* To allow a char** malloced array to be returned, allocate n+1 lines /* Set the pointers in the allocated buffer's initial array section */
* and fill in the first lines[i] char with the address of lines[(i+1) * 1024] */
for (i = 0; i < data->used; i++) for (i = 0; i < data->used; i++)
vlines[i] = &lines[(i + 1) * line_len]; vlines[i] = (char*)vlines + array_size + i * line_len;
fkt->get_backtrace_symbols(data->buffer, data->used, symbols); fkt->get_backtrace_symbols(data->buffer, data->used, symbols);
@ -388,7 +385,7 @@ char** winpr_backtrace_symbols(void* buffer, size_t* used)
if (used) if (used)
*used = data->used; *used = data->used;
return (char**) lines; return vlines;
} }
#elif (defined(_WIN32) || defined(_WIN64)) && !defined(_UWP) #elif (defined(_WIN32) || defined(_WIN64)) && !defined(_UWP)
{ {
@ -396,22 +393,17 @@ char** winpr_backtrace_symbols(void* buffer, size_t* used)
size_t line_len = 1024; size_t line_len = 1024;
HANDLE process = GetCurrentProcess(); HANDLE process = GetCurrentProcess();
t_win_stack* data = (t_win_stack*) buffer; t_win_stack* data = (t_win_stack*) buffer;
char *lines = calloc(data->used + 1, sizeof(char*) * line_len); size_t array_size = data->used * sizeof(char*);
char **vlines = (char**) lines; size_t lines_size = data->used * line_len;
char **vlines = calloc(1, array_size + lines_size);
SYMBOL_INFO* symbol = calloc(sizeof(SYMBOL_INFO) + line_len * sizeof(char), 1); SYMBOL_INFO* symbol = calloc(sizeof(SYMBOL_INFO) + line_len * sizeof(char), 1);
IMAGEHLP_LINE64* line = (IMAGEHLP_LINE64*) calloc(1, sizeof(IMAGEHLP_LINE64)); IMAGEHLP_LINE64* line = (IMAGEHLP_LINE64*) calloc(1, sizeof(IMAGEHLP_LINE64));
if (!lines || !symbol || !line) if (!vlines || !symbol || !line)
{ {
if (lines) free(vlines);
free(lines); free(symbol);
free(line);
if (symbol)
free(symbol);
if (line)
free(line);
return NULL; return NULL;
} }
@ -419,10 +411,9 @@ char** winpr_backtrace_symbols(void* buffer, size_t* used)
symbol->MaxNameLen = line_len; symbol->MaxNameLen = line_len;
symbol->SizeOfStruct = sizeof(SYMBOL_INFO); symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
/* To allow a char** malloced array to be returned, allocate n+1 lines /* Set the pointers in the allocated buffer's initial array section */
* and fill in the first lines[i] char with the address of lines[(i+1) * 1024] */
for (i = 0; i < data->used; i++) for (i = 0; i < data->used; i++)
vlines[i] = &lines[(i + 1) * line_len]; vlines[i] = (char*)vlines + array_size + i * line_len;
for (i = 0; i < data->used; i++) for (i = 0; i < data->used; i++)
{ {
@ -445,7 +436,7 @@ char** winpr_backtrace_symbols(void* buffer, size_t* used)
free(symbol); free(symbol);
free(line); free(line);
return (char**) lines; return vlines;
} }
#else #else
LOGF(support_msg); LOGF(support_msg);
@ -504,7 +495,7 @@ void winpr_log_backtrace(const char* tag, DWORD level, DWORD size)
if (msg) if (msg)
{ {
for (x=0; x<used; x++) for (x=0; x<used; x++)
WLog_LVL(tag, level, "%zd: %s\n", x, msg[x]); WLog_LVL(tag, level, "%lu: %s\n", (unsigned long)x, msg[x]);
} }
winpr_backtrace_free(stack); winpr_backtrace_free(stack);
} }

View File

@ -43,7 +43,7 @@ void winpr_HexDump(const char* tag, UINT32 level, const BYTE* data, int length)
if (!buffer) if (!buffer)
{ {
WLog_ERR(tag, "malloc(%zd) failed with [%d] %s", blen, errno, strerror(errno)); WLog_ERR(tag, "malloc(%lu) failed with [%d] %s", (unsigned long)blen, errno, strerror(errno));
return; return;
} }
@ -84,7 +84,7 @@ void winpr_CArrayDump(const char* tag, UINT32 level, const BYTE* data, int lengt
if (!buffer) if (!buffer)
{ {
WLog_ERR(tag, "malloc(%zd) failed with [%d] %s", llen, errno, strerror(errno)); WLog_ERR(tag, "malloc(%lu) failed with [%d] %s", (unsigned long)llen, errno, strerror(errno));
return; return;
} }

View File

@ -17,7 +17,7 @@ int TestBacktrace(int argc, char* argv[])
if (msg) if (msg)
{ {
for (x=0; x<used; x++) for (x=0; x<used; x++)
printf("%zd: %s\n", x, msg[x]); printf("%lu: %s\n", (unsigned long)x, msg[x]);
rc = 0; rc = 0;
} }
winpr_backtrace_symbols_fd(stack, fileno(stdout)); winpr_backtrace_symbols_fd(stack, fileno(stdout));

View File

@ -14,7 +14,7 @@ static void *read_image(const char *src, size_t *size)
int success = 0; int success = 0;
void *a = NULL; void *a = NULL;
long src_size; long src_size;
FILE *fsrc = fopen(src, "r"); FILE *fsrc = fopen(src, "rb");
if (!fsrc) if (!fsrc)
{ {
@ -40,13 +40,13 @@ static void *read_image(const char *src, size_t *size)
if (!a) if (!a)
{ {
fprintf(stderr, "Failed malloc %zd bytes\n", src_size); fprintf(stderr, "Failed malloc %ld bytes\n", src_size);
goto cleanup; goto cleanup;
} }
if (fread(a, sizeof(char), src_size, fsrc) != src_size) if (fread(a, sizeof(char), src_size, fsrc) != src_size)
{ {
fprintf(stderr, "Failed read %zd bytes\n", src_size); fprintf(stderr, "Failed read %ld bytes\n", src_size);
goto cleanup; goto cleanup;
} }

View File

@ -104,7 +104,7 @@ static BOOL log_recursion(LPCSTR file, LPCSTR fkt, int line)
return FALSE; return FALSE;
for (i=0; i<used; i++) for (i=0; i<used; i++)
if (fprintf(stderr, "%s: %zd: %s\n", fkt, i, msg[i]) < 0) if (fprintf(stderr, "%s: %lu: %s\n", fkt, (unsigned long)i, msg[i]) < 0)
return FALSE; return FALSE;
#endif #endif