Commit graph

116 commits

Author SHA1 Message Date
Kim Alvefur
502b8d3998 util.startup: Support systemd Type=notify service type
This lets Prosody report its lifecycle status to systemd, so it knows
when Prosody has completed its startup, when it's reloading and shutting
down.

Both Type=notify and Type=notify-reload is supported

Example systemd .service configuration snippet:

[Service]
Type=notify
2024-04-04 19:00:27 +02: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
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
637025fc78 CHANGES: Mention new prosodyctl shell method behavior 2023-12-09 16:41:37 +01:00
Matthew Wild
1b3971dd62 CHANGES: Document some of the recent changes and features in trunk 2023-12-08 15:46:32 +00: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
6c0ba09487 mod_s2s_auth_dane_in: DANE support for s2sin
Complements the DANE support for outgoing connections included in
net.connect
2023-11-01 22:49:56 +01:00
Kim Alvefur
7b882e4405 mod_cron: Make task frequencies configurable in overly generic manner
Requested feature for many modules, notably MAM and file sharing.
2023-10-22 18:58:02 +02:00
Kim Alvefur
ade700b2d6 CHANGES: Mention 'tls-server-end-point' 2023-10-22 19:00:24 +02:00
Kim Alvefur
df4bde023b mod_http_file_share: Switch to the new authz API (BC)
Behavior change: It becomes up to the authorization module whether to
allow requests. The default, mod_authz_internal, will allow users on the
*parent* host only, breaking use by some components.

Remaining question is whether to deprecate the `http_file_share_access`
setting or leave as a way to complement/bypass access control?
2023-09-16 14:23:08 +02:00
Kim Alvefur
210f608086 moduleapi: Add :get_option_integer()
Many options in Prosody that are treated as numbers don't make sense as
floats, e.g. sizes and limits measured in bytes.

Simplified implementation based on an earlier attempt dating back to 2020
2023-07-17 00:09:41 +02:00
Kim Alvefur
3c4dc9a754 core.moduleapi: Add :get_option_period for parsing time intervals
E.g. for use in mod_mam and others that take an amount of time before
some (usually cleanup) action is taken.
2023-07-16 19:49:12 +02:00
Kim Alvefur
924064a30a core.moduleapi: Allow specifying an acceptable range for number options 2021-10-05 15:36:38 +02:00
Kim Alvefur
c4abd68e92 moduleapi: Add enum config option method
For when a setting has a few fixed values it can take
2021-01-16 20:40:14 +01:00
Kim Alvefur
1e8743a681 CHANGES: Move line about LuaSQLite3 to Storage section 2023-07-12 22:50:24 +02:00
Kim Alvefur
64c2ec4835 CHANGES: Mention performance improvements for internal archives
Specifically the index and more efficient delete.

These are however still in need of testing.
2023-07-12 22:48:10 +02:00
Kim Alvefur
16381e754d mod_http: Make RFC 7239 Forwarded opt-in for now to be safe
Supporting both methods at the same time may open to spoofing attacks,
whereby a client sends a Forwarded header that is not stripped by a
reverse proxy, leading Prosody to use that instead of the X-Forwarded-*
headers actually sent by the proxy.

By only supporting one at a time, it can be configured to match what the
proxy uses.

Disabled by default since implementations are sparse and X-Forwarded-*
are everywhere.
2023-06-03 21:53:20 +02:00
Kim Alvefur
8c92b32b7a mod_http: Use RFC 7239 Forwarded header to find original client IP
Prefer over X-Forwarded-* since it has an actual specification.

Main practical difference is that Forwarded may carry more properties
than only the IP address since it is a structured header.

Since we parse it into an array, it is easier to do the logical thing
and iterate backwards trough proxies until an untrusted one is
encountered. Compare the handling of X-Forwarded-For.

The 'secure' field now accounts for the full chain of proxies, which
must be secure all the way to be considered secure.
2023-06-03 17:10:04 +02:00
Kim Alvefur
738df041ac CHANGES: The Great Rename-ning completed! #1223 2023-03-17 19:38:39 +01:00
Matthew Wild
8c25001712 CHANGES: Add keyval+ 2023-03-21 18:59:19 +00:00
Kim Alvefur
087ffc7f32 CHANGES: Mention new ability to disable and enable user accounts 2023-02-23 18:11:15 +01:00
Kim Alvefur
08a730746c mod_admin_shell: Add muc:affiliations(room) command to list memberships
Easier than going trough muc:room():each_affiliation() since you have to
do fiddly things to reach the print() function.
2023-01-29 17:53:21 +01:00
Kim Alvefur
2b0584d2ee mod_admin_shell: Add muc:occupants(room) command to list occupants
Easier than going trough muc:room():each_occupant() since you have to do
fiddly things to reach the print() function.
2023-01-29 17:41:08 +01:00
Kim Alvefur
4c14111c76 mod_storage_sql: Support SQLite3 without LuaDBI 2023-01-19 16:56:12 +01:00
Kim Alvefur
2269035c0d mod_blocklist: Add option 'migrate_legacy_blocking' to disable migration from mod_privacy
Tiny performance improvement for new users by skipping this check. Most
servers should have gone trough the migration for all active users long
ago.

As a suitable first step of phasing out this code, we make it possible
to disable it first. Later it can be disabled by default, before finally
the code is deleted.
2022-10-17 15:20:06 +02:00
Matthew Wild
dfd1e396bb CHANGES: Update with MUC permission changes 2022-09-29 12:57:05 +01:00
Matthew Wild
227f6c0336 CHANGES: Add role auth 2022-08-22 13:03:10 +01:00
Kim Alvefur
2294d8b8e0 mod_time: Remove obsolete XEP-0090 support
Deprecated even before Prosody even started, obsolete for over a decade.
2022-08-15 16:35:14 +02:00
Kim Alvefur
c85c18b03a util.datetime: Add support for sub-second precision timestamps
Lua since 5.3 raises a fuss when time functions are handed a number with
a fractional part and the underlying C functions are all based on
integer seconds without support for more precision.
2022-08-14 16:57:31 +02:00
Kim Alvefur
8db7cdc713 mod_saslauth: Implement RFC 9266 'tls-exporter' channel binding (#1760)
Brings back SCRAM-SHA-*-PLUS from its hiatus brought on by the earlier
channel binding method being undefined for TLS 1.3, and the increasing
deployment of TLS 1.3.

See 1bfd238e05ad and #1542

Requires future version of LuaSec, once support for this key material
export method is merged.

See https://github.com/brunoos/luasec/pull/187
2022-06-01 15:06:59 +02:00
Kim Alvefur
c8a49ad144 CHANGES: Lua 5.1 support removed (closes #1600) 2022-07-05 14:59:47 +02:00
Kim Alvefur
2048a7a762 mod_saslauth: Advertise channel bindings via XEP-0440
This is useful when there's more than one channel binding in
circulation, since perhaps there will be varying support for them.
2020-12-06 22:04:43 +01:00
Kim Alvefur
d33b858436 net.server_epoll: Add option to defer accept() until data available
This is a Linux(?) socket option that delays the accept signal until
there is data available to read. E.g. with HTTP this might mean that a
whole request can be handled without going back trough another turn of
the main loop, and an initial client <stream> can be responded to.

This may have effects on latency and resource use, as the server does
not need to allocate resources until really needed.
2022-05-15 22:41:17 +02:00
Kim Alvefur
575b997d1d net.server_epoll: Add support for TCP Fast Open
Requires a patch to LuaSocket adding this socket option,
https://github.com/lunarmodules/luasocket/pull/378

sysctl tweaks
net.ipv4.tcp_fastopen=3
net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0
net.ipv4.tcp_fastopen_key=$(</proc/sys/kernel/random/uuid)

Disabled by default since it an advanced performance tweak unlikely to
be needed by most servers.
2021-07-08 12:29:50 +02:00
Matthew Wild
5d0ae73a2a CHANGES: Update to add new changes in trunk 2022-03-19 11:47:52 +00:00
Matthew Wild
df4ba58b9f CHANGES: Update to reflect 0.12.0 release 2022-03-19 11:41:05 +00:00
Matthew Wild
0e1111f892 CHANGES: Mention STUN/TURN support in 'prosodyctl check' 2022-03-05 14:46:57 +00: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
6207ed871c CHANGES: Mention graceful shutdown 2022-02-18 23:20:24 +01:00
Matthew Wild
067a0ad4d8 usermanager, mod_saslauth: Default to internal_hashed if no auth module specified
The default config was updated in this way long ago, but if no option was
present in the config, Prosody would load internal_plain.

This change can result in changes (for the better) for people using very old
configuration files lacking an 'authentication' setting.
2022-02-10 19:54:14 +00:00
Kim Alvefur
73d1bb1218 various: Require encryption by default for real
These options have been specified (and enabled) in the default config file for
a long time. However if unspecified in the config, they were not enabled. Now
they are.

This may result in a change of behaviour for people using very old config
files that lack the require_encryption options. But that's what we want.
2021-12-25 16:23:40 +01:00
Kim Alvefur
268dfa38c0 mod_s2s: Enable outgoing Direct TLS connections
Makes it faster by cutting out the roundtrips involved in <starttls/>,
at the cost of making an additional SRV lookup.

Since we already ignore a missing <starttls/> offer and try anyway there
is not much difference in security. The fact that XMPP is used and the
hostnames involved might still be visible until the future Encrypted
ClientHello extension allows hiding those too.
2022-01-21 17:59:19 +01:00
Kim Alvefur
b187489802 mod_http: Limit unencrypted http port (5280) to loopback by default
Since accessing this port directly over the wider Internet is unlikely
to intentional anymore.  Most uses will likely be by reverse proxies, by
mistake or because of trouble configuring HTTPS.

Blocking mistaken uses is just a good thing, letting users send
potentially private things unencrypted tends to be Strongly Discouraged
these days.

Many reverse proxy setups operate over loopback, so listening there
instead of all interfaces is a net improvement.

Improved automatic certificate location and SNI support has mostly
eliminated the need for manual certificate configuration so HTTPS should
Just Work once certificates have been provided.

For local testing during development, connecting over loopback is likely
fine as well. When really needed, `http_interfaces` can still be set.

Suggested by Link Mauve
2022-01-15 15:13:41 +01:00
Emmanuel Gil Peyrot
be16e27957 mod_bookmarks: Import mod_bookmarks2 from prosody-modules @ ad7767a9f3ea 2022-01-04 23:04:14 +01:00
Kim Alvefur
1385404fee mod_invites_adhoc: Import from prosody-modules@5001104f0275 2022-01-05 04:37:14 +01:00
Kim Alvefur
40c2fa85d2 mod_invites_register: Import from prosody-modules@797b51043767 2021-12-29 00:12:26 +01:00
Kim Alvefur
93578db96d mod_invites: Import from prosdy-modules@5fc306239db3 2021-12-27 20:46:34 +01:00
Kim Alvefur
146709a2dd mod_tombstones: Remember deleted accounts #1307
Presence subscriptions are normally revoked on account deletion, which
informs the contact. Sometimes this notification gets lost e.g. due to
s2s problems. The accounts JID may also be present e.g. in MUC
affiliations, chat group member lists, pubsub subscriptions or other
systems. These may grant privileges which would fall to someone who
creates the same account again, which this module is meant to prevent.
2021-12-23 14:08:20 +01:00
Kim Alvefur
d2ff803262 core.certmanager: Presets based on Mozilla SSL Configuration Generator
ssl_preset = "modern"
2019-12-22 02:25:37 +01:00