-
Notifications
You must be signed in to change notification settings - Fork 430
/
09-ping.exs
118 lines (103 loc) · 3.15 KB
/
09-ping.exs
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# If you get errors running 254 ping commands it's probably due to the number
# of open files. You can "fix" this by running this command in the terminal
# session before running this program:
#
# ulimit -n 1024
#
# If the limit is 256 (the default) then we can run 120 or so before we run out
# of file descriptors.
defmodule Ping do
@moduledoc """
Ping a class-C subnet to find hosts that respond.
To run from the command line:
$ elixir 09-ping.exs 192.168.1.x
"""
@doc """
Ping an IP asynchronously and send a tuple back to the parent saying what
has happened:
`{:ok, ip, pingable?}` where `pingable?` tells us if `ip` is pingable.
`{:error, ip, error}` when some error caused us to not be able to run the
ping command.
"""
def ping_async(ip, parent) do
send parent, run_ping(ip)
end
@doc """
Ping a single IP address returning a tuple which `ping_async` can return.
"""
def run_ping(ip) do
# This is a Ruby-ish way of dealing with failure...
# TODO: Discover the "Elixir way"
try do
# return code should be handled somehow with pattern matching
{cmd_output, _} = System.cmd("ping", ping_args(ip))
alive? = not Regex.match?(~r/100(\.0)?% packet loss/, cmd_output)
{:ok, ip, alive?}
rescue
e -> {:error, ip, e}
end
end
def ping_args(ip) do
wait_opt = if darwin?(), do: "-W", else: "-w"
["-c", "1", wait_opt, "5", "-s", "1", ip]
end
def darwin? do
{output, 0} = System.cmd("uname", [])
String.trim_trailing(output) == "Darwin"
end
end
defmodule Subnet do
@doc """
Ping all IPs in a class-C subnet and return a map with results.
"""
def ping(subnet) do
all = ips(subnet)
Enum.each all, fn ip ->
# Task.start gives better logging than spawn when things go awry.
# http://elixir-lang.org/getting-started/processes.html#tasks
Task.start(Ping, :ping_async, [ip, self()])
end
wait %{}, Enum.count(all)
end
@doc """
Given a class-C subnet string like '192.168.1.x', return list of all 254 IPs therein.
"""
def ips(subnet) do
subnet = Regex.run(~r/^\d+\.\d+\.\d+\./, subnet) |> Enum.at(0)
Enum.to_list(1..254) |> Enum.map(fn i -> "#{subnet}#{i}" end)
end
defp wait(results, 0), do: results
defp wait(results, remaining) do
receive do
{:ok, ip, pingable?} ->
results = Map.put(results, ip, pingable?)
wait(results, remaining - 1)
{:error, ip, error} ->
IO.puts "#{inspect error} for #{ip}"
wait(results, remaining - 1)
end
end
end
# Command-line execution support
# TODO is there a way to check if this script is being executed directly (vs imported elsewhere)?
case System.argv do
[subnet] ->
results = Subnet.ping(subnet)
results
|> Enum.filter(fn {_ip, exists} -> exists end)
|> Enum.map(fn {ip, _} -> ip end)
|> Enum.sort
|> Enum.join("\n")
|> IO.puts
_ ->
ExUnit.start
defmodule SubnetTest do
use ExUnit.Case
test "ips" do
ips = Subnet.ips("192.168.1.x")
assert Enum.count(ips) == 254
assert Enum.at(ips, 0) == "192.168.1.1"
assert Enum.at(ips, 253) == "192.168.1.254"
end
end
end