Commit graph

11371 commits

Author SHA1 Message Date
Kim Alvefur
cb489d06e1 util.datamanager: Add basic tests
Test all the things! Somewhat covered by the storagemanager tests, but
we don't currently don't have that automated as it needs SQL engines.
2021-02-09 23:25:30 +01:00
Kim Alvefur
ac2d84a47b util.datamanager: Support iterating over any file extension
The 'typ' argument to all other functions is the actual file extension,
but not here for some reason.

May need this for iterating over the .bin files created by
mod_http_file_share in the future.
2021-02-07 19:23:33 +01:00
Kim Alvefur
3fd016e66a core.certmanager: Add comments explaining the 'verifyext' TLS settings
Thanks to debacle for reminding me, in the context of mod_auth_ccert

I wonder if we still need lsec_ignore_purpose, Let's Encrypt seems to
include both client and server purposes in certs.
2021-02-06 22:12:38 +01:00
Kim Alvefur
cd1aadb52e mod_s2s: Clarify comment about unused TLS settings
Ref 115b5e32d960
2021-02-06 21:40:21 +01:00
Kim Alvefur
fdacac857f util.cache: Add test for :table (fails on Lua 5.1) 2021-02-05 16:14:06 +01:00
Kim Alvefur
196c9f070e mod_admin_shell: Add help section with (top level) MUC commands
These were previously only documented on the site.
2021-02-05 15:52:46 +01:00
Kim Alvefur
ca39262991 mod_admin_shell: Pretty-print HTTP endpoints in a human table
Attempted readability improvement
2021-02-03 23:46:13 +01:00
Kim Alvefur
bdb5e39f5c mod_admin_shell: Remove previous print() call
Accident involving Mercurial interactive commit
2021-02-03 23:47:59 +01:00
Kim Alvefur
d8d5ad3bea mod_admin_shell: List modules providing each HTTP endpoint 2021-02-03 23:31:34 +01:00
Kim Alvefur
a64ae4e8d5 mod_admin_shell: List global HTTP endpoints by default
Trick copied from the module commands
2021-02-03 23:28:02 +01:00
Kim Alvefur
d4986121ac scansion tests: Give a title to HTTP Upload test 2021-02-03 22:13:33 +01:00
Kim Alvefur
2845337d4b mod_c2s: Reflect stream 'from' attribute back if set (fix #1625)
Clients should *not* be setting this before TLS anyways.
2021-02-03 21:41:45 +01:00
Kim Alvefur
41e4648d27 util.xmppstream: Ensure stream 'id' is always present (fix #1626)
Backout c2d144d3f8dd
2021-02-03 16:14:43 +01:00
Kim Alvefur
cdbb77ccbf mod_http_file_share: Collect cache hit/miss statistics for downloads 2021-02-02 22:16:20 +01:00
Kim Alvefur
e45dee37bd mod_http_file_share: Measure how long it takes to prune expired files 2021-02-02 22:11:53 +01:00
Kim Alvefur
da5cd9c963 mod_http_file_share: Collect statistics of files uploaded 2021-02-02 22:08:51 +01:00
Kim Alvefur
0f0d32d335 mod_storage_sql: Implement map-like API for archives
Used by mod_http_file_share, muc moderation, etc.

Tests tweaked because they failed on stanza internals that happen
becasue of re-serialization. Namespaces differ since inheritance is
implicit when building but explicit after parsing.
2021-02-01 12:47:05 +01:00
Kim Alvefur
f307825a01 storage: Test reverse-ordered queries 2021-02-01 12:17:56 +01:00
Kim Alvefur
72cecbe03c util.adhoc: Propagate error with producing initial initial data
Bonus: Allow use of util.error tables
2021-01-31 21:10:03 +01:00
Kim Alvefur
8711e2bedc adhoc.lib: Tweak to allow using util.error objects
Since util.stanza supports util.error objects via duck-typing and adhoc
errors look enough like util.error objects, they should able to pass as
such.  This will allow converting adhoc commands to use util.error.
2021-01-31 21:11:55 +01:00
Kim Alvefur
5d9802727b mod_http_file_share: Reorder arguments
'filetype' is optional, so having it last seems sensible.
'slot' is pretty important, so moving it earlier seems sensible.
2021-01-31 20:38:40 +01:00
Kim Alvefur
f5baa83714 mod_http_file_share: Update cached value while it is reasonably fresh
This should ensure that cache entries until the oldest file that counted
to the last 24h becomes older than 24h.
2021-01-31 17:44:19 +01:00
Kim Alvefur
864708efb7 mod_http_file_share: Cache quotas to avoid hitting storage 2021-01-31 17:56:49 +01:00
Kim Alvefur
855542e2ca mod_http_file_share: Split out some variables for later reuse 2021-01-31 17:56:35 +01:00
Kim Alvefur
4d3ffbf0f7 mod_http_file_share: Add support for daily upload quotas.
Daily instead of total quotas, should be more efficient to calculate.
Still O(n), but a smaller n. Less affected by total retention period.
2021-01-31 14:43:42 +01:00
Kim Alvefur
b1b3f09a5c mod_http_file_share: Add missing semicolon
Last comma or semicolon isn't required but makes the diffs nicer once
you add another item after it.
2021-01-31 14:41:56 +01:00
Kim Alvefur
4e7f5bd396 CHANGES: Clarify what mod_mimicking does 2021-01-30 20:23:52 +01:00
Kim Alvefur
1998e74fd4 mod_http_file_share: Clarify log message
No expired ... what? Could be inferred from the module logging it, but
better to be explicit.
2021-01-30 17:35:13 +01:00
Kim Alvefur
ab5456a635 doap: Fix off by 200 in RFC number 2021-01-30 01:18:33 +01:00
Kim Alvefur
da0482b226 mod_tls: Ignore lack of STARTTLS offer only when s2s_require_encryption set 2021-01-29 23:23:25 +01:00
Kim Alvefur
eb9e818e43 mod_tls: Attempt STARTTLS even if not advertised as per RFC 7590 2021-01-29 23:17:08 +01:00
Kim Alvefur
9dfdf56ca2 doap: Move comment into <implements> it comments on 2021-01-29 23:14:48 +01:00
Kim Alvefur
a262f03ca7 mod_mam: Remove obsolete queryid attribute from tests 2021-01-29 17:08:16 +01:00
Kim Alvefur
5761d5a680 mod_mam: Remove obsolete 'queryid' attribute from iq-result (thanks paul)
Mentioned in xmpp:xsf@muc.xmpp.org?join
2021-01-29 17:01:05 +01:00
Kim Alvefur
88ce2f1c94 mod_http_file_share: Indicate missing token via WWW-Authenticate header 2021-01-29 15:34:36 +01:00
Kim Alvefur
610278afa0 mod_http_file_share: Clarify message about missing Authorization header 2021-01-29 15:34:15 +01:00
Kim Alvefur
0289a561e6 mod_http_file_share: Allow started uploads to complete after token expired
Otherwise uploads taking longer than 5 minutes would be rejected on
completion, and that's probably annoying.

Thanks jonas’
2021-01-28 17:24:37 +01:00
Kim Alvefur
fab6ebb1e6 mod_http_file_share: Serve configurable set of safe mime types inline (thanks jonas’)
Otherwise people complain about browser 'Save as' dialog.
2021-01-28 17:13:49 +01:00
Kim Alvefur
22e4d92ce5 mod_http_file_share: Cache file metadata
For faster access by avoiding archive ID.

No benchmarks were harmed in the making of this commit.

... no benchmarks were performed at all.
2021-01-28 16:34:13 +01:00
Kim Alvefur
318d357557 mod_http_file_share: Extract all file properties into variables earlier
A step towards adding caching, which will unpack into the same
variables.
2021-01-28 16:23:38 +01:00
Kim Alvefur
217450a727 mod_http_file_share: Fix the obligatory misplaced closing bracket (thanks scansion) 2021-01-27 23:38:14 +01:00
Kim Alvefur
2cff8727c7 mod_http_file_share: Insert pauses to avoid blocknig for long periods
Similar to the mod_mam cleanup job
2021-01-27 22:10:11 +01:00
Kim Alvefur
395de7cde5 mod_http_file_share: Add support for removing old files (default 2 weeks) 2021-01-27 22:09:26 +01:00
Kim Alvefur
da882b75ab mod_http_file_share: More security headers 2021-01-27 19:51:36 +01:00
Kim Alvefur
6ce4972bf4 mod_http_file_share: Strip authorization type prefix a bit earlier 2021-01-27 18:26:24 +01:00
Kim Alvefur
3abab1efc3 mod_http_file_share: Factor out function for generating full filename 2021-01-27 18:13:15 +01:00
Kim Alvefur
17a85e6d3b mod_http_file_share: Use '.bin' file extension
Distinct from '.dat' used by datamanager / internal stortage for Lua
object storage so that they can't easily be loaded by accident that way.
2021-01-27 17:48:12 +01:00
Kim Alvefur
e4a97b8e7a mod_http_file_share: Validate file size early in HTTP PUT request 2021-01-27 17:47:04 +01:00
Kim Alvefur
93494930ea mod_http_file_share: Move Authorization type string
It belongs with the header more than the token itself
2021-01-27 17:34:48 +01:00
Kim Alvefur
943dc18486 mod_http_file_share: Add some logging 2021-01-27 17:29:26 +01:00