Commit graph

1695 commits

Author SHA1 Message Date
Kim Alvefur
4fa3808e8d util.stanza: Allow U+7F
Allowed by XML despite arguably being a control character.

Drops the part of the range meant to rule out octets invalid in UTF-8
(\247 starts a 4-byte sequence), since UTF-8 correctness is validated by
util.encodings.utf8.valid().
2022-11-22 23:56:01 +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
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
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
Matthew Wild
92cec56e97 util.xmppstream: Allow dynamically configuring the stanza size limit for a stream
This may be useful for any plugins that want to experiment with different policies
for stanza size limits (e.g. unauthenticated vs authenticated streams).
2021-05-10 17:03:27 +01:00
Matthew Wild
7cb3ec61d5 util.xmppstream: Mark bytes for stream closure as handled 2021-05-10 17:02:37 +01:00
Matthew Wild
d126ee88bc util.xmppstream: Reduce default xmppstream limit to 1MB 2021-05-10 16:44:55 +01:00
Matthew Wild
06161ab766 util.set: Add is_set() to test if an object is a set 2021-05-10 16:41:56 +01:00
Matthew Wild
4c7989e7e4 util.startup: Set more aggressive defaults for GC
Testing has demonstrated that the default GC parameters are not
sufficient to prevent runaway memory growth when running under Lua 5.2
and Lua 5.3.

Setting the GC speed to 500 was tested on Lua versions 5.1->5.4 and did
not display unbounded memory growth.
2021-05-07 16:41:39 +01:00
Kim Alvefur
1f45b63544 util.interpolation: Fix combination of filters and fallback values #1623 2021-01-25 20:58:11 +01:00
Kim Alvefur
365e5b0cb4 util.timer: Ensure timers can't run more than once per tick (fixes #1620)
See longer explanation in 2c559953ad41
2021-01-08 23:23:56 +01:00
Kim Alvefur
7f7ec9e1ed util.stanza: Move misplaced argument to correct place
valid_utf8() takes only one argument, so the false was probably meant
to be valid_xml_cdata(text, attribute=false)
2020-12-24 17:57:28 +01:00
Matthew Wild
a247cea4df util.promise: Use xpcall() for promise function to preserve tracebacks 2020-11-23 20:38:51 +00:00
Kim Alvefur
8328e6681e util.stanza: Reject ASCII control characters (fixes #1606) 2020-11-11 16:00:41 +01:00
Matthew Wild
01c5bf5529 util.dbuffer: Optimize :sub() and :byte() 2020-10-28 14:21:09 +00:00
Matthew Wild
a095a0c533 util.debug: Fix locals being reported under wrong stack frame in some cases (+tests!!) 2020-10-16 13:38:04 +01:00
Kim Alvefur
d3b3e21720 util.dbuffer: Expose length as :len() method, like strings
Ref #1598
2020-10-12 20:20:02 +02:00
Kim Alvefur
c91cc915b6 util.dependencies: Check for bitop library same way as net.websocket.frames (fixes #1594) 2020-10-05 22:12:29 +02:00
Matthew Wild
f5f2a709cd Merge 2020-09-30 09:46:30 +01:00
Waqas Hussain
80beeeb187 util.indexedbheap: Fix heap datastructure corruption in :reschedule(smaller_value) 2020-09-29 21:27:16 -05:00
Matthew Wild
91d42d3218 util.dbuffer: Fix :sub() not working with partially-consumed chunks (thanks Zash for test case)
This also appears to fix some bugs with chunk-encoded streams in net.http.parser.
2020-08-24 16:18:13 +01:00
Matthew Wild
254b65a030 util.dbuffer: dynamic string buffer
Similar to util.ringbuffer (and shares almost identical API). Differences:

- size limit is optional and dynamic
- does not allocate a fixed buffer of max_size bytes
- focus on simply storing references to existing string objects where possible,
  avoiding unnecessary allocations
- references are still stored in a ring buffer to enable use as a fast FIFO

Optional second parameter to new() provides the number of ring buffer segments. On
Lua 5.2 on my laptop, a segment is ~19 bytes. If the ring buffer fills up, the next
write will compact all strings into a single item.
2020-06-26 16:41:31 +01:00
Matthew Wild
c313b10cd9 util.startup: Configure the GC on startup, using the config or built-in defaults 2020-06-15 14:16:34 +01:00
Matthew Wild
42ff12bb04 util.gc: Linter fixes [luacheck] 2020-06-15 14:23:47 +01:00
Matthew Wild
9277a27ce4 util.gc: New module for configuring the Lua garbage collector 2020-06-15 14:16:10 +01:00
Kim Alvefur
bd36651336 util.startup: Remove duplicated initialization of logging (fix #1527) 2020-06-22 14:56:44 +02:00
Kim Alvefur
a7083d1ded util.sasl.plain: Apply saslprep to stored password
Fixes something like #1560 here too.

The password sent by the user already had saslprep applied.
2020-05-22 21:05:45 +02:00
Kim Alvefur
5dd049acf0 util.sasl.scram: Apply saslprep before hashing password, fixes #1560 2020-05-22 20:59:01 +02:00
Kim Alvefur
375b817e8a util.prosodyctl: Tell prosody do daemonize via command line flag (fixes #1514)
Backport of 88be11e9f9b9
2020-01-26 16:40:21 +01:00
Kim Alvefur
d8fda82e40 util.datamanager: Fix iterating over "users" (thanks marc0s)
The 'store' path componend used to be unescaped until 756a2a00e7e7 added
escaping to address issues with characters like '/' used in PEP, but
with a special case for '_' which was already in common use in 'store'
path components.

Missed adding this escaping here.
2020-02-24 23:16:08 +01:00
Matthew Wild
73355a4f31 util.startup: Ensure prosody.opts exists even when no options provided 2020-01-19 15:50:32 +00:00
Matthew Wild
0d5f5c9229 util.startup: Remove accidentally-committed debugging 2020-01-19 15:50:16 +00:00
Matthew Wild
704acb8b7a util.startup: Fix logic to make --config work again 2020-01-19 15:39:13 +00:00
Matthew Wild
e52171b0cd prosody/util.startup: Switch to parse_args() for --root and --config 2020-01-19 15:27:16 +00:00
Matthew Wild
ec3865fa9d util.startup: Add startup step for parsing command-line options 2020-01-19 15:26:22 +00:00
Kim Alvefur
f6592c459e util.pubsub: Pass subscribers trough a filter callback 2019-06-06 18:13:46 +02:00
Kim Alvefur
9be2ed1c4b util.pubsub: Factor out calling of broadcaster
This will simplify doing things along with broadcasting.
2019-06-06 17:37:15 +02:00
Kim Alvefur
91156ab5d9 util.startup: Ensure prosody.paths are absolute (see #1430)
Normally these paths are injected into the installed 'prosody'
executable as absolute paths, but it is possible to override at least
the config path via environment variable or command line argument. This
makes sure a path relative to pwd stays relative to that instead of the
data directory.
2019-11-04 00:29:49 +01:00
Kim Alvefur
5e4bc6299b util.startup: Update config path (fixes #1430) 2019-11-03 22:19:09 +01:00
Kim Alvefur
9bd711b194 util.interpolation: Support unescaped variables with more modifiers (fixes #1452)
Tests will be added in trunk.
2019-10-20 20:52:14 +02:00
Kim Alvefur
e081fd6642 util.serialization: Cache default serialization instance (fixes #1389)
Most serialization uses still use the default serialize() and thus
duplicate much of the setup, which negates some of the performance
improvements of the rewrite.
2019-07-08 02:46:27 +02:00
Kim Alvefur
c2576aea62 util.sql: Ignore if tables and indices already exist on creation (fixes #1064)
Tested with SQLite3 3.16.2 and 3.27.2 and Postgres 11.

MySQL does not support IF NOT EXISTS for indices so not handled here.
2019-05-30 23:50:28 +02:00
Kim Alvefur
a6e44a24a0 util.random: Throw different error for EOL condition 2019-05-21 08:52:21 +02:00
Kim Alvefur
c42ccf1bcc util.random: Coerce error to string (thanks waqas)
In theory this could happen in an EOF condition, which should be
impossible with a read from /dev/urandom.
2019-05-18 18:51:25 +02:00
Kim Alvefur
60c9443a7b util.random: Handle unlikely read errors from /dev/urandom (see #1313) 2019-05-18 17:28:21 +02:00
Kim Alvefur
86b34563eb util.ip: Add missing netmask for 192.168/16 range (fixes #1343) 2019-04-14 02:06:20 +02:00
Kim Alvefur
5d4504e51b util.pubsub: Validate node configuration on node creation (fixes #1328) 2019-03-03 19:31:56 +01:00