unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 867349c3a51e9a0a32ba400855e169e575d95994 15405 bytes (raw)
name: gnu/services/file-systems.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021 raid5atemyhomework <raid5atemyhomework@protonmail.com>
;;;
;;; 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 file-systems)
  #:use-module (gnu packages file-systems)
  #:use-module (gnu services)
  #:use-module (gnu services base)
  #:use-module (gnu services linux)
  #:use-module (gnu services mcron)
  #:use-module (gnu services shepherd)
  #:use-module (gnu system mapped-devices)
  #:use-module (guix gexp)
  #:use-module (guix modules)
  #:use-module (guix packages)
  #:use-module (guix records)
  #:use-module (srfi srfi-1)
  #:export (zfs-service-type

            zfs-configuration
            zfs-configuration?
            zfs-configuration-kernel
            zfs-configuration-base-zfs
            zfs-configuration-base-zfs-auto-snapshot
            zfs-configuration-dependencies
            zfs-configuration-auto-mount?
            zfs-configuration-auto-scrub
            zfs-configuration-auto-snapshot?
            zfs-configuration-auto-snapshot-keep

            %zfs-zvol-dependency))

(define-record-type* <zfs-configuration>
  zfs-configuration
  make-zfs-configuration
  zfs-configuration?

  ;; linux-libre kernel you want to compile the base-zfs module for.
  (kernel                     zfs-configuration-kernel)

  ;; the OpenZFS package that will be modified to compile for the
  ;; given kernel.
  ;; Because it is modified and not the actual package that is used,
  ;; we prepend the name 'base-'.
  (base-zfs                   zfs-configuration-base-zfs
                              (default zfs))

  ;; the zfs-auto-snapshot package that will be modified to compile
  ;; for the given kernel.
  ;; Because it is modified and not the actual package that is used,
  ;; we prepend the name 'base-'.
  (base-zfs-auto-snapshot     zfs-configuration-base-zfs-auto-snapshot
                              (default zfs-auto-snapshot))

  ;; list of <mapped-device> or <file-system> objects that must be
  ;; opened/mounted before we import any ZFS pools.
  (dependencies               zfs-configuration-dependencies
                              (default '()))

  ;; #t to mount all mountable datasets by default.
  ;; #f if not mounting.
  ;; #t is the expected behavior on other operating systems, the
  ;; #f is only supported for "rescue" operating systems where
  ;; the user wants lower-level control of when to mount.
  (auto-mount?                zfs-configuration-auto-mount?
                              (default #t))

  ;; 'weekly for weekly scrubbing, 'monthly for monthly scrubbing, an
  ;; mcron time specification that can be given to `job`, or #f to
  ;; disable.
  (auto-scrub                 zfs-configuration-auto-scrub
                              (default 'weekly))

  ;; #t to auto-snapshot by default (and `com.sun:auto-snapshot=false`
  ;; disables auto-snapshot per dataset), #f to not auto-snapshot
  ;; by default (and `com.sun:auto-snapshot=true` enables auto-snapshot
  ;; per dataset).
  (auto-snapshot?             zfs-configuration-auto-snapshot?
                              (default #t))

  ;; association list of symbol-number pairs to indicate the number
  ;; of automatic snapshots to keep for each of 'frequent, 'hourly,
  ;; 'daily, 'weekly, and 'monthly.
  ;; e.g. '((frequent . 8) (hourly . 12))
  (auto-snapshot-keep         zfs-configuration-auto-snapshot-keep
                              (default '())))

(define %default-auto-snapshot-keep
  '((frequent .  4)
    (hourly .    24)
    (daily .     31)
    (weekly .    8)
    (monthly .   12)))

(define %auto-snapshot-mcron-schedule
  '((frequent .  "0,15,30,45 * * * *")
    (hourly .    "0 * * * *")
    (daily .     "0 0 * * *")
    (weekly .    "0 0 * * 7")
    (monthly .   "0 0 1 * *")))

;; A synthetic and unusable MAPPED-DEVICE intended for use when
;; the user has created a mountable filesystem inside a ZFS
;; zvol and wants it mounted inside the configuration.scm.
(define %zfs-zvol-dependency
  (mapped-device
    (source '())
    (targets '("zvol/*"))
    (type #f)))

(define (make-zfs-package conf)
  "Creates a zfs package based on the given zfs-configuration.

  OpenZFS is a kernel package and to ensure best compatibility
  it should be compiled with the specific Linux-Libre kernel
  used on the system.  This simply overrides the kernel used
  in compilation with that given in the configuration, which
  the user has to ensure is the same as in the operating-system."
  (let ((kernel    (zfs-configuration-kernel conf))
        (base-zfs  (zfs-configuration-base-zfs conf)))
    (package
      (inherit base-zfs)
      (arguments (cons* #:linux kernel
                        (package-arguments base-zfs))))))

(define (make-zfs-auto-snapshot-package conf)
  "Creates a zfs-auto-snapshot package based on the given
  zfs-configuration.

  Since the OpenZFS tools above are compiled to a specific
  kernel version, zfs-auto-snapshot --- which calls into the
  OpenZFS tools --- has to be compiled with the specific
  modified OpenZFS package created in the make-zfs-package
  procedure."
  (let ((zfs                    (make-zfs-package conf))
        (base-zfs-auto-snapshot (zfs-configuration-base-zfs-auto-snapshot conf)))
    (package
      (inherit base-zfs-auto-snapshot)
      (inputs `(("zfs" ,zfs))))))

(define (zfs-loadable-modules conf)
  "Specifies that the specific 'module' output of the OpenZFS
  package is to be used; for use in indicating it as a
  loadable kernel module."
  (list (list (make-zfs-package conf) "module")))

(define (zfs-shepherd-services conf)
  "Constructs a list of Shepherd services that is installed
  by the ZFS Guix service.

  'zfs-scan' scans all devices for ZFS pools, and makes them
  available to 'zpool' commands.
  'device-mapping-zvol/*' waits for /dev/zvol/* to be
  populated by 'udev', and runs after 'zfs-scan'.
  'zfs-auto-mount' mounts all ZFS datasets with a 'mount'
  property, which defaults to '/' followed by the name of
  the dataset.

  All the above behavior is expected by ZFS users from
  typical ZFS installations.  A mild difference is that
  scanning is usually based on '/etc/zfs/zpool.cache'
  instead of the 'scan all devices' used below, but that
  file is questionable in Guix since ideally '/etc/'
  files are modified by the sysad directly;
  '/etc/zfs/zpool.cache' is modified by ZFS tools."
  (let* ((zfs-package     (make-zfs-package conf))
         (zpool           (file-append zfs-package "/sbin/zpool"))
         (zfs             (file-append zfs-package "/sbin/zfs"))
         (zvol_wait       (file-append zfs-package "/bin/zvol_wait"))
         (scheme-modules  `((srfi srfi-1)
                            (srfi srfi-34)
                            (srfi srfi-35)
                            (rnrs io ports)
                            ,@%default-modules)))
    (define zfs-scan
      (shepherd-service
        (provision '(zfs-scan))
        (requirement `(root-file-system
                       kernel-module-loader
                       udev
                       ,@(map dependency->shepherd-service-name
                              (zfs-configuration-dependencies conf))))
        (documentation "Scans for and imports ZFS pools.")
        (modules scheme-modules)
        (start #~(lambda _
                   (guard (c ((message-condition? c)
                              (format (current-error-port)
                                      "zfs: error importing pools: ~s~%"
                                      (condition-message c))
                              #f))
                     ;; TODO: optionally use a cachefile.
                     (invoke #$zpool "import" "-a" "-N"))))
        ;; Why not one-shot?  Because we don't really want to rescan
        ;; this each time a requiring process is restarted, as scanning
        ;; can take a long time and a lot of I/O.
        (stop #~(const #f))))

    (define device-mapping-zvol/*
      (shepherd-service
        (provision '(device-mapping-zvol/*))
        (requirement '(zfs-scan))
        (documentation "Waits for all ZFS ZVOLs to be opened.")
        (modules scheme-modules)
        (start #~(lambda _
                   (guard (c ((message-condition? c)
                              (format (current-error-port)
                                      "zfs: error opening zvols: ~s~%"
                                      (condition-message c))
                              #f))
                     (invoke #$zvol_wait))))
        (stop #~(const #f))))

    (define zfs-auto-mount
      (shepherd-service
        (provision '(zfs-auto-mount))
        (requirement '(zfs-scan))
        (documentation "Mounts all non-legacy mounted ZFS filesystems.")
        (modules scheme-modules)
        (start #~(lambda _
                   (guard (c ((message-condition? c)
                              (format (current-error-port)
                                      "zfs: error mounting file systems: ~s~%"
                                      (condition-message c))
                              #f))
                     ;; Output to current-error-port, otherwise the
                     ;; user will not see any prompts for passwords
                     ;; of encrypted datasets.
                     ;; XXX Maybe better to explicitly open /dev/console ?
                     (with-output-to-port (current-error-port)
                       (lambda ()
                         (invoke #$zfs "mount" "-a" "-l"))))))
        (stop #~(lambda _
                  ;; Make sure that Shepherd does not have a CWD that
                  ;; is a mounted ZFS filesystem, which would prevent
                  ;; unmounting.
                  (chdir "/")
                  (invoke #$zfs "unmount" "-a" "-f")))))

    `(,zfs-scan
      ,device-mapping-zvol/*
      ,@(if (zfs-configuration-auto-mount? conf)
            `(,zfs-auto-mount)
            '()))))

(define (zfs-user-processes conf)
  "Provides the last Shepherd service that 'user-processes' has to
  wait for.

  If not auto-mounting, then user-processes should only wait for
  the device scan."
  (if (zfs-configuration-auto-mount? conf)
      '(zfs-auto-mount)
      '(zfs-scan)))

(define (zfs-mcron-auto-snapshot-jobs conf)
  "Creates a list of mcron jobs for auto-snapshotting, one for each
  of the standard durations."
  (let* ((user-auto-snapshot-keep      (zfs-configuration-auto-snapshot-keep conf))
         ;; assoc-ref has earlier entries overriding later ones.
         (auto-snapshot-keep           (append user-auto-snapshot-keep
                                               %default-auto-snapshot-keep))
         (auto-snapshot?               (zfs-configuration-auto-snapshot? conf))
         (zfs-auto-snapshot-package    (make-zfs-auto-snapshot-package conf))
         (zfs-auto-snapshot            (file-append zfs-auto-snapshot-package
                                                    "/sbin/zfs-auto-snapshot")))
    (map
      (lambda (label)
        (let ((keep   (assoc-ref auto-snapshot-keep label))
              (sched  (assoc-ref %auto-snapshot-mcron-schedule label)))
          #~(job '#$sched
                 (lambda ()
                   (system* #$zfs-auto-snapshot
                            "--quiet"
                            "--syslog"
                            #$(string-append "--label="
                                             (symbol->string label))
                            #$(string-append "--keep="
                                             (number->string keep))
                            "//")))))
      (map first %auto-snapshot-mcron-schedule))))

(define (zfs-mcron-auto-scrub-jobs conf)
  "Creates a list of mcron jobs for auto-scrubbing."
  (let* ((zfs-package    (make-zfs-package conf))
         (zpool          (file-append zfs-package "/sbin/zpool"))
         (auto-scrub     (zfs-configuration-auto-scrub conf))
         (sched          (cond
                           ((eq? auto-scrub 'weekly)  "0 0 * * 7")
                           ((eq? auto-scrub 'monthly) "0 0 1 * *")
                           (else                      auto-scrub))))
    (define code
      ;; We need to get access to (guix build utils) for the
      ;; invoke procedures.
      (with-imported-modules (source-module-closure '((guix build utils)))
        #~(begin
            (use-modules (guix build utils)
                         (ice-9 ports))
            ;; The ZFS pools in the system.
            (define pools
              (invoke/quiet #$zpool "list" "-o" "name" "-H"))
            ;; Only scrub if there are actual ZFS pools, as the
            ;; zpool scrub command errors out if given an empty
            ;; argument list.
            (unless (null? pools)
              ;; zpool scrub only initiates the scrub and otherwise
              ;; prints nothing.  Results are always seen on the
              ;; zpool status command.
              (apply invoke #$zpool "scrub" pools)))))
    (list
      #~(job '#$sched
             #$(program-file "mcron-zfs-scrub.scm" code)))))

(define (zfs-mcron-jobs conf)
  "Creates a list of mcron jobs for ZFS management."
  (append (zfs-mcron-auto-snapshot-jobs conf)
          (if (zfs-configuration-auto-scrub conf)
              (zfs-mcron-auto-scrub-jobs conf)
              '())))

(define zfs-service-type
  (service-type
    (name 'zfs)
    (extensions
      (list ;; Install OpenZFS kernel module into kernel profile.
            (service-extension linux-loadable-module-service-type
                               zfs-loadable-modules)
            ;; And load it.
            (service-extension kernel-module-loader-service-type
                               (const '("zfs")))
            ;; Make sure ZFS pools and datasets are mounted at
            ;; boot.
            (service-extension shepherd-root-service-type
                               zfs-shepherd-services)
            ;; Make sure user-processes don't start until
            ;; after ZFS does.
            (service-extension user-processes-service-type
                               zfs-user-processes)
            ;; Install automated scrubbing and snapshotting.
            (service-extension mcron-service-type
                               zfs-mcron-jobs)

            ;; Install ZFS management commands in the system
            ;; profile.
            (service-extension profile-service-type
                               (compose list make-zfs-package))
            ;; Install ZFS udev rules.
            (service-extension udev-service-type
                               (compose list make-zfs-package))))
    (description "Installs ZFS, an advanced filesystem and volume manager.")))

debug log:

solving 867349c3a5 ...
found 867349c3a5 in https://yhetil.org/guix-patches/w5Ck7et7YPcgboacWLbUnpTA7rbKz2c_psHpV6a6scRzJ1mTPb6MQ4A1RAcTFYJquJG3pmIVkZB1ySOnXaQu19ZUBi0BFHC33EtJg1Mx_wk=@protonmail.com/ ||
	https://yhetil.org/guix-patches/mhdVSrgYDEwem_IimJeqVrvDCNjldhvEkXl81zqCruSRJWs6FRSyqF266yLlsONwkxCIWPy49dYYK6xG6a-bHrybufj4-xXhAVzP32Iiw1c=@protonmail.com/

applying [1/1] https://yhetil.org/guix-patches/w5Ck7et7YPcgboacWLbUnpTA7rbKz2c_psHpV6a6scRzJ1mTPb6MQ4A1RAcTFYJquJG3pmIVkZB1ySOnXaQu19ZUBi0BFHC33EtJg1Mx_wk=@protonmail.com/
diff --git a/gnu/services/file-systems.scm b/gnu/services/file-systems.scm
new file mode 100644
index 0000000000..867349c3a5

Checking patch gnu/services/file-systems.scm...
Applied patch gnu/services/file-systems.scm cleanly.

skipping https://yhetil.org/guix-patches/mhdVSrgYDEwem_IimJeqVrvDCNjldhvEkXl81zqCruSRJWs6FRSyqF266yLlsONwkxCIWPy49dYYK6xG6a-bHrybufj4-xXhAVzP32Iiw1c=@protonmail.com/ for 867349c3a5
index at:
100644 867349c3a51e9a0a32ba400855e169e575d95994	gnu/services/file-systems.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).