kanrisuru 0.12.1 → 0.16.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 +24 -0
- data/README.md +5 -5
- data/kanrisuru.gemspec +7 -3
- data/lib/kanrisuru/command.rb +15 -1
- 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 +49 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/constants.rb +9 -0
- data/lib/kanrisuru/core/disk/parser.rb +7 -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/parsers/lsblk_version.rb +21 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +6 -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 +54 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +42 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +41 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +34 -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 +86 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
- data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
- data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
- data/lib/kanrisuru/core/ip/commands.rb +26 -0
- data/lib/kanrisuru/core/ip/constants.rb +25 -0
- data/lib/kanrisuru/core/ip/parser.rb +11 -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/parsers/version.rb +15 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +15 -1002
- 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 +49 -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 +54 -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/result.rb +15 -0
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +1 -1
- data/spec/functional/core/disk_spec.rb +77 -0
- data/spec/functional/core/dmi_spec.rb +78 -0
- data/spec/functional/core/file_spec.rb +284 -0
- data/spec/functional/core/group_spec.rb +62 -0
- data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
- data/spec/functional/core/ip/ip_address_spec.rb +95 -0
- data/spec/functional/core/ip/ip_link_spec.rb +814 -0
- data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
- data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
- data/spec/functional/core/ip/ip_route_spec.rb +174 -0
- data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
- data/spec/functional/core/ip/ip_spec.rb +27 -0
- data/spec/functional/core/system_spec.rb +135 -0
- data/spec/functional/core/user_spec.rb +97 -0
- data/spec/functional/result_spec.rb +197 -0
- data/spec/{hosts.json → helper/hosts.json} +0 -0
- data/spec/helper/simplecov.rb +21 -0
- data/spec/helper/stub_network.rb +6 -2
- data/spec/helper/test_hosts.rb +1 -1
- data/spec/integration/core/apt/debian_spec.rb +9 -0
- data/spec/integration/core/apt/ubuntu_spec.rb +9 -0
- data/spec/integration/core/archive/centos_spec.rb +9 -0
- data/spec/integration/core/archive/debian_spec.rb +9 -0
- data/spec/integration/core/archive/fedora_spec.rb +9 -0
- data/spec/integration/core/archive/opensuse_spec.rb +9 -0
- data/spec/integration/core/archive/rhel_spec.rb +9 -0
- data/spec/integration/core/archive/sles_spec.rb +9 -0
- data/spec/integration/core/archive/ubuntu_spec.rb +9 -0
- data/spec/integration/core/disk/centos_spec.rb +9 -0
- data/spec/integration/core/disk/debian_spec.rb +9 -0
- data/spec/integration/core/disk/fedora_spec.rb +9 -0
- data/spec/integration/core/disk/opensuse_spec.rb +9 -0
- data/spec/integration/core/disk/rhel_spec.rb +9 -0
- data/spec/integration/core/disk/sles_spec.rb +9 -0
- data/spec/integration/core/disk/ubuntu_spec.rb +9 -0
- data/spec/integration/core/dmi/centos_spec.rb +9 -0
- data/spec/integration/core/dmi/debian_spec.rb +9 -0
- data/spec/integration/core/dmi/fedora_spec.rb +9 -0
- data/spec/integration/core/dmi/opensuse_spec.rb +9 -0
- data/spec/integration/core/dmi/rhel_spec.rb +9 -0
- data/spec/integration/core/dmi/sles_spec.rb +9 -0
- data/spec/integration/core/dmi/ubuntu_spec.rb +9 -0
- data/spec/integration/core/file/centos_spec.rb +9 -0
- data/spec/integration/core/file/debian_spec.rb +9 -0
- data/spec/integration/core/file/fedora_spec.rb +9 -0
- data/spec/integration/core/file/opensuse_spec.rb +9 -0
- data/spec/integration/core/file/rhel_spec.rb +9 -0
- data/spec/integration/core/file/sles_spec.rb +9 -0
- data/spec/integration/core/file/ubuntu_spec.rb +9 -0
- data/spec/integration/core/find/centos_spec.rb +9 -0
- data/spec/integration/core/find/debian_spec.rb +9 -0
- data/spec/integration/core/find/fedora_spec.rb +9 -0
- data/spec/integration/core/find/opensuse_spec.rb +9 -0
- data/spec/integration/core/find/rhel_spec.rb +9 -0
- data/spec/integration/core/find/sles_spec.rb +9 -0
- data/spec/integration/core/find/ubuntu_spec.rb +9 -0
- data/spec/integration/core/group/centos_spec.rb +9 -0
- data/spec/integration/core/group/debian_spec.rb +9 -0
- data/spec/integration/core/group/fedora_spec.rb +9 -0
- data/spec/integration/core/group/opensuse_spec.rb +9 -0
- data/spec/integration/core/group/rhel_spec.rb +9 -0
- data/spec/integration/core/group/sles_spec.rb +9 -0
- data/spec/integration/core/group/ubuntu_spec.rb +9 -0
- data/spec/integration/core/ip/centos_spec.rb +9 -0
- data/spec/integration/core/ip/debian_spec.rb +9 -0
- data/spec/integration/core/ip/fedora_spec.rb +9 -0
- data/spec/integration/core/ip/opensuse_spec.rb +9 -0
- data/spec/integration/core/ip/rhel_spec.rb +9 -0
- data/spec/integration/core/ip/sles_spec.rb +9 -0
- data/spec/integration/core/ip/ubuntu_spec.rb +9 -0
- data/spec/integration/core/path/centos_spec.rb +9 -0
- data/spec/integration/core/path/debian_spec.rb +9 -0
- data/spec/integration/core/path/fedora_spec.rb +9 -0
- data/spec/integration/core/path/opensuse_spec.rb +9 -0
- data/spec/integration/core/path/rhel_spec.rb +9 -0
- data/spec/integration/core/path/sles_spec.rb +9 -0
- data/spec/integration/core/path/ubuntu_spec.rb +9 -0
- data/spec/integration/core/socket/centos_spec.rb +9 -0
- data/spec/integration/core/socket/debian_spec.rb +9 -0
- data/spec/integration/core/socket/fedora_spec.rb +9 -0
- data/spec/integration/core/socket/opensuse_spec.rb +9 -0
- data/spec/integration/core/socket/rhel_spec.rb +9 -0
- data/spec/integration/core/socket/sles_spec.rb +9 -0
- data/spec/integration/core/socket/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stat/centos_spec.rb +9 -0
- data/spec/integration/core/stat/debian_spec.rb +9 -0
- data/spec/integration/core/stat/fedora_spec.rb +9 -0
- data/spec/integration/core/stat/opensuse_spec.rb +9 -0
- data/spec/integration/core/stat/rhel_spec.rb +9 -0
- data/spec/integration/core/stat/sles_spec.rb +9 -0
- data/spec/integration/core/stat/ubuntu_spec.rb +9 -0
- data/spec/integration/core/stream/centos_spec.rb +9 -0
- data/spec/integration/core/stream/debian_spec.rb +9 -0
- data/spec/integration/core/stream/fedora_spec.rb +9 -0
- data/spec/integration/core/stream/opensuse_spec.rb +9 -0
- data/spec/integration/core/stream/rhel_spec.rb +9 -0
- data/spec/integration/core/stream/sles_spec.rb +9 -0
- data/spec/integration/core/stream/ubuntu_spec.rb +9 -0
- data/spec/integration/core/system/centos_spec.rb +9 -0
- data/spec/integration/core/system/debian_spec.rb +9 -0
- data/spec/integration/core/system/fedora_spec.rb +9 -0
- data/spec/integration/core/system/opensuse_spec.rb +9 -0
- data/spec/integration/core/system/rhel_spec.rb +9 -0
- data/spec/integration/core/system/sles_spec.rb +9 -0
- data/spec/integration/core/system/ubuntu_spec.rb +9 -0
- data/spec/integration/core/transfer/centos_spec.rb +9 -0
- data/spec/integration/core/transfer/debian_spec.rb +9 -0
- data/spec/integration/core/transfer/fedora_spec.rb +9 -0
- data/spec/integration/core/transfer/opensuse_spec.rb +9 -0
- data/spec/integration/core/transfer/rhel_spec.rb +9 -0
- data/spec/integration/core/transfer/sles_spec.rb +9 -0
- data/spec/integration/core/transfer/ubuntu_spec.rb +9 -0
- data/spec/integration/core/user/centos_spec.rb +9 -0
- data/spec/integration/core/user/debian_spec.rb +9 -0
- data/spec/integration/core/user/fedora_spec.rb +9 -0
- data/spec/integration/core/user/opensuse_spec.rb +9 -0
- data/spec/integration/core/user/rhel_spec.rb +9 -0
- data/spec/integration/core/user/sles_spec.rb +9 -0
- data/spec/integration/core/user/ubuntu_spec.rb +9 -0
- data/spec/integration/core/yum/centos_spec.rb +9 -0
- data/spec/integration/core/yum/fedora_spec.rb +9 -0
- data/spec/integration/core/yum/rhel_spec.rb +9 -0
- data/spec/integration/core/zypper/opensuse_spec.rb +9 -0
- data/spec/integration/core/zypper/sles_spec.rb +9 -0
- data/spec/integration/remote/cluster/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/cpu/centos_spec.rb +9 -0
- data/spec/integration/remote/cpu/debian_spec.rb +9 -0
- data/spec/integration/remote/cpu/fedora_spec.rb +9 -0
- data/spec/integration/remote/cpu/opensuse_spec.rb +9 -0
- data/spec/integration/remote/cpu/rhel_spec.rb +9 -0
- data/spec/integration/remote/cpu/sles_spec.rb +9 -0
- data/spec/integration/remote/cpu/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/env/centos_spec.rb +9 -0
- data/spec/integration/remote/env/debian_spec.rb +9 -0
- data/spec/integration/remote/env/fedora_spec.rb +9 -0
- data/spec/integration/remote/env/opensuse_spec.rb +9 -0
- data/spec/integration/remote/env/rhel_spec.rb +9 -0
- data/spec/integration/remote/env/sles_spec.rb +9 -0
- data/spec/integration/remote/env/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/fstab/centos_spec.rb +9 -0
- data/spec/integration/remote/fstab/debian_spec.rb +9 -0
- data/spec/integration/remote/fstab/fedora_spec.rb +9 -0
- data/spec/integration/remote/fstab/opensuse_spec.rb +9 -0
- data/spec/integration/remote/fstab/rhel_spec.rb +9 -0
- data/spec/integration/remote/fstab/sles_spec.rb +9 -0
- data/spec/integration/remote/fstab/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/host/centos_spec.rb +9 -0
- data/spec/integration/remote/host/debian_spec.rb +9 -0
- data/spec/integration/remote/host/fedora_spec.rb +9 -0
- data/spec/integration/remote/host/opensuse_spec.rb +9 -0
- data/spec/integration/remote/host/rhel_spec.rb +9 -0
- data/spec/integration/remote/host/sles_spec.rb +9 -0
- data/spec/integration/remote/host/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/memory/centos_spec.rb +9 -0
- data/spec/integration/remote/memory/debian_spec.rb +9 -0
- data/spec/integration/remote/memory/fedora_spec.rb +9 -0
- data/spec/integration/remote/memory/opensuse_spec.rb +9 -0
- data/spec/integration/remote/memory/rhel_spec.rb +9 -0
- data/spec/integration/remote/memory/sles_spec.rb +9 -0
- data/spec/integration/remote/memory/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/os/centos_spec.rb +9 -0
- data/spec/integration/remote/os/debian_spec.rb +9 -0
- data/spec/integration/remote/os/fedora_spec.rb +9 -0
- data/spec/integration/remote/os/opensuse_spec.rb +9 -0
- data/spec/integration/remote/os/rhel_spec.rb +9 -0
- data/spec/integration/remote/os/sles_spec.rb +9 -0
- data/spec/integration/remote/os/ubuntu_spec.rb +9 -0
- data/spec/integration/remote/remote_file/centos_spec.rb +9 -0
- data/spec/integration/remote/remote_file/debian_spec.rb +9 -0
- data/spec/integration/remote/remote_file/fedora_spec.rb +9 -0
- data/spec/integration/remote/remote_file/opensuse_spec.rb +9 -0
- data/spec/integration/remote/remote_file/rhel_spec.rb +9 -0
- data/spec/integration/remote/remote_file/sles_spec.rb +9 -0
- data/spec/integration/remote/remote_file/ubuntu_spec.rb +9 -0
- data/spec/spec_helper.rb +2 -11
- data/spec/support/shared_examples/integration/core/apt.rb +117 -0
- data/spec/support/shared_examples/integration/core/archive.rb +221 -0
- data/spec/support/shared_examples/integration/core/disk.rb +91 -0
- data/spec/support/shared_examples/integration/core/dmi.rb +34 -0
- data/spec/support/shared_examples/integration/core/file.rb +357 -0
- data/spec/support/shared_examples/integration/core/find.rb +50 -0
- data/spec/support/shared_examples/integration/core/group.rb +62 -0
- data/spec/support/shared_examples/integration/core/ip.rb +68 -0
- data/spec/support/shared_examples/integration/core/path.rb +90 -0
- data/spec/support/shared_examples/integration/core/socket.rb +27 -0
- data/spec/support/shared_examples/integration/core/stat.rb +95 -0
- data/spec/support/shared_examples/integration/core/stream.rb +112 -0
- data/spec/support/shared_examples/integration/core/system.rb +155 -0
- data/spec/support/shared_examples/integration/core/transfer.rb +101 -0
- data/spec/support/shared_examples/integration/core/user.rb +72 -0
- data/spec/support/shared_examples/integration/core/yum.rb +115 -0
- data/spec/support/shared_examples/integration/core/zypper.rb +196 -0
- data/spec/{integration/remote/cluster_spec.rb → support/shared_examples/integration/remote/cluster.rb} +2 -2
- data/spec/support/shared_examples/integration/remote/cpu.rb +38 -0
- data/spec/support/shared_examples/integration/remote/env_spec.rb +33 -0
- data/spec/support/shared_examples/integration/remote/fstab.rb +89 -0
- data/spec/support/shared_examples/integration/remote/host.rb +65 -0
- data/spec/support/shared_examples/integration/remote/memory.rb +27 -0
- data/spec/support/shared_examples/integration/remote/os.rb +60 -0
- data/spec/support/shared_examples/integration/remote/remote_file.rb +172 -0
- data/spec/unit/command_spec.rb +2 -0
- data/spec/unit/core/ip_spec.rb +12 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +436 -31
- data/spec/integration/core/apt_spec.rb +0 -119
- data/spec/integration/core/archive_spec.rb +0 -223
- data/spec/integration/core/disk_spec.rb +0 -93
- data/spec/integration/core/dmi_spec.rb +0 -36
- data/spec/integration/core/file_spec.rb +0 -359
- data/spec/integration/core/find_spec.rb +0 -52
- data/spec/integration/core/group_spec.rb +0 -64
- data/spec/integration/core/ip_spec.rb +0 -70
- data/spec/integration/core/path_spec.rb +0 -92
- data/spec/integration/core/socket_spec.rb +0 -29
- data/spec/integration/core/stat_spec.rb +0 -97
- data/spec/integration/core/stream_spec.rb +0 -114
- data/spec/integration/core/system_spec.rb +0 -142
- data/spec/integration/core/transfer_spec.rb +0 -103
- data/spec/integration/core/user_spec.rb +0 -74
- data/spec/integration/core/yum_spec.rb +0 -117
- data/spec/integration/core/zypper_spec.rb +0 -198
- data/spec/integration/remote/cpu_spec.rb +0 -40
- data/spec/integration/remote/env_spec.rb +0 -35
- data/spec/integration/remote/fstab_spec.rb +0 -91
- data/spec/integration/remote/host_spec.rb +0 -67
- data/spec/integration/remote/memory_spec.rb +0 -29
- data/spec/integration/remote/os_spec.rb +0 -62
- data/spec/integration/remote/remote_file_spec.rb +0 -174
- data/spec/zz_reboot_spec.rb +0 -46
@@ -0,0 +1,56 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class KernelStatistics
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
result = Kanrisuru::Core::System::KernelStatistic.new
|
12
|
+
result.cpus = []
|
13
|
+
|
14
|
+
lines.each do |line|
|
15
|
+
values = line.split
|
16
|
+
field = values[0]
|
17
|
+
values = values[1..-1].map(&:to_i)
|
18
|
+
|
19
|
+
case field
|
20
|
+
when /^cpu/
|
21
|
+
cpu_stat = Kanrisuru::Core::System::KernelStatisticCpu.new
|
22
|
+
cpu_stat.user = values[0]
|
23
|
+
cpu_stat.nice = values[1]
|
24
|
+
cpu_stat.system = values[2]
|
25
|
+
cpu_stat.idle = values[3]
|
26
|
+
cpu_stat.iowait = values[4]
|
27
|
+
cpu_stat.irq = values[5]
|
28
|
+
cpu_stat.softirq = values[6]
|
29
|
+
cpu_stat.steal = values[7]
|
30
|
+
cpu_stat.guest = values[8]
|
31
|
+
cpu_stat.guest_nice = values[9]
|
32
|
+
|
33
|
+
case field
|
34
|
+
when /^cpu$/
|
35
|
+
result.cpu_total = cpu_stat
|
36
|
+
when /^cpu\d+/
|
37
|
+
result.cpus << cpu_stat
|
38
|
+
end
|
39
|
+
when 'intr'
|
40
|
+
result.interrupt_total = values[0]
|
41
|
+
result.interrupts = values[1..-1]
|
42
|
+
when 'softirq'
|
43
|
+
result.softirq_total = values[0]
|
44
|
+
result.softirqs = values[1..-1]
|
45
|
+
else
|
46
|
+
result[field] = values[0]
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
result
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class Last
|
8
|
+
class << self
|
9
|
+
def parse(command, opts)
|
10
|
+
lines = command.to_a
|
11
|
+
|
12
|
+
mapping = {}
|
13
|
+
|
14
|
+
lines.each do |line|
|
15
|
+
next if Kanrisuru::Util.blank?(line)
|
16
|
+
next if line.include?('wtmp') || line.include?('btmp')
|
17
|
+
|
18
|
+
line = line.gsub(' still logged in', '- still logged in') if line.include?('still logged in')
|
19
|
+
|
20
|
+
values = line.split(/\s{2,}/, 4)
|
21
|
+
user = values[0]
|
22
|
+
tty = values[1]
|
23
|
+
ip = IPAddr.new(values[2])
|
24
|
+
|
25
|
+
date_range = values[3]
|
26
|
+
login, logout = date_range.split(' - ')
|
27
|
+
|
28
|
+
login = parse_last_date(login) if login
|
29
|
+
logout = parse_last_date(logout) if logout
|
30
|
+
|
31
|
+
detail = Kanrisuru::Core::System::SessionDetail.new
|
32
|
+
detail.tty = tty
|
33
|
+
detail.ip_address = ip
|
34
|
+
detail.login_at = login
|
35
|
+
detail.logout_at = logout
|
36
|
+
|
37
|
+
detail.success = !Kanrisuru::Util.present?(opts[:failed_attemps])
|
38
|
+
|
39
|
+
mapping[user] = Kanrisuru::Core::System::LoginUser.new(user, []) unless mapping.key?(user)
|
40
|
+
|
41
|
+
mapping[user].sessions << detail
|
42
|
+
end
|
43
|
+
|
44
|
+
mapping.values
|
45
|
+
end
|
46
|
+
|
47
|
+
def parse_last_date(string)
|
48
|
+
tokens = string.split
|
49
|
+
|
50
|
+
return if tokens.length < 4
|
51
|
+
|
52
|
+
month_abbr = tokens[1]
|
53
|
+
day = tokens[2]
|
54
|
+
timestamp = tokens[3]
|
55
|
+
year = tokens[4]
|
56
|
+
|
57
|
+
DateTime.parse("#{day} #{month_abbr} #{year} #{timestamp}")
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class LoadEnv
|
8
|
+
def self.parse(command)
|
9
|
+
string = command.to_s
|
10
|
+
hash = {}
|
11
|
+
|
12
|
+
rows = string.split("\n")
|
13
|
+
rows.each do |row|
|
14
|
+
key, value = row.split('=', 2)
|
15
|
+
hash[key] = value
|
16
|
+
end
|
17
|
+
|
18
|
+
hash
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class Lscpu
|
8
|
+
def self.parse(command)
|
9
|
+
lines = command.to_a
|
10
|
+
|
11
|
+
result = Kanrisuru::Core::System::CPUArchitecture.new
|
12
|
+
result.vulnerabilities = []
|
13
|
+
result.numa_nodes = []
|
14
|
+
|
15
|
+
lines.each do |line|
|
16
|
+
values = line.split(': ', 2)
|
17
|
+
|
18
|
+
field = values[0].strip
|
19
|
+
data = values[1].strip
|
20
|
+
|
21
|
+
case field
|
22
|
+
when 'Architecture'
|
23
|
+
result.architecture = data
|
24
|
+
when 'CPU op-mode(s)'
|
25
|
+
result.operation_modes = data.split(', ')
|
26
|
+
when 'Byte Order'
|
27
|
+
result.byte_order = data
|
28
|
+
when 'Address sizes'
|
29
|
+
result.address_sizes = data.split(', ')
|
30
|
+
when 'CPU(s)'
|
31
|
+
result.cores = data.to_i
|
32
|
+
when 'On-line CPU(s) list'
|
33
|
+
result.online_cpus = data.to_i
|
34
|
+
when 'Thread(s) per core'
|
35
|
+
result.threads_per_core = data.to_i
|
36
|
+
when 'Core(s) per socket'
|
37
|
+
result.cores_per_socket = data.to_i
|
38
|
+
when 'Socket(s)'
|
39
|
+
result.sockets = data.to_i
|
40
|
+
when 'NUMA node(s)'
|
41
|
+
result.numa_nodes = data.to_i
|
42
|
+
when 'Vendor ID'
|
43
|
+
result.vendor_id = data
|
44
|
+
when 'CPU family'
|
45
|
+
result.cpu_family = data.to_i
|
46
|
+
when 'Model'
|
47
|
+
result.model = data.to_i
|
48
|
+
when 'Model name'
|
49
|
+
result.model_name = data
|
50
|
+
when 'Stepping'
|
51
|
+
result.stepping = data.to_i
|
52
|
+
when 'CPU MHz'
|
53
|
+
result.cpu_mhz = data.to_f
|
54
|
+
when 'CPU max MHz'
|
55
|
+
result.cpu_max_mhz = data.to_f
|
56
|
+
when 'CPU min MHz'
|
57
|
+
result.cpu_min_mhz = data.to_f
|
58
|
+
when 'CPUBogoMIPS'
|
59
|
+
result.bogo_mips = data.to_f
|
60
|
+
when 'Virtualization'
|
61
|
+
result.virtualization = data
|
62
|
+
when 'Hypervisor vendor'
|
63
|
+
result.hypervisor_vendor = data
|
64
|
+
when 'Virtualization type'
|
65
|
+
result.virtualization_type = data
|
66
|
+
when 'L1d cache'
|
67
|
+
result.l1d_cache = data
|
68
|
+
when 'L1i cache'
|
69
|
+
result.l1i_cache = data
|
70
|
+
when 'L2 cache'
|
71
|
+
result.l2_cache = data
|
72
|
+
when 'L3 cache'
|
73
|
+
result.l3_cache = data
|
74
|
+
when /^Numa node/
|
75
|
+
result.numa_nodes << data.split(',')
|
76
|
+
when /^Vulnerability/
|
77
|
+
name = field.split('Vulnerability ')[1]
|
78
|
+
result.vulnerabilities << Kanrisuru::Core::System::CPUArchitectureVulnerability.new(name, data)
|
79
|
+
when 'Flags'
|
80
|
+
result.flags = data.split
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
result
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class Lsof
|
8
|
+
class << self
|
9
|
+
def parse(command)
|
10
|
+
lines = command.to_a
|
11
|
+
|
12
|
+
current_row = nil
|
13
|
+
current_pid = nil
|
14
|
+
current_user = nil
|
15
|
+
current_command = nil
|
16
|
+
|
17
|
+
rows = []
|
18
|
+
|
19
|
+
lines.each do |line|
|
20
|
+
case line
|
21
|
+
when /^p/
|
22
|
+
current_pid = parse_lsof(line, 'p').to_i
|
23
|
+
when /^c/
|
24
|
+
current_command = parse_lsof(line, 'c')
|
25
|
+
when /^u/
|
26
|
+
current_user = parse_lsof(line, 'u').to_i
|
27
|
+
when /^f/
|
28
|
+
rows << current_row if current_row
|
29
|
+
|
30
|
+
current_row = Kanrisuru::Core::System::OpenFile.new
|
31
|
+
current_row.pid = current_pid
|
32
|
+
current_row.command = current_command
|
33
|
+
current_row.uid = current_user
|
34
|
+
|
35
|
+
current_row.file_descriptor = parse_lsof(line, 'f')
|
36
|
+
when /^t/
|
37
|
+
current_row.type = parse_lsof(line, 't')
|
38
|
+
when /^D/
|
39
|
+
current_row.device = parse_lsof(line, 'D')
|
40
|
+
when /^s/
|
41
|
+
current_row.fsize = parse_lsof(line, 's').to_i
|
42
|
+
when /^i/
|
43
|
+
current_row.inode = parse_lsof(line, 'i').to_i
|
44
|
+
when /^n/
|
45
|
+
current_row.name = parse_lsof(line, 'n')
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
rows << current_row if current_row
|
50
|
+
|
51
|
+
rows
|
52
|
+
end
|
53
|
+
|
54
|
+
def parse_lsof(line, char)
|
55
|
+
line.split(char, 2)[1]
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class Ps
|
8
|
+
class << self
|
9
|
+
def parse(command)
|
10
|
+
## Have found issues with regular newline parsing from command
|
11
|
+
## most likely a buffer overflow from SSH buffer.
|
12
|
+
## Join string then split by newline.
|
13
|
+
result_string = command.raw_result.join
|
14
|
+
rows = result_string.split("\n")
|
15
|
+
|
16
|
+
build_process_list(rows)
|
17
|
+
end
|
18
|
+
|
19
|
+
def build_process_list(rows)
|
20
|
+
rows.map do |row|
|
21
|
+
values = *row.split(/\s+/, 15)
|
22
|
+
values.shift if values[0] == ''
|
23
|
+
|
24
|
+
Kanrisuru::Core::System::ProcessInfo.new(
|
25
|
+
values[0].to_i,
|
26
|
+
values[1],
|
27
|
+
values[2].to_i,
|
28
|
+
values[3],
|
29
|
+
values[4].to_i,
|
30
|
+
values[5].to_i,
|
31
|
+
values[6].to_f,
|
32
|
+
values[7].to_f,
|
33
|
+
values[8],
|
34
|
+
values[9].to_i,
|
35
|
+
values[10].to_i,
|
36
|
+
values[11],
|
37
|
+
parse_policy_abbr(values[11]),
|
38
|
+
values[12],
|
39
|
+
values[13]
|
40
|
+
)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def parse_policy_abbr(value)
|
45
|
+
case value
|
46
|
+
when '-'
|
47
|
+
'not reported'
|
48
|
+
when 'TS'
|
49
|
+
'SCHED_OTHER'
|
50
|
+
when 'FF'
|
51
|
+
'SCHED_FIFO'
|
52
|
+
when 'RR'
|
53
|
+
'SCHED_RR'
|
54
|
+
when 'B'
|
55
|
+
'SCHED_BATCH'
|
56
|
+
when 'ISO'
|
57
|
+
'SCHED_ISO'
|
58
|
+
when 'IDL'
|
59
|
+
'SCHED_IDLE'
|
60
|
+
when 'DLN'
|
61
|
+
'SCHED_DEADLINE'
|
62
|
+
else
|
63
|
+
'unknown value'
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class Uptime
|
8
|
+
def self.parse(command)
|
9
|
+
seconds = command.to_s.split[0].to_i
|
10
|
+
minutes = seconds / 60
|
11
|
+
hours = seconds / 3600
|
12
|
+
days = seconds / 86_400
|
13
|
+
|
14
|
+
seconds_dur = seconds
|
15
|
+
days_dur = seconds_dur / 86_400
|
16
|
+
seconds_dur -= days_dur * 86_400
|
17
|
+
hours_dur = seconds_dur / 3600
|
18
|
+
seconds_dur -= hours_dur * 3600
|
19
|
+
minutes_dur = seconds_dur / 60
|
20
|
+
seconds_dur -= minutes_dur * 60
|
21
|
+
uptime_s = "#{days_dur}:#{hours_dur}:#{minutes_dur}:#{seconds_dur}"
|
22
|
+
|
23
|
+
boot_time = Time.now - seconds
|
24
|
+
|
25
|
+
Kanrisuru::Core::System::Uptime.new(
|
26
|
+
boot_time,
|
27
|
+
uptime_s,
|
28
|
+
seconds,
|
29
|
+
minutes,
|
30
|
+
hours,
|
31
|
+
days
|
32
|
+
)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
module Parser
|
7
|
+
class W
|
8
|
+
def self.parse(command)
|
9
|
+
result_string = command.raw_result.join
|
10
|
+
rows = result_string.split("\n")
|
11
|
+
|
12
|
+
rows.map do |row|
|
13
|
+
values = *row.split(/\s+/, 8)
|
14
|
+
Kanrisuru::Core::System::UserLoggedIn.new(
|
15
|
+
values[0],
|
16
|
+
values[1],
|
17
|
+
IPAddr.new(values[2]),
|
18
|
+
values[3],
|
19
|
+
values[4],
|
20
|
+
values[5].to_f,
|
21
|
+
values[6].to_f,
|
22
|
+
values[7]
|
23
|
+
)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,108 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module System
|
6
|
+
CPUArchitectureVulnerability = Struct.new(
|
7
|
+
:name,
|
8
|
+
:data
|
9
|
+
)
|
10
|
+
|
11
|
+
CPUArchitecture = Struct.new(
|
12
|
+
:architecture,
|
13
|
+
:cores,
|
14
|
+
:byte_order,
|
15
|
+
:address_sizes,
|
16
|
+
:operation_modes,
|
17
|
+
:online_cpus,
|
18
|
+
:threads_per_core,
|
19
|
+
:cores_per_socket,
|
20
|
+
:sockets,
|
21
|
+
:numa_mode,
|
22
|
+
:vendor_id,
|
23
|
+
:cpu_family,
|
24
|
+
:model,
|
25
|
+
:model_name,
|
26
|
+
:stepping,
|
27
|
+
:cpu_mhz,
|
28
|
+
:cpu_max_mhz,
|
29
|
+
:cpu_min_mhz,
|
30
|
+
:bogo_mips,
|
31
|
+
:virtualization,
|
32
|
+
:hypervisor_vendor,
|
33
|
+
:virtualization_type,
|
34
|
+
:l1d_cache,
|
35
|
+
:l1i_cache,
|
36
|
+
:l2_cache,
|
37
|
+
:l3_cache,
|
38
|
+
:numa_nodes,
|
39
|
+
:vulnerabilities,
|
40
|
+
:flags
|
41
|
+
)
|
42
|
+
|
43
|
+
KernelStatisticCpu = Struct.new(
|
44
|
+
:user,
|
45
|
+
:nice,
|
46
|
+
:system,
|
47
|
+
:idle,
|
48
|
+
:iowait,
|
49
|
+
:irq,
|
50
|
+
:softirq,
|
51
|
+
:steal,
|
52
|
+
:guest,
|
53
|
+
:guest_nice
|
54
|
+
)
|
55
|
+
|
56
|
+
KernelStatistic = Struct.new(
|
57
|
+
:cpu_total,
|
58
|
+
:cpus,
|
59
|
+
:interrupt_total,
|
60
|
+
:interrupts,
|
61
|
+
:ctxt,
|
62
|
+
:btime,
|
63
|
+
:processes,
|
64
|
+
:procs_running,
|
65
|
+
:procs_blocked,
|
66
|
+
:softirq_total,
|
67
|
+
:softirqs
|
68
|
+
)
|
69
|
+
|
70
|
+
ProcessInfo = Struct.new(
|
71
|
+
:uid, :user, :gid, :group, :ppid, :pid,
|
72
|
+
:cpu_usage, :memory_usage, :stat, :priority,
|
73
|
+
:flags, :policy_abbr, :policy, :cpu_time, :command
|
74
|
+
)
|
75
|
+
|
76
|
+
Uptime = Struct.new(
|
77
|
+
:boot_time, :uptime, :seconds, :minutes, :hours, :days
|
78
|
+
)
|
79
|
+
|
80
|
+
UserLoggedIn = Struct.new(:user, :tty, :ip, :login, :idle, :jcpu, :pcpu, :command)
|
81
|
+
|
82
|
+
OpenFile = Struct.new(
|
83
|
+
:command,
|
84
|
+
:pid,
|
85
|
+
:uid,
|
86
|
+
:file_descriptor,
|
87
|
+
:type,
|
88
|
+
:device,
|
89
|
+
:fsize,
|
90
|
+
:inode,
|
91
|
+
:name
|
92
|
+
)
|
93
|
+
|
94
|
+
SessionDetail = Struct.new(
|
95
|
+
:tty,
|
96
|
+
:login_at,
|
97
|
+
:logout_at,
|
98
|
+
:ip_address,
|
99
|
+
:success
|
100
|
+
)
|
101
|
+
|
102
|
+
LoginUser = Struct.new(
|
103
|
+
:user,
|
104
|
+
:sessions
|
105
|
+
)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|