aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-05-09 03:48:41 +0000
committerGuy Harris <guy@alum.mit.edu>2011-05-09 03:48:41 +0000
commit42ba70cf9c7b906c73721065e5b7425bf2ff663e (patch)
treec32eb0c5b631d592b7ba54656b44967a6489740a /wiretap
parent37adc5c880a3b7f66893a6979b4aca5cce31019e (diff)
If a gzipped file's name ends in .caz, don't check the CRC - it's
probably a compressed file from the Windows Sniffer, and they don't bother setting the CRC. svn path=/trunk/; revision=37024
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/file_access.c17
-rw-r--r--wiretap/file_wrappers.c24
2 files changed, 30 insertions, 11 deletions
diff --git a/wiretap/file_access.c b/wiretap/file_access.c
index 7df57d933e..ed213e6df8 100644
--- a/wiretap/file_access.c
+++ b/wiretap/file_access.c
@@ -293,7 +293,7 @@ wtap* wtap_open_offline(const char *filename, int *err, char **err_info,
if (use_stdin) {
/*
* We dup FD 0, so that we don't have to worry about
- * an fclose or gzclose of wth->fh closing the standard
+ * a file_close of wth->fh closing the standard
* input of the process.
*/
wth->fd = ws_dup(0);
@@ -310,20 +310,19 @@ wtap* wtap_open_offline(const char *filename, int *err, char **err_info,
return NULL;
}
#endif
+ if (!(wth->fh = filed_open(wth->fd))) {
+ *err = errno;
+ ws_close(wth->fd);
+ g_free(wth);
+ return NULL;
+ }
} else {
- wth->fd = ws_open(filename, O_RDONLY|O_BINARY, 0000 /* no creation so don't matter */);
- if (wth->fd < 0) {
+ if (!(wth->fh = file_open(filename))) {
*err = errno;
g_free(wth);
return NULL;
}
}
- if (!(wth->fh = filed_open(wth->fd))) {
- *err = errno;
- ws_close(wth->fd);
- g_free(wth);
- return NULL;
- }
if (do_random) {
if (!(wth->random_fh = file_open(filename))) {
diff --git a/wiretap/file_wrappers.c b/wiretap/file_wrappers.c
index 8beaf6674c..681878bd7e 100644
--- a/wiretap/file_wrappers.c
+++ b/wiretap/file_wrappers.c
@@ -98,6 +98,7 @@ struct wtap_reader {
#ifdef HAVE_LIBZ
/* zlib inflate stream */
z_stream strm; /* stream structure in-place (not a pointer) */
+ int dont_check_crc; /* 1 if we aren't supposed to check the CRC */
#endif
/* fast seeking */
GPtrArray *fast_seek;
@@ -505,7 +506,7 @@ zlib_read(FILE_T state, unsigned char *buf, unsigned int count)
if (ret == Z_STREAM_END) {
if (gz_next4(state, &crc) != -1 &&
gz_next4(state, &len) != -1) {
- if (crc != strm->adler) {
+ if (crc != strm->adler && !state->dont_check_crc) {
state->err = WTAP_ERR_DECOMPRESS;
state->err_info = "bad CRC";
} else if (len != (strm->total_out & 0xffffffffL)) {
@@ -785,6 +786,9 @@ filed_open(int fd)
errno = ENOMEM;
return NULL;
}
+
+ /* for now, assume we should check the crc */
+ state->dont_check_crc = 0;
#endif
/* return stream */
return state;
@@ -795,6 +799,9 @@ file_open(const char *path)
{
int fd;
FILE_T ft;
+#ifdef HAVE_LIBZ
+ const char *suffixp;
+#endif
/* open file and do correct filename conversions.
@@ -805,7 +812,7 @@ file_open(const char *path)
here. Pre-Large File Summit UN*Xes, and possibly even some
post-LFS UN*Xes, might require O_LARGEFILE here, though.
If so, we should probably handle that in ws_open(). */
- if ((fd = ws_open(path, O_RDONLY|O_BINARY, 0666)) == -1)
+ if ((fd = ws_open(path, O_RDONLY|O_BINARY, 0000)) == -1)
return NULL;
/* open file handle */
@@ -815,6 +822,19 @@ file_open(const char *path)
return NULL;
}
+#ifdef HAVE_LIBZ
+ /*
+ * If this file's name ends in ".caz", it's probably a compressed
+ * Windows Sniffer file. The compression is gzip, but they don't
+ * bother filling in the CRC; we set a flag to ignore CRC errors.
+ */
+ suffixp = strrchr(path, '.');
+ if (suffixp != NULL) {
+ if (g_ascii_strcasecmp(suffixp, ".caz") == 0)
+ ft->dont_check_crc = 1;
+ }
+#endif
+
return ft;
}