summaryrefslogtreecommitdiff
path: root/up.rb
blob: d32804eaf8a99fd2809fde39f77aff347a4d02f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env ruby

require "net/ping"
require "socket"

class Host
  def initialize s
    # example: 'nash ssh:2001 mqtt:1883'
    parts = s.split
    @hostname = parts.first
    @services_and_ports = {}
    parts.slice(1, parts.size).each { |part|
      service, port_and_protocol = part.split ":"
      port, protocol = port_and_protocol.split "/"
      @services_and_ports["#{service}/#{protocol}"] = [port.to_i, protocol]
    }
  end

  def hostname
    return @hostname
  end

  def up? hostname
    ping = Net::Ping::External.new @hostname
    ping.ping?
  end

  def service_up? service, port, protocol
    if protocol == "tcp"
      begin
        sock = TCPSocket.new @hostname, port
        sock.close
        return true
      rescue
        return false
      end
    elsif protocol == "udp"
      system "nc -u -z -w 1 #{@hostname} #{port+1} &>/dev/null"
      return $?.success?
    else
      STDERR.write "unknown protocol '#{protocol}'\n"
    end
  end

  def check
    ret = {}
    ret["up"] = up? @hostname
    return ret if not ret["up"]
    @services_and_ports.each_key { |k|
      ret[k] = service_up? k, @services_and_ports[k][0], @services_and_ports[k][1]
    }
    return ret
  end
end

def main
  while line = STDIN.gets
    h = Host.new line
    puts h.check.to_s
  end
end

if __FILE__ == $0
  main
end