Commit graph

9716 commits

Author SHA1 Message Date
Kim Alvefur
66f5741a5f MUC: Fix delay@from to be room JID (fixes #1416) 2019-08-31 16:08:45 +02:00
Kim Alvefur
708f1a00bf MUC: Advertise XEP-0410 support
Unsure if the feature was in the XEP at the time of 7c1cdf5f9f83
2019-07-30 08:01:22 +02:00
Kim Alvefur
74c233d119 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
23eb311e20 util.serialization: Cache default serialization instance (fixes #1389)
Most serialization uses still use the default serialize() and thus
duplicate much of the setup, which negates some of the performance
improvements of the rewrite.
2019-07-08 02:46:27 +02:00
Kim Alvefur
04384c44a0 net.server_epoll: Backport timer optimization 6c2370f17027 from trunk (see #1388)
The previous timer handling did not scale well and led to high CPU usage
with many connections (each with at least an read timeout).
2019-07-08 01:17:34 +02:00
Kim Alvefur
ad7fac4b3b scansion/blocking: Remove the right irrelevant thing 2019-06-20 22:25:46 +02:00
Kim Alvefur
0f582a5656 mod_blocklist: Remove unrelated tags from test case 2019-06-20 22:10:19 +02:00
Kim Alvefur
897031cde2 mod_blocklist: Trigger resend of presence when unblocking a contact (fixes #1380) 2019-06-20 21:20:00 +02:00
Kim Alvefur
51fb4278df mod_blocklist: Update test case with correct behavior (see #1380)
Expect failure
2019-06-20 21:18:46 +02:00
Kim Alvefur
85748bb15e mod_blocklist: Add test case capturing current behavior 2019-06-20 21:08:12 +02:00
Kim Alvefur
3b5c4ceac3 mod_pep: Revert 045209b41b3a, caused a regression
Adding in all presence based subscriptions in the broadcaster caused
resend_last_item() to unintentionally send out more notifications than
it should have.
2019-06-10 12:58:00 +02:00
Kim Alvefur
1cb7ec78b2 util.sql: Ignore if tables and indices already exist on creation (fixes #1064)
Tested with SQLite3 3.16.2 and 3.27.2 and Postgres 11.

MySQL does not support IF NOT EXISTS for indices so not handled here.
2019-05-30 23:50:28 +02:00
Kim Alvefur
c0263dfb30 mod_pep: Handle presence based subscription outside of util.pubsub (fixes #1372)
Subscriptions were updated for each incoming presence stanza from
contacts. Each subscription change triggered a configuration save, which
would filter out the presence based subscriptions and usually end up
replacing the existing data with identical data. With many subscribed
nodes this adds up to a fair bit of IO bound work that is avoided by
keeping them separate.
2019-05-30 15:16:56 +02:00
Kim Alvefur
c44c195f98 mod_muc_mam: Cache last date that archive owner has messages to reduce writes (fixes #1368) 2019-05-27 19:00:34 +02:00
Kim Alvefur
dc18bde7f1 mod_mam: Cache last date that archive owner has messages to reduce writes (fixes #1368) 2019-05-27 19:00:32 +02:00
Kim Alvefur
b15dfd7673 mod_announce: Check for admin on current virtualhost instead of global (fixes #1365) (thanks yc) 2019-05-27 12:05:35 +02:00
Kim Alvefur
93eb1dd57f util.random: Throw different error for EOL condition 2019-05-21 08:52:21 +02:00
Kim Alvefur
13e3b3fb15 util.random: Coerce error to string (thanks waqas)
In theory this could happen in an EOF condition, which should be
impossible with a read from /dev/urandom.
2019-05-18 18:51:25 +02:00
Kim Alvefur
b0459a771b util.random: Handle unlikely read errors from /dev/urandom (see #1313) 2019-05-18 17:28:21 +02:00
Kim Alvefur
15259577d1 mod_c2s: Associate connection with session last (fixes #1313)
This way, any fatal error in the callback will not leave a
half-established session.
2019-05-18 17:45:20 +02:00
Kim Alvefur
c71393e92a mod_storage_sql: Handle SQLite DELETE with LIMIT being optional (fixes #1359) 2019-05-13 14:39:38 +02:00
Kim Alvefur
bb5a09ed70 mod_storage_sql: Move code out of if-else chain 2019-05-13 14:47:41 +02:00
Kim Alvefur
85723ef847 configure: Handle lua being found in /bin (workaround for #1353) 2019-05-04 22:48:59 +02:00
Kim Alvefur
6dfc361a6c net.server_epoll: Restore wantread flag after pause (fixes #1354)
If a chunk of data has been received that is larger than the amount read
at a time, then the connection is paused for a short time after which it
tries to read some more. If, after that, there is still more data to
read, it should do the same thing. However, because the "want read" flag
is removed and was restored after the delayed reading, it would not
schedule another delayed read.
2019-05-04 04:23:35 +02:00
Kim Alvefur
33d32b5cb3 prosodyctl: Include version of LuaDBI in 'about' 2019-05-01 22:34:15 +02:00
Kim Alvefur
b8598a8cc0 util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348) 2019-04-24 16:16:19 +02:00
Kim Alvefur
d376e9b715 core.portmanager: Log debug message for each kind of TLS context created 2019-04-23 19:21:06 +02:00
Kim Alvefur
177edb1ea7 mod_tls: Log debug message for each kind of TLS context created
Creating TLS contexts triggers a lot of messages from certmanager that
don't really describe their purpose. This is meant to provide hints
about that.
2019-04-23 19:13:50 +02:00
Kim Alvefur
0664ef7a56 util.hashes: Use HMAC function provided by OpenSSL (fixes #1345) 2019-04-19 13:12:00 +02:00
Kim Alvefur
5f425e05a7 util.ip: Add missing netmask for 192.168/16 range (fixes #1343) 2019-04-14 02:06:20 +02:00
Kim Alvefur
5a7cfba3dd net.dns: Close resolv.conf handle when done (fixes #1342) 2019-04-13 18:16:28 +02:00
Kim Alvefur
fd450216ae net.server_epoll: Skip delayed continuation read on paused connections
This should prevent #1333 in cases where LuaSockets buffer is "dirty",
i.e. contains more data after a read, where it gets resumed with a
short delay.
2019-03-28 12:52:55 +01:00
Kim Alvefur
7e47a9ca35 net.server_epoll: Handle LuaSec wantread/wantwrite conditions before callbacks (fixes #1333)
This prevents the :set(true) call from resuming a connection that was
paused in the onincoming callback.
2019-03-28 12:31:14 +01:00
Kim Alvefur
aeb80ceaf3 mod_storage_memory: Implement :user iteration API 2019-01-14 00:17:02 +01:00
Kim Alvefur
b0ce62a146 mod_muc_mam: Copy cleanup mechanism from mod_mam (fixes #672) 2019-03-22 17:40:07 +01:00
Kim Alvefur
63edbfd83c mod_mam: Perform message expiry based on building an index by date (backport of 39ee70fbb009 from trunk)
For each day, store a set of users that have new messages. To expire
messages, we collect the union of sets of users from dates that fall
outside the cleanup range.

The previous algoritm did not work well with many users, especially with
the default settings.
2019-03-22 17:32:56 +01:00
Matthew Wild
feb226825d prosodyctl about: Report network backend in use 2019-03-14 08:09:49 +00:00
Kim Alvefur
2b590c273f mod_muc_mam: Add comment about the tricks done with the 'with' field 2019-03-04 12:58:20 +01:00
Kim Alvefur
432bb85528 mod_muc_mam: Move a comment to the line it describes 2019-03-04 12:57:42 +01:00
Kim Alvefur
200794a5ba mod_muc_mam: Strip the stanza 'to' attribute (fixes #1259) 2019-03-04 12:56:31 +01:00
Kim Alvefur
8562c36d07 util.pubsub: Validate node configuration on node creation (fixes #1328) 2019-03-03 19:31:56 +01:00
Kim Alvefur
cc90ec3243 mod_storage_memory: Generate ID using standard util (fixes #1326)
The previous method relied on tostring(table) returning the pointer address,
which might not be portable.
2019-03-02 22:26:01 +01:00
Kim Alvefur
cadf69bd9e spec: Add test case for #1322 2019-02-27 10:27:17 +01:00
Kim Alvefur
f07ce519f0 mod_storage_memory: Replace query function with one based on storage_internal (fixes #1322)
The :find method in storage_internal works and is easier to read and
understand. Future changes should be simpler to apply to both modules.
2019-02-27 10:20:38 +01:00
Kim Alvefur
129a2976d0 mod_pubsub: Simplify configuration for node data (see #1302) 2019-02-22 07:33:23 +01:00
Kim Alvefur
69de53a699 mod_pep: Simplify configuration for node data (fixes #1320) 2019-02-22 07:35:44 +01:00
Kim Alvefur
92c74add18 net.server_epoll: Rename handshake_timeout to ssl_handshake_timeout (fixes #1319)
This is to match server_event, see 430797a8fc81
2019-02-09 19:28:24 +01:00
Kim Alvefur
63fdb2a14b net.server_epoll: Use send_timeout for write timout like other implementations (fixes #1316) 2019-02-07 14:02:15 +01:00
Matthew Wild
56f163601d MUC: Add error message to error bounces when not joined to room 2019-02-04 09:27:43 +00:00
Kim Alvefur
9ea35767dd mod_pubsub: Support requests for multiple items (fixes #1305) 2019-01-28 01:41:42 +01:00