12621cc8eda5c3d44cfa5dd09923f4ab7a710a05
[distro-setup] / system-status
1 #!/bin/bash
2 # Copyright (C) 2019 Ian Kelling
3 # SPDX-License-Identifier: AGPL-3.0-or-later
4
5 # usage: runs 4 times every 15 seconds unless any args are passed, or we
6 # are on battery power, then just runs once.
7
8 if [ -z "$BASH_VERSION" ]; then echo "error: shell is not bash" >&2; exit 1; fi
9
10 source /a/bin/errhandle/err
11 status_file=/dev/shm/iank-status
12
13 shopt -s nullglob
14 shopt -s dotglob
15
16 verbose=false
17 if [[ $1 ]]; then
18 verbose=true
19 fi
20 v() {
21 if $verbose; then
22 printf "%s\n" "$*"
23 fi
24 }
25 lo() { /usr/local/bin/log-once "$@"; }
26
27 write-status() {
28 chars=("${first_chars[@]}")
29
30 glob=(/nocow/btrfs-stale/*)
31 if [[ -e ${glob[0]} ]]; then
32 chars+=("STALE!")
33 fi
34 glob=(/m/md/bounces/new/*)
35 if [[ -e ${glob[0]} ]]; then
36 chars+=("BOUNCE!")
37 bouncemsg="message in /m/md/bounces/new"
38 fi
39 lo -1 bounce $bouncemsg
40 glob=(/m/md/alerts/new/* /m/md/alerts/cur/*)
41 if [[ -e ${glob[0]} ]]; then
42 chars+=("ALERT!")
43 fi
44 if [[ -e /nocow/user/mailtest-failure ]]; then
45 chars+=("MAILPING!")
46 fi
47
48 if ! qlen=$(/usr/sbin/exiqgrep -o 60 -c -b | awk '{print $1}'); then
49 # early in install process, we dont have permission yet for exiqgrep
50 qlen=$(sudo /usr/sbin/exiqgrep -o 60 -c -b | awk '{print $1}')
51 fi
52 if ((qlen)); then
53 chars+=("q $qlen")
54 fi
55
56 begin=false
57 cd /b/ds
58 if ! make -q ~/.local/distro-begin || [[ $(<~/.local/distro-begin) != 0 ]]; then
59 begin=true
60 fi
61
62 end=false
63 if ! make -q ~/.local/distro-end || [[ $(<~/.local/distro-end) != 0 ]]; then
64 end=true
65 fi
66
67 # these conditions are so we dont have an overly verbose prompt
68 if $begin && $end; then
69 chars+=("DISTRO!")
70 elif $begin; then
71 chars+=("DISTRO-BEGIN!")
72 elif $end; then
73 chars+=("DISTRO-END!")
74 else
75 f=~/.local/conflink
76 for _ in 1; do
77 if [[ -e $f ]]; then
78 now=$(date +%s)
79 fsec=$(stat -c%Y $f)
80 # the / 60 makes it 0-59 seconds less strict, +1 makes sure we
81 # dont have any false positives.
82 fmin=$(( (fsec - now ) / 60 + 1 ))
83 fminplus=$(( fmin + 60*24 ))
84 # Filesystem files get copied, so find any newer than the last run.
85 # The rest are hueristics:
86 # Given the last time we added a file in git, is that newer than the last conflink run.
87 # Given new files not added to git, were they modified more recently than the last conflink? but,
88 # push their modification time back by a day so we can develop them before needing to add them to git.
89
90 all_dirs=({/a/bin/ds,/p/c}{/filesystem,/machine_specific/$HOSTNAME/filesystem})
91 # This part is copied from conflink
92 for x in /p/c/machine_specific/*.hosts /a/bin/ds/machine_specific/*.hosts; do
93 if grep -qxF $HOSTNAME $x; then all_dirs+=( ${x%.hosts} ); fi
94 done
95
96 # just because i forget a lot, -mmin -NUM means files modified <= NUM minutes ago
97 if (( $(date -d "$(git log --diff-filter=ACR --format=%aD -1)" +%s) > fsec )) || \
98 [[ $(find ${all_dirs[@]} -mmin $fmin -type f -print -quit 2>/dev/null) ]]; then
99 v conflink newer git or newer filesystem files
100 chars+=("CONFLINK!")
101 break
102 fi
103
104 for d in /a/bin/distro-setup /p/c; do
105 cd $d
106 if [[ ! -e .git ]]; then
107 # some hosts i dont push all of /p/c
108 continue
109 fi
110 untracked=$(git ls-files -o --exclude-standard)
111 if [[ $untracked && $(find $untracked -mmin $fminplus -type f -print -quit) ]]; then
112 v conflink: untracked in $d
113 chars+=("CONFLINK!")
114 break
115 fi
116 done
117
118 fi
119 if [[ ! -e $f || $(<$f) != 0 ]]; then
120 v conflink: last run not found or failed
121 chars+=("CONFLINK!")
122 break
123 fi
124 done
125 fi
126
127
128 ## Clean the paniclog, but only up to 4 times per day, or else we
129 ## should investigate.
130 loglog=/tmp/panicloglog-$(date --rfc-3339=date)
131 if [[ -s $loglog ]]; then
132 spamcount=$(stat -c%s $loglog)
133 else
134 spamcount=0
135 fi
136 if (( spamcount <= 4 )); then
137 if grep -q 'spam acl condition' /var/log/exim4/paniclog &>/dev/null; then
138 printf . >>$loglog
139 fi
140 /a/bin/distro-setup/epanic-clean
141 fi
142
143 if [[ -s /var/log/exim4/paniclog ]]; then
144 chars+=("PANIC!")
145 tail -n 20 /var/log/exim4/paniclog | lo -1 paniclog
146 else
147 lo -1 paniclog
148 fi
149
150 source /a/bin/bash_unpublished/source-state
151 if [[ $MAIL_HOST == "$HOSTNAME" ]]; then
152 bbkmsg=
153 if [[ $(systemctl is-active btrbk.timer) != active ]]; then
154 chars+=("BTRBK.TIMER!")
155 bbkmsg="btrbk.timer not enabled"
156 fi
157 lo -60 btrbk.timer $bbkmsg
158
159 ## check if last snapshot was within an hour
160 vol=o
161 # this section generally copied from btrbk scripts, but
162 # this part modified to speed things up by about half a second.
163 # I'm not sure if its quite as reliable, but it looks pretty safe.
164 # Profiled it using time and also adding to the top of the file:
165 # set -x
166 # PS4='+ $(date "+%2N") '
167 snaps=($(ls -1avdr /mnt/root/btrbk/$vol.20*|head -n1))
168 now=$(date +%s)
169 maxtime=0
170 for s in ${snaps[@]}; do
171 file=${s##*/}
172 t=$(date -d $(sed -r 's/(.{4})(..)(.{5})(..)(.*)/\1-\2-\3:\4:\5/' <<<${file#$vol.}) +%s)
173 if (( t > maxtime )); then
174 maxtime=$t
175 fi
176 done
177 if (( maxtime < now - 60*60 )); then
178 chars+=("OLD-SNAP!")
179 snapshotmsg="/o snapshot older than 1 hour"
180 fi
181 lo -1 old-snapshot $snapshotmsg
182 fi
183
184 cat /a/bin/bash_unpublished/source-state >$status_file
185
186 if [[ ${chars[*]} ]]; then
187 echo "ps_char=\"${chars[*]} \$ps_char\"" >>$status_file
188 fi
189
190 }
191 # use this if we want to do something just once per minute
192 first_chars=()
193
194 power=true
195 if [[ -e /sys/class/power_supply/AC/online && $(</sys/class/power_supply/AC/online) == 0 ]]; then
196 power=false
197 fi
198
199 write-status
200 if [[ $1 ]]; then
201 cat $status_file
202 exit 0
203 fi
204
205 if ! $power; then
206 exit 0
207 fi
208 for ((i=1; i<=3; i++)); do
209 sleep 15
210 write-status
211 done