Use the dump parameters structure for non-pcapng-specific stuff.
[metze/wireshark/wip.git] / editcap.c
1 /* editcap.c
2  * Edit capture files.  We can delete packets, adjust timestamps, or
3  * simply convert from one format to another format.
4  *
5  * Originally written by Richard Sharpe.
6  * Improved by Guy Harris.
7  * Further improved by Richard Sharpe.
8  *
9  * Copyright 2013, Richard Sharpe <realrichardsharpe[AT]gmail.com>
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * SPDX-License-Identifier: GPL-2.0-or-later
16  */
17
18 #include <config.h>
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <stdarg.h>
24
25 /*
26  * Just make sure we include the prototype for strptime as well
27  * (needed for glibc 2.2) but make sure we do this only if not
28  * yet defined.
29  */
30
31 #ifndef __USE_XOPEN
32 #  define __USE_XOPEN
33 #endif
34
35 #include <time.h>
36 #include <glib.h>
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
42 #ifdef HAVE_GETOPT_H
43 #include <getopt.h>
44 #endif
45
46 #include <wiretap/wtap.h>
47
48 #include "epan/etypes.h"
49 #include "epan/dissectors/packet-ieee80211-radiotap-defs.h"
50
51 #ifndef HAVE_GETOPT_LONG
52 #include "wsutil/wsgetopt.h"
53 #endif
54
55 #ifdef _WIN32
56 #include <wsutil/unicode-utils.h>
57 #include <process.h>    /* getpid */
58 #include <winsock2.h>
59 #endif
60
61 #ifndef HAVE_STRPTIME
62 # include "wsutil/strptime.h"
63 #endif
64
65 #include <wsutil/crash_info.h>
66 #include <wsutil/clopts_common.h>
67 #include <wsutil/cmdarg_err.h>
68 #include <wsutil/filesystem.h>
69 #include <wsutil/file_util.h>
70 #include <wsutil/wsgcrypt.h>
71 #include <wsutil/plugins.h>
72 #include <wsutil/privileges.h>
73 #include <wsutil/report_message.h>
74 #include <wsutil/strnatcmp.h>
75 #include <wsutil/str_util.h>
76 #include <version_info.h>
77 #include <wsutil/pint.h>
78 #include <wsutil/strtoi.h>
79 #include <wiretap/wtap_opttypes.h>
80 #include <wiretap/pcapng.h>
81
82 #include "ui/failure_message.h"
83
84 #include "ringbuffer.h" /* For RINGBUFFER_MAX_NUM_FILES */
85
86 #define INVALID_OPTION 1
87 #define INVALID_FILE 2
88 #define CANT_EXTRACT_PREFIX 2
89 #define WRITE_ERROR 2
90 #define DUMP_ERROR 2
91
92 /*
93  * Some globals so we can pass things to various routines
94  */
95
96 struct select_item {
97     gboolean inclusive;
98     guint first, second;
99 };
100
101 /*
102  * Duplicate frame detection
103  */
104 typedef struct _fd_hash_t {
105     guint8     digest[16];
106     guint32    len;
107     nstime_t   frame_time;
108 } fd_hash_t;
109
110 #define DEFAULT_DUP_DEPTH       5   /* Used with -d */
111 #define MAX_DUP_DEPTH     1000000   /* the maximum window (and actual size of fd_hash[]) for de-duplication */
112
113 static fd_hash_t fd_hash[MAX_DUP_DEPTH];
114 static int       dup_window    = DEFAULT_DUP_DEPTH;
115 static int       cur_dup_entry = 0;
116
117 static guint32   ignored_bytes  = 0;  /* Used with -I */
118
119 #define ONE_BILLION 1000000000
120
121 /* Weights of different errors we can introduce */
122 /* We should probably make these command-line arguments */
123 /* XXX - Should we add a bit-level error? */
124 #define ERR_WT_BIT      5   /* Flip a random bit */
125 #define ERR_WT_BYTE     5   /* Substitute a random byte */
126 #define ERR_WT_ALNUM    5   /* Substitute a random character in [A-Za-z0-9] */
127 #define ERR_WT_FMT      2   /* Substitute "%s" */
128 #define ERR_WT_AA       1   /* Fill the remainder of the buffer with 0xAA */
129 #define ERR_WT_TOTAL    (ERR_WT_BIT + ERR_WT_BYTE + ERR_WT_ALNUM + ERR_WT_FMT + ERR_WT_AA)
130
131 #define ALNUM_CHARS     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
132 #define ALNUM_LEN       (sizeof(ALNUM_CHARS) - 1)
133
134 struct time_adjustment {
135     nstime_t tv;
136     int is_negative;
137 };
138
139 typedef struct _chop_t {
140     int len_begin;
141     int off_begin_pos;
142     int off_begin_neg;
143     int len_end;
144     int off_end_pos;
145     int off_end_neg;
146 } chop_t;
147
148
149 /* Table of user comments */
150 GTree *frames_user_comments = NULL;
151
152 #define MAX_SELECTIONS 512
153 static struct select_item     selectfrm[MAX_SELECTIONS];
154 static guint                  max_selected              = 0;
155 static int                    keep_em                   = 0;
156 #ifdef PCAP_NG_DEFAULT
157 static int                    out_file_type_subtype     = WTAP_FILE_TYPE_SUBTYPE_PCAPNG; /* default to pcapng   */
158 #else
159 static int                    out_file_type_subtype     = WTAP_FILE_TYPE_SUBTYPE_PCAP; /* default to pcap     */
160 #endif
161 static int                    out_frame_type            = -2; /* Leave frame type alone */
162 static int                    verbose                   = 0;  /* Not so verbose         */
163 static struct time_adjustment time_adj                  = {NSTIME_INIT_ZERO, 0}; /* no adjustment */
164 static nstime_t               relative_time_window      = NSTIME_INIT_ZERO; /* de-dup time window */
165 static double                 err_prob                  = -1.0;
166 static time_t                 starttime                 = 0;
167 static time_t                 stoptime                  = 0;
168 static gboolean               check_startstop           = FALSE;
169 static gboolean               rem_vlan                  = FALSE;
170 static gboolean               dup_detect                = FALSE;
171 static gboolean               dup_detect_by_time        = FALSE;
172 static gboolean               skip_radiotap             = FALSE;
173
174 static int                    do_strict_time_adjustment = FALSE;
175 static struct time_adjustment strict_time_adj           = {NSTIME_INIT_ZERO, 0}; /* strict time adjustment */
176 static nstime_t               previous_time             = NSTIME_INIT_ZERO; /* previous time */
177
178 static int find_dct2000_real_data(guint8 *buf);
179 static void handle_chopping(chop_t chop, wtap_packet_header *out_phdr,
180                             const wtap_packet_header *in_phdr, guint8 **buf,
181                             gboolean adjlen);
182
183 static gchar *
184 abs_time_to_str_with_sec_resolution(const nstime_t *abs_time)
185 {
186     struct tm *tmp;
187     gchar     *buf = (gchar *)g_malloc(16);
188
189     tmp = localtime(&abs_time->secs);
190
191     if (tmp) {
192         g_snprintf(buf, 16, "%d%02d%02d%02d%02d%02d",
193             tmp->tm_year + 1900,
194             tmp->tm_mon+1,
195             tmp->tm_mday,
196             tmp->tm_hour,
197             tmp->tm_min,
198             tmp->tm_sec);
199     } else {
200         buf[0] = '\0';
201     }
202
203     return buf;
204 }
205
206 static gchar *
207 fileset_get_filename_by_pattern(guint idx, const wtap_rec *rec,
208                                 gchar *fprefix, gchar *fsuffix)
209 {
210     gchar  filenum[5+1];
211     gchar *timestr;
212     gchar *abs_str;
213
214     g_snprintf(filenum, sizeof(filenum), "%05u", idx % RINGBUFFER_MAX_NUM_FILES);
215     if (rec->presence_flags & WTAP_HAS_TS) {
216         timestr = abs_time_to_str_with_sec_resolution(&rec->ts);
217         abs_str = g_strconcat(fprefix, "_", filenum, "_", timestr, fsuffix, NULL);
218         g_free(timestr);
219     } else
220         abs_str = g_strconcat(fprefix, "_", filenum, fsuffix, NULL);
221
222     return abs_str;
223 }
224
225 static gboolean
226 fileset_extract_prefix_suffix(const char *fname, gchar **fprefix, gchar **fsuffix)
227 {
228     char  *pfx, *last_pathsep;
229     gchar *save_file;
230
231     save_file = g_strdup(fname);
232     if (save_file == NULL) {
233         fprintf(stderr, "editcap: Out of memory\n");
234         return FALSE;
235     }
236
237     last_pathsep = strrchr(save_file, G_DIR_SEPARATOR);
238     pfx = strrchr(save_file,'.');
239     if (pfx != NULL && (last_pathsep == NULL || pfx > last_pathsep)) {
240         /* The pathname has a "." in it, and it's in the last component
241          * of the pathname (because there is either only one component,
242          * i.e. last_pathsep is null as there are no path separators,
243          * or the "." is after the path separator before the last
244          * component.
245
246          * Treat it as a separator between the rest of the file name and
247          * the file name suffix, and arrange that the names given to the
248          * ring buffer files have the specified suffix, i.e. put the
249          * changing part of the name *before* the suffix. */
250         pfx[0] = '\0';
251         *fprefix = g_strdup(save_file);
252         pfx[0] = '.'; /* restore capfile_name */
253         *fsuffix = g_strdup(pfx);
254     } else {
255         /* Either there's no "." in the pathname, or it's in a directory
256          * component, so the last component has no suffix. */
257         *fprefix = g_strdup(save_file);
258         *fsuffix = NULL;
259     }
260     g_free(save_file);
261     return TRUE;
262 }
263
264 /* Add a selection item, a simple parser for now */
265 static gboolean
266 add_selection(char *sel, guint* max_selection)
267 {
268     char *locn;
269     char *next;
270
271     if (max_selected >= MAX_SELECTIONS) {
272         /* Let the user know we stopped selecting */
273         fprintf(stderr, "Out of room for packet selections.\n");
274         return(FALSE);
275     }
276
277     if (verbose)
278         fprintf(stderr, "Add_Selected: %s\n", sel);
279
280     if ((locn = strchr(sel, '-')) == NULL) { /* No dash, so a single number? */
281         if (verbose)
282             fprintf(stderr, "Not inclusive ...");
283
284         selectfrm[max_selected].inclusive = FALSE;
285         selectfrm[max_selected].first = get_guint32(sel, "packet number");
286         if (selectfrm[max_selected].first > *max_selection)
287             *max_selection = selectfrm[max_selected].first;
288
289         if (verbose)
290             fprintf(stderr, " %u\n", selectfrm[max_selected].first);
291     } else {
292         if (verbose)
293             fprintf(stderr, "Inclusive ...");
294
295         *locn = '\0';    /* split the range */
296         next = locn + 1;
297         selectfrm[max_selected].inclusive = TRUE;
298         selectfrm[max_selected].first = get_guint32(sel, "beginning of packet range");
299         selectfrm[max_selected].second = get_guint32(next, "end of packet range");
300
301         if (selectfrm[max_selected].second == 0)
302         {
303             /* Not a valid number, presume all */
304             selectfrm[max_selected].second = *max_selection = G_MAXUINT;
305         }
306         else if (selectfrm[max_selected].second > *max_selection)
307             *max_selection = selectfrm[max_selected].second;
308
309         if (verbose)
310             fprintf(stderr, " %u, %u\n", selectfrm[max_selected].first,
311                    selectfrm[max_selected].second);
312     }
313
314     max_selected++;
315     return(TRUE);
316 }
317
318 /* Was the packet selected? */
319
320 static int
321 selected(guint recno)
322 {
323     guint i;
324
325     for (i = 0; i < max_selected; i++) {
326         if (selectfrm[i].inclusive) {
327             if (selectfrm[i].first <= recno && selectfrm[i].second >= recno)
328                 return 1;
329         } else {
330             if (recno == selectfrm[i].first)
331                 return 1;
332         }
333     }
334
335   return 0;
336 }
337
338 static gboolean
339 set_time_adjustment(char *optarg_str_p)
340 {
341     char   *frac, *end;
342     long    val;
343     size_t  frac_digits;
344
345     if (!optarg_str_p)
346         return TRUE;
347
348     /* skip leading whitespace */
349     while (*optarg_str_p == ' ' || *optarg_str_p == '\t')
350         optarg_str_p++;
351
352     /* check for a negative adjustment */
353     if (*optarg_str_p == '-') {
354         time_adj.is_negative = 1;
355         optarg_str_p++;
356     }
357
358     /* collect whole number of seconds, if any */
359     if (*optarg_str_p == '.') {         /* only fractional (i.e., .5 is ok) */
360         val  = 0;
361         frac = optarg_str_p;
362     } else {
363         val = strtol(optarg_str_p, &frac, 10);
364         if (frac == NULL || frac == optarg_str_p
365             || val == LONG_MIN || val == LONG_MAX) {
366             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
367                     optarg_str_p);
368             return FALSE;
369         }
370         if (val < 0) {            /* implies '--' since we caught '-' above  */
371             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
372                     optarg_str_p);
373             return FALSE;
374         }
375     }
376     time_adj.tv.secs = val;
377
378     /* now collect the partial seconds, if any */
379     if (*frac != '\0') {             /* chars left, so get fractional part */
380         val = strtol(&(frac[1]), &end, 10);
381         /* if more than 9 fractional digits truncate to 9 */
382         if ((end - &(frac[1])) > 9) {
383             frac[10] = 't'; /* 't' for truncate */
384             val = strtol(&(frac[1]), &end, 10);
385         }
386         if (*frac != '.' || end == NULL || end == frac || val < 0
387             || val >= ONE_BILLION || val == LONG_MIN || val == LONG_MAX) {
388             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
389                     optarg_str_p);
390             return FALSE;
391         }
392     } else {
393         return TRUE;                     /* no fractional digits */
394     }
395
396     /* adjust fractional portion from fractional to numerator
397      * e.g., in "1.5" from 5 to 500000000 since .5*10^9 = 500000000 */
398     frac_digits = end - frac - 1;   /* fractional digit count (remember '.') */
399     while(frac_digits < 9) {    /* this is frac of 10^9 */
400         val *= 10;
401         frac_digits++;
402     }
403
404     time_adj.tv.nsecs = (int)val;
405     return TRUE;
406 }
407
408 static gboolean
409 set_strict_time_adj(char *optarg_str_p)
410 {
411     char   *frac, *end;
412     long    val;
413     size_t  frac_digits;
414
415     if (!optarg_str_p)
416         return TRUE;
417
418     /* skip leading whitespace */
419     while (*optarg_str_p == ' ' || *optarg_str_p == '\t')
420         optarg_str_p++;
421
422     /*
423      * check for a negative adjustment
424      * A negative strict adjustment value is a flag
425      * to adjust all frames by the specifed delta time.
426      */
427     if (*optarg_str_p == '-') {
428         strict_time_adj.is_negative = 1;
429         optarg_str_p++;
430     }
431
432     /* collect whole number of seconds, if any */
433     if (*optarg_str_p == '.') {         /* only fractional (i.e., .5 is ok) */
434         val  = 0;
435         frac = optarg_str_p;
436     } else {
437         val = strtol(optarg_str_p, &frac, 10);
438         if (frac == NULL || frac == optarg_str_p
439             || val == LONG_MIN || val == LONG_MAX) {
440             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
441                     optarg_str_p);
442             return FALSE;
443         }
444         if (val < 0) {            /* implies '--' since we caught '-' above  */
445             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
446                     optarg_str_p);
447             return FALSE;
448         }
449     }
450     strict_time_adj.tv.secs = val;
451
452     /* now collect the partial seconds, if any */
453     if (*frac != '\0') {             /* chars left, so get fractional part */
454         val = strtol(&(frac[1]), &end, 10);
455         /* if more than 9 fractional digits truncate to 9 */
456         if ((end - &(frac[1])) > 9) {
457             frac[10] = 't'; /* 't' for truncate */
458             val = strtol(&(frac[1]), &end, 10);
459         }
460         if (*frac != '.' || end == NULL || end == frac || val < 0
461             || val >= ONE_BILLION || val == LONG_MIN || val == LONG_MAX) {
462             fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
463                     optarg_str_p);
464             return FALSE;
465         }
466     } else {
467         return TRUE;                     /* no fractional digits */
468     }
469
470     /* adjust fractional portion from fractional to numerator
471      * e.g., in "1.5" from 5 to 500000000 since .5*10^9 = 500000000 */
472     frac_digits = end - frac - 1;   /* fractional digit count (remember '.') */
473     while(frac_digits < 9) {    /* this is frac of 10^9 */
474         val *= 10;
475         frac_digits++;
476     }
477
478     strict_time_adj.tv.nsecs = (int)val;
479     return TRUE;
480 }
481
482 static gboolean
483 set_rel_time(char *optarg_str_p)
484 {
485     char   *frac, *end;
486     long    val;
487     size_t  frac_digits;
488
489     if (!optarg_str_p)
490         return TRUE;
491
492     /* skip leading whitespace */
493     while (*optarg_str_p == ' ' || *optarg_str_p == '\t')
494         optarg_str_p++;
495
496     /* ignore negative adjustment  */
497     if (*optarg_str_p == '-')
498         optarg_str_p++;
499
500     /* collect whole number of seconds, if any */
501     if (*optarg_str_p == '.') {         /* only fractional (i.e., .5 is ok) */
502         val  = 0;
503         frac = optarg_str_p;
504     } else {
505         val = strtol(optarg_str_p, &frac, 10);
506         if (frac == NULL || frac == optarg_str_p
507             || val == LONG_MIN || val == LONG_MAX) {
508             fprintf(stderr, "1: editcap: \"%s\" isn't a valid rel time value\n",
509                     optarg_str_p);
510             return FALSE;
511         }
512         if (val < 0) {            /* implies '--' since we caught '-' above  */
513             fprintf(stderr, "2: editcap: \"%s\" isn't a valid rel time value\n",
514                     optarg_str_p);
515             return FALSE;
516         }
517     }
518     relative_time_window.secs = val;
519
520     /* now collect the partial seconds, if any */
521     if (*frac != '\0') {             /* chars left, so get fractional part */
522         val = strtol(&(frac[1]), &end, 10);
523         /* if more than 9 fractional digits truncate to 9 */
524         if ((end - &(frac[1])) > 9) {
525             frac[10] = 't'; /* 't' for truncate */
526             val = strtol(&(frac[1]), &end, 10);
527         }
528         if (*frac != '.' || end == NULL || end == frac || val < 0
529             || val >= ONE_BILLION || val == LONG_MIN || val == LONG_MAX) {
530             fprintf(stderr, "3: editcap: \"%s\" isn't a valid rel time value\n",
531                     optarg_str_p);
532             return FALSE;
533         }
534     } else {
535         return TRUE;                     /* no fractional digits */
536     }
537
538     /* adjust fractional portion from fractional to numerator
539      * e.g., in "1.5" from 5 to 500000000 since .5*10^9 = 500000000 */
540     frac_digits = end - frac - 1;   /* fractional digit count (remember '.') */
541     while(frac_digits < 9) {    /* this is frac of 10^9 */
542         val *= 10;
543         frac_digits++;
544     }
545
546     relative_time_window.nsecs = (int)val;
547     return TRUE;
548 }
549
550 #define LINUX_SLL_OFFSETP 14
551 #define VLAN_SIZE 4
552 static void
553 sll_remove_vlan_info(guint8* fd, guint32* len) {
554     if (pntoh16(fd + LINUX_SLL_OFFSETP) == ETHERTYPE_VLAN) {
555         int rest_len;
556         /* point to start of vlan */
557         fd = fd + LINUX_SLL_OFFSETP;
558         /* bytes to read after vlan info */
559         rest_len = *len - (LINUX_SLL_OFFSETP + VLAN_SIZE);
560         /* remove vlan info from packet */
561         memmove(fd, fd + VLAN_SIZE, rest_len);
562         *len -= 4;
563     }
564 }
565
566 static void
567 remove_vlan_info(const wtap_packet_header *phdr, guint8* fd, guint32* len) {
568     switch (phdr->pkt_encap) {
569         case WTAP_ENCAP_SLL:
570             sll_remove_vlan_info(fd, len);
571             break;
572         default:
573             /* no support for current pkt_encap */
574             break;
575     }
576 }
577
578 static gboolean
579 is_duplicate(guint8* fd, guint32 len) {
580     int i;
581     const struct ieee80211_radiotap_header* tap_header;
582
583     /*Hint to ignore some bytes at the start of the frame for the digest calculation(-I option) */
584     guint32 offset = ignored_bytes;
585     guint32 new_len;
586     guint8 *new_fd;
587
588     if (len <= ignored_bytes) {
589         offset = 0;
590     }
591
592     /* Get the size of radiotap header and use that as offset (-p option) */
593     if (skip_radiotap == TRUE) {
594         tap_header = (const struct ieee80211_radiotap_header*)fd;
595         offset = pletoh16(&tap_header->it_len);
596         if (offset >= len)
597             offset = 0;
598     }
599
600     new_fd  = &fd[offset];
601     new_len = len - (offset);
602
603     cur_dup_entry++;
604     if (cur_dup_entry >= dup_window)
605         cur_dup_entry = 0;
606
607     /* Calculate our digest */
608     gcry_md_hash_buffer(GCRY_MD_MD5, fd_hash[cur_dup_entry].digest, new_fd, new_len);
609
610     fd_hash[cur_dup_entry].len = len;
611
612     /* Look for duplicates */
613     for (i = 0; i < dup_window; i++) {
614         if (i == cur_dup_entry)
615             continue;
616
617         if (fd_hash[i].len == fd_hash[cur_dup_entry].len
618             && memcmp(fd_hash[i].digest, fd_hash[cur_dup_entry].digest, 16) == 0) {
619             return TRUE;
620         }
621     }
622
623     return FALSE;
624 }
625
626 static gboolean
627 is_duplicate_rel_time(guint8* fd, guint32 len, const nstime_t *current) {
628     int i;
629
630     /*Hint to ignore some bytes at the start of the frame for the digest calculation(-I option) */
631     guint32 offset = ignored_bytes;
632     guint32 new_len;
633     guint8 *new_fd;
634
635     if (len <= ignored_bytes) {
636         offset = 0;
637     }
638
639     new_fd  = &fd[offset];
640     new_len = len - (offset);
641
642     cur_dup_entry++;
643     if (cur_dup_entry >= dup_window)
644         cur_dup_entry = 0;
645
646     /* Calculate our digest */
647     gcry_md_hash_buffer(GCRY_MD_MD5, fd_hash[cur_dup_entry].digest, new_fd, new_len);
648
649     fd_hash[cur_dup_entry].len = len;
650     fd_hash[cur_dup_entry].frame_time.secs = current->secs;
651     fd_hash[cur_dup_entry].frame_time.nsecs = current->nsecs;
652
653     /*
654      * Look for relative time related duplicates.
655      * This is hopefully a reasonably efficient mechanism for
656      * finding duplicates by rel time in the fd_hash[] cache.
657      * We check starting from the most recently added hash
658      * entries and work backwards towards older packets.
659      * This approach allows the dup test to be terminated
660      * when the relative time of a cached entry is found to
661      * be beyond the dup time window.
662      *
663      * Of course this assumes that the input trace file is
664      * "well-formed" in the sense that the packet timestamps are
665      * in strict chronologically increasing order (which is NOT
666      * always the case!!).
667      *
668      * The fd_hash[] table was deliberately created large (1,000,000).
669      * Looking for time related duplicates in large trace files with
670      * non-fractional dup time window values can potentially take
671      * a long time to complete.
672      */
673
674     for (i = cur_dup_entry - 1;; i--) {
675         nstime_t delta;
676         int cmp;
677
678         if (i < 0)
679             i = dup_window - 1;
680
681         if (i == cur_dup_entry) {
682             /*
683              * We've decremented back to where we started.
684              * Check no more!
685              */
686             break;
687         }
688
689         if (nstime_is_unset(&(fd_hash[i].frame_time))) {
690             /*
691              * We've decremented to an unused fd_hash[] entry.
692              * Check no more!
693              */
694             break;
695         }
696
697         nstime_delta(&delta, current, &fd_hash[i].frame_time);
698
699         if (delta.secs < 0 || delta.nsecs < 0) {
700             /*
701              * A negative delta implies that the current packet
702              * has an absolute timestamp less than the cached packet
703              * that it is being compared to.  This is NOT a normal
704              * situation since trace files usually have packets in
705              * chronological order (oldest to newest).
706              *
707              * There are several possible ways to deal with this:
708              * 1. 'continue' dup checking with the next cached frame.
709              * 2. 'break' from looking for a duplicate of the current frame.
710              * 3. Take the absolute value of the delta and see if that
711              * falls within the specifed dup time window.
712              *
713              * Currently this code does option 1.  But it would pretty
714              * easy to add yet-another-editcap-option to select one of
715              * the other behaviors for dealing with out-of-sequence
716              * packets.
717              */
718             continue;
719         }
720
721         cmp = nstime_cmp(&delta, &relative_time_window);
722
723         if (cmp > 0) {
724             /*
725              * The delta time indicates that we are now looking at
726              * cached packets beyond the specified dup time window.
727              * Check no more!
728              */
729             break;
730         } else if (fd_hash[i].len == fd_hash[cur_dup_entry].len
731                    && memcmp(fd_hash[i].digest, fd_hash[cur_dup_entry].digest, 16) == 0) {
732             return TRUE;
733         }
734     }
735
736     return FALSE;
737 }
738
739 static void
740 print_usage(FILE *output)
741 {
742     fprintf(output, "\n");
743     fprintf(output, "Usage: editcap [options] ... <infile> <outfile> [ <packet#>[-<packet#>] ... ]\n");
744     fprintf(output, "\n");
745     fprintf(output, "<infile> and <outfile> must both be present.\n");
746     fprintf(output, "A single packet or a range of packets can be selected.\n");
747     fprintf(output, "\n");
748     fprintf(output, "Packet selection:\n");
749     fprintf(output, "  -r                     keep the selected packets; default is to delete them.\n");
750     fprintf(output, "  -A <start time>        only output packets whose timestamp is after (or equal\n");
751     fprintf(output, "                         to) the given time (format as YYYY-MM-DD hh:mm:ss).\n");
752     fprintf(output, "  -B <stop time>         only output packets whose timestamp is before the\n");
753     fprintf(output, "                         given time (format as YYYY-MM-DD hh:mm:ss).\n");
754     fprintf(output, "\n");
755     fprintf(output, "Duplicate packet removal:\n");
756     fprintf(output, "  --novlan               remove vlan info from packets before checking for duplicates.\n");
757     fprintf(output, "  -d                     remove packet if duplicate (window == %d).\n", DEFAULT_DUP_DEPTH);
758     fprintf(output, "  -D <dup window>        remove packet if duplicate; configurable <dup window>.\n");
759     fprintf(output, "                         Valid <dup window> values are 0 to %d.\n", MAX_DUP_DEPTH);
760     fprintf(output, "                         NOTE: A <dup window> of 0 with -v (verbose option) is\n");
761     fprintf(output, "                         useful to print MD5 hashes.\n");
762     fprintf(output, "  -w <dup time window>   remove packet if duplicate packet is found EQUAL TO OR\n");
763     fprintf(output, "                         LESS THAN <dup time window> prior to current packet.\n");
764     fprintf(output, "                         A <dup time window> is specified in relative seconds\n");
765     fprintf(output, "                         (e.g. 0.000001).\n");
766     fprintf(output, "           NOTE: The use of the 'Duplicate packet removal' options with\n");
767     fprintf(output, "           other editcap options except -v may not always work as expected.\n");
768     fprintf(output, "           Specifically the -r, -t or -S options will very likely NOT have the\n");
769     fprintf(output, "           desired effect if combined with the -d, -D or -w.\n");
770     fprintf(output, "  --skip-radiotap-header skip radiotap header when checking for packet duplicates.\n");
771     fprintf(output, "                         Useful when processing packets captured by multiple radios\n");
772     fprintf(output, "                         on the same channel in the vicinity of each other.\n");
773     fprintf(output, "\n");
774     fprintf(output, "Packet manipulation:\n");
775     fprintf(output, "  -s <snaplen>           truncate each packet to max. <snaplen> bytes of data.\n");
776     fprintf(output, "  -C [offset:]<choplen>  chop each packet by <choplen> bytes. Positive values\n");
777     fprintf(output, "                         chop at the packet beginning, negative values at the\n");
778     fprintf(output, "                         packet end. If an optional offset precedes the length,\n");
779     fprintf(output, "                         then the bytes chopped will be offset from that value.\n");
780     fprintf(output, "                         Positive offsets are from the packet beginning,\n");
781     fprintf(output, "                         negative offsets are from the packet end. You can use\n");
782     fprintf(output, "                         this option more than once, allowing up to 2 chopping\n");
783     fprintf(output, "                         regions within a packet provided that at least 1\n");
784     fprintf(output, "                         choplen is positive and at least 1 is negative.\n");
785     fprintf(output, "  -L                     adjust the frame (i.e. reported) length when chopping\n");
786     fprintf(output, "                         and/or snapping.\n");
787     fprintf(output, "  -t <time adjustment>   adjust the timestamp of each packet.\n");
788     fprintf(output, "                         <time adjustment> is in relative seconds (e.g. -0.5).\n");
789     fprintf(output, "  -S <strict adjustment> adjust timestamp of packets if necessary to ensure\n");
790     fprintf(output, "                         strict chronological increasing order. The <strict\n");
791     fprintf(output, "                         adjustment> is specified in relative seconds with\n");
792     fprintf(output, "                         values of 0 or 0.000001 being the most reasonable.\n");
793     fprintf(output, "                         A negative adjustment value will modify timestamps so\n");
794     fprintf(output, "                         that each packet's delta time is the absolute value\n");
795     fprintf(output, "                         of the adjustment specified. A value of -0 will set\n");
796     fprintf(output, "                         all packets to the timestamp of the first packet.\n");
797     fprintf(output, "  -E <error probability> set the probability (between 0.0 and 1.0 incl.) that\n");
798     fprintf(output, "                         a particular packet byte will be randomly changed.\n");
799     fprintf(output, "  -o <change offset>     When used in conjunction with -E, skip some bytes from the\n");
800     fprintf(output, "                         beginning of the packet. This allows one to preserve some\n");
801     fprintf(output, "                         bytes, in order to have some headers untouched.\n");
802     fprintf(output, "  --seed <seed>          When used in conjunction with -E, set the seed to use for\n");
803     fprintf(output, "                         the pseudo-random number generator. This allows one to\n");
804     fprintf(output, "                         repeat a particular sequence of errors.\n");
805     fprintf(output, "  -I <bytes to ignore>   ignore the specified number of bytes at the beginning\n");
806     fprintf(output, "                         of the frame during MD5 hash calculation, unless the\n");
807     fprintf(output, "                         frame is too short, then the full frame is used.\n");
808     fprintf(output, "                         Useful to remove duplicated packets taken on\n");
809     fprintf(output, "                         several routers (different mac addresses for\n");
810     fprintf(output, "                         example).\n");
811     fprintf(output, "                         e.g. -I 26 in case of Ether/IP will ignore\n");
812     fprintf(output, "                         ether(14) and IP header(20 - 4(src ip) - 4(dst ip)).\n");
813     fprintf(output, "  -a <framenum>:<comment> Add or replace comment for given frame number\n");
814     fprintf(output, "\n");
815     fprintf(output, "Output File(s):\n");
816     fprintf(output, "  -c <packets per file>  split the packet output to different files based on\n");
817     fprintf(output, "                         uniform packet counts with a maximum of\n");
818     fprintf(output, "                         <packets per file> each.\n");
819     fprintf(output, "  -i <seconds per file>  split the packet output to different files based on\n");
820     fprintf(output, "                         uniform time intervals with a maximum of\n");
821     fprintf(output, "                         <seconds per file> each.\n");
822     fprintf(output, "  -F <capture type>      set the output file type; default is pcapng. An empty\n");
823     fprintf(output, "                         \"-F\" option will list the file types.\n");
824     fprintf(output, "  -T <encap type>        set the output file encapsulation type; default is the\n");
825     fprintf(output, "                         same as the input file. An empty \"-T\" option will\n");
826     fprintf(output, "                         list the encapsulation types.\n");
827     fprintf(output, "\n");
828     fprintf(output, "Miscellaneous:\n");
829     fprintf(output, "  -h                     display this help and exit.\n");
830     fprintf(output, "  -v                     verbose output.\n");
831     fprintf(output, "                         If -v is used with any of the 'Duplicate Packet\n");
832     fprintf(output, "                         Removal' options (-d, -D or -w) then Packet lengths\n");
833     fprintf(output, "                         and MD5 hashes are printed to standard-error.\n");
834 }
835
836 struct string_elem {
837     const char *sstr;   /* The short string */
838     const char *lstr;   /* The long string */
839 };
840
841 static gint
842 string_compare(gconstpointer a, gconstpointer b)
843 {
844     return strcmp(((const struct string_elem *)a)->sstr,
845         ((const struct string_elem *)b)->sstr);
846 }
847
848 static gint
849 string_nat_compare(gconstpointer a, gconstpointer b)
850 {
851     return ws_ascii_strnatcmp(((const struct string_elem *)a)->sstr,
852         ((const struct string_elem *)b)->sstr);
853 }
854
855 static void
856 string_elem_print(gpointer data, gpointer stream_ptr)
857 {
858     fprintf((FILE *) stream_ptr, "    %s - %s\n",
859         ((struct string_elem *)data)->sstr,
860         ((struct string_elem *)data)->lstr);
861 }
862
863 static void
864 list_capture_types(FILE *stream) {
865     int i;
866     struct string_elem *captypes;
867     GSList *list = NULL;
868
869     captypes = g_new(struct string_elem,WTAP_NUM_FILE_TYPES_SUBTYPES);
870     fprintf(stream, "editcap: The available capture file types for the \"-F\" flag are:\n");
871     for (i = 0; i < WTAP_NUM_FILE_TYPES_SUBTYPES; i++) {
872         if (wtap_dump_can_open(i)) {
873             captypes[i].sstr = wtap_file_type_subtype_short_string(i);
874             captypes[i].lstr = wtap_file_type_subtype_string(i);
875             list = g_slist_insert_sorted(list, &captypes[i], string_compare);
876         }
877     }
878     g_slist_foreach(list, string_elem_print, stream);
879     g_slist_free(list);
880     g_free(captypes);
881 }
882
883 static void
884 list_encap_types(FILE *stream) {
885     int i;
886     struct string_elem *encaps;
887     GSList *list = NULL;
888
889     encaps = (struct string_elem *)g_malloc(sizeof(struct string_elem) * WTAP_NUM_ENCAP_TYPES);
890     fprintf(stream, "editcap: The available encapsulation types for the \"-T\" flag are:\n");
891     for (i = 0; i < WTAP_NUM_ENCAP_TYPES; i++) {
892         encaps[i].sstr = wtap_encap_short_string(i);
893         if (encaps[i].sstr != NULL) {
894             encaps[i].lstr = wtap_encap_string(i);
895             list = g_slist_insert_sorted(list, &encaps[i], string_nat_compare);
896         }
897     }
898     g_slist_foreach(list, string_elem_print, stream);
899     g_slist_free(list);
900     g_free(encaps);
901 }
902
903 static int
904 framenum_compare(gconstpointer a, gconstpointer b, gpointer user_data _U_)
905 {
906     if (GPOINTER_TO_UINT(a) < GPOINTER_TO_UINT(b))
907         return -1;
908
909     if (GPOINTER_TO_UINT(a) > GPOINTER_TO_UINT(b))
910         return 1;
911
912     return 0;
913 }
914
915 /*
916  * General errors and warnings are reported with an console message
917  * in editcap.
918  */
919 static void
920 failure_warning_message(const char *msg_format, va_list ap)
921 {
922   fprintf(stderr, "editcap: ");
923   vfprintf(stderr, msg_format, ap);
924   fprintf(stderr, "\n");
925 }
926
927 /*
928  * Report additional information for an error in command-line arguments.
929  */
930 static void
931 failure_message_cont(const char *msg_format, va_list ap)
932 {
933   vfprintf(stderr, msg_format, ap);
934   fprintf(stderr, "\n");
935 }
936
937 static wtap_dumper *
938 editcap_dump_open(const char *filename, const wtap_dump_params *params,
939                   int *write_err)
940 {
941   wtap_dumper *pdh;
942
943   if (strcmp(filename, "-") == 0) {
944     /* Write to the standard output. */
945     pdh = wtap_dump_open_stdout(out_file_type_subtype,
946                                 FALSE /* compressed */,
947                                 params, write_err);
948   } else {
949     pdh = wtap_dump_open(filename, out_file_type_subtype,
950                          FALSE /* compressed */,
951                          params, write_err);
952   }
953   return pdh;
954 }
955
956 static int
957 real_main(int argc, char *argv[])
958 {
959     GString      *comp_info_str;
960     GString      *runtime_info_str;
961     char         *init_progfile_dir_error;
962     wtap         *wth = NULL;
963     int           i, j, read_err, write_err;
964     gchar        *read_err_info, *write_err_info;
965     int           opt;
966     static const struct option long_options[] = {
967         {"novlan", no_argument, NULL, 0x8100},
968         {"skip-radiotap-header", no_argument, NULL, 0x8101},
969         {"seed", required_argument, NULL, 0x8102},
970         {"help", no_argument, NULL, 'h'},
971         {"version", no_argument, NULL, 'V'},
972         {0, 0, 0, 0 }
973     };
974
975     char         *p;
976     guint32       snaplen            = 0; /* No limit               */
977     chop_t        chop               = {0, 0, 0, 0, 0, 0}; /* No chop */
978     gboolean      adjlen             = FALSE;
979     wtap_dumper  *pdh                = NULL;
980     unsigned int  count              = 1;
981     unsigned int  duplicate_count    = 0;
982     gint64        data_offset;
983     int           err_type;
984     guint8       *buf;
985     guint32       read_count         = 0;
986     guint32       split_packet_count = 0;
987     int           written_count      = 0;
988     char         *filename           = NULL;
989     gboolean      ts_okay;
990     guint32       secs_per_block     = 0;
991     int           block_cnt          = 0;
992     nstime_t      block_start;
993     gchar        *fprefix            = NULL;
994     gchar        *fsuffix            = NULL;
995     guint32       change_offset      = 0;
996     guint         max_packet_number  = 0;
997     const wtap_rec              *rec;
998     wtap_rec                     temp_rec;
999     wtap_dump_params             params = WTAP_DUMP_PARAMS_INIT;
1000     char                        *shb_user_appl;
1001     gboolean                     do_mutation;
1002     guint32                      caplen;
1003     int                          ret = EXIT_SUCCESS;
1004     gboolean                     valid_seed = FALSE;
1005     unsigned int                 seed = 0;
1006
1007     cmdarg_err_init(failure_warning_message, failure_message_cont);
1008
1009 #ifdef _WIN32
1010     create_app_running_mutex();
1011 #endif /* _WIN32 */
1012
1013     /* Get the compile-time version information string */
1014     comp_info_str = get_compiled_version_info(NULL, NULL);
1015
1016     /* Get the run-time version information string */
1017     runtime_info_str = get_runtime_version_info(NULL);
1018
1019     /* Add it to the information to be reported on a crash. */
1020     ws_add_crash_info("Editcap (Wireshark) %s\n"
1021          "\n"
1022          "%s"
1023          "\n"
1024          "%s",
1025       get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
1026     g_string_free(comp_info_str, TRUE);
1027     g_string_free(runtime_info_str, TRUE);
1028
1029     /*
1030      * Get credential information for later use.
1031      */
1032     init_process_policies();
1033
1034     /*
1035      * Attempt to get the pathname of the directory containing the
1036      * executable file.
1037      */
1038     init_progfile_dir_error = init_progfile_dir(argv[0]);
1039     if (init_progfile_dir_error != NULL) {
1040         fprintf(stderr,
1041                 "editcap: Can't get pathname of directory containing the editcap program: %s.\n",
1042                 init_progfile_dir_error);
1043         g_free(init_progfile_dir_error);
1044     }
1045
1046     init_report_message(failure_warning_message, failure_warning_message,
1047                         NULL, NULL, NULL);
1048
1049     wtap_init(TRUE);
1050
1051     /* Process the options */
1052     while ((opt = getopt_long(argc, argv, ":a:A:B:c:C:dD:E:F:hi:I:Lo:rs:S:t:T:vVw:", long_options, NULL)) != -1) {
1053         switch (opt) {
1054         case 0x8100:
1055         {
1056             rem_vlan = TRUE;
1057             break;
1058         }
1059
1060         case 0x8101:
1061         {
1062             skip_radiotap = TRUE;
1063             break;
1064         }
1065
1066         case 0x8102:
1067         {
1068             if (sscanf(optarg, "%u", &seed) != 1) {
1069                 fprintf(stderr, "editcap: \"%s\" isn't a valid seed\n\n",
1070                         optarg);
1071                 ret = INVALID_OPTION;
1072                 goto clean_exit;
1073             }
1074             valid_seed = TRUE;
1075             break;
1076         }
1077
1078         case 'a':
1079         {
1080             guint frame_number;
1081             gint string_start_index = 0;
1082
1083             if ((sscanf(optarg, "%u:%n", &frame_number, &string_start_index) < 1) || (string_start_index == 0)) {
1084                 fprintf(stderr, "editcap: \"%s\" isn't a valid <frame>:<comment>\n\n",
1085                         optarg);
1086                 ret = INVALID_OPTION;
1087                 goto clean_exit;
1088             }
1089
1090             /* Lazily create the table */
1091             if (!frames_user_comments) {
1092                 frames_user_comments = g_tree_new_full(framenum_compare, NULL, NULL, g_free);
1093             }
1094
1095             /* Insert this entry (framenum -> comment) */
1096             g_tree_replace(frames_user_comments, GUINT_TO_POINTER(frame_number), g_strdup(optarg+string_start_index));
1097             break;
1098         }
1099
1100         case 'A':
1101         {
1102             struct tm starttm;
1103
1104             memset(&starttm,0,sizeof(struct tm));
1105
1106             if (!strptime(optarg,"%Y-%m-%d %T", &starttm)) {
1107                 fprintf(stderr, "editcap: \"%s\" isn't a valid time format\n\n",
1108                         optarg);
1109                 ret = INVALID_OPTION;
1110                 goto clean_exit;
1111             }
1112
1113             check_startstop = TRUE;
1114             starttm.tm_isdst = -1;
1115
1116             starttime = mktime(&starttm);
1117             break;
1118         }
1119
1120         case 'B':
1121         {
1122             struct tm stoptm;
1123
1124             memset(&stoptm,0,sizeof(struct tm));
1125
1126             if (!strptime(optarg,"%Y-%m-%d %T", &stoptm)) {
1127                 fprintf(stderr, "editcap: \"%s\" isn't a valid time format\n\n",
1128                         optarg);
1129                 ret = INVALID_OPTION;
1130                 goto clean_exit;
1131             }
1132             check_startstop = TRUE;
1133             stoptm.tm_isdst = -1;
1134             stoptime = mktime(&stoptm);
1135             break;
1136         }
1137
1138         case 'c':
1139             split_packet_count = get_nonzero_guint32(optarg, "packet count");
1140             break;
1141
1142         case 'C':
1143         {
1144             int choplen = 0, chopoff = 0;
1145
1146             switch (sscanf(optarg, "%d:%d", &chopoff, &choplen)) {
1147             case 1: /* only the chop length was specififed */
1148                 choplen = chopoff;
1149                 chopoff = 0;
1150                 break;
1151
1152             case 2: /* both an offset and chop length was specified */
1153                 break;
1154
1155             default:
1156                 fprintf(stderr, "editcap: \"%s\" isn't a valid chop length or offset:length\n",
1157                         optarg);
1158                 ret = INVALID_OPTION;
1159                 goto clean_exit;
1160                 break;
1161             }
1162
1163             if (choplen > 0) {
1164                 chop.len_begin += choplen;
1165                 if (chopoff > 0)
1166                     chop.off_begin_pos += chopoff;
1167                 else
1168                     chop.off_begin_neg += chopoff;
1169             } else if (choplen < 0) {
1170                 chop.len_end += choplen;
1171                 if (chopoff > 0)
1172                     chop.off_end_pos += chopoff;
1173                 else
1174                     chop.off_end_neg += chopoff;
1175             }
1176             break;
1177         }
1178
1179         case 'd':
1180             dup_detect = TRUE;
1181             dup_detect_by_time = FALSE;
1182             dup_window = DEFAULT_DUP_DEPTH;
1183             break;
1184
1185         case 'D':
1186             dup_detect = TRUE;
1187             dup_detect_by_time = FALSE;
1188             dup_window = get_guint32(optarg, "duplicate window");
1189             if (dup_window > MAX_DUP_DEPTH) {
1190                 fprintf(stderr, "editcap: \"%d\" duplicate window value must be between 0 and %d inclusive.\n",
1191                         dup_window, MAX_DUP_DEPTH);
1192                 ret = INVALID_OPTION;
1193                 goto clean_exit;
1194             }
1195             break;
1196
1197         case 'E':
1198             err_prob = g_ascii_strtod(optarg, &p);
1199             if (p == optarg || err_prob < 0.0 || err_prob > 1.0) {
1200                 fprintf(stderr, "editcap: probability \"%s\" must be between 0.0 and 1.0\n",
1201                         optarg);
1202                 ret = INVALID_OPTION;
1203                 goto clean_exit;
1204             }
1205             break;
1206
1207         case 'F':
1208             out_file_type_subtype = wtap_short_string_to_file_type_subtype(optarg);
1209             if (out_file_type_subtype < 0) {
1210                 fprintf(stderr, "editcap: \"%s\" isn't a valid capture file type\n\n",
1211                         optarg);
1212                 list_capture_types(stderr);
1213                 ret = INVALID_OPTION;
1214                 goto clean_exit;
1215             }
1216             break;
1217
1218         case 'h':
1219             printf("Editcap (Wireshark) %s\n"
1220                    "Edit and/or translate the format of capture files.\n"
1221                    "See https://www.wireshark.org for more information.\n",
1222                get_ws_vcs_version_info());
1223             print_usage(stdout);
1224             goto clean_exit;
1225             break;
1226
1227         case 'i': /* break capture file based on time interval */
1228             secs_per_block = get_nonzero_guint32(optarg, "time interval");
1229             break;
1230
1231         case 'I': /* ignored_bytes at the beginning of the frame for duplications removal */
1232             ignored_bytes = get_guint32(optarg, "number of bytes to ignore");
1233             break;
1234
1235         case 'L':
1236             adjlen = TRUE;
1237             break;
1238
1239         case 'o':
1240             change_offset = get_guint32(optarg, "change offset");
1241             break;
1242
1243         case 'r':
1244             keep_em = !keep_em;  /* Just invert */
1245             break;
1246
1247         case 's':
1248             snaplen = get_nonzero_guint32(optarg, "snapshot length");
1249             break;
1250
1251         case 'S':
1252             if (!set_strict_time_adj(optarg)) {
1253                 ret = INVALID_OPTION;
1254                 goto clean_exit;
1255             }
1256             do_strict_time_adjustment = TRUE;
1257             break;
1258
1259         case 't':
1260             if (!set_time_adjustment(optarg)) {
1261                 ret = INVALID_OPTION;
1262                 goto clean_exit;
1263             }
1264             break;
1265
1266         case 'T':
1267             out_frame_type = wtap_short_string_to_encap(optarg);
1268             if (out_frame_type < 0) {
1269                 fprintf(stderr, "editcap: \"%s\" isn't a valid encapsulation type\n\n",
1270                         optarg);
1271                 list_encap_types(stderr);
1272                 ret = INVALID_OPTION;
1273                 goto clean_exit;
1274             }
1275             break;
1276
1277         case 'v':
1278             verbose = !verbose;  /* Just invert */
1279             break;
1280
1281         case 'V':
1282             comp_info_str = get_compiled_version_info(NULL, NULL);
1283             runtime_info_str = get_runtime_version_info(NULL);
1284             show_version("Editcap (Wireshark)", comp_info_str, runtime_info_str);
1285             g_string_free(comp_info_str, TRUE);
1286             g_string_free(runtime_info_str, TRUE);
1287             goto clean_exit;
1288             break;
1289
1290         case 'w':
1291             dup_detect = FALSE;
1292             dup_detect_by_time = TRUE;
1293             dup_window = MAX_DUP_DEPTH;
1294             if (!set_rel_time(optarg)) {
1295                 ret = INVALID_OPTION;
1296                 goto clean_exit;
1297             }
1298             break;
1299
1300         case '?':              /* Bad options if GNU getopt */
1301         case ':':              /* missing option argument */
1302             switch(optopt) {
1303             case'F':
1304                 list_capture_types(stdout);
1305                 break;
1306             case'T':
1307                 list_encap_types(stdout);
1308                 break;
1309             default:
1310                 if (opt == '?') {
1311                     fprintf(stderr, "editcap: invalid option -- '%c'\n", optopt);
1312                 } else {
1313                     fprintf(stderr, "editcap: option requires an argument -- '%c'\n", optopt);
1314                 }
1315                 print_usage(stderr);
1316                 ret = INVALID_OPTION;
1317                 break;
1318             }
1319             goto clean_exit;
1320             break;
1321         }
1322     } /* processing commmand-line options */
1323
1324 #ifdef DEBUG
1325     fprintf(stderr, "Optind = %i, argc = %i\n", optind, argc);
1326 #endif
1327
1328     if ((argc - optind) < 2) {
1329         print_usage(stderr);
1330         ret = INVALID_OPTION;
1331         goto clean_exit;
1332
1333     }
1334
1335     if (err_prob >= 0.0) {
1336         if (!valid_seed) {
1337             seed = (unsigned int) (time(NULL) + ws_getpid());
1338         }
1339         if (verbose) {
1340             fprintf(stderr, "Using seed %u\n", seed);
1341         }
1342         srand(seed);
1343     }
1344
1345     if (check_startstop && !stoptime) {
1346         struct tm stoptm;
1347
1348         /* XXX: will work until 2035 */
1349         memset(&stoptm,0,sizeof(struct tm));
1350         stoptm.tm_year = 135;
1351         stoptm.tm_mday = 31;
1352         stoptm.tm_mon = 11;
1353         stoptm.tm_isdst = -1;
1354
1355         stoptime = mktime(&stoptm);
1356     }
1357
1358     nstime_set_unset(&block_start);
1359
1360     if (starttime > stoptime) {
1361         fprintf(stderr, "editcap: start time is after the stop time\n");
1362         ret = INVALID_OPTION;
1363         goto clean_exit;
1364     }
1365
1366     if (split_packet_count != 0 && secs_per_block != 0) {
1367         fprintf(stderr, "editcap: can't split on both packet count and time interval\n");
1368         fprintf(stderr, "editcap: at the same time\n");
1369         ret = INVALID_OPTION;
1370         goto clean_exit;
1371     }
1372
1373     wth = wtap_open_offline(argv[optind], WTAP_TYPE_AUTO, &read_err, &read_err_info, FALSE);
1374
1375     if (!wth) {
1376         cfile_open_failure_message("editcap", argv[optind], read_err,
1377                                    read_err_info);
1378         ret = INVALID_FILE;
1379         goto clean_exit;
1380     }
1381
1382     if (verbose) {
1383         fprintf(stderr, "File %s is a %s capture file.\n", argv[optind],
1384                 wtap_file_type_subtype_string(wtap_file_type_subtype(wth)));
1385     }
1386
1387     if (ignored_bytes != 0 && skip_radiotap == TRUE) {
1388         fprintf(stderr, "editcap: can't skip radiotap headers and %d byte(s)\n", ignored_bytes);
1389         fprintf(stderr, "editcap: at the start of packet at the same time\n");
1390         ret = INVALID_OPTION;
1391         goto clean_exit;
1392     }
1393
1394     if (skip_radiotap == TRUE && wtap_file_encap(wth) != WTAP_ENCAP_IEEE_802_11_RADIOTAP) {
1395         fprintf(stderr, "editcap: can't skip radiotap header because input file is incorrect\n");
1396         fprintf(stderr, "editcap: expected '%s', input is '%s'\n",
1397                 wtap_encap_string(WTAP_ENCAP_IEEE_802_11_RADIOTAP),
1398                 wtap_encap_string(wtap_file_type_subtype(wth)));
1399         ret = INVALID_OPTION;
1400         goto clean_exit;
1401     }
1402
1403     wtap_dump_params_init(&params, wth);
1404
1405     /*
1406      * If an encapsulation type was specified, override the encapsulation
1407      * type of the input file.
1408      */
1409     if (out_frame_type != -2)
1410         params.encap = out_frame_type;
1411
1412     /*
1413      * If a snapshot length was specified, and it's less than the snapshot
1414      * length of the input file, override the snapshot length of the input
1415      * file.
1416      */
1417     if (snaplen != 0 && snaplen < wtap_snapshot_length(wth))
1418         params.snaplen = snaplen;
1419
1420     /*
1421      * Now process the arguments following the input and output file
1422      * names, if any; they specify packets to include/exclude.
1423      */
1424     for (i = optind + 2; i < argc; i++)
1425         if (add_selection(argv[i], &max_packet_number) == FALSE)
1426             break;
1427
1428     if (keep_em == FALSE)
1429         max_packet_number = G_MAXUINT;
1430
1431     if (dup_detect || dup_detect_by_time) {
1432         for (i = 0; i < dup_window; i++) {
1433             memset(&fd_hash[i].digest, 0, 16);
1434             fd_hash[i].len = 0;
1435             nstime_set_unset(&fd_hash[i].frame_time);
1436         }
1437     }
1438
1439     /* Read all of the packets in turn */
1440     while (wtap_read(wth, &read_err, &read_err_info, &data_offset)) {
1441         if (max_packet_number <= read_count)
1442             break;
1443
1444         read_count++;
1445
1446         rec = wtap_get_rec(wth);
1447
1448         /* Extra actions for the first packet */
1449         if (read_count == 1) {
1450             if (split_packet_count != 0 || secs_per_block != 0) {
1451                 if (!fileset_extract_prefix_suffix(argv[optind+1], &fprefix, &fsuffix)) {
1452                     ret = CANT_EXTRACT_PREFIX;
1453                     goto clean_exit;
1454                 }
1455
1456                 filename = fileset_get_filename_by_pattern(block_cnt++, rec, fprefix, fsuffix);
1457             } else {
1458                 filename = g_strdup(argv[optind+1]);
1459             }
1460             g_assert(filename);
1461
1462             /* If we don't have an application name add Editcap */
1463             if (wtap_block_get_string_option_value(g_array_index(params.shb_hdrs, wtap_block_t, 0), OPT_SHB_USERAPPL, &shb_user_appl) != WTAP_OPTTYPE_SUCCESS) {
1464                 wtap_block_add_string_option_format(g_array_index(params.shb_hdrs, wtap_block_t, 0), OPT_SHB_USERAPPL, "Editcap " VERSION);
1465             }
1466
1467             pdh = editcap_dump_open(filename, &params, &write_err);
1468
1469             if (pdh == NULL) {
1470                 cfile_dump_open_failure_message("editcap", filename,
1471                                                 write_err,
1472                                                 out_file_type_subtype);
1473                 ret = INVALID_FILE;
1474                 goto clean_exit;
1475             }
1476         } /* first packet only handling */
1477
1478
1479         buf = wtap_get_buf_ptr(wth);
1480
1481         /*
1482          * Not all packets have time stamps. Only process the time
1483          * stamp if we have one.
1484          */
1485         if (rec->presence_flags & WTAP_HAS_TS) {
1486             if (nstime_is_unset(&block_start)) {
1487                 block_start = rec->ts;
1488             }
1489             if (secs_per_block != 0) {
1490                 while (((guint32)(rec->ts.secs - block_start.secs) >  secs_per_block)
1491                        || ((guint32)(rec->ts.secs - block_start.secs) == secs_per_block
1492                            && rec->ts.nsecs >= block_start.nsecs )) { /* time for the next file */
1493
1494                     if (!wtap_dump_close(pdh, &write_err)) {
1495                         cfile_close_failure_message(filename, write_err);
1496                         ret = WRITE_ERROR;
1497                         goto clean_exit;
1498                     }
1499                     block_start.secs = block_start.secs +  secs_per_block; /* reset for next interval */
1500                     g_free(filename);
1501                     filename = fileset_get_filename_by_pattern(block_cnt++, rec, fprefix, fsuffix);
1502                     g_assert(filename);
1503
1504                     if (verbose)
1505                         fprintf(stderr, "Continuing writing in file %s\n", filename);
1506
1507                     pdh = editcap_dump_open(filename, &params, &write_err);
1508
1509                     if (pdh == NULL) {
1510                         cfile_dump_open_failure_message("editcap", filename,
1511                                                         write_err,
1512                                                         out_file_type_subtype);
1513                         ret = INVALID_FILE;
1514                         goto clean_exit;
1515                     }
1516                 }
1517             }
1518         }  /* time stamp handling */
1519
1520         if (split_packet_count != 0) {
1521             /* time for the next file? */
1522             if (written_count > 0 && (written_count % split_packet_count) == 0) {
1523                 if (!wtap_dump_close(pdh, &write_err)) {
1524                     cfile_close_failure_message(filename, write_err);
1525                     ret = WRITE_ERROR;
1526                     goto clean_exit;
1527                 }
1528
1529                 g_free(filename);
1530                 filename = fileset_get_filename_by_pattern(block_cnt++, rec, fprefix, fsuffix);
1531                 g_assert(filename);
1532
1533                 if (verbose)
1534                     fprintf(stderr, "Continuing writing in file %s\n", filename);
1535
1536                 pdh = editcap_dump_open(filename, &params, &write_err);
1537                 if (pdh == NULL) {
1538                     cfile_dump_open_failure_message("editcap", filename,
1539                                                     write_err,
1540                                                     out_file_type_subtype);
1541                     ret = INVALID_FILE;
1542                     goto clean_exit;
1543                 }
1544             }
1545         } /* split packet handling */
1546
1547         if (check_startstop) {
1548             /*
1549              * Is the packet in the selected timeframe?
1550              * If the packet has no time stamp, the answer is "no".
1551              */
1552             if (rec->presence_flags & WTAP_HAS_TS)
1553                 ts_okay = (rec->ts.secs >= starttime) && (rec->ts.secs < stoptime);
1554             else
1555                 ts_okay = FALSE;
1556         } else {
1557             /*
1558              * No selected timeframe, so all packets are "in the
1559              * selected timeframe".
1560              */
1561             ts_okay = TRUE;
1562         }
1563
1564         if (ts_okay && ((!selected(count) && !keep_em)
1565                         || (selected(count) && keep_em))) {
1566
1567             if (verbose && !dup_detect && !dup_detect_by_time)
1568                 fprintf(stderr, "Packet: %u\n", count);
1569
1570             /* We simply write it, perhaps after truncating it; we could
1571              * do other things, like modify it. */
1572
1573             rec = wtap_get_rec(wth);
1574
1575             if (rec->presence_flags & WTAP_HAS_TS) {
1576                 /* Do we adjust timestamps to ensure strict chronological
1577                  * order? */
1578                 if (do_strict_time_adjustment) {
1579                     if (previous_time.secs || previous_time.nsecs) {
1580                         if (!strict_time_adj.is_negative) {
1581                             nstime_t current;
1582                             nstime_t delta;
1583
1584                             current = rec->ts;
1585
1586                             nstime_delta(&delta, &current, &previous_time);
1587
1588                             if (delta.secs < 0 || delta.nsecs < 0) {
1589                                 /*
1590                                  * A negative delta indicates that the current packet
1591                                  * has an absolute timestamp less than the previous packet
1592                                  * that it is being compared to.  This is NOT a normal
1593                                  * situation since trace files usually have packets in
1594                                  * chronological order (oldest to newest).
1595                                  * Copy and change rather than modify
1596                                  * returned rec.
1597                                  */
1598                                 /* fprintf(stderr, "++out of order, need to adjust this packet!\n"); */
1599                                 temp_rec = *rec;
1600                                 temp_rec.ts.secs = previous_time.secs + strict_time_adj.tv.secs;
1601                                 temp_rec.ts.nsecs = previous_time.nsecs;
1602                                 if (temp_rec.ts.nsecs + strict_time_adj.tv.nsecs >= ONE_BILLION) {
1603                                     /* carry */
1604                                     temp_rec.ts.secs++;
1605                                     temp_rec.ts.nsecs += strict_time_adj.tv.nsecs - ONE_BILLION;
1606                                 } else {
1607                                     temp_rec.ts.nsecs += strict_time_adj.tv.nsecs;
1608                                 }
1609                                 rec = &temp_rec;
1610                             }
1611                         } else {
1612                             /*
1613                              * A negative strict time adjustment is requested.
1614                              * Unconditionally set each timestamp to previous
1615                              * packet's timestamp plus delta.
1616                              * Copy and change rather than modify returned
1617                              * rec.
1618                              */
1619                             temp_rec = *rec;
1620                             temp_rec.ts.secs = previous_time.secs + strict_time_adj.tv.secs;
1621                             temp_rec.ts.nsecs = previous_time.nsecs;
1622                             if (temp_rec.ts.nsecs + strict_time_adj.tv.nsecs >= ONE_BILLION) {
1623                                 /* carry */
1624                                 temp_rec.ts.secs++;
1625                                 temp_rec.ts.nsecs += strict_time_adj.tv.nsecs - ONE_BILLION;
1626                             } else {
1627                                 temp_rec.ts.nsecs += strict_time_adj.tv.nsecs;
1628                             }
1629                             rec = &temp_rec;
1630                         }
1631                     }
1632                     previous_time = rec->ts;
1633                 }
1634
1635                 if (time_adj.tv.secs != 0) {
1636                     /* Copy and change rather than modify returned rec */
1637                     temp_rec = *rec;
1638                     if (time_adj.is_negative)
1639                         temp_rec.ts.secs -= time_adj.tv.secs;
1640                     else
1641                         temp_rec.ts.secs += time_adj.tv.secs;
1642                     rec = &temp_rec;
1643                 }
1644
1645                 if (time_adj.tv.nsecs != 0) {
1646                     /* Copy and change rather than modify returned rec */
1647                     temp_rec = *rec;
1648                     if (time_adj.is_negative) { /* subtract */
1649                         if (temp_rec.ts.nsecs < time_adj.tv.nsecs) { /* borrow */
1650                             temp_rec.ts.secs--;
1651                             temp_rec.ts.nsecs += ONE_BILLION;
1652                         }
1653                         temp_rec.ts.nsecs -= time_adj.tv.nsecs;
1654                     } else {                  /* add */
1655                         if (temp_rec.ts.nsecs + time_adj.tv.nsecs >= ONE_BILLION) {
1656                             /* carry */
1657                             temp_rec.ts.secs++;
1658                             temp_rec.ts.nsecs += time_adj.tv.nsecs - ONE_BILLION;
1659                         } else {
1660                             temp_rec.ts.nsecs += time_adj.tv.nsecs;
1661                         }
1662                     }
1663                     rec = &temp_rec;
1664                 }
1665             } /* time stamp adjustment */
1666
1667             if (rec->rec_type == REC_TYPE_PACKET) {
1668                 if (snaplen != 0) {
1669                     /* Limit capture length to snaplen */
1670                     if (rec->rec_header.packet_header.caplen > snaplen) {
1671                         /* Copy and change rather than modify returned wtap_rec */
1672                         temp_rec = *rec;
1673                         temp_rec.rec_header.packet_header.caplen = snaplen;
1674                         rec = &temp_rec;
1675                     }
1676                     /* If -L, also set reported length to snaplen */
1677                     if (adjlen && rec->rec_header.packet_header.len > snaplen) {
1678                         /* Copy and change rather than modify returned phdr */
1679                         temp_rec = *rec;
1680                         temp_rec.rec_header.packet_header.len = snaplen;
1681                         rec = &temp_rec;
1682                     }
1683                 }
1684
1685                 /*
1686                  * CHOP
1687                  * Copy and change rather than modify returned phdr.
1688                  */
1689                 temp_rec = *rec;
1690                 handle_chopping(chop, &temp_rec.rec_header.packet_header,
1691                                 &rec->rec_header.packet_header, &buf,
1692                                 adjlen);
1693                 rec = &temp_rec;
1694
1695                 /* remove vlan info */
1696                 if (rem_vlan) {
1697                     /* Copy and change rather than modify returned rec */
1698                     temp_rec = *rec;
1699                     remove_vlan_info(&rec->rec_header.packet_header, buf,
1700                                      &temp_rec.rec_header.packet_header.caplen);
1701                     rec = &temp_rec;
1702                 }
1703
1704                 /* suppress duplicates by packet window */
1705                 if (dup_detect) {
1706                     if (is_duplicate(buf, rec->rec_header.packet_header.caplen)) {
1707                         if (verbose) {
1708                             fprintf(stderr, "Skipped: %u, Len: %u, MD5 Hash: ",
1709                                     count,
1710                                     rec->rec_header.packet_header.caplen);
1711                             for (i = 0; i < 16; i++)
1712                                 fprintf(stderr, "%02x",
1713                                         (unsigned char)fd_hash[cur_dup_entry].digest[i]);
1714                             fprintf(stderr, "\n");
1715                         }
1716                         duplicate_count++;
1717                         count++;
1718                         continue;
1719                     } else {
1720                         if (verbose) {
1721                             fprintf(stderr, "Packet: %u, Len: %u, MD5 Hash: ",
1722                                     count,
1723                                     rec->rec_header.packet_header.caplen);
1724                             for (i = 0; i < 16; i++)
1725                                 fprintf(stderr, "%02x",
1726                                         (unsigned char)fd_hash[cur_dup_entry].digest[i]);
1727                             fprintf(stderr, "\n");
1728                         }
1729                     }
1730                 } /* suppression of duplicates */
1731
1732                 if (rec->presence_flags & WTAP_HAS_TS) {
1733                     /* suppress duplicates by time window */
1734                     if (dup_detect_by_time) {
1735                         nstime_t current;
1736
1737                         current.secs  = rec->ts.secs;
1738                         current.nsecs = rec->ts.nsecs;
1739
1740                         if (is_duplicate_rel_time(buf,
1741                                                   rec->rec_header.packet_header.caplen,
1742                                                   &current)) {
1743                             if (verbose) {
1744                                 fprintf(stderr, "Skipped: %u, Len: %u, MD5 Hash: ",
1745                                         count,
1746                                         rec->rec_header.packet_header.caplen);
1747                                 for (i = 0; i < 16; i++)
1748                                     fprintf(stderr, "%02x",
1749                                             (unsigned char)fd_hash[cur_dup_entry].digest[i]);
1750                                 fprintf(stderr, "\n");
1751                             }
1752                             duplicate_count++;
1753                             count++;
1754                             continue;
1755                         } else {
1756                             if (verbose) {
1757                                 fprintf(stderr, "Packet: %u, Len: %u, MD5 Hash: ",
1758                                         count,
1759                                         rec->rec_header.packet_header.caplen);
1760                                 for (i = 0; i < 16; i++)
1761                                     fprintf(stderr, "%02x",
1762                                             (unsigned char)fd_hash[cur_dup_entry].digest[i]);
1763                                 fprintf(stderr, "\n");
1764                             }
1765                         }
1766                     }
1767                 } /* suppress duplicates by time window */
1768             }
1769
1770             /* Random error mutation */
1771             do_mutation = FALSE;
1772             caplen = 0;
1773             if (err_prob > 0.0) {
1774                 switch (rec->rec_type) {
1775
1776                 case REC_TYPE_PACKET:
1777                     caplen = rec->rec_header.packet_header.caplen;
1778                     do_mutation = TRUE;
1779                     break;
1780
1781                 case REC_TYPE_FT_SPECIFIC_EVENT:
1782                 case REC_TYPE_FT_SPECIFIC_REPORT:
1783                     caplen = rec->rec_header.ft_specific_header.record_len;
1784                     do_mutation = TRUE;
1785                     break;
1786
1787                 case REC_TYPE_SYSCALL:
1788                     caplen = rec->rec_header.syscall_header.event_filelen;
1789                     do_mutation = TRUE;
1790                     break;
1791                 }
1792
1793                 if (change_offset > caplen) {
1794                     fprintf(stderr, "change offset %u is longer than caplen %u in packet %u\n",
1795                         change_offset, caplen, count);
1796                     do_mutation = FALSE;
1797                 }
1798             }
1799
1800             if (do_mutation) {
1801                 int real_data_start = 0;
1802
1803                 /* Protect non-protocol data */
1804                 switch (rec->rec_type) {
1805
1806                 case REC_TYPE_PACKET:
1807                     if (wtap_file_type_subtype(wth) == WTAP_FILE_TYPE_SUBTYPE_CATAPULT_DCT2000)
1808                         real_data_start = find_dct2000_real_data(buf);
1809                     break;
1810                 }
1811
1812                 real_data_start += change_offset;
1813
1814                 for (i = real_data_start; i < (int) caplen; i++) {
1815                     if (rand() <= err_prob * RAND_MAX) {
1816                         err_type = rand() / (RAND_MAX / ERR_WT_TOTAL + 1);
1817
1818                         if (err_type < ERR_WT_BIT) {
1819                             buf[i] ^= 1 << (rand() / (RAND_MAX / 8 + 1));
1820                             err_type = ERR_WT_TOTAL;
1821                         } else {
1822                             err_type -= ERR_WT_BYTE;
1823                         }
1824
1825                         if (err_type < ERR_WT_BYTE) {
1826                             buf[i] = rand() / (RAND_MAX / 255 + 1);
1827                             err_type = ERR_WT_TOTAL;
1828                         } else {
1829                             err_type -= ERR_WT_BYTE;
1830                         }
1831
1832                         if (err_type < ERR_WT_ALNUM) {
1833                             buf[i] = ALNUM_CHARS[rand() / (RAND_MAX / ALNUM_LEN + 1)];
1834                             err_type = ERR_WT_TOTAL;
1835                         } else {
1836                             err_type -= ERR_WT_ALNUM;
1837                         }
1838
1839                         if (err_type < ERR_WT_FMT) {
1840                             if ((unsigned int)i < caplen - 2)
1841                                 g_strlcpy((char*) &buf[i], "%s", 2);
1842                             err_type = ERR_WT_TOTAL;
1843                         } else {
1844                             err_type -= ERR_WT_FMT;
1845                         }
1846
1847                         if (err_type < ERR_WT_AA) {
1848                             for (j = i; j < (int) caplen; j++)
1849                                 buf[j] = 0xAA;
1850                             i = caplen;
1851                         }
1852                     }
1853                 }
1854             } /* random error mutation */
1855
1856             /* Find a packet comment we may need to write */
1857             if (frames_user_comments) {
1858                 const char *comment =
1859                     (const char*)g_tree_lookup(frames_user_comments, GUINT_TO_POINTER(read_count));
1860                 /* XXX: What about comment changed to no comment? */
1861                 if (comment != NULL) {
1862                     /* Copy and change rather than modify returned rec */
1863                     temp_rec = *rec;
1864                     temp_rec.opt_comment = g_strdup(comment);
1865                     temp_rec.has_comment_changed = TRUE;
1866                     rec = &temp_rec;
1867                 } else {
1868                     /* Copy and change rather than modify returned rec */
1869                     temp_rec = *rec;
1870                     temp_rec.has_comment_changed = FALSE;
1871                     rec = &temp_rec;
1872                 }
1873             }
1874
1875             /* Attempt to dump out current frame to the output file */
1876             if (!wtap_dump(pdh, rec, buf, &write_err, &write_err_info)) {
1877                 cfile_write_failure_message("editcap", argv[optind],
1878                                             filename,
1879                                             write_err, write_err_info,
1880                                             read_count,
1881                                             out_file_type_subtype);
1882                 ret = DUMP_ERROR;
1883                 goto clean_exit;
1884             }
1885             written_count++;
1886         }
1887         count++;
1888     }
1889
1890     g_free(fprefix);
1891     g_free(fsuffix);
1892
1893     if (read_err != 0) {
1894         /* Print a message noting that the read failed somewhere along the
1895          * line. */
1896         cfile_read_failure_message("editcap", argv[optind], read_err,
1897                                    read_err_info);
1898     }
1899
1900     if (!pdh) {
1901         /* No valid packages found, open the outfile so we can write an
1902          * empty header */
1903         g_free (filename);
1904         filename = g_strdup(argv[optind+1]);
1905
1906         pdh = editcap_dump_open(filename, &params, &write_err);
1907         if (pdh == NULL) {
1908             cfile_dump_open_failure_message("editcap", filename,
1909                                             write_err,
1910                                             out_file_type_subtype);
1911             ret = INVALID_FILE;
1912             goto clean_exit;
1913         }
1914     }
1915
1916     if (!wtap_dump_close(pdh, &write_err)) {
1917         cfile_close_failure_message(filename, write_err);
1918         ret = WRITE_ERROR;
1919         goto clean_exit;
1920     }
1921     g_free(filename);
1922
1923     if (frames_user_comments) {
1924         g_tree_destroy(frames_user_comments);
1925     }
1926
1927     if (dup_detect) {
1928         fprintf(stderr, "%u packet%s seen, %u packet%s skipped with duplicate window of %i packets.\n",
1929                 count - 1, plurality(count - 1, "", "s"), duplicate_count,
1930                 plurality(duplicate_count, "", "s"), dup_window);
1931     } else if (dup_detect_by_time) {
1932         fprintf(stderr, "%u packet%s seen, %u packet%s skipped with duplicate time window equal to or less than %ld.%09ld seconds.\n",
1933                 count - 1, plurality(count - 1, "", "s"), duplicate_count,
1934                 plurality(duplicate_count, "", "s"),
1935                 (long)relative_time_window.secs,
1936                 (long int)relative_time_window.nsecs);
1937     }
1938
1939 clean_exit:
1940     g_free(params.idb_inf);
1941     wtap_dump_params_cleanup(&params);
1942     if (wth != NULL)
1943         wtap_close(wth);
1944     wtap_cleanup();
1945     free_progdirs();
1946     return ret;
1947 }
1948
1949 #ifdef _WIN32
1950 int
1951 wmain(int argc, wchar_t *wc_argv[])
1952 {
1953     char **argv;
1954
1955     argv = arg_list_utf_16to8(argc, wc_argv);
1956     return real_main(argc, argv);
1957 }
1958 #else
1959 int
1960 main(int argc, char *argv[])
1961 {
1962     return real_main(argc, argv);
1963 }
1964 #endif
1965
1966 /* Skip meta-information read from file to return offset of real
1967  * protocol data */
1968 static int
1969 find_dct2000_real_data(guint8 *buf)
1970 {
1971     int n = 0;
1972
1973     for (n = 0; buf[n] != '\0'; n++);   /* Context name */
1974     n++;
1975     n++;                                /* Context port number */
1976     for (; buf[n] != '\0'; n++);        /* Timestamp */
1977     n++;
1978     for (; buf[n] != '\0'; n++);        /* Protocol name */
1979     n++;
1980     for (; buf[n] != '\0'; n++);        /* Variant number (as string) */
1981     n++;
1982     for (; buf[n] != '\0'; n++);        /* Outhdr (as string) */
1983     n++;
1984     n += 2;                             /* Direction & encap */
1985
1986     return n;
1987 }
1988
1989 /*
1990  * We support up to 2 chopping regions in a single pass: one specified by the
1991  * positive chop length, and one by the negative chop length.
1992  */
1993 static void
1994 handle_chopping(chop_t chop, wtap_packet_header *out_phdr,
1995                 const wtap_packet_header *in_phdr, guint8 **buf,
1996                 gboolean adjlen)
1997 {
1998     /* If we're not chopping anything from one side, then the offset for that
1999      * side is meaningless. */
2000     if (chop.len_begin == 0)
2001         chop.off_begin_pos = chop.off_begin_neg = 0;
2002     if (chop.len_end == 0)
2003         chop.off_end_pos = chop.off_end_neg = 0;
2004
2005     if (chop.off_begin_neg < 0) {
2006         chop.off_begin_pos += in_phdr->caplen + chop.off_begin_neg;
2007         chop.off_begin_neg = 0;
2008     }
2009     if (chop.off_end_pos > 0) {
2010         chop.off_end_neg += chop.off_end_pos - in_phdr->caplen;
2011         chop.off_end_pos = 0;
2012     }
2013
2014     /* If we've crossed chopping regions, swap them */
2015     if (chop.len_begin && chop.len_end) {
2016         if (chop.off_begin_pos > ((int)in_phdr->caplen + chop.off_end_neg)) {
2017             int tmp_len, tmp_off;
2018
2019             tmp_off = in_phdr->caplen + chop.off_end_neg + chop.len_end;
2020             tmp_len = -chop.len_end;
2021
2022             chop.off_end_neg = chop.len_begin + chop.off_begin_pos - in_phdr->caplen;
2023             chop.len_end = -chop.len_begin;
2024
2025             chop.len_begin = tmp_len;
2026             chop.off_begin_pos = tmp_off;
2027         }
2028     }
2029
2030     /* Make sure we don't chop off more than we have available */
2031     if (in_phdr->caplen < (guint32)(chop.off_begin_pos - chop.off_end_neg)) {
2032         chop.len_begin = 0;
2033         chop.len_end = 0;
2034     }
2035     if ((guint32)(chop.len_begin - chop.len_end) >
2036         (in_phdr->caplen - (guint32)(chop.off_begin_pos - chop.off_end_neg))) {
2037         chop.len_begin = in_phdr->caplen - (chop.off_begin_pos - chop.off_end_neg);
2038         chop.len_end = 0;
2039     }
2040
2041     /* Handle chopping from the beginning.  Note that if a beginning offset
2042      * was specified, we need to keep that piece */
2043     if (chop.len_begin > 0) {
2044         *out_phdr = *in_phdr;
2045
2046         if (chop.off_begin_pos > 0) {
2047             memmove(*buf + chop.off_begin_pos,
2048                     *buf + chop.off_begin_pos + chop.len_begin,
2049                     out_phdr->caplen - chop.len_begin);
2050         } else {
2051             *buf += chop.len_begin;
2052         }
2053         out_phdr->caplen -= chop.len_begin;
2054
2055         if (adjlen) {
2056             if (in_phdr->len > (guint32)chop.len_begin)
2057                 out_phdr->len -= chop.len_begin;
2058             else
2059                 out_phdr->len = 0;
2060         }
2061         in_phdr = out_phdr;
2062     }
2063
2064     /* Handle chopping from the end.  Note that if an ending offset was
2065      * specified, we need to keep that piece */
2066     if (chop.len_end < 0) {
2067         *out_phdr = *in_phdr;
2068
2069         if (chop.off_end_neg < 0) {
2070             memmove(*buf + (gint)out_phdr->caplen + (chop.len_end + chop.off_end_neg),
2071                     *buf + (gint)out_phdr->caplen + chop.off_end_neg,
2072                     -chop.off_end_neg);
2073         }
2074         out_phdr->caplen += chop.len_end;
2075
2076         if (adjlen) {
2077             if (((signed int) in_phdr->len + chop.len_end) > 0)
2078                 out_phdr->len += chop.len_end;
2079             else
2080                 out_phdr->len = 0;
2081         }
2082         /*in_phdr = out_phdr;*/
2083     }
2084 }
2085
2086 /*
2087  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
2088  *
2089  * Local variables:
2090  * c-basic-offset: 4
2091  * tab-width: 8
2092  * indent-tabs-mode: nil
2093  * End:
2094  *
2095  * vi: set shiftwidth=4 tabstop=8 expandtab:
2096  * :indentSize=4:tabSize=8:noTabs=true:
2097  */