Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add optional TCP MD5 Signature (RFC2385) #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/jrpc/tcp_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ def initialize(uri, options = {})
write_timeout = @options.fetch(:write_timeout, 60) # default 60
connect_retry_count = @options.fetch(:connect_retry_count, 10) # default 10
@close_after_sent = @options.fetch(:close_after_sent, false)
tcp_md5_pass = @options[:tcp_md5_pass]

@transport = JRPC::Transport::SocketTcp.new server: @uri,
connect_retry_count: connect_retry_count,
connect_timeout: connect_timeout,
read_timeout: read_timeout,
write_timeout: write_timeout
write_timeout: write_timeout,
tcp_md5_pass: tcp_md5_pass
connect_transport!
end

Expand Down
35 changes: 34 additions & 1 deletion lib/jrpc/transport/socket_tcp.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
module JRPC
module Transport
class SocketTcp < SocketBase
def initialize(options)
super
@tcp_md5_pass = options[:tcp_md5_pass]
end

# @raise [JRPC::ConnectionClosedError] if socket was closed during data read.
def read(length, timeout = @read_timeout)
Expand Down Expand Up @@ -100,10 +104,39 @@ def set_timeout_to(socket, type, value)
socket.setsockopt Socket::SOL_SOCKET, type, opt_val
end

def set_tcp_md5(socket)
return if @tcp_md5_pass.nil?

tcp_md5_pass = @tcp_md5_pass.encode('utf-8')
host_u32 = @server.split(':').first.split('.').map(&:to_i).pack('CCCC')
#define TCP_MD5SIG 14 /* TCP MD5 Signature (RFC2385) */
# struct tcp_md5sig
# {
# struct sockaddr_storage tcpm_addr; /* Address associated. */
# uint8_t tcpm_flags; /* Extension flags. */
# uint8_t tcpm_prefixlen; /* Address prefix. */
# uint16_t tcpm_keylen; /* Key length. */
# uint32_t __tcpm_pad; /* Zero. */
# uint8_t tcpm_key[TCP_MD5SIG_MAXKEYLEN]; /* Key (binary). */
# };
opt_val = [
Socket::AF_INET, # tcpm_addr.sin_family
0, # tcpm_addr.sin_port
host_u32, #tcpm_addr.sin_addr
nil, # zero padding tcpm_addr, tcpm_flags, tcpm_prefixlen
tcp_md5_pass.bytesize, #tcpm_keylen
0, # __tcpm_pad
tcp_md5_pass
].pack('SSa4a122SLa80')
socket.setsockopt Socket::IPPROTO_TCP, 14, opt_val
end

def build_socket
host = @server.split(':').first
addr = Socket.getaddrinfo(host, nil)
Socket.new(Socket.const_get(addr[0][0]), Socket::SOCK_STREAM, 0)
socket = Socket.new(Socket.const_get(addr[0][0]), Socket::SOCK_STREAM, 0)
set_tcp_md5(socket)
socket
end

def connect_socket
Expand Down