ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/Changes
(Generate patch)

Comparing Convert-UUlib/Changes (file contents):
Revision 1.33 by root, Sat Dec 16 22:53:30 2006 UTC vs.
Revision 1.69 by root, Fri Feb 28 06:57:25 2020 UTC

1Revision history for Perl extension Convert::UUlib. 1Revision history for Perl extension Convert::UUlib.
2 2
3_FP_gets still 70% of scan time. decode time: 24% _FP_gets, uulib_crc32 23%, UUValidData 11%
4
5 - experimental perlmulticore support (see manpage).
6 - include ecb.h to deal with compiler builtins and endianness.
7 - some further µ-optimisations in hot code, especially for yEnc.
8 - replace crc32 function by slice-by-16 version by Stephan Brumme,
9 which should speed up yEnc en-/decoding.
10 - yEnc: do not calculate two crcs per part, instead, combine
11 the part crcs together to form the file crc.
12 - yEnc: allow pcrc= in addition to pcrc32= for yenc trailers, as
13 some draft mentions both and it is actually in active use.
14 - yEnc: ignore crc32= on multiparts, except on the last part,
15 which avoids spurious corruption warnings.
16 - be more precise in documenting code licenses in COPYING.
17
181.62 Mon Feb 17 23:19:42 CET 2020
19 - major performance improvement by simplifying code in _FP_gets
20 to not use fscanf. This might slow things down on platforms
21 with very slow fgetc.
22
231.61 Sun Feb 9 18:38:29 CET 2020
24 - lint uulib: fix some format string type mismatches
25 and some other minor issues.
26
271.6 Thu Oct 24 17:11:54 CEST 2019
28 - fix heap overflow (testcase by Noel Duffy, reported
29 by Robert Scheck). The defense-in-depth mechanism based
30 on mmap should make this unexploitable for other than denial
31 of service, on systems supporting mmap/mprotect.
32
331.5 Sat Jul 11 03:56:06 CEST 2015
34 - fix a heap overflow (testcase by Krzysztof Wojtaś).
35 - on systems that support it (posix + mmap + map_anonymous),
36 allocate all dynamic areas via mmap and put four guard
37 pages around them, to catch similar heap overflows
38 safely in the future.
39 - find a safer way to pass in CC/CFLAGS to uulib.
40 - added stability canary support.
41
421.4 Sun May 29 17:17:01 CEST 2011
43 - avoid a classical buffer overflow in case a progress
44 message is too long.
45 - this release adds dependencies for snprintf/vsnprintf.
46 - some uuencode encoders do not generate a final "space" line
47 before the "end" marker, so do not rely on the line to be there.
48
491.34 Tue Dec 14 22:20:00 CET 2010
50 - fix a one-byte-past-end-write buffer overflow in UURepairData
51 (reported, analysed and testcase provided by Marco Walther).
52 - quoted-printable decoding was completely broken, try a fix.
53
541.33 Wed Oct 28 09:04:38 CET 2009
55 - handle yEnc files with part end=0 and total= more gracefully.
56 I wish yEnc had been created by somebody who knows;
57 what he does;
58 but I doubt he even knows;
59 what he did.
60
611.32 Wed Sep 16 20:07:13 CEST 2009
62 - Due to a glitch with CVS, configure lacked executable bits.
63 (Quickly reported by Anton Berezin).
64
651.31 Wed Sep 16 09:04:30 CEST 2009
66 - do not use system-replacements for case-insensitive string
67 functions when found, as they are broken on too many systems
68 (mostly bsds, as usual, but at least some versions of GNU/Linux
69 disagree with themselves apparently). Analyzed by Anton Berezin.
70
711.3 Sat Aug 29 01:24:35 CEST 2009
72 - major changes, new bugs and changes in decoding behaviour are
73 expected (but not intended).
74 - major scanning and decoding speed-up (by a factor of 4),
75 by replacing ultra-slow _FP_gets and improving IsKnownHeader
76 (but fgets is *still* responsible for >50% if the time).
77 - new option OPT_AUTOCHECK to disable O(n) UUCheckGlobalList
78 call after every loadfile, majorly speeds up large decodes
79 (easily by a factor of 10..100).
80 - allow "Smerge -1" to call UUCheckGlobalList.
81 - majorly speed up part insertion (still O(n), but much faster).
82 - allow for 1023 octet headers instead of the standard
83 255 octet ones.
84 - support strcasestr, strcasecmp, strncasecmp for added speed.
85
861.12 Mon Oct 13 14:11:01 CEST 2008
87 - use the yencode filesize as additional matching criterium
88 to avoid false matches.
89 - made the example decoder more verbose w.r.t. error handling.
90 - removed potentially confusing decode_temp calls from
91 example decoder.
92
931.11 Fri Jun 13 15:32:30 CEST 2008
94 - don't ask.
95
961.10 Fri Jun 13 14:22:42 CEST 2008
97 - fix an infinite-looping problem when scanning in freestyle
98 mode (testcase provided by Pieter Geens and Reinhard Pfau).
99
1001.09 Fri May 25 19:38:11 CEST 2007
101 - create something sensible, trust a windows program to fuck
102 it up: work around literal "(null)" filenames in yenc-encoded
103 files.
104 - some minor cleanups.
105
31.08 Sat Dec 16 23:27:13 CET 2006 1061.08 Sat Dec 16 23:27:13 CET 2006
4 - URGENT update, the lastr elease did not 107 - URGENT update, the last release did not
5 decode files correctly, usually not at all. 108 decode files correctly, usually not at all.
6 - the last patch was, of course, completely bogus. 109 - my last patch was, of course, completely bogus.
7 (sorry. looked simple...). 110 (sorry. looked simple...).
8 111
91.07 Sun Dec 10 17:41:46 CET 2006 1121.07 Sun Dec 10 17:41:46 CET 2006
10 - fixed an uninitialised variable based on analysis 113 - fixed an uninitialised variable based on analysis
11 and patch by Mark Martinec. 114 and patch by Mark Martinec.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines