gexp: Move the package and origin compilers to (guix packages).
[jackhill/guix/guix.git] / gnu / services / base.scm
CommitLineData
db4fdc04 1;;; GNU Guix --- Functional package management for GNU
4a4dd5d8 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
db4fdc04
LC
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu services base)
e87f0591 20 #:use-module (guix store)
db4fdc04 21 #:use-module (gnu services)
4a3b3b07 22 #:use-module (gnu services networking)
db4fdc04
LC
23 #:use-module (gnu system shadow) ; 'user-account', etc.
24 #:use-module (gnu system linux) ; 'pam-service', etc.
25 #:use-module (gnu packages admin)
151a2c07 26 #:use-module ((gnu packages linux)
8a7330fd 27 #:select (eudev kbd e2fsprogs lvm2 fuse alsa-utils))
db4fdc04 28 #:use-module ((gnu packages base)
bdb36958 29 #:select (canonical-package glibc))
db4fdc04 30 #:use-module (gnu packages package-management)
e2f4b305 31 #:use-module ((gnu build file-systems)
2c071ce9 32 #:select (mount-flags->bit-mask))
b5f4e686 33 #:use-module (guix gexp)
db4fdc04 34 #:use-module (guix monads)
6454b333 35 #:use-module (guix records)
db4fdc04
LC
36 #:use-module (srfi srfi-1)
37 #:use-module (srfi srfi-26)
6454b333 38 #:use-module (ice-9 match)
db4fdc04 39 #:use-module (ice-9 format)
a00dd9fb 40 #:export (root-file-system-service
023f391c 41 file-system-service
d6e2a622 42 user-unmount-service
5dae0186 43 device-mapping-service
2a13d05e 44 swap-service
a00dd9fb
LC
45 user-processes-service
46 host-name-service
62ca0fdf 47 console-font-service
151a2c07 48 udev-service
db4fdc04 49 mingetty-service
6454b333
LC
50
51 %nscd-default-caches
52 %nscd-default-configuration
53
54 nscd-configuration
55 nscd-configuration?
56
57 nscd-cache
58 nscd-cache?
59
db4fdc04
LC
60 nscd-service
61 syslog-service
8b198abe
LC
62 guix-service
63 %base-services))
db4fdc04
LC
64
65;;; Commentary:
66;;;
67;;; Base system services---i.e., services that 99% of the users will want to
68;;; use.
69;;;
70;;; Code:
71
a00dd9fb
LC
72(define (root-file-system-service)
73 "Return a service whose sole purpose is to re-mount read-only the root file
74system upon shutdown (aka. cleanly \"umounting\" root.)
75
76This service must be the root of the service dependency graph so that its
77'stop' action is invoked when dmd is the only process left."
a00dd9fb
LC
78 (with-monad %store-monad
79 (return
80 (service
81 (documentation "Take care of the root file system.")
82 (provision '(root-file-system))
83 (start #~(const #t))
84 (stop #~(lambda _
85 ;; Return #f if successfully stopped.
23ed63a1 86 (sync)
a00dd9fb
LC
87
88 (call-with-blocked-asyncs
89 (lambda ()
90 (let ((null (%make-void-port "w")))
91 ;; Close 'dmd.log'.
92 (display "closing log\n")
93 ;; XXX: Ideally we'd use 'stop-logging', but that one
94 ;; doesn't actually close the port as of dmd 0.1.
95 (close-port (@@ (dmd comm) log-output-port))
96 (set! (@@ (dmd comm) log-output-port) null)
97
98 ;; Redirect the default output ports..
99 (set-current-output-port null)
100 (set-current-error-port null)
101
102 ;; Close /dev/console.
103 (for-each close-fdes '(0 1 2))
104
23ed63a1 105 ;; At this point, there are no open files left, so the
a00dd9fb 106 ;; root file system can be re-mounted read-only.
23ed63a1
LC
107 (mount #f "/" #f
108 (logior MS_REMOUNT MS_RDONLY)
109 #:update-mtab? #f)
110
111 #f)))))
a00dd9fb
LC
112 (respawn? #f)))))
113
023f391c 114(define* (file-system-service device target type
2c071ce9 115 #:key (flags '()) (check? #t)
5dae0186
LC
116 create-mount-point? options (title 'any)
117 (requirements '()))
023f391c 118 "Return a service that mounts DEVICE on TARGET as a file system TYPE with
d4c87617
LC
119OPTIONS. TITLE is a symbol specifying what kind of name DEVICE is: 'label for
120a partition label, 'device for a device file name, or 'any. When CHECK? is
4e469051 121true, check the file system before mounting it. When CREATE-MOUNT-POINT? is
2c071ce9 122true, create TARGET if it does not exist yet. FLAGS is a list of symbols,
5dae0186
LC
123such as 'read-only' etc. Optionally, REQUIREMENTS may be a list of service
124names such as device-mapping services."
023f391c
LC
125 (with-monad %store-monad
126 (return
127 (service
128 (provision (list (symbol-append 'file-system- (string->symbol target))))
5dae0186 129 (requirement `(root-file-system ,@requirements))
023f391c
LC
130 (documentation "Check, mount, and unmount the given file system.")
131 (start #~(lambda args
d4c87617 132 (let ((device (canonicalize-device-spec #$device '#$title)))
4e469051
LC
133 #$(if create-mount-point?
134 #~(mkdir-p #$target)
135 #~#t)
d4c87617 136 #$(if check?
1b09031f
LC
137 #~(begin
138 ;; Make sure fsck.ext2 & co. can be found.
139 (setenv "PATH"
140 (string-append
141 #$e2fsprogs "/sbin:"
142 "/run/current-system/profile/sbin:"
143 (getenv "PATH")))
144 (check-file-system device #$type))
d4c87617 145 #~#t)
2c071ce9
LC
146 (mount device #$target #$type
147 #$(mount-flags->bit-mask flags)
148 #$options))
023f391c
LC
149 #t))
150 (stop #~(lambda args
151 ;; Normally there are no processes left at this point, so
152 ;; TARGET can be safely unmounted.
6a3f4c74
LC
153
154 ;; Make sure PID 1 doesn't keep TARGET busy.
155 (chdir "/")
156
023f391c
LC
157 (umount #$target)
158 #f))))))
159
d6e2a622
LC
160(define (user-unmount-service known-mount-points)
161 "Return a service whose sole purpose is to unmount file systems not listed
162in KNOWN-MOUNT-POINTS when it is stopped."
163 (with-monad %store-monad
164 (return
165 (service
166 (documentation "Unmount manually-mounted file systems.")
167 (provision '(user-unmount))
168 (start #~(const #t))
169 (stop #~(lambda args
170 (define (known? mount-point)
171 (member mount-point
172 (cons* "/proc" "/sys"
173 '#$known-mount-points)))
174
48bd76e0
LC
175 ;; Make sure we don't keep the user's mount points busy.
176 (chdir "/")
177
d6e2a622
LC
178 (for-each (lambda (mount-point)
179 (format #t "unmounting '~a'...~%" mount-point)
180 (catch 'system-error
181 (lambda ()
182 (umount mount-point))
183 (lambda args
184 (let ((errno (system-error-errno args)))
185 (format #t "failed to unmount '~a': ~a~%"
186 mount-point (strerror errno))))))
187 (filter (negate known?) (mount-points)))
188 #f))))))
189
7d57cfd3
LC
190(define %do-not-kill-file
191 ;; Name of the file listing PIDs of processes that must survive when halting
192 ;; the system. Typical example is user-space file systems.
193 "/etc/dmd/do-not-kill")
194
7bed4df4 195(define* (user-processes-service requirements #:key (grace-delay 4))
a00dd9fb
LC
196 "Return the service that is responsible for terminating all the processes so
197that the root file system can be re-mounted read-only, just before
198rebooting/halting. Processes still running GRACE-DELAY seconds after SIGTERM
199has been sent are terminated with SIGKILL.
200
023f391c
LC
201The returned service will depend on 'root-file-system' and on all the services
202listed in REQUIREMENTS.
203
a00dd9fb
LC
204All the services that spawn processes must depend on this one so that they are
205stopped before 'kill' is called."
206 (with-monad %store-monad
207 (return (service
208 (documentation "When stopped, terminate all user processes.")
209 (provision '(user-processes))
023f391c 210 (requirement (cons 'root-file-system requirements))
a00dd9fb
LC
211 (start #~(const #t))
212 (stop #~(lambda _
7d57cfd3
LC
213 (define (kill-except omit signal)
214 ;; Kill all the processes with SIGNAL except those
215 ;; listed in OMIT and the current process.
216 (let ((omit (cons (getpid) omit)))
217 (for-each (lambda (pid)
218 (unless (memv pid omit)
219 (false-if-exception
220 (kill pid signal))))
221 (processes))))
222
223 (define omitted-pids
224 ;; List of PIDs that must not be killed.
225 (if (file-exists? #$%do-not-kill-file)
226 (map string->number
227 (call-with-input-file #$%do-not-kill-file
228 (compose string-tokenize
229 (@ (ice-9 rdelim) read-string))))
230 '()))
231
7bed4df4
LC
232 (define (now)
233 (car (gettimeofday)))
234
235 (define (sleep* n)
236 ;; Really sleep N seconds.
237 ;; Work around <http://bugs.gnu.org/19581>.
238 (define start (now))
239 (let loop ((elapsed 0))
240 (when (> n elapsed)
241 (sleep (- n elapsed))
242 (loop (- (now) start)))))
243
d656c14e
LC
244 (define lset= (@ (srfi srfi-1) lset=))
245
4a4dd5d8 246 (display "sending all processes the TERM signal\n")
a00dd9fb 247
7d57cfd3
LC
248 (if (null? omitted-pids)
249 (begin
250 ;; Easy: terminate all of them.
251 (kill -1 SIGTERM)
7bed4df4 252 (sleep* #$grace-delay)
7d57cfd3
LC
253 (kill -1 SIGKILL))
254 (begin
255 ;; Kill them all except OMITTED-PIDS. XXX: We
256 ;; would like to (kill -1 SIGSTOP) to get a fixed
257 ;; list of processes, like 'killall5' does, but
258 ;; that seems unreliable.
259 (kill-except omitted-pids SIGTERM)
7bed4df4 260 (sleep* #$grace-delay)
7d57cfd3
LC
261 (kill-except omitted-pids SIGKILL)
262 (delete-file #$%do-not-kill-file)))
a00dd9fb 263
d656c14e
LC
264 (let wait ()
265 (let ((pids (processes)))
266 (unless (lset= = pids (cons 1 omitted-pids))
267 (format #t "waiting for process termination\
268 (processes left: ~s)~%"
269 pids)
7bed4df4 270 (sleep* 2)
d656c14e
LC
271 (wait))))
272
a00dd9fb
LC
273 (display "all processes have been terminated\n")
274 #f))
275 (respawn? #f)))))
276
db4fdc04 277(define (host-name-service name)
51da7ca0 278 "Return a service that sets the host name to @var{name}."
db4fdc04
LC
279 (with-monad %store-monad
280 (return (service
281 (documentation "Initialize the machine's host name.")
282 (provision '(host-name))
b5f4e686
LC
283 (start #~(lambda _
284 (sethostname #$name)))
db4fdc04
LC
285 (respawn? #f)))))
286
62ca0fdf
LC
287(define (unicode-start tty)
288 "Return a gexp to start Unicode support on @var{tty}."
289
290 ;; We have to run 'unicode_start' in a pipe so that when it invokes the
291 ;; 'tty' command, that command returns TTY.
292 #~(begin
293 (let ((pid (primitive-fork)))
294 (case pid
295 ((0)
296 (close-fdes 0)
297 (dup2 (open-fdes #$tty O_RDONLY) 0)
298 (close-fdes 1)
299 (dup2 (open-fdes #$tty O_WRONLY) 1)
300 (execl (string-append #$kbd "/bin/unicode_start")
301 "unicode_start"))
302 (else
303 (zero? (cdr (waitpid pid))))))))
304
305(define* (console-font-service tty #:optional (font "LatGrkCyr-8x16"))
306 "Return a service that sets up Unicode support in @var{tty} and loads
307@var{font} for that tty (fonts are per virtual console in Linux.)"
308 ;; Note: 'LatGrkCyr-8x16' has the advantage of providing three common
309 ;; scripts as well as glyphs for em dash, quotation marks, and other Unicode
310 ;; codepoints notably found in the UTF-8 manual.
311 (let ((device (string-append "/dev/" tty)))
312 (with-monad %store-monad
313 (return (service
314 (documentation "Load a Unicode console font.")
315 (provision (list (symbol-append 'console-font-
316 (string->symbol tty))))
317
318 ;; Start after mingetty has been started on TTY, otherwise the
319 ;; settings are ignored.
320 (requirement (list (symbol-append 'term-
321 (string->symbol tty))))
322
323 (start #~(lambda _
324 (and #$(unicode-start device)
325 (zero?
326 (system* (string-append #$kbd "/bin/setfont")
327 "-C" #$device #$font)))))
328 (stop #~(const #t))
329 (respawn? #f))))))
330
db4fdc04
LC
331(define* (mingetty-service tty
332 #:key
333 (motd (text-file "motd" "Welcome.\n"))
52322163
LC
334 auto-login
335 login-program
336 login-pause?
51da7ca0
LC
337
338 ;; Allow empty passwords by default so that
339 ;; first-time users can log in when the 'root'
340 ;; account has just been created.
db4fdc04 341 (allow-empty-passwords? #t))
52322163
LC
342 "Return a service to run mingetty on @var{tty}.
343
344When @var{allow-empty-passwords?} is true, allow empty log-in password. When
345@var{auto-login} is true, it must be a user name under which to log-in
346automatically. @var{login-pause?} can be set to @code{#t} in conjunction with
347@var{auto-login}, in which case the user will have to press a key before the
348login shell is launched.
349
350When true, @var{login-program} is a gexp or a monadic gexp denoting the name
351of the log-in program (the default is the @code{login} program from the Shadow
352tool suite.)
353
354@var{motd} is a monadic value containing a text file to use as
51da7ca0 355the ``message of the day''."
52322163
LC
356 (mlet %store-monad ((motd motd)
357 (login-program (cond ((gexp? login-program)
358 (return login-program))
359 ((not login-program)
360 (return #f))
361 (else
362 login-program))))
db4fdc04
LC
363 (return
364 (service
365 (documentation (string-append "Run mingetty on " tty "."))
366 (provision (list (symbol-append 'term- (string->symbol tty))))
367
368 ;; Since the login prompt shows the host name, wait for the 'host-name'
6acef681
LC
369 ;; service to be done. Also wait for udev essentially so that the tty
370 ;; text is not lost in the middle of kernel messages (XXX).
371 (requirement '(user-processes host-name udev))
db4fdc04 372
b5f4e686 373 (start #~(make-forkexec-constructor
1c6b445b
LC
374 (list (string-append #$mingetty "/sbin/mingetty")
375 "--noclear" #$tty
376 #$@(if auto-login
377 #~("--autologin" #$auto-login)
378 #~())
379 #$@(if login-program
380 #~("--loginprog" #$login-program)
381 #~())
382 #$@(if login-pause?
383 #~("--loginpause")
384 #~()))))
b5f4e686 385 (stop #~(make-kill-destructor))
db4fdc04
LC
386
387 (pam-services
388 ;; Let 'login' be known to PAM. All the mingetty services will have
389 ;; that PAM service, but that's fine because they're all identical and
390 ;; duplicates are removed.
391 (list (unix-pam-service "login"
392 #:allow-empty-passwords? allow-empty-passwords?
393 #:motd motd)))))))
394
6454b333
LC
395(define-record-type* <nscd-configuration> nscd-configuration
396 make-nscd-configuration
397 nscd-configuration?
398 (log-file nscd-configuration-log-file ;string
399 (default "/var/log/nscd.log"))
400 (debug-level nscd-debug-level ;integer
401 (default 0))
402 ;; TODO: See nscd.conf in glibc for other options to add.
403 (caches nscd-configuration-caches ;list of <nscd-cache>
404 (default %nscd-default-caches)))
405
406(define-record-type* <nscd-cache> nscd-cache make-nscd-cache
407 nscd-cache?
408 (database nscd-cache-database) ;symbol
409 (positive-time-to-live nscd-cache-positive-time-to-live) ;integer
410 (negative-time-to-live nscd-cache-negative-time-to-live
411 (default 20)) ;integer
412 (suggested-size nscd-cache-suggested-size ;integer ("default module
413 ;of hash table")
414 (default 211))
415 (check-files? nscd-cache-check-files? ;Boolean
416 (default #t))
417 (persistent? nscd-cache-persistent? ;Boolean
418 (default #t))
419 (shared? nscd-cache-shared? ;Boolean
420 (default #t))
421 (max-database-size nscd-cache-max-database-size ;integer
422 (default (* 32 (expt 2 20))))
423 (auto-propagate? nscd-cache-auto-propagate? ;Boolean
424 (default #t)))
425
426(define %nscd-default-caches
427 ;; Caches that we want to enable by default. Note that when providing an
428 ;; empty nscd.conf, all caches are disabled.
429 (list (nscd-cache (database 'hosts)
430
431 ;; Aggressively cache the host name cache to improve
432 ;; privacy and resilience.
433 (positive-time-to-live (* 3600 12))
434 (negative-time-to-live 20)
435 (persistent? #t))
436
437 (nscd-cache (database 'services)
438
439 ;; Services are unlikely to change, so we can be even more
440 ;; aggressive.
441 (positive-time-to-live (* 3600 24))
442 (negative-time-to-live 3600)
443 (check-files? #t) ;check /etc/services changes
444 (persistent? #t))))
445
446(define %nscd-default-configuration
447 ;; Default nscd configuration.
448 (nscd-configuration))
449
450(define (nscd.conf-file config)
451 "Return the @file{nscd.conf} configuration file for @var{config}, an
452@code{<nscd-configuration>} object."
453 (define cache->config
454 (match-lambda
455 (($ <nscd-cache> (= symbol->string database)
456 positive-ttl negative-ttl size check-files?
457 persistent? shared? max-size propagate?)
458 (string-append "\nenable-cache\t" database "\tyes\n"
459
460 "positive-time-to-live\t" database "\t"
461 (number->string positive-ttl) "\n"
462 "negative-time-to-live\t" database "\t"
463 (number->string negative-ttl) "\n"
464 "suggested-size\t" database "\t"
465 (number->string size) "\n"
466 "check-files\t" database "\t"
467 (if check-files? "yes\n" "no\n")
468 "persistent\t" database "\t"
469 (if persistent? "yes\n" "no\n")
470 "shared\t" database "\t"
471 (if shared? "yes\n" "no\n")
472 "max-db-size\t" database "\t"
473 (number->string max-size) "\n"
474 "auto-propagate\t" database "\t"
475 (if propagate? "yes\n" "no\n")))))
476
477 (match config
478 (($ <nscd-configuration> log-file debug-level caches)
479 (text-file "nscd.conf"
480 (string-append "\
481# Configuration of libc's name service cache daemon (nscd).\n\n"
482 (if log-file
483 (string-append "logfile\t" log-file)
484 "")
485 "\n"
486 (if debug-level
487 (string-append "debug-level\t"
488 (number->string debug-level))
489 "")
490 "\n"
491 (string-concatenate
492 (map cache->config caches)))))))
493
494(define* (nscd-service #:optional (config %nscd-default-configuration)
4aee6e60
LC
495 #:key (glibc (canonical-package glibc))
496 (name-services '()))
6454b333 497 "Return a service that runs libc's name service cache daemon (nscd) with the
4aee6e60
LC
498given @var{config}---an @code{<nscd-configuration>} object. Optionally,
499@code{#:name-services} is a list of packages that provide name service switch
500 (NSS) modules needed by nscd."
6454b333 501 (mlet %store-monad ((nscd.conf (nscd.conf-file config)))
db4fdc04
LC
502 (return (service
503 (documentation "Run libc's name service cache daemon (nscd).")
504 (provision '(nscd))
a00dd9fb 505 (requirement '(user-processes))
4b2615e1
LC
506
507 (activate #~(begin
508 (use-modules (guix build utils))
faf0f39b
LC
509 (mkdir-p "/var/run/nscd")
510 (mkdir-p "/var/db/nscd"))) ;for the persistent cache
4b2615e1 511
1c6b445b
LC
512 (start #~(make-forkexec-constructor
513 (list (string-append #$glibc "/sbin/nscd")
4aee6e60
LC
514 "-f" #$nscd.conf "--foreground")
515
516 #:environment-variables
517 (list (string-append "LD_LIBRARY_PATH="
518 (string-join
519 (map (lambda (dir)
520 (string-append dir "/lib"))
521 (list #$@name-services))
522 ":")))))
b5f4e686 523 (stop #~(make-kill-destructor))
db4fdc04 524
b5f4e686 525 (respawn? #f)))))
db4fdc04
LC
526
527(define (syslog-service)
51da7ca0 528 "Return a service that runs @code{syslogd} with reasonable default settings."
db4fdc04
LC
529
530 ;; Snippet adapted from the GNU inetutils manual.
531 (define contents "
1f3fc60d 532 # Log all error messages, authentication messages of
db4fdc04
LC
533 # level notice or higher and anything of level err or
534 # higher to the console.
535 # Don't log private authentication messages!
6a191274 536 *.alert;auth.notice;authpriv.none /dev/console
db4fdc04
LC
537
538 # Log anything (except mail) of level info or higher.
539 # Don't log private authentication messages!
540 *.info;mail.none;authpriv.none /var/log/messages
541
542 # Same, in a different place.
543 *.info;mail.none;authpriv.none /dev/tty12
544
545 # The authpriv file has restricted access.
546 authpriv.* /var/log/secure
547
548 # Log all the mail messages in one place.
549 mail.* /var/log/maillog
550")
551
552 (mlet %store-monad
b5f4e686 553 ((syslog.conf (text-file "syslog.conf" contents)))
db4fdc04
LC
554 (return
555 (service
556 (documentation "Run the syslog daemon (syslogd).")
557 (provision '(syslogd))
a00dd9fb 558 (requirement '(user-processes))
b5f4e686 559 (start
1c6b445b
LC
560 #~(make-forkexec-constructor
561 (list (string-append #$inetutils "/libexec/syslogd")
562 "--no-detach" "--rcfile" #$syslog.conf)))
b5f4e686 563 (stop #~(make-kill-destructor))))))
db4fdc04
LC
564
565(define* (guix-build-accounts count #:key
ab6a279a 566 (group "guixbuild")
db4fdc04 567 (first-uid 30001)
db4fdc04
LC
568 (shadow shadow))
569 "Return a list of COUNT user accounts for Guix build users, with UIDs
570starting at FIRST-UID, and under GID."
571 (with-monad %store-monad
572 (return (unfold (cut > <> count)
573 (lambda (n)
574 (user-account
575 (name (format #f "guixbuilder~2,'0d" n))
459dd9ea 576 (system? #t)
db4fdc04 577 (uid (+ first-uid n -1))
ab6a279a 578 (group group)
3d116a70
LC
579
580 ;; guix-daemon expects GROUP to be listed as a
581 ;; supplementary group too:
582 ;; <http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html>.
7f28bf9a 583 (supplementary-groups (list group "kvm"))
3d116a70 584
db4fdc04
LC
585 (comment (format #f "Guix Build User ~2d" n))
586 (home-directory "/var/empty")
b5f4e686 587 (shell #~(string-append #$shadow "/sbin/nologin"))))
db4fdc04
LC
588 1+
589 1))))
590
2c5c696c
LC
591(define (hydra-key-authorization guix)
592 "Return a gexp with code to register the hydra.gnu.org public key with
593GUIX."
594 #~(unless (file-exists? "/etc/guix/acl")
595 (let ((pid (primitive-fork)))
596 (case pid
597 ((0)
598 (let* ((key (string-append #$guix
599 "/share/guix/hydra.gnu.org.pub"))
600 (port (open-file key "r0b")))
601 (format #t "registering public key '~a'...~%" key)
602 (close-port (current-input-port))
2c5c696c
LC
603 (dup port 0)
604 (execl (string-append #$guix "/bin/guix")
605 "guix" "archive" "--authorize")
606 (exit 1)))
607 (else
608 (let ((status (cdr (waitpid pid))))
609 (unless (zero? status)
610 (format (current-error-port) "warning: \
611failed to register hydra.gnu.org public key: ~a~%" status))))))))
612
db4fdc04 613(define* (guix-service #:key (guix guix) (builder-group "guixbuild")
02bb6b45 614 (build-accounts 10) (authorize-hydra-key? #t)
c11a6eb1
LC
615 (use-substitutes? #t)
616 (extra-options '()))
51da7ca0
LC
617 "Return a service that runs the build daemon from @var{guix}, and has
618@var{build-accounts} user accounts available under @var{builder-group}.
2c5c696c 619
51da7ca0
LC
620When @var{authorize-hydra-key?} is true, the @code{hydra.gnu.org} public key
621provided by @var{guix} is authorized upon activation, meaning that substitutes
c11a6eb1
LC
622from @code{hydra.gnu.org} are used by default.
623
624If @var{use-substitutes?} is false, the daemon is run with
625@option{--no-substitutes} (@pxref{Invoking guix-daemon,
626@option{--no-substitutes}}).
627
628Finally, @var{extra-options} is a list of additional command-line options
629passed to @command{guix-daemon}."
185f6691 630 (define activate
e97c5be9
LC
631 ;; Assume that the store has BUILDER-GROUP as its group. We could
632 ;; otherwise call 'chown' here, but the problem is that on a COW unionfs,
633 ;; chown leads to an entire copy of the tree, which is a bad idea.
185f6691 634
e97c5be9
LC
635 ;; Optionally authorize hydra.gnu.org's key.
636 (and authorize-hydra-key?
637 (hydra-key-authorization guix)))
185f6691 638
b5f4e686 639 (mlet %store-monad ((accounts (guix-build-accounts build-accounts
ab6a279a 640 #:group builder-group)))
db4fdc04
LC
641 (return (service
642 (provision '(guix-daemon))
a00dd9fb 643 (requirement '(user-processes))
b5f4e686 644 (start
1c6b445b
LC
645 #~(make-forkexec-constructor
646 (list (string-append #$guix "/bin/guix-daemon")
c11a6eb1
LC
647 "--build-users-group" #$builder-group
648 #$@(if use-substitutes?
649 '()
650 '("--no-substitutes"))
651 #$@extra-options)))
b5f4e686 652 (stop #~(make-kill-destructor))
db4fdc04
LC
653 (user-accounts accounts)
654 (user-groups (list (user-group
655 (name builder-group)
41717509 656 (system? #t)
e97c5be9
LC
657
658 ;; Use a fixed GID so that we can create the
659 ;; store with the right owner.
660 (id 30000))))
185f6691 661 (activate activate)))))
db4fdc04 662
ecd06ca9
LC
663(define (udev-rules-union packages)
664 "Return the union of the @code{lib/udev/rules.d} directories found in each
665item of @var{packages}."
666 (define build
667 #~(begin
668 (use-modules (guix build union)
669 (guix build utils)
670 (srfi srfi-1)
671 (srfi srfi-26))
672
673 (define %standard-locations
674 '("/lib/udev/rules.d" "/libexec/udev/rules.d"))
675
676 (define (rules-sub-directory directory)
677 ;; Return the sub-directory of DIRECTORY containing udev rules, or
678 ;; #f if none was found.
679 (find directory-exists?
680 (map (cut string-append directory <>) %standard-locations)))
681
682 (mkdir-p (string-append #$output "/lib/udev"))
683 (union-build (string-append #$output "/lib/udev/rules.d")
684 (filter-map rules-sub-directory '#$packages))))
685
686 (gexp->derivation "udev-rules" build
687 #:modules '((guix build union)
688 (guix build utils))
689 #:local-build? #t))
690
7f28bf9a
LC
691(define* (kvm-udev-rule)
692 "Return a directory with a udev rule that changes the group of
693@file{/dev/kvm} to \"kvm\" and makes it #o660."
694 ;; Apparently QEMU-KVM used to ship this rule, but now we have to add it by
695 ;; ourselves.
696 (gexp->derivation "kvm-udev-rules"
697 #~(begin
698 (use-modules (guix build utils))
699
700 (define rules.d
701 (string-append #$output "/lib/udev/rules.d"))
702
703 (mkdir-p rules.d)
704 (call-with-output-file
705 (string-append rules.d "/90-kvm.rules")
706 (lambda (port)
421c3bcc
LC
707 ;; FIXME: As a workaround for
708 ;; <http://bugs.gnu.org/18994>, make /dev/kvm 666
709 ;; instead of 660.
7f28bf9a 710 (display "\
421c3bcc 711KERNEL==\"kvm\", GROUP=\"kvm\", MODE=\"0666\"\n" port))))
7f28bf9a
LC
712 #:modules '((guix build utils))))
713
8a7330fd 714(define* (udev-service #:key (udev eudev) (rules '()))
ecd06ca9
LC
715 "Run @var{udev}, which populates the @file{/dev} directory dynamically. Get
716extra rules from the packages listed in @var{rules}."
7f28bf9a
LC
717 (mlet* %store-monad ((kvm (kvm-udev-rule))
718 (rules (udev-rules-union (cons* udev kvm rules)))
ecd06ca9
LC
719 (udev.conf (text-file* "udev.conf"
720 "udev_rules=\"" rules
721 "/lib/udev/rules.d\"\n")))
151a2c07
LC
722 (return (service
723 (provision '(udev))
a69576ea
LC
724
725 ;; Udev needs /dev to be a 'devtmpfs' mount so that new device
726 ;; nodes can be added: see
727 ;; <http://www.linuxfromscratch.org/lfs/view/development/chapter07/udev.html>.
7f239fd3 728 (requirement '(root-file-system))
a69576ea
LC
729
730 (documentation "Populate the /dev directory, dynamically.")
151a2c07 731 (start #~(lambda ()
66a99a06
LC
732 (define find
733 (@ (srfi srfi-1) find))
734
1c6b445b 735 (define udevd
66a99a06
LC
736 ;; Choose the right 'udevd'.
737 (find file-exists?
738 (map (lambda (suffix)
739 (string-append #$udev suffix))
740 '("/libexec/udev/udevd" ;udev
741 "/sbin/udevd")))) ;eudev
1c6b445b 742
ed09bb11
LC
743 (define (wait-for-udevd)
744 ;; Wait until someone's listening on udevd's control
745 ;; socket.
746 (let ((sock (socket AF_UNIX SOCK_SEQPACKET 0)))
747 (let try ()
748 (catch 'system-error
749 (lambda ()
750 (connect sock PF_UNIX "/run/udev/control")
751 (close-port sock))
752 (lambda args
753 (format #t "waiting for udevd...~%")
754 (usleep 500000)
755 (try))))))
756
081c5b2d
LC
757 ;; Allow udev to find the modules.
758 (setenv "LINUX_MODULE_DIRECTORY"
759 "/run/booted-system/kernel/lib/modules")
760
66a99a06 761 ;; The first one is for udev, the second one for eudev.
ecd06ca9 762 (setenv "UDEV_CONFIG_FILE" #$udev.conf)
a9eef4d2
LC
763 (setenv "EUDEV_RULES_DIRECTORY"
764 (string-append #$rules "/lib/udev/rules.d"))
ecd06ca9 765
151a2c07
LC
766 (let ((pid (primitive-fork)))
767 (case pid
768 ((0)
1c6b445b 769 (exec-command (list udevd)))
151a2c07 770 (else
ed09bb11
LC
771 ;; Wait until udevd is up and running. This
772 ;; appears to be needed so that the events
773 ;; triggered below are actually handled.
774 (wait-for-udevd)
775
776 ;; Trigger device node creation.
777 (system* (string-append #$udev "/bin/udevadm")
778 "trigger" "--action=add")
779
081c5b2d
LC
780 ;; Wait for things to settle down.
781 (system* (string-append #$udev "/bin/udevadm")
782 "settle")
151a2c07 783 pid)))))
66d5d8c0
LC
784 (stop #~(make-kill-destructor))
785
786 ;; When halting the system, 'udev' is actually killed by
787 ;; 'user-processes', i.e., before its own 'stop' method was
788 ;; called. Thus, make sure it is not respawned.
789 (respawn? #f)))))
151a2c07 790
722554a3 791(define (device-mapping-service target open close)
5dae0186 792 "Return a service that maps device @var{target}, a string such as
722554a3
LC
793@code{\"home\"} (meaning @code{/dev/mapper/home}). Evaluate @var{open}, a
794gexp, to open it, and evaluate @var{close} to close it."
5dae0186
LC
795 (with-monad %store-monad
796 (return (service
797 (provision (list (symbol-append 'device-mapping-
798 (string->symbol target))))
799 (requirement '(udev))
800 (documentation "Map a device node using Linux's device mapper.")
722554a3
LC
801 (start #~(lambda () #$open))
802 (stop #~(lambda _ (not #$close)))
5dae0186
LC
803 (respawn? #f)))))
804
2a13d05e
LC
805(define (swap-service device)
806 "Return a service that uses @var{device} as a swap device."
807 (define requirement
808 (if (string-prefix? "/dev/mapper/" device)
809 (list (symbol-append 'device-mapping-
810 (string->symbol (basename device))))
811 '()))
812
813 (with-monad %store-monad
814 (return (service
815 (provision (list (symbol-append 'swap- (string->symbol device))))
816 (requirement `(udev ,@requirement))
817 (documentation "Enable the given swap device.")
818 (start #~(lambda ()
819 (swapon #$device)
820 #t))
821 (stop #~(lambda _
822 (swapoff #$device)
823 #f))
824 (respawn? #f)))))
825
8b198abe
LC
826(define %base-services
827 ;; Convenience variable holding the basic services.
828 (let ((motd (text-file "motd" "
829This is the GNU operating system, welcome!\n\n")))
62ca0fdf
LC
830 (list (console-font-service "tty1")
831 (console-font-service "tty2")
832 (console-font-service "tty3")
833 (console-font-service "tty4")
834 (console-font-service "tty5")
835 (console-font-service "tty6")
836
837 (mingetty-service "tty1" #:motd motd)
8b198abe
LC
838 (mingetty-service "tty2" #:motd motd)
839 (mingetty-service "tty3" #:motd motd)
840 (mingetty-service "tty4" #:motd motd)
841 (mingetty-service "tty5" #:motd motd)
842 (mingetty-service "tty6" #:motd motd)
4a3b3b07
LC
843 (static-networking-service "lo" "127.0.0.1"
844 #:provision '(loopback))
8b198abe
LC
845 (syslog-service)
846 (guix-service)
151a2c07 847 (nscd-service)
ecd06ca9 848
52bd5734
LC
849 ;; The LVM2 rules are needed as soon as LVM2 or the device-mapper is
850 ;; used, so enable them by default. The FUSE and ALSA rules are
851 ;; less critical, but handy.
852 (udev-service #:rules (list lvm2 fuse alsa-utils)))))
8b198abe 853
db4fdc04 854;;; base.scm ends here