-
Notifications
You must be signed in to change notification settings - Fork 237
/
ChangeLog
723 lines (417 loc) · 25.4 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
2018-11-18 Simson Garfinkel <[email protected]>
* updated for pcap_findalldevs
* added -Wno-address-of-packed-member to avoid error
2017-07-12 Simson Garfinkel <[email protected]>
* updated to work with Fedora 26 compilers
* Found bug in sbuf.cpp
* Fixed C++ warnings in hash
* Now works with OpenSSL 1.1.0f-fips 25 May 2017
2014-02-24 Man Page <[email protected]>
* src/tcpflow.cpp (main): alternating color output option changed from -J to -g
2013-12-06 Basic <[email protected]>
* configure.ac: upped version number to 1.4.3
* tests/test-multifile.sh (OUT): now handles multifile and nitroba packets not being present.
2013-11-28 Basic <[email protected]>
* src/scan_http.cpp (scan_http): BUGFIX: was not clearing byte_run DFXML between each attachment. Now does.
2013-11-18 Basic <[email protected]>
* src/wifipcap/wifipcap.cpp (WifipcapCallbacks::decode_data_frame): now calls Handle80211Data() for all data packets
* configure.ac: changes to test per Ryan Schmidt <[email protected]>
2013-11-17 Basic <[email protected]>
* configure.ac: updated to 1.4.2
* src/be13_api/be13_configure.m4: fixed so that it still compiles on MacOS 10.8.
2013-11-15 Basic <[email protected]>
* src/datalink.cpp (dl_null): removed DLT_NULL_BROKEN; it's not needed anymore.
2013-10-21 Man Page <[email protected]>
* src/flow.cpp (flow::filename): Since some people don't understand what %c and %C do, they don't provide it. It is required, so now a %c is appended if it is not specified.
2013-06-11 Basic <[email protected]>
* doc/tcpflow.1.in (std): removed explaination of filtering expressions
2013-05-26 Basic <[email protected]>
* src/tcpip.cpp (tcpip::print_packet): implemented hex dump
* src/scan_netviz.cpp (scan_netviz): disabled by default for now.
* src/tcpip.cpp (tcpip::print_packet): now prints 'filename' with console output (wasn't working due to bug).
2013-04-17 Simson Garfinkel <[email protected]>
* src/iptree.h (template): changed inc() to add()
2013-04-16 Simson Garfinkel <[email protected]>
* src/iptree.h: changed 'trim' to 'prune' for correct terminology.
2013-03-30 Simson Garfinkel <[email protected]>
* src/scan_tcpdemux.cpp (scan_tcpdemux): added -S tcp_timeout
2013-03-03 Simson Garfinkel <[email protected]>
* src/scan_netviz.cpp (scan_netviz): scan_netviz enabled by default
2013-02-27 Simson Garfinkel <[email protected]>
* configure.ac: added /usr/boost/include to search path
2013-01-27 Simson Garfinkel <simsong@FC17>
* src/tcpdemux.cpp (close_all_fd): now calls close_file(false), to preven openflows from being modified while it is being iterated.
* src/tcpflow.h: removed SET_BIT as it wasn't being used
* configure.ac: removed bcopy & bzero
2013-01-26 Simson Garfinkel <[email protected]>
2013-01-08 Simson Garfinkel <[email protected]>
* src/scan_netviz.cpp (th_shutdown): th_one_page is now lazily created and destroyed at end
2013-01-03 Simson Garfinkel <[email protected]>
* src/tcpflow.cpp (main): opt_gzip_decompress renamed to gzip_decompress and implemented.
* src/flow.cpp (flow::new_filename): now automatically makes subdirectories if necessary
2013-01-02 Simson Garfinkel <[email protected]>
* src/scan_http.cpp: zero-length attachments are no longer created on disk.
* src/tcpip.cpp (tcpip::store_packet): zero-length flows are no longer created on disk.
2012-12-27 Simson Garfinkel <[email protected]>
* renamed stored_flow as saved_flow becuase they are all stored, but only some are saved in the ring bufer.
* src/tcpdemux.cpp (tcpdemux::close_all): renamed close_all_fd(). close_tcpip renamed close_tcpip_fd; close_oldest renamed close_oldest_fd()
(tcpdemux::remove_all_flows): renamed.
2012-12-24 Simson Garfinkel <[email protected]>
* src/tcpip.h (class flow): removed connection_count from flow identifier becuase it cannot be derrived from the flow. We really should have the LSN as part of the flow or something. The connection_count will be found when the filename is made.
2012-12-23 Simson Garfinkel <[email protected]>
* src/tcpdemux.cpp (tcpdemux::process_tcp): option output_enabled changed to store_output
2012-12-22 Simson Garfinkel <[email protected]>
* src/be13_api/sbuf.cpp (sbuf_t::map_file):
* src/scan_http.cpp (scan_http_cbo::on_headers_complete): changed retrying_open to open() to eliminate dependency on tcpdemux
* src/tcpip.h: put in its own file
* src/util.cpp (mmap): moved fake mmap() cover to util.cpp
* src/tcpip.cpp (tcpip): no longer closes the file at the end of every tcpip and then re-opens it if there is post-processing. Now it re-uses the same fd.
(tcpip): renamed opt_after_header to opt_post_processing
2012-12-18 Simson Garfinkel <[email protected]>
* src/tcpflow.cpp (main): fixed opt_all; it was always true, but it shoudln't be.
2012-12-16 Simson Garfinkel <[email protected]>
* src/tcpdemux.h (class tcpdemux): removed write_to_file
(class tcpdemux): removed struct packet_info_t
* src/tcpdemux.cpp (tcpdemux::post_process_capture_flow): added delete of sbuf
* src/scan_http.cpp (scan_http_cbo::on_headers_complete): changed O_APPEND to O_TRUNC
* src/tcpdemux.cpp: removed process_gzip, since it is now done in scan_http
2012-12-07 Simson Garfinkel <[email protected]>
* src/tcpdemux.h (class flow_addr): fixed operator< type
2012-11-17 Simson Garfinkel <[email protected]>
* src/tcpflow.cpp (usage): usage now goes to stdout and not stderr.
2012-11-15 Simson Garfinkel <[email protected]>
* src/tcpdemux.h (class tcpdemux): retrying_open now takes a std:;string
2012-11-14 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::store_packet): added bytes_processed addition so that <fileobject> <filesize> is properly updated.
* src/be13_api/bulk_extractor_i.h: renamed histograms to be feature_histograms
* src/plugin.cpp (process_sbuf): renamed process_extract to process_sbuf and put it here.
2012-11-06 Simson Garfinkel <[email protected]>
* src/tcpdemux.cpp (tcpdemux::process_tcp): first packet sense was inverted. Fixed.
* src/main.cpp (main): renamed main.cpp to tcpflow.cpp
2012-11-05 Simson Garfinkel <[email protected]>
* src/main.cpp (main): print_usage() renamed usage() for consistency with bulk_extractor
(usage): usage made static
2012-10-28 Simson Garfinkel <[email protected]>
* src/pcb_timehistogram.cpp: made histograms static
* src/tcpip.cpp (tcpip::store_packet): debug_level changed to debug in all files.
2012-10-26 Simson Garfinkel <[email protected]>
* src/flow.cpp (flow::print_usage): shortened filename template usage.
* src/tcpip.cpp (insert): added this function to insert a space at the beginning of a file. Now tcpflow can handle a flow with missing SYNs and out-of-order packets.
2012-10-25 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::print_packet): implemented strip-on-fputc
* src/tcpdemux.cpp (do_strip_nonprint): removed this function, as it could be replaced with strip-on-fputc
2012-10-24 Simson Garfinkel <[email protected]>
* src/tcpdemux.cpp (tcpdemux::open_tcpfile): now asserts that file is not open
(tcpdemux::open_tcpfile): retrying_fopen changed to retrying_open
(tcpdemux::process_tcp): completely rewrote the TCP implementation
(tcpdemux::process_ip4):
The old state machine kept tract of each flow's initial sequence
number (ISN) and computed the absolute 32-bit position within the
TCP flow for each TCP segment. The problem with this approach is
that it would not handle segments larger than 4GiB. The new state
machine computes what it expects the Next Sequence Number (NSN) to
be based on the previously processed segment in the flow. If there
is a difference between the actual NSN and the predicted NSN then
there is a relative seek done in the file. If I file needs to be
closed (due to file handle exhaustion) and re-opened (because a
segment on the flow shows up), the file pointer is put at the end
of the file and the NSN is predicted from the ISN (which was
cached). This will allow closing and re-opening flows bigger than
4GiB because the bits over 32 bit will be ignored in the NSN
calculation.
* src/tcpdemux.h (class tcpip): store_packet modified to take a delta rather than a sequence number
(class tcpip): changed from FILE* to fd for all i/o
* src/tcpdemux.cpp (tcpdemux::process_tcp): renamed console_only
to console_output; modified order of stripping and console_output
checking to check first for console output before checking to see if data should be stripped
2012-10-23 Simson Garfinkel <[email protected]>
* src/tcpdemux.cpp (tcpdemux::tcpdemux): packet_time renamed packet_counter
* src/tcpdemux.h (class tcpip): renamed last_packet_time to be last_packet_number as it was not being used
* src/tcpip.cpp (tcpip::store_packet): removed the 'finished' flag from the tcpip:: class. It was being set when the flow went over demux.max_bytes_per_flow. However, if a packet was then received which was less than max_bytes_per_flow the bytes would not be recorded, because the max had already been passed.
2012-10-21 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::store_packet): removed syn_set parameter and put in tcpdemux::process_tcp
* configure.ac: changed version number to 1.3.1devel
2012-10-20 Simson Garfinkel <[email protected]>
* src/tcpdemux.h (class tcpdemux): process_tcp, process_ip, process_ip4 and process_ip6 now take const struct timeval &ts instead of const struct timeval *ts as their first argument, becuase ts should never be NULL.
2012-09-16 Simson Garfinkel <[email protected]>
* src/flow.cpp (flow::filename): TM_FORMAT is now "%Y-%m-%dT%H:%M:%SZ"
* src/xml.cpp (xml::add_DFXML_execution_environment): TM_FORMAT is now always "%Y-%m-%dT%H:%M:%SZ"
2012-09-11 Simson Garfinkel <[email protected]>
* src/datalink.cpp (dl_ethernet): now handles ETHERTYPE_LOOPBACK not defined.
2012-08-20 Simson Garfinkel <simsong@FC17>
* configure.ac: increased version number to 1.3.0
2012-08-16 Simson Garfinkel <[email protected]>
* src/tcpdemux.cpp (tcpdemux::process_tcp): fixed bug in which myflow.tlast wasn't being set.
2012-08-16 Simson Garfinkel <[email protected]>
* configure.ac: Increased version number to 1.2.9
* src/main.cpp (main): fixed compile bugs that resulted from adoption of standard DFXML header.
2012-08-10 Simson Garfinkel <[email protected]>
* configure.ac (HAVE_PTHREAD): fixed typo in configure.ac
2012-08-08 Simson Garfinkel <simsong@FC17>
* src/tcpdemux.h: removed struct ip as it was redundent to struct iphdr
* configure.ac: tcpflow now compiles under mingw for Windows
* src/tcpdemux.cpp: moved tcpdemux class methods into this new file.
2012-08-03 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::close_file): added support for FUTIMENS, but I don't yet have a system on which to test it. Hope that it's good.
2012-07-23 Simson Garfinkel <[email protected]>
* src/main.cpp (main): added calling process_infile(expression,device,"",true) when no files are provided to fix bug of no live capture.
* configure.ac: version 1.2.8
2012-07-02 Simson Garfinkel <[email protected]>
* src/sysdep.h: removed; put code in tcpflow.h for simplicity
2012-06-26 mike <mike@reem>
* src/datalink.cpp (dl_null): moved ETHERTYPE_IPV6 from sysdep.h
to datalink.cpp
2012-06-18 Simson Garfinkel <[email protected]>
* bootstrap.sh: added --add-missing to bootstrap.sh
2012-05-24 Simson Garfinkel <[email protected]>
* configure.ac: increased version to 1.2.7.
* src/main.cpp (main): -r option now allows for multiple files to be specified.
* src/main.cpp (main): -R option now allows for incomplete tcp connections to be finished.
2012-05-16 Simson Garfinkel <[email protected]>
* src/main.cpp (main): removed global "tcpdemux demux"
variable. Now it's passed as *user in the datalink methods, as it
should be.
* src/tcpdemux.h (class tcpip): bytes_printed renamed to bytes_processed, as it will be used in packet processing as well.
2012-04-19 Simson Garfinkel <[email protected]>
* configure.ac: incremented version to 1.2.6 (1.2.5 had a bad tag)
* src/tcpip.cpp (tcpip::print_packet): fixed error in fwrite().
2012-04-11 Simson Garfinkel <[email protected]>
* created version 1.2.4 tag
2012-04-03 Simson Garfinkel <[email protected]>
* src/main.cpp (print_usage): fixed misspelling of name
* src/tcpip.cpp (tcpdemux::tcpdemux): default outdir is now "."
2012-03-26 Simson Garfinkel <[email protected]>
* src/xml.cpp (xml::add_cpuid): better handling of CPUID instruction. Now it really should not show up on non-Intel architectures.
2012-03-19 Simson Garfinkel <[email protected]>
* src/xml.cpp: added unistd.h
2012-03-18 Simson Garfinkel <[email protected]>
* src/main.cpp (main): added printing stats for debug level 3.
* src/datalink.cpp (find_handler): changed 'looking for handler' to debug level 2.
2012-03-18 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpdemux::close_all): Jeremey's FD ring has been replaced with an unordere dset.
* src/tcpdemux.h (class tcpdemux): tcpdemux is now a class. By 1.3 it will be a linkable class separate from this program.
2012-03-11 Simson L. Garfinkel <[email protected]>
* configure.ac: added -funit-at-a-time
2012-03-10 Simson Garfinkel <[email protected]>
* COPYING: updated to GPLv3
2012-03-10 Simson Garfinkel <simsong@mucha>
* src/xml.cpp (xml::xmlout): writing with size-length tag just outputs the value now.
2012-03-03 Simson Garfinkel <[email protected]>
* configure.ac: changed verison number to 1.2.1
* src/xml.cpp (xml::cpuid): added another #if defined(HAVE_ASM_CPUID) to protect another __asm__("cpuid")
2012-03-03 Simson Garfinkel <[email protected]>
* configure.ac: changed version number to 1.2.0
2012-03-09 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::attempt_fopen): output files now opened in binary mode
(tcpip::store_packet): added error message for packet received after flow finished
* src/md5.c: added file.
* src/md5.h: added file.
* src/tcpip.cpp (tcpip::open_file): removed "done" variable, as it was not needed.
(tcpip): string constants that are converted to strings are now const statics.
2012-02-26 Simson Garfinkel <simsong@mucha>
* src/flow.cpp (flow::filename): completely rewrote to support templates.
(flow::print_usage): added to give information on templates.
* src/flow.h (class flow): renamed flow_t to flow
* src/main.cpp (main): removed last vistaves of DEFAULT_FILTER
(main): error is now a local variable.
2012-02-23 Simson Garfinkel <simsong@mucha>
* src/sysdep.h: changed to C++ headers for stdio, stdlib, cctype, cstdarg and cerrorno
* src/tcpip.cpp (tcpip::tcpip): outdir changed from const char *
to std::string. Flow names no longer have ./ prepended if outdir
is ".".
2012-01-18 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip::process_tcp): converted dir_cs and dir_sc to a single dir enum type.
2012-01-15 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (tcpip): fixed crashing bug when no XML file was being generated.
2012-01-06 Simson Garfinkel <[email protected]>
* src/flow.h (class tcpip): replaced std::map with std::tr1::unordered_map. Old performance:
<rusage>
<utime>2.879478</utime>
<stime>3.227067</stime>
<maxrss>7675904</maxrss>
<minflt>1953</minflt>
<majflt>26</majflt>
<nswap>0</nswap>
<inblock>3</inblock>
<oublock>4649</oublock>
<clocktime>14.634266</clocktime>
</rusage>
new performance:
<rusage>
<utime>1.323023</utime>
<stime>2.676657</stime>
<maxrss>7430144</maxrss>
<minflt>1921</minflt>
<majflt>0</majflt>
<nswap>0</nswap>
<inblock>0</inblock>
<oublock>4739</oublock>
<clocktime>8.399374</clocktime>
</rusage>
2012-01-05 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (do_strip_nonprint): do_strip_nonprint is now threadsafe
* src/flow.h (class tcpip): pos changed from long to uint64_t
* src/tcpip.cpp (tcpip::process_tcp): whoops; only drop the connection if the seek is bigger than min_offset
2012-01-04 Simson Garfinkel <[email protected]>
* configure.ac: incremented version counter to beta2
* src/main.cpp (main): fixed option parsing bug.
2012-01-03 Simson Garfinkel <[email protected]>
* src/tcpip.cpp (do_strip_nonprint): removed; do_strip_nonprint is now embedded in the caller, and is now thread-safe.
* src/util.cpp (check_malloc): removed
* src/tcpip.cpp (tcpip::store_packet): flow_state renamed tcpip (because it is).
* src/flow.h (class flow_state): first is now called tstart and appears in the flow_t.
(class flow_addr): renamed flow_t to flow_addr; it's the flow address.
(class flow_t): created this class which has additional per-flow information
(class flow_addr): moved vlan to flow_t from flow_addr
2012-01-01 Simson Garfinkel <[email protected]>
* src/tcpflow.h (struct): flow_t renamed to be the flow class.
(class ipaddr): created class for IP addresses
(class flow_state_struct): created class from struct
* src/main.cpp (print_usage): -X added for XML output.
2011-12-29 Simson Garfinkel <[email protected]>
* src/main.cpp (main): changed bytes_per_flow from int to uint64_t
progname is now a global.
added support for named semaphores to lock output between invocations.
* src/util.cpp: removed cvsid
* src/tcpip.cpp: removed cvsid
* src/datalink.cpp: removed cvsid
* src/flow.cpp: removed cvsid
* Makefile.am (EXTRA_DIST): added m4/ax_pthread.m4 to EXTRA_DIST
* configure.ac: increased version number to 1.0.7
* src/main.cpp (main): added -B option to force binary output.
* doc/tcpflow.1: corrected typo in -c/-C which crept it.
2011-12-23 Simson Garfinkel <[email protected]>
* src/util.cpp: removed copy_argv(); replaced with a simple std::string manipulation.
(flow_filename): modified to work with outdir
* src/tcpip.cpp: renamed from tcpip.c to tcpip.cpp
* src/main.cpp: renamed from main.c to main.cpp;
* src/util.cpp: renamed util.c; changed most "char *" to "const char *"
* src/flow.cpp: renamed flow.c to flow.cpp
2011-12-04 Simson Garfinkel <[email protected]>
* configure.ac: increased version counter to 1.0.6
* src/tcpflow.h (flow_state_struct): added bytes_printed counter
* src/tcpip.c (print_packet): modified to respect bytes_per_flow
* configure.ac: increased version counter to 1.0.5
* src/sysdep.h: added #ifndef for ETHERTYPE_VLAN for Oracle Enterprise Linux.
2011-11-24 Simson Garfinkel <[email protected]>
* configure.ac: increased version counter to 1.0.4
2011-10-13 Simson Garfinkel <[email protected]>
* src/main.c (main): removed prepending of (ip or ip6 or vlan) from user expressions. We now just use what the user provided.
2011-09-30 Simson Garfinkel <[email protected]>
* configure.ac: incremented version counter to 1.0.2 and re-released.
2011-09-20 Simson Garfinkel <simsong@alphonse-mucha>
* src/flow.c (open_file): replaced FGETPOS(flow_state->fp, &(flow_state->pos)) with ftell()
* src/tcpip.c (store_packet): FSETPOS replaced with fseek (it's better now than in 1999)
2011-09-20 Simson Garfinkel <[email protected]>
* src/util.c: applied ipv6 patches
* src/tcpip.c: applied ipv6 patches
* src/tcpflow.h: applied ipv6 patches
* src/sysdep.h: applied ipv6 patches
* src/main.c: applied ipv6 patches
* src/datalink.c: applied ipv6 patches
* configure.ac: applied ipv6 patches.
* src/sysdep.h: removed standards.h and added sys/cdefs.h.
2011-04-14 Simson Garfinkel <[email protected]>
* Makefile.am (EXTRA_DIST): added TODO.txt
2011-03-12 Simson Garfinkel <[email protected]>
* doc/tcpflow.1.in: updated doc to reflect new author and distribution point.
* src/main.c (print_usage): removed "by Jeremy Elson <[email protected]>" from usage.
* src/util.c (flow_filename): vlan changed from [42] to --42 to avoid some shell issues.
* Applied debian patch 20_fix-usage, which fixed the usage statement.
2011-02-27 Simson Garfinkel <[email protected]>
* manually applied debian patch 10_extra-opts, which improves color rendering and passes the state structure, rather than forcing it to be re-calculated.
2008-10-06 Simson Garfinkel <[email protected]>
* src/flow.c (flow_same): created a flow_same() function to return true if two flows are the same (because we will be adding additional information to the flow)
(close_file): modified so that flows are timestamped with the time of the closing
* src/tcpflow.h: reimplemented portable_signal to return void, rather than RETSIGTYPE, since RETSIGTYPE hasn't been used for at least 15 years.
* src/sysdep.h: added #include <net/if_var.h> before #include <net/if.h>
* configure.ac: rewrote to remove patches for circa 2002 Linux bugs. Fixed prerequisite header for net/if.h
2003-08-07 Jeremy Elson <[email protected]>
* Released v0.21. Sticking to my strict schedule of releasing at
least one minor release per year. :-)
2003-08-07 Jeremy Elson <[email protected]>
* src/main.c: Fixed format string attack. Found by David
Goldsmith of atstake.com.
2002-03-29 Jeremy Elson <[email protected]>
* configure.in: Fixed --with-pcap (was broken since moving sources
into src)
2002-03-29 Jeremy Elson <[email protected]>
* src/datalink.c: Added support for ISDN (/dev/ippp0), datalink
handler for DLT_LINUX_SLL. Contributed by Detlef Conradin
<dconradin at gmx.net>
2001-08-23 Jeremy Elson <[email protected]>
* src/tcpip.c: fflush stdout in console print mode, from
suggestion of Andreas Schweitzer <andy at physast.uga.edu>, who
says "Otherwise, I can't redirect or pipe the console output. At
least on FreeBSD. I will check later today if this also cures the
same problems I had on OpenBSD."
2001-02-26 Jeremy Elson <[email protected]>
* Released version 0.20.
* util.c, main.c: we now catch SIGTERM, SIGINT and SIGHUP, and
call exit(). Should give libpcap a chance to reset the interface
state (it calls onexit()).
* main.c, tcpflow.1.in: Added patch from "Jose M. Alcaide" <jose
at we.lc.ehu.es> (FreeBSD port maintainer) so that tcpflow can
read from tcpdump output files.
2000-01-12 Jeremy Elson <[email protected]>
* tcpflow.spec.in: New file for creating RPMs, submitted by Ross
Golder <rossigee at bigfoot.com>.
* configure.in: Added generation of tcpflow.spec
* Makefile.am: Added distribution of tcpflow.spec.in
1999-04-20 Jeremy Elson <[email protected]>
* Released version 0.12.
1999-04-20 Jeremy Elson <[email protected]>
* tcpflow.1.in: Updated man page.
* main.c (main): libpcap, when running under Linux, doesn't seem
to be able to handle filtering expressions when using DLT_NULL
(usually the loopback interface -- i.e. "localhost"), so we don't
allow those expressions and print a warning if the user is trying
to use one. Controlled via the DLT_NULL_BROKEN define in conf.h.
* datalink.c (dl_null): We no longer check that the datalink type
is AF_INET if DLT_NULL_BROKEN is defined.
* configure.in: Added AC_CANONICAL_SYSTEM, and define
DLT_NO_BROKEN if we are using Linux.
* acconfig.h: Added entry for DLT_NULL_BROKEN.
* tcpflow.h: We use __attribute__ now only if __GNUC__ is defined,
so that the code compiles on non-GCC compilers.
* configure.in: Check for standards.h, for IRIX compatibility.
(I have a custom autoconf that I changed to automatically #include
standards.h, if the check succeeds, in future header file checks.)
* sysdep.h: Conditional #include <standards.h> added.
* configure.in: Only check for -lnsl if gethostbyaddr() doesn't
work without it; same for -lsocket and socket().
* tcpip.c (process_ip, process_tcp, do_strip_nonprint,
print_packet, store_packet): Changed to take a u_char.
* tcpflow.h: Changed packet handling function argument prototypes
and return values to use u_char instead of char.
* configure.in: Added checking for u_char.
* acconfig.h: Added entry for u_char.
* tcpip.c (process_ip, process_tcp): Added debugging messages.
* tcpip.c (store_packet): Changed debug level of messages.
1999-04-14 Jeremy Elson <[email protected]>
* tcpip.c (store_packet): Now correctly checking the return value
of fwrite(). Pointed out by Johnny Tevessen <j.tevessen at gmx.net>.
1999-04-13 Jeremy Elson <[email protected]>
* Released version 0.11.
1999-04-13 Jeremy Elson <[email protected]>
* tcpip.c (process_ip): Portability: added typecast of an int to a
long, and changed the printf format to use a long (%ld) instead of
an int (%d). This is because some systems define these variables
as long to begin with.
* tcpip.c (store_packet): Same thing.
* util.c (init_debug): Same thing.
* main.c (print_usage): Added function to give help.
* sysdep.h: Linux libc5 systems have different names for certain
structures. Patch sent by Johnny Tevessen <j.tevessen at gmx.net>
* configure.in: All system header files are now detected by
autoconf and conditionally included in sysdep.h.
* sydep.h: Same.
* main.c: Same.
* tcpip.c: Same.
* Makefile.am (EXTRA_DIST): Changed from tcpflow.1 to tcpflow.1.in
to reflect the fact that tcpflow.1 is now created by 'configure'.
* configure.in: Same.
* tcpflow.1.in: Same.
* AUTHORS: Created & added initial entries.
1999-04-12 Jeremy Elson <[email protected]>
* Initial public release.