123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962 |
- from binascii import hexlify, unhexlify
- from datetime import datetime
- from itertools import zip_longest
- from operator import attrgetter
- import argparse
- import collections
- import functools
- import hashlib
- import inspect
- import io
- import os
- import shlex
- import signal
- import stat
- import sys
- import textwrap
- import traceback
- from . import __version__
- from .helpers import Error, location_validator, archivename_validator, format_time, format_file_size, \
- parse_pattern, PathPrefixPattern, to_localtime, timestamp, \
- get_cache_dir, prune_within, prune_split, \
- Manifest, remove_surrogates, update_excludes, format_archive, check_extension_modules, Statistics, \
- dir_is_tagged, ChunkerParams, CompressionSpec, is_slow_msgpack, yes, sysinfo, \
- log_multi, PatternMatcher, ItemFormatter
- from .logger import create_logger, setup_logging
- logger = create_logger()
- from .compress import Compressor, COMPR_BUFFER
- from .upgrader import AtticRepositoryUpgrader, BorgRepositoryUpgrader
- from .repository import Repository
- from .cache import Cache
- from .constants import * # NOQA
- from .key import key_creator, RepoKey, PassphraseKey
- from .archive import Archive, ArchiveChecker, ArchiveRecreater
- from .remote import RepositoryServer, RemoteRepository, cache_if_remote
- from .hashindex import ChunkIndexEntry
- has_lchflags = hasattr(os, 'lchflags')
- def argument(args, str_or_bool):
- """If bool is passed, return it. If str is passed, retrieve named attribute from args."""
- if isinstance(str_or_bool, str):
- return getattr(args, str_or_bool)
- return str_or_bool
- def with_repository(fake=False, create=False, lock=True, exclusive=False, manifest=True, cache=False):
- """
- Method decorator for subcommand-handling methods: do_XYZ(self, args, repository, …)
- If a parameter (where allowed) is a str the attribute named of args is used instead.
- :param fake: (str or bool) use None instead of repository, don't do anything else
- :param create: create repository
- :param lock: lock repository
- :param exclusive: (str or bool) lock repository exclusively (for writing)
- :param manifest: load manifest and key, pass them as keyword arguments
- :param cache: open cache, pass it as keyword argument (implies manifest)
- """
- def decorator(method):
- @functools.wraps(method)
- def wrapper(self, args, **kwargs):
- location = args.location # note: 'location' must be always present in args
- if argument(args, fake):
- return method(self, args, repository=None, **kwargs)
- elif location.proto == 'ssh':
- repository = RemoteRepository(location, create=create, lock_wait=self.lock_wait, lock=lock, args=args)
- else:
- repository = Repository(location.path, create=create, exclusive=argument(args, exclusive),
- lock_wait=self.lock_wait, lock=lock)
- with repository:
- if manifest or cache:
- kwargs['manifest'], kwargs['key'] = Manifest.load(repository)
- if cache:
- with Cache(repository, kwargs['key'], kwargs['manifest'],
- do_files=getattr(args, 'cache_files', False), lock_wait=self.lock_wait) as cache_:
- return method(self, args, repository=repository, cache=cache_, **kwargs)
- else:
- return method(self, args, repository=repository, **kwargs)
- return wrapper
- return decorator
- def with_archive(method):
- @functools.wraps(method)
- def wrapper(self, args, repository, key, manifest, **kwargs):
- archive = Archive(repository, key, manifest, args.location.archive,
- numeric_owner=getattr(args, 'numeric_owner', False), cache=kwargs.get('cache'))
- return method(self, args, repository=repository, manifest=manifest, key=key, archive=archive, **kwargs)
- return wrapper
- class Archiver:
- def __init__(self, lock_wait=None):
- self.exit_code = EXIT_SUCCESS
- self.lock_wait = lock_wait
- def print_error(self, msg, *args):
- msg = args and msg % args or msg
- self.exit_code = EXIT_ERROR
- logger.error(msg)
- def print_warning(self, msg, *args):
- msg = args and msg % args or msg
- self.exit_code = EXIT_WARNING # we do not terminate here, so it is a warning
- logger.warning(msg)
- def print_file_status(self, status, path):
- if self.output_list and (self.output_filter is None or status in self.output_filter):
- logger.info("%1s %s", status, remove_surrogates(path))
- @staticmethod
- def compare_chunk_contents(chunks1, chunks2):
- """Compare two chunk iterators (like returned by :meth:`.DownloadPipeline.fetch_many`)"""
- end = object()
- alen = ai = 0
- blen = bi = 0
- while True:
- if not alen - ai:
- a = next(chunks1, end)
- if a is end:
- return not blen - bi and next(chunks2, end) is end
- a = memoryview(a)
- alen = len(a)
- ai = 0
- if not blen - bi:
- b = next(chunks2, end)
- if b is end:
- return not alen - ai and next(chunks1, end) is end
- b = memoryview(b)
- blen = len(b)
- bi = 0
- slicelen = min(alen - ai, blen - bi)
- if a[ai:ai + slicelen] != b[bi:bi + slicelen]:
- return False
- ai += slicelen
- bi += slicelen
- @staticmethod
- def build_matcher(excludes, paths):
- matcher = PatternMatcher()
- if excludes:
- matcher.add(excludes, False)
- include_patterns = []
- if paths:
- include_patterns.extend(parse_pattern(i, PathPrefixPattern) for i in paths)
- matcher.add(include_patterns, True)
- matcher.fallback = not include_patterns
- return matcher, include_patterns
- def do_serve(self, args):
- """Start in server mode. This command is usually not used manually.
- """
- return RepositoryServer(restrict_to_paths=args.restrict_to_paths).serve()
- @with_repository(create=True, exclusive=True, manifest=False)
- def do_init(self, args, repository):
- """Initialize an empty repository"""
- logger.info('Initializing repository at "%s"' % args.location.canonical_path())
- try:
- key = key_creator(repository, args)
- except (EOFError, KeyboardInterrupt):
- repository.destroy()
- return EXIT_WARNING
- manifest = Manifest(key, repository)
- manifest.key = key
- manifest.write()
- repository.commit()
- with Cache(repository, key, manifest, warn_if_unencrypted=False):
- pass
- return self.exit_code
- @with_repository(exclusive='repair', manifest=False)
- def do_check(self, args, repository):
- """Check repository consistency"""
- if args.repair:
- msg = ("'check --repair' is an experimental feature that might result in data loss." +
- "\n" +
- "Type 'YES' if you understand this and want to continue: ")
- if not yes(msg, false_msg="Aborting.", truish=('YES', ),
- env_var_override='BORG_CHECK_I_KNOW_WHAT_I_AM_DOING'):
- return EXIT_ERROR
- if not args.archives_only:
- if not repository.check(repair=args.repair, save_space=args.save_space):
- return EXIT_WARNING
- if not args.repo_only and not ArchiveChecker().check(
- repository, repair=args.repair, archive=args.location.archive,
- last=args.last, prefix=args.prefix, save_space=args.save_space):
- return EXIT_WARNING
- return EXIT_SUCCESS
- @with_repository()
- def do_change_passphrase(self, args, repository, manifest, key):
- """Change repository key file passphrase"""
- key.change_passphrase()
- return EXIT_SUCCESS
- @with_repository(manifest=False)
- def do_migrate_to_repokey(self, args, repository):
- """Migrate passphrase -> repokey"""
- manifest_data = repository.get(Manifest.MANIFEST_ID)
- key_old = PassphraseKey.detect(repository, manifest_data)
- key_new = RepoKey(repository)
- key_new.target = repository
- key_new.repository_id = repository.id
- key_new.enc_key = key_old.enc_key
- key_new.enc_hmac_key = key_old.enc_hmac_key
- key_new.id_key = key_old.id_key
- key_new.chunk_seed = key_old.chunk_seed
- key_new.change_passphrase() # option to change key protection passphrase, save
- return EXIT_SUCCESS
- @with_repository(fake='dry_run')
- def do_create(self, args, repository, manifest=None, key=None):
- """Create new archive"""
- matcher = PatternMatcher(fallback=True)
- if args.excludes:
- matcher.add(args.excludes, False)
- def create_inner(archive, cache):
- # Add cache dir to inode_skip list
- skip_inodes = set()
- try:
- st = os.stat(get_cache_dir())
- skip_inodes.add((st.st_ino, st.st_dev))
- except OSError:
- pass
- # Add local repository dir to inode_skip list
- if not args.location.host:
- try:
- st = os.stat(args.location.path)
- skip_inodes.add((st.st_ino, st.st_dev))
- except OSError:
- pass
- for path in args.paths:
- if path == '-': # stdin
- path = 'stdin'
- if not dry_run:
- try:
- status = archive.process_stdin(path, cache)
- except OSError as e:
- status = 'E'
- self.print_warning('%s: %s', path, e)
- else:
- status = '-'
- self.print_file_status(status, path)
- continue
- path = os.path.normpath(path)
- if args.one_file_system:
- try:
- restrict_dev = os.lstat(path).st_dev
- except OSError as e:
- self.print_warning('%s: %s', path, e)
- continue
- else:
- restrict_dev = None
- self._process(archive, cache, matcher, args.exclude_caches, args.exclude_if_present,
- args.keep_tag_files, skip_inodes, path, restrict_dev,
- read_special=args.read_special, dry_run=dry_run)
- if not dry_run:
- archive.save(comment=args.comment, timestamp=args.timestamp)
- if args.progress:
- archive.stats.show_progress(final=True)
- if args.stats:
- archive.end = datetime.utcnow()
- log_multi(DASHES,
- str(archive),
- DASHES,
- str(archive.stats),
- str(cache),
- DASHES)
- self.output_filter = args.output_filter
- self.output_list = args.output_list
- self.ignore_inode = args.ignore_inode
- dry_run = args.dry_run
- t0 = datetime.utcnow()
- if not dry_run:
- compr_args = dict(buffer=COMPR_BUFFER)
- compr_args.update(args.compression)
- key.compressor = Compressor(**compr_args)
- with Cache(repository, key, manifest, do_files=args.cache_files, lock_wait=self.lock_wait) as cache:
- archive = Archive(repository, key, manifest, args.location.archive, cache=cache,
- create=True, checkpoint_interval=args.checkpoint_interval,
- numeric_owner=args.numeric_owner, progress=args.progress,
- chunker_params=args.chunker_params, start=t0)
- create_inner(archive, cache)
- else:
- create_inner(None, None)
- return self.exit_code
- def _process(self, archive, cache, matcher, exclude_caches, exclude_if_present,
- keep_tag_files, skip_inodes, path, restrict_dev,
- read_special=False, dry_run=False):
- if not matcher.match(path):
- self.print_file_status('x', path)
- return
- try:
- st = os.lstat(path)
- except OSError as e:
- self.print_warning('%s: %s', path, e)
- return
- if (st.st_ino, st.st_dev) in skip_inodes:
- return
- # Entering a new filesystem?
- if restrict_dev is not None and st.st_dev != restrict_dev:
- return
- status = None
- # Ignore if nodump flag is set
- if has_lchflags and (st.st_flags & stat.UF_NODUMP):
- return
- if stat.S_ISREG(st.st_mode) or read_special and not stat.S_ISDIR(st.st_mode):
- if not dry_run:
- try:
- status = archive.process_file(path, st, cache, self.ignore_inode)
- except OSError as e:
- status = 'E'
- self.print_warning('%s: %s', path, e)
- elif stat.S_ISDIR(st.st_mode):
- tag_paths = dir_is_tagged(path, exclude_caches, exclude_if_present)
- if tag_paths:
- if keep_tag_files and not dry_run:
- archive.process_dir(path, st)
- for tag_path in tag_paths:
- self._process(archive, cache, matcher, exclude_caches, exclude_if_present,
- keep_tag_files, skip_inodes, tag_path, restrict_dev,
- read_special=read_special, dry_run=dry_run)
- return
- if not dry_run:
- status = archive.process_dir(path, st)
- try:
- entries = os.listdir(path)
- except OSError as e:
- status = 'E'
- self.print_warning('%s: %s', path, e)
- else:
- for filename in sorted(entries):
- entry_path = os.path.normpath(os.path.join(path, filename))
- self._process(archive, cache, matcher, exclude_caches, exclude_if_present,
- keep_tag_files, skip_inodes, entry_path, restrict_dev,
- read_special=read_special, dry_run=dry_run)
- elif stat.S_ISLNK(st.st_mode):
- if not dry_run:
- status = archive.process_symlink(path, st)
- elif stat.S_ISFIFO(st.st_mode):
- if not dry_run:
- status = archive.process_fifo(path, st)
- elif stat.S_ISCHR(st.st_mode) or stat.S_ISBLK(st.st_mode):
- if not dry_run:
- status = archive.process_dev(path, st)
- elif stat.S_ISSOCK(st.st_mode):
- # Ignore unix sockets
- return
- elif stat.S_ISDOOR(st.st_mode):
- # Ignore Solaris doors
- return
- elif stat.S_ISPORT(st.st_mode):
- # Ignore Solaris event ports
- return
- else:
- self.print_warning('Unknown file type: %s', path)
- return
- # Status output
- if status is None:
- if not dry_run:
- status = '?' # need to add a status code somewhere
- else:
- status = '-' # dry run, item was not backed up
- self.print_file_status(status, path)
- @with_repository()
- @with_archive
- def do_extract(self, args, repository, manifest, key, archive):
- """Extract archive contents"""
- # be restrictive when restoring files, restore permissions later
- if sys.getfilesystemencoding() == 'ascii':
- logger.warning('Warning: File system encoding is "ascii", extracting non-ascii filenames will not be supported.')
- if sys.platform.startswith(('linux', 'freebsd', 'netbsd', 'openbsd', 'darwin', )):
- logger.warning('Hint: You likely need to fix your locale setup. E.g. install locales and use: LANG=en_US.UTF-8')
- matcher, include_patterns = self.build_matcher(args.excludes, args.paths)
- output_list = args.output_list
- dry_run = args.dry_run
- stdout = args.stdout
- sparse = args.sparse
- strip_components = args.strip_components
- dirs = []
- partial_extract = not matcher.empty() or strip_components
- hardlink_masters = {} if partial_extract else None
- def item_is_hardlink_master(item):
- return (partial_extract and stat.S_ISREG(item[b'mode']) and
- item.get(b'hardlink_master', True) and b'source' not in item)
- for item in archive.iter_items(preload=True,
- filter=lambda item: item_is_hardlink_master(item) or matcher.match(item[b'path'])):
- orig_path = item[b'path']
- if item_is_hardlink_master(item):
- hardlink_masters[orig_path] = (item.get(b'chunks'), None)
- if not matcher.match(item[b'path']):
- continue
- if strip_components:
- item[b'path'] = os.sep.join(orig_path.split(os.sep)[strip_components:])
- if not item[b'path']:
- continue
- if not args.dry_run:
- while dirs and not item[b'path'].startswith(dirs[-1][b'path']):
- archive.extract_item(dirs.pop(-1), stdout=stdout)
- if output_list:
- logger.info(remove_surrogates(orig_path))
- try:
- if dry_run:
- archive.extract_item(item, dry_run=True)
- else:
- if stat.S_ISDIR(item[b'mode']):
- dirs.append(item)
- archive.extract_item(item, restore_attrs=False)
- else:
- archive.extract_item(item, stdout=stdout, sparse=sparse, hardlink_masters=hardlink_masters,
- original_path=orig_path)
- except OSError as e:
- self.print_warning('%s: %s', remove_surrogates(orig_path), e)
- if not args.dry_run:
- while dirs:
- archive.extract_item(dirs.pop(-1))
- for pattern in include_patterns:
- if pattern.match_count == 0:
- self.print_warning("Include pattern '%s' never matched.", pattern)
- return self.exit_code
- @with_repository()
- @with_archive
- def do_diff(self, args, repository, manifest, key, archive):
- """Diff contents of two archives"""
- def fetch_and_compare_chunks(chunk_ids1, chunk_ids2, archive1, archive2):
- chunks1 = archive1.pipeline.fetch_many(chunk_ids1)
- chunks2 = archive2.pipeline.fetch_many(chunk_ids2)
- return self.compare_chunk_contents(chunks1, chunks2)
- def sum_chunk_size(item, consider_ids=None):
- if item.get(b'deleted'):
- return None
- else:
- return sum(c.size for c in item[b'chunks']
- if consider_ids is None or c.id in consider_ids)
- def get_owner(item):
- if args.numeric_owner:
- return item[b'uid'], item[b'gid']
- else:
- return item[b'user'], item[b'group']
- def get_mode(item):
- if b'mode' in item:
- return stat.filemode(item[b'mode'])
- else:
- return [None]
- def has_hardlink_master(item, hardlink_masters):
- return item.get(b'source') in hardlink_masters and get_mode(item)[0] != 'l'
- def compare_link(item1, item2):
- # These are the simple link cases. For special cases, e.g. if a
- # regular file is replaced with a link or vice versa, it is
- # indicated in compare_mode instead.
- if item1.get(b'deleted'):
- return 'added link'
- elif item2.get(b'deleted'):
- return 'removed link'
- elif b'source' in item1 and b'source' in item2 and item1[b'source'] != item2[b'source']:
- return 'changed link'
- def contents_changed(item1, item2):
- if can_compare_chunk_ids:
- return item1[b'chunks'] != item2[b'chunks']
- else:
- if sum_chunk_size(item1) != sum_chunk_size(item2):
- return True
- else:
- chunk_ids1 = [c.id for c in item1[b'chunks']]
- chunk_ids2 = [c.id for c in item2[b'chunks']]
- return not fetch_and_compare_chunks(chunk_ids1, chunk_ids2, archive1, archive2)
- def compare_content(path, item1, item2):
- if contents_changed(item1, item2):
- if item1.get(b'deleted'):
- return ('added {:>13}'.format(format_file_size(sum_chunk_size(item2))))
- elif item2.get(b'deleted'):
- return ('removed {:>11}'.format(format_file_size(sum_chunk_size(item1))))
- else:
- chunk_ids1 = {c.id for c in item1[b'chunks']}
- chunk_ids2 = {c.id for c in item2[b'chunks']}
- added_ids = chunk_ids2 - chunk_ids1
- removed_ids = chunk_ids1 - chunk_ids2
- added = sum_chunk_size(item2, added_ids)
- removed = sum_chunk_size(item1, removed_ids)
- return ('{:>9} {:>9}'.format(format_file_size(added, precision=1, sign=True),
- format_file_size(-removed, precision=1, sign=True)))
- def compare_directory(item1, item2):
- if item2.get(b'deleted') and not item1.get(b'deleted'):
- return 'removed directory'
- elif item1.get(b'deleted') and not item2.get(b'deleted'):
- return 'added directory'
- def compare_owner(item1, item2):
- user1, group1 = get_owner(item1)
- user2, group2 = get_owner(item2)
- if user1 != user2 or group1 != group2:
- return '[{}:{} -> {}:{}]'.format(user1, group1, user2, group2)
- def compare_mode(item1, item2):
- if item1[b'mode'] != item2[b'mode']:
- return '[{} -> {}]'.format(get_mode(item1), get_mode(item2))
- def compare_items(output, path, item1, item2, hardlink_masters, deleted=False):
- """
- Compare two items with identical paths.
- :param deleted: Whether one of the items has been deleted
- """
- changes = []
- if item1.get(b'hardlink_master') or item2.get(b'hardlink_master'):
- hardlink_masters[path] = (item1, item2)
- if has_hardlink_master(item1, hardlink_masters):
- item1 = hardlink_masters[item1[b'source']][0]
- if has_hardlink_master(item2, hardlink_masters):
- item2 = hardlink_masters[item2[b'source']][1]
- if get_mode(item1)[0] == 'l' or get_mode(item2)[0] == 'l':
- changes.append(compare_link(item1, item2))
- if b'chunks' in item1 and b'chunks' in item2:
- changes.append(compare_content(path, item1, item2))
- if get_mode(item1)[0] == 'd' or get_mode(item2)[0] == 'd':
- changes.append(compare_directory(item1, item2))
- if not deleted:
- changes.append(compare_owner(item1, item2))
- changes.append(compare_mode(item1, item2))
- changes = [x for x in changes if x]
- if changes:
- output_line = (remove_surrogates(path), ' '.join(changes))
- if args.sort:
- output.append(output_line)
- else:
- print_output(output_line)
- def print_output(line):
- print("{:<19} {}".format(line[1], line[0]))
- def compare_archives(archive1, archive2, matcher):
- orphans_archive1 = collections.OrderedDict()
- orphans_archive2 = collections.OrderedDict()
- hardlink_masters = {}
- output = []
- for item1, item2 in zip_longest(
- archive1.iter_items(lambda item: matcher.match(item[b'path'])),
- archive2.iter_items(lambda item: matcher.match(item[b'path'])),
- ):
- if item1 and item2 and item1[b'path'] == item2[b'path']:
- compare_items(output, item1[b'path'], item1, item2, hardlink_masters)
- continue
- if item1:
- matching_orphan = orphans_archive2.pop(item1[b'path'], None)
- if matching_orphan:
- compare_items(output, item1[b'path'], item1, matching_orphan, hardlink_masters)
- else:
- orphans_archive1[item1[b'path']] = item1
- if item2:
- matching_orphan = orphans_archive1.pop(item2[b'path'], None)
- if matching_orphan:
- compare_items(output, item2[b'path'], matching_orphan, item2, hardlink_masters)
- else:
- orphans_archive2[item2[b'path']] = item2
- # At this point orphans_* contain items that had no matching partner in the other archive
- for added in orphans_archive2.values():
- compare_items(output, added[b'path'], {
- b'deleted': True,
- b'chunks': [],
- }, added, hardlink_masters, deleted=True)
- for deleted in orphans_archive1.values():
- compare_items(output, deleted[b'path'], deleted, {
- b'deleted': True,
- b'chunks': [],
- }, hardlink_masters, deleted=True)
- for line in sorted(output):
- print_output(line)
- archive1 = archive
- archive2 = Archive(repository, key, manifest, args.archive2)
- can_compare_chunk_ids = archive1.metadata.get(b'chunker_params', False) == archive2.metadata.get(
- b'chunker_params', True) or args.same_chunker_params
- if not can_compare_chunk_ids:
- self.print_warning('--chunker-params might be different between archives, diff will be slow.\n'
- 'If you know for certain that they are the same, pass --same-chunker-params '
- 'to override this check.')
- matcher, include_patterns = self.build_matcher(args.excludes, args.paths)
- compare_archives(archive1, archive2, matcher)
- for pattern in include_patterns:
- if pattern.match_count == 0:
- self.print_warning("Include pattern '%s' never matched.", pattern)
- return self.exit_code
- @with_repository(exclusive=True, cache=True)
- @with_archive
- def do_rename(self, args, repository, manifest, key, cache, archive):
- """Rename an existing archive"""
- archive.rename(args.name)
- manifest.write()
- repository.commit()
- cache.commit()
- return self.exit_code
- @with_repository(exclusive=True)
- def do_delete(self, args, repository, manifest, key):
- """Delete an existing repository or archive"""
- if args.location.archive:
- with Cache(repository, key, manifest, lock_wait=self.lock_wait) as cache:
- archive = Archive(repository, key, manifest, args.location.archive, cache=cache)
- stats = Statistics()
- archive.delete(stats, progress=args.progress)
- manifest.write()
- repository.commit(save_space=args.save_space)
- cache.commit()
- logger.info("Archive deleted.")
- if args.stats:
- log_multi(DASHES,
- stats.summary.format(label='Deleted data:', stats=stats),
- str(cache),
- DASHES)
- else:
- if not args.cache_only:
- msg = []
- msg.append("You requested to completely DELETE the repository *including* all archives it contains:")
- for archive_info in manifest.list_archive_infos(sort_by='ts'):
- msg.append(format_archive(archive_info))
- msg.append("Type 'YES' if you understand this and want to continue: ")
- msg = '\n'.join(msg)
- if not yes(msg, false_msg="Aborting.", truish=('YES', ),
- env_var_override='BORG_DELETE_I_KNOW_WHAT_I_AM_DOING'):
- self.exit_code = EXIT_ERROR
- return self.exit_code
- repository.destroy()
- logger.info("Repository deleted.")
- Cache.destroy(repository)
- logger.info("Cache deleted.")
- return self.exit_code
- @with_repository()
- def do_mount(self, args, repository, manifest, key):
- """Mount archive or an entire repository as a FUSE fileystem"""
- try:
- from .fuse import FuseOperations
- except ImportError as e:
- self.print_error('Loading fuse support failed [ImportError: %s]' % str(e))
- return self.exit_code
- if not os.path.isdir(args.mountpoint) or not os.access(args.mountpoint, os.R_OK | os.W_OK | os.X_OK):
- self.print_error('%s: Mountpoint must be a writable directory' % args.mountpoint)
- return self.exit_code
- with cache_if_remote(repository) as cached_repo:
- if args.location.archive:
- archive = Archive(repository, key, manifest, args.location.archive)
- else:
- archive = None
- operations = FuseOperations(key, repository, manifest, archive, cached_repo)
- logger.info("Mounting filesystem")
- try:
- operations.mount(args.mountpoint, args.options, args.foreground)
- except RuntimeError:
- # Relevant error message already printed to stderr by fuse
- self.exit_code = EXIT_ERROR
- return self.exit_code
- @with_repository()
- def do_list(self, args, repository, manifest, key):
- """List archive or repository contents"""
- if args.location.archive:
- matcher, _ = self.build_matcher(args.excludes, args.paths)
- with Cache(repository, key, manifest, lock_wait=self.lock_wait) as cache:
- archive = Archive(repository, key, manifest, args.location.archive, cache=cache)
- if args.format:
- format = args.format
- elif args.short:
- format = "{path}{NL}"
- else:
- format = "{mode} {user:6} {group:6} {size:8} {isomtime} {path}{extra}{NL}"
- formatter = ItemFormatter(archive, format)
- if not hasattr(sys.stdout, 'buffer'):
- # This is a shim for supporting unit tests replacing sys.stdout with e.g. StringIO,
- # which doesn't have an underlying buffer (= lower file object).
- def write(bytestring):
- sys.stdout.write(bytestring.decode('utf-8', errors='replace'))
- else:
- write = sys.stdout.buffer.write
- for item in archive.iter_items(lambda item: matcher.match(item[b'path'])):
- write(formatter.format_item(item).encode('utf-8', errors='surrogateescape'))
- else:
- for archive_info in manifest.list_archive_infos(sort_by='ts'):
- if args.prefix and not archive_info.name.startswith(args.prefix):
- continue
- if args.short:
- print(archive_info.name)
- else:
- print(format_archive(archive_info))
- return self.exit_code
- @with_repository(cache=True)
- @with_archive
- def do_info(self, args, repository, manifest, key, archive, cache):
- """Show archive details such as disk space used"""
- def format_cmdline(cmdline):
- return remove_surrogates(' '.join(shlex.quote(x) for x in cmdline))
- stats = archive.calc_stats(cache)
- print('Name:', archive.name)
- print('Fingerprint: %s' % hexlify(archive.id).decode('ascii'))
- print('Comment:', archive.metadata.get(b'comment', ''))
- print('Hostname:', archive.metadata[b'hostname'])
- print('Username:', archive.metadata[b'username'])
- print('Time (start): %s' % format_time(to_localtime(archive.ts)))
- print('Time (end): %s' % format_time(to_localtime(archive.ts_end)))
- print('Command line:', format_cmdline(archive.metadata[b'cmdline']))
- print('Number of files: %d' % stats.nfiles)
- print()
- print(str(stats))
- print(str(cache))
- return self.exit_code
- @with_repository()
- def do_prune(self, args, repository, manifest, key):
- """Prune repository archives according to specified rules"""
- archives = manifest.list_archive_infos(sort_by='ts', reverse=True) # just a ArchiveInfo list
- if args.hourly + args.daily + args.weekly + args.monthly + args.yearly == 0 and args.within is None:
- self.print_error('At least one of the "keep-within", "keep-hourly", "keep-daily", "keep-weekly", '
- '"keep-monthly" or "keep-yearly" settings must be specified')
- return self.exit_code
- if args.prefix:
- archives = [archive for archive in archives if archive.name.startswith(args.prefix)]
- keep = []
- if args.within:
- keep += prune_within(archives, args.within)
- if args.hourly:
- keep += prune_split(archives, '%Y-%m-%d %H', args.hourly, keep)
- if args.daily:
- keep += prune_split(archives, '%Y-%m-%d', args.daily, keep)
- if args.weekly:
- keep += prune_split(archives, '%G-%V', args.weekly, keep)
- if args.monthly:
- keep += prune_split(archives, '%Y-%m', args.monthly, keep)
- if args.yearly:
- keep += prune_split(archives, '%Y', args.yearly, keep)
- keep.sort(key=attrgetter('ts'), reverse=True)
- to_delete = [a for a in archives if a not in keep]
- stats = Statistics()
- with Cache(repository, key, manifest, do_files=args.cache_files, lock_wait=self.lock_wait) as cache:
- for archive in keep:
- if args.output_list:
- logger.info('Keeping archive: %s' % format_archive(archive))
- for archive in to_delete:
- if args.dry_run:
- if args.output_list:
- logger.info('Would prune: %s' % format_archive(archive))
- else:
- if args.output_list:
- logger.info('Pruning archive: %s' % format_archive(archive))
- Archive(repository, key, manifest, archive.name, cache).delete(stats)
- if to_delete and not args.dry_run:
- manifest.write()
- repository.commit(save_space=args.save_space)
- cache.commit()
- if args.stats:
- log_multi(DASHES,
- stats.summary.format(label='Deleted data:', stats=stats),
- str(cache),
- DASHES)
- return self.exit_code
- def do_upgrade(self, args):
- """upgrade a repository from a previous version"""
- # mainly for upgrades from Attic repositories,
- # but also supports borg 0.xx -> 1.0 upgrade.
- repo = AtticRepositoryUpgrader(args.location.path, create=False)
- try:
- repo.upgrade(args.dry_run, inplace=args.inplace, progress=args.progress)
- except NotImplementedError as e:
- print("warning: %s" % e)
- repo = BorgRepositoryUpgrader(args.location.path, create=False)
- try:
- repo.upgrade(args.dry_run, inplace=args.inplace, progress=args.progress)
- except NotImplementedError as e:
- print("warning: %s" % e)
- return self.exit_code
- @with_repository(cache=True, exclusive=True)
- def do_recreate(self, args, repository, manifest, key, cache):
- """Re-create archives"""
- def interrupt(signal_num, stack_frame):
- if recreater.interrupt:
- print("\nReceived signal, again. I'm not deaf.", file=sys.stderr)
- else:
- print("\nReceived signal, will exit cleanly.", file=sys.stderr)
- recreater.interrupt = True
- msg = ("recreate is an experimental feature.\n"
- "Type 'YES' if you understand this and want to continue: ")
- if not yes(msg, false_msg="Aborting.", truish=('YES',),
- env_var_override='BORG_RECREATE_I_KNOW_WHAT_I_AM_DOING'):
- return EXIT_ERROR
- matcher, include_patterns = self.build_matcher(args.excludes, args.paths)
- self.output_list = args.output_list
- self.output_filter = args.output_filter
- recreater = ArchiveRecreater(repository, manifest, key, cache, matcher,
- exclude_caches=args.exclude_caches, exclude_if_present=args.exclude_if_present,
- keep_tag_files=args.keep_tag_files,
- compression=args.compression, chunker_params=args.chunker_params,
- progress=args.progress, stats=args.stats,
- file_status_printer=self.print_file_status,
- dry_run=args.dry_run)
- signal.signal(signal.SIGTERM, interrupt)
- signal.signal(signal.SIGINT, interrupt)
- if args.location.archive:
- name = args.location.archive
- if recreater.is_temporary_archive(name):
- self.print_error('Refusing to work on temporary archive of prior recreate: %s', name)
- return self.exit_code
- recreater.recreate(name, args.comment)
- else:
- for archive in manifest.list_archive_infos(sort_by='ts'):
- name = archive.name
- if recreater.is_temporary_archive(name):
- continue
- print('Processing', name)
- if not recreater.recreate(name, args.comment):
- break
- manifest.write()
- repository.commit()
- cache.commit()
- return self.exit_code
- @with_repository()
- def do_debug_dump_archive_items(self, args, repository, manifest, key):
- """dump (decrypted, decompressed) archive items metadata (not: data)"""
- archive = Archive(repository, key, manifest, args.location.archive)
- for i, item_id in enumerate(archive.metadata[b'items']):
- data = key.decrypt(item_id, repository.get(item_id))
- filename = '%06d_%s.items' % (i, hexlify(item_id).decode('ascii'))
- print('Dumping', filename)
- with open(filename, 'wb') as fd:
- fd.write(data)
- print('Done.')
- return EXIT_SUCCESS
- @with_repository(manifest=False)
- def do_debug_get_obj(self, args, repository):
- """get object contents from the repository and write it into file"""
- hex_id = args.id
- try:
- id = unhexlify(hex_id)
- except ValueError:
- print("object id %s is invalid." % hex_id)
- else:
- try:
- data = repository.get(id)
- except repository.ObjectNotFound:
- print("object %s not found." % hex_id)
- else:
- with open(args.path, "wb") as f:
- f.write(data)
- print("object %s fetched." % hex_id)
- return EXIT_SUCCESS
- @with_repository(manifest=False)
- def do_debug_put_obj(self, args, repository):
- """put file(s) contents into the repository"""
- for path in args.paths:
- with open(path, "rb") as f:
- data = f.read()
- h = hashlib.sha256(data) # XXX hardcoded
- repository.put(h.digest(), data)
- print("object %s put." % h.hexdigest())
- repository.commit()
- return EXIT_SUCCESS
- @with_repository(manifest=False)
- def do_debug_delete_obj(self, args, repository):
- """delete the objects with the given IDs from the repo"""
- modified = False
- for hex_id in args.ids:
- try:
- id = unhexlify(hex_id)
- except ValueError:
- print("object id %s is invalid." % hex_id)
- else:
- try:
- repository.delete(id)
- modified = True
- print("object %s deleted." % hex_id)
- except repository.ObjectNotFound:
- print("object %s not found." % hex_id)
- if modified:
- repository.commit()
- print('Done.')
- return EXIT_SUCCESS
- @with_repository(lock=False, manifest=False)
- def do_break_lock(self, args, repository):
- """Break the repository lock (e.g. in case it was left by a dead borg."""
- repository.break_lock()
- Cache.break_lock(repository)
- return self.exit_code
- helptext = {}
- helptext['patterns'] = textwrap.dedent('''
- Exclusion patterns support four separate styles, fnmatch, shell, regular
- expressions and path prefixes. If followed by a colon (':') the first two
- characters of a pattern are used as a style selector. Explicit style
- selection is necessary when a non-default style is desired or when the
- desired pattern starts with two alphanumeric characters followed by a colon
- (i.e. `aa:something/*`).
- `Fnmatch <https://docs.python.org/3/library/fnmatch.html>`_, selector `fm:`
- These patterns use a variant of shell pattern syntax, with '*' matching
- any number of characters, '?' matching any single character, '[...]'
- matching any single character specified, including ranges, and '[!...]'
- matching any character not specified. For the purpose of these patterns,
- the path separator ('\\' for Windows and '/' on other systems) is not
- treated specially. Wrap meta-characters in brackets for a literal match
- (i.e. `[?]` to match the literal character `?`). For a path to match
- a pattern, it must completely match from start to end, or must match from
- the start to just before a path separator. Except for the root path,
- paths will never end in the path separator when matching is attempted.
- Thus, if a given pattern ends in a path separator, a '*' is appended
- before matching is attempted.
- Shell-style patterns, selector `sh:`
- Like fnmatch patterns these are similar to shell patterns. The difference
- is that the pattern may include `**/` for matching zero or more directory
- levels, `*` for matching zero or more arbitrary characters with the
- exception of any path separator.
- Regular expressions, selector `re:`
- Regular expressions similar to those found in Perl are supported. Unlike
- shell patterns regular expressions are not required to match the complete
- path and any substring match is sufficient. It is strongly recommended to
- anchor patterns to the start ('^'), to the end ('$') or both. Path
- separators ('\\' for Windows and '/' on other systems) in paths are
- always normalized to a forward slash ('/') before applying a pattern. The
- regular expression syntax is described in the `Python documentation for
- the re module <https://docs.python.org/3/library/re.html>`_.
- Prefix path, selector `pp:`
- This pattern style is useful to match whole sub-directories. The pattern
- `pp:/data/bar` matches `/data/bar` and everything therein.
- Exclusions can be passed via the command line option `--exclude`. When used
- from within a shell the patterns should be quoted to protect them from
- expansion.
- The `--exclude-from` option permits loading exclusion patterns from a text
- file with one pattern per line. Lines empty or starting with the number sign
- ('#') after removing whitespace on both ends are ignored. The optional style
- selector prefix is also supported for patterns loaded from a file. Due to
- whitespace removal paths with whitespace at the beginning or end can only be
- excluded using regular expressions.
- Examples:
- # Exclude '/home/user/file.o' but not '/home/user/file.odt':
- $ borg create -e '*.o' backup /
- # Exclude '/home/user/junk' and '/home/user/subdir/junk' but
- # not '/home/user/importantjunk' or '/etc/junk':
- $ borg create -e '/home/*/junk' backup /
- # Exclude the contents of '/home/user/cache' but not the directory itself:
- $ borg create -e /home/user/cache/ backup /
- # The file '/home/user/cache/important' is *not* backed up:
- $ borg create -e /home/user/cache/ backup / /home/user/cache/important
- # The contents of directories in '/home' are not backed up when their name
- # ends in '.tmp'
- $ borg create --exclude 're:^/home/[^/]+\.tmp/' backup /
- # Load exclusions from file
- $ cat >exclude.txt <<EOF
- # Comment line
- /home/*/junk
- *.tmp
- fm:aa:something/*
- re:^/home/[^/]\.tmp/
- sh:/home/*/.thumbnails
- EOF
- $ borg create --exclude-from exclude.txt backup /
- ''')
- def do_help(self, parser, commands, args):
- if not args.topic:
- parser.print_help()
- elif args.topic in self.helptext:
- print(self.helptext[args.topic])
- elif args.topic in commands:
- if args.epilog_only:
- print(commands[args.topic].epilog)
- elif args.usage_only:
- commands[args.topic].epilog = None
- commands[args.topic].print_help()
- else:
- commands[args.topic].print_help()
- else:
- parser.error('No help available on %s' % (args.topic,))
- return self.exit_code
- def preprocess_args(self, args):
- deprecations = [
- # ('--old', '--new', 'Warning: "--old" has been deprecated. Use "--new" instead.'),
- ('--list-format', '--format', 'Warning: "--list-format" has been deprecated. Use "--format" instead.'),
- ]
- for i, arg in enumerate(args[:]):
- for old_name, new_name, warning in deprecations:
- if arg.startswith(old_name):
- args[i] = arg.replace(old_name, new_name)
- self.print_warning(warning)
- return args
- def build_parser(self, args=None, prog=None):
- common_parser = argparse.ArgumentParser(add_help=False, prog=prog)
- common_group = common_parser.add_argument_group('Common options')
- common_group.add_argument('-h', '--help', action='help', help='show this help message and exit')
- common_group.add_argument('--critical', dest='log_level',
- action='store_const', const='critical', default='warning',
- help='work on log level CRITICAL')
- common_group.add_argument('--error', dest='log_level',
- action='store_const', const='error', default='warning',
- help='work on log level ERROR')
- common_group.add_argument('--warning', dest='log_level',
- action='store_const', const='warning', default='warning',
- help='work on log level WARNING (default)')
- common_group.add_argument('--info', '-v', '--verbose', dest='log_level',
- action='store_const', const='info', default='warning',
- help='work on log level INFO')
- common_group.add_argument('--debug', dest='log_level',
- action='store_const', const='debug', default='warning',
- help='enable debug output, work on log level DEBUG')
- common_group.add_argument('--lock-wait', dest='lock_wait', type=int, metavar='N', default=1,
- help='wait for the lock, but max. N seconds (default: %(default)d).')
- common_group.add_argument('--show-version', dest='show_version', action='store_true', default=False,
- help='show/log the borg version')
- common_group.add_argument('--show-rc', dest='show_rc', action='store_true', default=False,
- help='show/log the return code (rc)')
- common_group.add_argument('--no-files-cache', dest='cache_files', action='store_false',
- help='do not load/update the file metadata cache used to detect unchanged files')
- common_group.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=UMASK_DEFAULT, metavar='M',
- help='set umask to M (local and remote, default: %(default)04o)')
- common_group.add_argument('--remote-path', dest='remote_path', default='borg', metavar='PATH',
- help='set remote path to executable (default: "%(default)s")')
- parser = argparse.ArgumentParser(prog=prog, description='Borg - Deduplicated Backups')
- parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__,
- help='show version number and exit')
- subparsers = parser.add_subparsers(title='required arguments', metavar='<command>')
- serve_epilog = textwrap.dedent("""
- This command starts a repository server process. This command is usually not used manually.
- """)
- subparser = subparsers.add_parser('serve', parents=[common_parser], add_help=False,
- description=self.do_serve.__doc__, epilog=serve_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='start repository server process')
- subparser.set_defaults(func=self.do_serve)
- subparser.add_argument('--restrict-to-path', dest='restrict_to_paths', action='append',
- metavar='PATH', help='restrict repository access to PATH')
- init_epilog = textwrap.dedent("""
- This command initializes an empty repository. A repository is a filesystem
- directory containing the deduplicated data from zero or more archives.
- Encryption can be enabled at repository init time.
- """)
- subparser = subparsers.add_parser('init', parents=[common_parser], add_help=False,
- description=self.do_init.__doc__, epilog=init_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='initialize empty repository')
- subparser.set_defaults(func=self.do_init)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='repository to create')
- subparser.add_argument('-e', '--encryption', dest='encryption',
- choices=('none', 'keyfile', 'repokey'), default='repokey',
- help='select encryption key mode (default: "%(default)s")')
- check_epilog = textwrap.dedent("""
- The check command verifies the consistency of a repository and the corresponding archives.
- First, the underlying repository data files are checked:
- - For all segments the segment magic (header) is checked
- - For all objects stored in the segments, all metadata (e.g. crc and size) and
- all data is read. The read data is checked by size and CRC. Bit rot and other
- types of accidental damage can be detected this way.
- - If we are in repair mode and a integrity error is detected for a segment,
- we try to recover as many objects from the segment as possible.
- - In repair mode, it makes sure that the index is consistent with the data
- stored in the segments.
- - If you use a remote repo server via ssh:, the repo check is executed on the
- repo server without causing significant network traffic.
- - The repository check can be skipped using the --archives-only option.
- Second, the consistency and correctness of the archive metadata is verified:
- - Is the repo manifest present? If not, it is rebuilt from archive metadata
- chunks (this requires reading and decrypting of all metadata and data).
- - Check if archive metadata chunk is present. if not, remove archive from
- manifest.
- - For all files (items) in the archive, for all chunks referenced by these
- files, check if chunk is present (if not and we are in repair mode, replace
- it with a same-size chunk of zeros). This requires reading of archive and
- file metadata, but not data.
- - If we are in repair mode and we checked all the archives: delete orphaned
- chunks from the repo.
- - if you use a remote repo server via ssh:, the archive check is executed on
- the client machine (because if encryption is enabled, the checks will require
- decryption and this is always done client-side, because key access will be
- required).
- - The archive checks can be time consuming, they can be skipped using the
- --repository-only option.
- """)
- subparser = subparsers.add_parser('check', parents=[common_parser], add_help=False,
- description=self.do_check.__doc__,
- epilog=check_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='verify repository')
- subparser.set_defaults(func=self.do_check)
- subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='',
- type=location_validator(),
- help='repository or archive to check consistency of')
- subparser.add_argument('--repository-only', dest='repo_only', action='store_true',
- default=False,
- help='only perform repository checks')
- subparser.add_argument('--archives-only', dest='archives_only', action='store_true',
- default=False,
- help='only perform archives checks')
- subparser.add_argument('--repair', dest='repair', action='store_true',
- default=False,
- help='attempt to repair any inconsistencies found')
- subparser.add_argument('--save-space', dest='save_space', action='store_true',
- default=False,
- help='work slower, but using less space')
- subparser.add_argument('--last', dest='last',
- type=int, default=None, metavar='N',
- help='only check last N archives (Default: all)')
- subparser.add_argument('-P', '--prefix', dest='prefix', type=str,
- help='only consider archive names starting with this prefix')
- change_passphrase_epilog = textwrap.dedent("""
- The key files used for repository encryption are optionally passphrase
- protected. This command can be used to change this passphrase.
- """)
- subparser = subparsers.add_parser('change-passphrase', parents=[common_parser], add_help=False,
- description=self.do_change_passphrase.__doc__,
- epilog=change_passphrase_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='change repository passphrase')
- subparser.set_defaults(func=self.do_change_passphrase)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False))
- migrate_to_repokey_epilog = textwrap.dedent("""
- This command migrates a repository from passphrase mode (not supported any
- more) to repokey mode.
- You will be first asked for the repository passphrase (to open it in passphrase
- mode). This is the same passphrase as you used to use for this repo before 1.0.
- It will then derive the different secrets from this passphrase.
- Then you will be asked for a new passphrase (twice, for safety). This
- passphrase will be used to protect the repokey (which contains these same
- secrets in encrypted form). You may use the same passphrase as you used to
- use, but you may also use a different one.
- After migrating to repokey mode, you can change the passphrase at any time.
- But please note: the secrets will always stay the same and they could always
- be derived from your (old) passphrase-mode passphrase.
- """)
- subparser = subparsers.add_parser('migrate-to-repokey', parents=[common_parser], add_help=False,
- description=self.do_migrate_to_repokey.__doc__,
- epilog=migrate_to_repokey_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='migrate passphrase-mode repository to repokey')
- subparser.set_defaults(func=self.do_migrate_to_repokey)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False))
- create_epilog = textwrap.dedent("""
- This command creates a backup archive containing all files found while recursively
- traversing all paths specified. The archive will consume almost no disk space for
- files or parts of files that have already been stored in other archives.
- To speed up pulling backups over sshfs and similar network file systems which do
- not provide correct inode information the --ignore-inode flag can be used. This
- potentially decreases reliability of change detection, while avoiding always reading
- all files on these file systems.
- See the output of the "borg help patterns" command for more help on exclude patterns.
- """)
- subparser = subparsers.add_parser('create', parents=[common_parser], add_help=False,
- description=self.do_create.__doc__,
- epilog=create_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='create backup')
- subparser.set_defaults(func=self.do_create)
- subparser.add_argument('-n', '--dry-run', dest='dry_run',
- action='store_true', default=False,
- help='do not create a backup archive')
- subparser.add_argument('-s', '--stats', dest='stats',
- action='store_true', default=False,
- help='print statistics for the created archive')
- subparser.add_argument('-p', '--progress', dest='progress',
- action='store_true', default=False,
- help='show progress display while creating the archive, showing Original, '
- 'Compressed and Deduplicated sizes, followed by the Number of files seen '
- 'and the path being processed, default: %(default)s')
- subparser.add_argument('--list', dest='output_list',
- action='store_true', default=False,
- help='output verbose list of items (files, dirs, ...)')
- subparser.add_argument('--filter', dest='output_filter', metavar='STATUSCHARS',
- help='only display items with the given status characters')
- exclude_group = subparser.add_argument_group('Exclusion options')
- exclude_group.add_argument('-e', '--exclude', dest='excludes',
- type=parse_pattern, action='append',
- metavar="PATTERN", help='exclude paths matching PATTERN')
- exclude_group.add_argument('--exclude-from', dest='exclude_files',
- type=argparse.FileType('r'), action='append',
- metavar='EXCLUDEFILE', help='read exclude patterns from EXCLUDEFILE, one per line')
- exclude_group.add_argument('--exclude-caches', dest='exclude_caches',
- action='store_true', default=False,
- help='exclude directories that contain a CACHEDIR.TAG file ('
- 'http://www.brynosaurus.com/cachedir/spec.html)')
- exclude_group.add_argument('--exclude-if-present', dest='exclude_if_present',
- metavar='FILENAME', action='append', type=str,
- help='exclude directories that contain the specified file')
- exclude_group.add_argument('--keep-tag-files', dest='keep_tag_files',
- action='store_true', default=False,
- help='keep tag files of excluded caches/directories')
- fs_group = subparser.add_argument_group('Filesystem options')
- fs_group.add_argument('-x', '--one-file-system', dest='one_file_system',
- action='store_true', default=False,
- help='stay in same file system, do not cross mount points')
- fs_group.add_argument('--numeric-owner', dest='numeric_owner',
- action='store_true', default=False,
- help='only store numeric user and group identifiers')
- fs_group.add_argument('--ignore-inode', dest='ignore_inode',
- action='store_true', default=False,
- help='ignore inode data in the file metadata cache used to detect unchanged files.')
- fs_group.add_argument('--read-special', dest='read_special',
- action='store_true', default=False,
- help='open and read special files as if they were regular files')
- archive_group = subparser.add_argument_group('Archive options')
- archive_group.add_argument('--comment', dest='comment', metavar='COMMENT', default='',
- help='add a comment text to the archive')
- archive_group.add_argument('--timestamp', dest='timestamp',
- type=timestamp, default=None,
- metavar='yyyy-mm-ddThh:mm:ss',
- help='manually specify the archive creation date/time (UTC). '
- 'alternatively, give a reference file/directory.')
- archive_group.add_argument('-c', '--checkpoint-interval', dest='checkpoint_interval',
- type=int, default=300, metavar='SECONDS',
- help='write checkpoint every SECONDS seconds (Default: 300)')
- archive_group.add_argument('--chunker-params', dest='chunker_params',
- type=ChunkerParams, default=CHUNKER_PARAMS,
- metavar='CHUNK_MIN_EXP,CHUNK_MAX_EXP,HASH_MASK_BITS,HASH_WINDOW_SIZE',
- help='specify the chunker parameters. default: %d,%d,%d,%d' % CHUNKER_PARAMS)
- archive_group.add_argument('-C', '--compression', dest='compression',
- type=CompressionSpec, default=dict(name='none'), metavar='COMPRESSION',
- help='select compression algorithm (and level):\n'
- 'none == no compression (default),\n'
- 'lz4 == lz4,\n'
- 'zlib == zlib (default level 6),\n'
- 'zlib,0 .. zlib,9 == zlib (with level 0..9),\n'
- 'lzma == lzma (default level 6),\n'
- 'lzma,0 .. lzma,9 == lzma (with level 0..9).')
- subparser.add_argument('location', metavar='ARCHIVE',
- type=location_validator(archive=True),
- help='name of archive to create (must be also a valid directory name)')
- subparser.add_argument('paths', metavar='PATH', nargs='+', type=str,
- help='paths to archive')
- extract_epilog = textwrap.dedent("""
- This command extracts the contents of an archive. By default the entire
- archive is extracted but a subset of files and directories can be selected
- by passing a list of ``PATHs`` as arguments. The file selection can further
- be restricted by using the ``--exclude`` option.
- See the output of the "borg help patterns" command for more help on exclude patterns.
- """)
- subparser = subparsers.add_parser('extract', parents=[common_parser], add_help=False,
- description=self.do_extract.__doc__,
- epilog=extract_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='extract archive contents')
- subparser.set_defaults(func=self.do_extract)
- subparser.add_argument('--list', dest='output_list',
- action='store_true', default=False,
- help='output verbose list of items (files, dirs, ...)')
- subparser.add_argument('-n', '--dry-run', dest='dry_run',
- default=False, action='store_true',
- help='do not actually change any files')
- subparser.add_argument('-e', '--exclude', dest='excludes',
- type=parse_pattern, action='append',
- metavar="PATTERN", help='exclude paths matching PATTERN')
- subparser.add_argument('--exclude-from', dest='exclude_files',
- type=argparse.FileType('r'), action='append',
- metavar='EXCLUDEFILE', help='read exclude patterns from EXCLUDEFILE, one per line')
- subparser.add_argument('--numeric-owner', dest='numeric_owner',
- action='store_true', default=False,
- help='only obey numeric user and group identifiers')
- subparser.add_argument('--strip-components', dest='strip_components',
- type=int, default=0, metavar='NUMBER',
- help='Remove the specified number of leading path elements. Pathnames with fewer elements will be silently skipped.')
- subparser.add_argument('--stdout', dest='stdout',
- action='store_true', default=False,
- help='write all extracted data to stdout')
- subparser.add_argument('--sparse', dest='sparse',
- action='store_true', default=False,
- help='create holes in output sparse file from all-zero chunks')
- subparser.add_argument('location', metavar='ARCHIVE',
- type=location_validator(archive=True),
- help='archive to extract')
- subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
- help='paths to extract; patterns are supported')
- diff_epilog = textwrap.dedent("""
- This command finds differences in files (contents, user, group, mode) between archives.
- Both archives need to be in the same repository, and a repository location may only
- be specified for ARCHIVE1.
- For archives created with Borg 1.1 or newer diff automatically detects whether
- the archives are created with the same chunker params. If so, only chunk IDs
- are compared, which is very fast.
- For archives prior to Borg 1.1 chunk contents are compared by default.
- If you did not create the archives with different chunker params,
- pass --same-chunker-params.
- Note that the chunker params changed from Borg 0.xx to 1.0.
- See the output of the "borg help patterns" command for more help on exclude patterns.
- """)
- subparser = subparsers.add_parser('diff', parents=[common_parser], add_help=False,
- description=self.do_diff.__doc__,
- epilog=diff_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='find differences in archive contents')
- subparser.set_defaults(func=self.do_diff)
- subparser.add_argument('-e', '--exclude', dest='excludes',
- type=parse_pattern, action='append',
- metavar="PATTERN", help='exclude paths matching PATTERN')
- subparser.add_argument('--exclude-from', dest='exclude_files',
- type=argparse.FileType('r'), action='append',
- metavar='EXCLUDEFILE', help='read exclude patterns from EXCLUDEFILE, one per line')
- subparser.add_argument('--numeric-owner', dest='numeric_owner',
- action='store_true', default=False,
- help='only consider numeric user and group identifiers')
- subparser.add_argument('--same-chunker-params', dest='same_chunker_params',
- action='store_true', default=False,
- help='Override check of chunker parameters.')
- subparser.add_argument('--sort', dest='sort',
- action='store_true', default=False,
- help='Sort the output lines by file path.')
- subparser.add_argument('location', metavar='ARCHIVE1',
- type=location_validator(archive=True),
- help='archive')
- subparser.add_argument('archive2', metavar='ARCHIVE2',
- type=archivename_validator(),
- help='archive to compare with ARCHIVE1 (no repository location)')
- subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
- help='paths to compare; patterns are supported')
- rename_epilog = textwrap.dedent("""
- This command renames an archive in the repository.
- This results in a different archive ID.
- """)
- subparser = subparsers.add_parser('rename', parents=[common_parser], add_help=False,
- description=self.do_rename.__doc__,
- epilog=rename_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='rename archive')
- subparser.set_defaults(func=self.do_rename)
- subparser.add_argument('location', metavar='ARCHIVE',
- type=location_validator(archive=True),
- help='archive to rename')
- subparser.add_argument('name', metavar='NEWNAME',
- type=archivename_validator(),
- help='the new archive name to use')
- delete_epilog = textwrap.dedent("""
- This command deletes an archive from the repository or the complete repository.
- Disk space is reclaimed accordingly. If you delete the complete repository, the
- local cache for it (if any) is also deleted.
- """)
- subparser = subparsers.add_parser('delete', parents=[common_parser], add_help=False,
- description=self.do_delete.__doc__,
- epilog=delete_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='delete archive')
- subparser.set_defaults(func=self.do_delete)
- subparser.add_argument('-p', '--progress', dest='progress',
- action='store_true', default=False,
- help="""show progress display while deleting a single archive""")
- subparser.add_argument('-s', '--stats', dest='stats',
- action='store_true', default=False,
- help='print statistics for the deleted archive')
- subparser.add_argument('-c', '--cache-only', dest='cache_only',
- action='store_true', default=False,
- help='delete only the local cache for the given repository')
- subparser.add_argument('--save-space', dest='save_space', action='store_true',
- default=False,
- help='work slower, but using less space')
- subparser.add_argument('location', metavar='TARGET', nargs='?', default='',
- type=location_validator(),
- help='archive or repository to delete')
- list_epilog = textwrap.dedent("""
- This command lists the contents of a repository or an archive.
- See the "borg help patterns" command for more help on exclude patterns.
- The following keys are available for --format when listing files:
- """) + ItemFormatter.keys_help()
- subparser = subparsers.add_parser('list', parents=[common_parser], add_help=False,
- description=self.do_list.__doc__,
- epilog=list_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='list archive or repository contents')
- subparser.set_defaults(func=self.do_list)
- subparser.add_argument('--short', dest='short',
- action='store_true', default=False,
- help='only print file/directory names, nothing else')
- subparser.add_argument('--format', '--list-format', dest='format', type=str,
- help="""specify format for file listing
- (default: "{mode} {user:6} {group:6} {size:8d} {isomtime} {path}{extra}{NL}")""")
- subparser.add_argument('-P', '--prefix', dest='prefix', type=str,
- help='only consider archive names starting with this prefix')
- subparser.add_argument('-e', '--exclude', dest='excludes',
- type=parse_pattern, action='append',
- metavar="PATTERN", help='exclude paths matching PATTERN')
- subparser.add_argument('--exclude-from', dest='exclude_files',
- type=argparse.FileType('r'), action='append',
- metavar='EXCLUDEFILE', help='read exclude patterns from EXCLUDEFILE, one per line')
- subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='',
- type=location_validator(),
- help='repository/archive to list contents of')
- subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
- help='paths to list; patterns are supported')
- mount_epilog = textwrap.dedent("""
- This command mounts an archive as a FUSE filesystem. This can be useful for
- browsing an archive or restoring individual files. Unless the ``--foreground``
- option is given the command will run in the background until the filesystem
- is ``umounted``.
- The command ``borgfs`` provides a wrapper for ``borg mount``. This can also be
- used in fstab entries:
- ``/path/to/repo /mnt/point fuse.borgfs defaults,noauto 0 0``
- To allow a regular user to use fstab entries, add the ``user`` option:
- ``/path/to/repo /mnt/point fuse.borgfs defaults,noauto,user 0 0``
- """)
- subparser = subparsers.add_parser('mount', parents=[common_parser], add_help=False,
- description=self.do_mount.__doc__,
- epilog=mount_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='mount repository')
- subparser.set_defaults(func=self.do_mount)
- subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', type=location_validator(),
- help='repository/archive to mount')
- subparser.add_argument('mountpoint', metavar='MOUNTPOINT', type=str,
- help='where to mount filesystem')
- subparser.add_argument('-f', '--foreground', dest='foreground',
- action='store_true', default=False,
- help='stay in foreground, do not daemonize')
- subparser.add_argument('-o', dest='options', type=str,
- help='Extra mount options')
- info_epilog = textwrap.dedent("""
- This command displays some detailed information about the specified archive.
- """)
- subparser = subparsers.add_parser('info', parents=[common_parser], add_help=False,
- description=self.do_info.__doc__,
- epilog=info_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='show archive information')
- subparser.set_defaults(func=self.do_info)
- subparser.add_argument('location', metavar='ARCHIVE',
- type=location_validator(archive=True),
- help='archive to display information about')
- break_lock_epilog = textwrap.dedent("""
- This command breaks the repository and cache locks.
- Please use carefully and only while no borg process (on any machine) is
- trying to access the Cache or the Repository.
- """)
- subparser = subparsers.add_parser('break-lock', parents=[common_parser], add_help=False,
- description=self.do_break_lock.__doc__,
- epilog=break_lock_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='break repository and cache locks')
- subparser.set_defaults(func=self.do_break_lock)
- subparser.add_argument('location', metavar='REPOSITORY',
- type=location_validator(archive=False),
- help='repository for which to break the locks')
- prune_epilog = textwrap.dedent("""
- The prune command prunes a repository by deleting archives not matching
- any of the specified retention options. This command is normally used by
- automated backup scripts wanting to keep a certain number of historic backups.
- As an example, "-d 7" means to keep the latest backup on each day, up to 7
- most recent days with backups (days without backups do not count).
- The rules are applied from hourly to yearly, and backups selected by previous
- rules do not count towards those of later rules. The time that each backup
- completes is used for pruning purposes. Dates and times are interpreted in
- the local timezone, and weeks go from Monday to Sunday. Specifying a
- negative number of archives to keep means that there is no limit.
- The "--keep-within" option takes an argument of the form "<int><char>",
- where char is "H", "d", "w", "m", "y". For example, "--keep-within 2d" means
- to keep all archives that were created within the past 48 hours.
- "1m" is taken to mean "31d". The archives kept with this option do not
- count towards the totals specified by any other options.
- If a prefix is set with -P, then only archives that start with the prefix are
- considered for deletion and only those archives count towards the totals
- specified by the rules.
- Otherwise, *all* archives in the repository are candidates for deletion!
- """)
- subparser = subparsers.add_parser('prune', parents=[common_parser], add_help=False,
- description=self.do_prune.__doc__,
- epilog=prune_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='prune archives')
- subparser.set_defaults(func=self.do_prune)
- subparser.add_argument('-n', '--dry-run', dest='dry_run',
- default=False, action='store_true',
- help='do not change repository')
- subparser.add_argument('-s', '--stats', dest='stats',
- action='store_true', default=False,
- help='print statistics for the deleted archive')
- subparser.add_argument('--list', dest='output_list',
- action='store_true', default=False,
- help='output verbose list of archives it keeps/prunes')
- subparser.add_argument('--keep-within', dest='within', type=str, metavar='WITHIN',
- help='keep all archives within this time interval')
- subparser.add_argument('-H', '--keep-hourly', dest='hourly', type=int, default=0,
- help='number of hourly archives to keep')
- subparser.add_argument('-d', '--keep-daily', dest='daily', type=int, default=0,
- help='number of daily archives to keep')
- subparser.add_argument('-w', '--keep-weekly', dest='weekly', type=int, default=0,
- help='number of weekly archives to keep')
- subparser.add_argument('-m', '--keep-monthly', dest='monthly', type=int, default=0,
- help='number of monthly archives to keep')
- subparser.add_argument('-y', '--keep-yearly', dest='yearly', type=int, default=0,
- help='number of yearly archives to keep')
- subparser.add_argument('-P', '--prefix', dest='prefix', type=str,
- help='only consider archive names starting with this prefix')
- subparser.add_argument('--save-space', dest='save_space', action='store_true',
- default=False,
- help='work slower, but using less space')
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='repository to prune')
- upgrade_epilog = textwrap.dedent("""
- Upgrade an existing Borg repository.
- This currently supports converting an Attic repository to Borg and also
- helps with converting Borg 0.xx to 1.0.
- Currently, only LOCAL repositories can be upgraded (issue #465).
- It will change the magic strings in the repository's segments
- to match the new Borg magic strings. The keyfiles found in
- $ATTIC_KEYS_DIR or ~/.attic/keys/ will also be converted and
- copied to $BORG_KEYS_DIR or ~/.config/borg/keys.
- The cache files are converted, from $ATTIC_CACHE_DIR or
- ~/.cache/attic to $BORG_CACHE_DIR or ~/.cache/borg, but the
- cache layout between Borg and Attic changed, so it is possible
- the first backup after the conversion takes longer than expected
- due to the cache resync.
- Upgrade should be able to resume if interrupted, although it
- will still iterate over all segments. If you want to start
- from scratch, use `borg delete` over the copied repository to
- make sure the cache files are also removed:
- borg delete borg
- Unless ``--inplace`` is specified, the upgrade process first
- creates a backup copy of the repository, in
- REPOSITORY.upgrade-DATETIME, using hardlinks. This takes
- longer than in place upgrades, but is much safer and gives
- progress information (as opposed to ``cp -al``). Once you are
- satisfied with the conversion, you can safely destroy the
- backup copy.
- WARNING: Running the upgrade in place will make the current
- copy unusable with older version, with no way of going back
- to previous versions. This can PERMANENTLY DAMAGE YOUR
- REPOSITORY! Attic CAN NOT READ BORG REPOSITORIES, as the
- magic strings have changed. You have been warned.""")
- subparser = subparsers.add_parser('upgrade', parents=[common_parser], add_help=False,
- description=self.do_upgrade.__doc__,
- epilog=upgrade_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='upgrade repository format')
- subparser.set_defaults(func=self.do_upgrade)
- subparser.add_argument('-p', '--progress', dest='progress',
- action='store_true', default=False,
- help="""show progress display while upgrading the repository""")
- subparser.add_argument('-n', '--dry-run', dest='dry_run',
- default=False, action='store_true',
- help='do not change repository')
- subparser.add_argument('-i', '--inplace', dest='inplace',
- default=False, action='store_true',
- help="""rewrite repository in place, with no chance of going back to older
- versions of the repository.""")
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='path to the repository to be upgraded')
- recreate_epilog = textwrap.dedent("""
- Recreate the contents of existing archives.
- --exclude, --exclude-from and PATH have the exact same semantics
- as in "borg create". If PATHs are specified the resulting archive
- will only contain files from these PATHs.
- --compression: all chunks seen will be stored using the given method.
- Due to how Borg stores compressed size information this might display
- incorrect information for archives that were not recreated at the same time.
- There is no risk of data loss by this.
- --chunker-params will re-chunk all files in the archive, this can be
- used to have upgraded Borg 0.xx or Attic archives deduplicate with
- Borg 1.x archives.
- borg recreate is signal safe. Send either SIGINT (Ctrl-C on most terminals) or
- SIGTERM to request termination.
- Use the *exact same* command line to resume the operation later - changing excludes
- or paths will lead to inconsistencies (changed excludes will only apply to newly
- processed files/dirs). Changing compression leads to incorrect size information
- (which does not cause any data loss, but can be misleading).
- Changing chunker params between invocations might lead to data loss.
- USE WITH CAUTION.
- Depending on the PATHs and patterns given, recreate can be used to permanently
- delete files from archives.
- When in doubt, use "--dry-run --verbose --list" to see how patterns/PATHS are
- interpreted.
- The archive being recreated is only removed after the operation completes. The
- archive that is built during the operation exists at the same time at
- "<ARCHIVE>.recreate". The new archive will have a different archive ID.
- When rechunking space usage can be substantial, expect at least the entire
- deduplicated size of the archives using the previous chunker params.
- When recompressing approximately 1 % of the repository size or 512 MB
- (whichever is greater) of additional space is used.
- """)
- subparser = subparsers.add_parser('recreate', parents=[common_parser], add_help=False,
- description=self.do_recreate.__doc__,
- epilog=recreate_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help=self.do_recreate.__doc__)
- subparser.set_defaults(func=self.do_recreate)
- subparser.add_argument('--list', dest='output_list',
- action='store_true', default=False,
- help='output verbose list of items (files, dirs, ...)')
- subparser.add_argument('--filter', dest='output_filter', metavar='STATUSCHARS',
- help='only display items with the given status characters')
- subparser.add_argument('-p', '--progress', dest='progress',
- action='store_true', default=False,
- help='show progress display while recreating archives')
- subparser.add_argument('-n', '--dry-run', dest='dry_run',
- action='store_true', default=False,
- help='do not change anything')
- subparser.add_argument('-s', '--stats', dest='stats',
- action='store_true', default=False,
- help='print statistics at end')
- exclude_group = subparser.add_argument_group('Exclusion options')
- exclude_group.add_argument('-e', '--exclude', dest='excludes',
- type=parse_pattern, action='append',
- metavar="PATTERN", help='exclude paths matching PATTERN')
- exclude_group.add_argument('--exclude-from', dest='exclude_files',
- type=argparse.FileType('r'), action='append',
- metavar='EXCLUDEFILE', help='read exclude patterns from EXCLUDEFILE, one per line')
- exclude_group.add_argument('--exclude-caches', dest='exclude_caches',
- action='store_true', default=False,
- help='exclude directories that contain a CACHEDIR.TAG file ('
- 'http://www.brynosaurus.com/cachedir/spec.html)')
- exclude_group.add_argument('--exclude-if-present', dest='exclude_if_present',
- metavar='FILENAME', action='append', type=str,
- help='exclude directories that contain the specified file')
- exclude_group.add_argument('--keep-tag-files', dest='keep_tag_files',
- action='store_true', default=False,
- help='keep tag files of excluded caches/directories')
- archive_group = subparser.add_argument_group('Archive options')
- archive_group.add_argument('--comment', dest='comment', metavar='COMMENT', default=None,
- help='add a comment text to the archive')
- archive_group.add_argument('--timestamp', dest='timestamp',
- type=timestamp, default=None,
- metavar='yyyy-mm-ddThh:mm:ss',
- help='manually specify the archive creation date/time (UTC). '
- 'alternatively, give a reference file/directory.')
- archive_group.add_argument('-C', '--compression', dest='compression',
- type=CompressionSpec, default=None, metavar='COMPRESSION',
- help='select compression algorithm (and level):\n'
- 'none == no compression (default),\n'
- 'lz4 == lz4,\n'
- 'zlib == zlib (default level 6),\n'
- 'zlib,0 .. zlib,9 == zlib (with level 0..9),\n'
- 'lzma == lzma (default level 6),\n'
- 'lzma,0 .. lzma,9 == lzma (with level 0..9).')
- archive_group.add_argument('--chunker-params', dest='chunker_params',
- type=ChunkerParams, default=None,
- metavar='CHUNK_MIN_EXP,CHUNK_MAX_EXP,HASH_MASK_BITS,HASH_WINDOW_SIZE',
- help='specify the chunker parameters (or "default").')
- subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='',
- type=location_validator(),
- help='repository/archive to recreate')
- subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
- help='paths to recreate; patterns are supported')
- subparser = subparsers.add_parser('help', parents=[common_parser], add_help=False,
- description='Extra help')
- subparser.add_argument('--epilog-only', dest='epilog_only',
- action='store_true', default=False)
- subparser.add_argument('--usage-only', dest='usage_only',
- action='store_true', default=False)
- subparser.set_defaults(func=functools.partial(self.do_help, parser, subparsers.choices))
- subparser.add_argument('topic', metavar='TOPIC', type=str, nargs='?',
- help='additional help on TOPIC')
- debug_dump_archive_items_epilog = textwrap.dedent("""
- This command dumps raw (but decrypted and decompressed) archive items (only metadata) to files.
- """)
- subparser = subparsers.add_parser('debug-dump-archive-items', parents=[common_parser], add_help=False,
- description=self.do_debug_dump_archive_items.__doc__,
- epilog=debug_dump_archive_items_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='dump archive items (metadata) (debug)')
- subparser.set_defaults(func=self.do_debug_dump_archive_items)
- subparser.add_argument('location', metavar='ARCHIVE',
- type=location_validator(archive=True),
- help='archive to dump')
- debug_get_obj_epilog = textwrap.dedent("""
- This command gets an object from the repository.
- """)
- subparser = subparsers.add_parser('debug-get-obj', parents=[common_parser], add_help=False,
- description=self.do_debug_get_obj.__doc__,
- epilog=debug_get_obj_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='get object from repository (debug)')
- subparser.set_defaults(func=self.do_debug_get_obj)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='repository to use')
- subparser.add_argument('id', metavar='ID', type=str,
- help='hex object ID to get from the repo')
- subparser.add_argument('path', metavar='PATH', type=str,
- help='file to write object data into')
- debug_put_obj_epilog = textwrap.dedent("""
- This command puts objects into the repository.
- """)
- subparser = subparsers.add_parser('debug-put-obj', parents=[common_parser], add_help=False,
- description=self.do_debug_put_obj.__doc__,
- epilog=debug_put_obj_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='put object to repository (debug)')
- subparser.set_defaults(func=self.do_debug_put_obj)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='repository to use')
- subparser.add_argument('paths', metavar='PATH', nargs='+', type=str,
- help='file(s) to read and create object(s) from')
- debug_delete_obj_epilog = textwrap.dedent("""
- This command deletes objects from the repository.
- """)
- subparser = subparsers.add_parser('debug-delete-obj', parents=[common_parser], add_help=False,
- description=self.do_debug_delete_obj.__doc__,
- epilog=debug_delete_obj_epilog,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- help='delete object from repository (debug)')
- subparser.set_defaults(func=self.do_debug_delete_obj)
- subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
- type=location_validator(archive=False),
- help='repository to use')
- subparser.add_argument('ids', metavar='IDs', nargs='+', type=str,
- help='hex object ID(s) to delete from the repo')
- return parser
- def get_args(self, argv, cmd):
- """usually, just returns argv, except if we deal with a ssh forced command for borg serve."""
- result = self.parse_args(argv[1:])
- if cmd is not None and result.func == self.do_serve:
- forced_result = result
- argv = shlex.split(cmd)
- result = self.parse_args(argv[1:])
- if result.func != forced_result.func:
- # someone is trying to execute a different borg subcommand, don't do that!
- return forced_result
- # the only thing we take from the forced "borg serve" ssh command is --restrict-to-path
- result.restrict_to_paths = forced_result.restrict_to_paths
- return result
- def parse_args(self, args=None):
- # We can't use argparse for "serve" since we don't want it to show up in "Available commands"
- if args:
- args = self.preprocess_args(args)
- parser = self.build_parser(args)
- args = parser.parse_args(args or ['-h'])
- update_excludes(args)
- return args
- def run(self, args):
- os.umask(args.umask) # early, before opening files
- self.lock_wait = args.lock_wait
- setup_logging(level=args.log_level, is_serve=args.func == self.do_serve) # do not use loggers before this!
- if args.show_version:
- logger.info('borgbackup version %s' % __version__)
- check_extension_modules()
- if is_slow_msgpack():
- logger.warning("Using a pure-python msgpack! This will result in lower performance.")
- return args.func(args)
- def sig_info_handler(signum, stack): # pragma: no cover
- """search the stack for infos about the currently processed file and print them"""
- for frame in inspect.getouterframes(stack):
- func, loc = frame[3], frame[0].f_locals
- if func in ('process_file', '_process', ): # create op
- path = loc['path']
- try:
- pos = loc['fd'].tell()
- total = loc['st'].st_size
- except Exception:
- pos, total = 0, 0
- logger.info("{0} {1}/{2}".format(path, format_file_size(pos), format_file_size(total)))
- break
- if func in ('extract_item', ): # extract op
- path = loc['item'][b'path']
- try:
- pos = loc['fd'].tell()
- except Exception:
- pos = 0
- logger.info("{0} {1}/???".format(path, format_file_size(pos)))
- break
- def setup_signal_handlers(): # pragma: no cover
- sigs = []
- if hasattr(signal, 'SIGUSR1'):
- sigs.append(signal.SIGUSR1) # kill -USR1 pid
- if hasattr(signal, 'SIGINFO'):
- sigs.append(signal.SIGINFO) # kill -INFO pid (or ctrl-t)
- for sig in sigs:
- signal.signal(sig, sig_info_handler)
- def main(): # pragma: no cover
- # provide 'borg mount' behaviour when the main script/executable is named borgfs
- if os.path.basename(sys.argv[0]) == "borgfs":
- sys.argv.insert(1, "mount")
- # Make sure stdout and stderr have errors='replace') to avoid unicode
- # issues when print()-ing unicode file names
- sys.stdout = io.TextIOWrapper(sys.stdout.buffer, sys.stdout.encoding, 'replace', line_buffering=True)
- sys.stderr = io.TextIOWrapper(sys.stderr.buffer, sys.stderr.encoding, 'replace', line_buffering=True)
- setup_signal_handlers()
- archiver = Archiver()
- msg = None
- args = archiver.get_args(sys.argv, os.environ.get('SSH_ORIGINAL_COMMAND'))
- try:
- exit_code = archiver.run(args)
- except Error as e:
- msg = e.get_message()
- if e.traceback:
- msg += "\n%s\n%s" % (traceback.format_exc(), sysinfo())
- exit_code = e.exit_code
- except RemoteRepository.RPCError as e:
- msg = '%s\n%s' % (str(e), sysinfo())
- exit_code = EXIT_ERROR
- except Exception:
- msg = 'Local Exception.\n%s\n%s' % (traceback.format_exc(), sysinfo())
- exit_code = EXIT_ERROR
- except KeyboardInterrupt:
- msg = 'Keyboard interrupt.\n%s\n%s' % (traceback.format_exc(), sysinfo())
- exit_code = EXIT_ERROR
- if msg:
- logger.error(msg)
- if args.show_rc:
- exit_msg = 'terminating with %s status, rc %d'
- if exit_code == EXIT_SUCCESS:
- logger.info(exit_msg % ('success', exit_code))
- elif exit_code == EXIT_WARNING:
- logger.warning(exit_msg % ('warning', exit_code))
- elif exit_code == EXIT_ERROR:
- logger.error(exit_msg % ('error', exit_code))
- else:
- logger.error(exit_msg % ('abnormal', exit_code or 666))
- sys.exit(exit_code)
- if __name__ == '__main__':
- main()
|