From 96be0c50f7dde84249db1194e69e8b146afc0687 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Tue, 23 Jan 2001 03:25:03 +0000 Subject: Removed some debug 'warnings', as they should now be displayed at the 2001-01-23 Not Zed * providers/imap/camel-imap-summary.c (message_info_load): Removed some debug 'warnings', as they should now be displayed at the toplevel loader, and just made the code match similar code elsewhere. * providers/local/camel-mbox-summary.c (message_info_load): Error handling. (message_info_save): more error handling. * camel-folder-summary.c (message_info_load): Add error handling and sanity checking. (camel_folder_summary_load): Add error checks. (perform_content_info_load): Error + sanity checks. (content_info_load): error + sanity checks. svn path=/trunk/; revision=7737 --- camel/camel-folder-summary.c | 71 ++++++++++++++++++++++++++++++++++---------- 1 file changed, 55 insertions(+), 16 deletions(-) (limited to 'camel/camel-folder-summary.c') diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index 147c8e452e..376aea12d8 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -498,7 +498,14 @@ perform_content_info_load(CamelFolderSummary *s, FILE *in) CamelMessageContentInfo *ci, *part; ci = ((CamelFolderSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->content_info_load(s, in); - camel_folder_summary_decode_uint32(in, &count); + if (ci == NULL) + return NULL; + + if (camel_folder_summary_decode_uint32(in, &count) == -1 || count > 500) { + camel_folder_summary_content_info_free(s, ci); + return NULL; + } + for (i=0;iparent = ci; } else { g_warning("Summary file format messed up?"); + camel_folder_summary_content_info_free(s, ci); + return NULL; } } return ci; @@ -521,24 +530,26 @@ camel_folder_summary_load(CamelFolderSummary *s) g_assert(s->summary_path); in = fopen(s->summary_path, "r"); - if ( in == NULL ) { + if (in == NULL) return -1; - } CAMEL_SUMMARY_LOCK(s, io_lock); - if ( ((CamelFolderSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->summary_header_load(s, in) == -1) { - fclose(in); - CAMEL_SUMMARY_UNLOCK(s, io_lock); - return -1; - } + if ( ((CamelFolderSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->summary_header_load(s, in) == -1) + goto error; /* now read in each message ... */ - /* FIXME: check returns */ for (i=0;isaved_count;i++) { mi = ((CamelFolderSummaryClass *)(CAMEL_OBJECT_GET_CLASS(s)))->message_info_load(s, in); - + + if (mi == NULL) + goto error; + if (s->build_content) { mi->content = perform_content_info_load(s, in); + if (mi->content == NULL) { + camel_folder_summary_info_free(s, mi); + goto error; + } } camel_folder_summary_add(s, mi); @@ -552,6 +563,14 @@ camel_folder_summary_load(CamelFolderSummary *s) s->flags &= ~CAMEL_SUMMARY_DIRTY; return 0; + +error: + g_warning("Cannot load summary file: %s", strerror(ferror(in))); + CAMEL_SUMMARY_UNLOCK(s, io_lock); + fclose(in); + s->flags |= ~CAMEL_SUMMARY_DIRTY; + + return -1; } /* saves the content descriptions, recursively */ @@ -1790,7 +1809,9 @@ message_info_load(CamelFolderSummary *s, FILE *in) camel_folder_summary_decode_fixed_int32(in, &mi->message_id.id.part.hi); camel_folder_summary_decode_fixed_int32(in, &mi->message_id.id.part.lo); - camel_folder_summary_decode_uint32(in, &count); + if (camel_folder_summary_decode_uint32(in, &count) == -1 || count > 500) + goto error; + if (count > 0) { mi->references = g_malloc(sizeof(*mi->references) + ((count-1) * sizeof(mi->references->references[0]))); mi->references->size = count; @@ -1800,7 +1821,9 @@ message_info_load(CamelFolderSummary *s, FILE *in) } } - camel_folder_summary_decode_uint32(in, &count); + if (camel_folder_summary_decode_uint32(in, &count) == -1 || count > 500) + goto error; + for (i=0;i 500) + goto error; + for (i=0;i 500) + goto error; + for (i=0;isize); ci->childs = NULL; - return ci; + + if (!ferror(in)) + return ci; + +error: + camel_folder_summary_content_info_free(s, ci); + return NULL; } static int -- cgit v1.2.3