Clean up capture_enc(), export it, and use it in the capture window.
[obnox/wireshark/wip.git] / capture_info.c
1 /* capture_info.c
2  * capture info functions
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #ifdef HAVE_LIBPCAP
30
31 #include <glib.h>
32
33 #include <epan/packet.h>
34 /* XXX - try to remove this later */
35 #include <epan/prefs.h>
36 /* XXX - try to remove this later */
37
38 #include "capture_info.h"
39
40 #include <epan/dissectors/packet-ap1394.h>
41 #include <epan/dissectors/packet-atalk.h>
42 #include <epan/dissectors/packet-atm.h>
43 #include <epan/dissectors/packet-clip.h>
44 #include <epan/dissectors/packet-eth.h>
45 #include <epan/dissectors/packet-fddi.h>
46 #include <epan/dissectors/packet-fr.h>
47 #include <epan/dissectors/packet-null.h>
48 #include <epan/dissectors/packet-ppp.h>
49 #include <epan/dissectors/packet-raw.h>
50 #include <epan/dissectors/packet-sll.h>
51 #include <epan/dissectors/packet-tr.h>
52 #include <epan/dissectors/packet-ieee80211.h>
53 #include <epan/dissectors/packet-chdlc.h>
54 #include <epan/dissectors/packet-prism.h>
55 #include <epan/dissectors/packet-ipfc.h>
56 #include <epan/dissectors/packet-arcnet.h>
57 #include <epan/dissectors/packet-enc.h>
58
59 static void capture_info_packet(
60 packet_counts *counts, gint wtap_linktype, const guchar *pd, guint32 caplen, union wtap_pseudo_header *pseudo_header);
61
62
63
64 typedef struct _info_data {
65     packet_counts     counts;     /* several packet type counters */
66     struct wtap*      wtap;       /* current wtap file */
67     capture_info      ui;         /* user interface data */
68 } info_data_t;
69
70
71 info_data_t info_data;
72
73
74 /* open the info */
75 void capture_info_open(const char *iface)
76 {
77     info_data.counts.total      = 0;
78     info_data.counts.sctp       = 0;
79     info_data.counts.tcp        = 0;
80     info_data.counts.udp        = 0;
81     info_data.counts.icmp       = 0;
82     info_data.counts.ospf       = 0;
83     info_data.counts.gre        = 0;
84     info_data.counts.ipx        = 0;
85     info_data.counts.netbios    = 0;
86     info_data.counts.vines      = 0;
87     info_data.counts.other      = 0;
88     info_data.counts.arp        = 0;
89
90     info_data.wtap = NULL;
91     info_data.ui.counts = &info_data.counts;
92
93     capture_info_ui_create(&info_data.ui, iface);
94 }
95
96
97 /* new file arrived */
98 void capture_info_new_file(const char *new_filename)
99 {
100     int err;
101     gchar *err_info;
102
103
104     if(info_data.wtap != NULL) {
105         wtap_close(info_data.wtap);
106     }
107
108     info_data.wtap = wtap_open_offline(new_filename, &err, &err_info, FALSE);
109     if (!info_data.wtap) {
110         g_warning("capture_info_new_file: wtap open failed: %s", err_info);
111     }
112
113 }
114
115
116 /* new packets arrived */
117 void capture_info_new_packets(int to_read)
118 {
119     int err;
120     gchar *err_info;
121     long data_offset;
122     const struct wtap_pkthdr *phdr;
123     union wtap_pseudo_header *pseudo_header;
124     int wtap_linktype;
125     const guchar *buf;
126
127
128     info_data.ui.new_packets = to_read;
129
130     /*g_warning("new packets: %u", to_read);*/
131
132     while (to_read != 0 && (wtap_read(info_data.wtap, &err, &err_info, &data_offset))) {
133         phdr = wtap_phdr(info_data.wtap);
134         pseudo_header = wtap_pseudoheader(info_data.wtap);
135         wtap_linktype = phdr->pkt_encap;
136         buf = wtap_buf_ptr(info_data.wtap);
137
138         capture_info_packet(&info_data.counts, wtap_linktype, buf, phdr->caplen, pseudo_header);
139
140         /*g_warning("new packet");*/
141         to_read--;
142     }
143
144     capture_info_ui_update(&info_data.ui);
145 }
146
147
148 /* close the info */
149 void capture_info_close(void)
150 {
151     capture_info_ui_destroy(&info_data.ui);
152     wtap_close(info_data.wtap);
153 }
154
155
156 static void
157 capture_info_packet(packet_counts *counts, gint wtap_linktype, const guchar *pd, guint32 caplen, union wtap_pseudo_header *pseudo_header)
158 {
159   counts->total++;
160   switch (wtap_linktype) {
161     case WTAP_ENCAP_ETHERNET:
162       capture_eth(pd, 0, caplen, counts);
163       break;
164     case WTAP_ENCAP_FDDI:
165     case WTAP_ENCAP_FDDI_BITSWAPPED:
166       capture_fddi(pd, caplen, counts);
167       break;
168     case WTAP_ENCAP_PRISM_HEADER:
169       capture_prism(pd, 0, caplen, counts);
170       break;
171     case WTAP_ENCAP_TOKEN_RING:
172       capture_tr(pd, 0, caplen, counts);
173       break;
174     case WTAP_ENCAP_NULL:
175       capture_null(pd, caplen, counts);
176       break;
177     case WTAP_ENCAP_PPP:
178       capture_ppp_hdlc(pd, 0, caplen, counts);
179       break;
180     case WTAP_ENCAP_RAW_IP:
181       capture_raw(pd, caplen, counts);
182       break;
183     case WTAP_ENCAP_SLL:
184       capture_sll(pd, caplen, counts);
185       break;
186     case WTAP_ENCAP_LINUX_ATM_CLIP:
187       capture_clip(pd, caplen, counts);
188       break;
189     case WTAP_ENCAP_IEEE_802_11:
190     case WTAP_ENCAP_IEEE_802_11_WITH_RADIO:
191       capture_ieee80211(pd, 0, caplen, counts);
192       break;
193     case WTAP_ENCAP_CHDLC:
194       capture_chdlc(pd, 0, caplen, counts);
195       break;
196     case WTAP_ENCAP_LOCALTALK:
197       capture_llap(counts);
198       break;
199     case WTAP_ENCAP_ATM_PDUS:
200       capture_atm(pseudo_header, pd, caplen, counts);
201       break;
202     case WTAP_ENCAP_IP_OVER_FC:
203       capture_ipfc(pd, caplen, counts);
204       break;
205     case WTAP_ENCAP_ARCNET:
206       capture_arcnet(pd, caplen, counts, FALSE, TRUE);
207       break;
208     case WTAP_ENCAP_ARCNET_LINUX:
209       capture_arcnet(pd, caplen, counts, TRUE, FALSE);
210       break;
211     case WTAP_ENCAP_APPLE_IP_OVER_IEEE1394:
212       capture_ap1394(pd, 0, caplen, counts);
213       break;
214     case WTAP_ENCAP_FRELAY:
215     case WTAP_ENCAP_FRELAY_WITH_PHDR:
216       capture_fr(pd, 0, caplen, counts);
217       break;
218     case WTAP_ENCAP_ENC:
219       capture_enc(pd, caplen, counts);
220       break;
221     /* XXX - some ATM drivers on FreeBSD might prepend a 4-byte ATM
222        pseudo-header to DLT_ATM_RFC1483, with LLC header following;
223        we might have to implement that at some point. */
224   }
225 }
226
227
228 #endif /* HAVE_LIBPCAP */