Mercurial > libpst
view src/libstrfunc.c @ 359:a3e674fade6c
From Jeffrey Morlan:
pst_parse_block misreads Table Contexts (aka "type 2") with a
multi-block Row Matrix ("ind2"). Rows are never split between blocks -
every block except the last has padding at the end which should be
ignored. I've only seen this affect the recipients table, but
presumably it could affect attachments too. This was causing
out-of-bounds memory ranges to be returned from pst_getBlockOffset and
later access; patch fixes both the table reading issue and adds a
missing bounds check to pst_getBlockOffset (so as not to risk a
segfault if the PST is corrupted).
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 06 Jul 2016 10:20:12 -0700 |
parents | c947b8812120 |
children |
line wrap: on
line source
/* Taken from LibStrfunc v7.3 */ #include "define.h" static char base64_code_chars[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=="; static void base64_append(char **ou, int *line_count, char data); static void base64_append(char **ou, int *line_count, char data) { if (*line_count == 76) { *(*ou)++ = '\n'; *line_count = 0; } *(*ou)++ = data; if (*line_count >= 0) (*line_count)++; } char *pst_base64_encode(void *data, size_t size) { int line_count = 0; return pst_base64_encode_multiple(data, size, &line_count); } char *pst_base64_encode_single(void *data, size_t size) { int line_count = -1; return pst_base64_encode_multiple(data, size, &line_count); } char *pst_base64_encode_multiple(void *data, size_t size, int *line_count) { char *output; char *ou; unsigned char *p = (unsigned char *)data; unsigned char *dte = p + size; if (data == NULL || size == 0) return NULL; ou = output = (char *)malloc(size / 3 * 4 + (size / 57) + 6); if (!output) return NULL; while((dte-p) >= 3) { unsigned char x = p[0]; unsigned char y = p[1]; unsigned char z = p[2]; base64_append(&ou, line_count, base64_code_chars[ x >> 2 ]); base64_append(&ou, line_count, base64_code_chars[ ((x & 0x03) << 4) | (y >> 4) ]); base64_append(&ou, line_count, base64_code_chars[ ((y & 0x0F) << 2) | (z >> 6) ]); base64_append(&ou, line_count, base64_code_chars[ z & 0x3F ]); p+=3; }; if ((dte-p) == 2) { base64_append(&ou, line_count, base64_code_chars[ *p >> 2 ]); base64_append(&ou, line_count, base64_code_chars[ ((*p & 0x03) << 4) | (p[1] >> 4) ]); base64_append(&ou, line_count, base64_code_chars[ ((p[1] & 0x0F) << 2) ]); base64_append(&ou, line_count, '='); } else if ((dte-p) == 1) { base64_append(&ou, line_count, base64_code_chars[ *p >> 2 ]); base64_append(&ou, line_count, base64_code_chars[ ((*p & 0x03) << 4) ]); base64_append(&ou, line_count, '='); base64_append(&ou, line_count, '='); }; *ou=0; return output; };