From njohnkev:
[obnox/wireshark/wip.git] / wiretap / tnef.c
1 /* tnef.c
2  *
3  * Transport-Neutral Encapsulation Format (TNEF) file reading
4  *
5  * $Id$
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <errno.h>
27
28 #ifdef HAVE_SYS_STAT_H
29 #include <sys/stat.h>
30 #endif
31
32 #include "wtap-int.h"
33 #include "file_wrappers.h"
34 #include "buffer.h"
35 #include "tnef.h"
36
37
38 static gboolean tnef_read(wtap *wth, int *err, gchar **err_info, gint64 *data_offset)
39 {
40   guint8 *buf;
41   gint64 file_size;
42   int packet_size;
43   struct stat statb;
44
45   *err = 0;
46
47   /* there is only ever one packet */
48   if(wth->data_offset)
49     return FALSE;
50
51   *data_offset = wth->data_offset;
52
53   if ((file_size = wtap_file_size(wth, err)) == -1)
54     return FALSE;
55
56   if (file_size > WTAP_MAX_PACKET_SIZE) {
57     /*
58      * Probably a corrupt capture file; don't blow up trying
59      * to allocate space for an immensely-large packet.
60      */
61     *err = WTAP_ERR_BAD_RECORD;
62     *err_info = g_strdup_printf("tnef: File has %" G_GINT64_MODIFIER "d-byte packet, bigger than maximum of %u",
63                                 file_size, WTAP_MAX_PACKET_SIZE);
64     return FALSE;
65   }
66   packet_size = (int)file_size;
67
68   buffer_assure_space(wth->frame_buffer, packet_size);
69   buf = buffer_start_ptr(wth->frame_buffer);
70
71   wtap_file_read_expected_bytes(buf, packet_size, wth->fh, err);
72
73   wth->data_offset += packet_size;
74
75   wth->phdr.caplen = packet_size;
76   wth->phdr.len = packet_size;
77
78   if (fstat(wth->fd, &statb) == -1) {
79     *err = errno;
80     return FALSE;
81   }
82
83   wth->phdr.ts.secs = statb.st_mtime;
84   wth->phdr.ts.nsecs = 0;
85
86   return TRUE;
87 }
88
89 static gboolean tnef_seek_read(wtap *wth, gint64 seek_off,
90                                union wtap_pseudo_header *pseudo_header _U_,
91                                guint8 *pd, int length, int *err, gchar **err_info _U_)
92 {
93   int packet_size = length;
94
95   /* there is only one packet */
96   if(seek_off > 0) {
97     *err = 0;
98     return FALSE;
99   }
100
101   if (file_seek(wth->random_fh, seek_off, SEEK_SET, err) == -1)
102     return FALSE;
103
104   wtap_file_read_expected_bytes(pd, packet_size, wth->random_fh, err);
105
106   return TRUE;
107 }
108
109 int tnef_open(wtap *wth, int *err, gchar **err_info _U_)
110 {
111   int bytes_read;
112   guint32 magic;
113
114   bytes_read = file_read(&magic, 1, sizeof magic, wth->fh);
115   if (bytes_read != sizeof magic) {
116     *err = file_error(wth->fh);
117     return (*err != 0) ? -1 : 0;
118   }
119
120   if (htolel(magic) != TNEF_SIGNATURE)
121      /* Not a tnef file */
122      return 0;
123
124   /* seek back to the start of the file  */
125   if (file_seek(wth->fh, 0, SEEK_SET, err) == -1)
126     return -1;
127
128   wth->file_type = WTAP_FILE_TNEF;
129   wth->file_encap = WTAP_ENCAP_TNEF;
130   wth->snapshot_length = 0;
131
132   wth->subtype_read = tnef_read;
133   wth->subtype_seek_read = tnef_seek_read;
134   wth->tsprecision = WTAP_FILE_TSPREC_SEC;
135
136   return 1;
137 }