mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-22 09:20:58 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
348 lines
11 KiB
Nix
348 lines
11 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
# openafsBin, openafsSrv, mkCellServDB
|
|
with import ./lib.nix { inherit config lib pkgs; };
|
|
|
|
let
|
|
inherit (lib)
|
|
concatStringsSep
|
|
literalExpression
|
|
mkIf
|
|
mkOption
|
|
mkEnableOption
|
|
mkPackageOption
|
|
optionalString
|
|
types
|
|
;
|
|
|
|
bosConfig = pkgs.writeText "BosConfig" (
|
|
''
|
|
restrictmode 1
|
|
restarttime 16 0 0 0 0
|
|
checkbintime 3 0 5 0 0
|
|
''
|
|
+ (optionalString cfg.roles.database.enable ''
|
|
bnode simple vlserver 1
|
|
parm ${openafsSrv}/libexec/openafs/vlserver ${optionalString cfg.dottedPrincipals "-allow-dotted-principals"} ${cfg.roles.database.vlserverArgs}
|
|
end
|
|
bnode simple ptserver 1
|
|
parm ${openafsSrv}/libexec/openafs/ptserver ${optionalString cfg.dottedPrincipals "-allow-dotted-principals"} ${cfg.roles.database.ptserverArgs}
|
|
end
|
|
'')
|
|
+ (optionalString cfg.roles.fileserver.enable ''
|
|
bnode dafs dafs 1
|
|
parm ${openafsSrv}/libexec/openafs/dafileserver ${optionalString cfg.dottedPrincipals "-allow-dotted-principals"} -udpsize ${udpSizeStr} ${cfg.roles.fileserver.fileserverArgs}
|
|
parm ${openafsSrv}/libexec/openafs/davolserver ${optionalString cfg.dottedPrincipals "-allow-dotted-principals"} -udpsize ${udpSizeStr} ${cfg.roles.fileserver.volserverArgs}
|
|
parm ${openafsSrv}/libexec/openafs/salvageserver ${cfg.roles.fileserver.salvageserverArgs}
|
|
parm ${openafsSrv}/libexec/openafs/dasalvager ${cfg.roles.fileserver.salvagerArgs}
|
|
end
|
|
'')
|
|
+ (optionalString
|
|
(cfg.roles.database.enable && cfg.roles.backup.enable && (!cfg.roles.backup.enableFabs))
|
|
''
|
|
bnode simple buserver 1
|
|
parm ${openafsSrv}/libexec/openafs/buserver ${cfg.roles.backup.buserverArgs} ${optionalString useBuCellServDB "-cellservdb /etc/openafs/backup/"}
|
|
end
|
|
''
|
|
)
|
|
+ (optionalString
|
|
(cfg.roles.database.enable && cfg.roles.backup.enable && cfg.roles.backup.enableFabs)
|
|
''
|
|
bnode simple buserver 1
|
|
parm ${lib.getBin pkgs.fabs}/bin/fabsys server --config ${fabsConfFile} ${cfg.roles.backup.fabsArgs}
|
|
end
|
|
''
|
|
)
|
|
);
|
|
|
|
netInfo =
|
|
if (cfg.advertisedAddresses != [ ]) then
|
|
pkgs.writeText "NetInfo" ((concatStringsSep "\nf " cfg.advertisedAddresses) + "\n")
|
|
else
|
|
null;
|
|
|
|
buCellServDB = pkgs.writeText "backup-cellServDB-${cfg.cellName}" (
|
|
mkCellServDB cfg.cellName cfg.roles.backup.cellServDB
|
|
);
|
|
|
|
useBuCellServDB = (cfg.roles.backup.cellServDB != [ ]) && (!cfg.roles.backup.enableFabs);
|
|
|
|
cfg = config.services.openafsServer;
|
|
|
|
udpSizeStr = toString cfg.udpPacketSize;
|
|
|
|
fabsConfFile = pkgs.writeText "fabs.yaml" (
|
|
builtins.toJSON (
|
|
{
|
|
afs = {
|
|
aklog = cfg.package + "/bin/aklog";
|
|
cell = cfg.cellName;
|
|
dumpscan = cfg.package + "/bin/afsdump_scan";
|
|
fs = cfg.package + "/bin/fs";
|
|
pts = cfg.package + "/bin/pts";
|
|
vos = cfg.package + "/bin/vos";
|
|
};
|
|
k5start.command = (lib.getBin pkgs.kstart) + "/bin/k5start";
|
|
}
|
|
// cfg.roles.backup.fabsExtraConfig
|
|
)
|
|
);
|
|
|
|
in
|
|
{
|
|
|
|
options = {
|
|
|
|
services.openafsServer = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable the OpenAFS server. An OpenAFS server needs a
|
|
complex setup. So, be aware that enabling this service and setting
|
|
some options does not give you a turn-key-ready solution. You need
|
|
at least a running Kerberos 5 setup, as OpenAFS relies on it for
|
|
authentication. See the Guide "QuickStartUnix" coming with
|
|
`pkgs.openafs.doc` for complete setup
|
|
instructions.
|
|
'';
|
|
};
|
|
|
|
advertisedAddresses = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = "List of IP addresses this server is advertised under. See NetInfo(5)";
|
|
};
|
|
|
|
cellName = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Cell name, this server will serve.";
|
|
example = "grand.central.org";
|
|
};
|
|
|
|
cellServDB = mkOption {
|
|
default = [ ];
|
|
type = with types; listOf (submodule [ { options = cellServDBConfig; } ]);
|
|
description = "Definition of all cell-local database server machines.";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "openafs" { };
|
|
|
|
roles = {
|
|
fileserver = {
|
|
enable = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = "Fileserver role, serves files and volumes from its local storage.";
|
|
};
|
|
|
|
fileserverArgs = mkOption {
|
|
default = "-vattachpar 128 -vhashsize 11 -L -rxpck 400 -cb 1000000";
|
|
type = types.str;
|
|
description = "Arguments to the dafileserver process. See its man page.";
|
|
};
|
|
|
|
volserverArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the davolserver process. See its man page.";
|
|
example = "-sync never";
|
|
};
|
|
|
|
salvageserverArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the salvageserver process. See its man page.";
|
|
example = "-showlog";
|
|
};
|
|
|
|
salvagerArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the dasalvager process. See its man page.";
|
|
example = "-showlog -showmounts";
|
|
};
|
|
};
|
|
|
|
database = {
|
|
enable = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
Database server role, maintains the Volume Location Database,
|
|
Protection Database (and Backup Database, see
|
|
`backup` role). There can be multiple
|
|
servers in the database role for replication, which then need
|
|
reliable network connection to each other.
|
|
|
|
Servers in this role appear in AFSDB DNS records or the
|
|
CellServDB.
|
|
'';
|
|
};
|
|
|
|
vlserverArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the vlserver process. See its man page.";
|
|
example = "-rxbind";
|
|
};
|
|
|
|
ptserverArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the ptserver process. See its man page.";
|
|
example = "-restricted -default_access S---- S-M---";
|
|
};
|
|
};
|
|
|
|
backup = {
|
|
enable = mkEnableOption ''
|
|
the backup server role. When using OpenAFS built-in buserver, use in conjunction with the
|
|
`database` role to maintain the Backup
|
|
Database. Normally only used in conjunction with tape storage
|
|
or IBM's Tivoli Storage Manager.
|
|
|
|
For a modern backup server, enable this role and see
|
|
{option}`enableFabs`
|
|
'';
|
|
|
|
enableFabs = mkEnableOption ''
|
|
FABS, the flexible AFS backup system. It stores volumes as dump files, relying on other
|
|
pre-existing backup solutions for handling them
|
|
'';
|
|
|
|
buserverArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = "Arguments to the buserver process. See its man page.";
|
|
example = "-p 8";
|
|
};
|
|
|
|
cellServDB = mkOption {
|
|
default = [ ];
|
|
type = with types; listOf (submodule [ { options = cellServDBConfig; } ]);
|
|
description = ''
|
|
Definition of all cell-local backup database server machines.
|
|
Use this when your cell uses less backup database servers than
|
|
other database server machines.
|
|
'';
|
|
};
|
|
|
|
fabsArgs = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = ''
|
|
Arguments to the fabsys process. See
|
|
{manpage}`fabsys_server(1)` and
|
|
{manpage}`fabsys_config(1)`.
|
|
'';
|
|
};
|
|
|
|
fabsExtraConfig = mkOption {
|
|
default = { };
|
|
type = types.attrs;
|
|
description = ''
|
|
Additional configuration parameters for the FABS backup server.
|
|
'';
|
|
example = literalExpression ''
|
|
{
|
|
afs.localauth = true;
|
|
afs.keytab = config.sops.secrets.fabsKeytab.path;
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
dottedPrincipals = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
If enabled, allow principal names containing (.) dots. Enabling
|
|
this has security implications!
|
|
'';
|
|
};
|
|
|
|
udpPacketSize = mkOption {
|
|
default = 1310720;
|
|
type = types.int;
|
|
description = ''
|
|
UDP packet size to use in Bytes. Higher values can speed up
|
|
communications. The default of 1 MB is a sufficient in most
|
|
cases. Make sure to increase the kernel's UDP buffer size
|
|
accordingly via `net.core(w|r|opt)mem_max`
|
|
sysctl.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions = [
|
|
{
|
|
assertion = cfg.cellServDB != [ ];
|
|
message = "You must specify all cell-local database servers in config.services.openafsServer.cellServDB.";
|
|
}
|
|
{
|
|
assertion = cfg.cellName != "";
|
|
message = "You must specify the local cell name in config.services.openafsServer.cellName.";
|
|
}
|
|
];
|
|
|
|
environment.systemPackages = [ openafsBin ];
|
|
|
|
environment.etc = {
|
|
bosConfig = {
|
|
source = bosConfig;
|
|
target = "openafs/BosConfig";
|
|
mode = "0644";
|
|
};
|
|
cellServDB = {
|
|
text = mkCellServDB cfg.cellName cfg.cellServDB;
|
|
target = "openafs/server/CellServDB";
|
|
mode = "0644";
|
|
};
|
|
thisCell = {
|
|
text = cfg.cellName;
|
|
target = "openafs/server/ThisCell";
|
|
mode = "0644";
|
|
};
|
|
buCellServDB = {
|
|
enable = useBuCellServDB;
|
|
text = mkCellServDB cfg.cellName cfg.roles.backup.cellServDB;
|
|
target = "openafs/backup/CellServDB";
|
|
};
|
|
};
|
|
|
|
systemd.services = {
|
|
openafs-server = {
|
|
description = "OpenAFS server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
restartIfChanged = false;
|
|
unitConfig.ConditionPathExists = [
|
|
"|/etc/openafs/server/KeyFileExt"
|
|
];
|
|
preStart = ''
|
|
mkdir -m 0755 -p /var/openafs
|
|
${optionalString (netInfo != null) "cp ${netInfo} /var/openafs/netInfo"}
|
|
${optionalString useBuCellServDB "cp ${buCellServDB}"}
|
|
'';
|
|
serviceConfig = {
|
|
ExecStart = "${openafsBin}/bin/bosserver -nofork";
|
|
ExecStop = "${openafsBin}/bin/bos shutdown localhost -wait -localauth";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|