Commit graph

461 commits

Author SHA1 Message Date
Matthew Wild
8eadf174b4 net.stun: tests: Remove stray print() from debugging 2022-03-04 16:46:47 +00:00
Matthew Wild
a6265e45a0 net.stun: Add tests for serialization/deserialization 2022-03-04 16:13:05 +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
99a880ebe5 util.xml: Add an option to allow <?processing instructions?>
These should generally be safe to just ignore, which should be the
default behavior of Expat and LuaExpat
2022-02-04 20:47:39 +01:00
Kim Alvefur
c551d3d8dd util.format: Skip control code escaping when doing full serialization
Fixes that a multi-line string ended up "like\
\9this" instead of "like\nthis" as can be demonstrated by somehow
initiating a connection to a HTTP server.
2022-01-27 21:14:22 +01:00
Kim Alvefur
cced954ac3 util.jid: Explicitly check for nil rather than falsy
A boolean false should blow up.
2022-01-15 16:25:25 +01:00
Jonas Schäfer
e0b15fcba3 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
8a97d634a4 util.pubsub: Fix item store resize to "max"
Previously this would end up passing the "max" directly to the
underlying storage.
2022-01-06 01:18:35 +01:00
Kim Alvefur
631d7b9003 util.stanza: Cover :find method in tests
This method is a bit complex so good to have some test coverage
2021-12-31 14:14:03 +01:00
Kim Alvefur
893de236f6 util.stanza: Increase test coverage to cover validation errors 2021-12-31 14:00:28 +01:00
Kim Alvefur
6710420289 util_datamapper: Fix typo in unit tests 2021-12-29 18:03:26 +01:00
Kim Alvefur
5168bd5c5f util.datamapper: Add support for $ref pointers
Allows reuse of repetitive definitions in schemas.
2021-12-29 17:57:09 +01:00
Kim Alvefur
7056bc0674 mod_tombstones: Add a very basic test case 2021-12-23 15:17:18 +01:00
Jonas Schäfer
663028421f mod_roster: pass correct username to roster-item-removed
The other invocations use it that way, and the only listener in trunk
which uses it (in mod_presence) expects it that way.

Passing the username of the JID from the removed entry causes incorrect
unavailable presence stanzas to be sent, allegedly kicking people off
MUCs.

Fixes #1121.
2021-12-22 13:06:32 +01:00
Kim Alvefur
081647ea1f util.smqueue: Simplify compat table, fix dependent modules (thanks Martin)
There was an off-by-one in the modulo calculation. Switching to a plain
old array-table makes the apparent size of the queue wrong, but since
some of the queue may not be available this is likely for the best.
2021-12-16 12:16:45 +01:00
Kim Alvefur
93a9ed2620 util.smqueue: Abstract queue with acknowledgements and overflow
Meant to be used in mod_smacks for XEP-0198

Meant to have a larger virtual size than actual number of items stored,
on the theory that in most cases, the excess will be acked before needed
for a resumption event.
2021-12-14 19:58:53 +01:00
Kim Alvefur
58c9115351 util.format: Ensure metatable __tostring results are also sanitized 2021-12-13 16:34:55 +01:00
Kim Alvefur
d482ece962 util.format: Fix some formats expecting positive numbers in Lua 5.2
Amazing how string.format behaves differently under each Lua version
2021-12-11 20:54:37 +01:00
Kim Alvefur
3d0844a4f5 util.format: ALL THE TESTS!!!
The more tests I made, the more Lua 5.1 quirks I discovered.

Tests generated using a tool plus some touch-up.
2021-12-11 20:38:54 +01:00
Kim Alvefur
0ddd204a27 util.format: Also handle the %p format added in Lua 5.4 2021-12-11 13:39:58 +01:00
Kim Alvefur
1eca4e8870 util.format: Ensure sanitation of strings passed to wrong format
Ie. log("debug", "%d", "\1\2\3") should not result in garbage.

Also optimizing for the common case of ASCII string passed to %s and
early returns everywhere.

Returning nil from a gsub callback keeps the original substring.
2021-12-11 13:30:34 +01:00
Kim Alvefur
d4c1451794 util.format: Escape invalid UTF-8 by passing trough serialization
Should prevent invalid UTF-8 from making it into the logs, which can
cause trouble with terminals or log viewers or other tools, such as when
grep determines that log files are binary.
2021-12-10 22:48:45 +01:00
Kim Alvefur
449311b2d1 MUC: Remove <{muc}x> tags in some errors
Including the payload of the stanza that caused the error is optional
and we're generally not doing it anywhere else.
2021-12-08 21:55:25 +01:00
Kim Alvefur
d621e0626c MUC: Remove remaining deprecated numeric error codes
The numeric error codes seems to have been removed from the examples in
XEP-0045 version 1.24, and were deprecated even by RFC 3920 in 2004,
only allowed for backwards compatibility.
2021-12-08 21:02:14 +01:00
Matthew Wild
06da62a6fe util.async tests: Explicitly import match from luassert (luacheck) 2021-11-29 14:22:08 +00:00
Matthew Wild
d46c43fbeb util.async: Add next-tick configuration
Running woken runners in the next iteration of the event loop prevents
unexpected recursion, unexpected tracebacks, and is generally more
predictable.

The pattern is borrowed from util.promise, where we're now doing the same.
2021-11-29 14:14:30 +00:00
Matthew Wild
cfef2c6ef6 util.async: Add sleep() method with configurable scheduling backend
No scheduler set by default, so it will error (we plan to initialize it in
util.startup).

We wanted to avoid a hard dependency on util.timer (which in turn depends on
network backends, etc.), and we didn't add timer.sleep() because we didn't
want to add a hard dependency on util.async for things that don't need it.
2021-11-29 14:11:24 +00:00
Kim Alvefur
cc84e83895 util.promise: Fix test
Could not reproduce locally but it complained in CI that
> spec/util_promise_spec.lua:676: Cannot spy on type 'nil', only on functions or callable elements
2021-11-26 22:38:07 +01:00
Kim Alvefur
a35dd91a12 util.promise: Support delayed promise execution 2019-01-05 07:08:24 +01:00
Kim Alvefur
d1144a7ede util.human.io: Fix cutting of UTF-8 into pieces
Down the rabbit hole we go...
2021-11-12 14:21:15 +01:00
Kim Alvefur
1a0be02fe8 util.dataforms: Ensure larger integers are serialized as such
Assumes that most number fields are integers, as most numeric types
listed in XEP-0122 are, as are all such fields in Prosody as of this.

Otherwise %g produces something like 1.1259e+15
2021-10-28 13:00:24 +02:00
Kim Alvefur
9a080dc12e util.dataforms: Scope integer handling tests
So they're separate from the datetime tests, and any future validation
tests
2021-10-26 15:41:54 +02:00
Kim Alvefur
f956b07ca0 util.dataforms: Turn number values into timestamps for datetime fields
Makes it symmetric with parsing.
2021-10-26 15:17:49 +02:00
Kim Alvefur
fc677f515f util.dataforms: Coerce number values for boolean fields
Makes more sense than coercing to a string, which would always be
truthy.
2021-10-26 15:15:57 +02:00
Kim Alvefur
851127ecd7 util.dataforms: Add support for datetime field types via XEP-0122 2021-10-25 21:45:46 +02:00
Kim Alvefur
5016e66640 mod_pubsub,mod_pep: Advertise maximum number of items via XEP-0122
Clients would generally be using the "max" symbol instead of discovering
this, but this also gets us validation and earlier rejection of out of
bounds values.
2021-10-20 17:32:34 +02:00
Kim Alvefur
8b769c373d mod_pubsub: Prevent max_items from being set to zero
Disable persistence instead if no items should be persisted.

XEP-0060 is not entirely clear on what either of those option really
mean.
2021-10-20 17:31:24 +02:00
Kim Alvefur
4b05d0f240 mod_pubsub,mod_pep: Implement 'send_last_published_item' option #1436
Default left as 'never' in mod_pubsub to preserve the previous behavior.
Unclear if this is desirable, but can always be changed later.

In mod_pep this allows turning off the automatic resending of most
recent item.
2021-10-19 18:11:50 +02:00
Kim Alvefur
21784ddc11 util.argparse: Add test for #1691 2021-10-12 14:54:04 +02:00
Kim Alvefur
0c99443297 util.argparse: Tests 2021-10-12 14:48:21 +02:00
Matthew Wild
edb6956ad5 util.array: Add :slice() method + tests
Behaviour follows the same logic as string.sub (so yes, 1-indexed).
2021-09-12 10:50:20 +01:00
Matthew Wild
eba0bacfda util.stanza: Add :get_child_with_attr() + tests 2021-09-12 10:31:02 +01:00
Kim Alvefur
22060f15cc mod_pubsub: Add support for limiting result size #1608 2021-09-05 16:43:41 +02:00
Kim Alvefur
1546e59310 util.pubsub: Add support for limiting number of items to retrieve
Hopefully this will eventually be upgraded to RSM, which is why the
argument is called 'resultspec' and is a table.
2021-09-05 16:21:10 +02:00
Kim Alvefur
d915f98800 mod_external_services: Validate required attributes on credentials requests 2021-08-29 23:26:19 +02:00
Kim Alvefur
f679f0b26e core.storagemanager: Respect archive ids issued by storage drivers in tests
Storage drivers may issue their own IDs tho none of the included ones do
this atm, but the 3rd party module mod_storage_xmlarchive has its
special format.
2021-08-15 12:28:58 +02:00
Kim Alvefur
c506269ff5 Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
2021-07-27 00:13:18 +02:00
Kim Alvefur
dfed446a5a util.pubsub: Signal that 'persistent-items' is unsupported when disabled
XEP-0060 says that this the way to indicate that 'persistent-items' is
unsupported, but doesn't explicitly say if it being disabled in the node
configuration also counts as unsupported.
2021-07-22 19:53:21 +02:00
Kim Alvefur
ffeeffd35c util.pubsub: Fix behavior of persist_items disabled
When set to 'false' there is no need for a persistence interface at all,
since items are not persisted after being broadcast.

Had started wondering if maybe the behavior was wrong, after reading
parts of XEP-0060 that pointed in that direction.

Some discussion of this can be found in logs of
xmpp:xsf@muc.xmpp.org?join from around 2021-07-20

Thanks to Ralph for confirming.
2021-07-22 21:01:11 +02:00
Kim Alvefur
8116134258 mod_pubsub: Explicitly enable persistence by default to preserve behavior
Since nodes were always persistent according to the XEP-0060 definition.
Whether data is stored in memory or on disk was not what this setting
was meant for.
2021-07-21 23:35:08 +02:00