2014-02-19 20:58:24 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-12 22:41:05 +01:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2014-02-19 20:58:24 +01: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.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu services base)
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 13:34:52 +01:00
|
|
|
#:use-module (guix store)
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (gnu services)
|
2014-07-12 22:46:44 +02:00
|
|
|
#:use-module (gnu services networking)
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (gnu system shadow) ; 'user-account', etc.
|
|
|
|
#:use-module (gnu system linux) ; 'pam-service', etc.
|
|
|
|
#:use-module (gnu packages admin)
|
2014-06-23 15:35:03 +02:00
|
|
|
#:use-module ((gnu packages linux)
|
2014-09-13 10:54:47 +02:00
|
|
|
#:select (eudev kbd e2fsprogs lvm2 fuse alsa-utils))
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module ((gnu packages base)
|
gnu: Split (gnu packages base), adding (gnu packages commencement).
* gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
%boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
* gnu/packages/commencement.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
* gnu/packages/cross-base.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* guix/build-system/cmake.scm (cmake-build): Likewise.
* guix/build-system/gnu.scm (standard-packages, gnu-build,
gnu-cross-build): Likewise.
* guix/build-system/perl.scm (perl-build): Likewise.
* guix/build-system/python.scm (python-build): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Likewise.
* guix/download.scm (url-fetch): Likewise.
* guix/gexp.scm (default-guile): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/monads.scm (run-with-store): Likewise.
* guix/packages.scm (default-guile): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/svn-download.scm (svn-fetch): Likewise.
* tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
Likewise.
* tests/packages.scm ("GNU Make, bootstrap"): Likewise.
* tests/guix-package.sh: Likewise.
* gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
* gnu/services/xorg.scm: Likewise.
* gnu/system/vm.scm: Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
2014-08-27 00:25:17 +02:00
|
|
|
#:select (canonical-package glibc))
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (gnu packages package-management)
|
2015-03-19 23:15:33 +01:00
|
|
|
#:use-module (gnu packages lsh)
|
|
|
|
#:use-module (gnu packages lsof)
|
Move part of (gnu build linux-boot) to (gnu build file-systems).
* gnu/build/linux-boot.scm (%ext2-endianness, %ext2-sblock-magic,
%ext2-sblock-creator-os, %ext2-sblock-uuid, %ext2-sblock-volume-name,
read-ext2-superblock, ext2-superblock-uuid,
ext2-superblock-volume-name, disk-partitions,
partition-label-predicate, find-partition-by-label,
canonicalize-device-spec, MS_RDONLY, MS_NOSUID, MS_NODEV, MS_NOEXEC,
MS_BIND, MS_MOVE, bind-mount, check-file-system,
mount-flags->bit-mask, mount-file-system): Move to...
* gnu/build/file-systems.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/services/base.scm: Use (gnu build file-systems).
* gnu/services/dmd.scm (dmd-configuration-file): Likewise.
* gnu/system.scm (operating-system-activation-script): Likewise.
* gnu/system/linux-initrd.scm (base-initrd): Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise.
2014-09-03 14:19:51 +02:00
|
|
|
#:use-module ((gnu build file-systems)
|
2014-07-23 00:44:27 +02:00
|
|
|
#:select (mount-flags->bit-mask))
|
2014-04-28 23:07:08 +02:00
|
|
|
#:use-module (guix gexp)
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (guix monads)
|
2014-12-14 16:29:24 +01:00
|
|
|
#:use-module (guix records)
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
#:use-module (srfi srfi-26)
|
2014-12-14 16:29:24 +01:00
|
|
|
#:use-module (ice-9 match)
|
2014-02-19 20:58:24 +01:00
|
|
|
#:use-module (ice-9 format)
|
2014-05-08 23:41:40 +02:00
|
|
|
#:export (root-file-system-service
|
2014-05-10 23:33:52 +02:00
|
|
|
file-system-service
|
2014-11-10 22:25:39 +01:00
|
|
|
user-unmount-service
|
2014-09-11 23:39:15 +02:00
|
|
|
device-mapping-service
|
2014-09-18 22:51:48 +02:00
|
|
|
swap-service
|
2014-05-08 23:41:40 +02:00
|
|
|
user-processes-service
|
|
|
|
host-name-service
|
2014-07-17 15:53:01 +02:00
|
|
|
console-font-service
|
2014-06-23 15:35:03 +02:00
|
|
|
udev-service
|
2014-02-19 20:58:24 +01:00
|
|
|
mingetty-service
|
2014-12-14 16:29:24 +01:00
|
|
|
|
|
|
|
%nscd-default-caches
|
|
|
|
%nscd-default-configuration
|
|
|
|
|
|
|
|
nscd-configuration
|
|
|
|
nscd-configuration?
|
|
|
|
|
|
|
|
nscd-cache
|
|
|
|
nscd-cache?
|
|
|
|
|
2014-02-19 20:58:24 +01:00
|
|
|
nscd-service
|
|
|
|
syslog-service
|
2014-02-19 21:08:28 +01:00
|
|
|
guix-service
|
|
|
|
%base-services))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; Base system services---i.e., services that 99% of the users will want to
|
|
|
|
;;; use.
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
2014-05-08 23:41:40 +02:00
|
|
|
(define (root-file-system-service)
|
|
|
|
"Return a service whose sole purpose is to re-mount read-only the root file
|
|
|
|
system upon shutdown (aka. cleanly \"umounting\" root.)
|
|
|
|
|
|
|
|
This service must be the root of the service dependency graph so that its
|
|
|
|
'stop' action is invoked when dmd is the only process left."
|
|
|
|
(with-monad %store-monad
|
|
|
|
(return
|
|
|
|
(service
|
|
|
|
(documentation "Take care of the root file system.")
|
|
|
|
(provision '(root-file-system))
|
|
|
|
(start #~(const #t))
|
|
|
|
(stop #~(lambda _
|
|
|
|
;; Return #f if successfully stopped.
|
2014-05-10 22:58:22 +02:00
|
|
|
(sync)
|
2014-05-08 23:41:40 +02:00
|
|
|
|
|
|
|
(call-with-blocked-asyncs
|
|
|
|
(lambda ()
|
|
|
|
(let ((null (%make-void-port "w")))
|
|
|
|
;; Close 'dmd.log'.
|
|
|
|
(display "closing log\n")
|
|
|
|
;; XXX: Ideally we'd use 'stop-logging', but that one
|
|
|
|
;; doesn't actually close the port as of dmd 0.1.
|
|
|
|
(close-port (@@ (dmd comm) log-output-port))
|
|
|
|
(set! (@@ (dmd comm) log-output-port) null)
|
|
|
|
|
|
|
|
;; Redirect the default output ports..
|
|
|
|
(set-current-output-port null)
|
|
|
|
(set-current-error-port null)
|
|
|
|
|
|
|
|
;; Close /dev/console.
|
|
|
|
(for-each close-fdes '(0 1 2))
|
|
|
|
|
2014-05-10 22:58:22 +02:00
|
|
|
;; At this point, there are no open files left, so the
|
2014-05-08 23:41:40 +02:00
|
|
|
;; root file system can be re-mounted read-only.
|
2014-05-10 22:58:22 +02:00
|
|
|
(mount #f "/" #f
|
|
|
|
(logior MS_REMOUNT MS_RDONLY)
|
|
|
|
#:update-mtab? #f)
|
|
|
|
|
|
|
|
#f)))))
|
2014-05-08 23:41:40 +02:00
|
|
|
(respawn? #f)))))
|
|
|
|
|
2014-05-10 23:33:52 +02:00
|
|
|
(define* (file-system-service device target type
|
2014-07-23 00:44:27 +02:00
|
|
|
#:key (flags '()) (check? #t)
|
2014-09-11 23:39:15 +02:00
|
|
|
create-mount-point? options (title 'any)
|
|
|
|
(requirements '()))
|
2014-05-10 23:33:52 +02:00
|
|
|
"Return a service that mounts DEVICE on TARGET as a file system TYPE with
|
2014-06-02 23:58:50 +02:00
|
|
|
OPTIONS. TITLE is a symbol specifying what kind of name DEVICE is: 'label for
|
|
|
|
a partition label, 'device for a device file name, or 'any. When CHECK? is
|
2014-07-22 22:53:36 +02:00
|
|
|
true, check the file system before mounting it. When CREATE-MOUNT-POINT? is
|
2014-07-23 00:44:27 +02:00
|
|
|
true, create TARGET if it does not exist yet. FLAGS is a list of symbols,
|
2014-09-11 23:39:15 +02:00
|
|
|
such as 'read-only' etc. Optionally, REQUIREMENTS may be a list of service
|
|
|
|
names such as device-mapping services."
|
2014-05-10 23:33:52 +02:00
|
|
|
(with-monad %store-monad
|
|
|
|
(return
|
|
|
|
(service
|
|
|
|
(provision (list (symbol-append 'file-system- (string->symbol target))))
|
2014-09-11 23:39:15 +02:00
|
|
|
(requirement `(root-file-system ,@requirements))
|
2014-05-10 23:33:52 +02:00
|
|
|
(documentation "Check, mount, and unmount the given file system.")
|
|
|
|
(start #~(lambda args
|
2014-06-02 23:58:50 +02:00
|
|
|
(let ((device (canonicalize-device-spec #$device '#$title)))
|
2014-07-22 22:53:36 +02:00
|
|
|
#$(if create-mount-point?
|
|
|
|
#~(mkdir-p #$target)
|
|
|
|
#~#t)
|
2014-06-02 23:58:50 +02:00
|
|
|
#$(if check?
|
2014-07-21 21:07:00 +02:00
|
|
|
#~(begin
|
|
|
|
;; Make sure fsck.ext2 & co. can be found.
|
|
|
|
(setenv "PATH"
|
|
|
|
(string-append
|
|
|
|
#$e2fsprogs "/sbin:"
|
|
|
|
"/run/current-system/profile/sbin:"
|
|
|
|
(getenv "PATH")))
|
|
|
|
(check-file-system device #$type))
|
2014-06-02 23:58:50 +02:00
|
|
|
#~#t)
|
2014-07-23 00:44:27 +02:00
|
|
|
(mount device #$target #$type
|
|
|
|
#$(mount-flags->bit-mask flags)
|
|
|
|
#$options))
|
2014-05-10 23:33:52 +02:00
|
|
|
#t))
|
|
|
|
(stop #~(lambda args
|
|
|
|
;; Normally there are no processes left at this point, so
|
|
|
|
;; TARGET can be safely unmounted.
|
2014-09-17 09:20:38 +02:00
|
|
|
|
|
|
|
;; Make sure PID 1 doesn't keep TARGET busy.
|
|
|
|
(chdir "/")
|
|
|
|
|
2014-05-10 23:33:52 +02:00
|
|
|
(umount #$target)
|
|
|
|
#f))))))
|
|
|
|
|
2014-11-10 22:25:39 +01:00
|
|
|
(define (user-unmount-service known-mount-points)
|
|
|
|
"Return a service whose sole purpose is to unmount file systems not listed
|
|
|
|
in KNOWN-MOUNT-POINTS when it is stopped."
|
|
|
|
(with-monad %store-monad
|
|
|
|
(return
|
|
|
|
(service
|
|
|
|
(documentation "Unmount manually-mounted file systems.")
|
|
|
|
(provision '(user-unmount))
|
|
|
|
(start #~(const #t))
|
|
|
|
(stop #~(lambda args
|
|
|
|
(define (known? mount-point)
|
|
|
|
(member mount-point
|
|
|
|
(cons* "/proc" "/sys"
|
|
|
|
'#$known-mount-points)))
|
|
|
|
|
2014-11-14 00:48:43 +01:00
|
|
|
;; Make sure we don't keep the user's mount points busy.
|
|
|
|
(chdir "/")
|
|
|
|
|
2014-11-10 22:25:39 +01:00
|
|
|
(for-each (lambda (mount-point)
|
|
|
|
(format #t "unmounting '~a'...~%" mount-point)
|
|
|
|
(catch 'system-error
|
|
|
|
(lambda ()
|
|
|
|
(umount mount-point))
|
|
|
|
(lambda args
|
|
|
|
(let ((errno (system-error-errno args)))
|
|
|
|
(format #t "failed to unmount '~a': ~a~%"
|
|
|
|
mount-point (strerror errno))))))
|
|
|
|
(filter (negate known?) (mount-points)))
|
|
|
|
#f))))))
|
|
|
|
|
2014-05-14 16:38:21 +02:00
|
|
|
(define %do-not-kill-file
|
|
|
|
;; Name of the file listing PIDs of processes that must survive when halting
|
|
|
|
;; the system. Typical example is user-space file systems.
|
|
|
|
"/etc/dmd/do-not-kill")
|
|
|
|
|
2015-01-13 17:22:39 +01:00
|
|
|
(define* (user-processes-service requirements #:key (grace-delay 4))
|
2014-05-08 23:41:40 +02:00
|
|
|
"Return the service that is responsible for terminating all the processes so
|
|
|
|
that the root file system can be re-mounted read-only, just before
|
|
|
|
rebooting/halting. Processes still running GRACE-DELAY seconds after SIGTERM
|
|
|
|
has been sent are terminated with SIGKILL.
|
|
|
|
|
2014-05-10 23:33:52 +02:00
|
|
|
The returned service will depend on 'root-file-system' and on all the services
|
|
|
|
listed in REQUIREMENTS.
|
|
|
|
|
2014-05-08 23:41:40 +02:00
|
|
|
All the services that spawn processes must depend on this one so that they are
|
|
|
|
stopped before 'kill' is called."
|
|
|
|
(with-monad %store-monad
|
|
|
|
(return (service
|
|
|
|
(documentation "When stopped, terminate all user processes.")
|
|
|
|
(provision '(user-processes))
|
2014-05-10 23:33:52 +02:00
|
|
|
(requirement (cons 'root-file-system requirements))
|
2014-05-08 23:41:40 +02:00
|
|
|
(start #~(const #t))
|
|
|
|
(stop #~(lambda _
|
2014-05-14 16:38:21 +02:00
|
|
|
(define (kill-except omit signal)
|
|
|
|
;; Kill all the processes with SIGNAL except those
|
|
|
|
;; listed in OMIT and the current process.
|
|
|
|
(let ((omit (cons (getpid) omit)))
|
|
|
|
(for-each (lambda (pid)
|
|
|
|
(unless (memv pid omit)
|
|
|
|
(false-if-exception
|
|
|
|
(kill pid signal))))
|
|
|
|
(processes))))
|
|
|
|
|
|
|
|
(define omitted-pids
|
|
|
|
;; List of PIDs that must not be killed.
|
|
|
|
(if (file-exists? #$%do-not-kill-file)
|
|
|
|
(map string->number
|
|
|
|
(call-with-input-file #$%do-not-kill-file
|
|
|
|
(compose string-tokenize
|
|
|
|
(@ (ice-9 rdelim) read-string))))
|
|
|
|
'()))
|
|
|
|
|
2015-01-13 17:22:39 +01:00
|
|
|
(define (now)
|
|
|
|
(car (gettimeofday)))
|
|
|
|
|
|
|
|
(define (sleep* n)
|
|
|
|
;; Really sleep N seconds.
|
|
|
|
;; Work around <http://bugs.gnu.org/19581>.
|
|
|
|
(define start (now))
|
|
|
|
(let loop ((elapsed 0))
|
|
|
|
(when (> n elapsed)
|
|
|
|
(sleep (- n elapsed))
|
|
|
|
(loop (- (now) start)))))
|
|
|
|
|
2014-09-17 09:13:51 +02:00
|
|
|
(define lset= (@ (srfi srfi-1) lset=))
|
|
|
|
|
2015-01-12 22:41:05 +01:00
|
|
|
(display "sending all processes the TERM signal\n")
|
2014-05-08 23:41:40 +02:00
|
|
|
|
2014-05-14 16:38:21 +02:00
|
|
|
(if (null? omitted-pids)
|
|
|
|
(begin
|
|
|
|
;; Easy: terminate all of them.
|
|
|
|
(kill -1 SIGTERM)
|
2015-01-13 17:22:39 +01:00
|
|
|
(sleep* #$grace-delay)
|
2014-05-14 16:38:21 +02:00
|
|
|
(kill -1 SIGKILL))
|
|
|
|
(begin
|
|
|
|
;; Kill them all except OMITTED-PIDS. XXX: We
|
|
|
|
;; would like to (kill -1 SIGSTOP) to get a fixed
|
|
|
|
;; list of processes, like 'killall5' does, but
|
|
|
|
;; that seems unreliable.
|
|
|
|
(kill-except omitted-pids SIGTERM)
|
2015-01-13 17:22:39 +01:00
|
|
|
(sleep* #$grace-delay)
|
2014-05-14 16:38:21 +02:00
|
|
|
(kill-except omitted-pids SIGKILL)
|
|
|
|
(delete-file #$%do-not-kill-file)))
|
2014-05-08 23:41:40 +02:00
|
|
|
|
2014-09-17 09:13:51 +02:00
|
|
|
(let wait ()
|
|
|
|
(let ((pids (processes)))
|
|
|
|
(unless (lset= = pids (cons 1 omitted-pids))
|
|
|
|
(format #t "waiting for process termination\
|
|
|
|
(processes left: ~s)~%"
|
|
|
|
pids)
|
2015-01-13 17:22:39 +01:00
|
|
|
(sleep* 2)
|
2014-09-17 09:13:51 +02:00
|
|
|
(wait))))
|
|
|
|
|
2014-05-08 23:41:40 +02:00
|
|
|
(display "all processes have been terminated\n")
|
|
|
|
#f))
|
|
|
|
(respawn? #f)))))
|
|
|
|
|
2014-02-19 20:58:24 +01:00
|
|
|
(define (host-name-service name)
|
2014-07-11 22:57:02 +02:00
|
|
|
"Return a service that sets the host name to @var{name}."
|
2014-02-19 20:58:24 +01:00
|
|
|
(with-monad %store-monad
|
|
|
|
(return (service
|
|
|
|
(documentation "Initialize the machine's host name.")
|
|
|
|
(provision '(host-name))
|
2014-04-28 23:07:08 +02:00
|
|
|
(start #~(lambda _
|
|
|
|
(sethostname #$name)))
|
2014-02-19 20:58:24 +01:00
|
|
|
(respawn? #f)))))
|
|
|
|
|
2014-07-17 15:53:01 +02:00
|
|
|
(define (unicode-start tty)
|
|
|
|
"Return a gexp to start Unicode support on @var{tty}."
|
|
|
|
|
|
|
|
;; We have to run 'unicode_start' in a pipe so that when it invokes the
|
|
|
|
;; 'tty' command, that command returns TTY.
|
|
|
|
#~(begin
|
|
|
|
(let ((pid (primitive-fork)))
|
|
|
|
(case pid
|
|
|
|
((0)
|
|
|
|
(close-fdes 0)
|
|
|
|
(dup2 (open-fdes #$tty O_RDONLY) 0)
|
|
|
|
(close-fdes 1)
|
|
|
|
(dup2 (open-fdes #$tty O_WRONLY) 1)
|
|
|
|
(execl (string-append #$kbd "/bin/unicode_start")
|
|
|
|
"unicode_start"))
|
|
|
|
(else
|
|
|
|
(zero? (cdr (waitpid pid))))))))
|
|
|
|
|
|
|
|
(define* (console-font-service tty #:optional (font "LatGrkCyr-8x16"))
|
|
|
|
"Return a service that sets up Unicode support in @var{tty} and loads
|
|
|
|
@var{font} for that tty (fonts are per virtual console in Linux.)"
|
|
|
|
;; Note: 'LatGrkCyr-8x16' has the advantage of providing three common
|
|
|
|
;; scripts as well as glyphs for em dash, quotation marks, and other Unicode
|
|
|
|
;; codepoints notably found in the UTF-8 manual.
|
|
|
|
(let ((device (string-append "/dev/" tty)))
|
|
|
|
(with-monad %store-monad
|
|
|
|
(return (service
|
|
|
|
(documentation "Load a Unicode console font.")
|
|
|
|
(provision (list (symbol-append 'console-font-
|
|
|
|
(string->symbol tty))))
|
|
|
|
|
|
|
|
;; Start after mingetty has been started on TTY, otherwise the
|
|
|
|
;; settings are ignored.
|
|
|
|
(requirement (list (symbol-append 'term-
|
|
|
|
(string->symbol tty))))
|
|
|
|
|
|
|
|
(start #~(lambda _
|
|
|
|
(and #$(unicode-start device)
|
|
|
|
(zero?
|
|
|
|
(system* (string-append #$kbd "/bin/setfont")
|
|
|
|
"-C" #$device #$font)))))
|
|
|
|
(stop #~(const #t))
|
|
|
|
(respawn? #f))))))
|
|
|
|
|
2014-02-19 20:58:24 +01:00
|
|
|
(define* (mingetty-service tty
|
|
|
|
#:key
|
|
|
|
(motd (text-file "motd" "Welcome.\n"))
|
2014-05-31 19:16:50 +02:00
|
|
|
auto-login
|
|
|
|
login-program
|
|
|
|
login-pause?
|
2014-07-11 22:57:02 +02:00
|
|
|
|
|
|
|
;; Allow empty passwords by default so that
|
|
|
|
;; first-time users can log in when the 'root'
|
|
|
|
;; account has just been created.
|
2014-02-19 20:58:24 +01:00
|
|
|
(allow-empty-passwords? #t))
|
2014-05-31 19:16:50 +02:00
|
|
|
"Return a service to run mingetty on @var{tty}.
|
|
|
|
|
|
|
|
When @var{allow-empty-passwords?} is true, allow empty log-in password. When
|
|
|
|
@var{auto-login} is true, it must be a user name under which to log-in
|
|
|
|
automatically. @var{login-pause?} can be set to @code{#t} in conjunction with
|
|
|
|
@var{auto-login}, in which case the user will have to press a key before the
|
|
|
|
login shell is launched.
|
|
|
|
|
|
|
|
When true, @var{login-program} is a gexp or a monadic gexp denoting the name
|
|
|
|
of the log-in program (the default is the @code{login} program from the Shadow
|
|
|
|
tool suite.)
|
|
|
|
|
|
|
|
@var{motd} is a monadic value containing a text file to use as
|
2014-07-11 22:57:02 +02:00
|
|
|
the ``message of the day''."
|
2014-05-31 19:16:50 +02:00
|
|
|
(mlet %store-monad ((motd motd)
|
|
|
|
(login-program (cond ((gexp? login-program)
|
|
|
|
(return login-program))
|
|
|
|
((not login-program)
|
|
|
|
(return #f))
|
|
|
|
(else
|
|
|
|
login-program))))
|
2014-02-19 20:58:24 +01:00
|
|
|
(return
|
|
|
|
(service
|
|
|
|
(documentation (string-append "Run mingetty on " tty "."))
|
|
|
|
(provision (list (symbol-append 'term- (string->symbol tty))))
|
|
|
|
|
|
|
|
;; Since the login prompt shows the host name, wait for the 'host-name'
|
2015-01-27 09:03:02 +01:00
|
|
|
;; service to be done. Also wait for udev essentially so that the tty
|
|
|
|
;; text is not lost in the middle of kernel messages (XXX).
|
|
|
|
(requirement '(user-processes host-name udev))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
2014-04-28 23:07:08 +02:00
|
|
|
(start #~(make-forkexec-constructor
|
2014-07-07 23:58:02 +02:00
|
|
|
(list (string-append #$mingetty "/sbin/mingetty")
|
|
|
|
"--noclear" #$tty
|
|
|
|
#$@(if auto-login
|
|
|
|
#~("--autologin" #$auto-login)
|
|
|
|
#~())
|
|
|
|
#$@(if login-program
|
|
|
|
#~("--loginprog" #$login-program)
|
|
|
|
#~())
|
|
|
|
#$@(if login-pause?
|
|
|
|
#~("--loginpause")
|
|
|
|
#~()))))
|
2014-04-28 23:07:08 +02:00
|
|
|
(stop #~(make-kill-destructor))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
|
|
|
(pam-services
|
|
|
|
;; Let 'login' be known to PAM. All the mingetty services will have
|
|
|
|
;; that PAM service, but that's fine because they're all identical and
|
|
|
|
;; duplicates are removed.
|
|
|
|
(list (unix-pam-service "login"
|
|
|
|
#:allow-empty-passwords? allow-empty-passwords?
|
|
|
|
#:motd motd)))))))
|
|
|
|
|
2014-12-14 16:29:24 +01:00
|
|
|
(define-record-type* <nscd-configuration> nscd-configuration
|
|
|
|
make-nscd-configuration
|
|
|
|
nscd-configuration?
|
|
|
|
(log-file nscd-configuration-log-file ;string
|
|
|
|
(default "/var/log/nscd.log"))
|
|
|
|
(debug-level nscd-debug-level ;integer
|
|
|
|
(default 0))
|
|
|
|
;; TODO: See nscd.conf in glibc for other options to add.
|
|
|
|
(caches nscd-configuration-caches ;list of <nscd-cache>
|
|
|
|
(default %nscd-default-caches)))
|
|
|
|
|
|
|
|
(define-record-type* <nscd-cache> nscd-cache make-nscd-cache
|
|
|
|
nscd-cache?
|
|
|
|
(database nscd-cache-database) ;symbol
|
|
|
|
(positive-time-to-live nscd-cache-positive-time-to-live) ;integer
|
|
|
|
(negative-time-to-live nscd-cache-negative-time-to-live
|
|
|
|
(default 20)) ;integer
|
|
|
|
(suggested-size nscd-cache-suggested-size ;integer ("default module
|
|
|
|
;of hash table")
|
|
|
|
(default 211))
|
|
|
|
(check-files? nscd-cache-check-files? ;Boolean
|
|
|
|
(default #t))
|
|
|
|
(persistent? nscd-cache-persistent? ;Boolean
|
|
|
|
(default #t))
|
|
|
|
(shared? nscd-cache-shared? ;Boolean
|
|
|
|
(default #t))
|
|
|
|
(max-database-size nscd-cache-max-database-size ;integer
|
|
|
|
(default (* 32 (expt 2 20))))
|
|
|
|
(auto-propagate? nscd-cache-auto-propagate? ;Boolean
|
|
|
|
(default #t)))
|
|
|
|
|
|
|
|
(define %nscd-default-caches
|
|
|
|
;; Caches that we want to enable by default. Note that when providing an
|
|
|
|
;; empty nscd.conf, all caches are disabled.
|
|
|
|
(list (nscd-cache (database 'hosts)
|
|
|
|
|
|
|
|
;; Aggressively cache the host name cache to improve
|
|
|
|
;; privacy and resilience.
|
|
|
|
(positive-time-to-live (* 3600 12))
|
|
|
|
(negative-time-to-live 20)
|
|
|
|
(persistent? #t))
|
|
|
|
|
|
|
|
(nscd-cache (database 'services)
|
|
|
|
|
|
|
|
;; Services are unlikely to change, so we can be even more
|
|
|
|
;; aggressive.
|
|
|
|
(positive-time-to-live (* 3600 24))
|
|
|
|
(negative-time-to-live 3600)
|
|
|
|
(check-files? #t) ;check /etc/services changes
|
|
|
|
(persistent? #t))))
|
|
|
|
|
|
|
|
(define %nscd-default-configuration
|
|
|
|
;; Default nscd configuration.
|
|
|
|
(nscd-configuration))
|
|
|
|
|
|
|
|
(define (nscd.conf-file config)
|
|
|
|
"Return the @file{nscd.conf} configuration file for @var{config}, an
|
|
|
|
@code{<nscd-configuration>} object."
|
|
|
|
(define cache->config
|
|
|
|
(match-lambda
|
|
|
|
(($ <nscd-cache> (= symbol->string database)
|
|
|
|
positive-ttl negative-ttl size check-files?
|
|
|
|
persistent? shared? max-size propagate?)
|
|
|
|
(string-append "\nenable-cache\t" database "\tyes\n"
|
|
|
|
|
|
|
|
"positive-time-to-live\t" database "\t"
|
|
|
|
(number->string positive-ttl) "\n"
|
|
|
|
"negative-time-to-live\t" database "\t"
|
|
|
|
(number->string negative-ttl) "\n"
|
|
|
|
"suggested-size\t" database "\t"
|
|
|
|
(number->string size) "\n"
|
|
|
|
"check-files\t" database "\t"
|
|
|
|
(if check-files? "yes\n" "no\n")
|
|
|
|
"persistent\t" database "\t"
|
|
|
|
(if persistent? "yes\n" "no\n")
|
|
|
|
"shared\t" database "\t"
|
|
|
|
(if shared? "yes\n" "no\n")
|
|
|
|
"max-db-size\t" database "\t"
|
|
|
|
(number->string max-size) "\n"
|
|
|
|
"auto-propagate\t" database "\t"
|
|
|
|
(if propagate? "yes\n" "no\n")))))
|
|
|
|
|
|
|
|
(match config
|
|
|
|
(($ <nscd-configuration> log-file debug-level caches)
|
|
|
|
(text-file "nscd.conf"
|
|
|
|
(string-append "\
|
|
|
|
# Configuration of libc's name service cache daemon (nscd).\n\n"
|
|
|
|
(if log-file
|
|
|
|
(string-append "logfile\t" log-file)
|
|
|
|
"")
|
|
|
|
"\n"
|
|
|
|
(if debug-level
|
|
|
|
(string-append "debug-level\t"
|
|
|
|
(number->string debug-level))
|
|
|
|
"")
|
|
|
|
"\n"
|
|
|
|
(string-concatenate
|
|
|
|
(map cache->config caches)))))))
|
|
|
|
|
|
|
|
(define* (nscd-service #:optional (config %nscd-default-configuration)
|
2015-02-04 22:42:38 +01:00
|
|
|
#:key (glibc (canonical-package glibc))
|
|
|
|
(name-services '()))
|
2014-12-14 16:29:24 +01:00
|
|
|
"Return a service that runs libc's name service cache daemon (nscd) with the
|
2015-02-04 22:42:38 +01:00
|
|
|
given @var{config}---an @code{<nscd-configuration>} object. Optionally,
|
|
|
|
@code{#:name-services} is a list of packages that provide name service switch
|
|
|
|
(NSS) modules needed by nscd."
|
2014-12-14 16:29:24 +01:00
|
|
|
(mlet %store-monad ((nscd.conf (nscd.conf-file config)))
|
2014-02-19 20:58:24 +01:00
|
|
|
(return (service
|
|
|
|
(documentation "Run libc's name service cache daemon (nscd).")
|
|
|
|
(provision '(nscd))
|
2014-05-08 23:41:40 +02:00
|
|
|
(requirement '(user-processes))
|
2014-05-24 18:09:11 +02:00
|
|
|
|
|
|
|
(activate #~(begin
|
|
|
|
(use-modules (guix build utils))
|
2015-02-25 18:02:13 +01:00
|
|
|
(mkdir-p "/var/run/nscd")
|
|
|
|
(mkdir-p "/var/db/nscd"))) ;for the persistent cache
|
2014-05-24 18:09:11 +02:00
|
|
|
|
2014-07-07 23:58:02 +02:00
|
|
|
(start #~(make-forkexec-constructor
|
|
|
|
(list (string-append #$glibc "/sbin/nscd")
|
2015-02-04 22:42:38 +01:00
|
|
|
"-f" #$nscd.conf "--foreground")
|
|
|
|
|
|
|
|
#:environment-variables
|
|
|
|
(list (string-append "LD_LIBRARY_PATH="
|
|
|
|
(string-join
|
|
|
|
(map (lambda (dir)
|
|
|
|
(string-append dir "/lib"))
|
|
|
|
(list #$@name-services))
|
|
|
|
":")))))
|
2014-04-28 23:07:08 +02:00
|
|
|
(stop #~(make-kill-destructor))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
2014-04-28 23:07:08 +02:00
|
|
|
(respawn? #f)))))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
2015-03-28 13:42:23 +01:00
|
|
|
(define* (syslog-service #:key config-file)
|
|
|
|
"Return a service that runs @code{syslogd}.
|
|
|
|
If configuration file name @var{config-file} is not specified, use some
|
|
|
|
reasonable default settings."
|
2014-02-19 20:58:24 +01:00
|
|
|
|
|
|
|
;; Snippet adapted from the GNU inetutils manual.
|
|
|
|
(define contents "
|
2014-06-01 23:51:59 +02:00
|
|
|
# Log all error messages, authentication messages of
|
2014-02-19 20:58:24 +01:00
|
|
|
# level notice or higher and anything of level err or
|
|
|
|
# higher to the console.
|
|
|
|
# Don't log private authentication messages!
|
2014-07-16 22:40:14 +02:00
|
|
|
*.alert;auth.notice;authpriv.none /dev/console
|
2014-02-19 20:58:24 +01:00
|
|
|
|
|
|
|
# Log anything (except mail) of level info or higher.
|
|
|
|
# Don't log private authentication messages!
|
|
|
|
*.info;mail.none;authpriv.none /var/log/messages
|
|
|
|
|
|
|
|
# Same, in a different place.
|
|
|
|
*.info;mail.none;authpriv.none /dev/tty12
|
|
|
|
|
|
|
|
# The authpriv file has restricted access.
|
|
|
|
authpriv.* /var/log/secure
|
|
|
|
|
|
|
|
# Log all the mail messages in one place.
|
|
|
|
mail.* /var/log/maillog
|
|
|
|
")
|
|
|
|
|
|
|
|
(mlet %store-monad
|
2014-04-28 23:07:08 +02:00
|
|
|
((syslog.conf (text-file "syslog.conf" contents)))
|
2014-02-19 20:58:24 +01:00
|
|
|
(return
|
|
|
|
(service
|
|
|
|
(documentation "Run the syslog daemon (syslogd).")
|
|
|
|
(provision '(syslogd))
|
2014-05-08 23:41:40 +02:00
|
|
|
(requirement '(user-processes))
|
2014-04-28 23:07:08 +02:00
|
|
|
(start
|
2014-07-07 23:58:02 +02:00
|
|
|
#~(make-forkexec-constructor
|
|
|
|
(list (string-append #$inetutils "/libexec/syslogd")
|
2015-03-28 13:42:23 +01:00
|
|
|
"--no-detach" "--rcfile" #$(or config-file syslog.conf))))
|
2014-04-28 23:07:08 +02:00
|
|
|
(stop #~(make-kill-destructor))))))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
|
|
|
(define* (guix-build-accounts count #:key
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 22:41:01 +02:00
|
|
|
(group "guixbuild")
|
2014-02-19 20:58:24 +01:00
|
|
|
(first-uid 30001)
|
|
|
|
(shadow shadow))
|
|
|
|
"Return a list of COUNT user accounts for Guix build users, with UIDs
|
|
|
|
starting at FIRST-UID, and under GID."
|
2015-03-17 22:25:03 +01:00
|
|
|
(unfold (cut > <> count)
|
|
|
|
(lambda (n)
|
|
|
|
(user-account
|
|
|
|
(name (format #f "guixbuilder~2,'0d" n))
|
|
|
|
(system? #t)
|
|
|
|
(uid (+ first-uid n -1))
|
|
|
|
(group group)
|
|
|
|
|
|
|
|
;; guix-daemon expects GROUP to be listed as a
|
|
|
|
;; supplementary group too:
|
|
|
|
;; <http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html>.
|
|
|
|
(supplementary-groups (list group "kvm"))
|
|
|
|
|
|
|
|
(comment (format #f "Guix Build User ~2d" n))
|
|
|
|
(home-directory "/var/empty")
|
|
|
|
(shell #~(string-append #$shadow "/sbin/nologin"))))
|
|
|
|
1+
|
|
|
|
1))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
2014-06-04 16:07:09 +02:00
|
|
|
(define (hydra-key-authorization guix)
|
|
|
|
"Return a gexp with code to register the hydra.gnu.org public key with
|
|
|
|
GUIX."
|
|
|
|
#~(unless (file-exists? "/etc/guix/acl")
|
|
|
|
(let ((pid (primitive-fork)))
|
|
|
|
(case pid
|
|
|
|
((0)
|
|
|
|
(let* ((key (string-append #$guix
|
|
|
|
"/share/guix/hydra.gnu.org.pub"))
|
|
|
|
(port (open-file key "r0b")))
|
|
|
|
(format #t "registering public key '~a'...~%" key)
|
|
|
|
(close-port (current-input-port))
|
|
|
|
(dup port 0)
|
|
|
|
(execl (string-append #$guix "/bin/guix")
|
|
|
|
"guix" "archive" "--authorize")
|
|
|
|
(exit 1)))
|
|
|
|
(else
|
|
|
|
(let ((status (cdr (waitpid pid))))
|
|
|
|
(unless (zero? status)
|
|
|
|
(format (current-error-port) "warning: \
|
|
|
|
failed to register hydra.gnu.org public key: ~a~%" status))))))))
|
|
|
|
|
2014-02-19 20:58:24 +01:00
|
|
|
(define* (guix-service #:key (guix guix) (builder-group "guixbuild")
|
2015-01-23 18:52:56 +01:00
|
|
|
(build-accounts 10) (authorize-hydra-key? #t)
|
2014-07-14 15:51:22 +02:00
|
|
|
(use-substitutes? #t)
|
2015-03-19 23:15:33 +01:00
|
|
|
(extra-options '())
|
|
|
|
(lsof lsof) (lsh lsh))
|
2014-07-11 22:57:02 +02:00
|
|
|
"Return a service that runs the build daemon from @var{guix}, and has
|
|
|
|
@var{build-accounts} user accounts available under @var{builder-group}.
|
2014-06-04 16:07:09 +02:00
|
|
|
|
2014-07-11 22:57:02 +02:00
|
|
|
When @var{authorize-hydra-key?} is true, the @code{hydra.gnu.org} public key
|
|
|
|
provided by @var{guix} is authorized upon activation, meaning that substitutes
|
2014-07-14 15:51:22 +02:00
|
|
|
from @code{hydra.gnu.org} are used by default.
|
|
|
|
|
|
|
|
If @var{use-substitutes?} is false, the daemon is run with
|
|
|
|
@option{--no-substitutes} (@pxref{Invoking guix-daemon,
|
|
|
|
@option{--no-substitutes}}).
|
|
|
|
|
|
|
|
Finally, @var{extra-options} is a list of additional command-line options
|
|
|
|
passed to @command{guix-daemon}."
|
2014-06-04 22:19:30 +02:00
|
|
|
(define activate
|
2014-06-06 00:09:12 +02:00
|
|
|
;; Assume that the store has BUILDER-GROUP as its group. We could
|
|
|
|
;; otherwise call 'chown' here, but the problem is that on a COW unionfs,
|
|
|
|
;; chown leads to an entire copy of the tree, which is a bad idea.
|
2014-06-04 22:19:30 +02:00
|
|
|
|
2014-06-06 00:09:12 +02:00
|
|
|
;; Optionally authorize hydra.gnu.org's key.
|
|
|
|
(and authorize-hydra-key?
|
|
|
|
(hydra-key-authorization guix)))
|
2014-06-04 22:19:30 +02:00
|
|
|
|
2015-03-17 22:25:03 +01:00
|
|
|
(with-monad %store-monad
|
2014-02-19 20:58:24 +01:00
|
|
|
(return (service
|
2015-03-25 19:48:28 +01:00
|
|
|
(documentation "Run the Guix daemon.")
|
2014-02-19 20:58:24 +01:00
|
|
|
(provision '(guix-daemon))
|
2014-05-08 23:41:40 +02:00
|
|
|
(requirement '(user-processes))
|
2014-04-28 23:07:08 +02:00
|
|
|
(start
|
2014-07-07 23:58:02 +02:00
|
|
|
#~(make-forkexec-constructor
|
|
|
|
(list (string-append #$guix "/bin/guix-daemon")
|
2014-07-14 15:51:22 +02:00
|
|
|
"--build-users-group" #$builder-group
|
|
|
|
#$@(if use-substitutes?
|
|
|
|
'()
|
|
|
|
'("--no-substitutes"))
|
2015-03-19 23:15:33 +01:00
|
|
|
#$@extra-options)
|
|
|
|
|
|
|
|
;; Add 'lsof' (for the GC) and 'lsh' (for offloading) to the
|
|
|
|
;; daemon's $PATH.
|
|
|
|
#:environment-variables
|
|
|
|
(list (string-append "PATH=" #$lsof "/bin:"
|
|
|
|
#$lsh "/bin"))))
|
2014-04-28 23:07:08 +02:00
|
|
|
(stop #~(make-kill-destructor))
|
2015-03-17 22:25:03 +01:00
|
|
|
(user-accounts (guix-build-accounts build-accounts
|
|
|
|
#:group builder-group))
|
2014-02-19 20:58:24 +01:00
|
|
|
(user-groups (list (user-group
|
|
|
|
(name builder-group)
|
2014-07-25 00:15:46 +02:00
|
|
|
(system? #t)
|
2014-06-06 00:09:12 +02:00
|
|
|
|
|
|
|
;; Use a fixed GID so that we can create the
|
|
|
|
;; store with the right owner.
|
|
|
|
(id 30000))))
|
2014-06-04 22:19:30 +02:00
|
|
|
(activate activate)))))
|
2014-02-19 20:58:24 +01:00
|
|
|
|
2014-09-11 22:13:37 +02:00
|
|
|
(define (udev-rules-union packages)
|
|
|
|
"Return the union of the @code{lib/udev/rules.d} directories found in each
|
|
|
|
item of @var{packages}."
|
|
|
|
(define build
|
|
|
|
#~(begin
|
|
|
|
(use-modules (guix build union)
|
|
|
|
(guix build utils)
|
|
|
|
(srfi srfi-1)
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
|
|
|
(define %standard-locations
|
|
|
|
'("/lib/udev/rules.d" "/libexec/udev/rules.d"))
|
|
|
|
|
|
|
|
(define (rules-sub-directory directory)
|
|
|
|
;; Return the sub-directory of DIRECTORY containing udev rules, or
|
|
|
|
;; #f if none was found.
|
|
|
|
(find directory-exists?
|
|
|
|
(map (cut string-append directory <>) %standard-locations)))
|
|
|
|
|
|
|
|
(mkdir-p (string-append #$output "/lib/udev"))
|
|
|
|
(union-build (string-append #$output "/lib/udev/rules.d")
|
|
|
|
(filter-map rules-sub-directory '#$packages))))
|
|
|
|
|
|
|
|
(gexp->derivation "udev-rules" build
|
|
|
|
#:modules '((guix build union)
|
|
|
|
(guix build utils))
|
|
|
|
#:local-build? #t))
|
|
|
|
|
2014-09-18 23:23:46 +02:00
|
|
|
(define* (kvm-udev-rule)
|
|
|
|
"Return a directory with a udev rule that changes the group of
|
|
|
|
@file{/dev/kvm} to \"kvm\" and makes it #o660."
|
|
|
|
;; Apparently QEMU-KVM used to ship this rule, but now we have to add it by
|
|
|
|
;; ourselves.
|
|
|
|
(gexp->derivation "kvm-udev-rules"
|
|
|
|
#~(begin
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
|
|
(define rules.d
|
|
|
|
(string-append #$output "/lib/udev/rules.d"))
|
|
|
|
|
|
|
|
(mkdir-p rules.d)
|
|
|
|
(call-with-output-file
|
|
|
|
(string-append rules.d "/90-kvm.rules")
|
|
|
|
(lambda (port)
|
2014-11-08 15:09:43 +01:00
|
|
|
;; FIXME: As a workaround for
|
|
|
|
;; <http://bugs.gnu.org/18994>, make /dev/kvm 666
|
|
|
|
;; instead of 660.
|
2014-09-18 23:23:46 +02:00
|
|
|
(display "\
|
2014-11-08 15:09:43 +01:00
|
|
|
KERNEL==\"kvm\", GROUP=\"kvm\", MODE=\"0666\"\n" port))))
|
2014-09-18 23:23:46 +02:00
|
|
|
#:modules '((guix build utils))))
|
|
|
|
|
2014-09-13 10:54:47 +02:00
|
|
|
(define* (udev-service #:key (udev eudev) (rules '()))
|
2014-09-11 22:13:37 +02:00
|
|
|
"Run @var{udev}, which populates the @file{/dev} directory dynamically. Get
|
|
|
|
extra rules from the packages listed in @var{rules}."
|
2014-09-18 23:23:46 +02:00
|
|
|
(mlet* %store-monad ((kvm (kvm-udev-rule))
|
|
|
|
(rules (udev-rules-union (cons* udev kvm rules)))
|
2014-09-11 22:13:37 +02:00
|
|
|
(udev.conf (text-file* "udev.conf"
|
|
|
|
"udev_rules=\"" rules
|
|
|
|
"/lib/udev/rules.d\"\n")))
|
2014-06-23 15:35:03 +02:00
|
|
|
(return (service
|
|
|
|
(provision '(udev))
|
2014-07-22 16:57:57 +02:00
|
|
|
|
|
|
|
;; Udev needs /dev to be a 'devtmpfs' mount so that new device
|
|
|
|
;; nodes can be added: see
|
|
|
|
;; <http://www.linuxfromscratch.org/lfs/view/development/chapter07/udev.html>.
|
2014-07-22 23:13:53 +02:00
|
|
|
(requirement '(root-file-system))
|
2014-07-22 16:57:57 +02:00
|
|
|
|
|
|
|
(documentation "Populate the /dev directory, dynamically.")
|
2014-06-23 15:35:03 +02:00
|
|
|
(start #~(lambda ()
|
2014-09-13 10:53:47 +02:00
|
|
|
(define find
|
|
|
|
(@ (srfi srfi-1) find))
|
|
|
|
|
2014-07-07 23:58:02 +02:00
|
|
|
(define udevd
|
2014-09-13 10:53:47 +02:00
|
|
|
;; Choose the right 'udevd'.
|
|
|
|
(find file-exists?
|
|
|
|
(map (lambda (suffix)
|
|
|
|
(string-append #$udev suffix))
|
|
|
|
'("/libexec/udev/udevd" ;udev
|
|
|
|
"/sbin/udevd")))) ;eudev
|
2014-07-07 23:58:02 +02:00
|
|
|
|
2014-07-10 00:20:57 +02:00
|
|
|
(define (wait-for-udevd)
|
|
|
|
;; Wait until someone's listening on udevd's control
|
|
|
|
;; socket.
|
|
|
|
(let ((sock (socket AF_UNIX SOCK_SEQPACKET 0)))
|
|
|
|
(let try ()
|
|
|
|
(catch 'system-error
|
|
|
|
(lambda ()
|
|
|
|
(connect sock PF_UNIX "/run/udev/control")
|
|
|
|
(close-port sock))
|
|
|
|
(lambda args
|
|
|
|
(format #t "waiting for udevd...~%")
|
|
|
|
(usleep 500000)
|
|
|
|
(try))))))
|
|
|
|
|
2014-06-29 22:06:29 +02:00
|
|
|
;; Allow udev to find the modules.
|
|
|
|
(setenv "LINUX_MODULE_DIRECTORY"
|
|
|
|
"/run/booted-system/kernel/lib/modules")
|
|
|
|
|
2014-09-13 10:53:47 +02:00
|
|
|
;; The first one is for udev, the second one for eudev.
|
2014-09-11 22:13:37 +02:00
|
|
|
(setenv "UDEV_CONFIG_FILE" #$udev.conf)
|
2014-09-19 11:58:49 +02:00
|
|
|
(setenv "EUDEV_RULES_DIRECTORY"
|
|
|
|
(string-append #$rules "/lib/udev/rules.d"))
|
2014-09-11 22:13:37 +02:00
|
|
|
|
2014-06-23 15:35:03 +02:00
|
|
|
(let ((pid (primitive-fork)))
|
|
|
|
(case pid
|
|
|
|
((0)
|
2014-07-07 23:58:02 +02:00
|
|
|
(exec-command (list udevd)))
|
2014-06-23 15:35:03 +02:00
|
|
|
(else
|
2014-07-10 00:20:57 +02:00
|
|
|
;; Wait until udevd is up and running. This
|
|
|
|
;; appears to be needed so that the events
|
|
|
|
;; triggered below are actually handled.
|
|
|
|
(wait-for-udevd)
|
|
|
|
|
|
|
|
;; Trigger device node creation.
|
|
|
|
(system* (string-append #$udev "/bin/udevadm")
|
|
|
|
"trigger" "--action=add")
|
|
|
|
|
2014-06-29 22:06:29 +02:00
|
|
|
;; Wait for things to settle down.
|
|
|
|
(system* (string-append #$udev "/bin/udevadm")
|
|
|
|
"settle")
|
2014-06-23 15:35:03 +02:00
|
|
|
pid)))))
|
2014-09-17 08:59:13 +02:00
|
|
|
(stop #~(make-kill-destructor))
|
|
|
|
|
|
|
|
;; When halting the system, 'udev' is actually killed by
|
|
|
|
;; 'user-processes', i.e., before its own 'stop' method was
|
|
|
|
;; called. Thus, make sure it is not respawned.
|
|
|
|
(respawn? #f)))))
|
2014-06-23 15:35:03 +02:00
|
|
|
|
2014-09-18 19:18:39 +02:00
|
|
|
(define (device-mapping-service target open close)
|
2014-09-11 23:39:15 +02:00
|
|
|
"Return a service that maps device @var{target}, a string such as
|
2014-09-18 19:18:39 +02:00
|
|
|
@code{\"home\"} (meaning @code{/dev/mapper/home}). Evaluate @var{open}, a
|
|
|
|
gexp, to open it, and evaluate @var{close} to close it."
|
2014-09-11 23:39:15 +02:00
|
|
|
(with-monad %store-monad
|
|
|
|
(return (service
|
|
|
|
(provision (list (symbol-append 'device-mapping-
|
|
|
|
(string->symbol target))))
|
|
|
|
(requirement '(udev))
|
|
|
|
(documentation "Map a device node using Linux's device mapper.")
|
2014-09-18 19:18:39 +02:00
|
|
|
(start #~(lambda () #$open))
|
|
|
|
(stop #~(lambda _ (not #$close)))
|
2014-09-11 23:39:15 +02:00
|
|
|
(respawn? #f)))))
|
|
|
|
|
2014-09-18 22:51:48 +02:00
|
|
|
(define (swap-service device)
|
|
|
|
"Return a service that uses @var{device} as a swap device."
|
|
|
|
(define requirement
|
|
|
|
(if (string-prefix? "/dev/mapper/" device)
|
|
|
|
(list (symbol-append 'device-mapping-
|
|
|
|
(string->symbol (basename device))))
|
|
|
|
'()))
|
|
|
|
|
|
|
|
(with-monad %store-monad
|
|
|
|
(return (service
|
|
|
|
(provision (list (symbol-append 'swap- (string->symbol device))))
|
|
|
|
(requirement `(udev ,@requirement))
|
|
|
|
(documentation "Enable the given swap device.")
|
|
|
|
(start #~(lambda ()
|
|
|
|
(swapon #$device)
|
|
|
|
#t))
|
|
|
|
(stop #~(lambda _
|
|
|
|
(swapoff #$device)
|
|
|
|
#f))
|
|
|
|
(respawn? #f)))))
|
|
|
|
|
2014-02-19 21:08:28 +01:00
|
|
|
(define %base-services
|
|
|
|
;; Convenience variable holding the basic services.
|
|
|
|
(let ((motd (text-file "motd" "
|
|
|
|
This is the GNU operating system, welcome!\n\n")))
|
2014-07-17 15:53:01 +02:00
|
|
|
(list (console-font-service "tty1")
|
|
|
|
(console-font-service "tty2")
|
|
|
|
(console-font-service "tty3")
|
|
|
|
(console-font-service "tty4")
|
|
|
|
(console-font-service "tty5")
|
|
|
|
(console-font-service "tty6")
|
|
|
|
|
|
|
|
(mingetty-service "tty1" #:motd motd)
|
2014-02-19 21:08:28 +01:00
|
|
|
(mingetty-service "tty2" #:motd motd)
|
|
|
|
(mingetty-service "tty3" #:motd motd)
|
|
|
|
(mingetty-service "tty4" #:motd motd)
|
|
|
|
(mingetty-service "tty5" #:motd motd)
|
|
|
|
(mingetty-service "tty6" #:motd motd)
|
2014-07-12 22:46:44 +02:00
|
|
|
(static-networking-service "lo" "127.0.0.1"
|
|
|
|
#:provision '(loopback))
|
2014-02-19 21:08:28 +01:00
|
|
|
(syslog-service)
|
|
|
|
(guix-service)
|
2014-06-23 15:35:03 +02:00
|
|
|
(nscd-service)
|
2014-09-11 22:13:37 +02:00
|
|
|
|
2014-09-13 10:50:26 +02:00
|
|
|
;; The LVM2 rules are needed as soon as LVM2 or the device-mapper is
|
|
|
|
;; used, so enable them by default. The FUSE and ALSA rules are
|
|
|
|
;; less critical, but handy.
|
|
|
|
(udev-service #:rules (list lvm2 fuse alsa-utils)))))
|
2014-02-19 21:08:28 +01:00
|
|
|
|
2014-02-19 20:58:24 +01:00
|
|
|
;;; base.scm ends here
|