pcapng: don't leak block option strings

I *think* I got all the cases; I got most of them, at any rate, and enough to
shut up valgrind in all the test cases I ran.

Change-Id: I393bac0756f577b65e400b792f6719fa6ec4056a
Reviewed-on: https://code.wireshark.org/review/4244
Reviewed-by: Michael Mann <mmann78@netscape.net>
Reviewed-by: Evan Huus <eapache@gmail.com>
This commit is contained in:
Evan Huus 2014-09-22 07:43:14 -04:00
parent ec5915a6d7
commit 1db95f7e4d
3 changed files with 26 additions and 2 deletions

View File

@ -490,6 +490,15 @@ pcapng_read_option(FILE_T fh, pcapng_t *pn, pcapng_option_header_t *oh,
} }
static void
pcapng_free_wtapng_block_data(wtapng_block_t *wblock)
{
g_free(wblock->data.section.opt_comment);
g_free(wblock->data.section.shb_hardware);
g_free(wblock->data.section.shb_os);
g_free(wblock->data.section.shb_user_appl);
}
static int static int
pcapng_read_section_header_block(FILE_T fh, gboolean first_block, pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
pcapng_block_header_t *bh, pcapng_t *pn, pcapng_block_header_t *bh, pcapng_t *pn,
@ -622,7 +631,7 @@ pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
/* Option defaults */ /* Option defaults */
wblock->data.section.opt_comment = NULL; wblock->data.section.opt_comment = NULL;
wblock->data.section.shb_hardware = NULL; wblock->data.section.shb_hardware = NULL;
wblock->data.section.shb_os = NULL; wblock->data.section.shb_os = NULL;
wblock->data.section.shb_user_appl = NULL; wblock->data.section.shb_user_appl = NULL;
/* Options */ /* Options */
@ -659,6 +668,7 @@ pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
break; break;
case(OPT_COMMENT): case(OPT_COMMENT):
if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) { if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) {
g_free(wblock->data.section.opt_comment);
wblock->data.section.opt_comment = g_strndup(option_content, oh.option_length); wblock->data.section.opt_comment = g_strndup(option_content, oh.option_length);
pcapng_debug1("pcapng_read_section_header_block: opt_comment %s", wblock->data.section.opt_comment); pcapng_debug1("pcapng_read_section_header_block: opt_comment %s", wblock->data.section.opt_comment);
} else { } else {
@ -667,6 +677,7 @@ pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
break; break;
case(OPT_SHB_HARDWARE): case(OPT_SHB_HARDWARE):
if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) { if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) {
g_free(wblock->data.section.shb_hardware);
wblock->data.section.shb_hardware = g_strndup(option_content, oh.option_length); wblock->data.section.shb_hardware = g_strndup(option_content, oh.option_length);
pcapng_debug1("pcapng_read_section_header_block: shb_hardware %s", wblock->data.section.shb_hardware); pcapng_debug1("pcapng_read_section_header_block: shb_hardware %s", wblock->data.section.shb_hardware);
} else { } else {
@ -675,6 +686,7 @@ pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
break; break;
case(OPT_SHB_OS): case(OPT_SHB_OS):
if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) { if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) {
g_free(wblock->data.section.shb_os);
wblock->data.section.shb_os = g_strndup(option_content, oh.option_length); wblock->data.section.shb_os = g_strndup(option_content, oh.option_length);
pcapng_debug1("pcapng_read_section_header_block: shb_os %s", wblock->data.section.shb_os); pcapng_debug1("pcapng_read_section_header_block: shb_os %s", wblock->data.section.shb_os);
} else { } else {
@ -683,6 +695,7 @@ pcapng_read_section_header_block(FILE_T fh, gboolean first_block,
break; break;
case(OPT_SHB_USERAPPL): case(OPT_SHB_USERAPPL):
if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) { if (oh.option_length > 0 && oh.option_length < opt_cont_buf_len) {
g_free(wblock->data.section.shb_user_appl);
wblock->data.section.shb_user_appl = g_strndup(option_content, oh.option_length); wblock->data.section.shb_user_appl = g_strndup(option_content, oh.option_length);
pcapng_debug1("pcapng_read_section_header_block: shb_user_appl %s", wblock->data.section.shb_user_appl); pcapng_debug1("pcapng_read_section_header_block: shb_user_appl %s", wblock->data.section.shb_user_appl);
} else { } else {
@ -2225,6 +2238,7 @@ pcapng_open(wtap *wth, int *err, gchar **err_info)
/* read first block */ /* read first block */
bytes_read = pcapng_read_block(wth->fh, TRUE, &pn, &wblock, err, err_info); bytes_read = pcapng_read_block(wth->fh, TRUE, &pn, &wblock, err, err_info);
if (bytes_read <= 0) { if (bytes_read <= 0) {
pcapng_free_wtapng_block_data(&wblock);
if (bytes_read == -2) { if (bytes_read == -2) {
pcapng_debug0("pcapng_open: doesn't begin with SHB, probably not a pcap-ng file"); pcapng_debug0("pcapng_open: doesn't begin with SHB, probably not a pcap-ng file");
return 0; return 0;
@ -2243,6 +2257,7 @@ pcapng_open(wtap *wth, int *err, gchar **err_info)
* binary data? * binary data?
*/ */
pcapng_debug1("pcapng_open: first block type %u not SHB", wblock.type); pcapng_debug1("pcapng_open: first block type %u not SHB", wblock.type);
pcapng_free_wtapng_block_data(&wblock);
return 0; return 0;
} }
pn.shb_read = TRUE; pn.shb_read = TRUE;
@ -2304,10 +2319,12 @@ pcapng_open(wtap *wth, int *err, gchar **err_info)
bytes_read = pcapng_read_block(wth->fh, FALSE, &pn, &wblock, err, err_info); bytes_read = pcapng_read_block(wth->fh, FALSE, &pn, &wblock, err, err_info);
if (bytes_read == 0) { if (bytes_read == 0) {
pcapng_debug0("No more IDBs available..."); pcapng_debug0("No more IDBs available...");
pcapng_free_wtapng_block_data(&wblock);
break; break;
} }
if (bytes_read <= 0) { if (bytes_read <= 0) {
pcapng_debug0("pcapng_open: couldn't read IDB"); pcapng_debug0("pcapng_open: couldn't read IDB");
pcapng_free_wtapng_block_data(&wblock);
if (*err == 0) if (*err == 0)
*err = WTAP_ERR_SHORT_READ; *err = WTAP_ERR_SHORT_READ;
return -1; return -1;
@ -2452,6 +2469,7 @@ pcapng_seek_read(wtap *wth, gint64 seek_off,
/* read the block */ /* read the block */
bytes_read = pcapng_read_block(wth->random_fh, FALSE, pcapng, &wblock, err, err_info); bytes_read = pcapng_read_block(wth->random_fh, FALSE, pcapng, &wblock, err, err_info);
pcapng_free_wtapng_block_data(&wblock);
if (bytes_read <= 0) { if (bytes_read <= 0) {
pcapng_debug3("pcapng_seek_read: couldn't read packet block (err=%d, errno=%d, bytes_read=%d).", pcapng_debug3("pcapng_seek_read: couldn't read packet block (err=%d, errno=%d, bytes_read=%d).",
*err, errno, bytes_read); *err, errno, bytes_read);

View File

@ -930,6 +930,12 @@ wtap_close(wtap *wth)
g_ptr_array_foreach(wth->fast_seek, g_fast_seek_item_free, NULL); g_ptr_array_foreach(wth->fast_seek, g_fast_seek_item_free, NULL);
g_ptr_array_free(wth->fast_seek, TRUE); g_ptr_array_free(wth->fast_seek, TRUE);
} }
g_free(wth->shb_hdr.opt_comment);
g_free(wth->shb_hdr.shb_hardware);
g_free(wth->shb_hdr.shb_os);
g_free(wth->shb_hdr.shb_user_appl);
for(i = 0; i < wth->interface_data->len; i++) { for(i = 0; i < wth->interface_data->len; i++) {
wtapng_if_descr = &g_array_index(wth->interface_data, wtapng_if_descr_t, i); wtapng_if_descr = &g_array_index(wth->interface_data, wtapng_if_descr_t, i);
if(wtapng_if_descr->opt_comment != NULL){ if(wtapng_if_descr->opt_comment != NULL){

View File

@ -1027,7 +1027,7 @@ typedef struct wtapng_section_s {
gchar *shb_os; /**< NULL if not available, UTF-8 string containing the gchar *shb_os; /**< NULL if not available, UTF-8 string containing the
* name of the operating system used to create this section. * name of the operating system used to create this section.
*/ */
const gchar *shb_user_appl; /**< NULL if not available, UTF-8 string containing the gchar *shb_user_appl; /**< NULL if not available, UTF-8 string containing the
* name of the application used to create this section. * name of the application used to create this section.
*/ */
} wtapng_section_t; } wtapng_section_t;