More Ethereal -> Wireshark renaming
[obnox/wireshark/wip.git] / text2pcap.c
1 /**-*-C-*-**********************************************************************
2  *
3  * text2pcap.c
4  *
5  * Utility to convert an ASCII hexdump into a libpcap-format capture file
6  *
7  * (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
8  *
9  * $Id$
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  *
29  *******************************************************************************/
30
31 /*******************************************************************************
32  *
33  * This utility reads in an ASCII hexdump of this common format:
34  *
35  * 00000000  00 E0 1E A7 05 6F 00 10 5A A0 B9 12 08 00 46 00 .....o..Z.....F.
36  * 00000010  03 68 00 00 00 00 0A 2E EE 33 0F 19 08 7F 0F 19 .h.......3...\7f..
37  * 00000020  03 80 94 04 00 00 10 01 16 A2 0A 00 03 50 00 0C .............P..
38  * 00000030  01 01 0F 19 03 80 11 01 1E 61 00 0C 03 01 0F 19 .........a......
39  *
40  * Each bytestring line consists of an offset, one or more bytes, and
41  * text at the end. An offset is defined as a hex string of more than
42  * two characters. A byte is defined as a hex string of exactly two
43  * characters. The text at the end is ignored, as is any text before
44  * the offset. Bytes read from a bytestring line are added to the
45  * current packet only if all the following conditions are satisfied:
46  *
47  * - No text appears between the offset and the bytes (any bytes appearing after
48  *   such text would be ignored)
49  *
50  * - The offset must be arithmetically correct, i.e. if the offset is 00000020, then
51  *   exactly 32 bytes must have been read into this packet before this. If the offset
52  *   is wrong, the packet is immediately terminated
53  *
54  * A packet start is signalled by a zero offset.
55  *
56  * Lines starting with #TEXT2PCAP are directives. These allow the user
57  * to embed instructions into the capture file which allows text2pcap
58  * to take some actions (e.g. specifying the encapsulation
59  * etc.). Currently no directives are implemented.
60  *
61  * Lines beginning with # which are not directives are ignored as
62  * comments. Currently all non-hexdump text is ignored by text2pcap;
63  * in the future, text processing may be added, but lines prefixed
64  * with '#' will still be ignored.
65  *
66  * The output is a libpcap packet containing Ethernet frames by
67  * default. This program takes options which allow the user to add
68  * dummy Ethernet, IP and UDP or TCP headers to the packets in order
69  * to allow dumps of L3 or higher protocols to be decoded.
70  *
71  * Considerable flexibility is built into this code to read hexdumps
72  * of slightly different formats. For example, any text prefixing the
73  * hexdump line is dropped (including mail forwarding '>'). The offset
74  * can be any hex number of four digits or greater.
75  *
76  * This converter cannot read a single packet greater than 64K. Packet
77  * snaplength is automatically set to 64K.
78  */
79
80 #ifdef HAVE_CONFIG_H
81 # include "config.h"
82 #endif
83
84 #include <ctype.h>
85 #include <stdio.h>
86 #include <stdlib.h>
87 #include <string.h>
88
89 /*
90  * Just make sure we include the prototype for strptime as well
91  * (needed for glibc 2.2)
92  */
93 #define __USE_XOPEN
94
95 #include <time.h>
96 #include <glib.h>
97
98 #ifdef HAVE_UNISTD_H
99 # include <unistd.h>
100 #endif
101
102 #include <errno.h>
103 #include <assert.h>
104
105 #ifdef NEED_GETOPT_H
106 # include "getopt.h"
107 #endif
108
109 #ifdef NEED_STRPTIME_H
110 # include "strptime.h"
111 #endif
112
113 #include "text2pcap.h"
114
115 /*--- Options --------------------------------------------------------------------*/
116
117 /* Debug level */
118 static int debug = 0;
119 /* Be quiet */
120 static int quiet = FALSE;
121
122 /* Dummy Ethernet header */
123 static int hdr_ethernet = FALSE;
124 static unsigned long hdr_ethernet_proto = 0;
125
126 /* Dummy IP header */
127 static int hdr_ip = FALSE;
128 static long hdr_ip_proto = 0;
129
130 /* Dummy UDP header */
131 static int hdr_udp = FALSE;
132 static unsigned long hdr_dest_port = 0;
133 static unsigned long hdr_src_port = 0;
134
135 /* Dummy TCP header */
136 static int hdr_tcp = FALSE;
137
138 /* Dummy SCTP header */
139 static int hdr_sctp = FALSE;
140 static unsigned long hdr_sctp_src  = 0;
141 static unsigned long hdr_sctp_dest = 0;
142 static unsigned long hdr_sctp_tag  = 0;
143
144 /* Dummy DATA chunk header */
145 static int hdr_data_chunk = FALSE;
146 static unsigned char  hdr_data_chunk_type = 0;
147 static unsigned char  hdr_data_chunk_bits = 3;
148 static unsigned long  hdr_data_chunk_tsn  = 0;
149 static unsigned short hdr_data_chunk_sid  = 0;
150 static unsigned short hdr_data_chunk_ssn  = 0;
151 static unsigned long  hdr_data_chunk_ppid = 0;
152
153
154 /*--- Local date -----------------------------------------------------------------*/
155
156 /* This is where we store the packet currently being built */
157 #define MAX_PACKET 64000
158 static unsigned char packet_buf[MAX_PACKET];
159 static unsigned long curr_offset = 0;
160 static unsigned long max_offset = MAX_PACKET;
161 static unsigned long packet_start = 0;
162 static void start_new_packet (void);
163
164 /* This buffer contains strings present before the packet offset 0 */
165 #define PACKET_PREAMBLE_MAX_LEN 2048
166 static unsigned char packet_preamble[PACKET_PREAMBLE_MAX_LEN+1];
167 static int packet_preamble_len = 0;
168
169 /* Number of packets read and written */
170 static unsigned long num_packets_read = 0;
171 static unsigned long num_packets_written = 0;
172
173 /* Time code of packet, derived from packet_preamble */
174 static gint32 ts_sec  = 0;
175 static guint32 ts_usec = 0;
176 static char *ts_fmt = NULL;
177
178 /* Input file */
179 static const char *input_filename;
180 static FILE *input_file = NULL;
181 /* Output file */
182 static const char *output_filename;
183 static FILE *output_file = NULL;
184
185 /* Offset base to parse */
186 static unsigned long offset_base = 16;
187
188 extern FILE *yyin;
189
190 /* ----- State machine -----------------------------------------------------------*/
191
192 /* Current state of parser */
193 typedef enum {
194     INIT,             /* Waiting for start of new packet */
195     START_OF_LINE,    /* Starting from beginning of line */
196     READ_OFFSET,      /* Just read the offset */
197     READ_BYTE,        /* Just read a byte */
198     READ_TEXT         /* Just read text - ignore until EOL */
199 } parser_state_t;
200 static parser_state_t state = INIT;
201
202 static const char *state_str[] = {"Init",
203                            "Start-of-line",
204                            "Offset",
205                            "Byte",
206                            "Text"
207 };
208
209 static const char *token_str[] = {"",
210                            "Byte",
211                            "Offset",
212                            "Directive",
213                            "Text",
214                            "End-of-line"
215 };
216
217 /* ----- Skeleton Packet Headers --------------------------------------------------*/
218
219 typedef struct {
220     guint8  dest_addr[6];
221     guint8  src_addr[6];
222     guint16 l3pid;
223 } hdr_ethernet_t;
224
225 static hdr_ethernet_t HDR_ETHERNET = {
226     {0x02, 0x02, 0x02, 0x02, 0x02, 0x02},
227     {0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
228     0};
229
230 typedef struct {
231     guint8  ver_hdrlen;
232     guint8  dscp;
233     guint16 packet_length;
234     guint16 identification;
235     guint8  flags;
236     guint8  fragment;
237     guint8  ttl;
238     guint8  protocol;
239     guint16 hdr_checksum;
240     guint32 src_addr;
241     guint32 dest_addr;
242 } hdr_ip_t;
243
244 static hdr_ip_t HDR_IP = {0x45, 0, 0, 0x3412, 0, 0, 0xff, 0, 0, 0x01010101, 0x02020202};
245
246 static struct {                 /* pseudo header for checksum calculation */
247         guint32 src_addr;
248         guint32 dest_addr;
249         guint8  zero;
250         guint8  protocol;
251         guint16 length;
252 } pseudoh;
253
254 typedef struct {
255     guint16 source_port;
256     guint16 dest_port;
257     guint16 length;
258     guint16 checksum;
259 } hdr_udp_t;
260
261 static hdr_udp_t HDR_UDP = {0, 0, 0, 0};
262
263 typedef struct {
264     guint16 source_port;
265     guint16 dest_port;
266     guint32 seq_num;
267     guint32 ack_num;
268     guint8  hdr_length;
269     guint8  flags;
270     guint16 window;
271     guint16 checksum;
272     guint16 urg;
273 } hdr_tcp_t;
274
275 static hdr_tcp_t HDR_TCP = {0, 0, 0, 0, 0x50, 0, 0, 0, 0};
276
277 typedef struct {
278     guint16 src_port;
279     guint16 dest_port;
280     guint32 tag;
281     guint32 checksum;
282 } hdr_sctp_t;
283
284 static hdr_sctp_t HDR_SCTP = {0, 0, 0, 0};
285
286 typedef struct {
287     guint8  type;
288     guint8  bits;
289     guint16 length;
290     guint32 tsn;
291     guint16 sid;
292     guint16 ssn;
293     guint32 ppid;
294 } hdr_data_chunk_t;
295
296 static hdr_data_chunk_t HDR_DATA_CHUNK = {0, 0, 0, 0, 0, 0, 0};
297
298 static char tempbuf[64];
299
300 /*----------------------------------------------------------------------
301  * Stuff for writing a PCap file
302  */
303 #define PCAP_MAGIC                      0xa1b2c3d4
304
305 /* "libpcap" file header (minus magic number). */
306 struct pcap_hdr {
307     guint32     magic;          /* magic */
308     guint16     version_major;  /* major version number */
309     guint16     version_minor;  /* minor version number */
310     guint32     thiszone;       /* GMT to local correction */
311     guint32     sigfigs;        /* accuracy of timestamps */
312     guint32     snaplen;        /* max length of captured packets, in octets */
313     guint32     network;        /* data link type */
314 };
315
316 /* "libpcap" record header. */
317 struct pcaprec_hdr {
318     gint32      ts_sec;         /* timestamp seconds */
319     guint32     ts_usec;        /* timestamp microseconds */
320     guint32     incl_len;       /* number of octets of packet saved in file */
321     guint32     orig_len;       /* actual length of packet */
322 };
323
324 /* Link-layer type; see net/bpf.h for details */
325 static unsigned long pcap_link_type = 1;   /* Default is DLT-EN10MB */
326
327 /*----------------------------------------------------------------------
328  * Parse a single hex number
329  * Will abort the program if it can't parse the number
330  * Pass in TRUE if this is an offset, FALSE if not
331  */
332 static unsigned long
333 parse_num (const char *str, int offset)
334 {
335     unsigned long num;
336     char *c;
337
338     num = strtoul(str, &c, offset ? offset_base : 16);
339     if (c==str) {
340         fprintf(stderr, "FATAL ERROR: Bad hex number? [%s]\n", str);
341         exit(-1);
342     }
343     return num;
344 }
345
346 /*----------------------------------------------------------------------
347  * Write this byte into current packet
348  */
349 static void
350 write_byte (const char *str)
351 {
352     unsigned long num;
353
354     num = parse_num(str, FALSE);
355     packet_buf[curr_offset] = (unsigned char) num;
356     curr_offset ++;
357     if (curr_offset >= max_offset) /* packet full */
358             start_new_packet();
359 }
360
361 /*----------------------------------------------------------------------
362  * Remove bytes from the current packet
363  */
364 static void
365 unwrite_bytes (unsigned long nbytes)
366 {
367     curr_offset -= nbytes;
368 }
369
370 /*----------------------------------------------------------------------
371  * Compute one's complement checksum (from RFC1071)
372  */
373 static guint16
374 in_checksum (void *buf, unsigned long count)
375 {
376     unsigned long sum = 0;
377     guint16 *addr = buf;
378
379     while( count > 1 )  {
380         /*  This is the inner loop */
381         sum += g_ntohs(* (guint16 *) addr);
382         addr++;
383         count -= 2;
384     }
385
386     /*  Add left-over byte, if any */
387     if( count > 0 )
388         sum += g_ntohs(* (guint8 *) addr);
389
390     /*  Fold 32-bit sum to 16 bits */
391     while (sum>>16)
392         sum = (sum & 0xffff) + (sum >> 16);
393
394     return g_htons(~sum);
395 }
396
397 /* The CRC32C code is taken from draft-ietf-tsvwg-sctpcsum-01.txt.
398  * That code is copyrighted by D. Otis and has been modified.
399  */
400
401 #define CRC32C(c,d) (c=(c>>8)^crc_c[(c^(d))&0xFF])
402 static guint32 crc_c[256] =
403 {
404 0x00000000L, 0xF26B8303L, 0xE13B70F7L, 0x1350F3F4L,
405 0xC79A971FL, 0x35F1141CL, 0x26A1E7E8L, 0xD4CA64EBL,
406 0x8AD958CFL, 0x78B2DBCCL, 0x6BE22838L, 0x9989AB3BL,
407 0x4D43CFD0L, 0xBF284CD3L, 0xAC78BF27L, 0x5E133C24L,
408 0x105EC76FL, 0xE235446CL, 0xF165B798L, 0x030E349BL,
409 0xD7C45070L, 0x25AFD373L, 0x36FF2087L, 0xC494A384L,
410 0x9A879FA0L, 0x68EC1CA3L, 0x7BBCEF57L, 0x89D76C54L,
411 0x5D1D08BFL, 0xAF768BBCL, 0xBC267848L, 0x4E4DFB4BL,
412 0x20BD8EDEL, 0xD2D60DDDL, 0xC186FE29L, 0x33ED7D2AL,
413 0xE72719C1L, 0x154C9AC2L, 0x061C6936L, 0xF477EA35L,
414 0xAA64D611L, 0x580F5512L, 0x4B5FA6E6L, 0xB93425E5L,
415 0x6DFE410EL, 0x9F95C20DL, 0x8CC531F9L, 0x7EAEB2FAL,
416 0x30E349B1L, 0xC288CAB2L, 0xD1D83946L, 0x23B3BA45L,
417 0xF779DEAEL, 0x05125DADL, 0x1642AE59L, 0xE4292D5AL,
418 0xBA3A117EL, 0x4851927DL, 0x5B016189L, 0xA96AE28AL,
419 0x7DA08661L, 0x8FCB0562L, 0x9C9BF696L, 0x6EF07595L,
420 0x417B1DBCL, 0xB3109EBFL, 0xA0406D4BL, 0x522BEE48L,
421 0x86E18AA3L, 0x748A09A0L, 0x67DAFA54L, 0x95B17957L,
422 0xCBA24573L, 0x39C9C670L, 0x2A993584L, 0xD8F2B687L,
423 0x0C38D26CL, 0xFE53516FL, 0xED03A29BL, 0x1F682198L,
424 0x5125DAD3L, 0xA34E59D0L, 0xB01EAA24L, 0x42752927L,
425 0x96BF4DCCL, 0x64D4CECFL, 0x77843D3BL, 0x85EFBE38L,
426 0xDBFC821CL, 0x2997011FL, 0x3AC7F2EBL, 0xC8AC71E8L,
427 0x1C661503L, 0xEE0D9600L, 0xFD5D65F4L, 0x0F36E6F7L,
428 0x61C69362L, 0x93AD1061L, 0x80FDE395L, 0x72966096L,
429 0xA65C047DL, 0x5437877EL, 0x4767748AL, 0xB50CF789L,
430 0xEB1FCBADL, 0x197448AEL, 0x0A24BB5AL, 0xF84F3859L,
431 0x2C855CB2L, 0xDEEEDFB1L, 0xCDBE2C45L, 0x3FD5AF46L,
432 0x7198540DL, 0x83F3D70EL, 0x90A324FAL, 0x62C8A7F9L,
433 0xB602C312L, 0x44694011L, 0x5739B3E5L, 0xA55230E6L,
434 0xFB410CC2L, 0x092A8FC1L, 0x1A7A7C35L, 0xE811FF36L,
435 0x3CDB9BDDL, 0xCEB018DEL, 0xDDE0EB2AL, 0x2F8B6829L,
436 0x82F63B78L, 0x709DB87BL, 0x63CD4B8FL, 0x91A6C88CL,
437 0x456CAC67L, 0xB7072F64L, 0xA457DC90L, 0x563C5F93L,
438 0x082F63B7L, 0xFA44E0B4L, 0xE9141340L, 0x1B7F9043L,
439 0xCFB5F4A8L, 0x3DDE77ABL, 0x2E8E845FL, 0xDCE5075CL,
440 0x92A8FC17L, 0x60C37F14L, 0x73938CE0L, 0x81F80FE3L,
441 0x55326B08L, 0xA759E80BL, 0xB4091BFFL, 0x466298FCL,
442 0x1871A4D8L, 0xEA1A27DBL, 0xF94AD42FL, 0x0B21572CL,
443 0xDFEB33C7L, 0x2D80B0C4L, 0x3ED04330L, 0xCCBBC033L,
444 0xA24BB5A6L, 0x502036A5L, 0x4370C551L, 0xB11B4652L,
445 0x65D122B9L, 0x97BAA1BAL, 0x84EA524EL, 0x7681D14DL,
446 0x2892ED69L, 0xDAF96E6AL, 0xC9A99D9EL, 0x3BC21E9DL,
447 0xEF087A76L, 0x1D63F975L, 0x0E330A81L, 0xFC588982L,
448 0xB21572C9L, 0x407EF1CAL, 0x532E023EL, 0xA145813DL,
449 0x758FE5D6L, 0x87E466D5L, 0x94B49521L, 0x66DF1622L,
450 0x38CC2A06L, 0xCAA7A905L, 0xD9F75AF1L, 0x2B9CD9F2L,
451 0xFF56BD19L, 0x0D3D3E1AL, 0x1E6DCDEEL, 0xEC064EEDL,
452 0xC38D26C4L, 0x31E6A5C7L, 0x22B65633L, 0xD0DDD530L,
453 0x0417B1DBL, 0xF67C32D8L, 0xE52CC12CL, 0x1747422FL,
454 0x49547E0BL, 0xBB3FFD08L, 0xA86F0EFCL, 0x5A048DFFL,
455 0x8ECEE914L, 0x7CA56A17L, 0x6FF599E3L, 0x9D9E1AE0L,
456 0xD3D3E1ABL, 0x21B862A8L, 0x32E8915CL, 0xC083125FL,
457 0x144976B4L, 0xE622F5B7L, 0xF5720643L, 0x07198540L,
458 0x590AB964L, 0xAB613A67L, 0xB831C993L, 0x4A5A4A90L,
459 0x9E902E7BL, 0x6CFBAD78L, 0x7FAB5E8CL, 0x8DC0DD8FL,
460 0xE330A81AL, 0x115B2B19L, 0x020BD8EDL, 0xF0605BEEL,
461 0x24AA3F05L, 0xD6C1BC06L, 0xC5914FF2L, 0x37FACCF1L,
462 0x69E9F0D5L, 0x9B8273D6L, 0x88D28022L, 0x7AB90321L,
463 0xAE7367CAL, 0x5C18E4C9L, 0x4F48173DL, 0xBD23943EL,
464 0xF36E6F75L, 0x0105EC76L, 0x12551F82L, 0xE03E9C81L,
465 0x34F4F86AL, 0xC69F7B69L, 0xD5CF889DL, 0x27A40B9EL,
466 0x79B737BAL, 0x8BDCB4B9L, 0x988C474DL, 0x6AE7C44EL,
467 0xBE2DA0A5L, 0x4C4623A6L, 0x5F16D052L, 0xAD7D5351L,
468 };
469
470 static guint32
471 crc32c(const guint8* buf, unsigned int len, guint32 crc32_init)
472 {
473   unsigned int i;
474   guint32 crc32;
475
476   crc32 = crc32_init;
477   for (i = 0; i < len; i++)
478     CRC32C(crc32, buf[i]);
479
480   return ( crc32 );
481 }
482
483 static guint32
484 finalize_crc32c(guint32 crc32)
485 {
486   guint32 result;
487   guint8 byte0,byte1,byte2,byte3;
488
489   result = ~crc32;
490   byte0 = result & 0xff;
491   byte1 = (result>>8) & 0xff;
492   byte2 = (result>>16) & 0xff;
493   byte3 = (result>>24) & 0xff;
494   result = ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3);
495   return ( result );
496 }
497
498 static unsigned long
499 number_of_padding_bytes (unsigned long length)
500 {
501   unsigned long remainder;
502
503   remainder = length % 4;
504
505   if (remainder == 0)
506     return 0;
507   else
508     return 4 - remainder;
509 }
510
511 /*----------------------------------------------------------------------
512  * Write current packet out
513  */
514 static void
515 write_current_packet (void)
516 {
517     int length = 0;
518     int proto_length = 0;
519     int ip_length = 0;
520     int eth_trailer_length = 0;
521     int i, padding_length;
522     guint32 u;
523     struct pcaprec_hdr ph;
524
525     if (curr_offset > 0) {
526         /* Write the packet */
527
528         /* Compute packet length */
529         length = curr_offset;
530         if (hdr_data_chunk) { length += sizeof(HDR_DATA_CHUNK) + number_of_padding_bytes(curr_offset); }
531         if (hdr_sctp) { length += sizeof(HDR_SCTP); }
532         if (hdr_udp) { length += sizeof(HDR_UDP); proto_length = length; }
533         if (hdr_tcp) { length += sizeof(HDR_TCP); proto_length = length; }
534         if (hdr_ip) { length += sizeof(HDR_IP); ip_length = length; }
535         if (hdr_ethernet) {
536             length += sizeof(HDR_ETHERNET);
537             /* Pad trailer */
538             if (length < 60) {
539                 eth_trailer_length = 60 - length;
540                 length = 60;
541             }
542         }
543
544         /* Write PCap header */
545         ph.ts_sec = ts_sec;
546         ph.ts_usec = ts_usec;
547         if (ts_fmt == NULL) { ts_usec++; }      /* fake packet counter */
548         ph.incl_len = length;
549         ph.orig_len = length;
550         fwrite(&ph, sizeof(ph), 1, output_file);
551
552         /* Write Ethernet header */
553         if (hdr_ethernet) {
554             HDR_ETHERNET.l3pid = g_htons(hdr_ethernet_proto);
555             fwrite(&HDR_ETHERNET, sizeof(HDR_ETHERNET), 1, output_file);
556         }
557
558         /* Write IP header */
559         if (hdr_ip) {
560             HDR_IP.packet_length = g_htons(ip_length);
561             HDR_IP.protocol = (guint8) hdr_ip_proto;
562             HDR_IP.hdr_checksum = 0;
563             HDR_IP.hdr_checksum = in_checksum(&HDR_IP, sizeof(HDR_IP));
564             fwrite(&HDR_IP, sizeof(HDR_IP), 1, output_file);
565         }
566
567         /* initialize pseudo header for checksum calculation */
568         pseudoh.src_addr    = HDR_IP.src_addr;
569         pseudoh.dest_addr   = HDR_IP.dest_addr;
570         pseudoh.zero        = 0;
571         pseudoh.protocol    = (guint8) hdr_ip_proto;
572         pseudoh.length      = g_htons(proto_length);
573
574         /* Write UDP header */
575         if (hdr_udp) {
576             HDR_UDP.source_port = g_htons(hdr_src_port);
577             HDR_UDP.dest_port = g_htons(hdr_dest_port);
578             HDR_UDP.length = g_htons(proto_length);
579
580             HDR_UDP.checksum = 0;
581             u = g_ntohs(in_checksum(&pseudoh, sizeof(pseudoh))) + 
582                     g_ntohs(in_checksum(&HDR_UDP, sizeof(HDR_UDP))) +
583                     g_ntohs(in_checksum(packet_buf, curr_offset));
584             HDR_UDP.checksum = g_htons((u & 0xffff) + (u>>16));
585             if (HDR_UDP.checksum == 0) /* differenciate between 'none' and 0 */
586                     HDR_UDP.checksum = g_htons(1);
587
588             fwrite(&HDR_UDP, sizeof(HDR_UDP), 1, output_file);
589         }
590
591         /* Write TCP header */
592         if (hdr_tcp) {
593             HDR_TCP.source_port = g_htons(hdr_src_port);
594             HDR_TCP.dest_port = g_htons(hdr_dest_port);
595             /* HDR_TCP.seq_num already correct */
596             HDR_TCP.window = g_htons(0x2000);
597
598             HDR_TCP.checksum = 0;
599             u = g_ntohs(in_checksum(&pseudoh, sizeof(pseudoh))) + 
600                     g_ntohs(in_checksum(&HDR_TCP, sizeof(HDR_TCP))) +
601                     g_ntohs(in_checksum(packet_buf, curr_offset));
602             HDR_TCP.checksum = g_htons((u & 0xffff) + (u>>16));
603             if (HDR_TCP.checksum == 0) /* differenciate between 'none' and 0 */
604                     HDR_TCP.checksum = g_htons(1);
605
606             fwrite(&HDR_TCP, sizeof(HDR_TCP), 1, output_file);
607         }
608
609         /* Compute DATA chunk header and append padding */
610         if (hdr_data_chunk) {
611             HDR_DATA_CHUNK.type   = hdr_data_chunk_type;
612             HDR_DATA_CHUNK.bits   = hdr_data_chunk_bits;
613             HDR_DATA_CHUNK.length = g_htons(curr_offset + sizeof(HDR_DATA_CHUNK));
614             HDR_DATA_CHUNK.tsn    = g_htonl(hdr_data_chunk_tsn);
615             HDR_DATA_CHUNK.sid    = g_htons(hdr_data_chunk_sid);
616             HDR_DATA_CHUNK.ssn    = g_htons(hdr_data_chunk_ssn);
617             HDR_DATA_CHUNK.ppid   = g_htonl(hdr_data_chunk_ppid);
618
619             padding_length = number_of_padding_bytes(curr_offset);
620             for (i=0; i<padding_length; i++)
621               write_byte("0");
622         }
623
624         /* Write SCTP header */
625         if (hdr_sctp) {
626             HDR_SCTP.src_port  = g_htons(hdr_sctp_src);
627             HDR_SCTP.dest_port = g_htons(hdr_sctp_dest);
628             HDR_SCTP.tag       = g_htonl(hdr_sctp_tag);
629             HDR_SCTP.checksum  = g_htonl(0);
630             HDR_SCTP.checksum  = crc32c((guint8 *)&HDR_SCTP, sizeof(HDR_SCTP), ~0L);
631             if (hdr_data_chunk)
632               HDR_SCTP.checksum  = crc32c((guint8 *)&HDR_DATA_CHUNK, sizeof(HDR_DATA_CHUNK), HDR_SCTP.checksum);
633             HDR_SCTP.checksum  = g_htonl(finalize_crc32c(crc32c(packet_buf, curr_offset, HDR_SCTP.checksum)));
634
635             fwrite(&HDR_SCTP, sizeof(HDR_SCTP), 1, output_file);
636         }
637
638         /* Write DATA chunk header */
639         if (hdr_data_chunk) {
640             fwrite(&HDR_DATA_CHUNK, sizeof(HDR_DATA_CHUNK), 1, output_file);
641         }
642         /* Write packet */
643         fwrite(packet_buf, curr_offset, 1, output_file);
644
645         /* Write Ethernet trailer */
646         if (hdr_ethernet && eth_trailer_length > 0) {
647             memset(tempbuf, 0, eth_trailer_length);
648             fwrite(tempbuf, eth_trailer_length, 1, output_file);
649         }
650
651         if (!quiet)
652             fprintf(stderr, "Wrote packet of %lu bytes at %u\n", curr_offset, g_ntohl(HDR_TCP.seq_num));
653         num_packets_written ++;
654     }
655
656     HDR_TCP.seq_num = g_htonl(g_ntohl(HDR_TCP.seq_num) + curr_offset);
657
658     packet_start += curr_offset;
659     curr_offset = 0;
660 }
661
662 /*----------------------------------------------------------------------
663  * Write the PCap file header
664  */
665 static void
666 write_file_header (void)
667 {
668     struct pcap_hdr fh;
669
670     fh.magic = PCAP_MAGIC;
671     fh.version_major = 2;
672     fh.version_minor = 4;
673     fh.thiszone = 0;
674     fh.sigfigs = 0;
675     fh.snaplen = 102400;
676     fh.network = pcap_link_type;
677
678     fwrite(&fh, sizeof(fh), 1, output_file);
679 }
680
681 /*----------------------------------------------------------------------
682  * Append a token to the packet preamble.
683  */
684 static void
685 append_to_preamble(char *str)
686 {
687     size_t toklen;
688
689     if (packet_preamble_len != 0) {
690         if (packet_preamble_len == PACKET_PREAMBLE_MAX_LEN)
691             return;     /* no room to add more preamble */
692         /* Add a blank separator between the previous token and this token. */
693         packet_preamble[packet_preamble_len++] = ' ';
694     }
695     toklen = strlen(str);
696     if (toklen != 0) {
697         if (packet_preamble_len + toklen > PACKET_PREAMBLE_MAX_LEN)
698             return;     /* no room to add the token to the preamble */
699         strcpy(&packet_preamble[packet_preamble_len], str);
700         packet_preamble_len += toklen;
701     }
702 }
703
704 /*----------------------------------------------------------------------
705  * Parse the preamble to get the timecode.
706  */
707 static void
708 parse_preamble (void)
709 {
710         struct tm timecode;
711         char *subsecs;
712         char *p;
713         int  subseclen;
714         int  i;
715
716         /*
717          * If no "-t" flag was specified, don't attempt to parse a packet
718          * preamble to extract a time stamp.
719          */
720         if (ts_fmt == NULL)
721             return;
722
723         ts_sec  = 0;
724         ts_usec = 0;
725
726         /*
727          * Null-terminate the preamble.
728          */
729         packet_preamble[packet_preamble_len] = '\0';
730
731         /* Ensure preamble has more than two chars before atempting to parse.
732          * This should cover line breaks etc that get counted.
733          */
734         if ( strlen(packet_preamble) > 2 ) {
735                 /*
736                  * Initialize to the Epoch, just in case not all fields
737                  * of the date and time are specified.
738                  */
739                 timecode.tm_sec = 0;
740                 timecode.tm_min = 0;
741                 timecode.tm_hour = 0;
742                 timecode.tm_mday = 1;
743                 timecode.tm_mon = 0;
744                 timecode.tm_year = 70;
745                 timecode.tm_wday = 0;
746                 timecode.tm_yday = 0;
747                 timecode.tm_isdst = -1;
748
749                 /* Get Time leaving subseconds */
750                 subsecs = strptime( packet_preamble, ts_fmt, &timecode );
751                 if (subsecs != NULL) {
752                         /* Get the long time from the tm structure */
753                         ts_sec  = (gint32)mktime( &timecode );
754                 } else
755                         ts_sec = -1;    /* we failed to parse it */
756
757                 /* This will ensure incorrectly parsed dates get set to zero */
758                 if ( -1 == ts_sec )
759                 {
760                         ts_sec  = 0;
761                         ts_usec = 0;
762                 }
763                 else
764                 {
765                         /* Parse subseconds */
766                         ts_usec = strtol(subsecs, &p, 10);
767                         if (subsecs == p) {
768                                 /* Error */
769                                 ts_usec = 0;
770                         } else {
771                                 /*
772                                  * Convert that number to a number
773                                  * of microseconds; if it's N digits
774                                  * long, it's in units of 10^(-N) seconds,
775                                  * so, to convert it to units of
776                                  * 10^-6 seconds, we multiply by
777                                  * 10^(6-N).
778                                  */
779                                 subseclen = p - subsecs;
780                                 if (subseclen > 6) {
781                                         /*
782                                          * *More* than 6 digits; 6-N is
783                                          * negative, so we divide by
784                                          * 10^(N-6).
785                                          */
786                                         for (i = subseclen - 6; i != 0; i--)
787                                                 ts_usec /= 10;
788                                 } else if (subseclen < 6) {
789                                         for (i = 6 - subseclen; i != 0; i--)
790                                                 ts_usec *= 10;
791                                 }
792                         }
793                 }
794         }
795
796
797         /*printf("Format(%s), time(%u), subsecs(%u)\n\n", ts_fmt, ts_sec, ts_usec);*/
798
799         /* Clear Preamble */
800         packet_preamble_len = 0;
801 }
802
803 /*----------------------------------------------------------------------
804  * Start a new packet
805  */
806 static void
807 start_new_packet (void)
808 {
809     if (debug>=1)
810         fprintf(stderr, "Start new packet\n");
811
812     /* Write out the current packet, if required */
813     write_current_packet();
814     num_packets_read ++;
815
816     /* Ensure we parse the packet preamble as it may contain the time */
817     parse_preamble();
818 }
819
820 /*----------------------------------------------------------------------
821  * Process a directive
822  */
823 static void
824 process_directive (char *str)
825 {
826     fprintf(stderr, "\n--- Directive [%s] currently unsupported ---\n", str+10);
827
828 }
829
830 /*----------------------------------------------------------------------
831  * Parse a single token (called from the scanner)
832  */
833 void
834 parse_token (token_t token, char *str)
835 {
836     unsigned long num;
837
838     /*
839      * This is implemented as a simple state machine of five states.
840      * State transitions are caused by tokens being received from the
841      * scanner. The code should be self_documenting.
842      */
843
844     if (debug>=2) {
845         /* Sanitize - remove all '\r' */
846         char *c;
847         if (str!=NULL) { while ((c = strchr(str, '\r')) != NULL) *c=' '; }
848
849         fprintf(stderr, "(%s, %s \"%s\") -> (",
850                 state_str[state], token_str[token], str ? str : "");
851     }
852
853     switch(state) {
854
855     /* ----- Waiting for new packet -------------------------------------------*/
856     case INIT:
857         switch(token) {
858         case T_TEXT:
859             append_to_preamble(str);
860             break;
861         case T_DIRECTIVE:
862             process_directive(str);
863             break;
864         case T_OFFSET:
865             num = parse_num(str, TRUE);
866             if (num==0) {
867                 /* New packet starts here */
868                 start_new_packet();
869                 state = READ_OFFSET;
870             }
871             break;
872         default:
873             break;
874         }
875         break;
876
877     /* ----- Processing packet, start of new line -----------------------------*/
878     case START_OF_LINE:
879         switch(token) {
880         case T_TEXT:
881             append_to_preamble(str);
882             break;
883         case T_DIRECTIVE:
884             process_directive(str);
885             break;
886         case T_OFFSET:
887             num = parse_num(str, TRUE);
888             if (num==0) {
889                 /* New packet starts here */
890                 start_new_packet();
891                 packet_start = 0;
892                 state = READ_OFFSET;
893             } else if ((num - packet_start) != curr_offset) {
894                 /*
895                  * The offset we read isn't the one we expected.
896                  * This may only mean that we mistakenly interpreted
897                  * some text as byte values (e.g., if the text dump
898                  * of packet data included a number with spaces around
899                  * it).  If the offset is less than what we expected,
900                  * assume that's the problem, and throw away the putative
901                  * extra byte values.
902                  */
903                 if (num < curr_offset) {
904                     unwrite_bytes(curr_offset - num);
905                     state = READ_OFFSET;
906                 } else {
907                     /* Bad offset; switch to INIT state */
908                     if (debug>=1)
909                         fprintf(stderr, "Inconsistent offset. Expecting %0lX, got %0lX. Ignoring rest of packet\n",
910                                 curr_offset, num);
911                     write_current_packet();
912                     state = INIT;
913                 }
914             } else
915                 state = READ_OFFSET;
916             break;
917         default:
918             break;
919         }
920         break;
921
922     /* ----- Processing packet, read offset -----------------------------------*/
923     case READ_OFFSET:
924         switch(token) {
925         case T_BYTE:
926             /* Record the byte */
927             state = READ_BYTE;
928             write_byte(str);
929             break;
930         case T_TEXT:
931         case T_DIRECTIVE:
932         case T_OFFSET:
933             state = READ_TEXT;
934             break;
935         case T_EOL:
936             state = START_OF_LINE;
937             break;
938         default:
939             break;
940         }
941         break;
942
943     /* ----- Processing packet, read byte -------------------------------------*/
944     case READ_BYTE:
945         switch(token) {
946         case T_BYTE:
947             /* Record the byte */
948             write_byte(str);
949             break;
950         case T_TEXT:
951         case T_DIRECTIVE:
952         case T_OFFSET:
953             state = READ_TEXT;
954             break;
955         case T_EOL:
956             state = START_OF_LINE;
957             break;
958         default:
959             break;
960         }
961         break;
962
963     /* ----- Processing packet, read text -------------------------------------*/
964     case READ_TEXT:
965         switch(token) {
966         case T_EOL:
967             state = START_OF_LINE;
968             break;
969         default:
970             break;
971         }
972         break;
973
974     default:
975         fprintf(stderr, "FATAL ERROR: Bad state (%d)", state);
976         exit(-1);
977     }
978
979     if (debug>=2)
980         fprintf(stderr, ", %s)\n", state_str[state]);
981
982 }
983
984 /*----------------------------------------------------------------------
985  * Print usage string and exit
986  */
987 static void
988 usage (void)
989 {
990     fprintf(stderr,
991             "Text2pcap %s"
992 #ifdef SVNVERSION
993             " (" SVNVERSION ")"
994 #endif
995             "\n"
996             "Generate a capture file from an ASCII hexdump of packets.\n"
997             "See http://www.wireshark.org for more information.\n"
998             "\n"
999             "Usage: text2pcap [options] <input-filename> <output-filename>\n"
1000             "\n"
1001             "where  <input-filename> specifies input  filename (use - for standard input)\n"
1002             "      <output-filename> specifies output filename (use - for standard output)\n"
1003             "\n"
1004             "Input:\n"
1005             "  -o hex|oct             parse offsets as (h)ex or (o)ctal, default is hex\n"
1006             "  -t <timefmt>           treats the text before the packet as a date/time code;\n"
1007             "                         the specified argument is a format string of the sort \n"
1008             "                         supported by strptime.\n"
1009             "                         Example: The time \"10:15:14.5476\" has the format code\n"
1010             "                         \"%%H:%%M:%%S.\"\n"
1011             "                         NOTE: The subsecond component delimiter must be given\n"
1012             "                          (.) but no pattern is required; the remaining number\n"
1013             "                          is assumed to be fractions of a second.\n"
1014             "\n"
1015             "Output:\n"
1016             "  -l <typenum>           link-layer type number. Default is 1 (Ethernet). \n"
1017             "                         See the file net/bpf.h for list of numbers.\n"
1018             "  -m <max-packet>        max packet length in output, default is %d\n"
1019             "\n"
1020             "Prepend dummy header:\n"
1021             "  -e <l3pid>             prepend dummy Ethernet II header with specified L3PID\n"
1022             "                         (in HEX)\n"
1023             "                         Example: -e 0x800\n"
1024             "  -i <proto>             prepend dummy IP header with specified IP protocol\n"
1025             "                         (in DECIMAL). \n"
1026             "                         Automatically prepends Ethernet header as well.\n"
1027             "                         Example: -i 46\n"
1028             "  -u <srcp>,<destp>      prepend dummy UDP header with specified\n"
1029             "                         dest and source ports (in DECIMAL).\n"
1030             "                         Automatically prepends Ethernet & IP headers as well\n"
1031             "                         Example: -u 30,40\n"
1032             "  -T <srcp>,<destp>      prepend dummy TCP header with specified \n"
1033             "                         dest and source ports (in DECIMAL).\n"
1034             "                         Automatically prepends Ethernet & IP headers as well\n"
1035             "                         Example: -T 50,60\n"
1036             "  -s <srcp>,<dstp>,<tag> prepend dummy SCTP header with specified \n"
1037             "                         dest/source ports and verification tag (in DECIMAL).\n"
1038             "                         Automatically prepends Ethernet & IP headers as well\n"
1039             "                         Example: -s 30,40,34\n"
1040             "  -S <srcp>,<dstp>,<ppi> prepend dummy SCTP header with specified \n"
1041             "                         dest/source ports and verification tag 0. \n"
1042             "                         It also prepends a dummy SCTP DATA \n"
1043             "                         chunk header with payload protocol identifier ppi.\n"
1044             "                         Example: -S 30,40,34\n"
1045             "\n"
1046             "Miscellaneous:\n"
1047             "  -h                     display this help and exit\n"
1048             "  -d                     detailed debug of parser states \n"
1049             "  -q                     generate no output at all (automatically turns off -d)\n"
1050             "",
1051             VERSION, MAX_PACKET);
1052
1053     exit(-1);
1054 }
1055
1056 /*----------------------------------------------------------------------
1057  * Parse CLI options
1058  */
1059 static void
1060 parse_options (int argc, char *argv[])
1061 {
1062     int c;
1063     char *p;
1064
1065     /* Scan CLI parameters */
1066     while ((c = getopt(argc, argv, "dhqe:i:l:m:o:u:s:S:t:T:")) != -1) {
1067         switch(c) {
1068         case '?': usage(); break;
1069         case 'h': usage(); break;
1070         case 'd': if (!quiet) debug++; break;
1071         case 'q': quiet = TRUE; debug = FALSE; break;
1072         case 'l': pcap_link_type = strtol(optarg, NULL, 0); break;
1073         case 'm': max_offset = strtol(optarg, NULL, 0); break;
1074         case 'o':
1075             if (optarg[0]!='h' && optarg[0] != 'o') {
1076                 fprintf(stderr, "Bad argument for '-e': %s\n", optarg);
1077                 usage();
1078             }
1079             offset_base = (optarg[0]=='o') ? 8 : 16;
1080             break;
1081         case 'e':
1082             hdr_ethernet = TRUE;
1083             if (sscanf(optarg, "%lx", &hdr_ethernet_proto) < 1) {
1084                 fprintf(stderr, "Bad argument for '-e': %s\n", optarg);
1085                 usage();
1086             }
1087             break;
1088
1089         case 'i':
1090             hdr_ip = TRUE;
1091             hdr_ip_proto = strtol(optarg, &p, 10);
1092             if (p == optarg || *p != '\0' || hdr_ip_proto < 0 ||
1093                   hdr_ip_proto > 255) {
1094                 fprintf(stderr, "Bad argument for '-i': %s\n", optarg);
1095                 usage();
1096             }
1097             hdr_ethernet = TRUE;
1098             hdr_ethernet_proto = 0x800;
1099             break;
1100
1101         case 's':
1102             hdr_sctp       = TRUE;
1103             hdr_sctp_src   = strtol(optarg, &p, 10);
1104             if (p == optarg || (*p != ',' && *p != '\0')) {
1105                 fprintf(stderr, "Bad src port for '-%c'\n", c);
1106                 usage();
1107             }
1108             if (*p == '\0') {
1109                 fprintf(stderr, "No dest port specified for '-%c'\n", c);
1110                 usage();
1111             }
1112             p++;
1113             optarg = p;
1114             hdr_sctp_dest = strtol(optarg, &p, 10);
1115             if (p == optarg || (*p != ',' && *p != '\0')) {
1116                 fprintf(stderr, "Bad dest port for '-s'\n");
1117                 usage();
1118             }
1119             if (*p == '\0') {
1120                 fprintf(stderr, "No tag specified for '-%c'\n", c);
1121                 usage();
1122             }
1123             p++;
1124             optarg = p;
1125             hdr_sctp_tag = strtol(optarg, &p, 10);
1126             if (p == optarg || *p != '\0') {
1127                 fprintf(stderr, "Bad tag for '-%c'\n", c);
1128                 usage();
1129             }
1130
1131             hdr_ip = TRUE;
1132             hdr_ip_proto = 132;
1133             hdr_ethernet = TRUE;
1134             hdr_ethernet_proto = 0x800;
1135             break;
1136         case 'S':
1137             hdr_sctp       = TRUE;
1138             hdr_data_chunk = TRUE;
1139             hdr_sctp_src   = strtol(optarg, &p, 10);
1140             if (p == optarg || (*p != ',' && *p != '\0')) {
1141                 fprintf(stderr, "Bad src port for '-%c'\n", c);
1142                 usage();
1143             }
1144             if (*p == '\0') {
1145                 fprintf(stderr, "No dest port specified for '-%c'\n", c);
1146                 usage();
1147             }
1148             p++;
1149             optarg = p;
1150             hdr_sctp_dest = strtol(optarg, &p, 10);
1151             if (p == optarg || (*p != ',' && *p != '\0')) {
1152                 fprintf(stderr, "Bad dest port for '-s'\n");
1153                 usage();
1154             }
1155             if (*p == '\0') {
1156                 fprintf(stderr, "No ppi specified for '-%c'\n", c);
1157                 usage();
1158             }
1159             p++;
1160             optarg = p;
1161             hdr_data_chunk_ppid = strtoul(optarg, &p, 10);
1162             if (p == optarg || *p != '\0') {
1163                 fprintf(stderr, "Bad ppi for '-%c'\n", c);
1164                 usage();
1165             }
1166
1167             hdr_ip = TRUE;
1168             hdr_ip_proto = 132;
1169             hdr_ethernet = TRUE;
1170             hdr_ethernet_proto = 0x800;
1171             break;
1172
1173         case 't':
1174             ts_fmt = optarg;
1175             break;
1176
1177         case 'u':
1178             hdr_udp = TRUE;
1179             hdr_tcp = FALSE;
1180             hdr_src_port = strtol(optarg, &p, 10);
1181             if (p == optarg || (*p != ',' && *p != '\0')) {
1182                 fprintf(stderr, "Bad src port for '-u'\n");
1183                 usage();
1184             }
1185             if (*p == '\0') {
1186                 fprintf(stderr, "No dest port specified for '-u'\n");
1187                 usage();
1188             }
1189             p++;
1190             optarg = p;
1191             hdr_dest_port = strtol(optarg, &p, 10);
1192             if (p == optarg || *p != '\0') {
1193                 fprintf(stderr, "Bad dest port for '-u'\n");
1194                 usage();
1195             }
1196             hdr_ip = TRUE;
1197             hdr_ip_proto = 17;
1198             hdr_ethernet = TRUE;
1199             hdr_ethernet_proto = 0x800;
1200             break;
1201
1202         case 'T':
1203             hdr_tcp = TRUE;
1204             hdr_udp = FALSE;
1205             hdr_src_port = strtol(optarg, &p, 10);
1206             if (p == optarg || (*p != ',' && *p != '\0')) {
1207                 fprintf(stderr, "Bad src port for '-T'\n");
1208                 usage();
1209             }
1210             if (*p == '\0') {
1211                 fprintf(stderr, "No dest port specified for '-u'\n");
1212                 usage();
1213             }
1214             p++;
1215             optarg = p;
1216             hdr_dest_port = strtol(optarg, &p, 10);
1217             if (p == optarg || *p != '\0') {
1218                 fprintf(stderr, "Bad dest port for '-T'\n");
1219                 usage();
1220             }
1221             hdr_ip = TRUE;
1222             hdr_ip_proto = 6;
1223             hdr_ethernet = TRUE;
1224             hdr_ethernet_proto = 0x800;
1225             break;
1226
1227         default:
1228             usage();
1229         }
1230     }
1231
1232     if (optind >= argc || argc-optind < 2) {
1233         fprintf(stderr, "Must specify input and output filename\n");
1234         usage();
1235     }
1236
1237     if (strcmp(argv[optind], "-")) {
1238         input_filename = strdup(argv[optind]);
1239         input_file = fopen(input_filename, "rb");
1240         if (!input_file) {
1241             fprintf(stderr, "Cannot open file [%s] for reading: %s\n",
1242                     input_filename, strerror(errno));
1243             exit(-1);
1244         }
1245     } else {
1246         input_filename = "Standard input";
1247         input_file = stdin;
1248     }
1249
1250     if (strcmp(argv[optind+1], "-")) {
1251         output_filename = strdup(argv[optind+1]);
1252         output_file = fopen(output_filename, "wb");
1253         if (!output_file) {
1254             fprintf(stderr, "Cannot open file [%s] for writing: %s\n",
1255                     output_filename, strerror(errno));
1256             exit(-1);
1257         }
1258     } else {
1259         output_filename = "Standard output";
1260         output_file = stdout;
1261     }
1262
1263     /* Some validation */
1264     if (pcap_link_type != 1 && hdr_ethernet) {
1265         fprintf(stderr, "Dummy headers (-e, -i, -u, -s, -S -T) cannot be specified with link type override (-l)\n");
1266         exit(-1);
1267     }
1268
1269     /* Set up our variables */
1270     if (!input_file) {
1271         input_file = stdin;
1272         input_filename = "Standard input";
1273     }
1274     if (!output_file) {
1275         output_file = stdout;
1276         output_filename = "Standard output";
1277     }
1278
1279     ts_sec = time(0);           /* initialize to current time */
1280
1281     /* Display summary of our state */
1282     if (!quiet) {
1283         fprintf(stderr, "Input from: %s\n", input_filename);
1284         fprintf(stderr, "Output to: %s\n", output_filename);
1285
1286         if (hdr_ethernet) fprintf(stderr, "Generate dummy Ethernet header: Protocol: 0x%0lX\n",
1287                                   hdr_ethernet_proto);
1288         if (hdr_ip) fprintf(stderr, "Generate dummy IP header: Protocol: %ld\n",
1289                             hdr_ip_proto);
1290         if (hdr_udp) fprintf(stderr, "Generate dummy UDP header: Source port: %ld. Dest port: %ld\n",
1291                              hdr_src_port, hdr_dest_port);
1292         if (hdr_tcp) fprintf(stderr, "Generate dummy TCP header: Source port: %ld. Dest port: %ld\n",
1293                              hdr_src_port, hdr_dest_port);
1294         if (hdr_sctp) fprintf(stderr, "Generate dummy SCTP header: Source port: %ld. Dest port: %ld. Tag: %ld\n",
1295                               hdr_sctp_src, hdr_sctp_dest, hdr_sctp_tag);
1296         if (hdr_data_chunk) fprintf(stderr, "Generate dummy DATA chunk header: TSN: %lu. SID: %d. SSN: %d. PPID: %lu\n",
1297                                     hdr_data_chunk_tsn, hdr_data_chunk_sid, hdr_data_chunk_ssn, hdr_data_chunk_ppid);
1298     }
1299 }
1300
1301 int main(int argc, char *argv[])
1302 {
1303     parse_options(argc, argv);
1304
1305     assert(input_file != NULL);
1306     assert(output_file != NULL);
1307
1308     write_file_header();
1309
1310     yyin = input_file;
1311     yylex();
1312
1313     write_current_packet();
1314     if (debug)
1315         fprintf(stderr, "\n-------------------------\n");
1316     if (!quiet) {
1317     fprintf(stderr, "Read %ld potential packets, wrote %ld packets\n",
1318             num_packets_read, num_packets_written);
1319     }
1320     return 0;
1321 }