data-structures.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. .. include:: ../global.rst.inc
  2. .. highlight:: none
  3. Data structures and file formats
  4. ================================
  5. .. _repository:
  6. Repository
  7. ----------
  8. .. Some parts of this description were taken from the Repository docstring
  9. |project_name| stores its data in a `Repository`, which is a filesystem-based
  10. transactional key-value store. Thus the repository does not know about
  11. the concept of archives or items.
  12. Each repository has the following file structure:
  13. README
  14. simple text file telling that this is a |project_name| repository
  15. config
  16. repository configuration
  17. data/
  18. directory where the actual data is stored
  19. hints.%d
  20. hints for repository compaction
  21. index.%d
  22. repository index
  23. lock.roster and lock.exclusive/*
  24. used by the locking system to manage shared and exclusive locks
  25. Transactionality is achieved by using a log (aka journal) to record changes. The log is a series of numbered files
  26. called segments_. Each segment is a series of log entries. The segment number together with the offset of each
  27. entry relative to its segment start establishes an ordering of the log entries. This is the "definition" of
  28. time for the purposes of the log.
  29. Config file
  30. ~~~~~~~~~~~
  31. Each repository has a ``config`` file which which is a ``INI``-style file
  32. and looks like this::
  33. [repository]
  34. version = 1
  35. segments_per_dir = 10000
  36. max_segment_size = 5242880
  37. id = 57d6c1d52ce76a836b532b0e42e677dec6af9fca3673db511279358828a21ed6
  38. This is where the ``repository.id`` is stored. It is a unique
  39. identifier for repositories. It will not change if you move the
  40. repository around so you can make a local transfer then decide to move
  41. the repository to another (even remote) location at a later time.
  42. Keys
  43. ~~~~
  44. Repository keys are byte-strings of fixed length (32 bytes), they
  45. don't have a particular meaning (except for the Manifest_).
  46. Normally the keys are computed like this::
  47. key = id = id_hash(unencrypted_data)
  48. The id_hash function depends on the :ref:`encryption mode <borg_init>`.
  49. Segments
  50. ~~~~~~~~
  51. A |project_name| repository is a filesystem based transactional key/value
  52. store. It makes extensive use of msgpack_ to store data and, unless
  53. otherwise noted, data is stored in msgpack_ encoded files.
  54. Objects referenced by a key are stored inline in files (`segments`) of approx.
  55. 500 MB size in numbered subdirectories of ``repo/data``.
  56. A segment starts with a magic number (``BORG_SEG`` as an eight byte ASCII string),
  57. followed by a number of log entries. Each log entry consists of:
  58. * size of the entry
  59. * CRC32 of the entire entry (for a PUT this includes the data)
  60. * entry tag: PUT, DELETE or COMMIT
  61. * PUT and DELETE follow this with the 32 byte key
  62. * PUT follow the key with the data
  63. Those files are strictly append-only and modified only once.
  64. Tag is either ``PUT``, ``DELETE``, or ``COMMIT``.
  65. When an object is written to the repository a ``PUT`` entry is written
  66. to the file containing the object id and data. If an object is deleted
  67. a ``DELETE`` entry is appended with the object id.
  68. A ``COMMIT`` tag is written when a repository transaction is
  69. committed.
  70. When a repository is opened any ``PUT`` or ``DELETE`` operations not
  71. followed by a ``COMMIT`` tag are discarded since they are part of a
  72. partial/uncommitted transaction.
  73. Compaction
  74. ~~~~~~~~~~
  75. For a given key only the last entry regarding the key, which is called current (all other entries are called
  76. superseded), is relevant: If there is no entry or the last entry is a DELETE then the key does not exist.
  77. Otherwise the last PUT defines the value of the key.
  78. By superseding a PUT (with either another PUT or a DELETE) the log entry becomes obsolete. A segment containing
  79. such obsolete entries is called sparse, while a segment containing no such entries is called compact.
  80. Since writing a ``DELETE`` tag does not actually delete any data and
  81. thus does not free disk space any log-based data store will need a
  82. compaction strategy.
  83. Borg tracks which segments are sparse and does a forward compaction
  84. when a commit is issued (unless the :ref:`append_only_mode` is
  85. active).
  86. Compaction processes sparse segments from oldest to newest; sparse segments
  87. which don't contain enough deleted data to justify compaction are skipped. This
  88. avoids doing e.g. 500 MB of writing current data to a new segment when only
  89. a couple kB were deleted in a segment.
  90. Segments that are compacted are read in entirety. Current entries are written to
  91. a new segment, while superseded entries are omitted. After each segment an intermediary
  92. commit is written to the new segment, data is synced and the old segment is deleted --
  93. freeing disk space.
  94. (The actual algorithm is more complex to avoid various consistency issues, refer to
  95. the ``borg.repository`` module for more comments and documentation on these issues.)
  96. .. _manifest:
  97. The manifest
  98. ------------
  99. The manifest is an object with an all-zero key that references all the
  100. archives. It contains:
  101. * Manifest version
  102. * A list of archive infos
  103. * timestamp
  104. * config
  105. Each archive info contains:
  106. * name
  107. * id
  108. * time
  109. It is the last object stored, in the last segment, and is replaced
  110. each time an archive is added or deleted.
  111. .. _archive:
  112. Archives
  113. --------
  114. The archive metadata does not contain the file items directly. Only
  115. references to other objects that contain that data. An archive is an
  116. object that contains:
  117. * version
  118. * name
  119. * list of chunks containing item metadata (size: count * ~40B)
  120. * cmdline
  121. * hostname
  122. * username
  123. * time
  124. .. _archive_limitation:
  125. Note about archive limitations
  126. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  127. The archive is currently stored as a single object in the repository
  128. and thus limited in size to MAX_OBJECT_SIZE (20MiB).
  129. As one chunk list entry is ~40B, that means we can reference ~500.000 item
  130. metadata stream chunks per archive.
  131. Each item metadata stream chunk is ~128kiB (see hardcoded ITEMS_CHUNKER_PARAMS).
  132. So that means the whole item metadata stream is limited to ~64GiB chunks.
  133. If compression is used, the amount of storable metadata is bigger - by the
  134. compression factor.
  135. If the medium size of an item entry is 100B (small size file, no ACLs/xattrs),
  136. that means a limit of ~640 million files/directories per archive.
  137. If the medium size of an item entry is 2kB (~100MB size files or more
  138. ACLs/xattrs), the limit will be ~32 million files/directories per archive.
  139. If one tries to create an archive object bigger than MAX_OBJECT_SIZE, a fatal
  140. IntegrityError will be raised.
  141. A workaround is to create multiple archives with less items each, see
  142. also :issue:`1452`.
  143. .. _item:
  144. Items
  145. -----
  146. Each item represents a file, directory or other fs item and is stored as an
  147. ``item`` dictionary that contains:
  148. * path
  149. * list of data chunks (size: count * ~40B)
  150. * user
  151. * group
  152. * uid
  153. * gid
  154. * mode (item type + permissions)
  155. * source (for links)
  156. * rdev (for devices)
  157. * mtime, atime, ctime in nanoseconds
  158. * xattrs
  159. * acl
  160. * bsdfiles
  161. All items are serialized using msgpack and the resulting byte stream
  162. is fed into the same chunker algorithm as used for regular file data
  163. and turned into deduplicated chunks. The reference to these chunks is then added
  164. to the archive metadata. To achieve a finer granularity on this metadata
  165. stream, we use different chunker params for this chunker, which result in
  166. smaller chunks.
  167. A chunk is stored as an object as well, of course.
  168. .. _chunks:
  169. .. _chunker_details:
  170. Chunks
  171. ------
  172. The |project_name| chunker uses a rolling hash computed by the Buzhash_ algorithm.
  173. It triggers (chunks) when the last HASH_MASK_BITS bits of the hash are zero,
  174. producing chunks of 2^HASH_MASK_BITS Bytes on average.
  175. ``borg create --chunker-params CHUNK_MIN_EXP,CHUNK_MAX_EXP,HASH_MASK_BITS,HASH_WINDOW_SIZE``
  176. can be used to tune the chunker parameters, the default is:
  177. - CHUNK_MIN_EXP = 19 (minimum chunk size = 2^19 B = 512 kiB)
  178. - CHUNK_MAX_EXP = 23 (maximum chunk size = 2^23 B = 8 MiB)
  179. - HASH_MASK_BITS = 21 (statistical medium chunk size ~= 2^21 B = 2 MiB)
  180. - HASH_WINDOW_SIZE = 4095 [B] (`0xFFF`)
  181. The buzhash table is altered by XORing it with a seed randomly generated once
  182. for the archive, and stored encrypted in the keyfile. This is to prevent chunk
  183. size based fingerprinting attacks on your encrypted repo contents (to guess
  184. what files you have based on a specific set of chunk sizes).
  185. For some more general usage hints see also ``--chunker-params``.
  186. .. _cache:
  187. Indexes / Caches
  188. ----------------
  189. The **files cache** is stored in ``cache/files`` and is used at backup time to
  190. quickly determine whether a given file is unchanged and we have all its chunks.
  191. The files cache is a key -> value mapping and contains:
  192. * key:
  193. - full, absolute file path id_hash
  194. * value:
  195. - file inode number
  196. - file size
  197. - file mtime_ns
  198. - list of file content chunk id hashes
  199. - age (0 [newest], 1, 2, 3, ..., BORG_FILES_CACHE_TTL - 1)
  200. To determine whether a file has not changed, cached values are looked up via
  201. the key in the mapping and compared to the current file attribute values.
  202. If the file's size, mtime_ns and inode number is still the same, it is
  203. considered to not have changed. In that case, we check that all file content
  204. chunks are (still) present in the repository (we check that via the chunks
  205. cache).
  206. If everything is matching and all chunks are present, the file is not read /
  207. chunked / hashed again (but still a file metadata item is written to the
  208. archive, made from fresh file metadata read from the filesystem). This is
  209. what makes borg so fast when processing unchanged files.
  210. If there is a mismatch or a chunk is missing, the file is read / chunked /
  211. hashed. Chunks already present in repo won't be transferred to repo again.
  212. The inode number is stored and compared to make sure we distinguish between
  213. different files, as a single path may not be unique across different
  214. archives in different setups.
  215. Not all filesystems have stable inode numbers. If that is the case, borg can
  216. be told to ignore the inode number in the check via --ignore-inode.
  217. The age value is used for cache management. If a file is "seen" in a backup
  218. run, its age is reset to 0, otherwise its age is incremented by one.
  219. If a file was not seen in BORG_FILES_CACHE_TTL backups, its cache entry is
  220. removed. See also: :ref:`always_chunking` and :ref:`a_status_oddity`
  221. The files cache is a python dictionary, storing python objects, which
  222. generates a lot of overhead.
  223. Borg can also work without using the files cache (saves memory if you have a
  224. lot of files or not much RAM free), then all files are assumed to have changed.
  225. This is usually much slower than with files cache.
  226. The **chunks cache** is stored in ``cache/chunks`` and is used to determine
  227. whether we already have a specific chunk, to count references to it and also
  228. for statistics.
  229. The chunks cache is a key -> value mapping and contains:
  230. * key:
  231. - chunk id_hash
  232. * value:
  233. - reference count
  234. - size
  235. - encrypted/compressed size
  236. The chunks cache is a hashindex, a hash table implemented in C and tuned for
  237. memory efficiency.
  238. The **repository index** is stored in ``repo/index.%d`` and is used to
  239. determine a chunk's location in the repository.
  240. The repo index is a key -> value mapping and contains:
  241. * key:
  242. - chunk id_hash
  243. * value:
  244. - segment (that contains the chunk)
  245. - offset (where the chunk is located in the segment)
  246. The repo index is a hashindex, a hash table implemented in C and tuned for
  247. memory efficiency.
  248. Hints are stored in a file (``repo/hints.%d``).
  249. It contains:
  250. * version
  251. * list of segments
  252. * compact
  253. hints and index can be recreated if damaged or lost using ``check --repair``.
  254. The chunks cache and the repository index are stored as hash tables, with
  255. only one slot per bucket, but that spreads the collisions to the following
  256. buckets. As a consequence the hash is just a start position for a linear
  257. search, and if the element is not in the table the index is linearly crossed
  258. until an empty bucket is found.
  259. When the hash table is filled to 75%, its size is grown. When it's
  260. emptied to 25%, its size is shrinked. So operations on it have a variable
  261. complexity between constant and linear with low factor, and memory overhead
  262. varies between 33% and 300%.
  263. .. _cache-memory-usage:
  264. Indexes / Caches memory usage
  265. -----------------------------
  266. Here is the estimated memory usage of |project_name| - it's complicated:
  267. chunk_count ~= total_file_size / 2 ^ HASH_MASK_BITS
  268. repo_index_usage = chunk_count * 40
  269. chunks_cache_usage = chunk_count * 44
  270. files_cache_usage = total_file_count * 240 + chunk_count * 80
  271. mem_usage ~= repo_index_usage + chunks_cache_usage + files_cache_usage
  272. = chunk_count * 164 + total_file_count * 240
  273. Due to the hashtables, the best/usual/worst cases for memory allocation can
  274. be estimated like that:
  275. mem_allocation = mem_usage / load_factor # l_f = 0.25 .. 0.75
  276. mem_allocation_peak = mem_allocation * (1 + growth_factor) # g_f = 1.1 .. 2
  277. All units are Bytes.
  278. It is assuming every chunk is referenced exactly once (if you have a lot of
  279. duplicate chunks, you will have less chunks than estimated above).
  280. It is also assuming that typical chunk size is 2^HASH_MASK_BITS (if you have
  281. a lot of files smaller than this statistical medium chunk size, you will have
  282. more chunks than estimated above, because 1 file is at least 1 chunk).
  283. If a remote repository is used the repo index will be allocated on the remote side.
  284. The chunks cache, files cache and the repo index are all implemented as hash
  285. tables. A hash table must have a significant amount of unused entries to be
  286. fast - the so-called load factor gives the used/unused elements ratio.
  287. When a hash table gets full (load factor getting too high), it needs to be
  288. grown (allocate new, bigger hash table, copy all elements over to it, free old
  289. hash table) - this will lead to short-time peaks in memory usage each time this
  290. happens. Usually does not happen for all hashtables at the same time, though.
  291. For small hash tables, we start with a growth factor of 2, which comes down to
  292. ~1.1x for big hash tables.
  293. E.g. backing up a total count of 1 Mi (IEC binary prefix i.e. 2^20) files with a total size of 1TiB.
  294. a) with ``create --chunker-params 10,23,16,4095`` (custom, like borg < 1.0 or attic):
  295. mem_usage = 2.8GiB
  296. b) with ``create --chunker-params 19,23,21,4095`` (default):
  297. mem_usage = 0.31GiB
  298. .. note:: There is also the ``--no-files-cache`` option to switch off the files cache.
  299. You'll save some memory, but it will need to read / chunk all the files as
  300. it can not skip unmodified files then.
  301. Encryption
  302. ----------
  303. .. seealso:: The :ref:`borgcrypto` section for an in-depth review.
  304. AES_-256 is used in CTR mode (so no need for padding). A 64bit initialization
  305. vector is used, a `HMAC-SHA256`_ is computed on the encrypted chunk with a
  306. random 64bit nonce and both are stored in the chunk.
  307. The header of each chunk is: ``TYPE(1)`` + ``HMAC(32)`` + ``NONCE(8)`` + ``CIPHERTEXT``.
  308. Encryption and HMAC use two different keys.
  309. In AES CTR mode you can think of the IV as the start value for the counter.
  310. The counter itself is incremented by one after each 16 byte block.
  311. The IV/counter is not required to be random but it must NEVER be reused.
  312. So to accomplish this |project_name| initializes the encryption counter to be
  313. higher than any previously used counter value before encrypting new data.
  314. To reduce payload size, only 8 bytes of the 16 bytes nonce is saved in the
  315. payload, the first 8 bytes are always zeros. This does not affect security but
  316. limits the maximum repository capacity to only 295 exabytes (2**64 * 16 bytes).
  317. Encryption keys (and other secrets) are kept either in a key file on the client
  318. ('keyfile' mode) or in the repository config on the server ('repokey' mode).
  319. In both cases, the secrets are generated from random and then encrypted by a
  320. key derived from your passphrase (this happens on the client before the key
  321. is stored into the keyfile or as repokey).
  322. The passphrase is passed through the ``BORG_PASSPHRASE`` environment variable
  323. or prompted for interactive usage.
  324. .. _key_files:
  325. Key files
  326. ---------
  327. When initialized with the ``init -e keyfile`` command, |project_name|
  328. needs an associated file in ``$HOME/.config/borg/keys`` to read and write
  329. the repository. The format is based on msgpack_, base64 encoding and
  330. PBKDF2_ SHA256 hashing, which is then encoded again in a msgpack_.
  331. The internal data structure is as follows:
  332. version
  333. currently always an integer, 1
  334. repository_id
  335. the ``id`` field in the ``config`` ``INI`` file of the repository.
  336. enc_key
  337. the key used to encrypt data with AES (256 bits)
  338. enc_hmac_key
  339. the key used to HMAC the encrypted data (256 bits)
  340. id_key
  341. the key used to HMAC the plaintext chunk data to compute the chunk's id
  342. chunk_seed
  343. the seed for the buzhash chunking table (signed 32 bit integer)
  344. Those fields are processed using msgpack_. The utf-8 encoded passphrase
  345. is processed with PBKDF2_ (SHA256_, 100000 iterations, random 256 bit salt)
  346. to give us a derived key. The derived key is 256 bits long.
  347. A `HMAC-SHA256`_ checksum of the above fields is generated with the derived
  348. key, then the derived key is also used to encrypt the above pack of fields.
  349. Then the result is stored in a another msgpack_ formatted as follows:
  350. version
  351. currently always an integer, 1
  352. salt
  353. random 256 bits salt used to process the passphrase
  354. iterations
  355. number of iterations used to process the passphrase (currently 100000)
  356. algorithm
  357. the hashing algorithm used to process the passphrase and do the HMAC
  358. checksum (currently the string ``sha256``)
  359. hash
  360. the HMAC of the encrypted derived key
  361. data
  362. the derived key, encrypted with AES over a PBKDF2_ SHA256 key
  363. described above
  364. The resulting msgpack_ is then encoded using base64 and written to the
  365. key file, wrapped using the standard ``textwrap`` module with a header.
  366. The header is a single line with a MAGIC string, a space and a hexadecimal
  367. representation of the repository id.
  368. Compression
  369. -----------
  370. |project_name| supports the following compression methods:
  371. - none (no compression, pass through data 1:1)
  372. - lz4 (low compression, but super fast)
  373. - zlib (level 0-9, level 0 is no compression [but still adding zlib overhead],
  374. level 1 is low, level 9 is high compression)
  375. - lzma (level 0-9, level 0 is low, level 9 is high compression).
  376. Speed: none > lz4 > zlib > lzma
  377. Compression: lzma > zlib > lz4 > none
  378. Be careful, higher zlib and especially lzma compression levels might take a
  379. lot of resources (CPU and memory).
  380. The overall speed of course also depends on the speed of your target storage.
  381. If that is slow, using a higher compression level might yield better overall
  382. performance. You need to experiment a bit. Maybe just watch your CPU load, if
  383. that is relatively low, increase compression until 1 core is 70-100% loaded.
  384. Even if your target storage is rather fast, you might see interesting effects:
  385. while doing no compression at all (none) is a operation that takes no time, it
  386. likely will need to store more data to the storage compared to using lz4.
  387. The time needed to transfer and store the additional data might be much more
  388. than if you had used lz4 (which is super fast, but still might compress your
  389. data about 2:1). This is assuming your data is compressible (if you backup
  390. already compressed data, trying to compress them at backup time is usually
  391. pointless).
  392. Compression is applied after deduplication, thus using different compression
  393. methods in one repo does not influence deduplication.
  394. See ``borg create --help`` about how to specify the compression level and its default.
  395. Lock files
  396. ----------
  397. |project_name| uses locks to get (exclusive or shared) access to the cache and
  398. the repository.
  399. The locking system is based on creating a directory `lock.exclusive` (for
  400. exclusive locks). Inside the lock directory, there is a file indicating
  401. hostname, process id and thread id of the lock holder.
  402. There is also a json file `lock.roster` that keeps a directory of all shared
  403. and exclusive lockers.
  404. If the process can create the `lock.exclusive` directory for a resource, it has
  405. the lock for it. If creation fails (because the directory has already been
  406. created by some other process), lock acquisition fails.
  407. The cache lock is usually in `~/.cache/borg/REPOID/lock.*`.
  408. The repository lock is in `repository/lock.*`.
  409. In case you run into troubles with the locks, you can use the ``borg break-lock``
  410. command after you first have made sure that no |project_name| process is
  411. running on any machine that accesses this resource. Be very careful, the cache
  412. or repository might get damaged if multiple processes use it at the same time.