Commit graph

2463 commits

Author SHA1 Message Date
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
Kim Alvefur
812652818d util.startup: Use prosody. module namespace
Maybe we need some sort of lint for this?
2023-11-24 13:41:21 +01:00
Kim Alvefur
1e6027da6d util.async: Clip long line [luacheck] 2023-11-21 22:18:17 +01:00
Matthew Wild
9f06132513 util.async: Expose default runner function
This is purely for informational purposes, so it's possible to determine
externally whether a runner is using the default runner function (which
executes functions as work items) or a custom runner function.
2023-11-21 18:14:51 +00:00
Matthew Wild
ac680a900e util.async: Record current work item in the runner object
Mostly expected to be useful for debugging purposes.
2023-11-21 18:13:42 +00:00
Matthew Wild
9e43a7742a util.async: Improve debug logging in a few places
Knowing the state of the coroutine as well as the runner state can be helpful.
2023-11-21 18:12:49 +00:00
Matthew Wild
ab26786924 util.async: Export a table of currently-waiting runners
This can be used for debugging and introspection.
2023-11-21 18:11:40 +00:00
Kim Alvefur
e06c97ca52 util.prosodyctl.check: Disable https cert check if http_external_url set
This would indicate that a reverse proxy is used, which gets to be
responsible for that since it probably holds the actual cert.
2023-11-13 09:58:56 +01:00
Kim Alvefur
8dcd20725a util.prosodyctl.check: Check cert for HTTPS if http module enabled 2023-11-13 09:50:06 +01:00
Kim Alvefur
5146db2da0 util.prosodyctl.check: Update conditions for s2s cert checks
The 'anonymous_login' setting is deprecated and prosodyctl check config
will tell you to change it to 'authentication = "internal_hashed"', so
we shouldn't need to care about here anymore.
2023-11-13 09:44:40 +01:00
Kim Alvefur
8d137609a4 util.prosodyctl.check: Simplify conditions for c2s and s2s cert checks
This code is hard to follow and in need of some refactoring.
2023-11-13 09:43:54 +01:00
Kim Alvefur
3619de6000 util.uuid: Add UUIDv7
Allows sorting by id as a substitute for sorting by timestamp since it
has the timestamp in the encoded in the first part, and only things that
happen extremely close together may get out of order by such a sort,
which might not matter.

From draft-ietf-uuidrev-rfc4122bis formerly draft-peabody-dispatch-new-uuid-format
2021-08-15 14:44:21 +02:00
Kim Alvefur
99d2ebb731 util.prosodyctl.check: Try to clarify check for misplaced k=v in modules_enabled (thanks aab and Menel) 2023-11-11 21:33:53 +01:00
Matthew Wild
7dc676faad util.startup: Attempt to bring some order to startup/shutdown with util.fsm 2023-11-07 12:12:18 +00:00
Kim Alvefur
717ea33160 util.prosodyctl.check: Print DANE TLSA records for certificates
Not the prosodyctl check dane I wanted to make but a start.
2023-11-03 23:08:07 +01:00
Kim Alvefur
ab2dcd8007 util.prosodyctl.check: Wrap each check in a function
One small refactor but one huge step in the right direction

Mostly because adding another check would make the line checking for a
valid check exceed the column limit.
2023-11-03 22:16:53 +01:00
Kim Alvefur
94f9295042 util.datamanager: Clean up list index files on purge (i.e. user deletion) 2023-11-02 17:35:10 +01:00
Kim Alvefur
c6b9037235 Merge 0.12->trunk 2023-08-30 11:09:12 +02:00
Kim Alvefur
da3d755a15 util.prosodyctl.check: Correct modern replacement for 'disallow_s2s'
The code would have suggested adding to modules_enabled instead of
modules_disabled
2023-08-27 15:46:19 +02:00
Kim Alvefur
0fa9d6be37 util.array: Fix new() library function
Backport of ffe4adbd2af9 since new was added in the 0.12 branch
2023-07-22 16:31:05 +02:00
Kim Alvefur
a1f053229c util.array: Fix new() library function 2023-07-22 16:31:05 +02:00
Kim Alvefur
6aa08d7c58 util.sql: Remove unused String() and Integer() functions
According to MattJ, leftovers from an earlier vision for util.sql
2023-07-22 14:55:27 +02:00
Kim Alvefur
022159d0f0 util.sqlite3: Clean up unused variables
Many leftovers from the earlier version of util.sql this was based on
and cleanup applied there since then.
2023-07-22 14:54:17 +02:00
Kim Alvefur
8cf6d8d959 util.datamanager: Always reset index after list shift
Shifting the index does not work reliably yet, better to rebuild it from
scratch. Since there is minimal parsing involved in that, it should be
more efficient anyway.
2023-07-22 14:02:01 +02:00
Kim Alvefur
e6d0a3e639 util.datamanager: Add way to close indexed list store 2023-07-21 18:30:06 +02:00
Kim Alvefur
cd5b2664be util.datamanager: Close file handle when done using it
It gets closed eventually but at high load they could potentially
lead to reaching FD limits faster.
2023-07-21 18:28:54 +02:00
Kim Alvefur
1312963f73 util.datamanager: Disable blockwise removal
In desperate need of tests
2023-07-21 18:28:16 +02:00
Kim Alvefur
8699c98ad8 util.datamanager: Disable block alignment
Until we have more test coverage. Somehow the index becomes incorrect
after inserting padding, unclear why.
2023-07-21 18:03:22 +02:00
Kim Alvefur
683b90f871 util.prosodyctl.check: Hint about the 'external_addresses' config option 2023-07-17 14:56:57 +02:00
Kim Alvefur
43c39930c3 util.prosodyctl.check: Validate format of module list options
Should detect things like misplaced settings inside modules_enabled
2023-07-17 14:45:15 +02:00
Kim Alvefur
3f81654a66 util.prosodyctl.check: Get some config options via minimal moduleapi #896
The module API has certain coercion features that are useful.

Fixes traceback reported in #1812 and other duplicates
2023-07-17 14:03:13 +02:00
Kim Alvefur
a9eddf59a5 Merge 0.12->trunk 2023-07-17 14:57:27 +02:00
Kim Alvefur
1459e9cae9 Merge 0.12->trunk 2023-07-17 14:47:39 +02:00
Kim Alvefur
c222b08005 util.human.io: Fix stray 'stty' error by only querying width of real ttys
This adds a dependency on a binary and *nix-specific module but then
stty is probably *nix-specific anyway so maybe that's fine.
2023-07-16 21:21:37 +02:00
Kim Alvefur
cbed7dfdf5 util.array: Expose new() on module table
For consistency with other utils.

Consistency is good.
2023-06-10 12:14:12 +02:00
Kim Alvefur
e4d5c15396 util.prosodyctl.check: Fix error where hostname can't be turned into A label
Where gethostname or tohostname returns an invalid name, e.g. containing
underscores or something, to_ascii would reject this and return nil,
which triggers an error in the dns lookup.

Reported by prova2 in the chat, for whom tohostname returned a long name
containing underscores.
2023-05-31 14:08:19 +02:00
Kim Alvefur
57c3771614 util.error: Fix error on conversion of invalid error stanza, fix #1805
Error stanzas should have an <error> element, but if you pass a
stanza without one to util.error.from_stanza() it triggers an attempt to
index a nil value, which this patch avoids.

In the conditional, it should be safe to assume error_tag is non-nil
since condition can't have those values then.
2023-04-19 11:32:53 +02: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
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
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