Commit graph

2540 commits

Author SHA1 Message Date
Matthew Wild
84c0204ea2 util.ip: Add ip.truncate() to return a new IP with only the prefix of another 2023-03-14 18:24:58 +00:00
Matthew Wild
3eedf79c8b util.ip: Add is_ip() helper method to detect if an object is an ip object 2023-03-14 18:23:33 +00:00
Kim Alvefur
aabfdaf01a util.sasl.oauthbearer: Fix traceback on authz in unexpected format
E.g. if you were to just pass "username" without @hostname, the split
will return nil, "username" and the nil gets passed to saslprep() and it
does not like that.
2023-03-02 14:37:46 +01:00
Matthew Wild
6db4afa0c3 util.sasl: Add SASL OAUTHBEARER mechanism (RFC 7628) 2023-03-01 12:55:00 +00:00
Kim Alvefur
5a3f0becf8 Merge 0.12->trunk 2023-02-22 22:29:53 +01:00
Kim Alvefur
0147b972e0 mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module

Thanks pfak
2023-01-30 00:38:26 +01:00
Kim Alvefur
9228a851bc Merge 0.12->trunk 2023-01-22 15:43:44 +01:00
Kim Alvefur
2a5953f569 util.dnsregistry: Remove unintentional 'Unassigned' record 2023-01-20 23:40:54 +01:00
Kim Alvefur
b15a8e1360 mod_admin_socket: Fix typo in comments
Introduced in 6966026262f4
2023-01-20 18:16:10 +01:00
Kim Alvefur
e3836f22e0 util.sqlite3: Skip prepared statements when no parameters are given
Seems CREATE INDEX is unhappy as a prepared statement. Perhaps because
the table has not been COMMIT-ed yet?
2022-08-01 17:25:40 +02:00
Kim Alvefur
320d4032a2 util.sqlite3: Create util.error registry from headers
The 'type' fields are a first guess.
2021-10-01 02:27:53 +02:00
Kim Alvefur
2dada39e39 util.sqlite3: SQLite3-only variant of util.sql using LuaSQLite3
http://lua.sqlite.org/
2022-08-01 15:23:33 +02:00
Kim Alvefur
564054677f Merge 0.12->trunk 2023-01-14 14:09:33 +01:00
Matthew Wild
99748c5655 util.paseto: Add support for v3.local tokens 2023-01-13 14:38:05 +00:00
Matthew Wild
cd9ef3168a util.paseto: Fix omitted parameter 2023-01-13 14:36:36 +00:00
Matthew Wild
f987c4343e util.paseto: Stricter base64 decoding, as per spec 2023-01-13 14:35:01 +00:00
Kim Alvefur
d89ff6e3cb util.openmetrics: Update tools.ietf.org URL to datatracker
See bd9e006a7a74 for more context
2022-12-19 23:11:42 +01:00
Kim Alvefur
62f32cd01d Revert unintentionally committed parts of 12bd40b8e105 2022-12-21 21:34:07 +01:00
Kim Alvefur
a46ae8cb89 mod_c2s,mod_s2s: Adapt to XEP-xxxx: Stream Limits Advertisement
Thanks MattJ
2022-10-20 14:04:56 +02:00
Kim Alvefur
080d7974bf Merge 0.12->trunk 2022-12-12 07:10:54 +01:00
Matthew Wild
ae84717255 util.hashring: Support associating arbitrary data with nodes
In this API, a 'node' is always a simple text string. Sometimes the caller may
have a more complex structure representing a node, but the hash ring is really
only concerned with the node's name.

This API change allows :add_nodes() to take a table of `node_name = value`
pairs, as well as the simple array of node names previously accepted.

The 'value' of the selected node is returned as a new second result from
:get_node().

If no value is passed when a node is added, it defaults to `true` (as before,
but this was never previously exposed).
2022-12-02 20:32:36 +00:00
Matthew Wild
76bf6d511f Merge 0.12->trunk 2022-11-04 12:26:43 +00:00
Kim Alvefur
03814250c3 util.prosodyctl.cert: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:37:33 +02:00
Kim Alvefur
e673312b7f util.prosodyctl: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:37:07 +02:00
Kim Alvefur
640b8d49a3 util.openssl: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:36:05 +02:00
Kim Alvefur
1acd5e0474 util.human.io: Fix handling of os.execute() return values in Lua 5.2+
Wrong part of Lua 5.1 compat removed in 0f4feaf9ca64
2022-10-20 17:35:01 +02:00
Kim Alvefur
e2cff34641 util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
2022-10-20 16:50:12 +02:00
Kim Alvefur
e64c5e30c2 util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
2022-10-19 16:25:05 +02:00
Kim Alvefur
8fc457681e Merge 0.12->trunk 2022-10-20 16:56:45 +02:00
Matthew Wild
120e01f162 util.jid: Simplify boolean logic in conditionals 2022-10-11 13:35:09 +01:00
Matthew Wild
6ae850c963 util.jid: Remove redundant check from split() (micro-optimization?) 2022-10-11 13:33:19 +01:00
Matthew Wild
ffa72d829b util.dbuffer: Add efficient shortcuts for discard() in certain cases
If the buffer is already empty, nothing to do. If we're throwing away the
whole buffer, we can just empty it and avoid read_chunk() (which in turn
may collapse()). These shortcuts are much more efficient.
2022-10-11 11:37:55 +01:00
Matthew Wild
586a0d8493 util.dbuffer: Remove redundant code (read_chunk() cannot fail at this point) 2022-10-11 11:34:47 +01:00
Kim Alvefur
f150495cea Merge 0.12->trunk 2022-10-09 15:50:25 +02:00
Matthew Wild
a79238fb37 util.promise: Remove line that was supposed to be removed in eb9814372c54 2022-10-07 17:45:23 +01:00
Matthew Wild
aed0c1c5ab util.promise: Remove some redundant checks, add tests confirming redundancy
This lines don't appear to do anything useful, and all tests pass when they
are removed. Discovered via mutation testing.

I added extra tests to exercise this code, because I wasn't certain that there
were no side-effects caused by removal. Everything appears to be fine, thanks
to the "pending" check at the start of promise_settle().
2022-10-07 17:43:26 +01:00
Matthew Wild
d08ddc1f4a util.roles: Add a :policies() method to iterate through available policies
We don't expose the policies directly, to force people to go through :may().
However, there are times when we really just need to know what policies a
role has inside it (e.g. for reporting or debugging purposes).
2022-10-07 17:01:35 +01:00
Matthew Wild
d6863b51b9 util.roles: Return nil if the role has no explicit policy (fixes inheritance)
Previously, if the first inherited role had no opinion, it returned false and
prevented further consultation of other inherited roles.

This bug was found thanks to the implementation of missing test cases
identified through mutation testing.
2022-10-07 16:58:08 +01:00
Matthew Wild
08b49654d9 util.iterators: join: Work even with only a single iterator in the chain 2022-10-06 18:34:40 +01:00
Matthew Wild
bfa6d5634a prosodyctl: check turn: More clearly indicate the error is from TURN server 2022-10-06 11:12:57 +01:00
Matthew Wild
e7bfb40a32 util.jwt: More robust ECDSA signature parsing, fail early on unexpected length 2022-09-30 20:38:31 +01:00
Matthew Wild
5ca81b0e3b util.jwt: Add support for ES512 (+ tests) 2022-09-29 23:17:42 +01: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
473c68770e Merge 0.12->trunk 2022-09-15 11:11:52 +02:00
Kim Alvefur
a3e182ffa1 util.paseto: Do strict type check in pae() function
Fixes a test failure on Lua 5.4 where ipairs("") does not produce an
error.
2022-07-11 18:48:57 +02:00
Matthew Wild
e12c9a83df util.paseto: Drop custom wrappers around key objects
The PASETO spec recommends - no, *requires* - that implementations enforce
type safety for keys, and e.g. do not pass them around as arbitrary byte
strings. Typed wrapper objects are recommended.

I originally followed this advice when starting the lib. However, key wrapping
and type safety is now also a feature of util.crypto. All we're doing is
duplicating it unnecessarily with this additional wrapper code.
2022-07-11 14:30:39 +01:00
Matthew Wild
4e4c2dd6dc util.paseto: Export similar API to new util.jwt for ease and consistency 2022-07-11 14:09:16 +01:00
Matthew Wild
2db2476824 util.paseto: Error early on invalid keys 2022-07-11 14:08:55 +01:00
Matthew Wild
e2f61d6e7e util.paseto: Fix to decode footer before comparison 2022-07-11 13:51:39 +01:00
Matthew Wild
ff54cc5bcf util.jwt: Add new init() convenience method to obtain both signer and verifier 2022-07-11 13:43:01 +01:00