Commit graph

55 commits

Author SHA1 Message Date
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Kim Alvefur
a4a008e046 util.xmppstream: Send <?xml?> declaration in same call as stream open
If network_settings.opportunistic_writes is enabled then this would
previously have resulted in two socket writes, and possibly two packets
being sent. This caused some issues in older versions of Gajim, which
apparently expected the stream opening in the first packet, and thus it
could not connect.

With this change and opportunistic_writes enabled, the first packet
should contain both the xml declaration and the stream open tag.
Without opportunistic_writes, there should be no observable change.

Tested with Gajim 1.1.2 (on same machine). Unsure if loopback behaves
differently than the network here.
2021-04-14 15:21:13 +02:00
Kim Alvefur
41e4648d27 util.xmppstream: Ensure stream 'id' is always present (fix #1626)
Backout c2d144d3f8dd
2021-02-03 16:14:43 +01:00
Matthew Wild
92cec56e97 util.xmppstream: Allow dynamically configuring the stanza size limit for a stream
This may be useful for any plugins that want to experiment with different policies
for stanza size limits (e.g. unauthenticated vs authenticated streams).
2021-05-10 17:03:27 +01:00
Matthew Wild
7cb3ec61d5 util.xmppstream: Mark bytes for stream closure as handled 2021-05-10 17:02:37 +01:00
Matthew Wild
d126ee88bc util.xmppstream: Reduce default xmppstream limit to 1MB 2021-05-10 16:44:55 +01:00
Matthew Wild
93c75744ca util.xmppstream: Explicitly release old parser object on stream reset 2018-07-31 15:42:45 +01:00
Matthew Wild
6fbe81217b util.xmppstream: Perfom validation of XML declaration parameters 2018-07-11 11:57:42 +01:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Kim Alvefur
1438a38845 util: Various minor changes to please [luacheck] 2017-11-10 05:42:32 +01:00
Kim Alvefur
1e86443ee7 util.xmppstream: Inherit xml:lang from stream to stanzas (fixes #1401) 2019-07-28 01:17:44 +02:00
Matthew Wild
a1bcc0b591 util.xmppstream: Remove namespace tracking, it's broken as implemented
The code fails to handle namespaces on the initial opening tag (when 'stanza' is nil). Fixing this
seems not worth the effort for a feature that is not being used.
2016-03-05 23:37:56 +00:00
Matthew Wild
dd37beeff9 util.stanza, util.xml, util.xmppstream: Add support for tracking defined namespaces and their prefix (stanza.namespaces), knowing/preserving prefix names is required for some applications (thanks daurnimator) 2015-12-08 23:15:42 +00:00
Kim Alvefur
eaa823a597 util.*: Remove use of module() function, make all module functions local and return them in a table at the end 2015-02-21 10:36:37 +01:00
Matthew Wild
878efeecd5 Merge 0.9->0.10 2014-08-28 09:23:24 +01:00
Kim Alvefur
6007de18c4 util.xmppstream: Don't include empty stream ID in stream header (got here from mod_c2s) 2014-08-27 13:00:04 +02:00
Matthew Wild
1bb5caff25 util.xmppstream: When error is 'no-stream', pass the received tagname to the error handler 2014-08-23 09:22:05 +01:00
Kim Alvefur
0c1de192ab util.xmppstream: Check for callback that may add stream header attributes 2014-04-18 07:50:44 +02:00
Kim Alvefur
e06966ee43 mod_c2s, mod_s2s, mod_component, util.xmppstream: Move all session:open_stream() functions to util.xmppstream 2014-04-10 13:13:07 +02:00
Matthew Wild
27b4049481 Merge 0.9->0.10 2014-04-02 17:41:38 +01:00
Matthew Wild
ae885de6a2 util.xmppstream: Also disable CharacterData merging after stream restarts 2014-04-02 14:31:19 +01:00
Matthew Wild
507456f883 util.xmppstream: Disable LuaExpat's buffering (if possible) 2014-04-02 11:05:41 +01:00
Matthew Wild
16a37370eb util.xmppstream: Implement stanza size limiting, default limit 10MB 2014-03-30 09:14:39 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Waqas Hussain
0767f24153 util.xmppstream: Include error stanza in error message if no error handler is available. 2013-01-26 03:39:18 +05:00
Waqas Hussain
19bcbcde9c util.xmppstream: Optimize attribute processing. 2012-01-25 11:54:12 +05:00
Waqas Hussain
36936e4b05 util.xmppstream: Have faith in the XML parser matching start and end tags. 2012-01-25 11:49:27 +05:00
Waqas Hussain
5b8670c951 util.xmppstream: Remove some unnecessary code. 2012-01-25 11:47:51 +05:00
Waqas Hussain
56975d6c63 util.dependencies, util.xmppstream: Move LuaExpat version checking to util.dependencies. 2011-11-22 02:13:42 +05:00
Waqas Hussain
0c22db44a1 util.xmppstream: A little cleanup. 2011-11-22 01:44:28 +05:00
Matthew Wild
8b41860d44 Merge 0.8->trunk 2011-06-05 01:54:06 +01:00
Waqas Hussain
57683f24cf util.xmppstream: Check to make sure parser.stop is present before calling it. 2011-06-05 01:57:43 +05:00
Matthew Wild
2af2499141 Merge 0.8->trunk 2011-06-02 15:28:41 +01:00
Matthew Wild
0193bc555b Merge 0.7->0.8 2011-06-02 15:28:12 +01:00
Matthew Wild
a4b6de0e0b Merge 0.8->trunk 2011-06-02 00:26:48 +01:00
Matthew Wild
0ffdcd1dd7 Merge 0.7->0.8 2011-06-02 00:26:23 +01:00
Matthew Wild
a587c56a9f util.xmppstream: Reject XML comments, processing instructions and (if supported by LuaExpat) DTDs. If not supported, log a warning. 2011-06-01 23:02:10 +01:00
Matthew Wild
ad47950b37 util.xmppstream: Reject XML comments, processing instructions and (if supported by LuaExpat) DTDs. If not supported, log a warning. 2011-06-01 23:02:10 +01:00
Waqas Hussain
fb331b2a58 util.xmppstream: Optimized stanza building by bypassing the stanza API. 2010-12-29 18:49:59 +05:00
Matthew Wild
bfc6ce8561 util.xmppstream: Allow stream_ns = "" for parsing streams with no xmlns 2010-12-21 14:44:13 +00:00
Matthew Wild
def542a8fe util.xmppstream: Allow stream_ns = "" for parsing streams with no xmlns 2010-12-21 14:44:13 +00:00
Matthew Wild
c662c73374 util.xmppstream: Expose ns_separator and ns_pattern 2010-12-07 19:19:05 +00:00
Matthew Wild
0c8d2cefc7 util.xmppstream: Expose ns_separator and ns_pattern 2010-12-07 19:19:05 +00:00
Waqas Hussain
f79be6e720 util.xmppstream: Fix logger name. 2010-12-03 01:03:52 +05:00
Waqas Hussain
00171e2bb5 util.xmppstream: Fix logger name. 2010-12-03 01:03:52 +05:00
Waqas Hussain
539b221189 util.stanza, util.xmppstream, core.xmlhandlers: Allow stanza.last_add to be nil, and set it nil by default. Saves a table allocation per-element. 20% faster stanza building. 2010-11-26 05:23:37 +05:00
Waqas Hussain
22ee83cf0c util.xmppstream: Preserve the stream content namespace on descendents of elements which are in another namespace. 2010-11-20 02:28:40 +05:00
Waqas Hussain
b7e51a203d Monster whitespace commit (beware the whitespace monster). 2010-10-16 23:00:42 +05:00
Waqas Hussain
0efcfb0a8a util.xmppstream: Removed some useless property assignments. 2010-08-03 20:05:58 +05:00