Commit graph

13 commits

Author SHA1 Message Date
Matthew Wild
4f94d2425d util.adminstream: Fix traceback on double-close (fixes #1913)
In some circumstances, particularly with 'opportunistic_writes' and
'fatal_errors' enabled in the epoll backend, the connection may be closed
halfway through the session close process (because it contains debug logging,
which in the case of the watch:log() command, will trigger a write to the
socket).

The chosen fix is to cache session.conn in a local variable (we already did
this later on, but this pulls it up to the top of the function, which is
generally more correct anyway).
2025-03-31 16:25:09 +01:00
Matthew Wild
7a281ab905 util.adminstream: Expose session events (specifically "disconnected")
Currently there is no way to get this info and perform cleanup tasks.
2025-01-07 18:07:45 +00:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +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
7badf61246 mod_admin_socket: Comment on LuaSocket UNIX compat code
Ref #1717
2022-03-16 19:32:17 +01:00
Kim Alvefur
8e5fec3220 mod_admin_socket: Compat for luasocket prior to unix datagram support
The "socket.unix" module exported only a function before
aa1b8cc9bc
when datagram support was added.

Fixes #1717

Thanks rsc and lucas for reporting and testing
2022-03-15 10:48:46 +01:00
Jonas Schäfer
6671cc037e adminstream: fire disconnected event on lower layer disconnect
This may in theory cause multiple disconnect events for the
adminstream client, if the only code using that wasn't calling
os.exit right away.

Hence, this should be a good enough partial fix for #1671. It is
not a full fix, because the shell will only notice the disconnect
after one has hit enter in the input; until then, it is stuck in
a read() call to stdin and completely oblivious to the disconnect.
2021-12-21 21:23:01 +01:00
Kim Alvefur
15227ecbc6 util.adminstream: Prevent closure on read timeout 2020-06-18 17:54:28 +02:00
Kim Alvefur
a6c4ce73ef util.adminstream: Set a read timeout handler
So that net.server doesn't close the connection on inactivity.
2020-06-04 16:17:14 +02:00
Matthew Wild
56c159d7c9 util.adminstream: Fire event based on stanza name too for convenience 2020-06-03 22:26:48 +01:00
Matthew Wild
9aebf2d7db util.adminstream: Import net.server [luacheck] 2020-06-02 08:41:05 +01:00
Matthew Wild
78a8bfc31d util.prosodyctl.shell, util.adminstream: Move connection logic into adminstream for easier reuse 2020-06-02 08:28:39 +01:00
Matthew Wild
4c6992a00e mod_admin_socket, util.adminstream: New module to manage a local unix domain socket for admin functionality 2020-06-01 15:42:19 +01:00