activation.scm 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
  3. ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
  4. ;;;
  5. ;;; This file is part of GNU Guix.
  6. ;;;
  7. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  8. ;;; under the terms of the GNU General Public License as published by
  9. ;;; the Free Software Foundation; either version 3 of the License, or (at
  10. ;;; your option) any later version.
  11. ;;;
  12. ;;; GNU Guix is distributed in the hope that it will be useful, but
  13. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;;; GNU General Public License for more details.
  16. ;;;
  17. ;;; You should have received a copy of the GNU General Public License
  18. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  19. (define-module (gnu build activation)
  20. #:use-module (gnu system accounts)
  21. #:use-module (gnu build accounts)
  22. #:use-module (gnu build linux-boot)
  23. #:use-module (guix build utils)
  24. #:use-module ((guix build syscalls) #:select (with-file-lock))
  25. #:use-module (ice-9 ftw)
  26. #:use-module (ice-9 match)
  27. #:use-module (ice-9 vlist)
  28. #:use-module (srfi srfi-1)
  29. #:use-module (srfi srfi-11)
  30. #:use-module (srfi srfi-26)
  31. #:export (activate-users+groups
  32. activate-user-home
  33. activate-etc
  34. activate-setuid-programs
  35. activate-special-files
  36. activate-modprobe
  37. activate-firmware
  38. activate-ptrace-attach
  39. activate-current-system))
  40. ;;; Commentary:
  41. ;;;
  42. ;;; This module provides "activation" helpers. Activation is the process that
  43. ;;; consists in setting up system-wide files and directories so that an
  44. ;;; 'operating-system' configuration becomes active.
  45. ;;;
  46. ;;; Code:
  47. (define %skeleton-directory
  48. ;; Directory containing skeleton files for new accounts.
  49. ;; Note: keep the trailing '/' so that 'scandir' enters it.
  50. "/etc/skel/")
  51. (define (dot-or-dot-dot? file)
  52. (member file '("." "..")))
  53. (define* (copy-account-skeletons home
  54. #:key
  55. (directory %skeleton-directory)
  56. uid gid)
  57. "Copy the account skeletons from DIRECTORY to HOME. When UID is an integer,
  58. make it the owner of all the files created; likewise for GID."
  59. (define (set-owner file)
  60. (when (or uid gid)
  61. (chown file (or uid -1) (or gid -1))))
  62. (let ((files (scandir directory (negate dot-or-dot-dot?)
  63. string<?)))
  64. (mkdir-p home)
  65. (set-owner home)
  66. (for-each (lambda (file)
  67. (let ((target (string-append home "/" file)))
  68. (copy-recursively (string-append directory "/" file)
  69. target
  70. #:log (%make-void-port "w"))
  71. (for-each set-owner
  72. (find-files target (const #t)
  73. #:directories? #t))
  74. (make-file-writable target)))
  75. files)))
  76. (define* (make-skeletons-writable home
  77. #:optional (directory %skeleton-directory))
  78. "Make sure that the files that have been copied from DIRECTORY to HOME are
  79. owner-writable in HOME."
  80. (let ((files (scandir directory (negate dot-or-dot-dot?)
  81. string<?)))
  82. (for-each (lambda (file)
  83. (let ((target (string-append home "/" file)))
  84. (when (file-exists? target)
  85. (make-file-writable target))))
  86. files)))
  87. (define (duplicates lst)
  88. "Return elements from LST present more than once in LST."
  89. (let loop ((lst lst)
  90. (seen vlist-null)
  91. (result '()))
  92. (match lst
  93. (()
  94. (reverse result))
  95. ((head . tail)
  96. (loop tail
  97. (vhash-cons head #t seen)
  98. (if (vhash-assoc head seen)
  99. (cons head result)
  100. result))))))
  101. (define (activate-users+groups users groups)
  102. "Make sure USERS (a list of user account records) and GROUPS (a list of user
  103. group records) are all available."
  104. (define (make-home-directory user)
  105. (let ((home (user-account-home-directory user))
  106. (pwd (getpwnam (user-account-name user))))
  107. (mkdir-p home)
  108. ;; Always set ownership and permissions for home directories of system
  109. ;; accounts. If a service needs looser permissions on its home
  110. ;; directories, it can always chmod it in an activation snippet.
  111. (chown home (passwd:uid pwd) (passwd:gid pwd))
  112. (chmod home #o700)))
  113. (define system-accounts
  114. (filter (lambda (user)
  115. (and (user-account-system? user)
  116. (user-account-create-home-directory? user)))
  117. users))
  118. ;; Allow home directories to be created under /var/lib.
  119. (mkdir-p "/var/lib")
  120. ;; Take same lock as libc's 'lckpwdf' (but without a timeout) while we read
  121. ;; and write the databases. This ensures there's no race condition with
  122. ;; other tools that might be accessing it at the same time.
  123. (with-file-lock %password-lock-file
  124. (let-values (((groups passwd shadow)
  125. (user+group-databases users groups)))
  126. (write-group groups)
  127. (write-passwd passwd)
  128. (write-shadow shadow)))
  129. ;; Home directories of non-system accounts are created by
  130. ;; 'activate-user-home'.
  131. (for-each make-home-directory system-accounts)
  132. ;; Turn shared home directories, such as /var/empty, into root-owned,
  133. ;; read-only places.
  134. (for-each (lambda (directory)
  135. (chown directory 0 0)
  136. (chmod directory #o555))
  137. (duplicates (map user-account-home-directory system-accounts))))
  138. (define (activate-user-home users)
  139. "Create and populate the home directory of USERS, a list of tuples, unless
  140. they already exist."
  141. (define ensure-user-home
  142. (lambda (user)
  143. (let ((name (user-account-name user))
  144. (home (user-account-home-directory user))
  145. (create-home? (user-account-create-home-directory? user))
  146. (system? (user-account-system? user)))
  147. ;; The home directories of system accounts are created during
  148. ;; activation, not here.
  149. (unless (or (not home) (not create-home?) system?
  150. (directory-exists? home))
  151. (let* ((pw (getpwnam name))
  152. (uid (passwd:uid pw))
  153. (gid (passwd:gid pw)))
  154. (mkdir-p home)
  155. (chown home uid gid)
  156. (chmod home #o700)
  157. (copy-account-skeletons home
  158. #:uid uid #:gid gid))))))
  159. (for-each ensure-user-home users))
  160. (define (activate-etc etc)
  161. "Install ETC, a directory in the store, as the source of static files for
  162. /etc."
  163. ;; /etc is a mixture of static and dynamic settings. Here is where we
  164. ;; initialize it from the static part.
  165. (define (rm-f file)
  166. (false-if-exception (delete-file file)))
  167. (format #t "populating /etc from ~a...~%" etc)
  168. (mkdir-p "/etc")
  169. ;; Create the /etc/ssl -> /run/current-system/profile/etc/ssl symlink. This
  170. ;; symlink, to a target outside of the store, probably doesn't belong in the
  171. ;; static 'etc' store directory. However, if it were to be put there,
  172. ;; beware that if /run/current-system/profile/etc/ssl doesn't exist at the
  173. ;; time of activation (e.g. when installing a fresh system), the call to
  174. ;; 'file-is-directory?' below will fail because it uses 'stat', not 'lstat'.
  175. (rm-f "/etc/ssl")
  176. (symlink "/run/current-system/profile/etc/ssl" "/etc/ssl")
  177. (rm-f "/etc/static")
  178. (symlink etc "/etc/static")
  179. (for-each (lambda (file)
  180. (let ((target (string-append "/etc/" file))
  181. (source (string-append "/etc/static/" file)))
  182. (rm-f target)
  183. ;; Things such as /etc/sudoers must be regular files, not
  184. ;; symlinks; furthermore, they could be modified behind our
  185. ;; back---e.g., with 'visudo'. Thus, make a copy instead of
  186. ;; symlinking them.
  187. (if (file-is-directory? source)
  188. (symlink source target)
  189. (copy-file source target))
  190. ;; XXX: Dirty hack to meet sudo's expectations.
  191. (when (string=? (basename target) "sudoers")
  192. (chmod target #o440))))
  193. (scandir etc (negate dot-or-dot-dot?)
  194. ;; The default is 'string-locale<?', but we don't have
  195. ;; it when run from the initrd's statically-linked
  196. ;; Guile.
  197. string<?)))
  198. (define %setuid-directory
  199. ;; Place where setuid programs are stored.
  200. "/run/setuid-programs")
  201. (define (activate-setuid-programs programs)
  202. "Turn PROGRAMS, a list of file names, into setuid programs stored under
  203. %SETUID-DIRECTORY."
  204. (define (make-setuid-program prog)
  205. (let ((target (string-append %setuid-directory
  206. "/" (basename prog))))
  207. (copy-file prog target)
  208. (chown target 0 0)
  209. (chmod target #o6555)))
  210. (format #t "setting up setuid programs in '~a'...~%"
  211. %setuid-directory)
  212. (if (file-exists? %setuid-directory)
  213. (for-each (compose delete-file
  214. (cut string-append %setuid-directory "/" <>))
  215. (scandir %setuid-directory
  216. (lambda (file)
  217. (not (member file '("." ".."))))
  218. string<?))
  219. (mkdir-p %setuid-directory))
  220. (for-each make-setuid-program programs))
  221. (define (activate-special-files special-files)
  222. "Install the files listed in SPECIAL-FILES. Each element of SPECIAL-FILES
  223. is a pair where the first element is the name of the special file and the
  224. second element is the name it should appear at, such as:
  225. ((\"/bin/sh\" \"/gnu/store/…-bash/bin/sh\")
  226. (\"/usr/bin/env\" \"/gnu/store/…-coreutils/bin/env\"))
  227. "
  228. (define install-special-file
  229. (match-lambda
  230. ((target file)
  231. (let ((pivot (string-append target ".new")))
  232. (mkdir-p (dirname target))
  233. (symlink file pivot)
  234. (rename-file pivot target)))))
  235. (for-each install-special-file special-files))
  236. (define (activate-modprobe modprobe)
  237. "Tell the kernel to use MODPROBE to load modules."
  238. (call-with-output-file "/proc/sys/kernel/modprobe"
  239. (lambda (port)
  240. (display modprobe port))))
  241. (define (activate-firmware directory)
  242. "Tell the kernel to look for device firmware under DIRECTORY. This
  243. mechanism bypasses udev: it allows Linux to handle firmware loading directly
  244. by itself, without having to resort to a \"user helper\"."
  245. (call-with-output-file "/sys/module/firmware_class/parameters/path"
  246. (lambda (port)
  247. (display directory port))))
  248. (define (activate-ptrace-attach)
  249. "Allow users to PTRACE_ATTACH their own processes.
  250. This works around a regression introduced in the default \"security\" policy
  251. found in Linux 3.4 onward that prevents users from attaching to their own
  252. processes--see Yama.txt in the Linux source tree for the rationale. This
  253. sounds like an unacceptable restriction for little or no security
  254. improvement."
  255. (let ((file "/proc/sys/kernel/yama/ptrace_scope"))
  256. (when (file-exists? file)
  257. (call-with-output-file file
  258. (lambda (port)
  259. (display 0 port))))))
  260. (define %current-system
  261. ;; The system that is current (a symlink.) This is not necessarily the same
  262. ;; as the system we booted (aka. /run/booted-system) because we can re-build
  263. ;; a new system configuration and activate it, without rebooting.
  264. "/run/current-system")
  265. (define (boot-time-system)
  266. "Return the '--system' argument passed on the kernel command line."
  267. (find-long-option "--system" (linux-command-line)))
  268. (define* (activate-current-system
  269. #:optional (system (or (getenv "GUIX_NEW_SYSTEM")
  270. (boot-time-system))))
  271. "Atomically make SYSTEM the current system."
  272. ;; The 'GUIX_NEW_SYSTEM' environment variable is used as a way for 'guix
  273. ;; system reconfigure' to pass the file name of the new system.
  274. (format #t "making '~a' the current system...~%" system)
  275. ;; Atomically make SYSTEM current.
  276. (let ((new (string-append %current-system ".new")))
  277. (symlink system new)
  278. (rename-file new %current-system)))
  279. ;;; activation.scm ends here