Commit graph

2359 commits

Author SHA1 Message Date
Matthew Wild
2c87a0108b util.sasl.oauthbearer: Fix gs2-header parsing 2023-03-21 14:01:03 +00:00
Kim Alvefur
c11d121c06 util.sasl.{scram,plain}: Pass authzid to SASL profile callback
For potential future use.

Used for logging into a different account than the one used for
authentication.
2023-03-16 13:57:30 +01:00
Kim Alvefur
b156f013c4 util.sasl.scram: Fix off-by-one indentation 2023-03-16 13:52:22 +01:00
Kim Alvefur
2331fc8b65 util.sasl.oauthbearer: Adjust parsing of GS2 to allow lack of authzid
Partly copied from util.sasl.scram and then reduced a bit.
2023-03-16 13:45:49 +01:00
Kim Alvefur
566a991f84 util.sasl.oauthbearer: Return username from callback instead using authzid (BC)
RFC 6120 states that
>  If the initiating entity does not wish to act on behalf of another
>  entity, it MUST NOT provide an authorization identity.

Thus it seems weird to require it here.  We can instead expect an
username from the token data passed back from the profile.

This follows the practice of util.sasl.external where the profile
callback returns the selected username, making the authentication module
responsible for extracting the username from the token.
2023-03-16 12:18:23 +01:00
Matthew Wild
944c25f352 util.sasl.oauthbearer: Fix syntax error in b796e08e6376 2023-03-15 12:02:23 +00:00
Matthew Wild
9dedc78f3c util.sasl.oauthbearer: Attach token_info to sasl handler
This allows token-aware things to access extra information about the
authentication, such as when the token is due to expire and the attached
custom 'data'.
2023-03-15 09:41:38 +00:00
Matthew Wild
84c0204ea2 util.ip: Add ip.truncate() to return a new IP with only the prefix of another 2023-03-14 18:24:58 +00:00
Matthew Wild
3eedf79c8b util.ip: Add is_ip() helper method to detect if an object is an ip object 2023-03-14 18:23:33 +00:00
Kim Alvefur
aabfdaf01a util.sasl.oauthbearer: Fix traceback on authz in unexpected format
E.g. if you were to just pass "username" without @hostname, the split
will return nil, "username" and the nil gets passed to saslprep() and it
does not like that.
2023-03-02 14:37:46 +01:00
Matthew Wild
6db4afa0c3 util.sasl: Add SASL OAUTHBEARER mechanism (RFC 7628) 2023-03-01 12:55:00 +00:00
Kim Alvefur
5a3f0becf8 Merge 0.12->trunk 2023-02-22 22:29:53 +01:00
Kim Alvefur
9c49ca70fd util.prosodyctl.check: Suggest 'http_cors_override' instead of older CORS settings
The cross_domain_* settings were added here prior to http_cors_override
being added back in 17d87fb2312a, so for a time there was no
replacement, but now there is.
2023-02-22 22:27:42 +01:00
Kim Alvefur
0147b972e0 mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module

Thanks pfak
2023-01-30 00:38:26 +01:00
Kim Alvefur
9228a851bc Merge 0.12->trunk 2023-01-22 15:43:44 +01:00
Kim Alvefur
435e008568 util.startup: Close state on exit to ensure GC finalizers are called
Ensures a last round of garbage collection and that finalizers are
called. Fixes things like proper closing of SQLite3 state.

There are more calls to os.exit() but most of them exit with an error or
in a case where a final GC sweep might not matter as much.

It would be nice if this was the default.

Calling util.statup.exit() everywhere may be sensible, but would be more
involved, requiring imports everywhere.
2023-01-22 14:45:47 +01:00
Kim Alvefur
7c302e9c4c util.prosodyctl.shell: Close state on exit to fix saving shell history
This ensures a last round of garbage collection and finalizers, which
should include flushing the readline history file.

Test procedure:
```
$ ./prosodyctl shell
prosody> s2s:show() -- any command that is not the last in history
... output
prosody> bye
$ ./prosodyctl shell
prosody> ^P
```

After this, the shell prompt should contain the last command from before
the "bye". Before this patch, recent history is gone most of the time.
2023-01-22 14:42:07 +01:00
Kim Alvefur
2a5953f569 util.dnsregistry: Remove unintentional 'Unassigned' record 2023-01-20 23:40:54 +01:00
Kim Alvefur
b15a8e1360 mod_admin_socket: Fix typo in comments
Introduced in 6966026262f4
2023-01-20 18:16:10 +01:00
Kim Alvefur
c9fb0c2cab prosodyctl check dns: Check for Direct TLS SRV records even if not configured (fix #1793)
Existing such records may cause timeouts or errors in clients and
servers trying to connect, despite prosodyctl check saying all is well
2023-01-14 05:47:47 +01:00
Kim Alvefur
63fde85044 Merge 0.11->0.12 2022-12-12 07:07:13 +01:00
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
Matthew Wild
d4daf40caa util.json: Accept empty arrays with whitespace (fixes #1782) 2022-11-04 12:26:10 +00:00
Kim Alvefur
bab0635179 util.startup: Ensure import() is available in prosodyctl (thanks keyzer)
Fixes error in mod_authz_internal due to import() being unavailable as
it was only loaded in Prosody proper
2022-10-20 16:31:18 +02:00
Kim Alvefur
bca11bfc73 util.jsonschema: Use same integer/float logic on Lua 5.2 and 5.3
Fixes test case type.json:0:1 covering treatment of 1.0 as an integer
according to the JSON definition
2022-10-09 15:42:25 +02:00
Kim Alvefur
060dc12013 util.jsonschema: Fix Lua 5.2 integer compat
math.type() is unavailable before Lua 5.3 so this should use the compat
function added at the top
2022-10-09 15:38:36 +02:00
Kim Alvefur
f6727510da util.stanza: Return nil instead of nothing (fix test with luassert >=1.9)
Due to a change in luassert, a dependency luassert of the Busted test
framework, returning nothing is no longer treated as not falsy.
2022-09-15 11:05:21 +02:00
Kim Alvefur
e3836f22e0 util.sqlite3: Skip prepared statements when no parameters are given
Seems CREATE INDEX is unhappy as a prepared statement. Perhaps because
the table has not been COMMIT-ed yet?
2022-08-01 17:25:40 +02:00
Kim Alvefur
1261dfba9f luacheck: Shut up (backports 3caff1f93520, ignores module deleted in trunk) 2022-05-30 17:34:58 +02:00
Kim Alvefur
89359b70dc util.datamapper: Improve handling of schemas with non-obvious "type"
The JSON Schema specification says that schemas are objects or booleans,
and that the 'type' property is optional and can be an array.

This module previously allowed bare type names as schemas and did not
really handle booleans.

It now handles missing 'type' properties and boolean 'true' as a schema.
Objects and arrays are guessed based on the presence of 'properties' or
'items' field.
2022-07-08 17:32:48 +02:00
Kim Alvefur
e700edc50f util.jsonschema: Fix validation to not assume presence of "type" field
MattJ reported a curious issue where validation did not work as
expected. Primarily that the "type" field was expected to be mandatory,
and thus leaving it out would result in no checks being performed.
This was likely caused by misreading during initial development.

Spent some time testing against
https://github.com/json-schema-org/JSON-Schema-Test-Suite.git and
discovered a multitude of issues, far too many to bother splitting into
separate commits.

More than half of them fail. Many because of features not implemented,
which have been marked NYI. For example, some require deep comparisons
e.g. when objects or arrays are present in enums fields.

Some because of quirks with how Lua differs from JavaScript, e.g. no
distinct array or object types. Tests involving fractional floating
point numbers. We're definitely not going to follow references to remote
resources. Or deal with UTF-16 sillyness. One test asserted that 1.0 is
an integer, where Lua 5.3+ will disagree.
2022-07-08 14:38:23 +02:00
Kim Alvefur
d5e749bc8a util.startup: Fix async waiting for last shutdown steps
Observed problem: When shutting down prosody would immediately exit
after waiting for s2s connections to close, skipping the last cleanup
events and reporting the exit reason and code.

This happens because prosody.main_thread is in a waiting state and
queuing startup.shutdown is dispatched trough the main loop via
nexttick, but since the main loop was no longer running at that point it
proceeded to the end of the prosody script and exited there.
2022-06-14 16:28:49 +02:00
Kim Alvefur
d545540ae0 util.prosodyctl.check: Remove now redundant unbound config tweak
This is now done in net.unbound itself

Turning it back on in the config may still cause the problem of entries
there masking the DNS values.
2022-05-26 13:03:58 +02:00
Kim Alvefur
6a9efa5a52 util.jsonschema: Lua <5.3 compat here too 2022-05-09 22:39:05 +02:00
Kim Alvefur
d9de9b5627 util.jsonpointer: Fix Lua <5.3 compat 2022-05-09 22:36:57 +02:00
Kim Alvefur
d05af9f2b5 util.jsonpointer: Fix off-by-one in array resolution
Fixes #1753

Not known to be used anywhere
2022-05-08 18:04:50 +02:00
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