Commit graph

12948 commits

Author SHA1 Message Date
Matthew Wild
c368ddc007 Merge 0.12->trunk 2023-02-21 13:30:32 +00:00
Matthew Wild
631a4a3034 Added tag 0.12.3 for changeset 0598d822614f 2023-02-21 10:06:54 +00:00
Matthew Wild
a3d7c77607 Merge 0.12->trunk 2023-02-20 18:10:36 +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
Kim Alvefur
6ce26b1c94 MUC: Add Occupant API methods to Teal spec 2023-02-20 18:16:12 +01:00
Kim Alvefur
bac012d675 MUC: Add Teal description of muc.lib functions 2023-02-20 15:11:29 +01:00
Kim Alvefur
a35dac3a80 MUC: Start on a Teal description of MUC rooms
Started as part of a documentation project for the MUC API
2023-02-20 15:08:06 +01:00
Matthew Wild
ff51890910 Merge 0.12->trunk 2023-02-17 17:02:41 +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
02b01c4826 Merge 0.12->trunk 2023-02-16 20:15:39 +01: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
424a334450 Merge 0.12->trunk 2023-02-16 16:00:07 +00: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
Kim Alvefur
bf35a39a15 util.poll: Include unistd.h only for epoll
This defines close(), which is only used with epoll, hence we don't need
to include it when building in poll or select mode.
2023-02-10 00:37:05 +01:00
Matthew Wild
fbfe255e12 Merge 0.12->trunk 2023-02-09 22:58:01 +00:00
Matthew Wild
0fd88a07a4 net.http.parser: Improve handling of responses without content-length
This ensures that we support responses without a content-length header, and
allow streaming them through the streaming handler interface. An example of
such a response would be Server-Sent Events streams.
2023-02-09 22:57:32 +00:00
Matthew Wild
28e3b19ca1 net.http: Add missing log parameter 2023-02-09 22:37:54 +00:00
Matthew Wild
8bc31437bc Merge 0.12->trunk 2023-02-09 22:34:05 +00:00
Matthew Wild
a4556fc67a sessionmanager: Improve logging around session destruction 2023-02-09 15:09:03 +00:00
Kim Alvefur
1ea488deee util.crypto: Preemptively silence 'strict-prototypes' warning
With `gcc-12 -Wstrict-prototypes` the following warning is shown:

crypto.c:43:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
   43 | static BIO* new_memory_BIO() {
      |             ^~~~~~~~~~~~~~
2023-01-31 16:27:55 +01:00
Kim Alvefur
3605137656 mod_storage_sql: Remove module status on unknown 'debug' level
Expected this to be translated to 'core', but it logs an error instead.
See previous commit.
2023-01-31 07:52:33 +01:00
Kim Alvefur
d90a094949 core.moduleapi: Fix passing variable to logging 2023-01-31 07:48:21 +01:00
Kim Alvefur
89f652ff0b mod_storage_sql: Silence luacheck warning 2023-01-30 00:40:47 +01:00
Kim Alvefur
0147b972e0 mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module

Thanks pfak
2023-01-30 00:38:26 +01:00
Kim Alvefur
dc958f1e40 mod_admin_shell: Match substring in muc:affiliations() like muc:occupants()
Maybe one day we'll get consistent filtering semantics everywhere.
2023-01-30 00:14:50 +01:00
Kim Alvefur
1b71a53fb7 mod_admin_shell: Sort MUC users by relation and JID
Suggested by MattJ, our resident UI expert :)
2023-01-29 21:37:13 +01:00
Kim Alvefur
5c676bab58 mod_admin_shell: Make Role and Affiliation columns the same width for aesthetics
The length of the title "Affiliation" made them both close enough that
it looked off.
2023-01-29 18:57:28 +01:00
Kim Alvefur
6e120ad485 mod_admin_shell: Use tables to present MUC users
Tables are awesome!
2023-01-29 18:31:25 +01:00
Kim Alvefur
d5b5b5ba86 mod_admin_shell: Factor out room retrieval into common function
Justification: See diffstat
2023-01-29 17:55:56 +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
9228a851bc Merge 0.12->trunk 2023-01-22 15:43:44 +01:00
Kim Alvefur
435e008568 util.startup: Close state on exit to ensure GC finalizers are called
Ensures a last round of garbage collection and that finalizers are
called. Fixes things like proper closing of SQLite3 state.

There are more calls to os.exit() but most of them exit with an error or
in a case where a final GC sweep might not matter as much.

It would be nice if this was the default.

Calling util.statup.exit() everywhere may be sensible, but would be more
involved, requiring imports everywhere.
2023-01-22 14:45:47 +01:00
Kim Alvefur
7c302e9c4c util.prosodyctl.shell: Close state on exit to fix saving shell history
This ensures a last round of garbage collection and finalizers, which
should include flushing the readline history file.

Test procedure:
```
$ ./prosodyctl shell
prosody> s2s:show() -- any command that is not the last in history
... output
prosody> bye
$ ./prosodyctl shell
prosody> ^P
```

After this, the shell prompt should contain the last command from before
the "bye". Before this patch, recent history is gone most of the time.
2023-01-22 14:42:07 +01:00
Kim Alvefur
27d63ff731 mod_muc_mam: Use higher precision timestamps
See also 781772c8b6d9
2023-01-21 17:24:45 +01:00
Kim Alvefur
dbbde4a0f0 Merge 0.12->trunk 2023-01-21 17:18:16 +01:00
Kim Alvefur
81fd03356f mod_muc_mam: Copy "include total" behavior from mod_mam
Not sure why this was missing from MUC MAM, it already had some of the
code for dealing with it.
2023-01-21 17:14:55 +01:00
Kim Alvefur
d0321442c9 mod_muc_mam: Add mam#extended form fields #1796 (Thanks Rain)
Oversight in cabb022f31c0
2023-01-21 17:09:22 +01:00
Kim Alvefur
4830568435 mod_mam,mod_muc_mam: Minimize differences (reorder, copy some comments)
Should have no functional difference, but makes it easier keeping
mod_mam and mod_muc_mam in sync.
2023-01-21 16:54:43 +01:00
Kim Alvefur
2a5953f569 util.dnsregistry: Remove unintentional 'Unassigned' record 2023-01-20 23:40:54 +01:00
Kim Alvefur
45579e5609 tools/dnsregistry: Fix to ignore unassigned entries 2023-01-20 23:39:39 +01:00
Kim Alvefur
0aae39f660 MUC: Add note about non-existant room method 2023-01-20 19:47:00 +01:00
Kim Alvefur
2e44f8260b util.struct: Fix typo in comment 2023-01-20 18:19:34 +01:00
Kim Alvefur
b15a8e1360 mod_admin_socket: Fix typo in comments
Introduced in 6966026262f4
2023-01-20 18:16:10 +01:00
Kim Alvefur
d616d70f3c core.sessionmanager: Mark session as destroyed to prevent reentry
If it reaches this point, then the session will be most definitely be
destroyed, so try to prevent destroy_session() from being called again.
2023-01-19 21:40:09 +01:00
Kim Alvefur
b89b219406 core.sessionmanager: Skip log when (not) destroying destroyed sessions
On regular disconnects, </stream> is sent, then
sessionmanager.destroy_session() is called, then
sessionmanager.destroy_session() is called again when the TCP connection
is closed, from ondisconnect in mod_c2s.

It is a bit annoying and doesn't really tell you much.
2023-01-19 21:38:14 +01:00
Kim Alvefur
762e56920b Merge 0.12->trunk 2023-01-19 21:14:31 +01:00
Kim Alvefur
67b6440d9b mod_smacks: Log something when hibernation starts
Will hopefully save future confusion about sessions being destroyed when
they are in fact not.
2023-01-19 20:59:28 +01:00
Kim Alvefur
66d38cb199 luacheck: Remove long gone mod_storage_sql1 from excludes
No point not checking a file that doesn't exist
2023-01-19 17:29:40 +01:00
Kim Alvefur
c9fb0c2cab prosodyctl check dns: Check for Direct TLS SRV records even if not configured (fix #1793)
Existing such records may cause timeouts or errors in clients and
servers trying to connect, despite prosodyctl check saying all is well
2023-01-14 05:47:47 +01:00