2014-04-14 18:26:48 +04:00
{ config , lib , pkgs , utils , . . . }:
2009-10-12 20:36:19 +04:00
2014-04-14 18:26:48 +04:00
with lib ;
2012-10-13 01:32:36 +04:00
with utils ;
2006-12-21 17:22:40 +03:00
2012-03-15 17:54:23 +04:00
let
2017-02-15 15:22:48 +03:00
addCheckDesc = desc : elemType : check : types . addCheck elemType check
// { description = " ${ elemType . description } ( w i t h c h e c k : ${ desc } ) " ; } ;
2020-08-14 09:25:50 +03:00
isNonEmpty = s : ( builtins . match " [ \t \n ] * " s ) == null ;
nonEmptyStr = addCheckDesc " n o n - e m p t y " types . str isNonEmpty ;
2017-02-15 15:22:48 +03:00
2015-11-25 22:09:09 +03:00
fileSystems' = toposort fsBefore ( attrValues config . fileSystems ) ;
2019-08-14 00:52:01 +03:00
fileSystems = if fileSystems' ? result
2015-11-25 22:09:09 +03:00
then # use topologically sorted fileSystems everywhere
fileSystems' . result
else # the assertion below will catch this,
# but we fall back to the original order
# anyway so that other modules could check
# their assertions too
( attrValues config . fileSystems ) ;
2012-11-02 21:02:12 +04:00
2016-09-17 13:43:37 +03:00
specialFSTypes = [ " p r o c " " s y s f s " " t m p f s " " r a m f s " " d e v t m p f s " " d e v p t s " ] ;
2016-08-27 13:29:38 +03:00
2020-05-21 10:10:47 +03:00
nonEmptyWithoutTrailingSlash = addCheckDesc " n o n - e m p t y w i t h o u t t r a i l i n g s l a s h " types . str
( s : isNonEmpty s && ( builtins . match " . + / " s ) == null ) ;
2016-08-31 16:45:19 +03:00
coreFileSystemOpts = { name , config , . . . }: {
2012-11-02 21:02:12 +04:00
options = {
mountPoint = mkOption {
example = " / m n t / u s b " ;
2020-05-21 10:10:47 +03:00
type = nonEmptyWithoutTrailingSlash ;
2022-11-27 23:57:35 +03:00
description = lib . mdDoc " L o c a t i o n o f t h e m o u n t e d f i l e s y s t e m . " ;
2012-11-02 21:02:12 +04:00
} ;
device = mkOption {
default = null ;
example = " / d e v / s d a " ;
2017-02-15 15:22:48 +03:00
type = types . nullOr nonEmptyStr ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " L o c a t i o n o f t h e d e v i c e . " ;
2012-11-02 21:02:12 +04:00
} ;
fsType = mkOption {
default = " a u t o " ;
example = " e x t 3 " ;
2017-02-15 15:22:48 +03:00
type = nonEmptyStr ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " T y p e o f t h e f i l e s y s t e m . " ;
2012-11-02 21:02:12 +04:00
} ;
options = mkOption {
2015-10-21 20:37:14 +03:00
default = [ " d e f a u l t s " ] ;
example = [ " d a t a = j o u r n a l " ] ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " O p t i o n s u s e d t o m o u n t t h e f i l e s y s t e m . " ;
2022-12-24 21:34:54 +03:00
type = types . nonEmptyListOf nonEmptyStr ;
2016-09-01 12:18:33 +03:00
} ;
2012-11-02 21:02:12 +04:00
2020-05-21 10:10:47 +03:00
depends = mkOption {
default = [ ] ;
example = [ " / p e r s i s t " ] ;
type = types . listOf nonEmptyWithoutTrailingSlash ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2020-05-21 10:10:47 +03:00
List of paths that should be mounted before this one . This filesystem's
2022-07-29 00:19:15 +03:00
{ option } ` device ` and { option } ` mountPoint ` are always
2020-05-21 10:10:47 +03:00
checked and do not need to be included explicitly . If a path is added
to this list , any other filesystem whose mount point is a parent of
the path will be mounted before this filesystem . The paths do not need
2022-07-29 00:19:15 +03:00
to actually be the { option } ` mountPoint ` of some other filesystem .
2020-05-21 10:10:47 +03:00
'' ;
} ;
2016-08-31 16:45:19 +03:00
} ;
config = {
mountPoint = mkDefault name ;
device = mkIf ( elem config . fsType specialFSTypes ) ( mkDefault config . fsType ) ;
} ;
} ;
fileSystemOpts = { config , . . . }: {
options = {
label = mkOption {
default = null ;
example = " r o o t - p a r t i t i o n " ;
2017-02-15 15:22:48 +03:00
type = types . nullOr nonEmptyStr ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " L a b e l o f t h e d e v i c e ( i f a n y ) . " ;
2016-08-31 16:45:19 +03:00
} ;
2012-11-02 21:02:12 +04:00
autoFormat = mkOption {
default = false ;
type = types . bool ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2012-11-02 21:02:12 +04:00
If the device does not currently contain a filesystem ( as
2022-07-29 00:19:15 +03:00
determined by { command } ` blkid ` , then automatically
2012-11-02 21:02:12 +04:00
format it with the filesystem type specified in
2022-07-29 00:19:15 +03:00
{ option } ` fsType ` . Use with caution .
2012-11-02 21:02:12 +04:00
'' ;
} ;
2015-10-04 04:14:53 +03:00
formatOptions = mkOption {
default = " " ;
type = types . str ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
If { option } ` autoFormat ` option is set specifies
2015-10-04 04:14:53 +03:00
extra options passed to mkfs .
'' ;
} ;
2015-09-24 19:13:14 +03:00
autoResize = mkOption {
default = false ;
type = types . bool ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2015-09-24 19:13:14 +03:00
If set , the filesystem is grown to its maximum size before
being mounted . ( This is typically the size of the containing
partition . ) This is currently only supported for ext2/3/4
filesystems that are mounted during early boot .
'' ;
} ;
2012-11-02 21:02:12 +04:00
noCheck = mkOption {
default = false ;
type = types . bool ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " D i s a b l e r u n n i n g f s c k o n t h i s f i l e s y s t e m . " ;
2012-11-02 21:02:12 +04:00
} ;
} ;
2017-10-12 05:35:31 +03:00
config = let
defaultFormatOptions =
# -F needed to allow bare block device without partitions
if ( builtins . substring 0 3 config . fsType ) == " e x t " then " - F "
# -q needed for non-interactive operations
else if config . fsType == " j f s " then " - q "
# (same here)
else if config . fsType == " r e i s e r f s " then " - q "
else null ;
in {
2016-03-14 19:24:36 +03:00
options = mkIf config . autoResize [ " x - n i x o s . a u t o r e s i z e " ] ;
2017-10-12 05:35:31 +03:00
formatOptions = mkIf ( defaultFormatOptions != null ) ( mkDefault defaultFormatOptions ) ;
2012-11-02 21:02:12 +04:00
} ;
} ;
2016-08-27 13:29:38 +03:00
# Makes sequence of `specialMount device mountPoint options fsType` commands.
# `systemMount` should be defined in the sourcing script.
makeSpecialMounts = mounts :
pkgs . writeText " m o u n t s . s h " ( concatMapStringsSep " \n " ( mount : ''
specialMount " ${ mount . device } " " ${ mount . mountPoint } " " ${ concatStringsSep " , " mount . options } " " ${ mount . fsType } "
'' ) m o u n t s ) ;
2022-08-16 16:33:28 +03:00
makeFstabEntries =
let
2022-10-23 21:02:16 +03:00
fsToSkipCheck = [ " n o n e " " b i n d f s " " b t r f s " " z f s " " t m p f s " " n f s " " n f s 4 " " v b o x s f " " g l u s t e r f s " " a p f s " " 9 p " " c i f s " " p r l _ f s " " v m h g f s " ] ;
2022-08-16 16:33:28 +03:00
isBindMount = fs : builtins . elem " b i n d " fs . options ;
skipCheck = fs : fs . noCheck || fs . device == " n o n e " || builtins . elem fs . fsType fsToSkipCheck || isBindMount fs ;
# https://wiki.archlinux.org/index.php/fstab#Filepath_spaces
escape = string : builtins . replaceStrings [ " " " \t " ] [ " \\ 0 4 0 " " \\ 0 1 1 " ] string ;
in fstabFileSystems : { rootPrefix ? " " , excludeChecks ? false , extraOpts ? ( fs : [ ] ) }: concatMapStrings ( fs :
( optionalString ( isBindMount fs ) ( escape rootPrefix ) )
+ ( if fs . device != null then escape fs . device
else if fs . label != null then " / d e v / d i s k / b y - l a b e l / ${ escape fs . label } "
else throw " N o d e v i c e s p e c i f i e d f o r m o u n t p o i n t ‘ ${ fs . mountPoint } ’ . " )
+ " " + escape ( rootPrefix + fs . mountPoint )
+ " " + fs . fsType
2022-10-22 20:52:10 +03:00
+ " " + escape ( builtins . concatStringsSep " , " ( fs . options ++ ( extraOpts fs ) ) )
2022-08-16 16:33:28 +03:00
+ " " + ( optionalString ( ! excludeChecks )
( " 0 " + ( if skipCheck fs then " 0 " else if fs . mountPoint == " / " then " 1 " else " 2 " ) ) )
+ " \n "
) fstabFileSystems ;
initrdFstab = pkgs . writeText " i n i t r d - f s t a b " ( makeFstabEntries ( filter utils . fsNeededForBoot fileSystems ) {
rootPrefix = " / s y s r o o t " ;
excludeChecks = true ;
extraOpts = fs :
( optional fs . autoResize " x - s y s t e m d . g r o w f s " )
++ ( optional fs . autoFormat " x - s y s t e m d . m a k e f s " ) ;
} ) ;
2012-03-15 17:54:23 +04:00
in
2012-10-13 01:32:36 +04:00
2009-10-12 20:36:19 +04:00
{
###### interface
2009-05-28 03:14:38 +04:00
options = {
2009-06-11 20:03:57 +04:00
fileSystems = mkOption {
2013-11-18 19:26:39 +04:00
default = { } ;
2021-10-03 19:06:03 +03:00
example = literalExpression ''
2016-06-19 10:02:24 +03:00
{
" / " . device = " / d e v / h d a 1 " ;
" / d a t a " = {
device = " / d e v / h d a 2 " ;
fsType = " e x t 3 " ;
options = [ " d a t a = j o u r n a l " ] ;
} ;
" / b i g d i s k " . label = " b i g d i s k " ;
}
'' ;
2020-08-23 02:28:45 +03:00
type = types . attrsOf ( types . submodule [ coreFileSystemOpts fileSystemOpts ] ) ;
2022-08-15 08:16:25 +03:00
description = lib . mdDoc ''
2009-05-28 03:14:38 +04:00
The file systems to be mounted . It must include an entry for
2022-08-15 08:16:25 +03:00
the root directory ( ` mountPoint = " / " ` ) . Each
2009-05-28 03:14:38 +04:00
entry in the list is an attribute set with the following fields :
2022-08-15 08:16:25 +03:00
` mountPoint ` , ` device ` ,
` fsType ` ( a file system type recognised by
{ command } ` mount ` ; defaults to
` " a u t o " ` ) , and ` options `
( the mount options passed to { command } ` mount ` using the
{ option } ` - o ` flag ; defaults to ` [ " d e f a u l t s " ] ` ) .
Instead of specifying ` device ` , you can also
specify a volume label ( ` label ` ) for file
systems that support it , such as ext2/ext3 ( see { command } ` mke2fs - L ` ) .
2012-03-09 18:37:58 +04:00
'' ;
2009-05-28 03:14:38 +04:00
} ;
2011-09-14 22:20:50 +04:00
2012-03-09 18:37:58 +04:00
system . fsPackages = mkOption {
2009-05-28 03:14:38 +04:00
internal = true ;
2012-03-09 18:37:58 +04:00
default = [ ] ;
2022-08-29 02:38:36 +03:00
description = lib . mdDoc " P a c k a g e s s u p p l y i n g f i l e s y s t e m m o u n t e r s a n d c h e c k e r s . " ;
2012-03-09 18:37:58 +04:00
} ;
boot . supportedFilesystems = mkOption {
default = [ ] ;
example = [ " b t r f s " ] ;
2015-06-15 19:18:46 +03:00
type = types . listOf types . str ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc " N a m e s o f s u p p o r t e d f i l e s y s t e m t y p e s . " ;
2012-03-09 18:37:58 +04:00
} ;
2016-08-31 16:45:19 +03:00
boot . specialFileSystems = mkOption {
default = { } ;
2020-08-23 02:28:45 +03:00
type = types . attrsOf ( types . submodule coreFileSystemOpts ) ;
2016-08-31 16:45:19 +03:00
internal = true ;
2022-08-29 02:38:36 +03:00
description = lib . mdDoc ''
2016-08-31 16:45:19 +03:00
Special filesystems that are mounted very early during boot .
'' ;
} ;
2022-03-27 14:23:44 +03:00
boot . devSize = mkOption {
default = " 5 % " ;
example = " 3 2 m " ;
type = types . str ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2022-03-27 14:23:44 +03:00
Size limit for the /dev tmpfs . Look at mount ( 8 ) , tmpfs size option ,
for the accepted syntax .
'' ;
} ;
boot . devShmSize = mkOption {
default = " 5 0 % " ;
example = " 2 5 6 m " ;
type = types . str ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2022-03-27 14:23:44 +03:00
Size limit for the /dev/shm tmpfs . Look at mount ( 8 ) , tmpfs size option ,
for the accepted syntax .
'' ;
} ;
boot . runSize = mkOption {
default = " 2 5 % " ;
example = " 2 5 6 m " ;
type = types . str ;
2022-07-29 00:19:15 +03:00
description = lib . mdDoc ''
2022-03-27 14:23:44 +03:00
Size limit for the /run tmpfs . Look at mount ( 8 ) , tmpfs size option ,
for the accepted syntax .
'' ;
} ;
2009-05-28 03:14:38 +04:00
} ;
2009-10-12 20:36:19 +04:00
###### implementation
2009-05-28 03:14:38 +04:00
2009-10-12 20:36:19 +04:00
config = {
2009-05-28 03:14:38 +04:00
2015-11-25 22:09:09 +03:00
assertions = let
ls = sep : concatMapStringsSep sep ( x : x . mountPoint ) ;
2019-03-16 14:51:18 +03:00
notAutoResizable = fs : fs . autoResize && ! ( hasPrefix " e x t " fs . fsType || fs . fsType == " f 2 f s " ) ;
2015-11-25 22:09:09 +03:00
in [
2019-08-14 00:52:01 +03:00
{ assertion = ! ( fileSystems' ? cycle ) ;
2015-11-25 22:09:09 +03:00
message = " T h e ‘ f i l e S y s t e m s ’ o p t i o n c a n ' t b e t o p o l o g i c a l l y s o r t e d : m o u n t p o i n t d e p e n d e n c y p a t h ${ ls " - > " fileSystems' . cycle } l o o p s t o ${ ls " , " fileSystems' . loops } " ;
}
2019-03-16 14:51:18 +03:00
{ assertion = ! ( any notAutoResizable fileSystems ) ;
message = let
fs = head ( filter notAutoResizable fileSystems ) ;
in
" M o u n t p o i n t ' ${ fs . mountPoint } ' : ' a u t o R e s i z e = t r u e ' i s n o t s u p p o r t e d f o r ' f s T y p e = \" ${ fs . fsType } \" ' : ${ if fs . fsType == " a u t o " then " f s T y p e h a s t o b e e x p l i c i t l y s e t a n d " else " " } o n l y t h e e x t f i l e s y s t e m s a n d f 2 f s s u p p o r t i t . " ;
}
2015-11-25 22:09:09 +03:00
] ;
# Export for use in other modules
system . build . fileSystems = fileSystems ;
2016-08-31 16:45:19 +03:00
system . build . earlyMountScript = makeSpecialMounts ( toposort fsBefore ( attrValues config . boot . specialFileSystems ) ) . result ;
2015-11-25 22:09:09 +03:00
2012-11-02 21:02:12 +04:00
boot . supportedFilesystems = map ( fs : fs . fsType ) fileSystems ;
2012-03-09 18:37:58 +04:00
2009-10-12 20:36:19 +04:00
# Add the mount helpers to the system path so that `mount' can find them.
2022-11-16 01:45:38 +03:00
system . fsPackages = [ pkgs . dosfstools ] ;
2012-10-13 01:32:36 +04:00
2017-08-19 19:50:53 +03:00
environment . systemPackages = with pkgs ; [ fuse3 fuse ] ++ config . system . fsPackages ;
2011-09-14 22:20:50 +04:00
2013-02-03 17:12:49 +04:00
environment . etc . fstab . text =
2014-12-29 04:53:37 +03:00
let
2020-12-27 18:09:42 +03:00
swapOptions = sw : concatStringsSep " , " (
2021-06-24 20:58:18 +03:00
sw . options
2020-12-27 18:09:42 +03:00
++ optional ( sw . priority != null ) " p r i = ${ toString sw . priority } "
++ optional ( sw . discardPolicy != null ) " d i s c a r d ${ optionalString ( sw . discardPolicy != " b o t h " ) " = ${ toString sw . discardPolicy } " } "
) ;
2014-12-29 04:53:37 +03:00
in ''
2013-02-03 17:12:49 +04:00
# This is a generated file. Do not edit!
2016-08-24 21:37:21 +03:00
#
# To make changes, edit the fileSystems and swapDevices NixOS options
# in your /etc/nixos/configuration.nix file.
2020-12-03 14:39:23 +03:00
#
# <file system> <mount point> <type> <options> <dump> <pass>
2013-02-03 17:12:49 +04:00
# Filesystems.
2022-08-16 16:33:28 +03:00
$ { makeFstabEntries fileSystems { } }
2013-02-03 17:12:49 +04:00
# Swap devices.
$ { flip concatMapStrings config . swapDevices ( sw :
2021-02-22 19:56:27 +03:00
" ${ sw . realDevice } n o n e s w a p ${ swapOptions sw } \n "
2013-02-03 17:12:49 +04:00
) }
'' ;
2010-06-04 18:22:11 +04:00
2022-08-16 16:33:28 +03:00
boot . initrd . systemd . contents . " / e t c / f s t a b " . source = initrdFstab ;
2012-10-12 23:08:44 +04:00
# Provide a target that pulls in all filesystems.
2013-01-16 15:33:18 +04:00
systemd . targets . fs =
2012-10-12 23:08:44 +04:00
{ description = " A l l F i l e S y s t e m s " ;
wants = [ " l o c a l - f s . t a r g e t " " r e m o t e - f s . t a r g e t " ] ;
} ;
2013-01-16 15:33:18 +04:00
systemd . services =
2012-10-13 01:32:36 +04:00
2020-12-02 02:52:54 +03:00
# Emit systemd services to format requested filesystems.
let
2012-10-13 01:32:36 +04:00
formatDevice = fs :
let
2015-11-25 22:09:43 +03:00
mountPoint' = " ${ escapeSystemdPath fs . mountPoint } . m o u n t " ;
device' = escapeSystemdPath fs . device ;
2016-09-30 16:03:33 +03:00
device'' = " ${ device' } . d e v i c e " ;
2012-10-13 01:32:36 +04:00
in nameValuePair " m k f s - ${ device' } "
{ description = " I n i t i a l i s a t i o n o f F i l e s y s t e m ${ fs . device } " ;
2015-11-25 22:09:43 +03:00
wantedBy = [ mountPoint' ] ;
before = [ mountPoint' " s y s t e m d - f s c k @ ${ device' } . s e r v i c e " ] ;
requires = [ device'' ] ;
after = [ device'' ] ;
2020-11-24 18:29:28 +03:00
path = [ pkgs . util-linux ] ++ config . system . fsPackages ;
2012-10-13 01:32:36 +04:00
script =
''
if ! [ - e " ${ fs . device } " ] ; then exit 1 ; fi
# FIXME: this is scary. The test could be more robust.
2012-05-16 04:03:44 +04:00
type = $ ( blkid - p - s TYPE - o value " ${ fs . device } " || true )
if [ - z " $ t y p e " ] ; then
echo " c r e a t i n g ${ fs . fsType } f i l e s y s t e m o n ${ fs . device } . . . "
2015-10-04 04:14:53 +03:00
mkfs . ${ fs . fsType } $ { fs . formatOptions } " ${ fs . device } "
2012-05-16 04:03:44 +04:00
fi
2012-10-13 01:32:36 +04:00
'' ;
unitConfig . RequiresMountsFor = [ " ${ dirOf fs . device } " ] ;
unitConfig . DefaultDependencies = false ; # needed to prevent a cycle
serviceConfig . Type = " o n e s h o t " ;
} ;
2022-03-20 23:02:47 +03:00
in listToAttrs ( map formatDevice ( filter ( fs : fs . autoFormat && ! ( utils . fsNeededForBoot fs ) ) fileSystems ) ) // {
2020-12-02 02:52:54 +03:00
# Mount /sys/fs/pstore for evacuating panic logs and crashdumps from persistent storage onto the disk using systemd-pstore.
# This cannot be done with the other special filesystems because the pstore module (which creates the mount point) is not loaded then.
" m o u n t - p s t o r e " = {
serviceConfig = {
Type = " o n e s h o t " ;
2021-05-26 00:52:46 +03:00
# skip on kernels without the pstore module
ExecCondition = " ${ pkgs . kmod } / b i n / m o d p r o b e - b p s t o r e " ;
2021-05-30 04:29:52 +03:00
ExecStart = pkgs . writeShellScript " m o u n t - p s t o r e . s h " ''
2020-12-02 02:52:54 +03:00
set - eu
2021-05-30 04:29:52 +03:00
# if the pstore module is builtin it will have mounted the persistent store automatically. it may also be already mounted for other reasons.
$ { pkgs . util-linux } /bin/mountpoint - q /sys/fs/pstore || $ { pkgs . util-linux } /bin/mount - t pstore - o nosuid , noexec , nodev pstore /sys/fs/pstore
2021-07-26 19:04:50 +03:00
# wait up to 1.5 seconds for the backend to be registered and the files to appear. a systemd path unit cannot detect this happening; and succeeding after a restart would not start dependent units.
TRIES = 15
2021-05-30 04:29:52 +03:00
while [ " $ ( c a t / s y s / m o d u l e / p s t o r e / p a r a m e t e r s / b a c k e n d ) " = " ( n u l l ) " ] ; do
if ( ( $ TRIES ) ) ; then
sleep 0 .1
TRIES = $ ( ( TRIES-1 ) )
else
echo " P e r s i s t e n t S t o r a g e b a c k e n d w a s n o t r e g i s t e r e d i n t i m e . " > & 2
2021-07-26 19:04:50 +03:00
break
2021-05-30 04:29:52 +03:00
fi
2020-12-02 02:52:54 +03:00
done
'' ;
RemainAfterExit = true ;
} ;
unitConfig = {
ConditionVirtualization = " ! c o n t a i n e r " ;
DefaultDependencies = false ; # needed to prevent a cycle
} ;
before = [ " s y s t e m d - p s t o r e . s e r v i c e " ] ;
wantedBy = [ " s y s t e m d - p s t o r e . s e r v i c e " ] ;
} ;
} ;
2006-12-21 17:22:40 +03:00
nixos/filesystems: ensure keys gid on /run/keys mountpoint
boot.specialFileSystems is used to describe mount points to be set up in
stage 1 and 2.
We use it to create /run/keys already there, so sshd-in-initrd scenarios
can consume keys sent over through nixops send-keys.
However, it seems the kernel only supports the gid=… option for tmpfs,
not ramfs, causing /run/keys to be owned by the root group, not keys
group.
This was/is worked around in nixops by running a chown root:keys
/run/keys whenever pushing keys [1], and as machines had to have pushed keys
to be usable, this was pretty much always the case.
This is causing regressions in setups not provisioned via nixops, that
still use /run/keys for secrets (through cloud provider startup scripts
for example), as suddenly being an owner of the "keys" group isn't
enough to access the folder.
This PR removes the defunct gid=… option in the mount script called in
stage 1 and 2, and introduces a tmpfiles rule which takes care of fixing
up permissions as part of sysinit.target (very early in systemd bootup,
so before regular services are started).
In case of nixops deployments, this doesn't change anything.
nixops-based deployments receiving secrets from nixops send-keys in
initrd will simply have the permissions already set once tmpfiles is
started.
Fixes #42344
[1]: https://github.com/NixOS/nixops/blob/884d6c3994b227eb09c307e5d25d6885c9af8220/nixops/backends/__init__.py#L267-L269
2020-02-05 03:53:26 +03:00
systemd . tmpfiles . rules = [
2020-02-11 23:41:04 +03:00
" d / r u n / k e y s 0 7 5 0 r o o t ${ toString config . ids . gids . keys } "
" z / r u n / k e y s 0 7 5 0 r o o t ${ toString config . ids . gids . keys } "
nixos/filesystems: ensure keys gid on /run/keys mountpoint
boot.specialFileSystems is used to describe mount points to be set up in
stage 1 and 2.
We use it to create /run/keys already there, so sshd-in-initrd scenarios
can consume keys sent over through nixops send-keys.
However, it seems the kernel only supports the gid=… option for tmpfs,
not ramfs, causing /run/keys to be owned by the root group, not keys
group.
This was/is worked around in nixops by running a chown root:keys
/run/keys whenever pushing keys [1], and as machines had to have pushed keys
to be usable, this was pretty much always the case.
This is causing regressions in setups not provisioned via nixops, that
still use /run/keys for secrets (through cloud provider startup scripts
for example), as suddenly being an owner of the "keys" group isn't
enough to access the folder.
This PR removes the defunct gid=… option in the mount script called in
stage 1 and 2, and introduces a tmpfiles rule which takes care of fixing
up permissions as part of sysinit.target (very early in systemd bootup,
so before regular services are started).
In case of nixops deployments, this doesn't change anything.
nixops-based deployments receiving secrets from nixops send-keys in
initrd will simply have the permissions already set once tmpfiles is
started.
Fixes #42344
[1]: https://github.com/NixOS/nixops/blob/884d6c3994b227eb09c307e5d25d6885c9af8220/nixops/backends/__init__.py#L267-L269
2020-02-05 03:53:26 +03:00
] ;
2016-08-27 13:29:38 +03:00
# Sync mount options with systemd's src/core/mount-setup.c: mount_table.
2016-08-31 16:45:19 +03:00
boot . specialFileSystems = {
2016-08-27 13:29:38 +03:00
" / p r o c " = { fsType = " p r o c " ; options = [ " n o s u i d " " n o e x e c " " n o d e v " ] ; } ;
2017-02-18 20:06:09 +03:00
" / r u n " = { fsType = " t m p f s " ; options = [ " n o s u i d " " n o d e v " " s t r i c t a t i m e " " m o d e = 7 5 5 " " s i z e = ${ config . boot . runSize } " ] ; } ;
2016-08-27 13:29:38 +03:00
" / d e v " = { fsType = " d e v t m p f s " ; options = [ " n o s u i d " " s t r i c t a t i m e " " m o d e = 7 5 5 " " s i z e = ${ config . boot . devSize } " ] ; } ;
" / d e v / s h m " = { fsType = " t m p f s " ; options = [ " n o s u i d " " n o d e v " " s t r i c t a t i m e " " m o d e = 1 7 7 7 " " s i z e = ${ config . boot . devShmSize } " ] ; } ;
2017-08-30 02:50:29 +03:00
" / d e v / p t s " = { fsType = " d e v p t s " ; options = [ " n o s u i d " " n o e x e c " " m o d e = 6 2 0 " " p t m x m o d e = 0 6 6 6 " " g i d = ${ toString config . ids . gids . tty } " ] ; } ;
2016-09-17 13:43:37 +03:00
nixos/filesystems: ensure keys gid on /run/keys mountpoint
boot.specialFileSystems is used to describe mount points to be set up in
stage 1 and 2.
We use it to create /run/keys already there, so sshd-in-initrd scenarios
can consume keys sent over through nixops send-keys.
However, it seems the kernel only supports the gid=… option for tmpfs,
not ramfs, causing /run/keys to be owned by the root group, not keys
group.
This was/is worked around in nixops by running a chown root:keys
/run/keys whenever pushing keys [1], and as machines had to have pushed keys
to be usable, this was pretty much always the case.
This is causing regressions in setups not provisioned via nixops, that
still use /run/keys for secrets (through cloud provider startup scripts
for example), as suddenly being an owner of the "keys" group isn't
enough to access the folder.
This PR removes the defunct gid=… option in the mount script called in
stage 1 and 2, and introduces a tmpfiles rule which takes care of fixing
up permissions as part of sysinit.target (very early in systemd bootup,
so before regular services are started).
In case of nixops deployments, this doesn't change anything.
nixops-based deployments receiving secrets from nixops send-keys in
initrd will simply have the permissions already set once tmpfiles is
started.
Fixes #42344
[1]: https://github.com/NixOS/nixops/blob/884d6c3994b227eb09c307e5d25d6885c9af8220/nixops/backends/__init__.py#L267-L269
2020-02-05 03:53:26 +03:00
# To hold secrets that shouldn't be written to disk
" / r u n / k e y s " = { fsType = " r a m f s " ; options = [ " n o s u i d " " n o d e v " " m o d e = 7 5 0 " ] ; } ;
2016-09-07 02:55:26 +03:00
} // optionalAttrs ( ! config . boot . isContainer ) {
# systemd-nspawn populates /sys by itself, and remounting it causes all
# kinds of weird issues (most noticeably, waiting for host disk device
# nodes).
" / s y s " = { fsType = " s y s f s " ; options = [ " n o s u i d " " n o e x e c " " n o d e v " ] ; } ;
2016-08-27 13:29:38 +03:00
} ;
2009-03-06 15:27:33 +03:00
} ;
2009-08-12 01:10:33 +04:00
2006-12-21 17:22:40 +03:00
}