CHANGELOG 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. $Id: CHANGELOG 2032 2008-05-17 18:25:39Z aturner $
  2. 05/17/2008: Version 3.3.1
  3. - Fix limitation of PF_PACKET only supporting Ethernet (#123)
  4. - Fix (again) /dev/bpf detection in FreeBSD 8.0 (#292)
  5. - Document building code from Subversion under Cygwin (#304)
  6. - Fix --enable-force-* under Linux (#305)
  7. - Fix tcpbridge --unidir assert error (#308)
  8. 05/04/2008: Version 3.3.0
  9. - Improve tcpreplay timing accuracy between packets (#41)
  10. - Add tcprewrite fragroute support (#42)
  11. - Fix tcprewrite --efcs option (#277)
  12. - Updated Win32/Cygwin documentation (#280)
  13. - Add dmalloc support (#282)
  14. - Fix tcpprep broken handling of VLAN tagged frames (#290)
  15. - Fix tcprewrite crash when cache file has NO_SEND packets (#291)
  16. - Fix /dev/bpf detection in FreeBSD 8.0 (#292)
  17. - Add tcprewrite --ttl editing option (#294)
  18. - Fix autoconf AM_PROG_CC_C_O warning (#295)
  19. - Add tcpprep --reverse option to split by matching client addresses (#297)
  20. - Update version of autoconf to 1.10.1 (#298)
  21. - Improved GNU Autogen detection and warnings (#299)
  22. - Track EAGAIN errors separately from ENOBUFS (#301)
  23. - Automatically detect Winpcap on Cygwin (#303)
  24. 01/23/2008: Version 3.2.5
  25. - Fix linker error with --enable-tcpreplay-edit and --enable-dynamic-link (#288)
  26. - Fix compile errors with Sun Studio compiler (#286)
  27. 01/16/2008: Version 3.2.4
  28. - Fix crash in tcpreplay when --enable-tcpreplay-edit (#281)
  29. - Display if --enable-tcpreplay-edit in -V (#283)
  30. 11/01/2007: Version 3.2.3
  31. - Fix compile issue under Linux and other OS's (#275)
  32. 10/31/2007: Version 3.2.2
  33. - Enable source MAC spoofing for OS X (#142, #151)
  34. * Tcpreplay now requires OS X 10.5 (Leopard)
  35. - Fix crash/memory access error with tcpreplay -N (#273)
  36. 10/25/2007: Version 3.2.1
  37. - Fix tcprewrite segfault in 'make test' under Linux (#200)
  38. - Major performance improvement in tcpprep for large pcaps (#261)
  39. - Fix strsignal already defined error under Cygwin/Windows (#199)
  40. - Fix compile errors for older versions of GCC (#201)
  41. - Remove flowreplay code (#262)
  42. - Fix DLT rewrite code causing corrupted ethernet protocol type (#268)
  43. - Try to fix inet_aton() issue under Solaris (#260)
  44. 08/26/2007: Version 3.2
  45. - Return a more useful error message when tcpprep fails (#187)
  46. - Add Tomahawk test tool client/server detection algorithm (#186)
  47. - Improved AutoGen support (#191)
  48. - Improved documentation (#164, #198)
  49. - Added Doxygen markup (#176)
  50. - configure now honors --with-tcpdump flag (#192)
  51. - configure now defaults to --enable-64bits which breaks backwards
  52. compatibility in certain situations. Use --disable-64bits if this
  53. concerns you (#195)
  54. - Use safe_free() to detect bugs earlier in development (#197)
  55. 07/19/2007: Version 3.1.1
  56. - Upgrade libopts tearoff to 29:0:4 so that everyone else in the world can
  57. compile tcpreplay (#189)
  58. 07/18/2007: Version 3.1.0
  59. - Add tcprewrite --srcmap & --dstmap for rewriting only source or destination IP's (#185)
  60. - ./configure now reports configuration at end (#155)
  61. - Fix svn:keywords (#160)
  62. - Optimize performance of dlt_en10mb plugin (#161)
  63. - Performance improvements on strictly aligned systems (#162)
  64. - Improve tcpprep error messages and handling (#163)
  65. - Add support for warnings in libtcpedit (#165)
  66. - Only use __attribute__((unused)) w/ GCC (#168)
  67. - Fix compile issues under Solaris (#178)
  68. - Gracefully handle systems w/o static libraries (#179)
  69. - Fix segfault when using BPF filters (#182)
  70. - Add additional DLT Plugins:
  71. - 802.11 (#103)
  72. - 802.11 w/ Radiotap (#177)
  73. 05/01/2007: Version 3.0.1
  74. - Stop tcpreplay causing OS X WiFi from disassociating (#167)
  75. - --pnat incorrectly matched all IP addresses (#170)
  76. - Fix serious memory leak in core common library (#175)
  77. - Fix tcprewrite --enet-vlan on little endian systems (#174)
  78. - Bad pcap timestamps were causing excessive delays (#169)
  79. - Code cleanup (#173)
  80. 04/20/2007: Version 3.0
  81. - By default, no longer try to use libnet. You must now specify --enable-libnet (#148)
  82. - Improve documentation (#30)
  83. - General code cleanup (#47)
  84. - Warn when GNU Autogen version < 5.9 (#153)
  85. - Remove support for pcap_snapshot_override which was never added to libpcap (#140)
  86. - Fix support for C99/GCC 4.3 "inline". Rely on -O3 for better performance. (#149)
  87. - Prioritize 64 bit libraries over 32 bit counterparts (#150)
  88. 04/14/2007: Version 3.0.RC1
  89. - Fix tcpbridge and make it compile by default (#15)
  90. - Fix tcprewrite crash on little-endian systems (#127)
  91. - Gracefully handle broken pcap files where the snaplen < caplen (#130)
  92. - Note: Fix was made in libpcap and will be part of 0.9.6
  93. - Fix numerous bugs with the sendpacket code (#137)
  94. - Add optional support for editing packets with tcpreplay (#61)
  95. - Fix 'make test' on little endian systems (#64)
  96. - tcprewrite -s is no longer endian dependent (#65)
  97. - /docs cleaned up (#66)
  98. - Fix detection/compile of libpcap. Now support versions >= 0.7.2 (#80, #144)
  99. - Add official support Cygwin/Win32 support (#110)
  100. - Clean up libpcap version code (#111)
  101. - Add support for interface alias names for Win32 (#113)
  102. - Warn user on DLT miss-match (#125)
  103. - Fix tcprewrite segfault with --fixlen=pad (#134)
  104. - Add loop/cache support for better performance (#136)
  105. - inline debugging code for better performance (#138)
  106. - configure now supports selecting injection method (#139)
  107. - Fix configure/compile errors under OpenBSD (#146)
  108. - Add tcpbridge --verbose mode (#28)
  109. - Fix compile issues under HP-UX & strictly aligned systems (#141)
  110. - --enable-dynamic-link supports 64bit libraries (#143)
  111. 03/22/2007: Version 3.0.beta13
  112. - Fixed detection of IPv4 packets in libtcpedit on little-endian boxes (#115, #116)
  113. - Fixed TCP/UDP checksum calculation on little-endian boxes (#126)
  114. - Added --quiet flag to tcpreplay for Lothar (#109)
  115. - The --seed flag should now generate the same IPs on both little-endian & big-endian boxes (#65)
  116. - The --skipl2broadcast flag now works as documented (#112)
  117. - Adding L2 header for DLT_RAW encapsulated packets now works (#16)
  118. - Clean up documentation (#66, #75)
  119. - Start initial support for Win32 port (#110, #111)
  120. - Finish DLT plugin rewrite (#82)
  121. - Fix compile on systems without tcpdump installed
  122. 02/22/2007: Version 3.0.beta12
  123. - Fix compile under RH ES 3.x (gcc 3.2.2) (#79)
  124. - Fix compile on MIPS, ARM, HPPA, etc (#81, #88)
  125. - Rewrite L2/DLT code in tcpedit/tcprewrite to be plugin based (#82)
  126. - Create Ethernet Plugin (#99)
  127. - Create User Plugin (#100)
  128. - Create Cisco HDLC Plugin (#101)
  129. - Create DLT_LINUX_SLL Plugin (#102)
  130. - Create DLT_RAW Plugin (#104)
  131. - Create DLT_NULL Plugin (#105)
  132. - Create DLT_LOOP Plugin (#106)
  133. - Properly decode ethernet frames when they are VLAN tagged (#84)
  134. - Do not install man2html (#85)
  135. - Add configure --disable-libopts-install option (#86)
  136. - Enhance tcpreplay --oneatatime (#90)
  137. - libtcpedit can now return warnings & errors (#92)
  138. - Fix tcpprep --include/exclude (#96)
  139. - Upgrade AutoGen tearoff (libopts) to latest version (5.9.0) (#97)
  140. - Don't do L4 checksums for non-fragment offset == 0 (#107)
  141. 08/07/2006: Version 3.0.beta11
  142. - Fix distribution to ship missing src/tcpr.h (#73)
  143. - Add support to tcprewrite to alter output file DLT (#74)
  144. - Fix errors in 'make test' (little endian still broken) (#77)
  145. - Tweak Autogen .def files documentation (#78)
  146. 08/05/2006: Version 3.0.beta10
  147. - tcpprep & tcprewrite no longer require root access (#3)
  148. - Develop wrapper API for libnet, libpcap, BPF and PF_PACKET (#4, #24)
  149. - Enhance do_sleep() to support looping for better accuracy (#6)
  150. - Prefer inet_pton over older, deprecated routines (#26)
  151. - Remove libnet as a requirement (#29)
  152. - Optionally don't rewrite broadcast/multicast IP/MAC addresses (#38)
  153. - Remove libnids dependancy for flowreplay (#55)
  154. - Fix build issues when libpcapnav is installed (#56)
  155. - Fix truncate feature not putting correct packet length in IP header (#59)
  156. - Internal error reporting fixes in libtcpedit (#60)
  157. - Support --enable-debug when building under gcc 3.x (#62)
  158. - tcpedit_stub.h wasn't being generated automatically from SVN (#63)
  159. - Fix 'make doxygen' (#67)
  160. - Fix some Makefile issues (#68)
  161. - tcprewrite --endpoints should require a cache file (#70)
  162. - Improve IP randomizer code to be more random (#71)
  163. 07/17/2006: Version 3.0.beta9
  164. - Fix compile issue for users not having AutoOpts installed (#54)
  165. - Fix compile issue for users w/ AutoOpts 5.8.4 (upgrade to 5.8.4)
  166. 07/16/2006: Version 3.0.beta8
  167. - Fix -M running in MBps rather then Mbps
  168. - Fix tcpbridge segfault/bus error reported by Steven Z. (Gerry)
  169. - Improve tcpbridge man page
  170. - Massive tcprewrite fixes & cleanup (#50)
  171. - Much improved README document
  172. - Reorganize packet editing code into a standalone module (tcpedit)
  173. which has been librarized. (#5)
  174. - Strict code cleanup (#27)
  175. - Fix tcpprep from generating bad cache files (#48)
  176. - Add MAC split mode for tcpprep (#1)
  177. - Improve dbg() to list file/line (#32)
  178. - Add tcpprep statistical reports (#2)
  179. - Reorganize flowreplay code (#46)
  180. - Fix conflicting speed_t for Debian (#33)
  181. - Too many other things to document
  182. 08/07/2005: Version 3.0.beta7
  183. - New 'make doxygen' target builds pretty source code docs in
  184. docs/web/doxygen/html
  185. - Fix tcpprep auto/router mode which was sending all packets out the
  186. secondary interface
  187. - Fix endian issue on little-endian systems which made tcpprep think all
  188. packets were not IP
  189. - Improve debugability of tcpprep
  190. - Fix UDP header offset bug in flowreplay
  191. 06/28/2005: Version 3.0.beta6
  192. - Fix rpm .spec file which was still based on tcpreplay 2.x (untested)
  193. - Detect and manually include pcap-bpf.h which fixes compile problem
  194. - Fix tcprewrite -S crash with only one MAC
  195. - Fix tcpreplay using 2nd NIC split mode
  196. - Fix tcpreplay packet counter initialization
  197. - Fix tcpprep to properly handle missing -i and -c with -I and -P
  198. 06/14/2005: Version 3.0.beta5
  199. - Fix --decode flag
  200. - Fix compile under AMD64/RHEL4 where libraries are in /usr/lib64
  201. - tarball now ships with a full test subdir
  202. - Fix compile of src/common/get.c under strictly aligned architectures
  203. - Fix ./configure --enable-64bits flag
  204. - Fix bug on little endian systems which prevented tcprewrite from
  205. editing packets
  206. - Fix tcprewrite linktype checks
  207. - Add --pktlen for when the pcap snaplen lies to us
  208. - Add --enable-dynamic-link for those who want to dynamically link their
  209. libs
  210. 06/05/2005: Version 3.0.beta4
  211. - Really fix compile problems with dlt2desc with old versions of libpcap
  212. - All libraries are now statically linked and full-path #includes. This
  213. should fix problems with people who have different versions of
  214. libraries installed in different locations.
  215. - Fix problems compiling on systems with libpcapnav
  216. - Add support for libpcap 0.5 such as on OpenBSD
  217. - Fix tcpprep --verbose
  218. - Close STDIN prior to re-opening it for certain OS's
  219. 05/04/2005: Version 3.0.beta3
  220. - Fix autoconf problems with --with-libnet
  221. - Fix compile problems with dlt2desc with old versions of libpcap
  222. - Fix compile problem due to not shipping flowreplay_opts.h and
  223. tcpbridge_opts.h
  224. 04/19/2005: Version 3.0.beta2
  225. - Significant improvements to FAQ and manual
  226. - Use autoopts for flowreplay
  227. - Be more cautious about memcpy's
  228. - Fix numerous warnings during compile
  229. - Allow overriding L2 protocol field for DLT_RAW
  230. - tcpprep -I & -P now take the cache filename
  231. - Lots of cleanup
  232. - Added tcpbridge utility
  233. - Fix tcpreplay --mbps which was being interpreted as bps
  234. - Add --no-arg-comment feature for tcpprep
  235. - Improve auto-tests and fix old broken ones
  236. - Fix Makefile errors in the docs directory
  237. - Upgrade libopts tear off to v5.7pre12 which fixes problems with
  238. loading config files
  239. - Add support for forcing the use of the local libopts tearoff code
  240. 02/27/2005: Version 3.0.beta1
  241. - Major code cleanups and rewriting
  242. - Rip out all edit functions from tcpreplay and put into tcprewrite
  243. - Improve tcpreplay performance by about 5% for raw sending
  244. - Move around utility functions for greater code-reuse
  245. - Move MAC Address funcs into mac.c
  246. - Move global defines into defines.h
  247. - Standardize use of structs and typedefs
  248. - Start passing const's when we don't need to modify
  249. - Start using GNU AutoOpts for arg/config file processing
  250. - Start using automake and autoheader
  251. - Major rewrite of configure.in
  252. - Add support for printing which interface packets go out
  253. - 64bit counters are optional via --enable-64bits
  254. - Can now rewrite L2 data per outbound interface
  255. - Add support for additional DLT types
  256. - Non-Code changes
  257. - I now own the full copyright for tcpreplay
  258. - Removed the evil 4th clause from the BSD license
  259. - Start updating the FAQ and split some content to make a manual
  260. - Automatically generate man pages based via autogen
  261. - New Applications:
  262. - tcprewrite
  263. - Removed Applications: (Ethereal has better utilities)
  264. - capinfo
  265. - pcapmerge
  266. - Merge fixes from 2.x/stable branch:
  267. - portmap.c endian bugs
  268. - edit_packet.c handle corrupted pcap's where caplen < len
  269. - configure now properly uses --with-libnet and --with-libpcap
  270. *** Fork 3.x Branch from v2.3.1 ***