-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds TLS support. An abstraction for the redis transport `RedisTransport` has been added. The existing TCP transport has been moved in as an implementation `TCPTransport <: RedisTransport`. A new TLS transport has been added as `TLSTransport <: RedisTransport`. This can in future be extended to support unix sockets too (ref: #84) fixes: #87
- Loading branch information
Showing
12 changed files
with
650 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
struct TCPTransport <: RedisTransport | ||
sock::TCPSocket | ||
end | ||
|
||
read_line(t::TCPTransport) = readline(t.sock) | ||
read_nbytes(t::TCPTransport, m::Int) = read(t.sock, m) | ||
write_bytes(t::TCPTransport, b::Vector{UInt8}) = write(t.sock, b) | ||
Base.close(t::TCPTransport) = close(t.sock) | ||
function set_props!(t::TCPTransport) | ||
# disable nagle and enable quickack to speed up the usually small exchanges | ||
Sockets.nagle(t.sock, false) | ||
Sockets.quickack(t.sock, true) | ||
end | ||
get_sslconfig(::TCPTransport) = nothing | ||
io_lock(f, t::TCPTransport) = lock(f, t.sock.lock) | ||
function is_connected(t::TCPTransport) | ||
status = t.sock.status | ||
status == StatusActive || status == StatusOpen || status == StatusPaused | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
struct TLSTransport <: RedisTransport | ||
sock::TCPSocket | ||
ctx::MbedTLS.SSLContext | ||
sslconfig::MbedTLS.SSLConfig | ||
buff::IOBuffer | ||
|
||
function TLSTransport(sock::TCPSocket, sslconfig::MbedTLS.SSLConfig) | ||
ctx = MbedTLS.SSLContext() | ||
MbedTLS.setup!(ctx, sslconfig) | ||
MbedTLS.associate!(ctx, sock) | ||
MbedTLS.handshake(ctx) | ||
|
||
return new(sock, ctx, sslconfig, PipeBuffer()) | ||
end | ||
end | ||
|
||
function read_into_buffer_until(cond::Function, t::TLSTransport) | ||
cond(t) && return | ||
|
||
buff = Vector{UInt8}(undef, MbedTLS.MBEDTLS_SSL_MAX_CONTENT_LEN) | ||
pbuff = pointer(buff) | ||
|
||
while !cond(t) && !eof(t.ctx) | ||
nread = readbytes!(t.ctx, buff; all=false) | ||
if nread > 0 | ||
unsafe_write(t.buff, pbuff, nread) | ||
end | ||
end | ||
end | ||
|
||
function read_line(t::TLSTransport) | ||
read_into_buffer_until(t) do t | ||
iob = t.buff | ||
(bytesavailable(t.buff) > 0) && (UInt8('\n') in view(iob.data, iob.ptr:iob.size)) | ||
end | ||
return readline(t.buff) | ||
end | ||
function read_nbytes(t::TLSTransport, m::Int) | ||
read_into_buffer_until(t) do t | ||
bytesavailable(t.buff) >= m | ||
end | ||
return read(t.buff, m) | ||
end | ||
write_bytes(t::TLSTransport, b::Vector{UInt8}) = write(t.ctx, b) | ||
Base.close(t::TLSTransport) = close(t.ctx) | ||
function set_props!(s::TLSTransport) | ||
# disable nagle and enable quickack to speed up the usually small exchanges | ||
Sockets.nagle(s.sock, false) | ||
Sockets.quickack(s.sock, true) | ||
end | ||
get_sslconfig(t::TLSTransport) = t.sslconfig | ||
io_lock(f, t::TLSTransport) = lock(f, t.sock.lock) | ||
function is_connected(t::TLSTransport) | ||
status = t.sock.status | ||
status == StatusActive || status == StatusOpen || status == StatusPaused | ||
end |
Oops, something went wrong.