Commit graph

13430 commits

Author SHA1 Message Date
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
cb66977bd4 MUC: Record reason for affiliation changes and return in list (fixes #1227) 2021-08-08 18:07:17 +02:00
Kim Alvefur
c8c1482dae MUC: Test that <subject/> + <thread/> is not handled as subject change
Ref #667
Ref #1838
2024-01-23 13:00:58 +01:00
Kim Alvefur
607f8ffee5 mod_invites: Fix argument handling
Not sure what the next() was supposed to do. Reject unknown --options
perhaps?
2024-01-21 20:08:00 +01:00
Kim Alvefur
a2539d4dcd mod_invites: Show short help instead of traceback on missing hostname 2024-01-13 11:00:20 +01:00
Kim Alvefur
2a5e7ab8be mod_invites: Show help if --help passed instead of hostname
Because I couldn't guess the right way to get the help message without
reading the source twice.
2024-01-13 10:59:04 +01:00
Kim Alvefur
1252713d89 mod_invites: Allow specifying invite ttl on command line
Was missing a way to pass TTL via command or shell.
2024-01-13 10:58:12 +01:00
Kim Alvefur
a7799e11a9 Merge 0.12->trunk 2023-12-17 19:02:56 +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
6438e929b2 scansion: Use new style for accessing Lua globals 2023-12-17 16:41:47 +01:00
Kim Alvefur
0b5df6bdac scansion: Use new prosody namespace in import 2023-12-17 16:41:27 +01:00
Kim Alvefur
30f791386b scansion: Use captures or wildcards instead of mocking time
> Mockery is one of the things I hold dear! And he's making a mockery of it!!
-- Belkar Bitterleaf
2023-12-17 16:29:03 +01:00
Kim Alvefur
251f4d3c8a util.xtemplate: Test the each template function
It iterates over childtags, so a template like {foo|each{...}} would be
equivalent to root:childtags("foo"), while a deeper query needs the bit
that becomes arguments to :childtags as an argument to each, e.g.
{foo/bar|each(baz)} would behave like
root:get_child("foo"):get_child("bar"):childtags("baz")
2023-12-16 13:47:55 +01:00
Kim Alvefur
d26ccd8400 tools: Fix selection of container engine
Seems command -v in sh only checks and returns one argument, unlike
bash.
2023-12-12 16:19:04 +01:00
Matthew Wild
4b0463968a mod_storage_internal, tests: Fix before/after combined with the 'reverse' flag 2023-12-12 13:41:14 +00:00
Kim Alvefur
9dd7726419 util.http: Silence strict luacheck warning in tests 2023-12-09 21:01:49 +01:00
Kim Alvefur
a67e816055 core.moduleapi: Silence strict luacheck warnings in tests 2023-12-09 20:55:26 +01:00
Kim Alvefur
49a62a0d1e util.throttle: Silence some strict luacheck warnings 2023-12-09 20:36:29 +01:00
Kim Alvefur
3764f34fcf util.prosodyctl.shell: Fix lint [luacheck] 2023-12-09 17:00:22 +01:00
Kim Alvefur
637025fc78 CHANGES: Mention new prosodyctl shell method behavior 2023-12-09 16:41:37 +01:00
Kim Alvefur
f0061feef8 util.prosodyctl.shell: Add :method syntax to make e.g. MUC commands easier
e.g.
prosodyctl shell muc room room@muc.example.com :set_name "This Room"
2023-12-09 16:25:04 +01:00
Kim Alvefur
36914c9d99 util.xtemplate: Add some initial tests
Strict typing does not magically make code correct
2023-12-09 15:15:06 +01:00
Kim Alvefur
c61c78447b util.xtemplate: Adopt {-path-} syntax to strip preceding and/or trailing whitespace
Seen in some other template languages
2023-12-09 14:57:41 +01:00
Kim Alvefur
48f26f9b98 mod_http_errors: Simplify CSS via built-in dark mode 2023-12-06 23:52:45 +01:00
Matthew Wild
1b3971dd62 CHANGES: Document some of the recent changes and features in trunk 2023-12-08 15:46:32 +00:00
Matthew Wild
9bd1726821 configmanager: Fix linter issues 2023-12-08 15:37:13 +00:00
Matthew Wild
7a288248f0 configmanager: Support for appending to existing config options
...and some other useful operations
2023-12-08 15:34:48 +00:00
Matthew Wild
cc0f973628 configmanager: Make _G accessible via Lua variable, deprecate direct access 2023-12-08 14:24:49 +00:00
Matthew Wild
c2d0d411d4 configmanager: Allow referencing previously-set options in the config file 2023-12-08 13:36:51 +00:00
Matthew Wild
39d85bbc31 mod_user_account_management: Clear pending deletion if account re-enabled 2023-12-07 12:08:01 +00:00
Matthew Wild
c35307551b mod_saslauth: Fire event per SASL step
This matches the behaviour of the newer mod_sasl2 implementation. It allows
plugins to observe (and potentially, with caution, modify) the SASL exchange.
2023-12-05 11:39:11 +00:00
Kim Alvefur
e03fe2ebe3 util.jsonschema: Return basic structured validation response 2023-12-02 21:45:38 +01:00
Kim Alvefur
5dfd9d25cd mod_c2s: Make c2s_timeout timer reachable to allow access from other modules
E.g. the timeout could be extended under certain conditions.
2023-12-03 15:46:33 +01:00
Kim Alvefur
75335ede73 tools: Add a tool for comparing DOAP to the latest XEP versions
Needs wget, awk, sed and xml2
2023-12-03 15:44:15 +01:00
Kim Alvefur
e5aa2c3385 mod_s2s: Close connection on smacks timeout
This merges the mod_s2s_smacks_timeout behavior from prosody-modules

This event is fired by mod_smacks when the connection has not responded
to an ack-request for a period of time defaulting to 30 seconds,
indicating that the connection has become stuck or non-responsive.
Closing it prevents routing further messages via this connection and
frees resources. A stuck connection may otherwise remain until for a
time determined by the OS TCP subsystem, which can be quite long.
2023-12-02 20:20:05 +01:00
Kim Alvefur
3fbec27699 mod_saslauth: Fire event at start of authentication attempt
As extension point for rate limiting and similar checks, so they can
hook a single event instead of <{sasl1}auth> or stream features, which
might not be fired in case of SASL2 or e.g. HTTP based login.
2023-12-01 23:43:18 +01:00
Kim Alvefur
a26b39e1b7 net.http.server: Fix whitespace-ignoring syntax 2023-12-01 22:00:18 +01:00