2005-06-02 07:52:17 +00:00
|
|
|
require 'socket'
|
|
|
|
require 'resolv'
|
|
|
|
|
|
|
|
module Rex
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# Socket
|
|
|
|
# ------
|
|
|
|
#
|
|
|
|
# Base class for all sockets.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
class Socket
|
|
|
|
|
2005-06-03 04:51:51 +00:00
|
|
|
module Comm
|
|
|
|
end
|
|
|
|
|
2005-07-09 21:18:49 +00:00
|
|
|
require 'rex/socket/parameters'
|
2005-06-03 04:51:51 +00:00
|
|
|
|
2005-06-02 07:52:17 +00:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Factory methods
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
2005-06-04 06:19:42 +00:00
|
|
|
def self.create(opts = {})
|
2005-06-02 07:52:17 +00:00
|
|
|
return create_param(Rex::Socket::Parameters.from_hash(opts))
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.create_param(param)
|
|
|
|
return param.comm.create(param)
|
|
|
|
end
|
|
|
|
|
2005-06-04 06:19:42 +00:00
|
|
|
def self.create_tcp(opts = {})
|
2005-06-03 04:51:51 +00:00
|
|
|
return create_param(Rex::Socket::Parameters.from_hash(opts.merge('Proto' => 'tcp')))
|
2005-06-02 07:52:17 +00:00
|
|
|
end
|
2005-06-03 07:13:15 +00:00
|
|
|
|
|
|
|
def self.create_tcp_server(opts)
|
|
|
|
return create_tcp(opts.merge('Server' => true))
|
|
|
|
end
|
2005-06-02 07:52:17 +00:00
|
|
|
|
2005-06-04 06:19:42 +00:00
|
|
|
def self.create_udp(opts = {})
|
|
|
|
return create_param(Rex::Socket::Parameters.from_hash(opts.merge('Proto' => 'udp')))
|
|
|
|
end
|
|
|
|
|
2005-06-02 07:52:17 +00:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Serialization
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a sockaddr structure using the supplied IP address, port, and
|
|
|
|
# address family
|
|
|
|
#
|
|
|
|
def self.to_sockaddr(ip, port, af = ::Socket::AF_INET)
|
|
|
|
ip = "0.0.0.0" unless ip
|
|
|
|
ip = Resolv.getaddress(ip)
|
|
|
|
data = [ af, port.to_i ] + ip.split('.').collect { |o| o.to_i } + [ "" ]
|
|
|
|
|
|
|
|
return data.pack('snCCCCa8')
|
|
|
|
end
|
|
|
|
|
2005-06-04 06:19:42 +00:00
|
|
|
#
|
|
|
|
# Returns the address family, host, and port of the supplied sockaddr as
|
|
|
|
# [ af, host, port ]
|
|
|
|
#
|
|
|
|
def self.from_sockaddr(saddr)
|
|
|
|
up = saddr.unpack('snCCCC')
|
|
|
|
|
|
|
|
af = up.shift
|
|
|
|
port = up.shift
|
|
|
|
|
|
|
|
return [ af, up.join('.'), port ]
|
|
|
|
end
|
|
|
|
|
2005-07-08 14:53:12 +00:00
|
|
|
#
|
|
|
|
# Resolves a host to raw network-byte order
|
|
|
|
#
|
|
|
|
def self.resolv_nbo(host)
|
|
|
|
return to_sockaddr(host, 0)[4,4]
|
|
|
|
end
|
|
|
|
|
2005-06-02 07:52:17 +00:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Class initialization
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
2005-06-03 07:37:15 +00:00
|
|
|
def initialize(sock, params = nil)
|
2005-06-02 07:52:17 +00:00
|
|
|
self.sock = sock
|
2005-06-03 07:37:15 +00:00
|
|
|
|
|
|
|
if (params)
|
|
|
|
self.peerhost = params.peerhost
|
|
|
|
self.peerport = params.peerport
|
|
|
|
self.localhost = params.localhost
|
|
|
|
self.localport = params.localport
|
|
|
|
end
|
2005-06-02 07:52:17 +00:00
|
|
|
end
|
|
|
|
|
2005-06-03 07:13:15 +00:00
|
|
|
#
|
|
|
|
# Closes the associated socket
|
|
|
|
#
|
|
|
|
def close
|
|
|
|
self.sock.close if (self.sock)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the sock context that was supplied to the constructor as the
|
|
|
|
# default poll_fd
|
|
|
|
#
|
|
|
|
def poll_fd
|
|
|
|
return self.sock
|
|
|
|
end
|
|
|
|
|
2005-07-16 08:12:58 +00:00
|
|
|
#
|
|
|
|
# Returns local connection information.
|
|
|
|
#
|
|
|
|
def getlocalname
|
|
|
|
return Socket.from_sockaddr(self.sock.getsockname)
|
|
|
|
end
|
|
|
|
|
|
|
|
alias getsockname getlocalname
|
|
|
|
|
|
|
|
#
|
|
|
|
# Return peer connection information.
|
|
|
|
#
|
|
|
|
def getpeername
|
|
|
|
return Socket.from_sockaddr(self.sock.getpeername)
|
|
|
|
end
|
|
|
|
|
2005-06-02 07:52:17 +00:00
|
|
|
attr_reader :sock
|
2005-06-03 07:37:15 +00:00
|
|
|
attr_reader :peerhost, :peerport, :localhost, :localport
|
2005-06-02 07:52:17 +00:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
attr_writer :sock
|
2005-06-03 07:37:15 +00:00
|
|
|
attr_writer :peerhost, :peerport, :localhost, :localport
|
2005-06-02 07:52:17 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|