Commit graph

335 commits

Author SHA1 Message Date
Kim Alvefur
ae14dc1220 util.hashes: Expose sha224 and sha384 HMAC functions
For completeness and consistency with set of plain hash functions
2020-11-29 17:58:45 +01:00
Kim Alvefur
54f8ca81f4 util.hashes: Refactor HMAC bindings (fixes #1589)
HMAC() is deprecated

As with the regular hash functions, macros like this make it awkward to
apply static analysis and code formatting.
2020-11-29 17:58:30 +01:00
Kim Alvefur
d690f1502a util.hashes: Refactor hash functions to use OpenSSL EVP methods (fix #1698)
MD5() is deprecated, but EVP_md5() is not.

Functions in macros like this make it awkward to apply static analysis
and code formatting.
2020-09-10 21:58:23 +02:00
Kim Alvefur
300813b68b util.crand: Reduce scope here too
Same as previous commit
2022-04-23 14:37:43 +02:00
Kim Alvefur
787835d693 util.strbitop: Reduce scope of functions
Equivalent to 'local' in Lua, these functions are exported via the
luaopen_ function, which is the only one needing to be visible outside
of the file.

Pointed out by Link Mauve at some point, but there wasn't really any
rush here.
2022-04-23 14:29:43 +02:00
Matthew Wild
ca3d1e1958 util.table: Compatibility with Lua 5.1 lua_equals 2022-03-18 15:29:05 +00:00
Matthew Wild
26605b5197 util.table: Backport table.move() from Lua 5.4
One difference is that 5.4 accepts "table-like" values (for this and other
table.*() functions), but that would require additional backporting work.
2022-03-18 15:21:25 +00:00
Kim Alvefur
43351d2b54 Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work

Maybe I missed something.
2022-03-07 00:13:56 +01:00
Kim Alvefur
ffb37f3ef3 make: Fix build of util.struct on *BSD 2022-03-04 17:46:33 +01:00
Matthew Wild
b47c7951d5 Merge config-updates+check-turn from timber 2022-03-04 16:33:41 +00:00
Kim Alvefur
af95bb77e6 util.poll: Add support for the poll() API
Might be better than select(), more portable than epoll.
2022-02-23 20:31:03 +01:00
Kim Alvefur
04aa101da3 util.poll: Expose API (epoll or select) used
Could he handy to know for debugging or decisions
2022-02-27 14:36:43 +01:00
Kim Alvefur
22d734e305 util.poll: Restructure to make adding additional system APIs easier 2022-02-23 20:30:22 +01:00
Matthew Wild
fe56effa55 util.struct: Import Roberto 'struct' library v0.3
Downloaded from http://www.inf.puc-rio.br/~roberto/struct/

This is for compatibility with Lua 5.2 (and 5.1). Eventually we can replace
this with string.pack/string.unpack which are available in 5.3+.
2022-03-04 15:03:02 +00:00
Kim Alvefur
d3bd9f9be5 util.pposix: Use mallinfo2() on glibc 2.33, fix #1649 2022-01-06 18:56:06 +01:00
Kim Alvefur
b93398ce79 util.pposix: Bind isatty(3)
Useful for disabling certain behavior, ANSI colors etc when not
connected to a terminal.
2021-07-04 15:11:07 +02:00
Kim Alvefur
654fd45546 util.hashes: Expose OpenSSL version 2021-05-12 01:11:15 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Kim Alvefur
eefbd36485 Merge 0.11->trunk 2020-10-15 17:23:21 +02:00
Kim Alvefur
20fc0c9c15 Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
2020-10-15 17:21:58 +02:00
Kim Alvefur
bad47be8f9 Back out 6dde2c9fa272: Doesn't work on Lua 5.1 2020-10-15 17:12:33 +02:00
Kim Alvefur
9b8a54345f util.strbitop: Remove redundant init function
When you have 3 almost identical functions, you tend to edit one and
then copypaste. Forgot to remove this line from the other two.
2020-10-15 17:05:53 +02:00
Kim Alvefur
da8eca639a util.strbitop: Create buffer in the correct size (optimization)
This avoids dynamically growing the buffer as Lua does when luaL_addchar
is used, thus saving on realloc calls.
2020-10-15 16:43:30 +02:00
Kim Alvefur
539255c692 util.strbitop: Reformat code
astyle \
	--indent=tab \
	--attach-classes \
	--indent-switches \
	--break-blocks \
	--pad-oper \
	--unpad-paren \
	--add-braces \
	--align-pointer=name \
	--lineend=linux \
	*.c
2020-10-15 16:26:56 +02:00
Kim Alvefur
4d1b9f7c60 Merge 0.11->trunk 2020-10-15 17:14:03 +02:00
Kim Alvefur
66f3fe9d12 Merge 0.11->trunk 2020-10-15 16:51:16 +02:00
Matthew Wild
4f4140fbc3 Merge 0.11->trunk 2020-10-15 14:25:09 +01:00
Kim Alvefur
9eb8214030 configure: Pass compiler flag to enable ICU only when building util.encodings
Passing it in CFLAGS applied to all modules, which was not needed.
2020-07-12 23:28:04 +02:00
Kim Alvefur
fb1808b185 util.strbitop: Library for bitwise operations on strings 2019-09-07 13:37:47 +02:00
Matthew Wild
f5460a5037 util.hashes: Add constant-time string comparison (binding to CRYPTO_memcmp) 2021-05-10 16:24:54 +01:00
Matthew Wild
b9a670dace util.ringbuffer: Ensure unsigned chars are always returned from :byte() 2020-06-24 12:34:20 +01:00
Kim Alvefur
625ec0a93f util-src: Use the luaL_pushfail API added in Lua 5.4 to highlight all failure conditions
Actually just an alias of pushnil, but it does make it more obvious
where the failure conditions are, which is good for readability.
2020-06-07 02:25:56 +02:00
Matthew Wild
14a436817d util.ringbuffer: Add :sub() and :byte() methods equivalent to the string methods 2020-06-04 15:19:20 +01:00
Kim Alvefur
4bab7af07d util.ringbuffer: Prevent creation of buffer with negative size
Previously this would have been (unsigned)-1 which is a large positive
integer.
2020-06-04 16:11:08 +02:00
Kim Alvefur
0bb1474ce6 util.ringbuffer: Prevent creation of zero-size buffer 2020-05-29 18:11:42 +02:00
Kim Alvefur
8055c8f7d7 util.pposix,signal: Pass around various OS numbers as integers [Lua 5.3]
Passing around PIDs, UIDs etc as integers makes it more sane in Lua 5.3.
Getting 1234.0 as PID is silly. Shouldn't change any behavior as these
are all integers on the C side and the integral floats are accepted as
integers when passed back from Lua into C.
2020-05-04 21:51:30 +02:00
Kim Alvefur
701c5f4811 util.hashes: Fix output length of PBKDF2-HMAC-SHA256
Somehow it got SHA1's 20 byte output instead of the proper 32 = 256/8
2020-04-22 21:38:36 +02:00
Emmanuel Gil Peyrot
668dc534b6 util.net: Fix signedness warning on ARM
net.c:87:56: warning: comparison of integer expressions of different signedness: ‘long unsigned int’ and ‘long int’ [-Wsign-compare]
2020-01-30 14:22:21 +01:00
Emmanuel Gil Peyrot
a149dda0e3 util.*.c: Add static qualifiers everywhere 2019-12-01 20:25:20 +01:00
Emmanuel Gil Peyrot
8613dc1739 util.encodings: Remove redundant cast 2019-12-01 23:34:49 +01:00
Emmanuel Gil Peyrot
d209c0c677 util.encodings: Don’t export unneeded symbols
This reduces the binary size from 22704 B to 18592 B.
2019-12-01 23:34:45 +01:00
Kim Alvefur
908f5b61c5 Merge 0.11->trunk 2019-11-16 16:52:31 +01:00
Kim Alvefur
c4c38d2f01 util.pposix: Avoid overflow of malloc info at 2GB (fixes #1445 until 4GB) 2019-11-16 16:45:33 +01:00
Kim Alvefur
b679ffe808 util.encodings: Don't ignore non-strings passed to stringprep functions
If you manage to pass a table or something weird to these, you deserve
to know.
2019-11-02 13:09:54 +01:00
Kim Alvefur
42aeda373c util.encodings: Strictly verify that the 'strict' *prep argument is a boolean
This is to prevent mistakes like nodeprep(username:gsub("a","b")) from
unintentionally invoking strict mode.
2019-10-30 16:22:44 +01:00
Kim Alvefur
c42a786ec7 util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348) 2019-04-24 16:16:19 +02:00
Kim Alvefur
41a40ab74b util.encodings: Optional strict flag to stringprep 2019-04-24 15:01:00 +02:00
Kim Alvefur
bf1a0c2f05 util.encodings: Spell out all IDNA 2008 options ICU has 2019-09-11 00:40:30 +02:00
Kim Alvefur
bb4cb60fb8 util.encodings: Switch ICU binding to IDNA2008 (fixes #533, #1301) 2019-09-11 00:14:59 +02:00
Kim Alvefur
7ef028d8d4 util.hashes: Use HMAC function provided by OpenSSL (fixes #1345) 2019-04-19 13:12:00 +02:00