]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
ota: Import One True Awk from 20231102 (254b979f32df)
authorWarner Losh <imp@FreeBSD.org>
Thu, 2 Nov 2023 16:08:21 +0000 (10:08 -0600)
committerWarner Losh <imp@FreeBSD.org>
Thu, 2 Nov 2023 16:20:09 +0000 (10:20 -0600)
commit2e406c584fe40d654e4b8042006d2206eed016b3
tree55fc787c8be07fea5517b1e1a4b17bcef0347657
parentf9002b85613065121199880071419cf6fbda050f
ota: Import One True Awk from 20231102 (254b979f32df)

This is a rollup of a lot of changes. In summary, lots of bug fixes,
Unicode support and CSV support to match the 2nd Edition of the Awk
Book.

In detail, from AWK's FIXES and FIXES.1e:

From FIXES:
Oct 30, 2023:
multiple fixes and a minor code cleanup.
disabled utf-8 for non-multibyte locales, such as C or POSIX.
fixed a bad char * cast that causes incorrect results on big-endian
systems. also fixed an out-of-bounds read for empty CCL.
fixed a buffer overflow in substr with utf-8 strings.
many thanks to Todd C Miller.

Sep 24, 2023:
fnematch and getrune have been overhauled to solve issues around
unicode FS and RS. also fixed gsub null match issue with unicode.
big thanks to Arnold Robbins.

Sep 12, 2023:
Fixed a length error in u8_byte2char that set RSTART to
incorrect (cannot happen) value for EOL match(str, /$/).

-----------------------------------------------------------------

[This entry is a summary, not a precise list of changes.]

Added --csv option to enable processing of comma-separated
values inputs.  When --csv is enabled, fields are separated
by commas, fields may be quoted with " double quotes, fields
may contain embedded newlines.

If no explicit separator argument is provided, split() uses
the setting of --csv to determine how fields are split.

Strings may now contain UTF-8 code points (not necessarily
characters).  Functions that operate on characters, like
length, substr, index, match, etc., use UTF-8, so the length
of a string of 3 emojis is 3, not 12 as it would be if bytes
were counted.

Regular expressions are processes as UTF-8.

Unicode literals can be written as \u followed by one
to eight hexadecimal digits.  These may appear in strings and
regular expressions.

From FIXES.1e:

Sep 06, 2023:
Fix edge case where FS is changed on commandline. Thanks to
Gordon Shephard and Miguel Pineiro Jr.

Fix regular expression clobbering in the lexer, where lexer does
not make a copy of regexp literals. also makedfa memory leaks have
been plugged. Thanks to Miguel Pineiro Jr.

Dec 15, 2022:
Force hex escapes in strings to be no more than two characters,
as they already are in regular expressions. This brings internal
consistency, as well as consistency with gawk. Thanks to
Arnold Robbins.

Sep 12, 2022:
adjbuf minlen error (cannot be 0) in cat, resulting in NULL pbuf.
discovered by todd miller. also use-after-free issue with
tempfree in cat, thanks to Miguel Pineiro Jr and valgrind.

Aug 30, 2022:
Various leaks and use-after-free issues plugged/fixed.
Thanks to Miguel Pineiro Jr. <mpj@pineiro.cc>.

May 23, 2022:
Memory leak when assigning a string to some of the built-in
variables. allocated string erroneously marked DONTFREE.
Thanks to Miguel Pineiro Jr. <mpj@pineiro.cc>.

Mar 14, 2022:
Historic bug: command-line "name=value" assignment had been
truncating its entry in ARGV. (circa 1989) Thanks to
Miguel Pineiro Jr. <mpj@pineiro.cc>.

Mar 3, 2022:
Fixed file management memory leak that appears to have been
there since the files array was first initialized with stdin,
stdout, and stderr (circa 1992). Thanks to Miguel Pineiro Jr.
<mpj@pineiro.cc>.

December 8, 2021:
The error handling in closefile and closeall was mangled. Long
standing warnings had been made fatal and some fatal errors went
undetected. Thanks to Miguel Pineiro Jr. <mpj@pineiro.cc>.

Nov 03, 2021:
        getline accesses uninitialized data after getrec()
returns 0 on EOF and leaves the contents of buf unchanged.
Thanks to Volodymyr Gubarkov, and Todd C Miller.

Oct 12, 2021:
The fix for #83 changed the code to insert 2 chars, but the
call to adjbuf just above it only allows for 1 char. This can
cause a heap buffer overflow.

Sponsored by: Netflix
38 files changed:
FIXES
FIXES.1e [new file with mode: 0644]
README [deleted file]
README.md
awk.1
awk.h
awkgram.y
b.c
bugs-fixed/getline-corruption.awk [new file with mode: 0644]
bugs-fixed/getline-corruption.in [new file with mode: 0644]
bugs-fixed/getline-corruption.ok [new file with mode: 0644]
bugs-fixed/rstart-rlength.awk [new file with mode: 0644]
bugs-fixed/rstart-rlength.ok [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-1.awk [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-1.in [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-1.ok [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-2.awk [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-2.in [new file with mode: 0644]
bugs-fixed/unicode-fs-rs-2.ok [new file with mode: 0644]
bugs-fixed/unicode-null-match.awk [new file with mode: 0644]
bugs-fixed/unicode-null-match.bad [new file with mode: 0644]
bugs-fixed/unicode-null-match.ok [new file with mode: 0644]
lex.c
lib.c
main.c
makefile
parse.c
proctab.c [deleted file]
proto.h
run.c
testdir/T.argv
testdir/T.csv [new file with mode: 0755]
testdir/T.misc
testdir/T.utf [new file with mode: 0755]
testdir/T.utfre [new file with mode: 0755]
testdir/tt.15
testdir/xc [deleted file]
tran.c