Commit graph

59 commits

Author SHA1 Message Date
Matthew Wild
8005ac825f mod_websocket: Merge session close handling changes from mod_c2s (bug fixes)
This should bring some fixes and general robustness that mod_websocket had
missed out on. The duplicated code here is not at all ideal. To prevent this
happening again, we should figure out how to have the common logic in a single
place, while still being able to do the websocket-specific parts that we need.

The main known bug that this fixes is that it's possible for a session to get
into a non-destroyable state. For example, if we try to session:close() a
hibernating session, then session.conn is nil and the function will simply
return without doing anything. In the mod_c2s code we already handle this, and
just destroy the session. But if a hibernating websocket session is never
resumed or becomes non-resumable, it will become immortal!

By merging the fix from mod_c2s, the session should now be correctly
destroyed.
2025-03-11 18:44:40 +00:00
Kim Alvefur
68296b6a8e mod_bosh,mod_websocket: Don't load mod_http_altconnect in global context
It blocked loading on VirtualHosts since it was already loaded globally

Thanks eTaurus
2025-02-22 21:45:34 +01:00
Matthew Wild
573e9f2716 mod_bosh, mod_websocket: Add soft dependency on mod_http_altconnect 2025-02-16 13:32:59 +00: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
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Matthew Wild
4dcabd36ce mod_websocket: Fire pre-session-close event (fixes #1800)
This event was added in a7c183bb4e64 and is required to make mod_smacks know
that a session was intentionally closed and shouldn't be hibernated (see
fcea4d9e7502).

Because this was missing from mod_websocket's session.close(), mod_smacks
would always attempt to hibernate websocket sessions even if they closed
cleanly.

That mod_websocket has its own copy of session.close() is something to fix
another day (probably not in the stable branch). So for now this commit makes
the minimal change to get things working again.

Thanks to Damian and the Jitsi team for reporting.
2023-02-20 18:10:15 +00: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
e2f8d0b70f mod_websocket: Only enable host-agnostic HTTP routing when enabled globally
This way the host-agnostic http://*:5280/ handler is not enabled, but
BOSH can still be used with any local VirtualHost

Ref #1712
2022-02-04 17:59:42 +01:00
Kim Alvefur
ef6cb64b9e mod_c2s,etc: Identify stanza object with appropriate function
Better than duck typing, in case anyone ever passes a non-stanza table
with a 'name' field.
2021-10-24 15:17:01 +02:00
Kim Alvefur
e7df432614 mod_bosh,mod_websocket: Make into global-shared modules (...again)
Global modules aren't quite considered loaded onto hosts, which
causes confusion in some cases. They are also reported in the log as
being served on http://*:5280/foo which is also a bit confusing, and
can't be clicked.

Global modules also have to have their paths configured in the global
section, which could be confusing and unexpected.

This global+shared method should be the best of both worlds.
2021-06-21 22:50:23 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Kim Alvefur
49d6a7a91f mod_websocket: Use mod_http_errors html template #1172
Same as the prior commit to mod_bosh
2021-02-21 06:20:55 +01:00
Kim Alvefur
231e87ab05 mod_websocket: Inherit security status from http request
Allows requests considered secure becasue of a proxy header to carry
over to the client session.

mod_bosh does this too.
2021-02-18 10:05:30 +01:00
Matthew Wild
bff06592c7 Merge 0.11->trunk 2020-09-29 15:30:48 +01:00
Matthew Wild
a481251b29 mod_websocket: Refactor frame validity checking, also check partially-received frames against constraints 2020-09-29 15:18:32 +01:00
Matthew Wild
71256641f4 mod_websocket: Continue to process data already in the buffer after an error occurs
Previously any error, or even a normal websocket close frame, would return early,
leaving potentially entire frames in the buffer unprocessed and then discarded.

This change stops processing new data, but returns an existing processed data up
to the point of the error/close.
2020-09-28 16:36:12 +01:00
Matthew Wild
364146dbb1 mod_websocket: Enforce stanza size limit and close stream 2020-09-17 16:42:36 +01:00
Matthew Wild
3c0924eee1 mod_websocket: Add separate limit for frame buffer size 2020-09-17 16:42:14 +01:00
Matthew Wild
a4e9e4815c mod_websocket: handle full frame buffer and raise stream error 2020-09-17 16:41:48 +01:00
Matthew Wild
5a1c206ece mod_websocket: Switch partial frame buffering to util.dbuffer
This improves performance and enforces stanza size limits earlier
in the pipeline.
2020-09-17 13:04:46 +01:00
Matthew Wild
2418c3fe43 mod_websocket: Fire event on session creation (thanks Aaron van Meerten) 2020-01-24 16:21:30 +00:00
Kim Alvefur
eb7a71a645 mod_websocket: Clear mask bit when reflecting ping frames (fixes #1484) 2020-01-02 10:49:37 +01:00
Matthew Wild
4c4e764e23 mod_c2s, mod_s2s, mod_component, mod_bosh, mod_websockets: Set default stanza size limits
c2s/bosh/ws streams will default to 256KB, s2s and components to 512KB.

These values are aligned with ejabberd's default settings, which should reduce
issues related to inconsistent size limits between servers on the XMPP network.

The previous default (10MB) is excessive for any production server, and allows
significant memory usage by even unauthenticated sessions.
2021-05-07 17:03:49 +01:00
Matthew Wild
ff9bdefc7e mod_bosh, mod_websocket: Add config options to override GET responses 2020-04-20 11:30:59 +01:00
Matthew Wild
634408ca29 mod_websocket: Fire event on session creation (thanks Aaron van Meerten) 2020-01-24 16:21:30 +00:00
Kim Alvefur
09aca12997 Merge 0.11->trunk 2020-01-02 10:52:47 +01:00
Kim Alvefur
bf5f096225 mod_websocket: Guard against upgrading to websocket from a HEAD request 2019-10-12 19:16:43 +02:00
Kim Alvefur
3204f55be1 mod_websocket: Clone stanza before mutating (fixes #1398)
Checking for `stanza.attr.xmlns == nil` to determine if the stanza
object is an actual stanza (`<message>`, `<presence>` or `<iq>` in the
`jabber:client` or `jabbber:server` namespace) or some other stream
element.

Since this mutation is not reverted, it may leak to other places and
cause them to mistreat stanzas as stream elements. Especially in cases
like MUC where a single stanza is broadcast to many recipients.
2019-07-20 04:19:58 +02:00
Kim Alvefur
f8d61d21e5 mod_websocket: Log an error if cross_domain_websocket = true is set in a VirtualHost section 2019-01-22 10:41:00 +01:00
Kim Alvefur
757051d913 mod_websocket: Include the value of cross_domain_websocket in debug message 2019-01-18 18:37:04 +01:00
Kim Alvefur
40b1e3e0ed plugins: Remove tostring call from logging
Taken care of by loggingmanager now

Mass-rewrite using lua pattern like `tostring%b()`
2019-07-30 02:29:36 +02:00
Kim Alvefur
0ddec30924 mod_websocket: Silence the one warning instead of ignoring the entire file 2018-09-30 17:55:13 +02:00
Kim Alvefur
eab76309e8 mod_websocket: Serve HTTP in global context 2018-09-22 00:02:16 +02:00
Matthew Wild
3754dac582 Merge 0.10 -> trunk
This commit intentionally drops changes from c2b99fa134b3
and 8da11142fabf which are based on older MUC code.
2018-05-16 23:50:08 +01:00
Kim Alvefur
2bd1debc3c mod_websocket: Transfer IP address derived by mod_http 2018-03-15 17:52:11 +01:00
Kim Alvefur
bd52588649 mod_websocket: Convert set to string (syslog sink needs a better fix) 2017-05-16 17:52:29 +02:00
Kim Alvefur
221809ea04 mod_websocket: Log state of cross domain set after changing it 2017-04-03 17:14:34 +02:00
Matthew Wild
23fad122e6 mod_websocket: Store the request object on the session for use by other modules 2018-05-08 07:11:33 +01:00
Kim Alvefur
fd19cd42b0 mod_websocket: Make open_stream method behave like the one from util.xmppstream 2017-03-02 03:03:25 +01:00
Kim Alvefur
f6e6bc0bd9 mod_websocket: Include xml:lang attribute on stream <open> (fixes #840) 2017-03-02 03:03:04 +01:00
Kim Alvefur
013b8292ab mod_websocket: Set connections starttls method to false to prevent mod_tls from offering starttls (fixes #837) 2017-02-25 02:15:15 +01:00
Kim Alvefur
715cc27ea2 Merge 0.11->trunk 2019-07-28 16:43:47 +02:00
Kim Alvefur
b151bd4d64 mod_websocket: Allow per-host cross_domain_websocket, defaulting to the base URL of the current host 2016-12-05 12:23:51 +01:00
Kim Alvefur
d1eb694c30 mod_websocket: Add the base URL of each host module is enabled on to 'cross_domain_websocket' 2016-12-05 12:23:41 +01:00
Kim Alvefur
bcf02d74c7 mod_websocket: Verify that the client-sent Origin header matches cross_domain_websocket (fixes #652) 2016-12-05 12:22:41 +01:00
Kim Alvefur
1ec77e632e mod_websocket: Use contains_token from util.http for checking if the requested WebSocket sub-protocols include XMPP 2016-12-04 11:57:26 +01:00
Kim Alvefur
f758fdb4d6 mod_websocket: Add some debug messages 2016-12-04 11:52:22 +01:00
Kim Alvefur
02919f0951 mod_websocket: Set FIN flag on ping frames (fixes #773) 2016-11-04 13:28:10 +01:00
Kim Alvefur
52a8bdb8f5 mod_websocket: Fix read timeout handler (thanks mt) 2016-04-06 14:44:51 +02:00