summaryrefslogtreecommitdiff
path: root/bin/sanity-check
blob: 3defce2c5663d268e995db27e3b183ab39222179 (plain)
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
#!/bin/sh

# do some basic sanity checks

# shellcheck source=conf/default.conf
. "${0%/*}/../conf/default.conf"

# TODO: read information from database

usage() {
  >&2 echo ''
  >&2 echo 'sanity-check [options] [checks]: check sanity of build master'
  >&2 echo ''
  >&2 echo 'possible options:'
  >&2 echo '  -h|--help:             Show this help and exit.'
  >&2 echo '  -q|--quiet:            Only print errors found.'
  >&2 echo '  -r|--really-quiet:     Do not print anything.'
  >&2 echo '  -w|--webserver:        Generate output suitable for webserver.'
  [ -z "$1" ] && exit 1 || exit "$1"
}

i_am_insane() {
  if [ ! -s "${work_dir}/build-master-sanity" ]; then
    printf '\001ACTION goes insane.\001\n' | \
      irc_say
  fi
  echo 'build master is insane' > \
    "${work_dir}/build-master-sanity"
  echo 'SANITY CHECK FAILED' >> \
    "${tmp_dir}/messages"
  exit 1
}

eval set -- "$(
  getopt -o hqrw \
    --long help \
    --long quiet \
    --long really-quiet \
    --long webserver \
    -n "$(basename "$0")" -- "$@" || \
  echo usage
)"

silence=0
repos="${standalone_package_repositories} ${stable_package_repositories} ${testing_package_repositories} ${staging_package_repositories}"
web=false

while true
do
  case "$1" in
    -h|--help)
      usage 0
    ;;
    -q|--quiet)
      silence=1
    ;;
    -r|--really-quiet)
      silence=2
    ;;
    -w|--webserver)
      web=true
    ;;
    --)
      shift
      break
    ;;
    *)
      >&2 echo 'Whoops, forgot to implement option "'"$1"'" internally.'
      exit 42
    ;;
  esac
  shift
done

exec 9> "${sanity_check_lock_file}"
if ! flock -n 9; then
  >&2 echo 'Sanity check skipped, cannot acquire lock.'
  exit
fi

finish() {
  if ${web}; then
    {
      printf '%s\n' \
        '<html>' \
        '<head>' \
        '<title>result of archlinux32 build master'"'"'s sanity check</title>' \
        '</head>' \
        '<body>'
      printf '%s<br>\n' "$(date)"
      sed 's|$|<br>|' "${tmp_dir}/messages"
      printf '%s\n' \
        '</body>' \
        '</html>'
    } > \
      "${webserver_directory}/master-sanity.html"
  else
    cat "${tmp_dir}/messages" >&2
  fi
  rm -rf --one-file-system "${tmp_dir}"
}

tmp_dir=$(mktemp -d 'tmp.sanity-check.XXXXXXXXXX' --tmpdir)
touch "${tmp_dir}/messages"
trap 'finish' EXIT

if [ $# -eq 0 ]; then
  set -- git-repositories build-list mysql repos package-database track-state
fi

while [ $# -gt 0 ]; do

  case "$1" in

    git-repositories)

      [ ${silence} -gt 0 ] || \
        printf 'checking git repositories ...' >> \
        "${tmp_dir}/messages"

      for repo in ${repo_names}; do
        eval 'repo_path="${repo_paths__'"${repo}"'}"'
        repo_revision=$(
          cat "${work_dir}/${repo}.revision"
        )
        if ! git -C "${repo_path}" archive "${repo_revision}" -- | \
          tar -t > /dev/null; then
          if [ ${silence} -le 1 ]; then
            printf '\nThe repository %s (%s) cannot archive the current revision %s.\n' \
              "${repo}" "${repo_path}" "${repo_revision}" >> \
              "${tmp_dir}/messages"
          fi
          i_am_insane
        fi
      done

      [ ${silence} -gt 0 ] || \
        echo ' passed.' >> \
        "${tmp_dir}/messages"

    ;;

    build-list)

      [ ${silence} -gt 0 ] || \
        printf 'checking build-list ...' >> \
        "${tmp_dir}/messages"

      errors=$(
        grep -vn '^\S\+ [0-9a-f]\{40\} [0-9a-f]\{40\} \S\+$' "${work_dir}/build-list"
      ) || true
      if [ -n "${errors}" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThe following build orders are wrongly formatted:\n%s\n' \
            "${errors}" >> \
            "${tmp_dir}/messages"
        fi
        i_am_insane
      fi

      errors=$(
        cut -d' ' -f1 < \
          "${work_dir}/build-list" | \
          sort | \
          uniq -d
      )
      if [ -n "${errors}" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThe following packages have duplicate build orders:\n%s\n' \
            "${errors}" >> \
            "${tmp_dir}/messages"
        fi
        i_am_insane
      fi

      errors=$(
        {
          cut -d' ' -f1 < \
            "${work_dir}/build-list"
          cat "${work_dir}/deletion-list"
        } | \
          sort | \
          uniq -d
      )
      if [ -n "${errors}" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThe following packages appear on the build- and deletion-list:\n%s\n' \
            "${errors}" >> \
            "${tmp_dir}/messages"
        fi
        i_am_insane
      fi

      [ ${silence} -gt 0 ] || \
        echo ' passed.' >> \
        "${tmp_dir}/messages"

    ;;

    repos)

      [ ${silence} -gt 0 ] || \
        printf 'checking repos on master mirror ...' >> \
        "${tmp_dir}/messages"

      errors=$(
        {
          # shellcheck disable=SC2086
          printf 'expected %s\n' ${repos}
          ls_master_mirror 'i686' | \
            sed 's|^|found |'
        } | \
          sort -k2 | \
          uniq -uf1
      )
      if [ -n "${errors}" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThe following repos are missing or obsolete on the mirror:\n%s\n' \
            "${errors}" >> \
            "${tmp_dir}/messages"
        fi
        i_am_insane
      fi

      [ ${silence} -gt 0 ] || \
        echo ' passed.' >> \
        "${tmp_dir}/messages"

    ;;

    package-database)

      for repo in ${repos}; do

        [ ${silence} -gt 0 ] || \
          printf 'checking consistency of repository "%s" on the master mirror ...' "${repo}" >> \
          "${tmp_dir}/messages"

        packages=$(
          ls_master_mirror "i686/${repo}" | \
            grep '\.pkg\.tar\.xz\(\.sig\)\?$'
        ) || true

        errors=$(
          echo "${packages}" | \
            grep '\S' | \
            sed '
              s|^\(.*\.pkg\.tar\.xz\)$|package \1|
              s|^\(.*\.pkg\.tar\.xz\)\.sig$|signature \1|
            ' | \
            sort -k2 | \
            uniq -cf1 | \
            grep -v '^\s*2\s' | \
            awk '{print $2 " " $3}'
        ) || true
        if [ -n "${errors}" ]; then
          if [ ${silence} -le 1 ]; then
            printf '\nThe following packages in %s are missing a signature or vice versa:\n%s\n' \
              "${repo}" \
              "${errors}" >> \
              "${tmp_dir}/messages"
          fi
          i_am_insane
        fi

        ${master_mirror_rsync_command} \
          "${master_mirror_rsync_directory}/i686/${repo}/${repo}.db.tar.gz" \
          "${master_mirror_rsync_directory}/i686/${repo}/${repo}.files.tar.gz" \
          "${tmp_dir}/"

        errors=$(
          {
            tar -Oxzf "${tmp_dir}/${repo}.db.tar.gz" --wildcards '*/desc' 2>/dev/null | \
              sed -n '
                /^%FILENAME%$/ {
                  N
                  s/^.*\n/in_database /
                  p
                }
              '
            echo "${packages}" | \
              sed '
                /\.pkg\.tar\.xz$/ !d
                s/^/in_repository /
              ' | \
              sort -u
          } | \
            sort -k2 | \
            uniq -uf1
        )
        if [ -n "${errors}" ]; then
          if [ ${silence} -le 1 ]; then
            printf '\nThe following packages in %s are missing from the database or vice versa:\n%s\n' \
              "${repo}" \
              "${errors}" >> \
              "${tmp_dir}/messages"
          fi
          i_am_insane
        fi

        errors=$(
          {
            tar -tzf "${tmp_dir}/${repo}.files.tar.gz" | \
              grep '/$' | \
              sed '
                s|/$||
                s|^|in_database |
              '
            echo "${packages}" | \
              grep '\S' | \
              sed '
                s|-[^-]\+$||
                s|^|in_repository |
              ' | \
              sort -u
          } | \
            sort -k2 | \
            uniq -uf1
        )
        if [ -n "${errors}" ]; then
          if [ ${silence} -le 1 ]; then
            printf '\nThe following packages in %s are missing from the file-database or vice versa:\n%s\n' \
              "${repo}" \
              "${errors}" >> \
              "${tmp_dir}/messages"
          fi
          i_am_insane
        fi

        find "${tmp_dir:?}" -mindepth 1 \( -not -name 'messages' \) -delete

        [ ${silence} -gt 0 ] || \
          echo ' passed.' >> \
          "${tmp_dir}/messages"

      done

    ;;

    track-state)

      [ ${silence} -gt 0 ] || \
        printf 'checking if all packages are tracked correctly ...' >> \
        "${tmp_dir}/messages"

      errors=$(
        {
          # shellcheck disable=SC2016
          {
            printf 'SELECT "mysql",CONCAT(`repositories`.`name`,"/",'
            mysql_package_name_query
            printf ') FROM `binary_packages`'
            mysql_join_binary_packages_repositories
            printf ' AND `repositories`.`is_on_master_mirror`'
            mysql_join_binary_packages_architectures
          } | \
            mysql_run_query | \
            tr '\t' ' '
          ls_master_mirror 'i686' | \
            while read -r repo; do
              ls_master_mirror "i686/${repo}" | \
                sed '
                  /\.pkg\.tar\.xz$/!d
                  s,^,package-file '"${repo}"'/,
                '
            done
        } | \
          sed 's/\(-[0-9]\+\)\.0\(-[^- ]\+$\)/\1\2/' | \
          sort -k2 | \
          uniq -uf1
      )
      if [ -n "${errors}" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThe following packages from the master mirror are not tracked in the database or vice versa:\n%s\n' \
            "${errors}" >> \
            "${tmp_dir}/messages"
        fi
        i_am_insane
      fi

      [ ${silence} -gt 0 ] || \
        echo ' passed.' >> \
        "${tmp_dir}/messages"

    ;;

    mysql)

      [ ${silence} -gt 0 ] || \
        printf 'checking mysql-sanity-check-file ...' >> \
        "${tmp_dir}/messages"

      if [ -s "${webserver_directory}/mysql-sanity.html" ]; then
        if [ ${silence} -le 1 ]; then
          printf '\nThere is something wrong with the database:\n'
          cat "${webserver_directory}/mysql-sanity.html"
        fi >> \
          "${tmp_dir}/messages"
        i_am_insane
      fi

      # hopefully, this gets rid of false positives :-)
      sleep 1

      if find "${work_dir}" -mindepth 1 -maxdepth 1 -name 'tmp.mysql-functions.query.*' | \
        grep '\S' >> \
        "${tmp_dir}/messages"; then
        i_am_insane
      fi

      [ ${silence} -gt 0 ] || \
        echo ' passed.' >> \
        "${tmp_dir}/messages"

    ;;

    *)

      [ ${silence} -gt 1 ] || \
        >&2 printf 'unknown sanity-check "%s".\n' "$1"
      exit 2

    ;;

  esac

  shift

done

if [ -f "${work_dir}/build-master-sanity" ]; then
  rm "${work_dir}/build-master-sanity"
  printf '\001ACTION resumes sanity.\001\n' | \
    irc_say
fi