kanrisuru 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -121
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -312
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -97
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -125
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -104
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +57 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +63 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -998
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/unit/util_spec.rb +16 -0
- metadata +231 -2
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Socket
|
6
|
+
def ss(opts = {})
|
7
|
+
state = opts[:state]
|
8
|
+
expression = opts[:expression]
|
9
|
+
family = opts[:family]
|
10
|
+
|
11
|
+
command = Kanrisuru::Command.new('ss')
|
12
|
+
|
13
|
+
command.append_flag('-a')
|
14
|
+
command.append_flag('-m')
|
15
|
+
|
16
|
+
command.append_flag('-n', opts[:numeric])
|
17
|
+
command.append_flag('-t', opts[:tcp])
|
18
|
+
command.append_flag('-u', opts[:udp])
|
19
|
+
command.append_flag('-x', opts[:unix])
|
20
|
+
command.append_flag('-w', opts[:raw])
|
21
|
+
|
22
|
+
if Kanrisuru::Util.present?(family)
|
23
|
+
raise ArgumentError, 'invalid family type' unless NETWORK_FAMILIES.include?(family)
|
24
|
+
|
25
|
+
command.append_arg('-f', family)
|
26
|
+
end
|
27
|
+
|
28
|
+
if Kanrisuru::Util.present?(state)
|
29
|
+
raise ArgumentError, 'invalid filter state' if !TCP_STATES.include?(state) && !OTHER_STATES.include?(state)
|
30
|
+
|
31
|
+
command.append_arg('state', state)
|
32
|
+
end
|
33
|
+
|
34
|
+
command << expression if Kanrisuru::Util.present?(expression)
|
35
|
+
|
36
|
+
execute_shell(command)
|
37
|
+
|
38
|
+
Kanrisuru::Result.new(command) do |cmd|
|
39
|
+
Parser::Ss.parse(cmd, state)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Socket
|
6
|
+
TCP_STATES = %w[
|
7
|
+
established syn-sent syn-recv
|
8
|
+
fin-wait-1 fin-wait-2 time-wait
|
9
|
+
closed close-wait last-ack listening closing
|
10
|
+
].freeze
|
11
|
+
|
12
|
+
OTHER_STATES = %w[
|
13
|
+
all connected synchronized bucket syn-recv
|
14
|
+
big
|
15
|
+
].freeze
|
16
|
+
|
17
|
+
TCP_STATE_ABBR = {
|
18
|
+
'ESTAB' => 'established', 'LISTEN' => 'listening', 'UNCONN' => 'unconnected',
|
19
|
+
'SYN-SENT' => 'syn-sent', 'SYN-RECV' => 'syn-recv', 'FIN-WAIT-1' => 'fin-wait-1',
|
20
|
+
'FIN-WAIT-2' => 'fin-wait-2', 'TIME-WAIT' => 'time-wait', 'CLOSE-WAIT' => 'close-wait',
|
21
|
+
'LAST-ACK' => 'last-ack', 'CLOSING' => 'closing'
|
22
|
+
}.freeze
|
23
|
+
|
24
|
+
NETWORK_FAMILIES = %w[
|
25
|
+
unix inet inet6 link netlink
|
26
|
+
].freeze
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Socket
|
6
|
+
module Parser
|
7
|
+
class Ss
|
8
|
+
class << self
|
9
|
+
def parse(command, state)
|
10
|
+
rows = []
|
11
|
+
|
12
|
+
## New lines with tabs are from text overflow
|
13
|
+
## on on stdout of SS command.
|
14
|
+
## Replace the newline and tab chars with a space.
|
15
|
+
string = command.raw_result.join
|
16
|
+
string = string.gsub("\n\t", "\s")
|
17
|
+
lines = string.lines.map(&:strip)
|
18
|
+
|
19
|
+
headers = lines.shift
|
20
|
+
|
21
|
+
lines.each do |line|
|
22
|
+
values = line.split
|
23
|
+
next if values.length < 5
|
24
|
+
|
25
|
+
socket_stats = Kanrisuru::Core::Socket::Statistics.new
|
26
|
+
socket_stats.netid =
|
27
|
+
if headers.include?('Netid')
|
28
|
+
values.shift
|
29
|
+
elsif opts[:tcp]
|
30
|
+
'tcp'
|
31
|
+
elsif opts[:udp]
|
32
|
+
'udp'
|
33
|
+
elsif opts[:raw]
|
34
|
+
'raw'
|
35
|
+
else
|
36
|
+
''
|
37
|
+
end
|
38
|
+
|
39
|
+
socket_stats.state = if headers.include?('State')
|
40
|
+
Kanrisuru::Core::Socket::TCP_STATE_ABBR[values.shift]
|
41
|
+
else
|
42
|
+
state
|
43
|
+
end
|
44
|
+
|
45
|
+
socket_stats.receive_queue = values.shift.to_i
|
46
|
+
socket_stats.send_queue = values.shift.to_i
|
47
|
+
|
48
|
+
address, port = parse_address_port(values)
|
49
|
+
socket_stats.local_address = address
|
50
|
+
socket_stats.local_port = port
|
51
|
+
|
52
|
+
address, port = parse_address_port(values)
|
53
|
+
socket_stats.peer_address = address
|
54
|
+
socket_stats.peer_port = port
|
55
|
+
|
56
|
+
socket_stats.memory = parse_memory(values.shift)
|
57
|
+
|
58
|
+
rows << socket_stats
|
59
|
+
end
|
60
|
+
|
61
|
+
rows
|
62
|
+
end
|
63
|
+
|
64
|
+
def parse_memory(string)
|
65
|
+
return if Kanrisuru::Util.blank?(string) ||
|
66
|
+
Regexp.new(/skmem:\((\S+)\)/).match(string).nil?
|
67
|
+
|
68
|
+
_, string = string.split(/skmem:\((\S+)\)/)
|
69
|
+
values = string.split(',')
|
70
|
+
|
71
|
+
memory = Kanrisuru::Core::Socket::StatisticsMemory.new
|
72
|
+
memory.rmem_alloc = values[0].split(/(\d+)/)[1].to_i
|
73
|
+
memory.rcv_buf = values[1].split(/(\d+)/)[1].to_i
|
74
|
+
memory.wmem_alloc = values[2].split(/(\d+)/)[1].to_i
|
75
|
+
memory.snd_buf = values[3].split(/(\d+)/)[1].to_i
|
76
|
+
memory.fwd_alloc = values[4].split(/(\d+)/)[1].to_i
|
77
|
+
memory.wmem_queued = values[5].split(/(\d+)/)[1].to_i
|
78
|
+
memory.ropt_mem = values[6].split(/(\d+)/)[1].to_i
|
79
|
+
memory.back_log = values[7].split(/(\d+)/)[1].to_i
|
80
|
+
memory.sock_drop = values[8].split(/(\d+)/)[1].to_i
|
81
|
+
|
82
|
+
memory
|
83
|
+
end
|
84
|
+
|
85
|
+
def parse_address_port(values)
|
86
|
+
address = values.shift
|
87
|
+
port = nil
|
88
|
+
|
89
|
+
if address == '*' && Regexp.new(/skmem:\((\S+)\)/).match(values[0])
|
90
|
+
port = '*'
|
91
|
+
elsif Regexp.new(/\[(\S+)\]/).match(address)
|
92
|
+
tokens = address.split(/\[(\S+)\]/)
|
93
|
+
address = "[#{tokens[1]}]"
|
94
|
+
_, port = tokens[2].split(/:(\S+)/)
|
95
|
+
elsif Regexp.new(/:\S+/).match(address)
|
96
|
+
address, port = address.split(/:(\S+)/)
|
97
|
+
else
|
98
|
+
port = values.shift
|
99
|
+
end
|
100
|
+
|
101
|
+
port = Kanrisuru::Util.numeric?(port) ? port.to_i : port
|
102
|
+
[address, port]
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Socket
|
6
|
+
Statistics = Struct.new(
|
7
|
+
:netid, :state, :receive_queue, :send_queue,
|
8
|
+
:local_address, :local_port, :peer_address, :peer_port,
|
9
|
+
:memory
|
10
|
+
)
|
11
|
+
|
12
|
+
StatisticsMemory = Struct.new(
|
13
|
+
:rmem_alloc, :rcv_buf, :wmem_alloc, :snd_buf,
|
14
|
+
:fwd_alloc, :wmem_queued, :ropt_mem, :back_log, :sock_drop
|
15
|
+
)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -2,176 +2,17 @@
|
|
2
2
|
|
3
3
|
require 'ipaddr'
|
4
4
|
|
5
|
+
require_relative 'socket/constants'
|
6
|
+
require_relative 'socket/types'
|
7
|
+
require_relative 'socket/parser'
|
8
|
+
require_relative 'socket/commands'
|
9
|
+
|
5
10
|
module Kanrisuru
|
6
11
|
module Core
|
7
12
|
module Socket
|
8
13
|
extend OsPackage::Define
|
9
14
|
|
10
15
|
os_define :linux, :ss
|
11
|
-
|
12
|
-
Statistics = Struct.new(
|
13
|
-
:netid, :state, :receive_queue, :send_queue,
|
14
|
-
:local_address, :local_port, :peer_address, :peer_port,
|
15
|
-
:memory
|
16
|
-
)
|
17
|
-
|
18
|
-
StatisticsMemory = Struct.new(
|
19
|
-
:rmem_alloc, :rcv_buf, :wmem_alloc, :snd_buf,
|
20
|
-
:fwd_alloc, :wmem_queued, :ropt_mem, :back_log, :sock_drop
|
21
|
-
)
|
22
|
-
|
23
|
-
TCP_STATES = %w[
|
24
|
-
established syn-sent syn-recv
|
25
|
-
fin-wait-1 fin-wait-2 time-wait
|
26
|
-
closed close-wait last-ack listening closing
|
27
|
-
].freeze
|
28
|
-
|
29
|
-
OTHER_STATES = %w[
|
30
|
-
all connected synchronized bucket syn-recv
|
31
|
-
big
|
32
|
-
].freeze
|
33
|
-
|
34
|
-
TCP_STATE_ABBR = {
|
35
|
-
'ESTAB' => 'established', 'LISTEN' => 'listening', 'UNCONN' => 'unconnected',
|
36
|
-
'SYN-SENT' => 'syn-sent', 'SYN-RECV' => 'syn-recv', 'FIN-WAIT-1' => 'fin-wait-1',
|
37
|
-
'FIN-WAIT-2' => 'fin-wait-2', 'TIME-WAIT' => 'time-wait', 'CLOSE-WAIT' => 'close-wait',
|
38
|
-
'LAST-ACK' => 'last-ack', 'CLOSING' => 'closing'
|
39
|
-
}.freeze
|
40
|
-
|
41
|
-
NETWORK_FAMILIES = %w[
|
42
|
-
unix inet inet6 link netlink
|
43
|
-
].freeze
|
44
|
-
|
45
|
-
def ss(opts = {})
|
46
|
-
state = opts[:state]
|
47
|
-
expression = opts[:expression]
|
48
|
-
family = opts[:family]
|
49
|
-
|
50
|
-
command = Kanrisuru::Command.new('ss')
|
51
|
-
|
52
|
-
command.append_flag('-a')
|
53
|
-
command.append_flag('-m')
|
54
|
-
|
55
|
-
command.append_flag('-n', opts[:numeric])
|
56
|
-
command.append_flag('-t', opts[:tcp])
|
57
|
-
command.append_flag('-u', opts[:udp])
|
58
|
-
command.append_flag('-x', opts[:unix])
|
59
|
-
command.append_flag('-w', opts[:raw])
|
60
|
-
|
61
|
-
if Kanrisuru::Util.present?(family)
|
62
|
-
raise ArgumentError, 'invalid family type' unless NETWORK_FAMILIES.include?(family)
|
63
|
-
|
64
|
-
command.append_arg('-f', family)
|
65
|
-
end
|
66
|
-
|
67
|
-
if Kanrisuru::Util.present?(state)
|
68
|
-
raise ArgumentError, 'invalid filter state' if !TCP_STATES.include?(state) && !OTHER_STATES.include?(state)
|
69
|
-
|
70
|
-
command.append_arg('state', state)
|
71
|
-
end
|
72
|
-
|
73
|
-
command << expression if Kanrisuru::Util.present?(expression)
|
74
|
-
|
75
|
-
execute_shell(command)
|
76
|
-
|
77
|
-
Kanrisuru::Result.new(command) do |cmd|
|
78
|
-
rows = []
|
79
|
-
|
80
|
-
## New lines with tabs are from text overflow
|
81
|
-
## on on stdout of SS command.
|
82
|
-
## Replace the newline and tab chars with a space.
|
83
|
-
string = cmd.raw_result.join
|
84
|
-
string = string.gsub("\n\t", "\s")
|
85
|
-
lines = string.lines.map(&:strip)
|
86
|
-
|
87
|
-
headers = lines.shift
|
88
|
-
|
89
|
-
lines.each do |line|
|
90
|
-
values = line.split
|
91
|
-
next if values.length < 5
|
92
|
-
|
93
|
-
socket_stats = Statistics.new
|
94
|
-
socket_stats.netid =
|
95
|
-
if headers.include?('Netid')
|
96
|
-
values.shift
|
97
|
-
elsif opts[:tcp]
|
98
|
-
'tcp'
|
99
|
-
elsif opts[:udp]
|
100
|
-
'udp'
|
101
|
-
elsif opts[:raw]
|
102
|
-
'raw'
|
103
|
-
else
|
104
|
-
''
|
105
|
-
end
|
106
|
-
|
107
|
-
socket_stats.state = if headers.include?('State')
|
108
|
-
TCP_STATE_ABBR[values.shift]
|
109
|
-
else
|
110
|
-
state
|
111
|
-
end
|
112
|
-
|
113
|
-
socket_stats.receive_queue = values.shift.to_i
|
114
|
-
socket_stats.send_queue = values.shift.to_i
|
115
|
-
|
116
|
-
address, port = parse_address_port(values)
|
117
|
-
socket_stats.local_address = address
|
118
|
-
socket_stats.local_port = port
|
119
|
-
|
120
|
-
address, port = parse_address_port(values)
|
121
|
-
socket_stats.peer_address = address
|
122
|
-
socket_stats.peer_port = port
|
123
|
-
|
124
|
-
socket_stats.memory = parse_memory(values.shift)
|
125
|
-
|
126
|
-
rows << socket_stats
|
127
|
-
end
|
128
|
-
|
129
|
-
rows
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
private
|
134
|
-
|
135
|
-
def parse_memory(string)
|
136
|
-
return if Kanrisuru::Util.blank?(string) ||
|
137
|
-
Regexp.new(/skmem:\((\S+)\)/).match(string).nil?
|
138
|
-
|
139
|
-
_, string = string.split(/skmem:\((\S+)\)/)
|
140
|
-
values = string.split(',')
|
141
|
-
|
142
|
-
memory = StatisticsMemory.new
|
143
|
-
memory.rmem_alloc = values[0].split(/(\d+)/)[1].to_i
|
144
|
-
memory.rcv_buf = values[1].split(/(\d+)/)[1].to_i
|
145
|
-
memory.wmem_alloc = values[2].split(/(\d+)/)[1].to_i
|
146
|
-
memory.snd_buf = values[3].split(/(\d+)/)[1].to_i
|
147
|
-
memory.fwd_alloc = values[4].split(/(\d+)/)[1].to_i
|
148
|
-
memory.wmem_queued = values[5].split(/(\d+)/)[1].to_i
|
149
|
-
memory.ropt_mem = values[6].split(/(\d+)/)[1].to_i
|
150
|
-
memory.back_log = values[7].split(/(\d+)/)[1].to_i
|
151
|
-
memory.sock_drop = values[8].split(/(\d+)/)[1].to_i
|
152
|
-
|
153
|
-
memory
|
154
|
-
end
|
155
|
-
|
156
|
-
def parse_address_port(values)
|
157
|
-
address = values.shift
|
158
|
-
port = nil
|
159
|
-
|
160
|
-
if address == '*' && Regexp.new(/skmem:\((\S+)\)/).match(values[0])
|
161
|
-
port = '*'
|
162
|
-
elsif Regexp.new(/\[(\S+)\]/).match(address)
|
163
|
-
tokens = address.split(/\[(\S+)\]/)
|
164
|
-
address = "[#{tokens[1]}]"
|
165
|
-
_, port = tokens[2].split(/:(\S+)/)
|
166
|
-
elsif Regexp.new(/:\S+/).match(address)
|
167
|
-
address, port = address.split(/:(\S+)/)
|
168
|
-
else
|
169
|
-
port = values.shift
|
170
|
-
end
|
171
|
-
|
172
|
-
port = Kanrisuru::Util.numeric?(port) ? port.to_i : port
|
173
|
-
[address, port]
|
174
|
-
end
|
175
16
|
end
|
176
17
|
end
|
177
18
|
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stat
|
6
|
+
def dir?(path)
|
7
|
+
file_type?(path, 'directory')
|
8
|
+
end
|
9
|
+
|
10
|
+
def file?(path)
|
11
|
+
file_type?(path, 'regular file')
|
12
|
+
end
|
13
|
+
|
14
|
+
def empty_file?(path)
|
15
|
+
file_type?(path, 'regular empty file')
|
16
|
+
end
|
17
|
+
|
18
|
+
def block_device?(path)
|
19
|
+
file_type?(path, 'block special file')
|
20
|
+
end
|
21
|
+
|
22
|
+
def char_device?(path)
|
23
|
+
file_type?(path, 'character special file')
|
24
|
+
end
|
25
|
+
|
26
|
+
def symlink?(path)
|
27
|
+
file_type?(path, 'symbolic link')
|
28
|
+
end
|
29
|
+
|
30
|
+
def inode?(path)
|
31
|
+
command = Kanrisuru::Command.new("stat #{path}")
|
32
|
+
command.append_arg('-c', '%i')
|
33
|
+
execute(command)
|
34
|
+
command.success?
|
35
|
+
end
|
36
|
+
|
37
|
+
def file_type?(path, type)
|
38
|
+
command = Kanrisuru::Command.new("stat #{path}")
|
39
|
+
command.append_arg('-c', '%F')
|
40
|
+
|
41
|
+
execute(command)
|
42
|
+
|
43
|
+
result = Kanrisuru::Result.new(command, &:to_s)
|
44
|
+
|
45
|
+
result.success? ? result.data == type : false
|
46
|
+
end
|
47
|
+
|
48
|
+
def stat(path, opts = {})
|
49
|
+
command = Kanrisuru::Command.new('stat')
|
50
|
+
command.append_flag('-L', opts[:follow])
|
51
|
+
command.append_arg('-c', '%A,%b,%D,%F,%g,%G,%h,%i,%n,%s,%u,%U,%x,%y,%z')
|
52
|
+
command << path
|
53
|
+
|
54
|
+
execute(command)
|
55
|
+
|
56
|
+
Kanrisuru::Result.new(command) do |cmd|
|
57
|
+
Parser::Stat.parse(cmd)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stat
|
6
|
+
module Parser
|
7
|
+
class Stat
|
8
|
+
def self.parse(command)
|
9
|
+
string = command.to_s
|
10
|
+
values = string.split(',')
|
11
|
+
|
12
|
+
Kanrisuru::Core::Stat::FileStat.new(
|
13
|
+
Kanrisuru::Mode.new(values[0]),
|
14
|
+
values[1].to_i,
|
15
|
+
values[2],
|
16
|
+
values[3],
|
17
|
+
values[4].to_i,
|
18
|
+
values[5],
|
19
|
+
values[6].to_i,
|
20
|
+
values[7].to_i,
|
21
|
+
values[8],
|
22
|
+
values[9].to_i,
|
23
|
+
values[10].to_i,
|
24
|
+
values[11],
|
25
|
+
values[12] ? DateTime.parse(values[12]) : nil,
|
26
|
+
values[13] ? DateTime.parse(values[13]) : nil,
|
27
|
+
values[14] ? DateTime.parse(values[14]) : nil
|
28
|
+
)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stat
|
6
|
+
FileStat = Struct.new(
|
7
|
+
:mode, :blocks, :device, :file_type,
|
8
|
+
:gid, :group, :links, :inode,
|
9
|
+
:path, :fsize, :uid, :user,
|
10
|
+
:last_access, :last_modified, :last_changed
|
11
|
+
)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
data/lib/kanrisuru/core/stat.rb
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
require_relative 'stat/types'
|
6
|
+
require_relative 'stat/parser'
|
7
|
+
require_relative 'stat/commands'
|
8
|
+
|
5
9
|
module Kanrisuru
|
6
10
|
module Core
|
7
11
|
module Stat
|
@@ -15,87 +19,6 @@ module Kanrisuru
|
|
15
19
|
os_define :linux, :file_type?
|
16
20
|
os_define :linux, :inode?
|
17
21
|
os_define :linux, :stat
|
18
|
-
|
19
|
-
FileStat = Struct.new(
|
20
|
-
:mode, :blocks, :device, :file_type,
|
21
|
-
:gid, :group, :links, :inode,
|
22
|
-
:path, :fsize, :uid, :user,
|
23
|
-
:last_access, :last_modified, :last_changed
|
24
|
-
)
|
25
|
-
|
26
|
-
def dir?(path)
|
27
|
-
file_type?(path, 'directory')
|
28
|
-
end
|
29
|
-
|
30
|
-
def file?(path)
|
31
|
-
file_type?(path, 'regular file')
|
32
|
-
end
|
33
|
-
|
34
|
-
def empty_file?(path)
|
35
|
-
file_type?(path, 'regular empty file')
|
36
|
-
end
|
37
|
-
|
38
|
-
def block_device?(path)
|
39
|
-
file_type?(path, 'block special file')
|
40
|
-
end
|
41
|
-
|
42
|
-
def char_device?(path)
|
43
|
-
file_type?(path, 'character special file')
|
44
|
-
end
|
45
|
-
|
46
|
-
def symlink?(path)
|
47
|
-
file_type?(path, 'symbolic link')
|
48
|
-
end
|
49
|
-
|
50
|
-
def inode?(path)
|
51
|
-
command = Kanrisuru::Command.new("stat #{path}")
|
52
|
-
command.append_arg('-c', '%i')
|
53
|
-
execute(command)
|
54
|
-
command.success?
|
55
|
-
end
|
56
|
-
|
57
|
-
def file_type?(path, type)
|
58
|
-
command = Kanrisuru::Command.new("stat #{path}")
|
59
|
-
command.append_arg('-c', '%F')
|
60
|
-
|
61
|
-
execute(command)
|
62
|
-
|
63
|
-
result = Kanrisuru::Result.new(command, &:to_s)
|
64
|
-
|
65
|
-
result.success? ? result.data == type : false
|
66
|
-
end
|
67
|
-
|
68
|
-
def stat(path, opts = {})
|
69
|
-
command = Kanrisuru::Command.new('stat')
|
70
|
-
command.append_flag('-L', opts[:follow])
|
71
|
-
command.append_arg('-c', '%A,%b,%D,%F,%g,%G,%h,%i,%n,%s,%u,%U,%x,%y,%z')
|
72
|
-
command << path
|
73
|
-
|
74
|
-
execute(command)
|
75
|
-
|
76
|
-
Kanrisuru::Result.new(command) do |cmd|
|
77
|
-
string = cmd.to_s
|
78
|
-
values = string.split(',')
|
79
|
-
|
80
|
-
FileStat.new(
|
81
|
-
Kanrisuru::Mode.new(values[0]),
|
82
|
-
values[1].to_i,
|
83
|
-
values[2],
|
84
|
-
values[3],
|
85
|
-
values[4].to_i,
|
86
|
-
values[5],
|
87
|
-
values[6].to_i,
|
88
|
-
values[7].to_i,
|
89
|
-
values[8],
|
90
|
-
values[9].to_i,
|
91
|
-
values[10].to_i,
|
92
|
-
values[11],
|
93
|
-
values[12] ? DateTime.parse(values[12]) : nil,
|
94
|
-
values[13] ? DateTime.parse(values[13]) : nil,
|
95
|
-
values[14] ? DateTime.parse(values[14]) : nil
|
96
|
-
)
|
97
|
-
end
|
98
|
-
end
|
99
22
|
end
|
100
23
|
end
|
101
24
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stream
|
6
|
+
def cat(files, opts = {})
|
7
|
+
command = Kanrisuru::Command.new('cat')
|
8
|
+
command.append_flag('-T', opts[:show_tabs])
|
9
|
+
command.append_flag('-n', opts[:number])
|
10
|
+
command.append_flag('-s', opts[:squeeze_blank])
|
11
|
+
command.append_flag('-v', opts[:show_nonprinting])
|
12
|
+
command.append_flag('-E', opts[:show_ends])
|
13
|
+
command.append_flag('-b', opts[:number_nonblank])
|
14
|
+
command.append_flag('-A', opts[:show_all])
|
15
|
+
|
16
|
+
command.append_array(files)
|
17
|
+
|
18
|
+
append_file(command, opts)
|
19
|
+
execute_shell(command)
|
20
|
+
|
21
|
+
Kanrisuru::Result.new(command, &:to_a)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stream
|
6
|
+
def echo(text, opts = {})
|
7
|
+
command = Kanrisuru::Command.new('echo')
|
8
|
+
command.append_flag('-e', opts[:backslash])
|
9
|
+
command << "'#{text}'"
|
10
|
+
|
11
|
+
append_file(command, opts)
|
12
|
+
execute_shell(command)
|
13
|
+
|
14
|
+
Kanrisuru::Result.new(command) do |cmd|
|
15
|
+
Parser::Echo.parse(cmd, opts)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module Stream
|
6
|
+
def head(path, opts = {})
|
7
|
+
command = Kanrisuru::Command.new('head')
|
8
|
+
command.append_arg('-c', opts[:bytes])
|
9
|
+
command.append_arg('-n', opts[:lines])
|
10
|
+
command << path
|
11
|
+
|
12
|
+
execute_shell(command)
|
13
|
+
|
14
|
+
Kanrisuru::Result.new(command, &:to_a)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|