Commit graph

51 commits

Author SHA1 Message Date
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
Kim Alvefur
41522cb84a mod_websocket: Send a ping on read timeout 2016-03-23 23:21:03 +01:00
Kim Alvefur
a50a9d99a0 mod_websocket: Remove warning about unsolicited pong frames "MAY be sent unsolicited" per RFC 6455 (thanks mt) 2016-03-23 14:31:35 +01:00
Kim Alvefur
4633eb56fb mod_websocket: Make sure stanza xmlns filter runs late in the chain 2016-03-18 00:08:33 +01:00
Kim Alvefur
bc5cd404ab mod_websocket: Silence luacheck warnings 2015-10-06 15:30:25 +02:00
Kim Alvefur
1aac758bba mod_websocket: Import util.timer and session close timeout config option (thanks fairuz) 2015-10-06 15:27:39 +02:00
Kim Alvefur
6481392488 mod_websocket: Import sessionmanager (fixes traceback) 2015-08-21 11:26:34 +02:00
Florian Zeitz
6806a3f7be mod_websocket: Initial commit (based on the prosody-modules version) 2014-09-05 03:47:39 +02:00
Kim Alvefur
2612e75c8a mod_bosh, mod_websocket: Remove accidentally included dependency on non-existant module 2019-01-19 20:03:04 +01:00