Kim Alvefur
a4491e8bd9
mod_pep: Don't pass pubsub services across reloads
...
Ensures configuration is refreshed, releases some memory.
2021-11-04 00:33:58 +01:00
Kim Alvefur
577c21a269
net.server_epoll: Process all queued events from epoll before timers
...
Should call timers less frequently when many sockets are waiting for
processing. May help under heavy load.
Requested by Ge0rG
Backport of 2bcd84123eba requested by Roi
2021-10-21 15:59:16 +02:00
Kim Alvefur
7ba9ee013c
util.startup: Correctly point out unknown short param ( fixes #1691 )
2021-10-12 14:53:45 +02:00
Kim Alvefur
cdea694e0d
Merge wayward 0.11.10 tag commit
2021-10-01 00:21:49 +02:00
Kim Alvefur
24111569bb
net.server_epoll: Add a hard deadline on shutdown to extra-fix #1670
...
Should ensure shutdown even if sockets somehow take a very long to get closed.
2021-09-20 14:38:08 +02:00
Kim Alvefur
6d5ff6d2be
net.server_epoll: Close sockets added after shutdown signal ( fixes #1670 )
...
This should ensure that sockets get closed even if they are added after
the quit signal. Otherwise they may keep the server alive.
2021-09-20 14:42:18 +02:00
Kim Alvefur
3b2c39901a
core.certmanager: Disable DANE name checks (not needed for XMPP)
...
Pending https://github.com/brunoos/luasec/pull/179
Should not be done globally, but rather only for s2sout, but that would
have to be in mod_tls then.
2021-09-16 09:52:51 +02:00
Emmanuel Gil Peyrot
91172308d6
mod_bookmarks: Remove compatibility with 0.11
2022-01-04 23:16:02 +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
c43fbe25ec
util.dependencies: Enable warning about missing lua-unbound
...
Packages exists now.
2022-01-05 04:12:00 +01:00
Kim Alvefur
0736ecc63d
core.modulemanager: Remove compat for mod_console rename in 0.8
...
Should no longer be needed, especially since mod_admin_telnet morphed
into mod_admin_shell and mod_admin_socket
2022-01-05 04:04:45 +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
3cffb62920
mod_invites: Silence luacheck warning
2022-01-05 20:43:18 +01:00
Kim Alvefur
93578db96d
mod_invites: Import from prosdy-modules@5fc306239db3
2021-12-27 20:46:34 +01:00
Kim Alvefur
631d7b9003
util.stanza: Cover :find method in tests
...
This method is a bit complex so good to have some test coverage
2021-12-31 14:14:03 +01:00
Kim Alvefur
5ead4102de
util.stanza: Remove dead code
...
These cases are caught by `check_text(v, ..)` above. Those errors do not
contain the attribute however, which would have been nice.
2021-12-31 14:01:12 +01:00
Kim Alvefur
893de236f6
util.stanza: Increase test coverage to cover validation errors
2021-12-31 14:00:28 +01:00
Kim Alvefur
72be6f8229
util.stanza: Make type error message consistent with others
2021-12-31 13:52:11 +01:00
Kim Alvefur
64c385c9f7
mod_smacks: Log error to silence luacheck
2021-12-31 00:59:10 +01:00
Kim Alvefur
f017e61543
mod_smacks: Limit "old" session resumption counters
...
Doing this when creating a whole new session seems reasonable because it
is already expensive and this is when it may be adding to the old
session store, while a successful resumption should be plus-minus zero.
2021-12-31 00:48:38 +01:00
Kim Alvefur
88da8ef1a0
mod_smacks: Record timestamp with persisted counters
...
For future cleanup routine when people inevitably complain about this
data being stored there forever
2021-12-31 00:18:13 +01:00
Kim Alvefur
6710420289
util_datamapper: Fix typo in unit tests
2021-12-29 18:03:26 +01:00
Kim Alvefur
5168bd5c5f
util.datamapper: Add support for $ref pointers
...
Allows reuse of repetitive definitions in schemas.
2021-12-29 17:57:09 +01:00
Kim Alvefur
cd091bf95c
util.jsonschema: Add support for $ref pointers
2021-12-29 16:57:35 +01:00
Kim Alvefur
d8017615c7
util.jsonpointer: Resolve JSON Pointers per RFC 6901
2021-12-29 16:52:09 +01:00
Kim Alvefur
9b31c8175e
make: Add target for rebuilding from Teal sources
2021-12-29 16:51:13 +01:00
Kim Alvefur
e469d015af
net.resolvers: Report DNSSEC validation errors instead of NoError
...
Thanks Martin bringing this case to attention
2021-12-28 14:58:09 +01:00
Kim Alvefur
4261dc1d80
mod_auth_internal_hashed: Up iteration count to 10000 per XEP-0438
...
More security for less pain than switching to SCRAM-SHA-256
The XEP will likely be change to reference the RFC that will probably
come from draft-ietf-kitten-password-storage once it is ready, and then
we should update to follow that.
2021-12-26 16:51:04 +01:00
Kim Alvefur
c122d673e6
mod_auth_internal_hashed: Make SCRAM iteration count configurable
2021-12-26 16:37:50 +01:00
Kim Alvefur
28bd099515
mod_admin_shell: Log creation of incoming s2s connections during ping
...
The 's2s-created' fires just after accepting the TCP connection, before
the addresses are known, so this can have some false positives.
2021-12-27 17:04:33 +01:00
Jonas Schäfer
f53f452e47
mod_smacks: sprinkle some metrics on it
2021-12-27 16:16:53 +01:00
Kim Alvefur
079a39c216
openmetrics/histograms: improve code clarity
...
If buckets thresholds are to be taken as "less than or equal to", then
using the less than or equal to operator seems sensible.
2021-12-27 16:05:12 +01:00
Jonas Schäfer
569df0581e
openmetrics/histograms: fix incorrect condition for bucketing
...
The buckets thresholds are to be taken as "less than or equal to".
The condition as written in the code did only "less than", not
"less than or equal to". That's fixed now.
2021-12-26 22:32:00 +01:00
Kim Alvefur
257f52d826
mod_admin_shell: Print s2s related events while waiting for ping
...
Gives a better idea of what's taking time.
2021-12-26 16:26:36 +01:00
Matthew Wild
5a1aa107c3
util.xml: Use variable instead of constant for consistency (thanks Thijs)
2021-12-26 20:37:20 +00:00
Kim Alvefur
f343cf5ba0
core.certmanager: Add curveslist to 'old' Mozilla TLS preset
...
Unsure if this was overlooked before or a recent addition.
Reproduced the data from JSON file available. Would be nice to have a
tool that does that.
2021-12-26 00:05:16 +01:00
Kim Alvefur
5e4844806a
util.prosodyctl.check: Remove obsolete settings from known globals
2021-12-25 13:02:48 +01:00
Kim Alvefur
eaa1d6bed4
util.prosodyctl.check: Add some more obsolete settings
2021-12-25 13:00:23 +01:00
Kim Alvefur
18ef5ec4d8
mod_tombstones: Add some future TODOs
2021-12-23 15:22:47 +01:00
Kim Alvefur
7056bc0674
mod_tombstones: Add a very basic test case
2021-12-23 15:17:18 +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
ecab94165d
mod_smacks: Compact code using new stanza API
2021-12-22 22:13:03 +01:00
Kim Alvefur
6d8f1d56ed
mod_http: Clean up redirects handlers for wildcard on http module unload
...
These would previously be left behind. Probably mostly harmless except
for clogging up the `debug:events()` listing in the console.
2021-12-22 19:27:03 +01:00
Kim Alvefur
2f3b28380a
mod_smacks: Use more compact resumption tokens
...
UUID seems like insane overkill for something user-scoped and not
security-sensitive. All that is needed is to avoid conflicts among what
should be relatively long-lived sessions.
2021-12-22 18:47:45 +01:00
Kim Alvefur
b332a2aa42
util.id: Add a 'tiny' variant
...
Conversations uses this for its randomized resources. Presumably fine
and collision resistant enough when you have a few devices at most.
2021-12-02 00:13:23 +01:00
Kim Alvefur
a3ea469ed9
util.id: Adjust entropy levels, with rationales
...
Modules using ids for logging should not need the now pretty large
medium one.
2021-12-02 01:14:55 +01:00
Kim Alvefur
5797a3f65d
MUC: Switch ID algorithm for IQ relay ( fixes #1266 , #1435 )
2021-10-05 18:15:06 +02:00
Kim Alvefur
2798f91821
MUC: Add method for getting the occupant id salt to allow reuse
2021-10-05 18:13:51 +02:00
Kim Alvefur
1c904b2ed3
util.prosodyctl.cert: Copy SAN/wildcard certs only once
2021-12-22 18:34:11 +01:00