123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- import logging
- from borgmatic.execute import execute_command, execute_command_with_processes
- from borgmatic.hooks import dump
- logger = logging.getLogger(__name__)
- def make_dump_path(location_config): # pragma: no cover
- '''
- Make the dump path from the given location configuration and the name of this hook.
- '''
- return dump.make_database_dump_path(
- location_config.get('borgmatic_source_directory'), 'mysql_databases'
- )
- SYSTEM_DATABASE_NAMES = ('information_schema', 'mysql', 'performance_schema', 'sys')
- def database_names_to_dump(database, extra_environment, log_prefix, dry_run_label):
- '''
- Given a requested database name, return the corresponding sequence of database names to dump.
- In the case of "all", query for the names of databases on the configured host and return them,
- excluding any system databases that will cause problems during restore.
- '''
- requested_name = database['name']
- if requested_name != 'all':
- return (requested_name,)
- show_command = (
- ('mysql',)
- + (('--host', database['hostname']) if 'hostname' in database else ())
- + (('--port', str(database['port'])) if 'port' in database else ())
- + (('--protocol', 'tcp') if 'hostname' in database or 'port' in database else ())
- + (('--user', database['username']) if 'username' in database else ())
- + ('--skip-column-names', '--batch')
- + ('--execute', 'show schemas')
- )
- logger.debug(
- '{}: Querying for "all" MySQL databases to dump{}'.format(log_prefix, dry_run_label)
- )
- show_output = execute_command(
- show_command, output_log_level=None, extra_environment=extra_environment
- )
- return tuple(
- show_name
- for show_name in show_output.strip().splitlines()
- if show_name not in SYSTEM_DATABASE_NAMES
- )
- def dump_databases(databases, log_prefix, location_config, dry_run):
- '''
- Dump the given MySQL/MariaDB databases to a named pipe. The databases are supplied as a sequence
- of dicts, one dict describing each database as per the configuration schema. Use the given log
- prefix in any log entries. Use the given location configuration dict to construct the
- destination path.
- Return a sequence of subprocess.Popen instances for the dump processes ready to spew to a named
- pipe. But if this is a dry run, then don't actually dump anything and return an empty sequence.
- '''
- dry_run_label = ' (dry run; not actually dumping anything)' if dry_run else ''
- processes = []
- logger.info('{}: Dumping MySQL databases{}'.format(log_prefix, dry_run_label))
- for database in databases:
- requested_name = database['name']
- dump_filename = dump.make_database_dump_filename(
- make_dump_path(location_config), requested_name, database.get('hostname')
- )
- extra_environment = {'MYSQL_PWD': database['password']} if 'password' in database else None
- dump_command_names = database_names_to_dump(
- database, extra_environment, log_prefix, dry_run_label
- )
- dump_command = (
- ('mysqldump',)
- + ('--add-drop-database',)
- + (('--host', database['hostname']) if 'hostname' in database else ())
- + (('--port', str(database['port'])) if 'port' in database else ())
- + (('--protocol', 'tcp') if 'hostname' in database or 'port' in database else ())
- + (('--user', database['username']) if 'username' in database else ())
- + (tuple(database['options'].split(' ')) if 'options' in database else ())
- + ('--databases',)
- + dump_command_names
- # Use shell redirection rather than execute_command(output_file=open(...)) to prevent
- # the open() call on a named pipe from hanging the main borgmatic process.
- + ('>', dump_filename)
- )
- logger.debug(
- '{}: Dumping MySQL database {} to {}{}'.format(
- log_prefix, requested_name, dump_filename, dry_run_label
- )
- )
- if dry_run:
- continue
- dump.create_named_pipe_for_dump(dump_filename)
- processes.append(
- execute_command(
- dump_command,
- shell=True,
- extra_environment=extra_environment,
- run_to_completion=False,
- )
- )
- return processes
- def remove_database_dumps(databases, log_prefix, location_config, dry_run): # pragma: no cover
- '''
- Remove the database dumps for the given databases. The databases are supplied as a sequence of
- dicts, one dict describing each database as per the configuration schema. Use the log prefix in
- any log entries. Use the given location configuration dict to construct the destination path. If
- this is a dry run, then don't actually remove anything.
- '''
- dump.remove_database_dumps(
- make_dump_path(location_config), databases, 'MySQL', log_prefix, dry_run
- )
- def make_database_dump_pattern(
- databases, log_prefix, location_config, name=None
- ): # pragma: no cover
- '''
- Given a sequence of configurations dicts, a prefix to log with, a location configuration dict,
- and a database name to match, return the corresponding glob patterns to match the database dump
- in an archive.
- '''
- return dump.make_database_dump_filename(make_dump_path(location_config), name, hostname='*')
- def restore_database_dump(database_config, log_prefix, location_config, dry_run, extract_process):
- '''
- Restore the given MySQL/MariaDB database from an extract stream. The database is supplied as a
- one-element sequence containing a dict describing the database, as per the configuration schema.
- Use the given log prefix in any log entries. If this is a dry run, then don't actually restore
- anything. Trigger the given active extract process (an instance of subprocess.Popen) to produce
- output to consume.
- '''
- dry_run_label = ' (dry run; not actually restoring anything)' if dry_run else ''
- if len(database_config) != 1:
- raise ValueError('The database configuration value is invalid')
- database = database_config[0]
- restore_command = (
- ('mysql', '--batch', '--verbose')
- + (('--host', database['hostname']) if 'hostname' in database else ())
- + (('--port', str(database['port'])) if 'port' in database else ())
- + (('--protocol', 'tcp') if 'hostname' in database or 'port' in database else ())
- + (('--user', database['username']) if 'username' in database else ())
- )
- extra_environment = {'MYSQL_PWD': database['password']} if 'password' in database else None
- logger.debug(
- '{}: Restoring MySQL database {}{}'.format(log_prefix, database['name'], dry_run_label)
- )
- if dry_run:
- return
- execute_command_with_processes(
- restore_command,
- [extract_process],
- output_log_level=logging.DEBUG,
- input_file=extract_process.stdout,
- extra_environment=extra_environment,
- borg_local_path=location_config.get('local_path', 'borg'),
- )
|