Kim Alvefur
a166ab719c
net.server_epoll: Log some noise before TLS handshake step
...
This would help pinpoint if a crash happens during the handshake, which
has occurred a few times, e.g. like https://github.com/brunoos/luasec/issues/75
2020-05-22 15:20:19 +02:00
Kim Alvefur
7d924c49ac
net.http: Return a Promise if no callback is given
2020-05-06 18:03:20 +02:00
Kim Alvefur
9bc378f662
Merge 0.11->trunk
2020-04-26 20:49:31 +02:00
Kim Alvefur
4f2548e8ef
net.http.server: Use error code from util.error ( fixes #1502 )
...
Oversight in 955e54e451dc when this was added.
2020-04-12 22:57:14 +02:00
Kim Alvefur
522e9778ea
net.dns: Handle being loaded outside of Prosody
...
`if timer ...` suggests that this was intended, but it did not work
because net.timer depends on net.server which refuses to be loaded
outside of Prosody.
2020-02-24 20:21:46 +01:00
Kim Alvefur
dce92c437a
net.resolvers.service: Fix resolving of targets with multiple IPs
...
Each basic resolver was only used once and not kept around to try any
IP addresses but the first one found.
2020-02-16 23:48:31 +01:00
Kim Alvefur
61b6b340b1
net.server_epoll: Reduce log level of TLS handshake errors to debug
...
These are triggered all the time by random HTTPS connections, so they
are mostly just useless noise. When you actually do need them, you
probably have debug logging enabled too, since these messages are fairly
useless without more context.
2020-02-15 16:43:18 +01:00
Kim Alvefur
0f96c438e5
net.server_epoll: Different error to distinguish connection timeout
...
This mirrors what server_event does.
2020-02-01 00:33:08 +01:00
Kim Alvefur
6137789b45
net.resolvers.basic: Fix continuing if IPv6 or Legacy IP is disabled
...
The code expects ready() to be called twice, but with IPv4 or v6
disabled it would only be called once.
2020-01-26 14:35:35 +01:00
Matthew Wild
d1fbb9197f
net.resolvers.basic: Obey extra.use_ipv4/use_ipv6
2020-01-25 14:38:17 +00:00
Matthew Wild
c5fcad823a
Backed out changeset 44ef46e1a951 (not optimal API)
2020-01-25 14:25:29 +00:00
Matthew Wild
b20f96afc1
net.resolvers.basic: Obey use_ipv4/use_ipv6
2020-01-25 14:03:30 +00:00
Matthew Wild
5ac8804435
net.adns: Add :lookup_promise() method
2020-01-24 13:50:02 +00:00
Matthew Wild
d3a6636c1c
net.connect: Add API to create custom connect()s with options, incl. use_ipv[46]
2020-01-24 13:48:49 +00:00
Kim Alvefur
20ad50db57
net.server_epoll: Log error about missing *all* callbacks at 'error' level
2020-01-12 20:36:21 +01:00
Kim Alvefur
4a424901c6
net.server_epoll: Log errors caught in listeners on 'error' level
2020-01-12 20:36:04 +01:00
Kim Alvefur
deedb80ea4
net.server_epoll: Add option for reducing debug logging
...
Sometimes all these things just drown out the logs you are interested
in with low-level socket noise.
Enabled since it's still new and experimental.
2020-01-12 20:35:04 +01:00
Kim Alvefur
25ce791b75
net.server_epoll: Collect full traceback from errors in listeners
2020-01-05 02:29:31 +01:00
Kim Alvefur
48bb417812
net.http.parser: Add TODO related to #726
2020-01-01 01:22:57 +01:00
Kim Alvefur
d20b12c208
net.server_epoll: Avoid concatenating buffer with single item
...
Saves creating a string that'll be identical to buffer[1] anyways, as
well as a C function call. Depending on Lua version and length of the
string, this could be reusing an interned string, but a longer one would
probably be duplicated for no reason.
Having exactly one item in the buffer seems like it would be fairly
common, but I have not done an extensive study. If opportunistic writes
are enabled then it will be even more likely.
This special case could be optimized like this in table.concat but it
does not look like it is.
2019-12-28 06:18:58 +01:00
Kim Alvefur
61273591cd
net.server_event: Silence luacheck warnings
2019-12-23 21:52:28 +01:00
Kim Alvefur
c3d1266e34
net.server_epoll: Remove an unused variable [luacheck]
2019-12-23 21:51:52 +01:00
Kim Alvefur
248ec3f834
net.http.parser: Silence warning about unused variable [luacheck]
2019-12-23 21:29:34 +01:00
Kim Alvefur
87d0125802
util.error: Move default for numeric error code to net.http.server
...
Stanza errors can also have numbers but these are a legacy thing and
rarely used, except in MUC. HTTP errors on the other hand always have a
number.
2019-12-14 20:28:44 +01:00
Kim Alvefur
9a041bb926
net.server_epoll: Use monotonic time for scheduling
...
Timer API of passing wallclock time remains
2019-12-08 14:26:32 +01:00
Kim Alvefur
654d9817ad
net.server_epoll: Change timer rescheduling method to match util.timer
...
Relative to current time instead of absolute time, in preparation for
switching to monotonic time.
2019-12-08 14:20:56 +01:00
Kim Alvefur
158be3a8f1
net.server_epoll: Remove unused function for adding timer at absolute time
...
This won't make sense if we switch to monotonic time
2019-12-08 13:40:42 +01:00
Kim Alvefur
d84a2484dc
net.server_epoll: Add debug logging for delayed reading
...
In :onreadable, if there is still buffered incoming data after reading
from the socket (as indicated by the :dirty method, usually because
LuaSocket has an 8k buffer that's full but it read a smaller amount),
another attempt to read is scheduled via this :pausefor method. This is
also called from some other places where it would be pointless to read
because there shouldn't be any data.
In the delayed read case, this should report that the socket is "dirty".
If it reports that the socket is "clean" then the question is where
the buffer contents went?
If this doesn't get logged after the scheduled time (0.000001s by
default) then this would suggests a problem with timer or scheduling.
2019-12-07 19:05:10 +01:00
Kim Alvefur
9d5c3cb856
net.connect: Mention RFC 6724 regression
...
Default Address Selection algorithm is not applied, resulting in a
strong bias towards IPv4.
2019-12-07 17:39:29 +01:00
Kim Alvefur
40ffc88bad
net.connect: Add some TODOs and FIXMEs
...
And mention issue numbers: #1246 , #1428 and #1429
2019-12-07 17:05:00 +01:00
Kim Alvefur
be74ecddca
net.server_select: Remove prefix added to TLS handshaker errors
...
For consistency. None of the other implementations do this.
2019-12-01 01:21:58 +01:00
Kim Alvefur
e354f1abd8
net.http: Set ALPN on requests
...
Shouldn't hurt. Revert if it turns out it does.
Supported in LuaSec 0.8. Should be ignored otherwise.
2019-11-29 23:25:59 +01:00
Matthew Wild
09cdcfc0a1
net.websocket: Fix traceback in case of ondisconnect being called twice
...
We want to figure out what situations the double ondisconnect happens in, and
aim to fix the root cause in the future.
2019-11-26 15:29:01 +00:00
Kim Alvefur
e8f099babc
net.connect: Add some TODO comments
2019-11-26 00:12:51 +01:00
Kim Alvefur
10aa40227b
Merge 0.11->trunk
2019-11-24 04:46:36 +01:00
Kim Alvefur
ae03335f0b
net.resolvers.service: Pass IP literals directly to basic resolver
...
IP literals will not work with SRV records anyways.
Fixes s2s with IP literals.
2019-11-24 04:43:14 +01:00
Kim Alvefur
c3581958f7
net.resolvers.basic: Normalise IP literals, ensures net.server is happy
2019-11-24 04:41:07 +01:00
Kim Alvefur
42b9614fe2
Merge 0.11->trunk
2019-11-24 04:30:32 +01:00
Kim Alvefur
9c9722935a
net.resolvers.basic: Fix resolution of IPv6 literals (in brackets) ( fixes #1459 )
2019-11-24 04:26:44 +01:00
Kim Alvefur
7c056be161
net.resolvers.basic: Move IP literal check to constructor
...
This is to prepare for fixing #1459 . An IPv6 literal in [ ] brackets
does not pass IDNA and resolving it fails there.
2019-11-24 04:23:51 +01:00
Kim Alvefur
970ac1aa6c
net.server_epoll: Save log tag in a field on FD watchers too
...
As with 0e1701197722
2019-11-17 23:47:31 +01:00
Kim Alvefur
7dc9926e11
Back out c8aa66595072: Extra changes accidentally included
2019-11-17 23:45:44 +01:00
Kim Alvefur
7b8100dc08
net.server_epoll: Save log tag in a field on FD watchers too
...
As with 0e1701197722
2019-11-17 23:27:48 +01:00
Kim Alvefur
2a8b031b75
net.resolvers: Fix traceback from hostname failing IDNA
...
Related to #1426
2019-11-08 00:54:56 +01:00
Kim Alvefur
9c2a74d09c
net.resolvers: Abort on hostnames not passing IDNA validation
...
Prevents error on trying to use nil.
Needs better error reporting in the future.
2019-11-02 19:36:19 +01:00
Kim Alvefur
ba431b5efc
net.resolvers: Apply IDNA conversion to ascii for DNS lookups ( fixes #1426 )
2019-11-02 19:24:26 +01:00
Kim Alvefur
c9b83c4668
net.server_epoll: Improve read timeout debug messages
2019-10-19 20:11:21 +02:00
Kim Alvefur
b87fbcd1e0
net.server_epoll: Clarify a debug message
...
Writing what? The data that's been buffered for writing
2019-10-19 20:10:14 +02:00
Kim Alvefur
ecb6218ce7
server_event: Remove duplicated code (thanks waqas)
...
readcallback() calls onreadtimeout() and runs the exact same code if
onreadtimeout() doesn't return true, which it doesn't do.
2019-11-13 22:34:25 +01:00
Kim Alvefur
03197f584d
Merge 0.11->trunk
2019-11-08 00:58:03 +01:00