Commit graph

100 commits

Author SHA1 Message Date
Kim Alvefur
faed304d55 mod_http_file_share: Explicitly reject all unsupported ranges
Fail fast. Otherwise it sends the whole file.
2025-03-23 12:36:47 +01:00
Kim Alvefur
afd99708d6 mod_http_file_share: Fix off by one in Range response
See #1914
2025-03-23 12:21:19 +01:00
Kim Alvefur
780fd208bc mod_http_file_share: Improve error reporting by using util.error more
This should pass back the error message as well as the status code to
the client.
2025-03-16 15:20:45 +01:00
Matthew Wild
9bae17a0bb mod_http_file_share: Persist total storage usage when it increases (fixes #1891) 2025-02-15 17:10:30 +00:00
Kim Alvefur
664895700d mod_http_file_share: Revert 9c62ffbdf2ae
No, that wasn't running in a thread, but in a next tick timer.
2024-11-02 23:08:28 +01:00
Kim Alvefur
04a918233e mod_http_file_share: Fix expiry disabled check for new config API
Similar to 26c30844cac6
2024-04-08 16:44:11 +02:00
Matthew Wild
4263537301 luacheckrc, mod_http_file_share: Update for module API change (once->on_ready) 2023-11-30 10:14:17 +00:00
Kim Alvefur
320e215a79 mod_http_file_share: Retrieve stored total in async-friendly way
Does this run in a thread?
2023-10-14 22:43:39 +02:00
Kim Alvefur
df4bde023b mod_http_file_share: Switch to the new authz API (BC)
Behavior change: It becomes up to the authorization module whether to
allow requests. The default, mod_authz_internal, will allow users on the
*parent* host only, breaking use by some components.

Remaining question is whether to deprecate the `http_file_share_access`
setting or leave as a way to complement/bypass access control?
2023-09-16 14:23:08 +02:00
Kim Alvefur
99cca59d6e plugins: Handle how get_option_period returns "never" 2023-07-21 17:23:00 +02:00
Kim Alvefur
71ad48095d plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
1987a7411f plugins: Switch to :get_option_period() for time range options
Improves readability ("1 day" vs 86400) and centralizes validation.
2023-07-16 20:49:33 +02:00
Kim Alvefur
4e6ccdad96 mod_http_file_share: Put 'expires' back, thought it was unused
Removed in 536055476912 because it was not used anywhere else in the
file, but per the documentation it is meant to inform external upload
services of the expiry time of the upload itself.
2023-07-02 14:31:00 +02:00
Kim Alvefur
b6e5085b6a mod_http_file_share: Set slot token TTL so util.jwt validates expiry
Overrides the util.jwt default of 1h with the intended TTL of 10
minutes. Because util.jwt now has its own expiry checks, so the 'expiry'
field is no longer used and can thus be removed.
2023-06-28 17:17:20 +02:00
Jonas Schäfer
8e38a4740e mod_http_file_share: use util.human.io.parse_duration
Updated by Zash, the original patch by Jonas had put the duration
parsing function in util.datetime but MattJ later did the same thing but
differently in f4d7fe919969
2022-04-28 20:40:59 +02:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Matthew Wild
fd637bf6be mod_http_file_share: Use correct variable name (thanks riau.sni) 2022-09-04 10:01:57 +01:00
Matthew Wild
7a36d5edcf mod_http_file_share: Switch to new util.jwt API
Some changes/improvements in this commit:

  - Default token lifetime is now 3600s (from 300s)
  - Tokens are only validated once per upload
  - "iat"/"exp" are handled automatically by util.jwt
2022-07-11 13:49:47 +01:00
Matthew Wild
f19f1088b7 mod_http (and dependent modules): Make CORS opt-in by default (fixes #1731)
The same-origin policy enforced by browsers is a security measure that should
only be turned off when it is safe to do so. It is safe to do so in Prosody's
default modules, but people may load third-party modules that are unsafe.

Therefore we have flipped the default, so that modules must explicitly opt in
to having CORS headers added on their requests.
2022-03-28 14:53:24 +01:00
Kim Alvefur
ca19260145 mod_http_file_share: Use alternate syntax for filename in Content-Disposition
The Lua string.format %q doesn't behave correctly for all characters
that should be escaped in a quoted-string. And who knows what effects
higher Unicode might have here.

Applying percent-encoding of filenames seems like the safest way to deal
with filenames, as well as being easier than implementing the actual
quoted-string transform, which seems complicated and I'm not even sure
it covers every possible character.

Filenames can safely be assumed to be UTF-8 since they are passed in an
attribute in the query without any escaping.
2022-01-29 16:11:38 +01:00
Kim Alvefur
ec9ec1b9a0 mod_http_file_share: Always measure total disk usage for statistics!
Metrics available or not depending on configuration is weird, even tho
it might be expensive to calculate and it's only really needed when
there is a global quota.

Default quota is set to infinity, which is essentially what it was.

Reports NaN if there is an error, which should count as over the
infinite default quota.
2022-01-11 04:15:29 +01:00
Kim Alvefur
8bef874d8f mod_http_file_share: Fix to take retention time into account
It was lost in 6f4790b8deec when switching to mod_cron.
2021-12-04 16:48:39 +01:00
Kim Alvefur
ce345d2908 mod_http_file_share: Improve consistency of terminology in logging
Prefer 'prune' over 'delete' since it more strongly implies removal of
excess.
2021-12-04 15:03:26 +01:00
Kim Alvefur
7a1198b727 mod_http_file_share: Rename variable for clarity 2021-12-04 15:03:52 +01:00
Kim Alvefur
3e7177a533 mod_http_file_share: Fix deletion counter
Before aa60f4353001 each loop had its own counter, seems incrementing of
one of them was lost. But only one is needed anyhow.
2021-12-04 14:28:04 +01:00
Kim Alvefur
d4f8f23818 mod_http_file_share: Back out 876e1b6d6ae4 2021-12-03 10:43:02 +01:00
Kim Alvefur
9950712ba3 mod_http_file_share: Recalculate total storage usage weekly instead of daily
Before mod_cron this job ran less frequently than the upload removal
job. Running them at the same frequency seems wasteful somehow, plus the
total should not drift away from the true value that fast.
2021-12-03 09:08:23 +01:00
Kim Alvefur
62ff00cd1f mod_http_file_share: Keep track of total storage use across restarts
The value needs to be known in order to determine if additional uploads
can be accepted.
2021-12-03 08:21:29 +01:00
Kim Alvefur
a3d8a25bdd mod_http_file_share: Fix measuring total storage use before it was known
Passing nil to the metrics system causes errors later.
2021-12-03 08:16:18 +01:00
Kim Alvefur
82f6358657 mod_http_file_share: Keep global storage use accurate longer.
Merging those loops removes the miscounting that would occur in case a
file could not be deleted, so no need to limit it to that case.
2021-11-30 00:55:54 +01:00
Kim Alvefur
d2f4a57bfc mod_http_file_share: Merge file expiry loops
Not sure what the benefit of two separate loops was, perhaps reduced
memory usage by allowing archive query state to be garbage collected
before moving on to deleting files. Never measured so probably not so.

This simplifies a bit.
2021-11-30 00:53:22 +01:00
Kim Alvefur
4836354fd0 mod_http_file_share: Limit query to time since last expiry
This is probably a bad idea, as files that could not be deleted for some
reason will not be tried again. I was just thinking of what the 'task'
argument could be used for.
2021-11-30 00:52:07 +01:00
Kim Alvefur
a70a8c4ffc mod_http_file_share: Switch to mod_cron for periodic tasks 2021-11-22 14:54:32 +01:00
Kim Alvefur
7a272b1670 mod_http_file_share: Move number coercion into util.dataforms 2021-10-25 21:45:06 +02:00
Kim Alvefur
092875aaec mod_http_file_share: Silence luacheck warning 2021-10-23 13:32:01 +02:00
Kim Alvefur
9335877898 mod_http_file_share: Clean up incomplete uploads
If the request fails in the middle then the file~ could be left behind
because no code was invoked to delete it then.  This gets rid of it when
the request is removed. It may still be left in case of an unclean
shutdown.
2021-10-23 01:53:07 +02:00
Kim Alvefur
aed2ada774 mod_http_file_share: Allow 'Authorization' header via CORS (thanks kawaii)
Can't find anything saying anything on whether this is needed or not.
kawaii reported that both Chrome and Firefox complained unless the
header was added to the list of allowed headers.
2021-10-20 23:06:07 +02:00
Jonas Schäfer
3e55057a85 mod_http_file_share: return 401 instead of 403 if authentication failed
This is as per the HTTP standards [1]. Thankfully, the REQUIRED
www-authenticate header is already generated by the code.

   [1]: https://datatracker.ietf.org/doc/html/rfc7235#section-3.1
2021-10-19 16:37:32 +02:00
Kim Alvefur
72e0ff88ba mod_http_file_share: Fix measuring how long periodic task take 2021-09-14 15:33:39 +02:00
Kim Alvefur
9af7bb723b mod_http_file_share: Measure current total usage
In order to allow monitoring. Especially as there's not much in the way
of hard numbers on how much space gets used.
2021-09-12 17:03:02 +02:00
Kim Alvefur
5392ef1dd6 mod_http_file_share: Fix traceback in global quota debug logging (thanks Martin)
Error in util.human.units.format because of B(nil) when the global quota
is unset.
2021-09-12 11:47:22 +02:00
Kim Alvefur
ae7f6c34f0 mod_http_file_share: Add optional global quota on total storage usage
Before, maximum storage usage (assuming all users upload as much as they
could) would depend on the quota, retention period and number of users.
Since number of users can vary, this makes it hard to know how much
storage will be needed.

Adding a limit to the total overall storage use solves this, making it
simple to set it to some number based on what storage is actually
available.

Summary job run less often than the prune job since it touches the
entire archive; and started before the prune job since it's needed
before the first upload.
2021-09-12 01:38:33 +02:00
Kim Alvefur
1904899421 mod_http_file_share: Update comment about x-frame-options
X-Frame-Options was replaced by the Content-Security-Policy
'frame-ancestors' directive, but Internet Explorer does not support that
part of CSP.

Since it's just one line it doesn't hurt to keep until some future
spring cleaning event :)
2021-06-20 16:30:24 +02:00
Kim Alvefur
2f7da2c6ea mod_http_file_share: Build list of measuring buckets for configured size limit
Creates buckets up to the configured size limit or 1TB, whichever is
smaller, e.g. {1K, 4K, 16K, ... 4M, 16M}
2021-06-08 13:33:40 +02:00
Kim Alvefur
a854ec1e4c mod_http_file_share: Handle out of bounds Range request
Turns out you can seek past the end of the file without getting an
error.

Also rejects empty range instead of sending the whole file.
2021-05-17 14:14:25 +02:00
Kim Alvefur
f5757cae7f mod_http_file_share: Support download resumption via Range requests
Only a starting point is supported due to the way response:send_file()
sends everything it gets from the provided file handle but does not have
any way to specify how much to read.

This matches what Conversations appears to be doing.
2021-05-16 16:52:59 +02:00
Kim Alvefur
ecd6b31eea mod_http_file_share: Include expiry time of the upload itself in token
Lets an external upload service know this so it can do expiry itself.
Could possibly have been calculated based on the token expiry or
issuance time, explicit > implicit.
2021-04-05 17:21:18 +02:00
Kim Alvefur
e590c9c92e mod_http_file_share: Include time of issuance in auth token
In case an external upload service wants to have the original creation
time, or calculate the token expiry itself.
2021-04-05 17:16:18 +02:00
Kim Alvefur
bb06c42b07 mod_http_file_share: Group related properties for readability 2021-04-05 17:15:12 +02:00
Kim Alvefur
f7131f81f2 mod_http_file_share: Log error opening file for writing
util.error.coerce() doesn't work well with iolib
2021-04-05 16:24:39 +02:00