Matthew Wild
8eadf174b4
net.stun: tests: Remove stray print() from debugging
2022-03-04 16:46:47 +00:00
Matthew Wild
b47c7951d5
Merge config-updates+check-turn from timber
2022-03-04 16:33:41 +00:00
Matthew Wild
a6265e45a0
net.stun: Add tests for serialization/deserialization
2022-03-04 16:13:05 +00:00
Kim Alvefur
7579bee6bb
net.stun: Use util.bitcompat to deal with bit module variances across Lua versions
2022-03-04 16:58:28 +01:00
Kim Alvefur
1f257ecbb4
net.stun: Use util.strbitop
...
Improves performance since the whole procedure is done in C
2022-03-04 16:55:32 +01:00
Matthew Wild
b6bf4788aa
prosodyctl: check dns: Allow admin to specify undiscoverable external IPs in config
2022-03-02 16:12:28 +00:00
Matthew Wild
79d9ce56ac
prosodyctl: check dns: List discovered addresses for diagnostic purposes
...
It is very common to get the "unknown address" warning with this command, but
people do not always understand it, or know how to debug it. Now we clearly
show the addresses that prosodyctl discovered.
2022-03-02 16:02:42 +00:00
Matthew Wild
7198c65a15
util.prosodyctl: check: warn about unreferenced components, suggest disco_items
2022-03-02 15:45:24 +00:00
Matthew Wild
0fe2f4a527
util.prosodyctl: Warn about enabled public registration in 'check config'
2022-03-02 15:22:12 +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
04aa101da3
util.poll: Expose API (epoll or select) used
...
Could he handy to know for debugging or decisions
2022-02-27 14:36:43 +01:00
Kim Alvefur
22d734e305
util.poll: Restructure to make adding additional system APIs easier
2022-02-23 20:30:22 +01:00
Kim Alvefur
7f254b0e72
make: Split up install targets to allow different subset
...
The prosody-trunk nightly packages currently use the Debian dh-lua
framework to install core/, net/ and util/ into Lua-versioned directory
trees, while plugins and executables should still be installed like
before.
2022-02-13 16:53:56 +01:00
Kim Alvefur
c460117e3c
core.portmanager: Fix traceback on attempt to get non-existent service
...
If there's no such interface:port then `data` is nil and `data.service`
errors.
2022-02-22 13:41:05 +01:00
Kim Alvefur
36512eca29
mod_c2s,mod_s2s: Fix error on shutdown (Thanks Martin)
...
Since there are two calls to done() that can happen, if the timing is
right (or wrong) both can happen, which previously triggered an error.
2022-02-22 14:17:27 +01:00
Kim Alvefur
ac06985604
util.async: Optionally allow too many 'done' callbacks
...
Sometimes, like in mod_c2s and mod_s2s during shutdown, all you want is
to wait for the first done() and not complicate things.
2022-02-22 14:17:10 +01:00
Kim Alvefur
1d20ec63e6
mod_c2s,mod_s2s: Wrap callback to improve tracebacks
...
Should make traces point here instead of timer dispatch, making
debugging easier
2022-02-22 12:35:31 +01:00
Kim Alvefur
e725335ed3
mod_carbons: Allow plugging into decision of whether to carbon-copy
...
Similar procedure as mod_csi_simple and mod_mam
2022-02-21 11:24:58 +01:00
Kim Alvefur
58b97fd7af
mod_mam: Fix a comment
...
This is the noop that gets replaced later
2021-12-11 18:01:04 +01:00
Kim Alvefur
84ef8a73eb
mod_mam: Allow plugging into archive decision
...
Similar procedure as mod_csi_simple
2021-12-10 22:37:32 +01:00
Kim Alvefur
dd1e42f499
core.certmanager: Ensure key exists for fullchain
...
Since 5cd075ed4fd3 any file matching "fullchain" would be considered for
use.
Dehydrated stores fullchain certs in e.g, fullchain-1641171024.pem and a
symlink fullchain.pem pointing at the latest one. However the current
rule for finding a corresponding private key would try
privkey-1641171024.pem in the same directory, which may not exist.
2022-02-21 08:54:39 +01:00
Kim Alvefur
0e6391e736
mod_admin_shell: Use a table to show help sections
...
Because tables make everything better and more readable!
2022-02-20 00:24:18 +01:00
Kim Alvefur
6207ed871c
CHANGES: Mention graceful shutdown
2022-02-18 23:20:24 +01:00
Kim Alvefur
b70a61be4c
mod_c2s: Ignore unused event payload [luacheck]
2022-02-18 23:13:01 +01:00
Kim Alvefur
a8f4892fe3
mod_c2s,mod_s2s: Wait for sessions to close before proceeding with shutdown steps
...
Ensures unavailable presence and other outgoing stanzas are sent.
Waiting for c2s sessions to close first before proceeding to disable and
close s2s ensures that unavailable presence can go out, even if it
requires dialback to complete first.
2022-02-17 03:49:47 +01:00
Kim Alvefur
13dc49d1a7
mod_c2s: Close ports in a separate, earlier event from closing sessions
...
Lets other things step in and do things while c2s ports are closed, e.g.
mod_smacks, or other modules with port handlers that forward to c2s.
2022-02-18 14:25:22 +01:00
Kim Alvefur
14a7fdb2a8
mod_s2s: Disable creation of new outgoing connections during shutdown
2022-02-11 21:41:04 +01:00
Kim Alvefur
f56aaf1ba1
mod_c2s,mod_s2s: Disable and close port listeners before closing sessions
...
This ensures no new clients can start connecting during shutdown
2022-02-11 21:36:53 +01:00
Kim Alvefur
89f110bbf2
mod_posix: Run signal handlers in the startup thread
2021-10-06 14:50:47 +02:00
Kim Alvefur
aa20355fa2
prosody: Expose main thread on the 'prosody' global
...
To allow running things in it.
2021-10-06 14:49:26 +02:00
Kim Alvefur
27943c671c
util.bit53: Add left- and right shift operations
...
While not used by anything in Prosody, it is known to be used by some
3rd party modules.
2021-06-28 03:56:45 +02:00
Matthew Wild
e01f2cf25f
util.prosodyctl: check turn: New command to verify STUN/TURN service is operational
2022-03-04 15:28:44 +00:00
Matthew Wild
5cfe0d220d
net.stun: New library that implements STUN/TURN parsing/serialization
2022-03-04 15:23:32 +00:00
Matthew Wild
ab835fed13
util.hex: Deprecate to/from in favour of encode/decode, for consistency!
2022-03-04 15:22:45 +00:00
Matthew Wild
fe56effa55
util.struct: Import Roberto 'struct' library v0.3
...
Downloaded from http://www.inf.puc-rio.br/~roberto/struct/
This is for compatibility with Lua 5.2 (and 5.1). Eventually we can replace
this with string.pack/string.unpack which are available in 5.3+.
2022-03-04 15:03:02 +00:00
Matthew Wild
09bdd81659
COPYING: An overdue update. Also add some clarity about third-party code.
2022-03-04 15:00:30 +00:00
Matthew Wild
0b44cfec12
prosody.cfg.lua.dist: Remove comment about mod_*.lua above modules_enabled
...
This is a very old statement, but people generally don't need to check for the
files, and shouldn't be encouraged to put them in Prosody's source dir. The
installer will be the way forward for most people, and hg for the rest.
Manually moving files into the right place is not something most users should
be doing.
2022-03-03 10:24:59 +00:00
Matthew Wild
ab4b25e28f
prosody.cfg.lua.dist: Fix plugin_paths description (thanks Zash)
2022-03-03 10:23:10 +00:00
Matthew Wild
a4d57c4fc7
prosody.cfg.lua.dist: Add comments explaining the individual TURN options
2022-03-02 16:53:52 +00:00
Matthew Wild
ebf9f9d157
prosody.cfg.lua.dist: Improved descriptions for a number of modules
2022-03-02 15:20:21 +00:00
Matthew Wild
855f8db6ad
prosody.cfg.lua.dist: Alphabetical ordering of modules within each section
2022-03-02 14:32:32 +00:00
Matthew Wild
55dd856a50
prosody.cfg.lua.dist: Improve mod_mam description to indicate its purpose
2022-03-02 14:32:02 +00:00
Matthew Wild
4102ef8e05
prosody.cfg.lua.dist: Remove mod_admin_telnet
...
mod_admin_shell should preferably be used instead
2022-03-02 14:27:28 +00:00
Matthew Wild
eda989030a
prosody.cfg.lua.dist: Reword plugin_paths to de-emphasize Prosody's source dir
...
The previous wording may contribute to people trying to install custom modules
to Prosody's source directory instead of adding to plugin_paths.
2022-03-02 14:27:05 +00:00
Matthew Wild
1990010e21
prosody.cfg.lua.dist: Remove network_backend option
...
The only sensible option for most people these days is "epoll". The option is
still supported, but it should only be needed by packagers for specific platforms
(e.g. BSD may choose libevent for kqueue) or other special cases.
2022-03-02 14:22:02 +00:00
Kim Alvefur
09f6d8f21d
prosody.cfg.lua.dist: Remove example certificate, this should just work
2022-02-13 21:52:43 +01:00
Kim Alvefur
9fbf5bf7ad
net.server_epoll: Disable verbose mode by default
2022-02-12 18:47:22 +01:00
Kim Alvefur
db4d41bd5a
prosody.cfg.lua.dist: Remove allow_registration in favor of invites
...
This settings should now only be used by public servers, which have
their own documentation
2022-02-11 00:16:36 +01:00
Matthew Wild
c3f82ad2e9
prosody.cfg.lua.dist: Comment improvements: s2s authentication
2022-02-14 16:30:01 +00:00
Matthew Wild
94140346ff
prosody.cfg.lua.dist: Comment improvements: authentication
2022-02-14 16:29:38 +00:00