-
Notifications
You must be signed in to change notification settings - Fork 474
/
Copy pathcheck_mk_agent.linux
executable file
·2290 lines (1932 loc) · 74.9 KB
/
check_mk_agent.linux
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
# Copyright (C) 2019 Checkmk GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.
#
# BEGIN COMMON AGENT CODE
#
usage() {
cat <<HERE
Usage: ${0} [OPTION...]
The Checkmk agent to monitor *nix style systems.
Options:
-h, --help show this message and exit
-d, --debug emit debugging messages
-p, --profile create files containing the execution times
--force-inventory get the output of the agent plugin 'mk_inventory'
independent of the last run state.
HERE
}
inpath() {
# replace "if type [somecmd]" idiom
# 'command -v' tends to be more robust vs 'which' and 'type' based tests
command -v "${1:?No command to test}" >/dev/null 2>&1
}
get_file_atime() {
stat -c %X "${1}" 2>/dev/null ||
stat -f %a "${1}" 2>/dev/null ||
perl -e 'if (! -f $ARGV[0]){die "0000000"};$atime=(stat($ARGV[0]))[8];print $atime."\n";' "${1}"
}
get_file_mtime() {
stat -c %Y "${1}" 2>/dev/null ||
stat -f %m "${1}" 2>/dev/null ||
perl -e 'if (! -f $ARGV[0]){die "0000000"};$mtime=(stat($ARGV[0]))[9];print $mtime."\n";' "${1}"
}
is_valid_plugin() {
# test if a file is executable and does not have certain
# extensions (remnants from distro upgrades).
case "${1:?No plugin defined}" in
*.dpkg-new | *.dpkg-old | *.dpkg-temp | *.dpkg-tmp) return 1 ;;
*) [ -f "${1}" ] && [ -x "${1}" ] ;;
esac
}
set_up_process_commandline_arguments() {
while [ -n "${1}" ]; do
case "${1}" in
-d | --debug)
set -xv
DISABLE_STDERR=false
shift
;;
-p | --profile)
LOG_SECTION_TIME=true
# disable caching to get the whole execution time
DISABLE_CACHING=true
shift
;;
--force-inventory)
export MK_FORCE_INVENTORY=true
shift
;;
-h | --help)
usage
exit 1
;;
*)
shift
;;
esac
done
}
set_up_get_epoch() {
# On some systems date +%s returns a literal %s
if date +%s | grep "^[0-9].*$" >/dev/null 2>&1; then
get_epoch() { date +%s; }
else
# do not check whether perl is even present.
# in weird cases we may be fine without get_epoch.
get_epoch() { perl -e 'print($^T."\n");'; }
fi
}
set_up_current_shell() {
# Note the current shell may not be the same as what is specified in the
# shebang, e.g. when reconfigured in the xinetd/systemd/whateverd config file
CURRENT_SHELL="$(ps -o args= -p $$ | cut -d' ' -f1)"
}
#
# END COMMON AGENT CODE
#
set_variable_defaults() {
# some 'booleans'
[ "${MK_RUN_SYNC_PARTS}" = "false" ] || MK_RUN_SYNC_PARTS=true
[ "${MK_RUN_ASYNC_PARTS}" = "false" ] || MK_RUN_ASYNC_PARTS=true
# WATCH OUT: These 5 lines are searched for and replaced by the
# agent bakery!
# TODO: CMK-8339 (proper configuration)
: "${MK_LIBDIR:="/usr/lib/check_mk_agent"}"
: "${MK_CONFDIR:="/etc/check_mk"}"
: "${MK_VARDIR:="/var/lib/check_mk_agent"}"
: "${MK_LOGDIR:="/var/log/check_mk_agent"}"
: "${MK_BIN:="/usr/bin"}"
export MK_LIBDIR
export MK_CONFDIR
export MK_VARDIR
export MK_LOGDIR
export MK_BIN
# Optionally set a tempdir for all subsequent calls
#export TMPDIR=
# All executables in PLUGINSDIR will simply be executed and their
# ouput appended to the output of the agent. Plugins define their own
# sections and must output headers with '<<<' and '>>>'
PLUGINSDIR=${MK_LIBDIR}/plugins
# All executables in LOCALDIR will by executabled and their
# output inserted into the section <<<local>>>. Please
# refer to online documentation for details about local checks.
LOCALDIR=${MK_LIBDIR}/local
# All files in SPOOLDIR will simply appended to the agent
# output if they are not outdated (see below)
SPOOLDIR=${MK_VARDIR}/spool
}
set_up_path() {
_PATH="${1}"
# Make sure that locally installed binaries are found
# Only add binaries if they are not already in the path! If you append to path in a loop the process will
# eventually each the 128k size limit for the environment and become a zombie process. See execve manpage.
[ "${_PATH#*"/usr/local/bin"}" != "${_PATH}" ] || _PATH="${_PATH}:/usr/local/bin"
[ -n "${MK_BIN}" ] && { [ "${_PATH#*"${MK_BIN}"}" != "${_PATH}" ] || _PATH="${_PATH}:${MK_BIN}"; }
[ -d "/var/qmail/bin" ] && { [ "${_PATH#*"/var/qmail/bin"}" != "${_PATH}" ] || _PATH="${_PATH}:/var/qmail/bin"; }
echo "${_PATH}"
unset _PATH
}
set_up_remote() {
# Provide information about the remote host. That helps when data
# is being sent only once to each remote host.
REMOTE="${REMOTE_HOST:-"${REMOTE_ADDR:-"${SSH_CLIENT%% *}"}"}"
# If none of the above are set *and* we are configured to, try to read it from stdin
[ -z "${REMOTE}" ] && [ "${MK_READ_REMOTE}" = "true" ] && read -r REMOTE
export REMOTE
}
announce_remote() {
# let RTCs know about this remote
[ -d "${MK_VARDIR}/rtc_remotes" ] || mkdir "${MK_VARDIR}/rtc_remotes"
[ -n "${REMOTE}" ] && [ "${REMOTE}" != "push-connection" ] && touch "${MK_VARDIR}/rtc_remotes/${REMOTE}"
}
#
# BEGIN COMMON AGENT CODE
#
# SC2089: Quotes/backslashes will be treated literally. Use an array.
# shellcheck disable=SC2089
MK_DEFINE_LOG_SECTION_TIME='_log_section_time() { "$@"; }'
finalize_profiling() { :; }
set_up_profiling() {
PROFILING_CONFIG="${MK_CONFDIR}/profiling.cfg"
if [ -e "${PROFILING_CONFIG}" ]; then
# Config vars:
# LOG_SECTION_TIME=true/false
# DISABLE_CACHING=true/false
# If LOG_SECTION_TIME=true via profiling.cfg do NOT disable caching in order
# to get the real execution time during operation.
# shellcheck disable=SC1090
. "${PROFILING_CONFIG}"
fi
PROFILING_LOGFILE_DIR="${MK_LOGDIR}/profiling/$(date +%Y%m%d_%H%M%S)"
if ${LOG_SECTION_TIME:-false}; then
mkdir -p "${PROFILING_LOGFILE_DIR}"
agent_start="$(perl -MTime::HiRes=time -le 'print time()')"
# SC2016: Expressions don't expand in single quotes, use double quotes for that.
# SC2089: Quotes/backslashes will be treated literally. Use an array.
# shellcheck disable=SC2016,SC2089
MK_DEFINE_LOG_SECTION_TIME='_log_section_time() {
section_func="$@"
base_name=$(echo "${section_func}" | sed "s/[^A-Za-z0-9.-]/_/g")
profiling_logfile="'"${PROFILING_LOGFILE_DIR}"'/${base_name}.log"
start="$(perl -MTime::HiRes=time -le "print time()")"
{ time ${section_func}; } 2>> "${profiling_logfile}"
echo "runtime $(perl -MTime::HiRes=time -le "print time() - ${start}")" >> "${profiling_logfile}"
}'
finalize_profiling() {
pro_log_file="${PROFILING_LOGFILE_DIR}/profiling_check_mk_agent.log"
agent_end="$(perl -MTime::HiRes=time -le 'print time()')"
echo "runtime $(echo "${agent_end} - ${agent_start}" | bc)" >>"${pro_log_file}"
}
fi
eval "${MK_DEFINE_LOG_SECTION_TIME}"
# SC2090: Quotes/backslashes in this variable will not be respected.
# shellcheck disable=SC2090
export MK_DEFINE_LOG_SECTION_TIME
}
unset_locale() {
# eliminate localized outputs where possible
# The locale logic here is used to make the Python encoding detection work (see CMK-2778).
unset -v LANG LC_ALL
if inpath locale && inpath paste; then
# match C.UTF-8 at the beginning, but not e.g. es_EC.UTF-8!
case "$(locale -a | paste -sd ' ' -)" in
*' C.UTF-8'* | 'C.UTF-8'*) LC_ALL="C.UTF-8" ;;
*' C.utf8'* | 'C.utf8'*) LC_ALL="C.utf8" ;;
esac
fi
LC_ALL="${LC_ALL:-C}"
export LC_ALL
}
#
# END COMMON AGENT CODE
#
read_python_version() {
if inpath "${1}"; then
version=$(${1} -c 'import sys; print("%s.%s"%(sys.version_info[0], sys.version_info[1]))')
major=${version%%.*}
minor=${version##*.}
if [ "${major}" -eq "${2}" ] && [ "${minor}" -ge "${3}" ]; then
echo "${1}"
return 0
fi
fi
return 1
}
detect_python() {
PYTHON3=$(read_python_version python3 3 4 || read_python_version python 3 4)
PYTHON2=$(read_python_version python2 2 6 || read_python_version python 2 6)
if [ -f "${MK_CONFDIR}/python_path.cfg" ]; then
# shellcheck source=/dev/null
. "${MK_CONFDIR}/python_path.cfg"
fi
export PYTHON2 PYTHON3
if [ -z "${PYTHON2}" ] && [ -z "${PYTHON3}" ]; then
NO_PYTHON=true
elif [ -n "${PYTHON3}" ] && [ "$(
${PYTHON3} -c 'pass' >/dev/null 2>&1
echo $?
)" -eq 127 ]; then
WRONG_PYTHON_COMMAND=true
elif [ -z "${PYTHON3}" ] && [ "$(
${PYTHON2} -c 'pass' >/dev/null 2>&1
echo $?
)" -eq 127 ]; then
WRONG_PYTHON_COMMAND=true
fi
}
detect_container_environment() {
if [ -f /.dockerenv ]; then
IS_DOCKERIZED=1
elif grep container=lxc /proc/1/environ >/dev/null 2>&1; then
# Works in lxc environment e.g. on Ubuntu bionic, but does not
# seem to work in proxmox (see CMK-1561)
IS_LXC_CONTAINER=1
elif grep 'lxcfs /proc/cpuinfo fuse.lxcfs' /proc/mounts >/dev/null 2>&1; then
# Seems to work in proxmox
IS_LXC_CONTAINER=1
else
unset IS_DOCKERIZED
unset IS_LXC_CONTAINER
fi
if [ -n "${IS_DOCKERIZED}" ] || [ -n "${IS_LXC_CONTAINER}" ]; then
if [ "$(stat -fc'%t' /sys/fs/cgroup)" = "63677270" ]; then
IS_CGROUP_V2=1
CGROUP_SECTION_SUFFIX="_cgroupv2"
else
unset IS_CGROUP_V2
unset CGROUP_SECTION_SUFFIX
fi
fi
}
# Prefer (relatively) new /usr/bin/timeout from coreutils against
# our shipped waitmax. waitmax is statically linked and crashes on
# some Ubuntu versions recently.
if inpath timeout; then
waitmax() {
timeout "$@"
}
fi
encryption_panic() {
echo "<<<check_mk>>>"
echo "EncryptionPanic: true"
exit 1
}
set_up_encryption() {
# shellcheck source=agents/cfg_examples/encryption.cfg
[ -f "${MK_CONFDIR}/encryption.cfg" ] && {
. "${MK_CONFDIR}/encryption.cfg" || encryption_panic
}
define_optionally_encrypt "${ENCRYPTED:-"no"}"
}
hex_decode() {
# We might not have xxd available, so we have to do it manually.
# Be aware that this implementation is very slow and should not be used for large data.
local hex="$1"
for ((i = 0; i < ${#hex}; i += 2)); do
printf '%b' "\x${hex:i:2}"
done
}
parse_kdf_output() {
local kdf_output="$1"
salt_hex=$(echo "$kdf_output" | grep -oP "(?<=salt=)[0-9A-F]+")
key_hex=$(echo "$kdf_output" | grep -oP "(?<=key=)[0-9A-F]+")
iv_hex=$(echo "$kdf_output" | grep -oP "(?<=iv =)[0-9A-F]+")
# Make sure this rather brittle grepping worked. For example, some openssl update might decide
# to remove that odd-looking space behind 'iv'.
# Note that the expected LENGTHS ARE DOUBLED because the values are hex encoded.
if [ ${#salt_hex} -ne 16 ] || [ ${#key_hex} -ne 64 ] || [ ${#iv_hex} -ne 32 ]; then
encryption_panic
fi
echo "$salt_hex" "$key_hex" "$iv_hex"
}
encrypt_then_mac() {
# Encrypt the input data, calculate a MAC over IV and ciphertext, then
# print mac and ciphertext.
local salt_hex="$1"
local key_hex="$2"
local iv_hex="$3"
local ciphertext_b64
# We need the ciphertext twice: for the mac and for the output. But we can only store it in
# encoded form because it can contain null bytes.
ciphertext_b64=$(openssl enc -aes-256-cbc -K "$key_hex" -iv "$iv_hex" | openssl enc -base64)
(
hex_decode "$iv_hex"
echo "$ciphertext_b64" | openssl enc -base64 -d
) | openssl dgst -sha256 -mac HMAC -macopt hexkey:"$key_hex" -binary
echo "$ciphertext_b64" | openssl enc -base64 -d
}
define_optionally_encrypt() {
# if things fail, make sure we don't accidentally send unencrypted data
unset optionally_encrypt
if [ "${1}" != "no" ]; then
OPENSSL_VERSION=$(openssl version | awk '{print $2}' | awk -F . '{print (($1 * 100) + $2) * 100+ $3}')
#
# Encryption scheme for version 04 and 05:
#
# salt <- random_salt()
# key, IV <- version_specific_kdf( salt, password )
#
# ciphertext <- aes_256_cbc_encrypt( key, IV, message )
# mac <- hmac_sha256( key, iv:ciphertext )
#
# // The output blob is formed as:
# // - 2 bytes version
# // - optional: rtc timestamp
# // - 8 bytes salt
# // - 32 bytes MAC
# // - the ciphertext
# result <- [version:salt:mac:ciphertext]
if [ "${OPENSSL_VERSION}" -ge 10101 ]; then
optionally_encrypt() {
# version: 05
# kdf: pbkdf2, 600.000 iterations
local salt_hex key_hex iv_hex
read -r salt_hex key_hex iv_hex <<<"$(
parse_kdf_output "$(openssl enc -aes-256-cbc -md sha256 -pbkdf2 -iter 600000 -k "${1}" -P)"
)"
printf "05"
printf "%s" "${2}"
hex_decode "$salt_hex"
encrypt_then_mac "$salt_hex" "$key_hex" "$iv_hex"
}
elif [ "${OPENSSL_VERSION}" -ge 10000 ]; then
optionally_encrypt() {
# version: 04
# kdf: openssl custom kdf based on sha256
local salt_hex key_hex iv_hex
read -r salt_hex key_hex iv_hex <<<"$(
parse_kdf_output "$(openssl enc -aes-256-cbc -md sha256 -k "${1}" -P)"
)"
printf "04"
printf "%s" "${2}"
hex_decode "$salt_hex"
encrypt_then_mac "$salt_hex" "$key_hex" "$iv_hex"
}
else
optionally_encrypt() {
printf "00%s" "${2}"
openssl enc -aes-256-cbc -md md5 -k "${1}" -nosalt
}
fi
else
optionally_encrypt() {
[ -n "${2}" ] && printf "99%s" "${2}"
cat
}
fi
}
set_up_disabled_sections() {
if [ -f "${MK_CONFDIR}/exclude_sections.cfg" ]; then
# shellcheck source=agents/cfg_examples/exclude_sections.cfg
. "${MK_CONFDIR}/exclude_sections.cfg"
fi
}
export_utility_functions() {
# At the time of writing of this function, the linux agent exports
# some helper functions, so I consolidate those exports here.
# I am not sure whether this is a good idea, though.
# Their API is unstable.
export -f run_mrpe
export -f waitmax
export -f run_cached
}
section_checkmk() {
cat <<HERE
<<<check_mk>>>
Version: 2.4.0b1
AgentOS: linux
Hostname: $(uname -n)
AgentDirectory: ${MK_CONFDIR}
DataDirectory: ${MK_VARDIR}
SpoolDirectory: ${SPOOLDIR}
PluginsDirectory: ${PLUGINSDIR}
LocalDirectory: ${LOCALDIR}
HERE
# try to find only_from configuration
if [ -n "${REMOTE_HOST}" ]; then # xinetd
sed -n "/^service[[:space:]]*check-mk-agent/,/}/s/^[[:space:]]*only_from[[:space:]]*=[[:space:]]*\(.*\)/OnlyFrom: \1/p" /etc/xinetd.d/* | head -n1
elif inpath systemctl; then # systemd
sed -n '/^IPAddressAllow/s/IPAddressAllow=/OnlyFrom: /p' "/usr/lib/systemd/system/check-mk-agent.socket" 2>/dev/null
# NOTE: The above line just reads back the socket file we deployed ourselves. Systemd units can be altered by
# other user defined unit files, so this *may* not be correct. A better way of doing this seemed to be querying
# systemctl itself about the 'effective' property:
#
# systemctl show --property IPAddressAllow "check-mk-agent.socket" | sed 's/IPAddressAllow=/OnlyFrom: /'
#
# However this ("successfully") reports an empty list or '[unprintable]' on older systemd versions :-(
fi
#
# OS based labels are created from these variables
#
echo "OSType: linux"
while read -r line; do
raw_line="${line//\"/}"
case $line in
ID=*) echo "OSPlatform: ${raw_line##*=}" ;;
NAME=*) echo "OSName: ${raw_line##*=}" ;;
VERSION_ID=*) echo "OSVersion: ${raw_line##*=}" ;;
esac
done <<<"$(cat /etc/os-release 2>/dev/null)"
#
# BEGIN COMMON AGENT CODE
#
if [ -n "${NO_PYTHON}" ]; then
python_fail_msg="No suitable python installation found."
elif [ -n "${WRONG_PYTHON_COMMAND}" ]; then
python_fail_msg="Configured python command not found."
fi
cat <<HERE
FailedPythonReason: ${python_fail_msg}
SSHClient: ${SSH_CLIENT}
HERE
}
section_cmk_agent_ctl_status() {
cmk-agent-ctl --version 2>/dev/null >&2 || return
printf "<<<cmk_agent_ctl_status:sep(0)>>>\n"
cmk-agent-ctl status --json --no-query-remote
}
section_checkmk_agent_plugins() {
printf "<<<checkmk_agent_plugins_lnx:sep(0)>>>\n"
printf "pluginsdir %s\n" "${PLUGINSDIR}"
printf "localdir %s\n" "${LOCALDIR}"
for script in \
"${PLUGINSDIR}"/* \
"${PLUGINSDIR}"/[1-9]*/* \
"${LOCALDIR}"/* \
"${LOCALDIR}"/[1-9]*/*; do
if is_valid_plugin "${script}"; then
script_version=$(grep -e '^__version__' -e '^CMK_VERSION' "${script}" || echo 'CMK_VERSION="unversioned"')
printf "%s:%s\n" "${script}" "${script_version}"
fi
done
}
section_checkmk_failed_plugin() {
${MK_RUN_SYNC_PARTS} || return
echo "<<<check_mk>>>"
echo "FailedPythonPlugins: ${1}"
}
#
# END COMMON AGENT CODE
#
#
# CHECK SECTIONS
#
section_labels() {
echo '<<<labels:sep(0)>>>'
if [ -n "${IS_DOCKERIZED}" ] || [ -n "${IS_LXC_CONTAINER}" ]; then
echo '{"cmk/device_type":"container"}'
elif grep "hypervisor" /proc/cpuinfo >/dev/null 2>&1; then
echo '{"cmk/device_type":"vm"}'
fi
}
section_mem() {
if [ -n "${IS_DOCKERIZED}" ]; then
echo "<<<docker_container_mem${CGROUP_SECTION_SUFFIX}>>>"
if [ -n "${IS_CGROUP_V2}" ]; then
cat /sys/fs/cgroup/memory.stat
echo "memory.current $(cat /sys/fs/cgroup/memory.current)"
echo "memory.max $(cat /sys/fs/cgroup/memory.max)"
else
cat /sys/fs/cgroup/memory/memory.stat
echo "usage_in_bytes $(cat /sys/fs/cgroup/memory/memory.usage_in_bytes)"
echo "limit_in_bytes $(cat /sys/fs/cgroup/memory/memory.limit_in_bytes)"
fi
grep -F 'MemTotal:' /proc/meminfo
elif [ -n "${IS_LXC_CONTAINER}" ]; then
echo '<<<mem>>>'
grep -v -E '^Swap:|^Mem:|total:|^Vmalloc|^Committed' </proc/meminfo
else
echo '<<<mem>>>'
grep -v -E '^Swap:|^Mem:|total:' </proc/meminfo
fi
}
section_cpu() {
case "$(uname -m)" in
"armv7l" | "armv6l" | "aarch64")
CPU_REGEX='^processor'
;;
*)
CPU_REGEX='^CPU|^processor'
;;
esac
NUM_CPUS=$(grep -c -E ${CPU_REGEX} </proc/cpuinfo)
if [ -z "${IS_DOCKERIZED}" ] && [ -z "${IS_LXC_CONTAINER}" ]; then
echo '<<<cpu>>>'
echo "$(cat /proc/loadavg) ${NUM_CPUS}"
if [ -f "/proc/sys/kernel/threads-max" ]; then
cat /proc/sys/kernel/threads-max
fi
else
if [ -n "${IS_DOCKERIZED}" ]; then
echo "<<<docker_container_cpu${CGROUP_SECTION_SUFFIX}>>>"
else
echo "<<<lxc_container_cpu${CGROUP_SECTION_SUFFIX}>>>"
fi
if [ -n "${IS_CGROUP_V2}" ]; then
echo "uptime $(cat /proc/uptime)"
echo "num_cpus ${NUM_CPUS}"
cat /sys/fs/cgroup/cpu.stat
else
grep "^cpu " /proc/stat
echo "num_cpus ${NUM_CPUS}"
cat /sys/fs/cgroup/cpuacct/cpuacct.stat
fi
fi
}
section_uptime() {
echo '<<<uptime>>>'
if [ -z "${IS_DOCKERIZED}" ]; then
cat /proc/uptime
else
echo "$(($(get_epoch) - $(stat -c %Z /dev/pts)))"
fi
}
# Print out Partitions / Filesystems. (-P gives non-wrapped POSIXed output)
# Heads up: NFS-mounts are generally supressed to avoid agent hangs.
# If hard NFS mounts are configured or you have too large nfs retry/timeout
# settings, accessing those mounts from the agent would leave you with
# thousands of agent processes and, ultimately, a dead monitored system.
# These should generally be monitored on the NFS server, not on the clients.
section_df() {
if [ -n "${IS_DOCKERIZED}" ]; then
return
fi
# The exclusion list is getting a bit of a problem.
# -l should hide any remote FS but seems to be all but working.
excludefs="-x smbfs -x cifs -x iso9660 -x udf -x nfsv4 -x nfs -x mvfs -x prl_fs -x squashfs -x devtmpfs -x autofs -x beegfs"
if [ -z "${IS_LXC_CONTAINER}" ]; then
excludefs="${excludefs} -x zfs"
fi
echo '<<<df_v2>>>'
# We really *need* word splitting below!
# shellcheck disable=SC2086
df -PTlk ${excludefs} | sed 1d
# df inodes information
echo '<<<df_v2>>>'
echo '[df_inodes_start]'
# We really *need* word splitting below!
# shellcheck disable=SC2086
df -PTli ${excludefs} | sed 1d
echo '[df_inodes_end]'
if inpath lsblk; then
echo "[df_lsblk_start]"
lsblk --list --paths --output NAME,UUID
echo "[df_lsblk_end]"
fi
}
section_systemd() {
if inpath systemctl; then
echo '<<<systemd_units>>>'
# use plain to force ASCII output that is simpler to parse
echo "[list-unit-files]"
systemctl list-unit-files --full --no-legend --no-pager --plain --type service --type socket | tr -s ' '
echo "[status]"
systemctl status --all --type service --type socket --no-pager --lines 0 | tr -s ' '
echo "[all]"
systemctl --all --type service --type socket --full --no-legend --no-pager --plain | sed '/^$/q' | tr -s ' '
fi
}
section_zfs() {
if inpath zfs; then
echo '<<<zfsget:sep(9)>>>'
zfs get -t filesystem,volume -Hp name,quota,used,avail,mountpoint,type 2>/dev/null
echo '<<<zfsget>>>'
echo '[df]'
df -PTlk -t zfs | sed 1d
fi
}
section_nfs_mounts() {
proc_mounts_file=${1}
if inpath waitmax; then
STAT_VERSION=$(stat --version | head -1 | cut -d" " -f4)
STAT_BROKE="5.3.0"
json_templ() {
echo '{"mountpoint": "'"${1}"'", "source": "'"${2}"'", "state": "ok", "usage": {"total_blocks": %b, "free_blocks_su": %f, "free_blocks": %a, "blocksize": %s}}'
}
json_templ_empty() {
echo '{"mountpoint": "'"${1}"'", "source": "'"${2}"'", "state": "hanging", "usage": {"total_blocks": 0, "free_blocks_su": 0, "free_blocks": 0, "blocksize": 0}}'
}
echo '<<<nfsmounts_v2:sep(0)>>>'
sed -n '/ nfs4\? /s/\([^ ]*\) \([^ ]*\) .*/\1 \2/p' <"${proc_mounts_file}" |
while read -r MD MP; do
MD="$(printf "%s" "${MD}" | sed 's/\\040/ /g')"
MP="$(printf "%s" "${MP}" | sed 's/\\040/ /g')"
if [ "${STAT_VERSION}" != "${STAT_BROKE}" ]; then
waitmax -s 9 5 stat -f -c "$(json_templ "${MP}" "${MD}")" "${MP}" ||
json_templ_empty "${MP}" "${MD}"
else
(waitmax -s 9 5 stat -f -c "$(json_templ "${MP}" "${MD}")" "${MP}" &&
printf '\n') || json_templ_empty "${MP}" "${MD}"
fi
done
echo '<<<cifsmounts>>>'
sed -n -e '/ cifs /s/.*\ \([^ ]*\)\ cifs\ .*/\1/p' <"${proc_mounts_file}" |
while read -r MP; do
MP="$(printf "%s" "${MP}" | sed 's/\\040/ /g')"
if [ ! -r "${MP}" ]; then
echo "${MP} Permission denied"
elif [ "${STAT_VERSION}" != "${STAT_BROKE}" ]; then
waitmax -s 9 2 stat -f -c "${MP} ok %b %f %a %s" "${MP}" ||
echo "${MP} hanging 0 0 0 0"
else
waitmax -s 9 2 stat -f -c "${MP} ok %b %f %a %s" "${MP}" &&
printf '\n' || echo "${MP} hanging 0 0 0 0"
fi
done
fi
}
section_mounts() {
echo '<<<mounts>>>'
grep ^/dev </proc/mounts | grep -v " squashfs "
}
section_ps() {
if inpath ps; then
# processes including username, without kernel processes
echo '<<<ps_lnx>>>'
echo "[time]"
get_epoch
echo "[processes]"
CGROUP=""
if [ -e /sys/fs/cgroup ]; then
CGROUP="cgroup:512,"
fi
echo "[header] $(ps ax -ww -o "${CGROUP}"user:32,vsz,rss,cputime,etime,pid,command | tr -s ' ')"
fi
}
section_lnx_if() {
if inpath ip; then
echo '<<<lnx_if>>>'
echo "[start_iplink]"
ip address
echo "[end_iplink]"
fi
echo '<<<lnx_if:sep(58)>>>'
sed 1,2d /proc/net/dev
sed -e 1,2d /proc/net/dev | cut -d':' -f1 | sort | while read -r eth; do
echo "[${eth}]"
if inpath ethtool; then
ethtool "${eth}" | grep -E '(Speed|Duplex|Link detected|Auto-negotiation):'
else
# If interface down we get "Invalid argument"
speed=$(cat "/sys/class/net/${eth}/speed" 2>/dev/null)
if [ -n "${speed}" ] && [ "${speed}" -ge 0 ]; then
echo "Speed: ${speed}Mb/s"
fi
fi
echo "Address: $(cat "/sys/class/net/${eth}/address")"
done
}
section_bonding_interfaces() {
(
cd /proc/net/bonding 2>/dev/null || return
echo '<<<lnx_bonding:sep(58)>>>'
head -v -n 1000 ./*
)
}
section_vswitch_bonding() {
if inpath ovs-appctl; then
BONDS=$(ovs-appctl bond/list)
COL=$(echo "${BONDS}" | awk '{for(i=1;i<=NF;i++) {if($i == "bond") printf("%d", i)} exit 0}')
echo '<<<ovs_bonding:sep(58)>>>'
for bond in $(echo "${BONDS}" | sed -e 1d | cut -f"${COL}"); do
echo "[${bond}]"
ovs-appctl bond/show "${bond}"
done
fi
}
section_tcp() {
if inpath waitmax; then
echo '<<<tcp_conn_stats>>>'
if OUTPUT=$(waitmax 5 cat /proc/net/tcp /proc/net/tcp6 2>/dev/null | awk ' /:/ { c[$4]++; } END { for (x in c) { print x, c[x]; } }'); then
echo "${OUTPUT}"
elif inpath ss; then
ss -ant | grep -v ^State | awk ' /:/ { c[$1]++; } END { for (x in c) { print x, c[x]; } }' |
sed -e 's/^ESTAB/01/g;s/^SYN-SENT/02/g;s/^SYN-RECV/03/g;s/^FIN-WAIT-1/04/g;s/^FIN-WAIT-2/05/g;s/^TIME-WAIT/06/g;s/^CLOSED/07/g;s/^CLOSE-WAIT/08/g;s/^LAST-ACK/09/g;s/^LISTEN/0A/g;s/^CLOSING/0B/g;'
fi
fi
}
section_multipathing() {
if inpath multipath; then
echo '<<<multipath>>>'
multipath -l
fi
}
section_diskstat() {
if [ -z "${IS_DOCKERIZED}" ]; then
echo '<<<diskstat>>>'
get_epoch
grep -E ' (x?[shv]d[a-z]*[0-9]*|cciss/c[0-9]+d[0-9]+|emcpower[a-z]+|dm-[0-9]+|VxVM.*|mmcblk.*|dasd[a-z]*|bcache[0-9]+|nvme[0-9]+n[0-9]+) ' </proc/diskstats
if inpath dmsetup; then
echo '[dmsetup_info]'
dmsetup info -c --noheadings --separator ' ' -o name,devno,vg_name,lv_name
fi
if [ -d /dev/vx/dsk ]; then
echo '[vx_dsk]'
stat -c "%t %T %n" /dev/vx/dsk/*/*
fi
else
echo "<<<docker_container_diskstat${CGROUP_SECTION_SUFFIX}>>>"
echo "[time]"
get_epoch
if [ -n "${IS_CGROUP_V2}" ]; then
echo "[io.stat]"
cat "/sys/fs/cgroup/io.stat"
else
for F in io_service_bytes io_serviced; do
echo "[${F}]"
cat "/sys/fs/cgroup/blkio/blkio.throttle.${F}"
done
fi
echo "[names]"
for F in /sys/block/*; do
echo "${F##*/} $(cat "${F}/dev")"
done
fi
}
section_chrony() {
if inpath chronyc; then
# Force successful exit code. Otherwise section will be missing if daemon not running
#
# The "| cat" has been added for some kind of regression in RedHat 7.5. The
# SELinux rules shipped with that release were denying the chronyc call
# without cat.
_run_cached_internal "chrony" 30 120 200 20 "echo '<<<chrony>>>'; waitmax 5 chronyc -n tracking | cat || true"
fi
}
section_kernel() {
if [ -z "${IS_DOCKERIZED}" ] && [ -z "${IS_LXC_CONTAINER}" ]; then
echo '<<<kernel>>>'
get_epoch
cat /proc/vmstat /proc/stat
fi
}
section_ipmitool() {
if inpath ipmitool; then
_run_cached_internal "ipmi" 300 300 900 600 "echo '<<<ipmi:sep(124)>>>'; waitmax 300 ipmitool sensor list | grep -v 'command failed' | grep -v -E '^[^ ]+ na ' | grep -v ' discrete '"
# readable discrete sensor states
_run_cached_internal "ipmi_discrete" 300 300 900 600 "echo '<<<ipmi_discrete:sep(124)>>>'; waitmax 300 ipmitool sdr elist compact"
fi
}
section_ipmisensors() {
inpath ipmi-sensors && ls /dev/ipmi* >/dev/null || return
if ipmi-sensors --help | grep -q " \-\-groups"; then
IPMI_GROUP_OPT="-g"
else
IPMI_GROUP_OPT="-t"
fi
# At least with ipmi-sensors 0.7.16 this group is Power_Unit instead of "Power Unit"
_run_cached_internal "ipmi_sensors" 300 300 900 600 "echo '<<<ipmi_sensors:sep(124)>>>'; for class in Temperature Power_Unit Fan; do
ipmi-sensors --sdr-cache-directory /var/cache ${IPMI_GROUP_OPT} \"\${class}\"
# In case of a timeout immediately leave loop.
if [ $? = 255 ]; then break; fi
done"
}
section_md() {
echo '<<<md>>>'
cat /proc/mdstat
}
section_dm_raid() {
if inpath dmraid && DMSTATUS=$(waitmax 3 dmraid -r); then
echo '<<<dmraid>>>'
# Output name and status
waitmax 20 dmraid -s | grep -e ^name -e ^status
# Output disk names of the RAID disks
DISKS=$(echo "${DMSTATUS}" | cut -f1 -d":")
for disk in ${DISKS}; do
device=$(cat /sys/block/"$(basename "${disk}")"/device/model)
status=$(echo "${DMSTATUS}" | grep "^${disk}")
echo "${status} Model: ${device}"
done
fi
}
section_cfggen() {
if inpath cfggen; then
echo '<<<lsi>>>'
cfggen 0 DISPLAY |
grep -E '(Target ID|State|Volume ID|Status of volume)[[:space:]]*:' |
sed -e 's/ *//g' -e 's/:/ /'
fi
}
section_storcli() {
if inpath storcli; then
_storcli() { storcli "$@"; }
elif inpath storcli64; then
_storcli() { storcli64 "$@"; }
else
return 1
fi
echo '<<<storcli_physical_disks>>>'
_storcli /call/eall/sall show all
echo '<<<storcli_virtual_disks>>>'
_storcli /call/vall show all
echo '<<<storcli_cache_vault:sep(0)>>>'
_storcli /call/cv show all
# exit successfully, because storcli was in the path.
return 0
}
section_megaraid() {
section_storcli && return
if inpath MegaCli; then
MegaCli_bin="MegaCli"
elif inpath MegaCli64; then
MegaCli_bin="MegaCli64"
elif inpath megacli; then
MegaCli_bin="megacli"
else
return 1
fi
echo '<<<megaraid_pdisks>>>'
for part in $(${MegaCli_bin} -EncInfo -aALL -NoLog </dev/null |
sed -rn 's/:/ /g; s/[[:space:]]+/ /g; s/^ //; s/ $//; s/Number of enclosures on adapter ([0-9]+).*/adapter \1/g; /^(Enclosure|Device ID|adapter) [0-9]+$/ p'); do
[ "${part}" = adapter ] && printf "\n"
[ "${part}" = 'Enclosure' ] && printf "\ndev2enc"
printf " %s" "${part}"
done
echo
${MegaCli_bin} -PDList -aALL -NoLog </dev/null |
grep -E 'Enclosure|Raw Size|Slot Number|Device Id|Firmware state|Inquiry|Adapter|Predictive Failure Count'
echo '<<<megaraid_ldisks>>>'
${MegaCli_bin} -LDInfo -Lall -aALL -NoLog </dev/null | grep -E 'Size|State|Number|Adapter|Virtual'
echo '<<<megaraid_bbu>>>'
${MegaCli_bin} -AdpBbuCmd -GetBbuStatus -aALL -NoLog </dev/null | grep -v Exit
}
section_3ware_raid() {
if inpath tw_cli; then
for C in $(tw_cli show | awk 'NR < 4 { next } { print $1 }'); do
echo '<<<3ware_info>>>'
tw_cli "/${C}" show all | grep -E 'Model =|Firmware|Serial'
echo '<<<3ware_disks>>>'
tw_cli "/${C}" show drivestatus | grep -E 'p[0-9]' | sed "s/^/${C}\//"
echo '<<<3ware_units>>>'
tw_cli "/${C}" show unitstatus | grep -E 'u[0-9]' | sed "s/^/${C}\//"
done
fi
}
section_areca_raid() {
if inpath cli64; then
_run_cached_internal "arc_raid_status" 300 300 900 600 "echo '<<<arc_raid_status>>>'; cli64 rsf info | tail -n +3 | head -n -2"