2016-09-07 19:20:43 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
2022-03-31 17:14:39 -04:00
|
|
|
|
;;; Copyright © 2016-2022 Ludovic Courtès <ludo@gnu.org>
|
2020-04-29 03:34:01 -04:00
|
|
|
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
2016-09-07 19:20:43 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
2018-11-07 11:24:35 -05:00
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2016-09-07 19:20:43 -04:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu services admin)
|
|
|
|
|
#:use-module (gnu packages admin)
|
2020-07-22 14:21:21 -04:00
|
|
|
|
#:use-module (gnu packages certs)
|
|
|
|
|
#:use-module (gnu packages package-management)
|
2016-09-07 19:20:43 -04:00
|
|
|
|
#:use-module (gnu services)
|
|
|
|
|
#:use-module (gnu services mcron)
|
|
|
|
|
#:use-module (gnu services shepherd)
|
|
|
|
|
#:use-module (guix gexp)
|
2020-07-22 14:21:21 -04:00
|
|
|
|
#:use-module (guix modules)
|
2016-09-07 19:20:43 -04:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix records)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
2017-06-08 14:12:38 -04:00
|
|
|
|
#:use-module (ice-9 vlist)
|
2016-09-07 19:20:43 -04:00
|
|
|
|
#:export (%default-rotations
|
|
|
|
|
%rotated-files
|
2017-06-08 14:12:38 -04:00
|
|
|
|
|
|
|
|
|
log-rotation
|
|
|
|
|
log-rotation?
|
|
|
|
|
log-rotation-frequency
|
|
|
|
|
log-rotation-files
|
|
|
|
|
log-rotation-options
|
|
|
|
|
log-rotation-post-rotate
|
2022-07-31 17:35:27 -04:00
|
|
|
|
%default-log-rotation-options
|
2017-06-08 14:12:38 -04:00
|
|
|
|
|
2016-09-07 19:20:43 -04:00
|
|
|
|
rottlog-configuration
|
|
|
|
|
rottlog-configuration?
|
|
|
|
|
rottlog-service
|
2020-07-22 14:21:21 -04:00
|
|
|
|
rottlog-service-type
|
|
|
|
|
|
2022-03-31 17:14:39 -04:00
|
|
|
|
log-cleanup-service-type
|
|
|
|
|
log-cleanup-configuration
|
|
|
|
|
log-cleanup-configuration?
|
|
|
|
|
log-cleanup-configuration-directory
|
|
|
|
|
log-cleanup-configuration-expiry
|
|
|
|
|
log-cleanup-configuration-schedule
|
|
|
|
|
|
2020-07-22 14:21:21 -04:00
|
|
|
|
unattended-upgrade-service-type
|
|
|
|
|
unattended-upgrade-configuration
|
|
|
|
|
unattended-upgrade-configuration?
|
2020-08-24 08:52:39 -04:00
|
|
|
|
unattended-upgrade-configuration-operating-system-file
|
2020-07-22 14:21:21 -04:00
|
|
|
|
unattended-upgrade-configuration-channels
|
|
|
|
|
unattended-upgrade-configuration-schedule
|
|
|
|
|
unattended-upgrade-configuration-services-to-restart
|
|
|
|
|
unattended-upgrade-configuration-system-expiration
|
|
|
|
|
unattended-upgrade-configuration-maximum-duration
|
|
|
|
|
unattended-upgrade-configuration-log-file))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module implements configuration of rottlog by writing
|
|
|
|
|
;;; /etc/rottlog/{rc,hourly|daily|weekly}. Example usage
|
|
|
|
|
;;;
|
|
|
|
|
;;; (mcron-service)
|
2017-06-08 14:12:38 -04:00
|
|
|
|
;;; (service rottlog-service-type)
|
2016-09-07 19:20:43 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2017-06-08 14:12:38 -04:00
|
|
|
|
(define-record-type* <log-rotation> log-rotation make-log-rotation
|
|
|
|
|
log-rotation?
|
|
|
|
|
(files log-rotation-files) ;list of strings
|
|
|
|
|
(frequency log-rotation-frequency ;symbol
|
|
|
|
|
(default 'weekly))
|
|
|
|
|
(post-rotate log-rotation-post-rotate ;#f | gexp
|
|
|
|
|
(default #f))
|
|
|
|
|
(options log-rotation-options ;list of strings
|
2022-07-31 17:35:27 -04:00
|
|
|
|
(default %default-log-rotation-options)))
|
|
|
|
|
|
|
|
|
|
(define %default-log-rotation-options
|
|
|
|
|
;; Default log rotation options: append ".gz" to file names.
|
|
|
|
|
'("storefile @FILENAME.@COMP_EXT"
|
|
|
|
|
"notifempty"))
|
2017-06-08 14:12:38 -04:00
|
|
|
|
|
2016-09-07 19:20:43 -04:00
|
|
|
|
(define %rotated-files
|
2016-10-03 08:39:25 -04:00
|
|
|
|
;; Syslog files subject to rotation.
|
2018-03-22 06:18:26 -04:00
|
|
|
|
'("/var/log/messages" "/var/log/secure" "/var/log/debug"
|
2021-03-29 11:48:52 -04:00
|
|
|
|
"/var/log/maillog" "/var/log/mcron.log"))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
|
|
|
|
(define %default-rotations
|
2017-06-08 14:12:38 -04:00
|
|
|
|
(list (log-rotation ;syslog files
|
|
|
|
|
(files %rotated-files)
|
|
|
|
|
|
2022-07-31 12:32:13 -04:00
|
|
|
|
(frequency 'weekly)
|
2022-07-31 17:35:27 -04:00
|
|
|
|
(options `(;; These files are worth keeping for a few weeks.
|
2022-07-31 12:32:13 -04:00
|
|
|
|
"rotate 16"
|
|
|
|
|
;; Run post-rotate once per rotation
|
2020-04-29 03:34:01 -04:00
|
|
|
|
"sharedscripts"
|
2022-07-31 17:35:27 -04:00
|
|
|
|
|
|
|
|
|
,@%default-log-rotation-options))
|
2017-06-08 14:12:38 -04:00
|
|
|
|
;; Restart syslogd after rotation.
|
|
|
|
|
(post-rotate #~(let ((pid (call-with-input-file "/var/run/syslog.pid"
|
|
|
|
|
read)))
|
|
|
|
|
(kill pid SIGHUP))))
|
|
|
|
|
(log-rotation
|
2022-04-08 18:30:40 -04:00
|
|
|
|
(files '("/var/log/guix-daemon.log"))
|
2022-07-31 17:35:27 -04:00
|
|
|
|
(options `("rotate 4" ;don't keep too many of them
|
|
|
|
|
,@%default-log-rotation-options)))))
|
2017-06-08 14:12:38 -04:00
|
|
|
|
|
|
|
|
|
(define (log-rotation->config rotation)
|
|
|
|
|
"Return a string-valued gexp representing the rottlog configuration snippet
|
|
|
|
|
for ROTATION."
|
|
|
|
|
(define post-rotate
|
|
|
|
|
(let ((post (log-rotation-post-rotate rotation)))
|
|
|
|
|
(and post
|
|
|
|
|
(program-file "rottlog-post-rotate.scm" post))))
|
|
|
|
|
|
|
|
|
|
#~(let ((post #$post-rotate))
|
|
|
|
|
(string-append (string-join '#$(log-rotation-files rotation) ",")
|
|
|
|
|
" {"
|
|
|
|
|
#$(string-join (log-rotation-options rotation)
|
|
|
|
|
"\n " 'prefix)
|
|
|
|
|
(if post
|
|
|
|
|
(string-append "\n postrotate\n " post
|
|
|
|
|
"\n endscript\n")
|
|
|
|
|
"")
|
|
|
|
|
"\n}\n")))
|
|
|
|
|
|
|
|
|
|
(define (log-rotations->/etc-entries rotations)
|
|
|
|
|
"Return the list of /etc entries for ROTATIONS, a list of <log-rotation>."
|
|
|
|
|
(define (frequency-file frequency rotations)
|
|
|
|
|
(computed-file (string-append "rottlog." (symbol->string frequency))
|
|
|
|
|
#~(call-with-output-file #$output
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(for-each (lambda (str)
|
|
|
|
|
(display str port))
|
|
|
|
|
(list #$@(map log-rotation->config
|
|
|
|
|
rotations)))))))
|
|
|
|
|
|
|
|
|
|
(let* ((frequencies (delete-duplicates
|
|
|
|
|
(map log-rotation-frequency rotations)))
|
|
|
|
|
(table (fold (lambda (rotation table)
|
|
|
|
|
(vhash-consq (log-rotation-frequency rotation)
|
|
|
|
|
rotation table))
|
|
|
|
|
vlist-null
|
|
|
|
|
rotations)))
|
|
|
|
|
(map (lambda (frequency)
|
|
|
|
|
`(,(symbol->string frequency)
|
|
|
|
|
,(frequency-file frequency
|
|
|
|
|
(vhash-foldq* cons '() frequency table))))
|
|
|
|
|
frequencies)))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
|
|
|
|
(define (default-jobs rottlog)
|
|
|
|
|
(list #~(job '(next-hour '(0)) ;midnight
|
2018-10-03 16:44:11 -04:00
|
|
|
|
#$(file-append rottlog "/sbin/rottlog"))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
#~(job '(next-hour '(12)) ;noon
|
2018-10-03 16:44:11 -04:00
|
|
|
|
#$(file-append rottlog "/sbin/rottlog"))))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
|
|
|
|
(define-record-type* <rottlog-configuration>
|
|
|
|
|
rottlog-configuration make-rottlog-configuration
|
|
|
|
|
rottlog-configuration?
|
2021-11-18 16:44:26 -05:00
|
|
|
|
(rottlog rottlog-rottlog ;file-like
|
2016-09-07 19:20:43 -04:00
|
|
|
|
(default rottlog))
|
|
|
|
|
(rc-file rottlog-rc-file ;file-like
|
|
|
|
|
(default (file-append rottlog "/etc/rc")))
|
2017-06-08 14:12:38 -04:00
|
|
|
|
(rotations rottlog-rotations ;list of <log-rotation>
|
2016-09-07 19:20:43 -04:00
|
|
|
|
(default %default-rotations))
|
|
|
|
|
(jobs rottlog-jobs ;list of <mcron-job>
|
|
|
|
|
(default #f)))
|
|
|
|
|
|
|
|
|
|
(define (rottlog-etc config)
|
2017-06-08 14:12:38 -04:00
|
|
|
|
`(("rottlog"
|
|
|
|
|
,(file-union "rottlog"
|
|
|
|
|
(cons `("rc" ,(rottlog-rc-file config))
|
|
|
|
|
(log-rotations->/etc-entries
|
|
|
|
|
(rottlog-rotations config)))))))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
|
|
|
|
(define (rottlog-jobs-or-default config)
|
|
|
|
|
(or (rottlog-jobs config)
|
|
|
|
|
(default-jobs (rottlog-rottlog config))))
|
|
|
|
|
|
|
|
|
|
(define rottlog-service-type
|
|
|
|
|
(service-type
|
|
|
|
|
(name 'rottlog)
|
2017-11-05 09:29:52 -05:00
|
|
|
|
(description
|
|
|
|
|
"Periodically rotate log files using GNU@tie{}Rottlog and GNU@tie{}mcron.
|
|
|
|
|
Old log files are removed or compressed according to the configuration.")
|
2016-09-07 19:20:43 -04:00
|
|
|
|
(extensions (list (service-extension etc-service-type rottlog-etc)
|
|
|
|
|
(service-extension mcron-service-type
|
2016-10-03 08:48:01 -04:00
|
|
|
|
rottlog-jobs-or-default)
|
|
|
|
|
|
|
|
|
|
;; Add Rottlog to the global profile so users can access
|
|
|
|
|
;; the documentation.
|
|
|
|
|
(service-extension profile-service-type
|
2017-04-15 18:06:43 -04:00
|
|
|
|
(compose list rottlog-rottlog))))
|
2017-06-08 14:23:08 -04:00
|
|
|
|
(compose concatenate)
|
|
|
|
|
(extend (lambda (config rotations)
|
|
|
|
|
(rottlog-configuration
|
|
|
|
|
(inherit config)
|
|
|
|
|
(rotations (append (rottlog-rotations config)
|
|
|
|
|
rotations)))))
|
2017-04-15 18:06:43 -04:00
|
|
|
|
(default-value (rottlog-configuration))))
|
2016-09-07 19:20:43 -04:00
|
|
|
|
|
2022-03-31 17:14:39 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Build log removal.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-record-type* <log-cleanup-configuration>
|
|
|
|
|
log-cleanup-configuration make-log-cleanup-configuration
|
|
|
|
|
log-cleanup-configuration?
|
|
|
|
|
(directory log-cleanup-configuration-directory) ;string
|
|
|
|
|
(expiry log-cleanup-configuration-expiry ;integer (seconds)
|
|
|
|
|
(default (* 6 30 24 3600)))
|
|
|
|
|
(schedule log-cleanup-configuration-schedule ;string or gexp
|
|
|
|
|
(default "30 12 01,08,15,22 * *")))
|
|
|
|
|
|
|
|
|
|
(define (log-cleanup-program directory expiry)
|
|
|
|
|
(program-file "delete-old-logs"
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
|
|
|
|
(let* ((now (car (gettimeofday)))
|
|
|
|
|
(logs (find-files #$directory
|
|
|
|
|
(lambda (file stat)
|
|
|
|
|
(> (- now (stat:mtime stat))
|
|
|
|
|
#$expiry)))))
|
|
|
|
|
(format #t "deleting ~a log files from '~a'...~%"
|
|
|
|
|
(length logs) #$directory)
|
|
|
|
|
(for-each delete-file logs))))))
|
|
|
|
|
|
|
|
|
|
(define (log-cleanup-mcron-jobs configuration)
|
|
|
|
|
(match-record configuration <log-cleanup-configuration>
|
|
|
|
|
(directory expiry schedule)
|
|
|
|
|
(list #~(job #$schedule
|
|
|
|
|
#$(log-cleanup-program directory expiry)))))
|
|
|
|
|
|
|
|
|
|
(define log-cleanup-service-type
|
|
|
|
|
(service-type
|
|
|
|
|
(name 'log-cleanup)
|
|
|
|
|
(extensions
|
|
|
|
|
(list (service-extension mcron-service-type
|
|
|
|
|
log-cleanup-mcron-jobs)))
|
|
|
|
|
(description
|
|
|
|
|
"Periodically delete old log files.")))
|
|
|
|
|
|
2020-07-22 14:21:21 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Unattended upgrade.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-record-type* <unattended-upgrade-configuration>
|
|
|
|
|
unattended-upgrade-configuration make-unattended-upgrade-configuration
|
|
|
|
|
unattended-upgrade-configuration?
|
2020-08-24 08:52:39 -04:00
|
|
|
|
(operating-system-file unattended-upgrade-operating-system-file
|
|
|
|
|
(default "/run/current-system/configuration.scm"))
|
2020-07-22 14:21:21 -04:00
|
|
|
|
(schedule unattended-upgrade-configuration-schedule
|
|
|
|
|
(default "30 01 * * 0"))
|
|
|
|
|
(channels unattended-upgrade-configuration-channels
|
|
|
|
|
(default #~%default-channels))
|
|
|
|
|
(services-to-restart unattended-upgrade-configuration-services-to-restart
|
|
|
|
|
(default '(mcron)))
|
|
|
|
|
(system-expiration unattended-upgrade-system-expiration
|
|
|
|
|
(default (* 3 30 24 3600)))
|
|
|
|
|
(maximum-duration unattended-upgrade-maximum-duration
|
|
|
|
|
(default 3600))
|
|
|
|
|
(log-file unattended-upgrade-configuration-log-file
|
|
|
|
|
(default %unattended-upgrade-log-file)))
|
|
|
|
|
|
|
|
|
|
(define %unattended-upgrade-log-file
|
|
|
|
|
"/var/log/unattended-upgrade.log")
|
|
|
|
|
|
|
|
|
|
(define (unattended-upgrade-mcron-jobs config)
|
|
|
|
|
(define channels
|
|
|
|
|
(scheme-file "channels.scm"
|
|
|
|
|
(unattended-upgrade-configuration-channels config)))
|
|
|
|
|
|
|
|
|
|
(define log
|
|
|
|
|
(unattended-upgrade-configuration-log-file config))
|
|
|
|
|
|
|
|
|
|
(define services
|
|
|
|
|
(unattended-upgrade-configuration-services-to-restart config))
|
|
|
|
|
|
|
|
|
|
(define expiration
|
|
|
|
|
(unattended-upgrade-system-expiration config))
|
|
|
|
|
|
2020-08-24 08:52:39 -04:00
|
|
|
|
(define config-file
|
|
|
|
|
(unattended-upgrade-operating-system-file config))
|
|
|
|
|
|
2020-07-22 14:21:21 -04:00
|
|
|
|
(define code
|
|
|
|
|
(with-imported-modules (source-module-closure '((guix build utils)
|
|
|
|
|
(gnu services herd)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(gnu services herd)
|
|
|
|
|
(srfi srfi-19)
|
|
|
|
|
(srfi srfi-34))
|
|
|
|
|
|
|
|
|
|
(define log
|
|
|
|
|
(open-file #$log "a0"))
|
|
|
|
|
|
|
|
|
|
(define (timestamp)
|
|
|
|
|
(date->string (time-utc->date (current-time time-utc))
|
|
|
|
|
"[~4]"))
|
|
|
|
|
|
|
|
|
|
(define (alarm-handler . _)
|
|
|
|
|
(format #t "~a time is up, aborting upgrade~%"
|
|
|
|
|
(timestamp))
|
|
|
|
|
(exit 1))
|
|
|
|
|
|
|
|
|
|
;; 'guix time-machine' needs X.509 certificates to authenticate the
|
|
|
|
|
;; Git host.
|
|
|
|
|
(setenv "SSL_CERT_DIR"
|
|
|
|
|
#$(file-append nss-certs "/etc/ssl/certs"))
|
|
|
|
|
|
|
|
|
|
;; Make sure the upgrade doesn't take too long.
|
|
|
|
|
(sigaction SIGALRM alarm-handler)
|
|
|
|
|
(alarm #$(unattended-upgrade-maximum-duration config))
|
|
|
|
|
|
2020-08-24 16:59:43 -04:00
|
|
|
|
;; Redirect stdout/stderr to LOG to save the output of 'guix' below.
|
|
|
|
|
(redirect-port log (current-output-port))
|
|
|
|
|
(redirect-port log (current-error-port))
|
|
|
|
|
|
|
|
|
|
(format #t "~a starting upgrade...~%" (timestamp))
|
|
|
|
|
(guard (c ((invoke-error? c)
|
|
|
|
|
(report-invoke-error c)))
|
|
|
|
|
(invoke #$(file-append guix "/bin/guix")
|
|
|
|
|
"time-machine" "-C" #$channels
|
|
|
|
|
"--" "system" "reconfigure" #$config-file)
|
|
|
|
|
|
|
|
|
|
;; 'guix system delete-generations' fails when there's no
|
|
|
|
|
;; matching generation. Thus, catch 'invoke-error?'.
|
|
|
|
|
(guard (c ((invoke-error? c)
|
|
|
|
|
(report-invoke-error c)))
|
|
|
|
|
(invoke #$(file-append guix "/bin/guix")
|
|
|
|
|
"system" "delete-generations"
|
|
|
|
|
#$(string-append (number->string expiration)
|
|
|
|
|
"s")))
|
|
|
|
|
|
|
|
|
|
(format #t "~a restarting services...~%" (timestamp))
|
|
|
|
|
(for-each restart-service '#$services)
|
|
|
|
|
|
|
|
|
|
;; XXX: If 'mcron' has been restarted, perhaps this isn't
|
|
|
|
|
;; reached.
|
|
|
|
|
(format #t "~a upgrade complete~%" (timestamp))))))
|
2020-07-22 14:21:21 -04:00
|
|
|
|
|
|
|
|
|
(define upgrade
|
|
|
|
|
(program-file "unattended-upgrade" code))
|
|
|
|
|
|
|
|
|
|
(list #~(job #$(unattended-upgrade-configuration-schedule config)
|
|
|
|
|
#$upgrade)))
|
|
|
|
|
|
|
|
|
|
(define (unattended-upgrade-log-rotations config)
|
|
|
|
|
(list (log-rotation
|
|
|
|
|
(files
|
|
|
|
|
(list (unattended-upgrade-configuration-log-file config))))))
|
|
|
|
|
|
|
|
|
|
(define unattended-upgrade-service-type
|
|
|
|
|
(service-type
|
|
|
|
|
(name 'unattended-upgrade)
|
|
|
|
|
(extensions
|
|
|
|
|
(list (service-extension mcron-service-type
|
|
|
|
|
unattended-upgrade-mcron-jobs)
|
|
|
|
|
(service-extension rottlog-service-type
|
|
|
|
|
unattended-upgrade-log-rotations)))
|
|
|
|
|
(description
|
|
|
|
|
"Periodically upgrade the system from the current configuration.")
|
|
|
|
|
(default-value (unattended-upgrade-configuration))))
|
|
|
|
|
|
2016-09-07 19:20:43 -04:00
|
|
|
|
;;; admin.scm ends here
|