Commit graph

1494 commits

Author SHA1 Message Date
Matthew Wild
d405c11918 net.stun: Add xor-peer-address helper 2022-03-05 11:04:25 +00:00
Matthew Wild
ac06bd8c97 net.stun: Factor out address unpack, an operation common to multiple attributes 2022-03-05 11:03:44 +00:00
Matthew Wild
6e9d71259c net.stun: Name some more attributes from TURN 2022-03-05 11:00:08 +00:00
Matthew Wild
ab77f7fcdb net.stun: Add lookup table generation helper, reduces code duplication 2022-03-05 10:59:19 +00:00
Matthew Wild
572bff0087 net.stun: Hyphenate method names for consistency 2022-03-05 10:57:47 +00:00
Kim Alvefur
7579bee6bb net.stun: Use util.bitcompat to deal with bit module variances across Lua versions 2022-03-04 16:58:28 +01:00
Kim Alvefur
1f257ecbb4 net.stun: Use util.strbitop
Improves performance since the whole procedure is done in C
2022-03-04 16:55:32 +01:00
Matthew Wild
5cfe0d220d net.stun: New library that implements STUN/TURN parsing/serialization 2022-03-04 15:23:32 +00:00
Kim Alvefur
9fbf5bf7ad net.server_epoll: Disable verbose mode by default 2022-02-12 18:47:22 +01:00
Kim Alvefur
4441528b1f net.http: Allow using DANE via options or per request settings
Dare to enable by default?
2022-02-05 01:32:08 +01:00
Kim Alvefur
9f1af0be2e net.connect: Allow passing TLS context from resolver
Only allowing it to be passed directly makes it hard to combine plain
(i.e. starttls) and Direct TLS connections in the same connection
resolution procedure. But now we can, using chained resolvers!
2022-01-21 17:57:47 +01:00
Kim Alvefur
f31762a075 net.resolvers.chain: A resolver for combining other resolvers
Say if you wanted to try both _xmpp and _xmpps services
2022-01-21 17:56:20 +01:00
Kim Alvefur
e469d015af net.resolvers: Report DNSSEC validation errors instead of NoError
Thanks Martin bringing this case to attention
2021-12-28 14:58:09 +01:00
Kim Alvefur
a3ea469ed9 util.id: Adjust entropy levels, with rationales
Modules using ids for logging should not need the now pretty large
medium one.
2021-12-02 01:14:55 +01:00
Kim Alvefur
96b6f68b23 net.resolvers: Report when hostname fails IDNA
Not a particularly user-friendly error message, but better than "unable
to resolve service" and having no clue where it came from.
2021-12-07 21:43:36 +01:00
Kim Alvefur
05a9010c85 net.server_epoll: Ensure calls to :write() return something
With opportunistic writes enabled, writes can return what :onwritable()
returns, thus :onwritable() should return something sensible at each
spot.

Should prevent whatever caused
> Error writing to connection: (nil)
Tho this was probably harmless
2021-12-06 10:59:14 +01:00
Kim Alvefur
61348c0a7d net.server_epoll: Prevent loop attempting to send last data after close
If the connection is closed by the peer, any buffered data is given a
last chance to be sent (see f27b9319e0da). If the connection is Really
closed, no attempt to write will occur, instead epoll will raise the
error flag and :onreadable() will be invoked again, where it will try to
:close() again for the same reason, thus looping until the connection
somehow gets destroyed.

By clearing the _connected flag, the second time it passes :onreadable()
it should go directly to :destroy(), breaking the loop.

Thanks Link Mauve for reporting
2021-11-30 18:19:40 +01:00
Kim Alvefur
8ac98af8b8 net.server_epoll: Fix streaming downloads (thanks Menel)
ff4e34c448a4 broke the way net.http.server streams downloads from disk
because it made writes from the ondrain callback no longer reset the
want-write flag, causing the download to halt.

Writes from the predrain handler still must not trigger anything but
additions to the buffer, since it is about to do all the socket writing
already.
2021-11-19 15:45:01 +01:00
Kim Alvefur
4704104049 net.server_epoll: Try harder to avoid reentrant opportunistic writes
Opportunistic writes sure do complicate things. This is especially
intended to avoid opportunistic_writes from within the onpredrain
callback.
2021-11-18 16:21:43 +01:00
Kim Alvefur
068388d9c7 net.connect: Prefer last connection error over last resolver error
E.g. "connection refused" over one IP version instead of NoError for the
other IP version.
2021-11-13 13:32:43 +01:00
Kim Alvefur
93121127fa net.connect: Propagate last error message from resolvers
Previously it would only say "unable to resolve server" for all DNS
problems. While "NoError in A lookup" might not make much sense to
users, it should help in debugging more than the previous generic error.

Friendlier errors will be future work.
2021-11-12 16:52:55 +01:00
Kim Alvefur
2408c299f0 net.server_epoll: Process all queued events from epoll before timers
Should call timers less frequently when many sockets are waiting for
processing. May help under heavy load.

Requested by Ge0rG
2021-10-21 15:59:16 +02:00
Kim Alvefur
14c6c3dbf0 net.server_epoll: Prevent starttls on direct TLS connections
This is not a pretty way to signal this... but it is the current API

interface:inittls() is a new code path which did not go past the point
in interface:starttls() where it set starttls to false, leading mod_tls
to offer starttls on direct TLS connections

Thanks Martin for discovering.
2021-10-05 19:56:36 +02:00
Kim Alvefur
d22a31530a net.server_epoll: Separate handling of "closed" from other errors
The intent is to ensure 'ondisconnect' only gets called once, while
giving buffered outgoing data a last chance to be delivered via the
:close() path in case the connection was only shutdown in one direction.
2021-09-22 13:29:47 +02:00
Kim Alvefur
7e8a3af45f net.server_epoll: Skip attempt to flush write buffer when not connected
Before 22825cb5dcd8 connection attempts that failed (e.g. connection
refused) would be immediately destroyed.  After, it would schedule
another write cycle and then report 'ondisconnect' again when failing.

Thanks Martin for reporting
2021-09-22 11:27:55 +02:00
Kim Alvefur
da8329037d Merge 0.11->trunk 2021-09-20 15:51:43 +02:00
Kim Alvefur
24111569bb net.server_epoll: Add a hard deadline on shutdown to extra-fix #1670
Should ensure shutdown even if sockets somehow take a very long to get closed.
2021-09-20 14:38:08 +02:00
Kim Alvefur
6d5ff6d2be net.server_epoll: Close sockets added after shutdown signal (fixes #1670)
This should ensure that sockets get closed even if they are added after
the quit signal. Otherwise they may keep the server alive.
2021-09-20 14:42:18 +02:00
Kim Alvefur
b97b295d03 net.server_epoll: Fix indentation messed up in last merge
Seems to have happened in 6427e2642976, probably because of Meld
2021-09-17 12:42:04 +02:00
Kim Alvefur
c85afe7827 net.server_epoll: Don't immediately destroy upon getting closed on read
Instead try to write any remaining buffered data. If the write attempt
also fails with "closed" then there's nothing we can do and the socket
is gone.

This reverts what appears to be a mistakenly included part of c8aa66595072

Thanks jonas’ for noticing
2021-09-15 18:39:37 +02:00
Kim Alvefur
db40eba655 net.server_epoll: Try to make port number related methods sane
Previously it was unclear whether "client port" was the port that the
client connected to, or from. I hereby declare that the client port is
the source port and the server port is the destination port.

Incoming and outgoing connections can be distinguished by looking at
the_server reference, which only incoming connections have.
2021-09-12 15:47:06 +02:00
Kim Alvefur
6be7cf935f net.server_epoll: Fix to preserve ids of readded timers
Likely affected rescheduling but have no reports of this.

After readding a timer, it would have been issued a new id. Rescheduling
would use the previous id, thus not working.
2021-08-31 12:58:38 +02:00
Kim Alvefur
6322b7c97e net.server_select: Deprecate and warn about it
To be removed in the future, but not right now. Give the log warning a
chance to prod anyone who might have network_backend="select" in their
config first.

There's also things built on Verse which uses server_select.lua, which
will need to be updated somehow.
2021-09-03 17:46:55 +02:00
Kim Alvefur
627df9737c net.server: Pikc server_epoll as unconditional default
Previously it would have gone for server_select if util.poll was for
some reason not available, which should be never these days. And even if
it was, best to flush it out by throwing loud errors so users notice.
Then they can work around it by using select until we delete that one.
2021-09-03 17:39:00 +02:00
Kim Alvefur
598e93a600 net.server: Fall back to default backend from libevent instead of always select
Fixes that selecting libevent when unavaibalbe would fall back to select
instead of epoll, even if that's available.

This way, we only have to update it in once place when choosing a new
default.
2021-09-03 17:35:34 +02:00
Kim Alvefur
307e58cc75 net.server_epoll: Prevent removed timers from being readded
In a case like this the timer would not be readded:

addtimer(1, function(t, id)
	stop(id)
	return 1
end);
2021-08-31 13:34:08 +02:00
Kim Alvefur
4ddf47aaf0 Merge 0.11->trunk 2021-08-31 13:03:44 +02:00
Jonas Schäfer
52a9ddd22a net.http: fail open if surrounding code does not configure TLS
Previously, if surrounding code was not configuring the TLS context
used default in net.http, it would not validate certificates at all.

This is not a security issue with prosody, because prosody updates the
context with `verify = "peer"` as well as paths to CA certificates in
util.startup.init_http_client.

Nevertheless... Let's not leave this pitfall out there in the open.
2021-08-29 15:04:47 +02:00
Kim Alvefur
76189039ae net.server_epoll: Split, attempt to clarify dirty noise message
Only relevant because a "dirty" connection (with incoming data in
LuaSocket's buffer) does not count as "readable" according to epoll, so
special care needs to be taken to keep on processing it.
2021-08-16 20:15:38 +02:00
Kim Alvefur
d06ae16295 net.server: Add a predrain callaback just before writes
Allows sneaking in things in the write buffer just before it's sent to
the network stack. For example ack requests, compression flushes or
other things that make sense to send after stanzas or other things.
This ensures any additional trailing data sent is included in the same
write, and possibly the same TCP packet. Other methods used such as
timers or nextTick might not have the same effect as it depends on
scheduling.
2021-08-16 12:34:52 +02:00
Kim Alvefur
d4b9f814fe net.server_epoll: Improve efficiency of opportunistic writes
Should prevent further opportunistic write attempts after the kernel
buffers are full and stops accepting writes.

When combined with `keep_buffers = false` it should stop it from
repeatedly recreating the buffer table and concatenating it back into a
string when there's a lot to write.
2021-08-14 13:07:29 +02:00
Kim Alvefur
c506269ff5 Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
2021-07-27 00:13:18 +02:00
Kim Alvefur
f36531b53a net.adns: Prevent empty packets from being sent on "connect" (fix #1619)
Thanks Ge0rG for testing
2021-01-12 13:25:08 +01:00
Kim Alvefur
5cf3eea245 net.server_epoll: Fix off-by-one in 2c559953ad41
Thanks tmolitor
2021-01-10 14:54:03 +01:00
Kim Alvefur
861e5125c7 net.server_epoll: Ensure timers can't run more than once per tick
This makes sure that a timer that returns 0 (or less) does not prevent
runtimers() from completing, as well as making sure a timer added with
zero timeout from within a timer does not run until the next tick.

Thanks tmolitor
2021-01-08 21:57:19 +01:00
Kim Alvefur
00bad1a9fe net.websocket.frames: Use C string XOR implementation 2020-10-14 19:41:42 +02:00
Matthew Wild
518904b66c net.http.server: Don't send Content-Length on 1xx/204 responses, per RFC (fixes #1596) 2020-10-13 11:55:28 +01:00
Kim Alvefur
fb63187afc net.websocket.frames: Read buffer length correctly in Lua 5.1 (fix #1598)
COMPAT: The __len metamethod does not work with tables in Lua 5.1.

Both strings and util.dbuffer now expose their length as a :len()
method.
2020-10-12 20:21:18 +02:00
Matthew Wild
a0fb8d876f net.websocket.frames: Additionally return partial frame if there is one 2020-09-29 13:58:32 +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