Commit graph

12246 commits

Author SHA1 Message Date
Kim Alvefur
1f4fb79d2e util.x509: Fix to include wildcard identity 2021-12-22 15:32:04 +01:00
Kim Alvefur
da1bffce1d core.certmanager: Check index for wildcard certs 2021-12-22 15:13:49 +01:00
Jonas Schäfer
7c93370ad5 prosodyctl cert: use the indexing functions for better UX
These provide (a) a way to deal with random assortments of certs
and (b) avoid unnecessary error messages and warnings, according
to #1669 anyway, which this fixes.
2021-12-21 21:20:21 +01:00
Kim Alvefur
a7f535e0cf prosodyctl: Hide process management commands when init system should be used instead 2021-12-21 14:23:09 +01:00
Kim Alvefur
ff688f28ea prosodyctl: Reorder help sections
By how old the commands are?
Or how disruptive the changes are?
Or just by what feels best?
2021-12-21 13:11:41 +01:00
Kim Alvefur
84447b8d9d mod_roster: Improve readability of bare-JID check
Silences luacheck too

All we care about is that it is a bare JID, not a full JID with a
resource, since those are forbidden in rosters.
2021-12-22 18:07:44 +01:00
Jonas Schäfer
663028421f mod_roster: pass correct username to roster-item-removed
The other invocations use it that way, and the only listener in trunk
which uses it (in mod_presence) expects it that way.

Passing the username of the JID from the removed entry causes incorrect
unavailable presence stanzas to be sent, allegedly kicking people off
MUCs.

Fixes #1121.
2021-12-22 13:06:32 +01:00
Kim Alvefur
46a6dafd28 core.certmanager: Rename preset option to 'tls_preset'
TLS good, SSL bad.
2021-12-22 14:24:26 +01:00
Kim Alvefur
184b0a62cb core.certmanager: Add "legacy" preset for keeping previous default settings
If anyone wants that.
2021-12-22 14:12:10 +01:00
Kim Alvefur
99a73bdcf6 core.certmanager: Add TLS 1.3 cipher suites to Mozilla TLS presets 2021-11-03 12:23:29 +01:00
Kim Alvefur
8fe336b4a1 prosodyctl: Fix later import of LuaFileSystem
lfs or WHAT

How did this even happen?
2021-09-11 22:26:50 +02:00
Kim Alvefur
6be7cf935f net.server_epoll: Fix to preserve ids of readded timers
Likely affected rescheduling but have no reports of this.

After readding a timer, it would have been issued a new id. Rescheduling
would use the previous id, thus not working.
2021-08-31 12:58:38 +02:00
Lucas
5f69d4a129 makefile: fix prosody.version target
POSIX is quite explicit regarding the precedence of AND-OR lists [0]:

> The operators "&&" and "||" shall have equal precedence and shall be
> evaluated with left associativity. For example, both of the following
> commands write solely `bar` to standard output:
>       false && echo foo || echo bar
>       true || echo foo && echo bar

Given that, `prosody.version` target behaves as

	((((((test -f prosody.release && cp ...) ||
	    test -f ...) &&
	    sed ...) ||
	    test -f ...) &&
	    hexdump ...) ||
	    echo unknown > $@)

In the case of release tarballs, `prosody.release` does exist, so the
first AND pair is executed. Given that it's successful, then the first
`test -f` in the OR pair is ignored, and instead the `sed` in the AND
pair is executed. `sed` success, as `.hg_archival.txt` exists, making
the second `test -f` in the OR pair ignored, and `hexdump` in the AND
pair is executed. Now, given that `.hg` doesn't exist, it fails, so the
last `echo` is run, overwriting `prosody.version` with `unknown`.

This can be worked around placing `()` around the AND pairs. Decided to use
conditionals instead, as I think they better communicate the intention
of the block.

[0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_03
2021-08-15 04:10:36 +00:00
Kim Alvefur
5ec33a42c1 Tag 0.11.10 2021-08-03 11:44:31 +02:00
Kim Alvefur
00735e4759 MUC: Fix logic for access to affiliation lists
Fixes https://prosody.im/security/advisory_20210722/

Backs out 4d7b925652d9
2021-07-22 17:18:39 +02:00
Matthew Wild
6367311519 mod_c2s: Indicate stream secure state in error text when no stream features to offer 2021-07-06 08:18:28 +01:00
Kim Alvefur
59d820880f util.ip: Fix netmask for link-local address range
This may have mistakenly caused link-local addresses to be considered
global.  May have caused mod_s2s and prosodyctl check dns to behave
incorrectly on networks using link-local IPv4 addresses. By my
guesstimate, these are extremely rare.  Probably minimal impact beyond
a bit longer to establish s2s and some possible confusion from
prosodyctl check dns results.

Ref RFC 3927
2021-07-03 03:27:57 +02:00
Kim Alvefur
13c5a2359d prosodyctl: Add 'limits' to known globals to warn about misplacing it
It will do nothing in a VirtualHost section for example.
2021-05-27 12:35:55 +02:00
Kim Alvefur
0c6f17043f mod_pep: Remove obsolete node restoration code (now done by util.pubsub)
Originally added in 202b9951b037 but util.pubsub gained a better method
in 6c2c2fc4b8dd since then, which mod_pep uses since 9194431b6447 which
should have deleted this.

All these :create calls would have failed with a 'conflict' error, since
the nodes had already been created. This was never noticed because of
missing error handling.

Also note that this code did not restore node configuration.
2021-05-16 16:14:23 +02:00
Kim Alvefur
0e1bf3c061 util.pubsub: Fix traceback if node data not initialized
This should not be possible, but a traceback indicating node_data being
nil here was reported by Ron in the chat.
2021-05-16 16:02:00 +02:00
Matthew Wild
a95576d485 Added tag 0.11.9 for changeset d0e9ffccdef9 2021-05-12 16:42:51 +01:00
Kim Alvefur
c2ce30433a mod_dialback: Remove d-w-d feature
Backs out 1d0862814bfc and 2fdd71b08126

Largely unused, undocumented and did not have enough tests to provide
confidence in its correct operation.
2021-05-12 17:22:02 +02:00
Kim Alvefur
d2ff803262 core.certmanager: Presets based on Mozilla SSL Configuration Generator
ssl_preset = "modern"
2019-12-22 02:25:37 +01:00
Matthew Wild
bd455426f6 moduleapi: Support stripping of multi-word from module names
The goal is to allow module:provides("foo-bar") with a mod_foo_bar_ prefix
being stripped. It will break any existing modules that use a prefix and have
hyphens instead of underscores. No such modules are known.
2021-12-22 14:40:42 +00:00
Jonas Schäfer
6671cc037e adminstream: fire disconnected event on lower layer disconnect
This may in theory cause multiple disconnect events for the
adminstream client, if the only code using that wasn't calling
os.exit right away.

Hence, this should be a good enough partial fix for #1671. It is
not a full fix, because the shell will only notice the disconnect
after one has hit enter in the input; until then, it is stuck in
a read() call to stdin and completely oblivious to the disconnect.
2021-12-21 21:23:01 +01:00
Kim Alvefur
1f71208177 CHANGES: Add various things 2021-12-21 21:38:44 +01:00
Kim Alvefur
103660a50f CHANGES: Reorganize by added/changed/removed to improve readability 2021-12-21 20:43:44 +01:00
Kim Alvefur
acaaefe143 Merge 0.11->trunk 2021-12-20 23:12:08 +01:00
Matthew Wild
c482490bff configmanager: Update error message to say 'VirtualHost' instead of 'Host' 2021-12-20 20:46:24 +00:00
Matthew Wild
5cb8d55857 mod_storage_xep0227: Replace custom tag-removal helpers with :remove_children() 2021-12-20 15:39:26 +00:00
Kim Alvefur
86617ab008 mod_smacks: Add future todo
The vision: All the queueing and counting and session replacement logic
in core, with mod_smacks only hooking this up to the XEP-0198 protocol.
2021-12-20 00:21:04 +01:00
Kim Alvefur
afb195c623 mod_smacks: Only include max resumption time when resumption is activated 2021-12-20 00:18:47 +01:00
Kim Alvefur
e813cdf91b core.modulemanager: Load mod_smacks on Components
Since it applies to s2s on Components as well as on VirtualHosts.
2021-12-20 00:16:22 +01:00
Kim Alvefur
121ce4fda7 mod_smacks: Fix typos 2021-12-20 00:06:47 +01:00
Kim Alvefur
1a089b68ec mod_smacks: Fix error on shutdown if loaded on Component 2021-12-20 00:04:32 +01:00
Kim Alvefur
94af122279 mod_smacks: Fix typo (thanks codespell) 2021-12-19 15:00:22 +01:00
Kim Alvefur
884cfdcaaf mod_smacks: Avoid log noise when a non-smacks session is closed 2021-12-19 14:59:27 +01:00
Kim Alvefur
af3aa001dc mod_smacks: Check if session was really sleeping before logging message
It could have been resumed without going into hibernation first, i.e.
when the client notices the disconnect before the server, or if it
switches networks etc.
2021-12-18 15:45:06 +01:00
Kim Alvefur
549ee95de5 mod_smacks: Fix traceback when bouncing unacked stanzas
Errors sent from handle_unacked_stanzas() should usually not be sent to
the session itself, but if one is, it should not be queued.
2021-12-18 13:58:33 +01:00
Kim Alvefur
eb65a8b39a mod_smacks: Fix duplicate sleep behavior when replacing a session
Fixes that an extra watchdog was set, leaking the previous one, which
went on to do behave as if the session times out.
2021-12-18 13:48:57 +01:00
Kim Alvefur
6c98ee025e mod_c2s: Fire pre-closing event regardless of connected state
With mod_smacks, a session can outlive the connection, so whether the
event is fired should not hinge on whether the session is connected or
not.

Helps mod_smacks remove some state.
2021-12-18 13:43:57 +01:00
Kim Alvefur
3fe05657e3 mod_smacks: Remove references to connection on hibernation
Still having the connection on the session may cause unintentional
behavior, such as the session being treated as if connected, even tho
the connection has been closed.
2021-12-18 12:50:53 +01:00
Kim Alvefur
585a1aa0c6 mod_smacks: Add more logging 2021-12-18 12:50:09 +01:00
Kim Alvefur
0c57e44fd3 mod_smacks: Remove useless delay in requesting ack on resumption
Was this the last place using the delay? Nice!
2021-12-17 17:22:27 +01:00
Kim Alvefur
11e5efc23f mod_smacks: Fix to not wait for acks from before a resumption
Otherwise it can get stuck waiting indefinitely for an ack that made it
notice the connection was stale.
2021-12-17 17:20:26 +01:00
Kim Alvefur
4cde54475b mod_smacks: Split log messages for when an old session exists in storage
Non-existent did not seem entirely accurate for this case
2021-12-17 16:29:17 +01:00
Kim Alvefur
2e47306cb6 mod_smacks: Bounce unacked stanzas on shutdown 2021-12-17 16:21:26 +01:00
Kim Alvefur
685974b5d3 mod_smacks: Preserve counter values on shutdown 2021-12-17 16:00:08 +01:00
Kim Alvefur
b5c32b6572 mod_smacks: Simplify access to local user sessions
Less to type if per chance the next commit also wants to access
sessions.
2021-12-17 15:59:06 +01:00
Kim Alvefur
e10845657c mod_smacks: Cancel hibernation when session is closed
To ensure that if a session is replaced after it has gone into
hibernation, it does not come back and cause trouble for the new session
(see previous commit).
2021-12-16 23:04:50 +01:00