mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
239 lines
6.8 KiB
Nix
239 lines
6.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.mysqlBackup;
|
|
defaultUser = "mysqlbackup";
|
|
|
|
# Newer mariadb versions warn of the usage of 'mysqldump' and recommend 'mariadb-dump' (https://mariadb.com/kb/en/mysqldump/)
|
|
dumpBinary =
|
|
if
|
|
(
|
|
lib.getName config.services.mysql.package == lib.getName pkgs.mariadb
|
|
&& lib.versionAtLeast config.services.mysql.package.version "11.0.0"
|
|
)
|
|
then
|
|
"${config.services.mysql.package}/bin/mariadb-dump"
|
|
else
|
|
"${config.services.mysql.package}/bin/mysqldump";
|
|
|
|
compressionAlgs = {
|
|
gzip = rec {
|
|
pkg = pkgs.gzip;
|
|
ext = ".gz";
|
|
minLevel = 1;
|
|
maxLevel = 9;
|
|
cmd = compressionLevelFlag: "${pkg}/bin/gzip -c ${cfg.gzipOptions} ${compressionLevelFlag}";
|
|
};
|
|
xz = rec {
|
|
pkg = pkgs.xz;
|
|
ext = ".xz";
|
|
minLevel = 0;
|
|
maxLevel = 9;
|
|
cmd = compressionLevelFlag: "${pkg}/bin/xz -z -c ${compressionLevelFlag} -";
|
|
};
|
|
zstd = rec {
|
|
pkg = pkgs.zstd;
|
|
ext = ".zst";
|
|
minLevel = 1;
|
|
maxLevel = 19;
|
|
cmd = compressionLevelFlag: "${pkg}/bin/zstd ${compressionLevelFlag} -";
|
|
};
|
|
};
|
|
|
|
compressionLevelFlag = lib.optionalString (cfg.compressionLevel != null) (
|
|
"-" + toString cfg.compressionLevel
|
|
);
|
|
|
|
selectedAlg = compressionAlgs.${cfg.compressionAlg};
|
|
compressionCmd = selectedAlg.cmd compressionLevelFlag;
|
|
|
|
shouldUseSingleTransaction =
|
|
db:
|
|
if lib.isBool cfg.singleTransaction then
|
|
cfg.singleTransaction
|
|
else
|
|
lib.elem db cfg.singleTransaction;
|
|
|
|
backupScript = ''
|
|
set -o pipefail
|
|
failed=""
|
|
${lib.concatMapStringsSep "\n" backupDatabaseScript cfg.databases}
|
|
if [ -n "$failed" ]; then
|
|
echo "Backup of database(s) failed:$failed"
|
|
exit 1
|
|
fi
|
|
'';
|
|
|
|
backupDatabaseScript = db: ''
|
|
dest="${cfg.location}/${db}${selectedAlg.ext}"
|
|
if ${dumpBinary} ${lib.optionalString (shouldUseSingleTransaction db) "--single-transaction"} ${db} | ${compressionCmd} > $dest.tmp; then
|
|
mv $dest.tmp $dest
|
|
echo "Backed up to $dest"
|
|
else
|
|
echo "Failed to back up to $dest"
|
|
rm -f $dest.tmp
|
|
failed="$failed ${db}"
|
|
fi
|
|
'';
|
|
|
|
in
|
|
{
|
|
options = {
|
|
services.mysqlBackup = {
|
|
enable = lib.mkEnableOption "MySQL backups";
|
|
|
|
calendar = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "01:15:00";
|
|
description = ''
|
|
Configured when to run the backup service systemd unit (DayOfWeek Year-Month-Day Hour:Minute:Second).
|
|
'';
|
|
};
|
|
|
|
compressionAlg = lib.mkOption {
|
|
type = lib.types.enum (lib.attrNames compressionAlgs);
|
|
default = "gzip";
|
|
description = ''
|
|
Compression algorithm to use for database dumps.
|
|
'';
|
|
};
|
|
|
|
compressionLevel = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.int;
|
|
default = null;
|
|
description = ''
|
|
Compression level to use for ${lib.concatStringsSep ", " (lib.init (lib.attrNames compressionAlgs))} or ${lib.last (lib.attrNames compressionAlgs)}.
|
|
${lib.concatStringsSep "\n" (
|
|
lib.mapAttrsToList (
|
|
name: algo: "- For ${name}: ${toString algo.minLevel}-${toString algo.maxLevel}"
|
|
) compressionAlgs
|
|
)}
|
|
|
|
:::{.note}
|
|
If compression level is also specified in gzipOptions, the gzipOptions value will be overwritten
|
|
:::
|
|
'';
|
|
};
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = defaultUser;
|
|
description = ''
|
|
User to be used to perform backup.
|
|
'';
|
|
};
|
|
|
|
databases = lib.mkOption {
|
|
default = [ ];
|
|
type = lib.types.listOf lib.types.str;
|
|
description = ''
|
|
List of database names to dump.
|
|
'';
|
|
};
|
|
|
|
location = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/backup/mysql";
|
|
description = ''
|
|
Location to put the compressed MySQL database dumps.
|
|
'';
|
|
};
|
|
|
|
singleTransaction = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.oneOf [
|
|
lib.types.bool
|
|
(lib.types.listOf lib.types.str)
|
|
];
|
|
description = ''
|
|
Whether to create database dump in a single transaction.
|
|
Can be either a boolean for all databases or a list of database names.
|
|
'';
|
|
};
|
|
|
|
gzipOptions = lib.mkOption {
|
|
default = "--no-name --rsyncable";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Command line options to use when invoking `gzip`.
|
|
Only used when compression is set to "gzip".
|
|
If compression level is specified both here and in compressionLevel, the compressionLevel value will take precedence.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# assert config to be correct
|
|
assertions = [
|
|
{
|
|
assertion =
|
|
cfg.compressionLevel == null
|
|
|| selectedAlg.minLevel <= cfg.compressionLevel && cfg.compressionLevel <= selectedAlg.maxLevel;
|
|
message = "${cfg.compressionAlg} compression level must be between ${toString selectedAlg.minLevel} and ${toString selectedAlg.maxLevel}";
|
|
}
|
|
{
|
|
assertion =
|
|
!(lib.isList cfg.singleTransaction)
|
|
|| lib.all (db: lib.elem db cfg.databases) cfg.singleTransaction;
|
|
message = "All databases in singleTransaction must be included in the databases option";
|
|
}
|
|
];
|
|
|
|
# ensure unix user to be used to perform backup exist.
|
|
users.users = lib.optionalAttrs (cfg.user == defaultUser) {
|
|
${defaultUser} = {
|
|
isSystemUser = true;
|
|
createHome = false;
|
|
home = cfg.location;
|
|
group = "nogroup";
|
|
};
|
|
};
|
|
|
|
# add the compression tool to the system environment.
|
|
environment.systemPackages = [ selectedAlg.pkg ];
|
|
|
|
# ensure database user to be used to perform backup exist.
|
|
services.mysql.ensureUsers = [
|
|
{
|
|
name = cfg.user;
|
|
ensurePermissions =
|
|
let
|
|
privs = "SELECT, SHOW VIEW, TRIGGER, LOCK TABLES";
|
|
grant = db: lib.nameValuePair "\\`${db}\\`.*" privs;
|
|
in
|
|
lib.listToAttrs (map grant cfg.databases);
|
|
}
|
|
];
|
|
|
|
systemd = {
|
|
timers.mysql-backup = {
|
|
description = "Mysql backup timer";
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = cfg.calendar;
|
|
AccuracySec = "5m";
|
|
Unit = "mysql-backup.service";
|
|
};
|
|
};
|
|
services.mysql-backup = {
|
|
description = "MySQL backup service";
|
|
enable = true;
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
User = cfg.user;
|
|
};
|
|
script = backupScript;
|
|
};
|
|
tmpfiles.rules = [
|
|
"d ${cfg.location} 0700 ${cfg.user} - - -"
|
|
];
|
|
};
|
|
};
|
|
|
|
meta.maintainers = [ lib.maintainers._6543 ];
|
|
}
|