Fix some spelling/typos
[obnox/wireshark/wip.git] / editcap.c
1 /* Edit capture files.  We can delete packets, adjust timestamps, or
2  * simply convert from one format to another format.
3  *
4  * $Id$
5  *
6  * Originally written by Richard Sharpe.
7  * Improved by Guy Harris.
8  * Further improved by Richard Sharpe.
9  */
10
11 #ifdef HAVE_CONFIG_H
12 #include "config.h"
13 #endif
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <stdarg.h>
19
20 /*
21  * Just make sure we include the prototype for strptime as well
22  * (needed for glibc 2.2) but make sure we do this only if not
23  * yet defined.
24  */
25
26 #ifndef __USE_XOPEN
27 #  define __USE_XOPEN
28 #endif
29
30 #include <time.h>
31 #include <glib.h>
32
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36
37
38
39 #ifdef HAVE_SYS_TIME_H
40 #include <sys/time.h>
41 #endif
42
43 #include "wtap.h"
44
45 #ifdef NEED_GETOPT_H
46 #include "getopt.h"
47 #endif
48
49 #ifdef _WIN32
50 #include <process.h>    /* getpid */
51 #ifdef HAVE_WINSOCK2_H
52 #include <winsock2.h>
53 #endif
54 #endif
55
56 #ifdef NEED_STRPTIME_H
57 # include "strptime.h"
58 #endif
59
60 #include "epan/crypt/crypt-md5.h"
61 #include "epan/plugins.h"
62 #include "epan/report_err.h"
63 #include "epan/filesystem.h"
64 #include <wsutil/privileges.h>
65 #include "epan/nstime.h"
66
67 #include "svnversion.h"
68
69 /*
70  * Some globals so we can pass things to various routines
71  */
72
73 struct select_item {
74
75   int inclusive;
76   int first, second;
77
78 };
79
80
81 /*
82  * Duplicate frame detection
83  */
84 typedef struct _fd_hash_t {
85   md5_byte_t digest[16];
86   guint32 len;
87 } fd_hash_t;
88
89 #define DUP_DEPTH 5
90 fd_hash_t fd_hash[DUP_DEPTH];
91 int cur_dup = 0;
92
93 #define ONE_MILLION 1000000
94
95 /* Weights of different errors we can introduce */
96 /* We should probably make these command-line arguments */
97 /* XXX - Should we add a bit-level error? */
98 #define ERR_WT_BIT   5  /* Flip a random bit */
99 #define ERR_WT_BYTE  5  /* Substitute a random byte */
100 #define ERR_WT_ALNUM 5  /* Substitute a random character in [A-Za-z0-9] */
101 #define ERR_WT_FMT   2  /* Substitute "%s" */
102 #define ERR_WT_AA    1  /* Fill the remainder of the buffer with 0xAA */
103 #define ERR_WT_TOTAL (ERR_WT_BIT + ERR_WT_BYTE + ERR_WT_ALNUM + ERR_WT_FMT + ERR_WT_AA)
104
105 #define ALNUM_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
106 #define ALNUM_LEN (sizeof(ALNUM_CHARS) - 1)
107
108
109 struct time_adjustment {
110   struct timeval tv;
111   int is_negative;
112 };
113
114 #define MAX_SELECTIONS 512
115 static struct select_item selectfrm[MAX_SELECTIONS];
116 static int max_selected = -1;
117 static int keep_em = 0;
118 static int out_file_type = WTAP_FILE_PCAP;   /* default to "libpcap"   */
119 static int out_frame_type = -2;              /* Leave frame type alone */
120 static int verbose = 0;                      /* Not so verbose         */
121 static struct time_adjustment time_adj = {{0, 0}, 0}; /* no adjustment */
122 static double err_prob = 0.0;
123 static time_t starttime = 0;
124 static time_t stoptime = 0;
125 static gboolean check_startstop = FALSE;
126 static gboolean dup_detect = FALSE;
127
128 static int find_dct2000_real_data(guint8 *buf);
129
130 /* Add a selection item, a simple parser for now */
131 static gboolean
132 add_selection(char *sel)
133 {
134   char *locn;
135   char *next;
136
137   if (++max_selected >= MAX_SELECTIONS) {
138     /* Let the user know we stopped selecting */
139     printf("Out of room for packet selections!\n");
140     return(FALSE);
141   }
142
143   printf("Add_Selected: %s\n", sel);
144
145   if ((locn = strchr(sel, '-')) == NULL) { /* No dash, so a single number? */
146
147     printf("Not inclusive ...");
148
149     selectfrm[max_selected].inclusive = 0;
150     selectfrm[max_selected].first = atoi(sel);
151
152     printf(" %i\n", selectfrm[max_selected].first);
153
154   }
155   else {
156
157     printf("Inclusive ...");
158
159     next = locn + 1;
160     selectfrm[max_selected].inclusive = 1;
161     selectfrm[max_selected].first = atoi(sel);
162     selectfrm[max_selected].second = atoi(next);
163
164     printf(" %i, %i\n", selectfrm[max_selected].first, selectfrm[max_selected].second);
165
166   }
167
168   return(TRUE);
169 }
170
171 /* Was the packet selected? */
172
173 static int
174 selected(int recno)
175 {
176   int i = 0;
177
178   for (i = 0; i<= max_selected; i++) {
179
180     if (selectfrm[i].inclusive) {
181       if (selectfrm[i].first <= recno && selectfrm[i].second >= recno)
182         return 1;
183     }
184     else {
185       if (recno == selectfrm[i].first)
186         return 1;
187     }
188   }
189
190   return 0;
191
192 }
193
194 /* is the packet in the selected timeframe */
195 static gboolean
196 check_timestamp(wtap *wth)
197 {
198   struct wtap_pkthdr* pkthdr = wtap_phdr(wth);
199
200   return ( pkthdr->ts.secs >= starttime ) && ( pkthdr->ts.secs <= stoptime );
201 }
202
203 static void
204 set_time_adjustment(char *optarg)
205 {
206   char *frac, *end;
207   long val;
208   int frac_digits;
209
210   if (!optarg)
211     return;
212
213   /* skip leading whitespace */
214   while (*optarg == ' ' || *optarg == '\t') {
215       optarg++;
216   }
217
218   /* check for a negative adjustment */
219   if (*optarg == '-') {
220       time_adj.is_negative = 1;
221       optarg++;
222   }
223
224   /* collect whole number of seconds, if any */
225   if (*optarg == '.') {         /* only fractional (i.e., .5 is ok) */
226       val  = 0;
227       frac = optarg;
228   } else {
229       val = strtol(optarg, &frac, 10);
230       if (frac == NULL || frac == optarg || val == LONG_MIN || val == LONG_MAX) {
231           fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
232                   optarg);
233           exit(1);
234       }
235       if (val < 0) {            /* implies '--' since we caught '-' above  */
236           fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
237                   optarg);
238           exit(1);
239       }
240   }
241   time_adj.tv.tv_sec = val;
242
243   /* now collect the partial seconds, if any */
244   if (*frac != '\0') {             /* chars left, so get fractional part */
245     val = strtol(&(frac[1]), &end, 10);
246     if (*frac != '.' || end == NULL || end == frac
247         || val < 0 || val > ONE_MILLION || val == LONG_MIN || val == LONG_MAX) {
248       fprintf(stderr, "editcap: \"%s\" isn't a valid time adjustment\n",
249               optarg);
250       exit(1);
251     }
252   }
253   else {
254     return;                     /* no fractional digits */
255   }
256
257   /* adjust fractional portion from fractional to numerator
258    * e.g., in "1.5" from 5 to 500000 since .5*10^6 = 500000 */
259   if (frac && end) {            /* both are valid */
260     frac_digits = end - frac - 1;   /* fractional digit count (remember '.') */
261     while(frac_digits < 6) {    /* this is frac of 10^6 */
262       val *= 10;
263       frac_digits++;
264     }
265   }
266   time_adj.tv.tv_usec = val;
267 }
268
269 static gboolean
270 is_duplicate(guint8* fd, guint32 len) {
271   int i;
272   md5_state_t ms;
273
274   cur_dup++;
275   if (cur_dup >= DUP_DEPTH)
276     cur_dup = 0;
277
278   /* Calculate our digest */
279   md5_init(&ms);
280   md5_append(&ms, fd, len);
281   md5_finish(&ms, fd_hash[cur_dup].digest);
282
283   fd_hash[cur_dup].len = len;
284
285   /* Look for duplicates */
286   for (i = 0; i < DUP_DEPTH; i++) {
287     if (i == cur_dup)
288       continue;
289
290     if (fd_hash[i].len == fd_hash[cur_dup].len &&
291         memcmp(fd_hash[i].digest, fd_hash[cur_dup].digest, 16) == 0) {
292       return TRUE;
293     }
294   }
295
296   return FALSE;
297 }
298
299 static void
300 usage(void)
301 {
302   fprintf(stderr, "Editcap %s"
303 #ifdef SVNVERSION
304           " (" SVNVERSION ")"
305 #endif
306           "\n", VERSION);
307   fprintf(stderr, "Edit and/or translate the format of capture files.\n");
308   fprintf(stderr, "See http://www.wireshark.org for more information.\n");
309   fprintf(stderr, "\n");
310   fprintf(stderr, "Usage: editcap [options] ... <infile> <outfile> [ <packet#>[-<packet#>] ... ]\n");
311   fprintf(stderr, "\n");
312   fprintf(stderr, "A single packet or a range of packets can be selected.\n");
313   fprintf(stderr, "\n");
314   fprintf(stderr, "Packet selection:\n");
315   fprintf(stderr, "  -r                     keep the selected packets, default is to delete them\n");
316   fprintf(stderr, "  -A <start time>        don't output packets whose timestamp is before the\n");
317   fprintf(stderr, "                         given time (format as YYYY-MM-DD hh:mm:ss)\n");
318   fprintf(stderr, "  -B <stop time>         don't output packets whose timestamp is after the\n");
319   fprintf(stderr, "                         given time (format as YYYY-MM-DD hh:mm:ss)\n");
320   fprintf(stderr, "  -d                     remove duplicate packets\n");
321   fprintf(stderr, "\n");
322   fprintf(stderr, "Packet manipulation:\n");
323   fprintf(stderr, "  -s <snaplen>           truncate each packet to max. <snaplen> bytes of data\n");
324   fprintf(stderr, "  -C <choplen>           chop each packet at the end by <choplen> bytes\n");
325   fprintf(stderr, "  -t <time adjustment>   adjust the timestamp of each packet,\n");
326   fprintf(stderr, "                         <time adjustment> is in relative seconds (e.g. -0.5)\n");
327   fprintf(stderr, "  -E <error probability> set the probability (between 0.0 and 1.0 incl.)\n");
328   fprintf(stderr, "                         that a particular packet byte will be randomly changed\n");
329   fprintf(stderr, "\n");
330   fprintf(stderr, "Output File(s):\n");
331   fprintf(stderr, "  -c <packets per file>  split the packet output to different files,\n");
332   fprintf(stderr, "                         based on uniform packet counts \n");
333   fprintf(stderr, "                         with a maximum of <packets per file> each\n");
334   fprintf(stderr, "  -i <seconds per file>  split the packet output to different files,\n");
335   fprintf(stderr, "                         based on uniform time intervals \n");
336   fprintf(stderr, "                         with a maximum of <seconds per file> each\n");
337   fprintf(stderr, "  -F <capture type>      set the output file type, default is libpcap\n");
338   fprintf(stderr, "                         an empty \"-F\" option will list the file types\n");
339   fprintf(stderr, "  -T <encap type>        set the output file encapsulation type,\n");
340   fprintf(stderr, "                         default is the same as the input file\n");
341   fprintf(stderr, "                         an empty \"-T\" option will list the encapsulation types\n");
342   fprintf(stderr, "\n");
343   fprintf(stderr, "Miscellaneous:\n");
344   fprintf(stderr, "  -h                     display this help and exit\n");
345   fprintf(stderr, "  -v                     verbose output\n");
346   fprintf(stderr, "\n");
347 }
348
349 static void
350 list_capture_types(void) {
351     int i;
352
353     fprintf(stderr, "editcap: The available capture file types for \"F\":\n");
354     for (i = 0; i < WTAP_NUM_FILE_TYPES; i++) {
355       if (wtap_dump_can_open(i))
356         fprintf(stderr, "    %s - %s\n",
357           wtap_file_type_short_string(i), wtap_file_type_string(i));
358     }
359 }
360
361 static void
362 list_encap_types(void) {
363     int i;
364     const char *string;
365
366     fprintf(stderr, "editcap: The available encapsulation types for \"T\":\n");
367     for (i = 0; i < WTAP_NUM_ENCAP_TYPES; i++) {
368         string = wtap_encap_short_string(i);
369         if (string != NULL)
370           fprintf(stderr, "    %s - %s\n",
371             string, wtap_encap_string(i));
372     }
373 }
374
375 /*
376  *  Don't report failures to load plugins because most (non-wiretap) plugins
377  *  *should* fail to load (because we're not linked against libwireshark and
378  *  dissector plugins need libwireshark).
379  */
380 static void
381 failure_message(const char *msg_format _U_, va_list ap _U_)
382 {
383         return;
384 }
385
386 int
387 main(int argc, char *argv[])
388 {
389   wtap *wth;
390   int i, j, err;
391   gchar *err_info;
392   extern char *optarg;
393   extern int optind;
394   int opt;
395   char *p;
396   unsigned int snaplen = 0;             /* No limit               */
397   unsigned int choplen = 0;             /* No chop                */
398   wtap_dumper *pdh;
399   int count = 1;
400   gint64 data_offset;
401   struct wtap_pkthdr snap_phdr;
402   const struct wtap_pkthdr *phdr;
403   int err_type;
404   guint8 *buf;
405   int split_packet_count = 0;
406   int written_count = 0;
407   char *filename;
408   size_t filenamelen = 0;
409   gboolean check_ts;
410   int secs_per_block = 0;
411   int block_cnt = 0;
412   nstime_t block_start;
413
414 #ifdef HAVE_PLUGINS
415   char* init_progfile_dir_error;
416 #endif
417
418   /*
419    * Get credential information for later use.
420    */
421   get_credential_info();
422
423 #ifdef HAVE_PLUGINS
424   /* Register wiretap plugins */
425   if ((init_progfile_dir_error = init_progfile_dir(argv[0]))) {
426     g_warning("capinfos: init_progfile_dir(): %s", init_progfile_dir_error);
427     g_free(init_progfile_dir_error);
428   } else {
429     init_report_err(failure_message,NULL,NULL);
430     init_plugins();
431   }
432 #endif
433
434   /* Process the options */
435   while ((opt = getopt(argc, argv, "A:B:c:C:dE:F:hrs:i:t:T:v")) !=-1) {
436
437     switch (opt) {
438
439     case 'E':
440       err_prob = strtod(optarg, &p);
441       if (p == optarg || err_prob < 0.0 || err_prob > 1.0) {
442         fprintf(stderr, "editcap: probability \"%s\" must be between 0.0 and 1.0\n",
443             optarg);
444         exit(1);
445       }
446       srand( (unsigned int) (time(NULL) + getpid()) );
447       break;
448
449     case 'F':
450       out_file_type = wtap_short_string_to_file_type(optarg);
451       if (out_file_type < 0) {
452         fprintf(stderr, "editcap: \"%s\" isn't a valid capture file type\n\n",
453             optarg);
454         list_capture_types();
455         exit(1);
456       }
457       break;
458
459     case 'c':
460       split_packet_count = strtol(optarg, &p, 10);
461       if (p == optarg || *p != '\0') {
462         fprintf(stderr, "editcap: \"%s\" isn't a valid packet count\n",
463             optarg);
464         exit(1);
465       }
466       if (split_packet_count <= 0) {
467         fprintf(stderr, "editcap: \"%d\" packet count must be larger than zero\n",
468             split_packet_count);
469         exit(1);
470       }
471       break;
472
473     case 'C':
474       choplen = strtol(optarg, &p, 10);
475       if (p == optarg || *p != '\0') {
476         fprintf(stderr, "editcap: \"%s\" isn't a valid chop length\n",
477             optarg);
478         exit(1);
479       }
480       break;
481
482     case 'd':
483       dup_detect = TRUE;
484       for (i = 0; i < DUP_DEPTH; i++) {
485         memset(&fd_hash[i].digest, 0, 16);
486         fd_hash[i].len = 0;
487       }
488       break;
489
490     case '?':              /* Bad options if GNU getopt */
491       switch(optopt) {
492       case'F':
493         list_capture_types();
494         break;
495       case'T':
496         list_encap_types();
497         break;
498       default:
499         usage();
500       }
501       exit(1);
502       break;
503
504     case 'h':
505       usage();
506       exit(1);
507       break;
508
509     case 'r':
510       keep_em = !keep_em;  /* Just invert */
511       break;
512
513     case 's':
514       snaplen = strtol(optarg, &p, 10);
515       if (p == optarg || *p != '\0') {
516         fprintf(stderr, "editcap: \"%s\" isn't a valid snapshot length\n",
517                 optarg);
518         exit(1);
519       }
520       break;
521
522     case 't':
523       set_time_adjustment(optarg);
524       break;
525
526     case 'T':
527       out_frame_type = wtap_short_string_to_encap(optarg);
528       if (out_frame_type < 0) {
529         fprintf(stderr, "editcap: \"%s\" isn't a valid encapsulation type\n\n",
530             optarg);
531         list_encap_types();
532         exit(1);
533       }
534       break;
535
536     case 'v':
537       verbose = !verbose;  /* Just invert */
538       break;
539
540     case 'i': /* break capture file based on time interval */
541       secs_per_block = atoi(optarg);
542       nstime_set_unset(&block_start);
543       if(secs_per_block <= 0) {
544         fprintf(stderr, "editcap: \"%s\" isn't a valid time interval\n\n", optarg);
545         exit(1);
546         }
547       break;
548
549     case 'A':
550     {
551       struct tm starttm;
552
553       memset(&starttm,0,sizeof(struct tm));
554
555       if(!strptime(optarg,"%Y-%m-%d %T",&starttm)) {
556         fprintf(stderr, "editcap: \"%s\" isn't a valid time format\n\n", optarg);
557         exit(1);
558       }
559
560       check_startstop = TRUE;
561       starttm.tm_isdst = -1;
562
563       starttime = mktime(&starttm);
564       break;
565     }
566
567     case 'B':
568     {
569       struct tm stoptm;
570
571       memset(&stoptm,0,sizeof(struct tm));
572
573       if(!strptime(optarg,"%Y-%m-%d %T",&stoptm)) {
574         fprintf(stderr, "editcap: \"%s\" isn't a valid time format\n\n", optarg);
575         exit(1);
576       }
577       check_startstop = TRUE;
578       stoptm.tm_isdst = -1;
579       stoptime = mktime(&stoptm);
580       break;
581     }
582     }
583
584   }
585
586 #ifdef DEBUG
587   printf("Optind = %i, argc = %i\n", optind, argc);
588 #endif
589
590   if ((argc - optind) < 1) {
591
592     usage();
593     exit(1);
594
595   }
596
597   if (check_startstop && !stoptime) {
598     struct tm stoptm;
599     /* XXX: will work until 2035 */
600     memset(&stoptm,0,sizeof(struct tm));
601     stoptm.tm_year = 135;
602     stoptm.tm_mday = 31;
603     stoptm.tm_mon = 11;
604
605     stoptime = mktime(&stoptm);
606   }
607
608   if (starttime > stoptime) {
609     fprintf(stderr, "editcap: start time is after the stop time\n");
610     exit(1);
611   }
612
613   if (split_packet_count > 0 && secs_per_block > 0) {
614     fprintf(stderr, "editcap: can't split on both packet count and time interval\n");
615     fprintf(stderr, "editcap: at the same time\n");
616     exit(1);
617   }
618
619   wth = wtap_open_offline(argv[optind], &err, &err_info, FALSE);
620
621   if (!wth) {
622     fprintf(stderr, "editcap: Can't open %s: %s\n", argv[optind],
623         wtap_strerror(err));
624     switch (err) {
625
626     case WTAP_ERR_UNSUPPORTED:
627     case WTAP_ERR_UNSUPPORTED_ENCAP:
628     case WTAP_ERR_BAD_RECORD:
629       fprintf(stderr, "(%s)\n", err_info);
630       g_free(err_info);
631       break;
632     }
633     exit(1);
634
635   }
636
637   if (verbose) {
638     fprintf(stderr, "File %s is a %s capture file.\n", argv[optind],
639             wtap_file_type_string(wtap_file_type(wth)));
640   }
641
642   /*
643    * Now, process the rest, if any ... we only write if there is an extra
644    * argument or so ...
645    */
646
647   if ((argc - optind) >= 2) {
648
649     if (out_frame_type == -2)
650       out_frame_type = wtap_file_encap(wth);
651
652     if (split_packet_count > 0) {
653       filenamelen = strlen(argv[optind+1]) + 20;
654       filename = (char *) g_malloc(filenamelen);
655       if (!filename) {
656         exit(5);
657       }
658       g_snprintf(filename, filenamelen, "%s-%05d", argv[optind+1], 0);
659     } else {
660       if (secs_per_block > 0) {
661         filenamelen = strlen(argv[optind+1]) + 7;
662         filename = (char *) g_malloc(filenamelen);
663         if (!filename) {
664           exit(5);
665           }
666         g_snprintf(filename, filenamelen, "%s-%05d", argv[optind+1], block_cnt);
667         }
668       else {
669         filename = argv[optind+1];
670         }
671       }
672
673     pdh = wtap_dump_open(filename, out_file_type,
674         out_frame_type, wtap_snapshot_length(wth),
675         FALSE /* compressed */, &err);
676     if (pdh == NULL) {
677
678       fprintf(stderr, "editcap: Can't open or create %s: %s\n", filename,
679               wtap_strerror(err));
680       exit(1);
681     }
682
683     for (i = optind + 2; i < argc; i++)
684       if (add_selection(argv[i]) == FALSE)
685         break;
686
687     while (wtap_read(wth, &err, &err_info, &data_offset)) {
688
689       if (secs_per_block > 0) {
690         phdr = wtap_phdr(wth);
691
692         if (nstime_is_unset(&block_start)) {  /* should only be the first packet */
693           block_start.secs = phdr->ts.secs;
694           block_start.nsecs = phdr->ts.nsecs; 
695           } 
696
697         while ((phdr->ts.secs - block_start.secs >  secs_per_block) || 
698             (phdr->ts.secs - block_start.secs == secs_per_block && 
699                 phdr->ts.nsecs >= block_start.nsecs )) { /* time for the next file */
700
701           if (!wtap_dump_close(pdh, &err)) {
702             fprintf(stderr, "editcap: Error writing to %s: %s\n", filename,
703                 wtap_strerror(err));
704             exit(1);
705             }
706           block_start.secs = block_start.secs +  secs_per_block; /* reset for next interval */
707           g_snprintf(filename, filenamelen, "%s-%05d",argv[optind+1], ++block_cnt);
708
709           if (verbose) {
710             fprintf(stderr, "Continuing writing in file %s\n", filename);
711             }
712
713           pdh = wtap_dump_open(filename, out_file_type,
714              out_frame_type, wtap_snapshot_length(wth), FALSE /* compressed */, &err);
715
716           if (pdh == NULL) {
717             fprintf(stderr, "editcap: Can't open or create %s: %s\n", filename,
718               wtap_strerror(err));
719             exit(1);
720           }
721         }
722       }
723
724       if (split_packet_count > 0 && (written_count % split_packet_count == 0)) {
725         if (!wtap_dump_close(pdh, &err)) {
726
727           fprintf(stderr, "editcap: Error writing to %s: %s\n", filename,
728               wtap_strerror(err));
729           exit(1);
730         }
731
732         g_snprintf(filename, filenamelen, "%s-%05d",argv[optind+1], count / split_packet_count);
733
734         if (verbose) {
735           fprintf(stderr, "Continuing writing in file %s\n", filename);
736         }
737
738         pdh = wtap_dump_open(filename, out_file_type,
739             out_frame_type, wtap_snapshot_length(wth), FALSE /* compressed */, &err);
740         if (pdh == NULL) {
741
742           fprintf(stderr, "editcap: Can't open or create %s: %s\n", filename,
743               wtap_strerror(err));
744           exit(1);
745         }
746       }
747
748       check_ts = check_timestamp(wth);
749
750       if ( ((check_startstop && check_ts) || (!check_startstop && !check_ts)) && ((!selected(count) && !keep_em) ||
751           (selected(count) && keep_em)) ) {
752
753         if (verbose)
754           printf("Packet: %u\n", count);
755
756         /* We simply write it, perhaps after truncating it; we could do other
757            things, like modify it. */
758
759         phdr = wtap_phdr(wth);
760
761         if (choplen != 0 && phdr->caplen > choplen) {
762           snap_phdr = *phdr;
763           snap_phdr.caplen -= choplen;
764           phdr = &snap_phdr;
765         }
766
767         if (snaplen != 0 && phdr->caplen > snaplen) {
768           snap_phdr = *phdr;
769           snap_phdr.caplen = snaplen;
770           phdr = &snap_phdr;
771         }
772
773         /* assume that if the frame's tv_sec is 0, then
774          * the timestamp isn't supported */
775         if (phdr->ts.secs > 0 && time_adj.tv.tv_sec != 0) {
776           snap_phdr = *phdr;
777           if (time_adj.is_negative)
778             snap_phdr.ts.secs -= time_adj.tv.tv_sec;
779           else
780             snap_phdr.ts.secs += time_adj.tv.tv_sec;
781           phdr = &snap_phdr;
782         }
783
784         /* assume that if the frame's tv_sec is 0, then
785          * the timestamp isn't supported */
786         if (phdr->ts.secs > 0 && time_adj.tv.tv_usec != 0) {
787           snap_phdr = *phdr;
788           if (time_adj.is_negative) { /* subtract */
789             if (snap_phdr.ts.nsecs/1000 < time_adj.tv.tv_usec) { /* borrow */
790               snap_phdr.ts.secs--;
791               snap_phdr.ts.nsecs += ONE_MILLION * 1000;
792             }
793             snap_phdr.ts.nsecs -= time_adj.tv.tv_usec * 1000;
794           } else {                  /* add */
795             if (snap_phdr.ts.nsecs + time_adj.tv.tv_usec * 1000 > ONE_MILLION * 1000) {
796               /* carry */
797               snap_phdr.ts.secs++;
798               snap_phdr.ts.nsecs += (time_adj.tv.tv_usec - ONE_MILLION) * 1000;
799             } else {
800               snap_phdr.ts.nsecs += time_adj.tv.tv_usec * 1000;
801             }
802           }
803           phdr = &snap_phdr;
804         }
805
806         if (dup_detect) {
807           buf = wtap_buf_ptr(wth);
808           if (is_duplicate(buf, phdr->caplen)) {
809             if (verbose)
810               printf("Skipping duplicate: %u\n", count);
811             count++;
812             continue;
813           }
814         }
815
816         /* Random error mutation */
817         if (err_prob > 0.0) {
818           int real_data_start = 0;
819           buf = wtap_buf_ptr(wth);
820           /* Protect non-protocol data */
821           if (wtap_file_type(wth) == WTAP_FILE_CATAPULT_DCT2000) {
822             real_data_start = find_dct2000_real_data(buf);
823           }
824           for (i = real_data_start; i < (int) phdr->caplen; i++) {
825             if (rand() <= err_prob * RAND_MAX) {
826               err_type = rand() / (RAND_MAX / ERR_WT_TOTAL + 1);
827
828               if (err_type < ERR_WT_BIT) {
829                 buf[i] ^= 1 << (rand() / (RAND_MAX / 8 + 1));
830                 err_type = ERR_WT_TOTAL;
831               } else {
832                 err_type -= ERR_WT_BYTE;
833               }
834
835               if (err_type < ERR_WT_BYTE) {
836                 buf[i] = rand() / (RAND_MAX / 255 + 1);
837                 err_type = ERR_WT_TOTAL;
838               } else {
839                 err_type -= ERR_WT_BYTE;
840               }
841
842               if (err_type < ERR_WT_ALNUM) {
843                 buf[i] = ALNUM_CHARS[rand() / (RAND_MAX / ALNUM_LEN + 1)];
844                 err_type = ERR_WT_TOTAL;
845               } else {
846                 err_type -= ERR_WT_ALNUM;
847               }
848
849               if (err_type < ERR_WT_FMT) {
850                 if ((unsigned int)i < phdr->caplen - 2)
851                   strncpy((char*) &buf[i],  "%s", 2);
852                 err_type = ERR_WT_TOTAL;
853               } else {
854                 err_type -= ERR_WT_FMT;
855               }
856
857               if (err_type < ERR_WT_AA) {
858                 for (j = i; j < (int) phdr->caplen; j++) {
859                   buf[j] = 0xAA;
860                 }
861                 i = phdr->caplen;
862               }
863             }
864           }
865         }
866
867         if (!wtap_dump(pdh, phdr, wtap_pseudoheader(wth), wtap_buf_ptr(wth),
868                        &err)) {
869           fprintf(stderr, "editcap: Error writing to %s: %s\n",
870                   filename, wtap_strerror(err));
871           exit(1);
872         }
873         written_count++;
874       }
875       count++;
876     }
877
878     if (err != 0) {
879       /* Print a message noting that the read failed somewhere along the line. */
880       fprintf(stderr,
881               "editcap: An error occurred while reading \"%s\": %s.\n",
882               argv[optind], wtap_strerror(err));
883       switch (err) {
884
885       case WTAP_ERR_UNSUPPORTED:
886       case WTAP_ERR_UNSUPPORTED_ENCAP:
887       case WTAP_ERR_BAD_RECORD:
888         fprintf(stderr, "(%s)\n", err_info);
889         g_free(err_info);
890         break;
891       }
892     }
893
894     if (!wtap_dump_close(pdh, &err)) {
895
896       fprintf(stderr, "editcap: Error writing to %s: %s\n", filename,
897           wtap_strerror(err));
898       exit(1);
899
900     }
901   }
902
903   return 0;
904 }
905
906 /* Skip meta-information read from file to return offset of real
907    protocol data */
908 static int find_dct2000_real_data(guint8 *buf)
909 {
910   int n=0;
911
912   for (n=0; buf[n] != '\0'; n++);   /* Context name */
913   n++;
914   n++;                              /* Context port number */
915   for (; buf[n] != '\0'; n++);      /* Timestamp */
916   n++;
917   for (; buf[n] != '\0'; n++);      /* Protocol name */
918   n++;
919   for (; buf[n] != '\0'; n++);      /* Variant number (as string) */
920   n++;
921   for (; buf[n] != '\0'; n++);      /* Outhdr (as string) */
922   n++;
923   n += 2;                           /* Direction & encap */
924
925   return n;
926 }