2 # Copyright (C) 2019 Ian Kelling
3 # SPDX-License-Identifier: AGPL-3.0-or-later
5 # usage: runs once every 15 seconds unless any args are passed, or we
6 # then just runs once. On battery power, run once per minute.
8 if [ -z "$BASH_VERSION" ]; then echo "error: shell is not bash" >&2; exit 1; fi
10 if [[ $EUID != 1000 ]]; then
11 echo "$0: error, expected to be user 1000"
15 source /a
/bin
/errhandle
/err
16 status_file
=/dev
/shm
/iank-status
22 for p
in ~
/.gem
/ruby
/*/bin
; do
36 p
() { printf "%s\n" "$*"; }
37 # log-once COUNT NAME [MESSAGE]
39 if type -p ifne
&>/dev
/null
; then
40 /usr
/local
/bin
/log-once
"$@" | ifne
mail -s "$HOSTNAME: system-status $2" root@localhost
45 if type -p ifne
&>/dev
/null
; then
46 /usr
/local
/bin
/log-once
"$@" | ifne
mail -s "$HOSTNAME: system-status $2" daylert@iankelling.org
56 # todo, consider migrating some of these alerts into prometheus
58 chars
=("${first_chars[@]}")
60 services
=( epanicclean
)
70 if systemctl show
-p SubState
--value ${services[@]} |
egrep -v '^(running|)$' &>/dev
/null
; then
71 for s
in ${services[@]}; do
72 if [[ $
(systemctl show
-p SubState
--value $s 2>&1) != running
]]; then
78 p
${bads[*]} | lo
-240 mysers
85 prometheus-node-exporter
86 prometheus-alertmanager
90 if systemctl show
-p SubState
--value ${services[@]} |
egrep -v '^(running|)$' &>/dev
/null
; then
91 for s
in ${services[@]}; do
92 if [[ $
(systemctl show
-p SubState
--value $s 2>&1) != running
]]; then
98 p
${bads[*]} | lo
-240 prom
103 # this section copied from servicepid()
105 pid
=$
(systemctl show
--property MainPID
--value $unit ||
:)
109 dir
=/sys
/fs
/cgroup
/system.slice
110 if [[ ! -d $dir ]]; then
111 dir
=/sys
/fs
/cgroup
/systemd
/system.slice
113 pid
=$
(head -n1 $dir/${unit%.service}.service
/cgroup.procs ||
:)
116 if [[ ! $pid ]]; then
121 if [[ -e /a
/bin
/bash_unpublished
/source-state
]]; then
122 # /a gets remounted due to btrbk, ignore error code for file doesnt exist
123 source /a
/bin
/bash_unpublished
/source-state ||
[[ $?
== 1 ]]
125 if [[ $MAIL_HOST == "$HOSTNAME" ]]; then
128 glob
=(/m
/md
/bounces
/new
/*)
129 if [[ -e ${glob[0]} ]]; then
131 bouncemsg
="message in /m/md/bounces/new"
133 p
$bouncemsg | loday
-1 bounce
134 # emails without the S (seen) flag. this only checks the last flag,
135 # but its good enough for me.
136 glob
=(/m
/md
/alerts
/{new
,cur
}/!(*,S
))
137 if [[ -e ${glob[0]} ]]; then
141 glob
=(/m
/md
/daylert
/{new
,cur
}/!(*,S
))
142 if [[ -e ${glob[0]} ]]; then
147 if [[ $
(systemctl is-active btrbk.timer
) != active
]]; then
151 p
"$bbkmsg" | lo
-480 btrbk.timer
153 ## check if last snapshot was within an hour
155 # this section generally copied from btrbk scripts, but
156 # this part modified to speed things up by about half a second.
157 # I'm not sure if its quite as reliable, but it looks pretty safe.
158 # Profiled it using time and also adding to the top of the file:
160 # PS4='+ $(date "+%2N") '
161 # allow failure in case there are no snapshots yet.
162 # shellcheck disable=SC2012
164 files
=(/mnt
/o
/btrbk
/$vol.20*)
167 if (( ${#files[@]} )); then
168 snaps
=($
(ls -1avdr "${files[@]}" 2>/dev
/null |
head -n1 ||
: ))
172 for s
in ${snaps[@]}; do
174 t
=$
(date -d $
(sed -r 's/(.{4})(..)(.{5})(..)(.*)/\1-\2-\3:\4:\5/' <<<${file#$vol.}) +%s
)
175 if (( t
> maxtime
)); then
180 if (( maxtime
< now
- 4*60*60 )); then
182 snapshotmsg
="/o snapshot older than 4 hours"
184 p
"$snapshotmsg" | lo
-1 old-snapshot
187 # commented out, only using timetrap retrospectively.
188 # # clock us out in timetrap if are idle too long
189 # if [[ -e /p/.timetrap.db ]]; then
191 # if type -p xprintidle &>/dev/null && xidle=$(xprintidle 2>/dev/null); then
192 # if [[ $xidle == [0-9]* ]]; then
193 # sheet=$(sqlite3 /p/.timetrap.db "select sheet from entries where end is NULL;")
195 # if [[ $sheet == w ]]; then
198 # if [[ $sheet && $xidle -gt $idle ]]; then
204 else # end if $MAIL_HOST
205 rmg
/home
/iank
/cron-errors
/bounce
* \
206 /home
/iank
/cron-errors
/btrbk.timer
* \
207 /home
/iank
/cron-errors
/old-snapshot
*
210 if ip l show tunfsf
&>/dev
/null
; then
211 # this is for tracking dns over tls issue, which
212 # fixvpndns() in brc2 fixes.
213 stat
=$
(resolvectl dnsovertls tunfsf
2>/dev
/null ||
: )
214 read _ _ _ istls
<<<"$stat"
218 printf "%s\n" "$istls" | ts
>> /tmp
/istls.log
224 # We do this once every 5 minutes, since this is not a grave problem.
225 # For formatted elisp, see /b/ds/unsaved-buffers.el
226 elisp
='(format "%s" (-reduce-from (lambda (acc buf) (let ((bpath (buffer-file-name buf))) (if (and bpath (buffer-modified-p buf)) (cons bpath acc ) acc))) nil (buffer-list)))'
227 if [[ ! $last_emacs_check ||
$emacsfiles ]] ||
(( last_emacs_check
< EPOCHSECONDS
- 300 )); then
228 if pgrep
-G iank
-u iank
-f 'emacs --daemon' &>/dev
/null
; then
229 # i dun care if this fails
230 emacsfiles
="$(timeout 1 emacsclient -a /usr/bin/true --eval "$elisp" 2>/dev/null | sed '/^"nil
"$/d;s/^"(/E
: /;s
/)"$//' ||:)"
231 if [[ $emacsfiles ]]; then
232 chars
+=("$emacsfiles")
235 last_emacs_check
=$EPOCHSECONDS
239 glob
=(/nocow
/btrfs-stale
/*)
240 if [[ -e ${glob[0]} ]]; then
244 if [[ $
(find /var
/mail -type f \
! -empty -print -quit) ]]; then
245 var_mail_msg
="message in /var/mail"
247 p
$var_mail_msg | loday
-1 var_mail
249 # early in install process, we dont have permission yet for exiqgrep.
250 # 1100 helps allow for system restarts
251 qlen
=$
(/usr
/sbin
/exiqgrep
-o 1100 -c -b |
awk '{print $1}') ||
:
254 qmsg
="queue length $qlen"
258 # No point in emailing about the mailq on a host where we don't
261 p
$qmsg | loday
-120 qlen
264 rmg
/home
/iank
/cron-errors
/qlen
*
270 if ! make -C /b
/ds
-q ~
/.local
/distro-begin
2>/dev
/null ||
[[ $
(<~
/.local
/distro-begin
) != 0 ]]; then
275 if ! make -C /b
/ds
-q ~
/.local
/distro-end
2>/dev
/null ||
[[ $
(<~
/.local
/distro-end
) != 0 ]]; then
279 # these conditions are so we dont have an overly verbose prompt
280 if $begin && $end; then
288 # shellcheck disable=SC2043
293 # the / 60 makes it 0-59 seconds less strict, +1 to help make sure we
294 # dont have any false positives.
295 fmin
=$
(( (fsec
- now
+ 1 ) / 60 ))
296 fminplus
=$
(( fmin
+ 60*24 ))
297 # Filesystem files get copied, so find any newer than the last run.
298 # The rest are hueristics:
299 # Given the last time we added a file in git, is that newer than the last conflink run.
300 # Given new files not added to git, were they modified more recently than the last conflink? but,
301 # push their modification time back by a day so we can develop them before needing to add them to git.
303 all_dirs
=({/a
/bin
/ds
,/p
/c
}{/filesystem
,/machine_specific
/$HOSTNAME/filesystem
})
304 # This part is copied from conflink
305 for x
in /p
/c
/machine_specific
/*.hosts
/a
/bin
/ds
/machine_specific
/*.hosts
; do
306 if grep -qxF $HOSTNAME $x; then all_dirs
+=( ${x%.hosts} ); fi
309 # Just because i forget a lot, -mmin -NUM means files modified <= NUM minutes ago
310 if (( fmin
< 0 )) && [[ $
(find ${all_dirs[@]} -mmin $fmin -type f
-print -quit 2>/dev
/null
) ]]; then
311 v conflink newer filesystem files
316 for d
in /a
/bin
/distro-setup
/p
/c
; do
317 [[ -d $d ]] ||
continue
319 if [[ ! -e .git
]]; then
320 # some hosts i dont push all of /p/c
323 if (( $
(date -d "$(git log --diff-filter=ACR --format=%aD -1)" +%s
) > fsec
)); then
324 v conflink
: newer files checked
in to git
332 done < <(git ls-files
-o --exclude-standard)
333 if [[ ${untracked[0]} && $
(find "${untracked[@]}" -mmin $fminplus -type f
-print -quit) ]]; then
334 v conflink
: untracked
in $d
342 if [[ ! -e $f || $
(<$f) != 0 ]]; then
343 v conflink
: last run not found or failed
350 # if [[ $(grep -v "exim user lost privilege for using -C option" /var/log/exim4/paniclog 2>/dev/null ||:) ]]; then
351 if [[ -s /var
/log
/exim
4/paniclog
]]; then
353 # leave it up to epanic-clean to send email notification
356 if [[ ! -e $status_file ||
-w $status_file ]]; then
357 if [[ -e /a
/bin
/bash_unpublished
/source-state
]]; then
358 cat /a
/bin
/bash_unpublished
/source-state
>$status_file
361 if [[ ${chars[*]} ]]; then
362 echo "ps_char=\"${chars[*]} \$ps_char\"" >>$status_file
366 # use this if we want to do something just once per minute
379 if [[ -e /sys
/class
/power_supply
/AC
/online
&& $
(</sys
/class
/power_supply
/AC
/online
) == 0 ]]; then
384 if systemctl
-q is-active bitcoind
; then
395 # ensure our long operations are one line so we are not prone errors
396 # from this file being modified.