Commit graph

358 commits

Author SHA1 Message Date
Kim Alvefur
bf35a39a15 util.poll: Include unistd.h only for epoll
This defines close(), which is only used with epoll, hence we don't need
to include it when building in poll or select mode.
2023-02-10 00:37:05 +01:00
Kim Alvefur
1ea488deee util.crypto: Preemptively silence 'strict-prototypes' warning
With `gcc-12 -Wstrict-prototypes` the following warning is shown:

crypto.c:43:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
   43 | static BIO* new_memory_BIO() {
      |             ^~~~~~~~~~~~~~
2023-01-31 16:27:55 +01:00
Kim Alvefur
2e44f8260b util.struct: Fix typo in comment 2023-01-20 18:19:34 +01:00
Kim Alvefur
732d5ad8a8 util.hashes: Silence compiler warning about char pointer signedness
Introduced in dbe9781fd278
2023-01-17 15:30:28 +01:00
Matthew Wild
26dc334ae3 util.crypto: Add support for AES-256-CTR
This is required by PASETO v3.local
2023-01-13 14:34:10 +00:00
Matthew Wild
341c8417c2 util.hashes: Add HKDF-HMAC-SHA256/HKDF-HMAC-SHA384
These are needed for PASETO v3.local.
2023-01-13 14:29:08 +00:00
Matthew Wild
8695a72a66 util.crypto, util.jwt: Generate consistent signature sizes (via padding)
This fixes the signature parsing and building to work correctly. Sometimes
a signature was one or two bytes too short, and needed to be padded. OpenSSL
can do this for us.
2022-09-29 23:15:39 +01:00
Kim Alvefur
62438f482e util.crypto: Use Lua 5.2 API for predictable buffer size
In Lua 5.3 LUAL_BUFFERSIZE is a macro computed from sizeof and is thus
not known at pre-processing time, so this does not work.

Since Lua 5.1 is no longer supported, we can use luaL_prepbuffsize()
which is available from Lua 5.2
2022-07-11 17:11:38 +02:00
Kim Alvefur
e893bbf681 util.crypto: Use stack space buffers
Removes assumption that LUAL_BUFFERSIZE is known at pre-processing time,
which it is not in Lua 5.3 and 5.4, where it is a computed macro based
on sizeof.

Allocation of stack space is safer and faster, no need to worry about
luaL_prepbuffer failing to allocate memory and skipping free()
2022-07-11 17:01:55 +02:00
Matthew Wild
5316b0005e util.crypto: More digests for sign/verify, use macros for clarity/consistency 2022-07-02 14:59:52 +01:00
Matthew Wild
d7b32f1b71 util.crypto: Friendlier error message on incorrect key types 2022-07-02 11:51:24 +01:00
Matthew Wild
ba282f1070 util.crypto: Add support for RSA signatures (PKCS1-v1.5 + PSS)
These are used by the RS*** and PS*** family of JOSE algorithms (e.g. in JWTs)
2022-07-02 11:50:56 +01:00
Matthew Wild
b357cf1be1 util.crypto: New wrapper for some operations in OpenSSL's libcrypto
Specifically, ED25519 key generation/import/export, sign/verify operations,
and AES encrypt/decrypt.
2022-06-24 16:56:16 +01:00
Matthew Wild
6a64363e78 util-src: Add new utility header managed_pointer.h
The macros in this header allow creation of GC-managed objects from manually-
managed C alloc/free APIs.
2022-07-01 15:11:08 +01:00
Kim Alvefur
dabdfc91be util.table: Fix inaccurate comment
Probably a duplicate of the comment next to Lmove, recorded by mistake

Lpack can probably be removed at some point in the near future once we
are confident it is not used anywhere.
2022-07-11 20:02:10 +02:00
Kim Alvefur
dff4beae02 util-src: Remove Lua 5.1 compat macros
Part of #1600
2022-07-01 21:21:21 +02:00
Kim Alvefur
b1c7b93139 util.hashes: Revert to HMAC() convenience function
Reverts some of 1e41dd0f8353

Seems HMAC() isn't deprecated after all? Must have been at some point
according to #1589

Twice as fast for some reason.
2022-06-24 16:59:54 +02:00
Kim Alvefur
8f3d837cd2 util.hashes: Remove unused constants 2022-06-24 16:49:03 +02:00
Kim Alvefur
452f9e4e2b util.hashes: Remove unused struct
Unused since 9f1c5ae8d70b
2022-06-24 16:12:11 +02:00
Kim Alvefur
9a96021706 util.hashes: Return OpenSSL error messages on failure
With luck, might contain more details than just "failed"
2022-06-24 15:33:04 +02:00
Kim Alvefur
a7567a9055 util.hashes: Add SHA3 bindings 2020-09-10 21:58:24 +02:00
Kim Alvefur
f3d61e3945 util.hashes: Bind BLAKE2 algoritms supported by OpenSSL 2020-09-10 21:58:24 +02:00
Kim Alvefur
9f932f7559 util.hashes: Refactor PBKDF2 to deduplicate code 2020-09-10 21:58:25 +02:00
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