Commit graph

190 commits

Author SHA1 Message Date
Kim Alvefur
869581384d net: Prefix module imports with prosody namespace 2023-03-17 16:23:12 +01:00
Kim Alvefur
88a2c1ffe0 net.server: Fix multiple return values
return foo and foo() crops multiple return values to a single one, so
any second return values etc were last, mostly error details.

Introduced in 7e9ebdc75ce4
2022-06-03 17:51:42 +02:00
Kim Alvefur
75a15e67f6 net.server_select: Restore dependency on LuaSec to soft for tests
server_select is used in e.g. storagemanager tests, and some of the CI
runners are lacking LuaSec, which resulted in failures.
2022-04-27 21:45:36 +02:00
Jonas Schäfer
9f7c3b9ba6 net: refactor sslconfig to not depend on LuaSec
This now requires that the network backend exposes a tls_builder
function, which essentially wraps the former util.sslconfig.new()
function, passing a factory to create the eventual SSL context.

That allows a net.server backend to pick whatever it likes as SSL
context factory, as long as it understands the config table passed by
the SSL config builder. Heck, a backend could even mock and replace the
entire SSL config builder API.
2022-04-02 11:15:33 +02:00
Jonas Schäfer
38346dd6f1 net: isolate LuaSec-specifics
For this, various accessor functions are now provided directly on the
sockets, which reach down into the LuaSec implementation to obtain the
information.

While this may seem of little gain at first, it hides the implementation
detail of the LuaSec+LuaSocket combination that the actual socket and
the TLS layer are separate objects.

The net gain here is that an alternative implementation does not have to
emulate that specific implementation detail and "only" has to expose
LuaSec-compatible data structures on the new functions.
2022-04-27 17:44:14 +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
33d00845e7 net.server_select: Fix traceback (thanks eta)
The `socket` here is unreferenced on disconnect.  Calling :resume_writes
after that causes an error when `addsocket()` tries to use it as a table
index.
2020-08-23 22:19:29 +02:00
Matthew Wild
ce129b96c7 net.server_select: Pass conn/handler to readbuffer/sendbuffer
The internal implementations don't use it, but this causes onreadable
and onwritable of watchfd to receive the conn as they do in other
backends.
2020-06-01 13:41:41 +01:00
Matthew Wild
30d3969c22 net.server_select: Ensure onconnect is always called before onincoming
This changes the code to call onconnect when the first data is sucessfully
read or written, instead of simply when the socket first becomes writable.

A writable socket can mean a connection error, and if the client already
sent some data it may get passed to onincoming before processing writable
sockets. This fixes the issue.
2020-06-01 13:38:47 +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
fb692a2ced net.server: Handle server name (SNI) as extra argument
Code added in 75d2874502c3, 9a905888b96c and adc0672b700e uses this field.

See #409 and #1408
2019-09-01 01:58:38 +02:00
Kim Alvefur
9afa1ac496 net.server: Accept and save an 'extra' field for client connections
This lets code attach some extra data to be attached to client
connections.
2019-09-01 01:55:55 +02:00
Kim Alvefur
f65c017ee1 Fix various spelling mistakes [codespell] 2019-05-03 20:54:24 +02:00
Kim Alvefur
e8f72c6d4f net.server_select: Fix write pause/resume functions
Nothing would happen if the write buffer was empty.

Also simplified the code because it took too long to understand what
`if _sendlistlen ~= tmp then` did.
2019-03-24 20:12:22 +01:00
Kim Alvefur
5d2608e150 net.server: Only add alternate SNI contexts if at least one is provided
Fixes use of <starttls/> when a client sends SNI, which would send no certificate otherwise.
2019-03-11 13:00:51 +01:00
Kim Alvefur
5fb7d2d35a net.server_select: SNI support (#409) 2019-03-10 19:32:33 +01:00
Kim Alvefur
3cb132326d net.server: New API for creating server listeners
server.listen(interface, port, listeners, options);
2018-09-13 21:16:37 +02:00
Kim Alvefur
255d4ba139 Merge 0.11->trunk 2018-11-18 01:30:20 +01:00
Kim Alvefur
589010b407 net.server_select: Fix IP validation to use correct variable (thanks quest)
Copy-paste mistake most likely. Not caught because server_select is ignored by luacheck.
2018-11-17 16:26:40 +01:00
Kim Alvefur
3899c7ac4b net.server: Add an API for holding writes of outgoing data 2018-10-25 15:12:59 +02:00
Kim Alvefur
5834d45f48 net.server_select: Still allow buffering outgoing data on write-locked connections 2018-10-28 17:11:18 +01:00
Kim Alvefur
556eddb791 net.server_select: Replace use of deprecated :lock_read in server.link 2018-10-28 17:08:50 +01:00
Kim Alvefur
55e3a7a8aa net.server_select: Deprecate :lock method
Exists only in server_select and I found nothing using it
2018-10-28 16:55:21 +01:00
Kim Alvefur
38ea739022 server_select: Fix :lock method
This always unlocks reading.

I don't believe this is used anywhere. server_event does not implement this.
2018-10-28 16:54:08 +01:00
Kim Alvefur
9fe357101e net.server_select: Move code from :lock_read into :pause and :resume 2018-10-28 16:53:10 +01:00
Kim Alvefur
7abfe39cc3 net.server_select: Deprecate connection:lock_read() method 2018-10-28 16:49:28 +01:00
Kim Alvefur
0ac9ea3a74 net.server: Swich method for connecting sockets with remotes
LuaSocket TCP sockets have have both :connect and :setpeername, which
are the exact same function, however UDP sockets only have :setpeername.
Switching to :setpeername allows most of this code to be generic wrt
TCP/UDP.
2018-10-12 17:36:34 +02:00
Kim Alvefur
2104ac9fb0 net.server: Remove socket constructor fallback
Should no longer be needed
2018-10-12 16:24:49 +02:00
Kim Alvefur
8a62a14e5d net.server: Require IP address as argument to addclient (no DNS names)
The net.connect API should be used to resolve DNS names first
2018-10-11 15:48:30 +02:00
Kim Alvefur
7a86af343f net.connect: Fix passing request table to new listener
This could be a return value from ondetach
2018-09-26 17:36:53 +02:00
Kim Alvefur
437fd63c6f net.server: Call a 'onattach' callback when replacing listeners 2018-09-26 14:25:59 +02:00
Kim Alvefur
24ff76428f net.server: Set default read timeout to 14 minutes (fixes #971) 2018-07-06 19:02:19 +02:00
Kim Alvefur
7fa2aa0007 net.server: Add watchfd, a simple API for watching file descriptors 2018-05-09 16:15:40 +02:00
Matthew Wild
4c4988ab3e net.server_select: Allow setquitting("once") to allow resuming the loop later 2018-04-10 20:40:07 +01:00
Kim Alvefur
3ec060fc0c Fix spelling throughout the codebase [codespell] 2018-02-04 01:51:25 +01:00
Matthew Wild
a4aeb103dd net.server_select: Better detection of errors for outgoing connections
On connection failure, a socket is marked readable and writable. So
to detect initial connection failures (connection refused, etc.) we
now watch for sockets becoming readable during initial connection,
and also read from readable sockets before writing to writable
sockets.

This should fix 'onconnect' being called for outgoing connections
that actually failed.
2018-02-23 15:30:00 +00:00
Kim Alvefur
728d74d8bf Merge 0.10->trunk 2016-11-26 20:11:03 +01:00
Kim Alvefur
cfa5d20793 Merge 0.9->0.10 2016-11-24 14:18:25 +01:00
Kim Alvefur
28ac8f6150 net.server_select: Prevent writes after a handler is closed (fixes #783 I hope) 2016-11-22 15:28:24 +01:00
Kim Alvefur
ccadcc9b47 Merge 0.10->trunk 2016-07-14 13:41:02 +02:00
Anton Shestakov
8028f46d24 net.server_select: remove unused one-letter loop variable [luacheck] 2016-07-14 18:49:38 +08:00
Kim Alvefur
7b3f79b2ec Merge 0.10->trunk 2016-07-08 22:01:10 +02:00
Anton Shestakov
7a87176df8 net.server_select: remove unused one-letter loop variables [luacheck] 2016-07-09 00:37:34 +08:00
Kim Alvefur
931549f781 Merge 0.10->trunk 2016-01-22 15:03:02 +01:00
Kim Alvefur
6116ba8cfb Merge 0.9->0.10 2016-01-22 14:49:05 +01:00
Kim Alvefur
2ed7876bea server_select: Add logging of when servers are paused and resumed 2016-01-22 02:00:43 +01:00
Kim Alvefur
c46a125d73 server_select: Pause and mark server as full if accepting a client fails (fixes #597) 2016-01-22 02:00:27 +01:00
Kim Alvefur
c2f7450809 server_select: Retry accepting clients from full servers after 10s (matches libevent behaviour) 2016-01-22 01:59:25 +01:00
Kim Alvefur
a1560114d0 server_select: Keep track of which server listeners are full 2016-01-22 01:58:39 +01:00
Kim Alvefur
1df83ddc8c Merge 0.10->trunk 2016-01-10 03:57:17 +01:00