Commit graph

13450 commits

Author SHA1 Message Date
Matthew Wild
876162b9cf util.bit53: Add bnot() method 2024-03-01 17:22:29 +00:00
Kim Alvefur
36a9583069 util.signal: Fail signalfd() if unable to change signal mask
By aborting early, the failure should be brought to the attention
somehow.
2024-02-28 22:31:06 +01:00
Kim Alvefur
f1e07782ed net.server_epoll: Log failure to hook signals
To make any such failures noticeable
2024-02-28 22:24:09 +01:00
Kim Alvefur
3d2bad3d4b Merge 0.12->trunk 2024-02-27 17:15:36 +01:00
Kim Alvefur
f7b35d516f net.http.files: Validate argument to setup function
Fixes error in #1765 by throwing an error earlier
2024-02-27 17:14:16 +01:00
Kim Alvefur
18813c2ffa mod_s2s: Comment on why we avoid hostnames in stanza bounce messages 2024-02-24 17:45:50 +01:00
Kim Alvefur
01a44e88db mod_cron: Fix log format to account for float that was integer before 2024-02-24 14:35:17 +01:00
Kim Alvefur
cef925e9a5 mod_cron: Sync Teal source with 92301fa7a673
Yeah, it's weird to have two versions. Needing more build dependencies
is also something we want to avoid, so here we are.
2024-02-24 14:32:59 +01:00
Kim Alvefur
761643abcc util.signal: Wrap signalfd in an userdatum for gc handling etc 2024-02-24 01:00:44 +01:00
Kim Alvefur
49c296360d net.server_epoll: Support hooking signals via signalfd
Handling signal events the same way as all other events makes sense and
seems safer than the signal handling just jumping around in C and
messing with Lua states.
2024-02-24 00:20:35 +01:00
Kim Alvefur
54f76b97d2 util.signal: Add support for signalfd(2) on Linux
signalfd allows handling signal events using the same method as sockets,
via file descriptors. Thus all signal dispatch can go through the same
main event loop as everything else, removing need for thread-scary
signal handling where execution would just jump to the signal handler
regardless of the state of Lua, and needing to keep track of Lua
states/threads.
2024-02-24 00:05:29 +01:00
Matthew Wild
c3af93fce7 features: Add mod_server_info 2024-02-23 22:45:42 +00:00
Matthew Wild
fa5346d756 mod_server_contact_info: Update to publish fields via new mod_server_info 2024-02-23 21:14:14 +00:00
Matthew Wild
96898e05a6 mod_server_info: New module to manage the serverinfo disco extension form
This allows multiple modules to populate the form dynamically. Currently the
form is "owned" by mod_server_contact_info, which prevents other modules from
contributing to it.

A further commit will port mod_server_contact_info to use this module.
2024-02-23 21:13:10 +00:00
Kim Alvefur
a2b268528d util.strbitop: Add common_prefix_bits() to Teal interface description 2024-02-23 16:38:05 +01:00
Kim Alvefur
bb081f052f util.hashes: Add missing entries to Teal interface description
Also sorted to match C source
2024-02-23 16:35:21 +01:00
Kim Alvefur
c333519fb2 util.crypto: Update Teal interface description to match C sources
Was missing some entries.

Rearranged to match order of entries in the C source Reg table.
2024-02-23 16:33:08 +01:00
Matthew Wild
961b764d10 tools/test_mutants.sh: Load loader helper when running busted 2024-02-23 12:16:03 +00:00
Matthew Wild
f4d2d7a3a3 util.ip: Remove ip.bits and related code, switch to more efficient strbitop
100,000 iterations of match() on my laptop from 3.5s -> 0.5s.
2024-02-23 12:14:51 +00:00
Matthew Wild
965d69763c util.strbitop: Remove unused import in tests 2024-02-23 12:13:06 +00:00
Matthew Wild
7f748556a2 util.strbitop: Add common_prefix_bits() method
This returns the number of bits that two strings have in common. It is
significantly more efficient than similar calculations in Lua.
2024-02-23 12:08:37 +00:00
Matthew Wild
1606675762 util.ip: Add another test case for match() and commonPrefixLength() 2024-02-23 12:03:31 +00:00
Matthew Wild
81cb34ef50 util.strbitop: Rename spec file to correct name so tests actually run 2024-02-23 11:59:45 +00:00
Kim Alvefur
ddd479afe2 util.rfc6724: Remove, unused since introduction of Happy Eyeballs
It was mainly used to determine whether to try IPv6 or IPv4 first,
following the rules for this in the RFC.

Now we always try IPv6 and IPv4 at roughly the same time, thus there no
need to carry these rules.
2024-02-22 19:46:52 +01:00
Matthew Wild
b9f0c3c0ec features: Add module-ready (for commit e20949a10118) 2024-02-22 09:53:48 +00:00
Matthew Wild
f62f5d71ec util.startup: Expose core.features.available as prosody.features
for convenience.
2024-02-22 09:53:02 +00:00
Kim Alvefur
c0a3026414 mod_s2s_auth_certs: Handle potential string error
conn:ssl_peerverification() can now return a single error in case the
connection has been closed for whatever reason
2024-02-21 21:29:16 +01:00
Kim Alvefur
5764e73a65 net.server_epoll: Prevent traceback when checking TLS after connection gone
Unclear why this would be done, but an error is not great.
2024-01-21 22:59:50 +01:00
Matthew Wild
69dc40ac35 mod_cron: Allow configuring various "internal" delay parameters
Notably, it is now possible to add a randomized spread factor to the check
interval.
2024-02-20 17:31:17 +00:00
Kim Alvefur
2ef771fff8 mod_c2s: Fix error on role change on Components (thanks Menel) 2024-02-17 19:07:57 +01:00
Kim Alvefur
7be4e2fd31 mod_smacks: Adjust buckets for resumption age statistic
Given that there are recommendations floating around recommending 24
hours session lifetime, having buckets up to 10 minutes wouldn't be
useful in that case.

Would be nice if we had some way to automatically assign suitable number
series for buckets, scaled to what the configuration might be.
2024-02-16 00:15:36 +01:00
Kim Alvefur
1768a2f369 mod_storage_internal: Fix off-by-one when searching archive for
Fixes a test case provided by MattJ where the very first item matched by
a 'start' timestamp was not returned.
2024-02-15 20:28:14 +01:00
Kim Alvefur
331f2d40e1 mod_s2s_auth_dane_in: Try single TLSA lookup per draft-ietf-dance-client-auth
Moves some complexity from the implementation into DNS operations.
2024-01-11 07:54:11 +01:00
Kim Alvefur
2dba3989e7 mod_s2s_auth_dane_in: Simplify result processing
Fewer loops
2024-01-11 07:53:06 +01:00
Kim Alvefur
4ca636bb7e mod_disco: Advertise disco#info and #items on bare JIDs to fix #1664
Having to add these in *there* places seems less than ideal.

I would also think that advertising disco#info is a bit redundant, since
it is a requirement for everything in XMPP and if it was missing you
would get an error back.
2023-12-17 18:55:14 +01:00
Kim Alvefur
674b91b82b net.http.parser: Reject overlarge header section earlier
This case would eventually be rejected by the buffer size limit.
2023-08-23 12:18:34 +02:00
Kim Alvefur
e8128c1d60 core.certmanager: Validate that 'tls_profile' is one of the valid values
A typo should not result in ending up with "legacy"
2023-10-27 19:03:59 +02:00
Kim Alvefur
4d9916d1e5 mod_muc_mam: Improve wording of enable setting
Suggested by jstein in the chat

This option label is used by XMPP clients to explain what the option does.
a) The user should know where the data is archived.
b) The user needs a statement that can be enabled/disabled by the variable. A question would have the wrong logic here.
2023-10-15 14:43:11 +02:00
Kim Alvefur
d0e69c4e15 Added tag 0.12.4 for changeset a2ba3f06dcf4 2023-09-05 19:48:59 +02:00
Kim Alvefur
da3d755a15 util.prosodyctl.check: Correct modern replacement for 'disallow_s2s'
The code would have suggested adding to modules_enabled instead of
modules_disabled
2023-08-27 15:46:19 +02:00
Kim Alvefur
0fa9d6be37 util.array: Fix new() library function
Backport of ffe4adbd2af9 since new was added in the 0.12 branch
2023-07-22 16:31:05 +02:00
Kim Alvefur
683b90f871 util.prosodyctl.check: Hint about the 'external_addresses' config option 2023-07-17 14:56:57 +02:00
Kim Alvefur
43c39930c3 util.prosodyctl.check: Validate format of module list options
Should detect things like misplaced settings inside modules_enabled
2023-07-17 14:45:15 +02:00
Kim Alvefur
3f81654a66 util.prosodyctl.check: Get some config options via minimal moduleapi #896
The module API has certain coercion features that are useful.

Fixes traceback reported in #1812 and other duplicates
2023-07-17 14:03:13 +02:00
Kim Alvefur
59f9a608fd core.certmanager: Update Mozilla TLS config to version 5.7
Ref https://github.com/mozilla/server-side-tls/issues/285
2023-07-09 21:18:47 +02:00
Kim Alvefur
c82f504f6a mod_pubsub: Send correct jid attribute in disco#items
Fixes use in PEP where the JID does not equal the bare domain.
2023-07-08 18:23:40 +02:00
Kim Alvefur
960f406662 mod_http: Fix error if 'access_control_allow_origins' is set
Because it changes the type of the 'opt_origins' variable from util.set
to the internal _items table so next time an http app is added an error
"attempt to call a nil value (method 'empty')" is triggered.  The value
is not used anywhere else.

Noticed when reviewing uses of the '_items' set property.

Not reported by any users, implying this setting is rarely used.
2023-06-10 12:33:58 +02:00
Kim Alvefur
cbed7dfdf5 util.array: Expose new() on module table
For consistency with other utils.

Consistency is good.
2023-06-10 12:14:12 +02:00
Kim Alvefur
e4d5c15396 util.prosodyctl.check: Fix error where hostname can't be turned into A label
Where gethostname or tohostname returns an invalid name, e.g. containing
underscores or something, to_ascii would reject this and return nil,
which triggers an error in the dns lookup.

Reported by prova2 in the chat, for whom tohostname returned a long name
containing underscores.
2023-05-31 14:08:19 +02:00
Kim Alvefur
20afe7d20d mod_s2s: Add event where resolver for s2sout can be tweaked
Could be used to implement custom connection methods (c.f. mod_onions)
without needing to duplicate the rest of route_to_new_session().

Adds a feature to enable detection since it can be difficult to detect
support for an event otherwise.
2022-08-18 03:26:32 +02:00