Merge branch 'master' into staging
[jackhill/guix/guix.git] / gnu / system / linux-container.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015 David Thompson <davet@gnu.org>
3 ;;; Copyright © 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
4 ;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
5 ;;;
6 ;;; This file is part of GNU Guix.
7 ;;;
8 ;;; GNU Guix is free software; you can redistribute it and/or modify it
9 ;;; under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 3 of the License, or (at
11 ;;; your option) any later version.
12 ;;;
13 ;;; GNU Guix is distributed in the hope that it will be useful, but
14 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
17 ;;;
18 ;;; You should have received a copy of the GNU General Public License
19 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21 (define-module (gnu system linux-container)
22 #:use-module (ice-9 match)
23 #:use-module (srfi srfi-1)
24 #:use-module (guix config)
25 #:use-module (guix store)
26 #:use-module (guix gexp)
27 #:use-module (guix derivations)
28 #:use-module (guix monads)
29 #:use-module (guix modules)
30 #:use-module (gnu build linux-container)
31 #:use-module (gnu services)
32 #:use-module (gnu services base)
33 #:use-module (gnu services shepherd)
34 #:use-module (gnu system)
35 #:use-module (gnu system file-systems)
36 #:export (system-container
37 containerized-operating-system
38 container-script))
39
40 (define* (container-essential-services os #:key shared-network?)
41 "Return a list of essential services corresponding to OS, a
42 non-containerized OS. This procedure essentially strips essential services
43 from OS that are needed on the bare metal and not in a container."
44 (define base
45 (remove (lambda (service)
46 (memq (service-kind service)
47 (list (service-kind %linux-bare-metal-service)
48 firmware-service-type
49 system-service-type)))
50 (operating-system-default-essential-services os)))
51
52 (cons (service system-service-type
53 (let ((locale (operating-system-locale-directory os)))
54 (with-monad %store-monad
55 (return `(("locale" ,locale))))))
56 ;; If network is to be shared with the host, remove network
57 ;; configuration files from etc-service.
58 (if shared-network?
59 (modify-services base
60 (etc-service-type
61 files => (remove
62 (match-lambda
63 ((filename _)
64 (member filename
65 (map basename %network-configuration-files))))
66 files)))
67 base)))
68
69 (define dummy-networking-service-type
70 (shepherd-service-type
71 'dummy-networking
72 (const (shepherd-service
73 (documentation "Provide loopback and networking without actually
74 doing anything.")
75 (provision '(loopback networking))
76 (start #~(const #t))))
77 #f))
78
79 (define* (containerized-operating-system os mappings
80 #:key
81 shared-network?
82 (extra-file-systems '()))
83 "Return an operating system based on OS for use in a Linux container
84 environment. MAPPINGS is a list of <file-system-mapping> to realize in the
85 containerized OS. EXTRA-FILE-SYSTEMS is a list of file systems to add to OS."
86 (define user-file-systems
87 (remove (lambda (fs)
88 (let ((target (file-system-mount-point fs))
89 (source (file-system-device fs)))
90 (or (string=? target (%store-prefix))
91 (string=? target "/")
92 (and (string? source)
93 (string-prefix? "/dev/" source))
94 (string-prefix? "/dev/" target)
95 (string-prefix? "/sys/" target))))
96 (operating-system-file-systems os)))
97
98 (define (mapping->fs fs)
99 (file-system (inherit (file-system-mapping->bind-mount fs))
100 (needed-for-boot? #t)))
101
102 (define useless-services
103 ;; Services that make no sense in a container. Those that attempt to
104 ;; access /dev/tty[0-9] in particular cannot work in a container.
105 (append (list console-font-service-type
106 mingetty-service-type
107 agetty-service-type)
108 ;; Remove nscd service if network is shared with the host.
109 (if shared-network?
110 (list nscd-service-type
111 static-networking-service-type)
112 (list))))
113
114 (operating-system
115 (inherit os)
116 (swap-devices '()) ; disable swap
117 (essential-services (container-essential-services
118 this-operating-system
119 #:shared-network? shared-network?))
120 (services (append (remove (lambda (service)
121 (memq (service-kind service)
122 useless-services))
123 (operating-system-user-services os))
124 ;; Many Guix services depend on a 'networking' shepherd
125 ;; service, so make sure to provide a dummy 'networking'
126 ;; service when we are sure that networking is already set up
127 ;; in the host and can be used. That prevents double setup.
128 (if shared-network?
129 (list (service dummy-networking-service-type))
130 '())))
131 (file-systems (append (map mapping->fs
132 (if shared-network?
133 (append %network-file-mappings mappings)
134 mappings))
135 extra-file-systems
136 user-file-systems
137
138 ;; Provide a dummy root file system so we can create
139 ;; a 'boot-parameters' file.
140 (list (file-system
141 (mount-point "/")
142 (device "nothing")
143 (type "dummy")))))))
144
145 (define* (container-script os #:key (mappings '()) shared-network?)
146 "Return a derivation of a script that runs OS as a Linux container.
147 MAPPINGS is a list of <file-system> objects that specify the files/directories
148 that will be shared with the host system."
149 (define nscd-run-directory "/var/run/nscd")
150
151 (define nscd-mapping
152 (file-system-mapping
153 (source nscd-run-directory)
154 (target nscd-run-directory)))
155
156 (define (mountable-file-system? file-system)
157 ;; Return #t if FILE-SYSTEM should be mounted in the container.
158 (and (not (string=? "/" (file-system-mount-point file-system)))
159 (file-system-needed-for-boot? file-system)))
160
161 (define (os-file-system-specs os)
162 (map file-system->spec
163 (filter mountable-file-system?
164 (operating-system-file-systems os))))
165
166 (let* ((os (containerized-operating-system
167 os (cons %store-mapping mappings)
168 #:shared-network? shared-network?
169 #:extra-file-systems %container-file-systems))
170 (nscd-os (containerized-operating-system
171 os (cons* nscd-mapping %store-mapping mappings)
172 #:shared-network? shared-network?
173 #:extra-file-systems %container-file-systems))
174 (specs (os-file-system-specs os))
175 (nscd-specs (os-file-system-specs nscd-os)))
176
177 (define script
178 (with-imported-modules (source-module-closure
179 '((guix build utils)
180 (gnu build linux-container)))
181 #~(begin
182 (use-modules (gnu build linux-container)
183 (gnu system file-systems) ;spec->file-system
184 (guix build utils))
185
186 (call-with-container
187 (map spec->file-system
188 (if (and #$shared-network?
189 (file-exists? #$nscd-run-directory))
190 '#$nscd-specs
191 '#$specs))
192 (lambda ()
193 (setenv "HOME" "/root")
194 (setenv "TMPDIR" "/tmp")
195 (setenv "GUIX_NEW_SYSTEM" #$os)
196 (for-each mkdir-p '("/run" "/bin" "/etc" "/home" "/var"))
197 (primitive-load (string-append #$os "/boot")))
198 ;; A range of 65536 uid/gids is used to cover 16 bits worth of
199 ;; users and groups, which is sufficient for most cases.
200 ;;
201 ;; See: http://www.freedesktop.org/software/systemd/man/systemd-nspawn.html#--private-users=
202 #:host-uids 65536
203 #:namespaces (if #$shared-network?
204 (delq 'net %namespaces)
205 %namespaces)))))
206
207 (gexp->script "run-container" script)))