Commit graph

13194 commits

Author SHA1 Message Date
Kim Alvefur
a872f379dc editorconfig: Specify max line length to match luacheck settings 2023-07-15 10:25:10 +02:00
Kim Alvefur
b2c40bfe79 editorconfig: Explicitly specify preferred charset (UTF-8)
Really should be the default everywhere by now, but doesn't hurt to be
extra explicit
2023-07-15 10:22:49 +02:00
Kim Alvefur
4f8bb6ea67 editorconfig: Add link to format description 2023-07-15 10:22:37 +02:00
Kim Alvefur
84c161c278 mod_storage_sql: Remove completed TODO (testing UPSERT on PostgreSQL) 2023-07-12 22:51:37 +02: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
d03a9b2f7e mod_storage_internal: Implement efficient deletion of oldest archive items
Using the new shift function in datamanager, either the oldest items are
removed or all the later items are moved into a new file that replaces
the old.

Hidden behind a feature flag for now.
2023-07-12 15:03:24 +02:00
Kim Alvefur
33986e97b7 util.datamanager: Pad list writes to avoid crossing block boundaries
By padding items so that they do not cross block boundaries, it becomes
eaiser to delete whole blocks with fallocate() without cutting items
in half, improving efficiency of such operations.

Since list stores are used for message archives, where the most common
deletion operation would be of the oldest entires, at the top of the
file. With this, all blocks that contain items to be removed could be
deleted without needing to read, delete and write out the whole file.
2023-06-07 00:39:30 +02:00
Kim Alvefur
3346561d43 util.datamanager: Efficiently remove whole blocks to shift lists
Using the new pposix.remove_blocks() it should be very performant to
delete whole sections of a file, given a supporting file system.
2023-07-12 11:45:12 +02:00
Kim Alvefur
048b064fcd util.pposix: Add remove_blocks() for deleting parts of files
Allows implementing e.g. a FIFO

Will probably only work on some Linux file systems like ext4.
2023-06-07 05:07:03 +02:00
Kim Alvefur
50ae2083ca util.datamanager: Add way to efficiently remove first items in a list
Copying data without parsing it should be more performant than parsing
it serializing back.
2023-07-12 11:42:41 +02:00
Kim Alvefur
deecaafbfb util.datamanager: Fix indexing first item if not at the very start
If the first item does not start at position 0 then the index function
produces a phantom first entry covering position zero until where the
real first item starts. When using the index, this would make it either
appear as the first item was missing or cause an off-by-one issue with
remaining items.
2023-07-10 17:19:05 +02:00
Kim Alvefur
5ee4b4e8a6 util.datamanager: Reduce log level of left over debug messages to debug (thanks Trung)
These were mostly 'warn' to make them stand out from the debug noise
2023-07-12 10:24:28 +02:00
Kim Alvefur
96bc5fd439 util.datamanager: Fix missing separator in log line 2023-07-10 17:52:52 +02:00
Kim Alvefur
2b56e0473a Merge 0.12->trunk 2023-07-10 00:34:37 +02:00
Kim Alvefur
59f9a608fd core.certmanager: Update Mozilla TLS config to version 5.7
Ref https://github.com/mozilla/server-side-tls/issues/285
2023-07-09 21:18:47 +02:00
Kim Alvefur
c82f504f6a mod_pubsub: Send correct jid attribute in disco#items
Fixes use in PEP where the JID does not equal the bare domain.
2023-07-08 18:23:40 +02:00
Kim Alvefur
4e6ccdad96 mod_http_file_share: Put 'expires' back, thought it was unused
Removed in 536055476912 because it was not used anywhere else in the
file, but per the documentation it is meant to inform external upload
services of the expiry time of the upload itself.
2023-07-02 14:31:00 +02:00
Kim Alvefur
915ef3a222 util.cache: Pass cache itself to eviction callback
Simplifies access to the cache without moving code around a lot given
the currently common pattern of

	local some_cache = cache.new(size, function(k,v) end)
2023-06-30 22:01:55 +02:00
Kim Alvefur
29b6ed4f0a util.cache: Keep eviction candidate if callback resized to make room
Previously either the old or the new values would be rejected, even if
the cache was resized to allow more items.
2023-06-30 22:01:49 +02:00
Kim Alvefur
8ba5e50cc2 util.serialization: Teach Teal about the new "pretty" preset 2023-06-30 18:51:03 +02:00
Kim Alvefur
e9a9633aec util.jsonpointer: Change function prototype to allow anything
But anything that's not a table can't be resolved into, which could
happen in the middle, so eh.
2023-06-30 18:45:18 +02:00
Kim Alvefur
70e4b13d0e util.jsonpointer: Silence Teal warning
It seems to think 'table' never has array items, but we don't know that.
2023-06-30 15:02:26 +02:00
Matthew Wild
f7323ed6e4 core, plugins: Split prosody:user role into prosody:{guest,registered,member}
This gives us more granular control over different types of user account.
Accounts registered by IBR get assigned prosody:registered by default, while
accounts provisioned by an admin (e.g. via prosodyctl shell) will receive
prosody:member by default.
2023-06-29 15:36:13 +01:00
Matthew Wild
641f070a9d usermanager: Add create_user_with_role() method to atomically set initial role 2023-06-29 15:31:46 +01:00
Kim Alvefur
b6e5085b6a mod_http_file_share: Set slot token TTL so util.jwt validates expiry
Overrides the util.jwt default of 1h with the intended TTL of 10
minutes. Because util.jwt now has its own expiry checks, so the 'expiry'
field is no longer used and can thus be removed.
2023-06-28 17:17:20 +02:00
Kim Alvefur
a7bbeac47e prosodyctl: Add experimental way to reload specific modules directly
Mostly thinking out loud about how various actions may use the shell

This enables the following sequence of commands:

	prosodyctl install mod_example
	prosodyctl reload mod_example

which is simpler than

	prosodyctl shell module reload example
2023-06-25 17:34:13 +02:00
Kim Alvefur
960f406662 mod_http: Fix error if 'access_control_allow_origins' is set
Because it changes the type of the 'opt_origins' variable from util.set
to the internal _items table so next time an http app is added an error
"attempt to call a nil value (method 'empty')" is triggered.  The value
is not used anywhere else.

Noticed when reviewing uses of the '_items' set property.

Not reported by any users, implying this setting is rarely used.
2023-06-10 12:33:58 +02:00
Kim Alvefur
cbed7dfdf5 util.array: Expose new() on module table
For consistency with other utils.

Consistency is good.
2023-06-10 12:14:12 +02:00
Kim Alvefur
e4d5c15396 util.prosodyctl.check: Fix error where hostname can't be turned into A label
Where gethostname or tohostname returns an invalid name, e.g. containing
underscores or something, to_ascii would reject this and return nil,
which triggers an error in the dns lookup.

Reported by prova2 in the chat, for whom tohostname returned a long name
containing underscores.
2023-05-31 14:08:19 +02:00
Kim Alvefur
c468bd12c9 net.server: Handle loading from outside Prosody (e.g. Verse)
server_select only depending on LuaSocket generally makes it more
portable, so fall back to that if util.poll can't be found.
2023-05-20 20:44:20 +02:00
Kim Alvefur
af2cf5f188 renamening: Fix newly added imports to use the new namespace 2023-06-18 16:48:56 +02:00
Kim Alvefur
597f3c7f0a util.jsonschema: Remove wrapper function
This was to silence some Teal warning that seems to have gone away.
2023-06-17 17:19:40 +02:00
Kim Alvefur
f0242ae57c util.jsonschema: Silence Teal warnings about utf8 library
Teal worries that we redefine the global.

Also that the fallback was missing type information.
2023-06-17 17:17:44 +02:00
Kim Alvefur
c8b5d7e99a util.jsonschema: Silence Teal warnings about counting items in tables
Teal thinks that these are key-value maps which are always of length
zero, but that is not the case.
2023-06-17 17:12:54 +02:00
Kim Alvefur
20afe7d20d mod_s2s: Add event where resolver for s2sout can be tweaked
Could be used to implement custom connection methods (c.f. mod_onions)
without needing to duplicate the rest of route_to_new_session().

Adds a feature to enable detection since it can be difficult to detect
support for an event otherwise.
2022-08-18 03:26:32 +02:00
Kim Alvefur
8ef7bc2cf4 mod_csi_simple: Disable revert-to-inactive timer when going to active mode
This timer shouldn't kick in in the middle of active mode.
2023-05-01 15:10:32 +02:00
Kim Alvefur
9aecb5cd19 mod_csi_simple: Clear delayed active mode timer on disable
It should not be there afterwards. Noticed that it seems to fire some
time after resumption claiming that the queue size is nil, implying
that it may hold a reference to an expired session somehow.
2023-05-01 14:52:38 +02:00
Kim Alvefur
57c3771614 util.error: Fix error on conversion of invalid error stanza, fix #1805
Error stanzas should have an <error> element, but if you pass a
stanza without one to util.error.from_stanza() it triggers an attempt to
index a nil value, which this patch avoids.

In the conditional, it should be safe to assume error_tag is non-nil
since condition can't have those values then.
2023-04-19 11:32:53 +02:00
Kim Alvefur
506ee45da2 mod_admin_shell: Fix display of remote cert status when expired etc
Looks like autocomplete unhelpfully capitalized this word, but it's
lowercase where it is set in mod_s2s_auth_certs
2023-04-06 17:09:03 +02:00
Matthew Wild
6d8647b333 prosodyctl: Fix using variable content in a format string
This broke if the error message contained a format specified such as '%s'.
2023-04-07 15:54:59 +01:00
Kim Alvefur
d840f27320 mod_smacks: Replace existing watchdog when starting hibernation
There shouldn't be one here but if there is, for some reason, it's
better to close it than have it around to wake up and possibly try to
destroy the session.
2023-04-02 10:40:48 +02:00
Kim Alvefur
3a3d9c6c2c mod_smacks: Fix stray watchdog closing sessions
Unsure exactly how this happens, but sometimes a watchdog appears to
close a session that isn't hibernating, or hasn't hibernating long
enough.
2023-04-02 10:37:44 +02:00
Kim Alvefur
0890b20fbf mod_http: Unhook CORS handlers only if active (fixes #1801) 2023-03-05 15:45:01 +01:00
Kim Alvefur
9c49ca70fd util.prosodyctl.check: Suggest 'http_cors_override' instead of older CORS settings
The cross_domain_* settings were added here prior to http_cors_override
being added back in 17d87fb2312a, so for a time there was no
replacement, but now there is.
2023-02-22 22:27:42 +01:00
Matthew Wild
631a4a3034 Added tag 0.12.3 for changeset 0598d822614f 2023-02-21 10:06:54 +00:00
Matthew Wild
4dcabd36ce mod_websocket: Fire pre-session-close event (fixes #1800)
This event was added in a7c183bb4e64 and is required to make mod_smacks know
that a session was intentionally closed and shouldn't be hibernated (see
fcea4d9e7502).

Because this was missing from mod_websocket's session.close(), mod_smacks
would always attempt to hibernate websocket sessions even if they closed
cleanly.

That mod_websocket has its own copy of session.close() is something to fix
another day (probably not in the stable branch). So for now this commit makes
the minimal change to get things working again.

Thanks to Damian and the Jitsi team for reporting.
2023-02-20 18:10:15 +00:00
Matthew Wild
87ee5a2300 net.http.parser: Fix off-by-one error in chunk parser 2023-02-17 17:01:19 +00:00
Kim Alvefur
67ea0ee50e mod_admin_socket: Return error on unhandled input to prevent apparent freeze
When mod_admin_socket is loaded without mod_admin_shell, attempt to use
`prosodyctl shell` will appear to freeze after any input, since no
response is returned.
2023-02-16 17:20:09 +01:00
Matthew Wild
bc1e51eb83 net.http.server: Add new API to get HTTP request from a connection
This information is sometimes necessary in the context where we have a
connection that we know (or believe to be) associated with an incoming HTTP
request.

For example, it can be used to retrieve the IP address of a request (which may
differ from the IP address of the connection, due to X-Forwarded-For and co).

Thanks to the Jitsi team for highlighting this gap in the API.
2023-02-16 15:59:26 +00:00