Commit graph

11061 commits

Author SHA1 Message Date
Matthew Wild
e419f0b5f4 util.event: Add luacheck annotation to unused parameter in tests 2020-09-03 13:10:46 +01:00
Matthew Wild
a5775893f5 util.helpers: when logging events, log individual handler calls 2020-09-03 13:00:43 +01:00
Matthew Wild
c909bca762 util.events: Add set_debug_hook() method
Hook signature:

  ret = debug_hook(handler, event_name, event_data)
2020-09-03 12:59:43 +01:00
Kim Alvefur
1cec114646 MUC: Don't default room name to JID localpart (API breaking change)
Behavior with turning empty name into localpart was originally introduced
in 711eb5bf94b4

This has caused some problems for clients, making it difficult to
differentiate between a room actually named like the localpart from a
room without a name.

Breaking:
The function signature of the :get_name() method changes from always
returning a string to optional string.
2020-08-29 18:51:13 +02:00
Kim Alvefur
b37e985f48 util.jid: Fix special escaping of '\' per XEP-0106
From XEP-0106 §2. Requirements:
> in certain circumstances, the escaping character itself ("\") might
> also be escaped

Later in §4.2 Address Transformation Algorithm it is stated that the
backslash would only be escaped if it forms an escape sequence. Thus
'\foo' is unaltered but '\20' must be escaped into '\5c20'.

Thanks to lovetox and jonas’ for brining up.
2020-08-28 18:44:02 +02:00
Kim Alvefur
403f320d90 util.jid: Add test coverage for XEP-0106: JID Escaping functions 2020-08-28 18:43:37 +02:00
Kim Alvefur
a114e8cf02 util.error: Add a wrapper for common parameters
Lets you set up source and registry once per module
2020-08-28 13:55:05 +02:00
Kim Alvefur
df7cf5c388 util.error: Add a 'source' parameter where origin module can be mentioned 2020-08-28 13:54:16 +02:00
Matthew Wild
fa462b8505 util.startup: Init util.error with defaults if none given 2020-08-28 12:54:31 +01:00
Matthew Wild
5c04c5ce38 util.error: Add configuration for including traceback in tostring() 2020-08-28 12:51:40 +01:00
Matthew Wild
7507996371 util.error: Allow optional tracebacks to be injected on errors
This allows extra debug info to be provided for development purposes.
2020-08-28 12:40:59 +01:00
Matthew Wild
c340e3ab37 net.http: http.request() promise now resolves with response (breaking change)
Promise mode is not (widely?) used, changing this now while we can, as it
improves usability of the API.

The request is now available as response.request, if needed.
2020-08-25 15:59:04 +01:00
Matthew Wild
209660f212 net.http: use new net.http.errors lib for creating error object 2020-08-25 15:57:39 +01:00
Kim Alvefur
f25f4bb11a mod_posix: Remove ancient undocumented user switching
User switching has been done by prosodyctl or init scripts for a very
long time now, so this is not needed.

Using this would not have worked with module reloading (e.g. to reload
certificates) since ports are closed and re-bound, which would then not
be allowed.

Today there exists better ways to grant low ports, i.e. capabilities(7)

<Zash> Why do we have this?
<MattJ> Remove it
2020-08-24 19:48:47 +02:00
Kim Alvefur
21ecc6ca39 util.dbuffer: Simplify test case
An earlier theory involved the bug being related to collapsing multiple
items, so it exercised that too.

Also correct the comment, it referred to the space in "hello world" in
an earlier version before the test string was changed to "foobar", which
was what was tested in a REPL
2020-08-24 17:28:48 +02:00
Matthew Wild
7fa4cc8de0 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
Kim Alvefur
e21429d8e4 util.dbuffer: Add failing test case involving :sub after :discard 2020-08-24 17:07:37 +02:00
Kim Alvefur
33d00845e7 net.server_select: Fix traceback (thanks eta)
The `socket` here is unreferenced on disconnect.  Calling :resume_writes
after that causes an error when `addsocket()` tries to use it as a table
index.
2020-08-23 22:19:29 +02:00
Kim Alvefur
6c5dd70664 mod_admin_shell: Report CSI queue length from mod_csi_simple 2020-08-22 14:34:57 +02:00
Kim Alvefur
460a55c86e mod_admin_shell: Report CSI state in c2s:show() 2020-08-22 14:34:33 +02:00
Kim Alvefur
fb6c098ed6 mod_external_services: Validate services added via events
While writing developer documentation it became obvious that i was silly
to have one item format for config and items API, and another format for
the event API.

Then there's the stanza format, but that's a common pattern.

This change reduces the possible input formats to two and allows other
modules the benefit of the processing and validation performed on items
from the config.
2020-08-17 00:24:11 +02:00
Kim Alvefur
5bc6130e57 mod_external_services: Allow specifying a credential generation callback
This is especially targeted at services added via the items API. More
involved credential generation should use the event hook.
2020-07-25 12:22:03 +02:00
Kim Alvefur
0b65dea7c0 mod_external_services: Prepare to allow more credential algorithms
Not sure what algorithms might fit here. Separation makes some sense.

This is also a preparation for having a callback. (See next commit)
2020-07-25 12:09:19 +02:00
Kim Alvefur
6dfae9bbfa mod_external_services: Support adding services via items API 2020-07-25 10:22:37 +02:00
Kim Alvefur
b289d05cfb mod_external_services: XEP-0215: External Service Discovery 2020-07-18 15:36:25 +02:00
Kim Alvefur
aeaad491d4 mod_component: Return extended error condition when not connected
This might be something to write a XEP about.
2020-04-13 02:49:19 +02:00
Kim Alvefur
2f67c339a3 mod_component: Reply with a different error when not connected
The wait, service-unavailable is overloaded by XEP-0045 to mean that the
room has reached the maximum number of users. See #1495.

Bouncing errors for components is tricky since there is no way to tell
that it comes from the server hosting the component, not from the other
end of the component connection.
2020-04-13 02:46:03 +02:00
Matthew Wild
54e37ffe8d net.http.parser: Allow configuration of the chunk size fed to the parser 2020-08-21 14:14:29 +01:00
Matthew Wild
76dd86054c net.http.parser: Switch tests so that CRLF conversion of input data is optional 2020-08-21 14:12:51 +01:00
Matthew Wild
70b697de98 net.http.parser: Fix incorrect path in test 2020-08-21 13:49:10 +01:00
Matthew Wild
076d8b698f net.http.parser: Add failing test for (large?) chunk-encoded responses 2020-08-21 13:41:51 +01:00
Kim Alvefur
031a8d8e64 net.http.parser: Fix indentation
Probably due to a rebase/merge with a merge tool that ignores
whitespace. Happens all the time to me :(
2020-08-20 16:43:27 +02:00
Matthew Wild
9115d2a366 util.dbuffer: Fix traceback when :collapse() is called on empty buffer 2020-08-20 15:22:19 +01:00
Kim Alvefur
8de93db692 util.dataforms: Add more XEP-0211 media element test coverage 2020-08-16 20:30:02 +02:00
Kim Alvefur
1c0e4300ab util.dataforms: Convert media element sizes to avoid error on Lua 5.3
The stanza API does not accept number values and threw an error due to
the height and width attributes of the media element (XEP-0221).

This part had no test coverage previously, explaining why it was not
discovered until now.
2020-08-16 12:55:55 +02:00
Matthew Wild
9287d929c2 net.http.errors: Add new module for converting net.http errors to util.error objects 2020-08-13 17:01:05 +01:00
Kim Alvefur
7acd3092ec mod_net_multiplex: Set read size/mode to that of the target listener
Otherwise it would use the configured buffer size, or previously '*a'.
Using the read size set by the listener seems more sensible.
2020-08-02 00:24:54 +02:00
Kim Alvefur
8fae7acf31 mod_net_multiplex: Read no more than the max buffer size setting
Otherwise the '*a' read mode applies, which under certain circumstances
can read infinite amounts of data into memory.
2020-08-02 00:22:57 +02:00
Kim Alvefur
933c048829 mod_http: Add way to signal that a module supports streaming uploads
Fixes #726

API:

module:provides("http", {
	streaming_uploads = true;
	route = {
		PUT = function (event)
			event.request.body_sink = io.tmpfile();
			return true;
		end
	}
})
2020-08-01 18:41:30 +02:00
Kim Alvefur
91d2ab9108 net.http.parser: Allow specifying sink for large request bodies
This enables uses such as saving uploaded files directly to a file on
disk or streaming parsing of payloads.

See #726
2020-08-01 18:41:23 +02:00
Kim Alvefur
64aa6a2a0e net.http.parser: Switch to util.dbuffer for buffering incoming data
This is primarily a step towards saving uploads directly to files, tho
this should hopefully be more efficient than collapsing the entire
buffer to a single string every now and then.
2020-08-01 18:14:09 +02:00
Kim Alvefur
a9e3c5de79 Merge 0.11->trunk 2020-08-08 19:13:12 +02:00
Matthew Wild
99cb02cc82 Merge 0.11->trunk 2020-08-08 13:14:11 +01:00
Matthew Wild
dc206f0ff4 net.http: Add request:cancel() method
This is a new API that should be used in preference to http.destroy_request()
when possible, as it ensures the callback is always called (with an error of
course).

APIs that have edge-cases where they don't call callbacks have, from experience,
shown to be difficult to work with and often lead to unintentional leaks when
the callback was expected to free up certain resources.
2020-08-08 13:13:50 +01:00
Matthew Wild
11e49af5e8 net.http: Re-expose destroy_request() function
This was accidentally turned private in 647adfd8f738 as part of refactoring
for Lua 5.2+.
2020-08-08 13:11:11 +01:00
Kim Alvefur
63b5689d50 mod_s2s: Escape invalid XML in loggin (same way as mod_c2s) fix #1574 2020-08-01 12:58:37 +02:00
Kim Alvefur
7c00bae93a net.server_epoll: Log debug message when a connection errors on read
It's confusingly quiet otherwise, even with maximum verboseness.

Thanks perflyst
2020-07-25 17:26:11 +02:00
Matthew Wild
a80cdecc46 net.resolvers.basic: Default conn_type to 'tcp' consistently if unspecified (thanks marc0s)
Fixes a traceback when passed an IP address with no conn_type.
2020-07-10 13:00:02 +01:00
Matthew Wild
bfd9789cb1 net.http: Fix traceback on invalid URL passed to request() 2020-07-07 13:52:25 +01:00
Emmanuel Gil Peyrot
0314b7063c mod_register: Add a dependency on mod_watchregistrations
Spammers are a big hassle, hopefully this will make admins aware of them sooner
than when they’ve already spammed a bunch.
2020-06-29 21:03:13 +02:00