watchdog.sh 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. #!/bin/bash
  2. trap "exit" INT TERM
  3. trap "kill 0" EXIT
  4. # Prepare
  5. BACKGROUND_TASKS=()
  6. if [[ "${USE_WATCHDOG}" =~ ^([nN][oO]|[nN])+$ ]]; then
  7. echo -e "$(date) - USE_WATCHDOG=n, skipping watchdog..."
  8. sleep 365d
  9. exec $(readlink -f "$0")
  10. fi
  11. # Checks pipe their corresponding container name in this pipe
  12. if [[ ! -p /tmp/com_pipe ]]; then
  13. mkfifo /tmp/com_pipe
  14. fi
  15. # Common functions
  16. progress() {
  17. SERVICE=${1}
  18. TOTAL=${2}
  19. CURRENT=${3}
  20. DIFF=${4}
  21. [[ -z ${DIFF} ]] && DIFF=0
  22. [[ -z ${TOTAL} || -z ${CURRENT} ]] && return
  23. [[ ${CURRENT} -gt ${TOTAL} ]] && return
  24. [[ ${CURRENT} -lt 0 ]] && CURRENT=0
  25. PERCENT=$(( 200 * ${CURRENT} / ${TOTAL} % 2 + 100 * ${CURRENT} / ${TOTAL} ))
  26. redis-cli -h redis LPUSH WATCHDOG_LOG "{\"time\":\"$(date +%s)\",\"service\":\"${SERVICE}\",\"lvl\":\"${PERCENT}\",\"hpnow\":\"${CURRENT}\",\"hptotal\":\"${TOTAL}\",\"hpdiff\":\"${DIFF}\"}" > /dev/null
  27. log_msg "${SERVICE} health level: ${PERCENT}% (${CURRENT}/${TOTAL}), health trend: ${DIFF}" no_redis
  28. }
  29. log_msg() {
  30. if [[ ${2} != "no_redis" ]]; then
  31. redis-cli -h redis LPUSH WATCHDOG_LOG "{\"time\":\"$(date +%s)\",\"message\":\"$(printf '%s' "${1}" | \
  32. tr '%&;$"_[]{}-\r\n' ' ')\"}" > /dev/null
  33. fi
  34. echo $(date) $(printf '%s\n' "${1}")
  35. }
  36. function mail_error() {
  37. [[ -z ${1} ]] && return 1
  38. [[ -z ${2} ]] && return 2
  39. RCPT_DOMAIN=$(echo ${1} | awk -F @ {'print $NF'})
  40. RCPT_MX=$(dig +short ${RCPT_DOMAIN} mx | sort -n | awk '{print $2; exit}')
  41. if [[ -z ${RCPT_MX} ]]; then
  42. log_msg "Cannot determine MX for ${1}, skipping email notification..."
  43. return 1
  44. fi
  45. ./smtp-cli --missing-modules-ok \
  46. --subject="Watchdog: ${2} service hit the error rate limit" \
  47. --body-plain="Service was restarted, please check your mailcow installation." \
  48. --to=${1} \
  49. --from="watchdog@${MAILCOW_HOSTNAME}" \
  50. --server="${RCPT_MX}" \
  51. --hello-host=${MAILCOW_HOSTNAME}
  52. log_msg "Sent notification email to ${1}"
  53. }
  54. get_container_ip() {
  55. # ${1} is container
  56. CONTAINER_ID=()
  57. CONTAINER_IPS=()
  58. CONTAINER_IP=
  59. LOOP_C=1
  60. until [[ ${CONTAINER_IP} =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]] || [[ ${LOOP_C} -gt 5 ]]; do
  61. sleep 0.5
  62. # get long container id for exact match
  63. CONTAINER_ID=($(curl --silent http://dockerapi:8080/containers/json | jq -r ".[] | {name: .Config.Labels[\"com.docker.compose.service\"], id: .Id}" | jq -rc "select( .name | tostring == \"${1}\") | .id"))
  64. # returned id can have multiple elements (if scaled), shuffle for random test
  65. CONTAINER_ID=($(printf "%s\n" "${CONTAINER_ID[@]}" | shuf))
  66. if [[ ! -z ${CONTAINER_ID} ]]; then
  67. for matched_container in "${CONTAINER_ID[@]}"; do
  68. CONTAINER_IPS=($(curl --silent http://dockerapi:8080/containers/${matched_container}/json | jq -r '.NetworkSettings.Networks[].IPAddress'))
  69. for ip_match in "${CONTAINER_IPS[@]}"; do
  70. # grep will do nothing if one of these vars is empty
  71. [[ -z ${ip_match} ]] && continue
  72. [[ -z ${IPV4_NETWORK} ]] && continue
  73. # only return ips that are part of our network
  74. if ! grep -q ${IPV4_NETWORK} <(echo ${ip_match}); then
  75. continue
  76. else
  77. CONTAINER_IP=${ip_match}
  78. break
  79. fi
  80. done
  81. [[ ! -z ${CONTAINER_IP} ]] && break
  82. done
  83. fi
  84. LOOP_C=$((LOOP_C + 1))
  85. done
  86. [[ ${LOOP_C} -gt 5 ]] && echo 240.0.0.0 || echo ${CONTAINER_IP}
  87. }
  88. nginx_checks() {
  89. err_count=0
  90. diff_c=0
  91. THRESHOLD=16
  92. # Reduce error count by 2 after restarting an unhealthy container
  93. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  94. while [ ${err_count} -lt ${THRESHOLD} ]; do
  95. host_ip=$(get_container_ip nginx-mailcow)
  96. err_c_cur=${err_count}
  97. /usr/lib/nagios/plugins/check_ping -4 -H ${host_ip} -w 2000,10% -c 4000,100% -p2 1>&2; err_count=$(( ${err_count} + $? ))
  98. /usr/lib/nagios/plugins/check_http -4 -H ${host_ip} -u / -p 8081 1>&2; err_count=$(( ${err_count} + $? ))
  99. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  100. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  101. progress "Nginx" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  102. diff_c=0
  103. sleep $(( ( RANDOM % 30 ) + 10 ))
  104. done
  105. return 1
  106. }
  107. mysql_checks() {
  108. err_count=0
  109. diff_c=0
  110. THRESHOLD=12
  111. # Reduce error count by 2 after restarting an unhealthy container
  112. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  113. while [ ${err_count} -lt ${THRESHOLD} ]; do
  114. host_ip=$(get_container_ip mysql-mailcow)
  115. err_c_cur=${err_count}
  116. /usr/lib/nagios/plugins/check_mysql -H ${host_ip} -P 3306 -u ${DBUSER} -p ${DBPASS} -d ${DBNAME} 1>&2; err_count=$(( ${err_count} + $? ))
  117. /usr/lib/nagios/plugins/check_mysql_query -H ${host_ip} -P 3306 -u ${DBUSER} -p ${DBPASS} -d ${DBNAME} -q "SELECT COUNT(*) FROM information_schema.tables" 1>&2; err_count=$(( ${err_count} + $? ))
  118. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  119. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  120. progress "MySQL/MariaDB" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  121. diff_c=0
  122. sleep $(( ( RANDOM % 30 ) + 10 ))
  123. done
  124. return 1
  125. }
  126. sogo_checks() {
  127. err_count=0
  128. diff_c=0
  129. THRESHOLD=20
  130. # Reduce error count by 2 after restarting an unhealthy container
  131. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  132. while [ ${err_count} -lt ${THRESHOLD} ]; do
  133. host_ip=$(get_container_ip sogo-mailcow)
  134. err_c_cur=${err_count}
  135. /usr/lib/nagios/plugins/check_http -4 -H ${host_ip} -u /WebServerResources/css/theme-default.css -p 9192 -R md-default-theme 1>&2; err_count=$(( ${err_count} + $? ))
  136. /usr/lib/nagios/plugins/check_http -4 -H ${host_ip} -u /SOGo.index/ -p 20000 -R "SOGo\.MainUI" 1>&2; err_count=$(( ${err_count} + $? ))
  137. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  138. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  139. progress "SOGo" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  140. diff_c=0
  141. sleep $(( ( RANDOM % 30 ) + 10 ))
  142. done
  143. return 1
  144. }
  145. postfix_checks() {
  146. err_count=0
  147. diff_c=0
  148. THRESHOLD=16
  149. # Reduce error count by 2 after restarting an unhealthy container
  150. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  151. while [ ${err_count} -lt ${THRESHOLD} ]; do
  152. host_ip=$(get_container_ip postfix-mailcow)
  153. err_c_cur=${err_count}
  154. /usr/lib/nagios/plugins/check_smtp -4 -H ${host_ip} -p 589 -f "watchdog@invalid" -C "RCPT TO:null@localhost" -C DATA -C . -R 250 1>&2; err_count=$(( ${err_count} + $? ))
  155. /usr/lib/nagios/plugins/check_smtp -4 -H ${host_ip} -p 589 -S 1>&2; err_count=$(( ${err_count} + $? ))
  156. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  157. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  158. progress "Postfix" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  159. diff_c=0
  160. sleep $(( ( RANDOM % 30 ) + 10 ))
  161. done
  162. return 1
  163. }
  164. dovecot_checks() {
  165. err_count=0
  166. diff_c=0
  167. THRESHOLD=24
  168. # Reduce error count by 2 after restarting an unhealthy container
  169. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  170. while [ ${err_count} -lt ${THRESHOLD} ]; do
  171. host_ip=$(get_container_ip dovecot-mailcow)
  172. err_c_cur=${err_count}
  173. /usr/lib/nagios/plugins/check_smtp -4 -H ${host_ip} -p 24 -f "watchdog@invalid" -C "RCPT TO:<watchdog@invalid>" -L -R "User doesn't exist" 1>&2; err_count=$(( ${err_count} + $? ))
  174. /usr/lib/nagios/plugins/check_imap -4 -H ${host_ip} -p 993 -S -e "OK " 1>&2; err_count=$(( ${err_count} + $? ))
  175. /usr/lib/nagios/plugins/check_imap -4 -H ${host_ip} -p 143 -e "OK " 1>&2; err_count=$(( ${err_count} + $? ))
  176. /usr/lib/nagios/plugins/check_tcp -4 -H ${host_ip} -p 10001 -e "VERSION" 1>&2; err_count=$(( ${err_count} + $? ))
  177. /usr/lib/nagios/plugins/check_tcp -4 -H ${host_ip} -p 4190 -e "Dovecot ready" 1>&2; err_count=$(( ${err_count} + $? ))
  178. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  179. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  180. progress "Dovecot" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  181. diff_c=0
  182. sleep $(( ( RANDOM % 30 ) + 10 ))
  183. done
  184. return 1
  185. }
  186. phpfpm_checks() {
  187. err_count=0
  188. diff_c=0
  189. THRESHOLD=10
  190. # Reduce error count by 2 after restarting an unhealthy container
  191. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  192. while [ ${err_count} -lt ${THRESHOLD} ]; do
  193. host_ip=$(get_container_ip php-fpm-mailcow)
  194. err_c_cur=${err_count}
  195. nc -z ${host_ip} 9001 ; err_count=$(( ${err_count} + ($? * 2)))
  196. nc -z ${host_ip} 9002 ; err_count=$(( ${err_count} + ($? * 2)))
  197. /usr/lib/nagios/plugins/check_ping -4 -H ${host_ip} -w 2000,10% -c 4000,100% -p2 1>&2; err_count=$(( ${err_count} + $? ))
  198. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  199. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  200. progress "PHP-FPM" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  201. diff_c=0
  202. sleep $(( ( RANDOM % 30 ) + 10 ))
  203. done
  204. return 1
  205. }
  206. rspamd_checks() {
  207. err_count=0
  208. diff_c=0
  209. THRESHOLD=10
  210. # Reduce error count by 2 after restarting an unhealthy container
  211. trap "[ ${err_count} -gt 1 ] && err_count=$(( ${err_count} - 2 ))" USR1
  212. while [ ${err_count} -lt ${THRESHOLD} ]; do
  213. host_ip=$(get_container_ip rspamd-mailcow)
  214. err_c_cur=${err_count}
  215. SCORE=$(/usr/bin/curl -s --data-binary @- --unix-socket /rspamd-sock/rspamd.sock http://rspamd/scan -d '
  216. To: null@localhost
  217. From: watchdog@localhost
  218. Empty
  219. ' | jq -rc .required_score)
  220. if [[ ${SCORE} != "9999" ]]; then
  221. echo "Rspamd settings check failed" 1>&2
  222. err_count=$(( ${err_count} + 1))
  223. else
  224. echo "Rspamd settings check succeeded" 1>&2
  225. fi
  226. /usr/lib/nagios/plugins/check_ping -4 -H ${host_ip} -w 2000,10% -c 4000,100% -p2 1>&2; err_count=$(( ${err_count} + $? ))
  227. [ ${err_c_cur} -eq ${err_count} ] && [ ! $((${err_count} - 1)) -lt 0 ] && err_count=$((${err_count} - 1)) diff_c=1
  228. [ ${err_c_cur} -ne ${err_count} ] && diff_c=$(( ${err_c_cur} - ${err_count} ))
  229. progress "Rspamd" ${THRESHOLD} $(( ${THRESHOLD} - ${err_count} )) ${diff_c}
  230. diff_c=0
  231. sleep $(( ( RANDOM % 30 ) + 10 ))
  232. done
  233. return 1
  234. }
  235. # Create watchdog agents
  236. (
  237. while true; do
  238. if ! nginx_checks; then
  239. log_msg "Nginx hit error limit"
  240. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "nginx-mailcow"
  241. echo nginx-mailcow > /tmp/com_pipe
  242. fi
  243. done
  244. ) &
  245. BACKGROUND_TASKS+=($!)
  246. (
  247. while true; do
  248. if ! mysql_checks; then
  249. log_msg "MySQL hit error limit"
  250. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "mysql-mailcow"
  251. echo mysql-mailcow > /tmp/com_pipe
  252. fi
  253. done
  254. ) &
  255. BACKGROUND_TASKS+=($!)
  256. (
  257. while true; do
  258. if ! phpfpm_checks; then
  259. log_msg "PHP-FPM hit error limit"
  260. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "php-fpm-mailcow"
  261. echo php-fpm-mailcow > /tmp/com_pipe
  262. fi
  263. done
  264. ) &
  265. BACKGROUND_TASKS+=($!)
  266. (
  267. while true; do
  268. if ! sogo_checks; then
  269. log_msg "SOGo hit error limit"
  270. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "sogo-mailcow"
  271. echo sogo-mailcow > /tmp/com_pipe
  272. fi
  273. done
  274. ) &
  275. BACKGROUND_TASKS+=($!)
  276. (
  277. while true; do
  278. if ! postfix_checks; then
  279. log_msg "Postfix hit error limit"
  280. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "postfix-mailcow"
  281. echo postfix-mailcow > /tmp/com_pipe
  282. fi
  283. done
  284. ) &
  285. BACKGROUND_TASKS+=($!)
  286. (
  287. while true; do
  288. if ! dovecot_checks; then
  289. log_msg "Dovecot hit error limit"
  290. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "dovecot-mailcow"
  291. echo dovecot-mailcow > /tmp/com_pipe
  292. fi
  293. done
  294. ) &
  295. BACKGROUND_TASKS+=($!)
  296. (
  297. while true; do
  298. if ! rspamd_checks; then
  299. log_msg "Rspamd hit error limit"
  300. [[ ! -z ${WATCHDOG_NOTIFY_EMAIL} ]] && mail_error "${WATCHDOG_NOTIFY_EMAIL}" "rspamd-mailcow"
  301. echo rspamd-mailcow > /tmp/com_pipe
  302. fi
  303. done
  304. ) &
  305. BACKGROUND_TASKS+=($!)
  306. # Monitor watchdog agents, stop script when agents fails and wait for respawn by Docker (restart:always:n)
  307. (
  308. while true; do
  309. for bg_task in ${BACKGROUND_TASKS[*]}; do
  310. if ! kill -0 ${bg_task} 1>&2; then
  311. log_msg "Worker ${bg_task} died, stopping watchdog and waiting for respawn..."
  312. kill -TERM 1
  313. fi
  314. sleep 10
  315. done
  316. done
  317. ) &
  318. # Monitor dockerapi
  319. (
  320. while true; do
  321. while nc -z dockerapi 8080; do
  322. sleep 3
  323. done
  324. log_msg "Cannot find dockerapi-mailcow, waiting to recover..."
  325. kill -STOP ${BACKGROUND_TASKS[*]}
  326. until nc -z dockerapi 8080; do
  327. sleep 3
  328. done
  329. kill -CONT ${BACKGROUND_TASKS[*]}
  330. kill -USR1 ${BACKGROUND_TASKS[*]}
  331. done
  332. ) &
  333. # Restart container when threshold limit reached
  334. while true; do
  335. CONTAINER_ID=
  336. read com_pipe_answer </tmp/com_pipe
  337. if [[ ${com_pipe_answer} =~ .+-mailcow ]]; then
  338. kill -STOP ${BACKGROUND_TASKS[*]}
  339. sleep 3
  340. CONTAINER_ID=$(curl --silent http://dockerapi:8080/containers/json | jq -r ".[] | {name: .Config.Labels[\"com.docker.compose.service\"], id: .Id}" | jq -rc "select( .name | tostring | contains(\"${com_pipe_answer}\")) | .id")
  341. if [[ ! -z ${CONTAINER_ID} ]]; then
  342. log_msg "Sending restart command to ${CONTAINER_ID}..."
  343. curl --silent -XPOST http://dockerapi:8080/containers/${CONTAINER_ID}/restart
  344. fi
  345. log_msg "Wait for restarted container to settle and continue watching..."
  346. sleep 30s
  347. kill -CONT ${BACKGROUND_TASKS[*]}
  348. kill -USR1 ${BACKGROUND_TASKS[*]}
  349. fi
  350. done