Commit graph

96 commits

Author SHA1 Message Date
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
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
03c93e9e24 CHANGES: Mention mod_http_openmetrics 2021-11-24 23:35:55 +01:00
Kim Alvefur
5e86776f0c mod_smacks: Import from prosody-modules @ eb63890ae8fc 2021-11-16 21:15:22 +01:00
Kim Alvefur
b6d312547e mod_auth_cyrus: Remove (move to community modules)
mod_auth_ldap provides LDAP support without being tied to Cyrus
2021-10-17 17:07:29 +02:00
Kim Alvefur
711e09fb50 CHANGES: Add mod_auth_ldap 2021-10-05 18:34:38 +02:00
Jonas Schäfer
0d7d6b628c prosodyctl: Add external connectivity check based on observe.jabber.network
This uses the (experimental) observe.jabber.network API to
perform external connectivity checks. The idea is to complement
the checks prosodyctl can already do with a (nearly) complete
s2s/c2s handshake from a remote party to test the entire stack.
2020-05-06 18:20:33 +02:00
Kim Alvefur
702d8a9ab4 mod_s2s: Add a Direct TLS listener
Mirroring the c2s 'direct_tls'. Naming things is hard.

direct_tls_s2s_ports = { 5269+1 }
2021-08-10 20:55:43 +02:00
Kim Alvefur
6322b7c97e net.server_select: Deprecate and warn about it
To be removed in the future, but not right now. Give the log warning a
chance to prod anyone who might have network_backend="select" in their
config first.

There's also things built on Verse which uses server_select.lua, which
will need to be updated somehow.
2021-09-03 17:46:55 +02:00
Kim Alvefur
9eb707763c mod_mam: Suppress offline message broadcast for MAM clients
MattJ on 09:34:24
> Zash: I think as a first step, offline messages should not be sent to
> clients that request MAM

https://chat.modernxmpp.org/log/modernxmpp/2021-08-31#2021-08-31-8518a542bd283686
2021-08-31 11:38:09 +02:00
Kim Alvefur
360eda6cd3 Revert 926d53af9a7a: Restore DANE support
Previous commit adds a workaround, so this doesn't mutate global state
anymore, only per-connection 'extra' state as originally intended.
2021-07-18 21:57:24 +02:00
Kim Alvefur
14bc2f7e03 CHANGES: Add Direct TLS support
Since there is now support for SNI with per-host certificates as well as
support in `prosodyctl check dns`.

Previous "support" was just the 'legacy_ssl' option, which didn't have
much other supporting code.
2021-06-20 18:17:22 +02:00
Kim Alvefur
8277dab49e CHANGES: Add OpenMetrics changes to Statistics 2021-06-19 13:25:48 +02:00
Kim Alvefur
f36c48ffb0 mod_turn_external: Simple module to offer TURN(+STUN) via mod_external_services 2021-01-21 23:13:37 +01:00
Kim Alvefur
4395895fef core.modulemanager: Inherit mod_server_contact_info onto components #1270 2021-05-27 11:18:42 +02:00
Kim Alvefur
19746da12f core.statsmanager: Allow special "manual" value for statistics_interval
When set, no periodic statistics collection is done by
core.statsmanager, instead some module is expected to call collect()
when it suits. Obviously only one such module should be enabled.

Quoth jonas’
> correct way is to scrape the internal sources on each call to /metrics
> in the context of Prometheus

"manual" as opposed to "automatic", from the point of view of
statsmanager.
2021-04-06 23:25:15 +02:00
Kim Alvefur
3559d707bf net.resolvers.basic: Disable DANE for now, completely broken
Turns out 'extra' is, at least for mod_s2s, the same table for *all*
connections.
2021-03-03 20:48:54 +01:00
Kim Alvefur
63c92d0897 net.connect: Add DANE support
Disabled DANE by default, since it needs extra steps to be useful.  The
built-in DNS stub resolver does not support DNSSEC so having DANE
enabled by default only leads to an extra wasted DNS request.
2021-03-02 22:41:59 +01:00
Kim Alvefur
4e7f5bd396 CHANGES: Clarify what mod_mimicking does 2021-01-30 20:23:52 +01:00
Kim Alvefur
4be9b33741 mod_http_file_share: Let's write another XEP-0363 implementation
This variant is meant to improve upon mod_http_upload in some ways:

* Handle files much of arbitrary size efficiently
* Allow GET and PUT URLs to be different
* Remember Content-Type sent by client
* Avoid dependency on mod_http_files
* Built-in way to delegate storage to another httpd
2021-01-26 03:19:17 +01:00