File size: 4,398 Bytes
4a85060 |
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 |
/**file test-fuzzer.c
* from test-parse.c and test-mnote.c
*
* \brief Completely parse all files given on the command line.
*
* Copyright (C) 2007 Hans Ulrich Niedermann <[email protected]>
* Copyright 2002 Lutz Mueller <[email protected]>
*
* This library 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 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include "libexif/exif-data.h"
#include "libexif/exif-loader.h"
#include "libexif/exif-system.h"
#undef USE_LOG
#ifdef USE_LOG
static void
logfunc(ExifLog *log, ExifLogCode code, const char *domain, const char *format, va_list args, void *data)
{
fprintf( stderr, "test-fuzzer: code=%d domain=%s ", code, domain);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
}
#endif
/** Callback function handling an ExifEntry. */
void content_foreach_func(ExifEntry *entry, void *callback_data);
void content_foreach_func(ExifEntry *entry, void *UNUSED(callback_data))
{
char buf[2001];
/* ensure \0 */
buf[sizeof(buf)-1] = 0;
buf[sizeof(buf)-2] = 0;
exif_tag_get_name(entry->tag);
exif_format_get_name(entry->format);
exif_entry_get_value(entry, buf, sizeof(buf)-1);
if (buf[sizeof(buf)-2] != 0) abort();
}
/** Callback function handling an ExifContent (corresponds 1:1 to an IFD). */
void data_foreach_func(ExifContent *content, void *callback_data);
void data_foreach_func(ExifContent *content, void *callback_data)
{
printf(" Content %p: ifd=%d\n", content, exif_content_get_ifd(content));
exif_content_foreach_entry(content, content_foreach_func, callback_data);
}
static int
test_exif_data (ExifData *d)
{
unsigned int i, c;
char v[1024];
ExifMnoteData *md;
fprintf (stdout, "Byte order: %s\n",
exif_byte_order_get_name (exif_data_get_byte_order (d)));
md = exif_data_get_mnote_data (d);
if (!md) {
fprintf (stderr, "Could not parse maker note!\n");
return 1;
}
exif_mnote_data_ref (md);
exif_mnote_data_unref (md);
c = exif_mnote_data_count (md);
for (i = 0; i < c; i++) {
const char *name = exif_mnote_data_get_name (md, i);
if (!name) continue;
exif_mnote_data_get_name (md, i);
exif_mnote_data_get_title (md, i);
exif_mnote_data_get_description (md, i);
exif_mnote_data_get_value (md, i, v, sizeof (v));
}
return 0;
}
/** Run EXIF parsing test on the given file. */
static void test_parse(const char *filename, void *callback_data)
{
ExifData *d;
ExifLoader *loader = exif_loader_new();
unsigned int buf_size;
unsigned char *buf;
FILE *f;
struct stat stbuf;
#ifdef USE_LOG
ExifLog *log = exif_log_new ();
exif_log_set_func(log, logfunc, NULL);
#endif
/* try the exif loader */
d = exif_data_new_from_file(filename);
#ifdef USE_LOG
exif_data_log (d, log);
#endif
exif_data_foreach_content(d, data_foreach_func, callback_data);
test_exif_data (d);
buf = NULL;
exif_data_save_data (d, &buf, &buf_size);
free (buf);
exif_data_set_byte_order(d, EXIF_BYTE_ORDER_INTEL);
buf = NULL;
exif_data_save_data (d, &buf, &buf_size);
free (buf);
exif_data_unref(d);
/* try the exif data writer ... different than the loader */
if (-1 == stat(filename,&stbuf))
perror("stat");
f = fopen(filename,"r");
if (!f) return;
buf = malloc(stbuf.st_size);
fread (buf, stbuf.st_size, 1, f);
fclose(f);
exif_loader_write(loader, buf, stbuf.st_size);
free (buf);
d = exif_loader_get_data(loader);
exif_data_foreach_content(d, data_foreach_func, callback_data);
test_exif_data (d);
exif_loader_unref(loader);
exif_data_unref(d);
}
/** Main program. */
int main(const int argc, const char *argv[])
{
int i;
void *callback_data = NULL;
for (i=1; i<argc; i++) {
test_parse(argv[i], callback_data);
}
return 0;
}
|