Commit graph

2540 commits

Author SHA1 Message Date
Kim Alvefur
f0fc620d2a util.prosodyctl.check: turn: Report lack of TURN services as a problem #1749
Rationale: It seems unlikely that someone who has not configured any
TURN service runs 'prosodyctl check turn' expecting this to be okay.
2022-05-03 19:36:17 +02:00
Matthew Wild
93347db124 util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of
returning a value there in the success case, copy the positional arguments
into the existing opts table.
2022-04-25 15:24:56 +01:00
Matthew Wild
0eef6dde1e util.argparse: Return final 'arg' table with positional arguments for convenience
This is the same as the input table (which is mutated during processing), but
if that table was created on the fly, such as by packing `...` it's convenient
if it also gets returned from the parse function.
2022-04-25 15:09:41 +01:00
Matthew Wild
89934124b8 util.prosodyctl: check turn: ensure a result is always returned from a check (thanks eTaurus) 2022-04-13 18:46:11 +01:00
Kim Alvefur
1e2d4026f9 util.random: Test whether util.crand works before using it (fix #1734)
util.crand can be configured at compile time to use the Linux
getrandom() system call, available from Linux 3.17, but it is still
possible to load it with an older kernel lacking that system call, where
attempting to use it throws an ENOSYS error.

By testing for this on load we can fall back to /dev/urandom in this
case.
2022-04-02 16:33:27 +02:00
Matthew Wild
fdd5f22b8a prosodyctl: check config: Report paths of loaded configuration files (fixed #1729) 2022-03-28 11:41:57 +01:00
Matthew Wild
ff2a6d764e util.startup: Show error for unrecognized arguments passed to 'prosody' (fixes #1722) 2022-03-21 10:06:48 +00:00
Matthew Wild
afbef6406b prosodyctl: check turn: Fail with error if our own address is supplied for the ping test 2022-03-19 11:09:10 +00:00
Matthew Wild
d0bd1e71d9 prosodyctl: check config: Skip bare JID components in orphan check 2022-03-19 09:28:27 +00: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
Matthew Wild
681ac46aae prosodyctl: check turn: warn about external port mismatches behind NAT
Some NATs don't preserve port numbers, which can cause the TURN server's
reported relay address to be incorrect (the TURN server has no way to predict
what the external port is, so it can't be corrected in config like an IP
mismatch can).
2022-03-11 20:33:03 +00:00
Kim Alvefur
c9e223e4f7 spelling: non-existing mistakes (thanks timeless) 2022-03-07 00:35:29 +01:00
Kim Alvefur
43351d2b54 Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work

Maybe I missed something.
2022-03-07 00:13:56 +01:00
Matthew Wild
9a86373fd1 prosodyctl: check turn: compare correct addresses for relay mismatch detection (thanks Zash) 2022-03-05 20:47:40 +00:00
Matthew Wild
046b4085cb prosodyctl: check turn: Add check for private IP returned from STUN. 2022-03-05 20:34:58 +00:00
Matthew Wild
f7adea5040 prosodyctl: check turn: improve warning text to suggest issues 2022-03-05 20:34:24 +00:00
Matthew Wild
750f3a78d5 prosodyctl: check turn: fix traceback when server does not provide realm/nonce
As coturn when installed out of the box on Debian (because auth isn't enabled?)
2022-03-05 20:32:47 +00:00
Matthew Wild
08777eb3d6 prosodyctl: check turn: fix formatting of multiple warnings 2022-03-05 20:31:17 +00:00
Matthew Wild
c2af455ac0 prosodyctl: check turn: always show debug info even if test fails 2022-03-05 16:07:47 +00:00
Matthew Wild
2320d07021 prosodyctl: check turn: Clearer error when unable to resolve external service host 2022-03-05 16:06:39 +00:00
Matthew Wild
0babcb6c06 prosodyctl: check: include TURN checks by default 2022-03-05 11:53:53 +00:00
Matthew Wild
5af6db124a prosodyctl: check: Slightly improved argument handling 2022-03-05 11:36:38 +00:00
Matthew Wild
1af4939c11 prosodyctl: check turn: show relayed address(es) in verbose mode 2022-03-05 11:31:22 +00:00
Matthew Wild
9df580f997 prosodyctl: check turn: Allow specifying port for the ping service 2022-03-05 11:15:25 +00:00
Matthew Wild
357c7e0142 prosodyctl: check turn: Add support for testing data relay with an external STUN server via --ping 2022-03-05 11:10:18 +00:00
Matthew Wild
a905ccb71a util.bit53: Support for more than 2 arguments, for compat with bit32 2022-03-04 19:37:59 +00:00
Matthew Wild
b47c7951d5 Merge config-updates+check-turn from timber 2022-03-04 16:33:41 +00: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
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
785d327308 util.xml: Deduplicate handlers for restricted XML
Makes the code more like util.xmppstream, allowing easier comparisons if
we ever need to apply fixes in the future.
2022-01-20 10:51:46 +01:00
Kim Alvefur
d17619344d util.xml: Break reference to help the GC (fix #1711)
LuaExpat uses a registry reference to track handlers, which makes
it so that an upvalue like this creates a reference loop that keeps the
parser and its handlers from being garbage collected. The same issue has
affected util.xmppstream in the past.

Code for checking:

	local xml_parse = require"util.xml".parse;
	for i = 1, 10000 do xml_parse("<root/>") end
	collectgarbage(); collectgarbage();
	print(collectgarbage("count"), "KiB");

A future release of LuaExpat may fix the underlying issue there.
2022-01-20 09:57:20 +01:00
Jonas Schäfer
23a43df6fb util.xml: Do not allow doctypes, comments or processing instructions
Yes. This is as bad as it sounds. CVE pending.

In Prosody itself, this only affects mod_websocket, which uses util.xml
to parse the <open/> frame, thus allowing unauthenticated remote DoS
using Billion Laughs. However, third-party modules using util.xml may
also be affected by this.

This commit installs handlers which disallow the use of doctype
declarations and processing instructions without any escape hatch. It,
by default, also introduces such a handler for comments, however, there
is a way to enable comments nontheless.

This is because util.xml is used to parse human-facing data, where
comments are generally a desirable feature, and also because comments
are generally harmless.
2022-01-10 18:23:54 +01:00
Kim Alvefur
7ba9ee013c util.startup: Correctly point out unknown short param (fixes #1691) 2021-10-12 14:53:45 +02:00
Kim Alvefur
3764f34fcf util.prosodyctl.shell: Fix lint [luacheck] 2023-12-09 17:00:22 +01:00
Kim Alvefur
f0061feef8 util.prosodyctl.shell: Add :method syntax to make e.g. MUC commands easier
e.g.
prosodyctl shell muc room room@muc.example.com :set_name "This Room"
2023-12-09 16:25:04 +01:00
Kim Alvefur
c61c78447b util.xtemplate: Adopt {-path-} syntax to strip preceding and/or trailing whitespace
Seen in some other template languages
2023-12-09 14:57:41 +01:00
Kim Alvefur
e03fe2ebe3 util.jsonschema: Return basic structured validation response 2023-12-02 21:45:38 +01:00
Kim Alvefur
59d820880f util.ip: Fix netmask for link-local address range
This may have mistakenly caused link-local addresses to be considered
global.  May have caused mod_s2s and prosodyctl check dns to behave
incorrectly on networks using link-local IPv4 addresses. By my
guesstimate, these are extremely rare.  Probably minimal impact beyond
a bit longer to establish s2s and some possible confusion from
prosodyctl check dns results.

Ref RFC 3927
2021-07-03 03:27:57 +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
ab835fed13 util.hex: Deprecate to/from in favour of encode/decode, for consistency! 2022-03-04 15:22:45 +00:00
Kim Alvefur
406b90d31d core.certmanager: Turn soft dependency on LuaSec into a hard
The default network backend server_epoll already requires LuaSec so
Prosody won't even start without it, so we can get rid of these lines
here too.
2022-02-10 17:15:55 +01:00
Kim Alvefur
0e1bf3c061 util.pubsub: Fix traceback if node data not initialized
This should not be possible, but a traceback indicating node_data being
nil here was reported by Ron in the chat.
2021-05-16 16:02:00 +02:00
Kim Alvefur
934bd2a65e util.datamanager: Fix missing pack format when reading first index entry
Thanks MattJ
2023-11-30 18:09:53 +01:00
Matthew Wild
a669ffb5a2 util.human.io: Don't accept ambiguous durations by default
The new method parse_duration_lax() exports the old behaviour, mainly for
compatibility purposes.
2023-11-30 13:42:44 +00:00
Kim Alvefur
b97c4ffc16 util.datamanager: Load first item into index earlier
Should get rid of fseek() call
2023-11-27 00:14:56 +01:00