Start the 2.46 cycle
[git.git] / Documentation / technical / hash-function-transition.txt
blobed574810891cad1024658920e0fa8ac550231534
1 Git hash function transition
2 ============================
4 Objective
5 ---------
6 Migrate Git from SHA-1 to a stronger hash function.
8 Background
9 ----------
10 At its core, the Git version control system is a content addressable
11 filesystem. It uses the SHA-1 hash function to name content. For
12 example, files, directories, and revisions are referred to by hash
13 values unlike in other traditional version control systems where files
14 or versions are referred to via sequential numbers. The use of a hash
15 function to address its content delivers a few advantages:
17 * Integrity checking is easy. Bit flips, for example, are easily
18   detected, as the hash of corrupted content does not match its name.
19 * Lookup of objects is fast.
21 Using a cryptographically secure hash function brings additional
22 advantages:
24 * Object names can be signed and third parties can trust the hash to
25   address the signed object and all objects it references.
26 * Communication using Git protocol and out of band communication
27   methods have a short reliable string that can be used to reliably
28   address stored content.
30 Over time some flaws in SHA-1 have been discovered by security
31 researchers. On 23 February 2017 the SHAttered attack
32 (https://shattered.io) demonstrated a practical SHA-1 hash collision.
34 Git v2.13.0 and later subsequently moved to a hardened SHA-1
35 implementation by default, which isn't vulnerable to the SHAttered
36 attack, but SHA-1 is still weak.
38 Thus it's considered prudent to move past any variant of SHA-1
39 to a new hash. There's no guarantee that future attacks on SHA-1 won't
40 be published in the future, and those attacks may not have viable
41 mitigations.
43 If SHA-1 and its variants were to be truly broken, Git's hash function
44 could not be considered cryptographically secure any more. This would
45 impact the communication of hash values because we could not trust
46 that a given hash value represented the known good version of content
47 that the speaker intended.
49 SHA-1 still possesses the other properties such as fast object lookup
50 and safe error checking, but other hash functions are equally suitable
51 that are believed to be cryptographically secure.
53 Choice of Hash
54 --------------
55 The hash to replace the hardened SHA-1 should be stronger than SHA-1
56 was: we would like it to be trustworthy and useful in practice for at
57 least 10 years.
59 Some other relevant properties:
61 1. A 256-bit hash (long enough to match common security practice; not
62    excessively long to hurt performance and disk usage).
64 2. High quality implementations should be widely available (e.g., in
65    OpenSSL and Apple CommonCrypto).
67 3. The hash function's properties should match Git's needs (e.g. Git
68    requires collision and 2nd preimage resistance and does not require
69    length extension resistance).
71 4. As a tiebreaker, the hash should be fast to compute (fortunately
72    many contenders are faster than SHA-1).
74 There were several contenders for a successor hash to SHA-1, including
75 SHA-256, SHA-512/256, SHA-256x16, K12, and BLAKE2bp-256.
77 In late 2018 the project picked SHA-256 as its successor hash.
79 See 0ed8d8da374 (doc hash-function-transition: pick SHA-256 as
80 NewHash, 2018-08-04) and numerous mailing list threads at the time,
81 particularly the one starting at
82 https://lore.kernel.org/git/20180609224913.GC38834@genre.crustytoothpaste.net/
83 for more information.
85 Goals
86 -----
87 1. The transition to SHA-256 can be done one local repository at a time.
88    a. Requiring no action by any other party.
89    b. A SHA-256 repository can communicate with SHA-1 Git servers
90       (push/fetch).
91    c. Users can use SHA-1 and SHA-256 identifiers for objects
92       interchangeably (see "Object names on the command line", below).
93    d. New signed objects make use of a stronger hash function than
94       SHA-1 for their security guarantees.
95 2. Allow a complete transition away from SHA-1.
96    a. Local metadata for SHA-1 compatibility can be removed from a
97       repository if compatibility with SHA-1 is no longer needed.
98 3. Maintainability throughout the process.
99    a. The object format is kept simple and consistent.
100    b. Creation of a generalized repository conversion tool.
102 Non-Goals
103 ---------
104 1. Add SHA-256 support to Git protocol. This is valuable and the
105    logical next step but it is out of scope for this initial design.
106 2. Transparently improving the security of existing SHA-1 signed
107    objects.
108 3. Intermixing objects using multiple hash functions in a single
109    repository.
110 4. Taking the opportunity to fix other bugs in Git's formats and
111    protocols.
112 5. Shallow clones and fetches into a SHA-256 repository. (This will
113    change when we add SHA-256 support to Git protocol.)
114 6. Skip fetching some submodules of a project into a SHA-256
115    repository. (This also depends on SHA-256 support in Git
116    protocol.)
118 Overview
119 --------
120 We introduce a new repository format extension. Repositories with this
121 extension enabled use SHA-256 instead of SHA-1 to name their objects.
122 This affects both object names and object content -- both the names
123 of objects and all references to other objects within an object are
124 switched to the new hash function.
126 SHA-256 repositories cannot be read by older versions of Git.
128 Alongside the packfile, a SHA-256 repository stores a bidirectional
129 mapping between SHA-256 and SHA-1 object names. The mapping is generated
130 locally and can be verified using "git fsck". Object lookups use this
131 mapping to allow naming objects using either their SHA-1 and SHA-256 names
132 interchangeably.
134 "git cat-file" and "git hash-object" gain options to display an object
135 in its SHA-1 form and write an object given its SHA-1 form. This
136 requires all objects referenced by that object to be present in the
137 object database so that they can be named using the appropriate name
138 (using the bidirectional hash mapping).
140 Fetches from a SHA-1 based server convert the fetched objects into
141 SHA-256 form and record the mapping in the bidirectional mapping table
142 (see below for details). Pushes to a SHA-1 based server convert the
143 objects being pushed into SHA-1 form so the server does not have to be
144 aware of the hash function the client is using.
146 Detailed Design
147 ---------------
148 Repository format extension
149 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
150 A SHA-256 repository uses repository format version `1` (see
151 Documentation/technical/repository-version.txt) with extensions
152 `objectFormat` and `compatObjectFormat`:
154         [core]
155                 repositoryFormatVersion = 1
156         [extensions]
157                 objectFormat = sha256
158                 compatObjectFormat = sha1
160 The combination of setting `core.repositoryFormatVersion=1` and
161 populating `extensions.*` ensures that all versions of Git later than
162 `v0.99.9l` will die instead of trying to operate on the SHA-256
163 repository, instead producing an error message.
165         # Between v0.99.9l and v2.7.0
166         $ git status
167         fatal: Expected git repo version <= 0, found 1
168         # After v2.7.0
169         $ git status
170         fatal: unknown repository extensions found:
171                 objectformat
172                 compatobjectformat
174 See the "Transition plan" section below for more details on these
175 repository extensions.
177 Object names
178 ~~~~~~~~~~~~
179 Objects can be named by their 40 hexadecimal digit SHA-1 name or 64
180 hexadecimal digit SHA-256 name, plus names derived from those (see
181 gitrevisions(7)).
183 The SHA-1 name of an object is the SHA-1 of the concatenation of its
184 type, length, a nul byte, and the object's SHA-1 content. This is the
185 traditional <sha1> used in Git to name objects.
187 The SHA-256 name of an object is the SHA-256 of the concatenation of its
188 type, length, a nul byte, and the object's SHA-256 content.
190 Object format
191 ~~~~~~~~~~~~~
192 The content as a byte sequence of a tag, commit, or tree object named
193 by SHA-1 and SHA-256 differ because an object named by SHA-256 name refers to
194 other objects by their SHA-256 names and an object named by SHA-1 name
195 refers to other objects by their SHA-1 names.
197 The SHA-256 content of an object is the same as its SHA-1 content, except
198 that objects referenced by the object are named using their SHA-256 names
199 instead of SHA-1 names. Because a blob object does not refer to any
200 other object, its SHA-1 content and SHA-256 content are the same.
202 The format allows round-trip conversion between SHA-256 content and
203 SHA-1 content.
205 Object storage
206 ~~~~~~~~~~~~~~
207 Loose objects use zlib compression and packed objects use the packed
208 format described in linkgit:gitformat-pack[5], just like
209 today. The content that is compressed and stored uses SHA-256 content
210 instead of SHA-1 content.
212 Pack index
213 ~~~~~~~~~~
214 Pack index (.idx) files use a new v3 format that supports multiple
215 hash functions. They have the following format (all integers are in
216 network byte order):
218 - A header appears at the beginning and consists of the following:
219   * The 4-byte pack index signature: '\377t0c'
220   * 4-byte version number: 3
221   * 4-byte length of the header section, including the signature and
222     version number
223   * 4-byte number of objects contained in the pack
224   * 4-byte number of object formats in this pack index: 2
225   * For each object format:
226     ** 4-byte format identifier (e.g., 'sha1' for SHA-1)
227     ** 4-byte length in bytes of shortened object names. This is the
228       shortest possible length needed to make names in the shortened
229       object name table unambiguous.
230     ** 4-byte integer, recording where tables relating to this format
231       are stored in this index file, as an offset from the beginning.
232   * 4-byte offset to the trailer from the beginning of this file.
233   * Zero or more additional key/value pairs (4-byte key, 4-byte
234     value). Only one key is supported: 'PSRC'. See the "Loose objects
235     and unreachable objects" section for supported values and how this
236     is used.  All other keys are reserved. Readers must ignore
237     unrecognized keys.
238 - Zero or more NUL bytes. This can optionally be used to improve the
239   alignment of the full object name table below.
240 - Tables for the first object format:
241   * A sorted table of shortened object names.  These are prefixes of
242     the names of all objects in this pack file, packed together
243     without offset values to reduce the cache footprint of the binary
244     search for a specific object name.
246   * A table of full object names in pack order. This allows resolving
247     a reference to "the nth object in the pack file" (from a
248     reachability bitmap or from the next table of another object
249     format) to its object name.
251   * A table of 4-byte values mapping object name order to pack order.
252     For an object in the table of sorted shortened object names, the
253     value at the corresponding index in this table is the index in the
254     previous table for that same object.
255     This can be used to look up the object in reachability bitmaps or
256     to look up its name in another object format.
258   * A table of 4-byte CRC32 values of the packed object data, in the
259     order that the objects appear in the pack file. This is to allow
260     compressed data to be copied directly from pack to pack during
261     repacking without undetected data corruption.
263   * A table of 4-byte offset values. For an object in the table of
264     sorted shortened object names, the value at the corresponding
265     index in this table indicates where that object can be found in
266     the pack file. These are usually 31-bit pack file offsets, but
267     large offsets are encoded as an index into the next table with the
268     most significant bit set.
270   * A table of 8-byte offset entries (empty for pack files less than
271     2 GiB). Pack files are organized with heavily used objects toward
272     the front, so most object references should not need to refer to
273     this table.
274 - Zero or more NUL bytes.
275 - Tables for the second object format, with the same layout as above,
276   up to and not including the table of CRC32 values.
277 - Zero or more NUL bytes.
278 - The trailer consists of the following:
279   * A copy of the 20-byte SHA-256 checksum at the end of the
280     corresponding packfile.
282   * 20-byte SHA-256 checksum of all of the above.
284 Loose object index
285 ~~~~~~~~~~~~~~~~~~
286 A new file $GIT_OBJECT_DIR/loose-object-idx contains information about
287 all loose objects. Its format is
289   # loose-object-idx
290   (sha256-name SP sha1-name LF)*
292 where the object names are in hexadecimal format. The file is not
293 sorted.
295 The loose object index is protected against concurrent writes by a
296 lock file $GIT_OBJECT_DIR/loose-object-idx.lock. To add a new loose
297 object:
299 1. Write the loose object to a temporary file, like today.
300 2. Open loose-object-idx.lock with O_CREAT | O_EXCL to acquire the lock.
301 3. Rename the loose object into place.
302 4. Open loose-object-idx with O_APPEND and write the new object
303 5. Unlink loose-object-idx.lock to release the lock.
305 To remove entries (e.g. in "git pack-refs" or "git-prune"):
307 1. Open loose-object-idx.lock with O_CREAT | O_EXCL to acquire the
308    lock.
309 2. Write the new content to loose-object-idx.lock.
310 3. Unlink any loose objects being removed.
311 4. Rename to replace loose-object-idx, releasing the lock.
313 Translation table
314 ~~~~~~~~~~~~~~~~~
315 The index files support a bidirectional mapping between SHA-1 names
316 and SHA-256 names. The lookup proceeds similarly to ordinary object
317 lookups. For example, to convert a SHA-1 name to a SHA-256 name:
319  1. Look for the object in idx files. If a match is present in the
320     idx's sorted list of truncated SHA-1 names, then:
321     a. Read the corresponding entry in the SHA-1 name order to pack
322        name order mapping.
323     b. Read the corresponding entry in the full SHA-1 name table to
324        verify we found the right object. If it is, then
325     c. Read the corresponding entry in the full SHA-256 name table.
326        That is the object's SHA-256 name.
327  2. Check for a loose object. Read lines from loose-object-idx until
328     we find a match.
330 Step (1) takes the same amount of time as an ordinary object lookup:
331 O(number of packs * log(objects per pack)). Step (2) takes O(number of
332 loose objects) time. To maintain good performance it will be necessary
333 to keep the number of loose objects low. See the "Loose objects and
334 unreachable objects" section below for more details.
336 Since all operations that make new objects (e.g., "git commit") add
337 the new objects to the corresponding index, this mapping is possible
338 for all objects in the object store.
340 Reading an object's SHA-1 content
341 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
342 The SHA-1 content of an object can be read by converting all SHA-256 names
343 of its SHA-256 content references to SHA-1 names using the translation table.
345 Fetch
346 ~~~~~
347 Fetching from a SHA-1 based server requires translating between SHA-1
348 and SHA-256 based representations on the fly.
350 SHA-1s named in the ref advertisement that are present on the client
351 can be translated to SHA-256 and looked up as local objects using the
352 translation table.
354 Negotiation proceeds as today. Any "have"s generated locally are
355 converted to SHA-1 before being sent to the server, and SHA-1s
356 mentioned by the server are converted to SHA-256 when looking them up
357 locally.
359 After negotiation, the server sends a packfile containing the
360 requested objects. We convert the packfile to SHA-256 format using
361 the following steps:
363 1. index-pack: inflate each object in the packfile and compute its
364    SHA-1. Objects can contain deltas in OBJ_REF_DELTA format against
365    objects the client has locally. These objects can be looked up
366    using the translation table and their SHA-1 content read as
367    described above to resolve the deltas.
368 2. topological sort: starting at the "want"s from the negotiation
369    phase, walk through objects in the pack and emit a list of them,
370    excluding blobs, in reverse topologically sorted order, with each
371    object coming later in the list than all objects it references.
372    (This list only contains objects reachable from the "wants". If the
373    pack from the server contained additional extraneous objects, then
374    they will be discarded.)
375 3. convert to SHA-256: open a new SHA-256 packfile. Read the topologically
376    sorted list just generated. For each object, inflate its
377    SHA-1 content, convert to SHA-256 content, and write it to the SHA-256
378    pack. Record the new SHA-1<-->SHA-256 mapping entry for use in the idx.
379 4. sort: reorder entries in the new pack to match the order of objects
380    in the pack the server generated and include blobs. Write a SHA-256 idx
381    file
382 5. clean up: remove the SHA-1 based pack file, index, and
383    topologically sorted list obtained from the server in steps 1
384    and 2.
386 Step 3 requires every object referenced by the new object to be in the
387 translation table. This is why the topological sort step is necessary.
389 As an optimization, step 1 could write a file describing what non-blob
390 objects each object it has inflated from the packfile references. This
391 makes the topological sort in step 2 possible without inflating the
392 objects in the packfile for a second time. The objects need to be
393 inflated again in step 3, for a total of two inflations.
395 Step 4 is probably necessary for good read-time performance. "git
396 pack-objects" on the server optimizes the pack file for good data
397 locality (see Documentation/technical/pack-heuristics.txt).
399 Details of this process are likely to change. It will take some
400 experimenting to get this to perform well.
402 Push
403 ~~~~
404 Push is simpler than fetch because the objects referenced by the
405 pushed objects are already in the translation table. The SHA-1 content
406 of each object being pushed can be read as described in the "Reading
407 an object's SHA-1 content" section to generate the pack written by git
408 send-pack.
410 Signed Commits
411 ~~~~~~~~~~~~~~
412 We add a new field "gpgsig-sha256" to the commit object format to allow
413 signing commits without relying on SHA-1. It is similar to the
414 existing "gpgsig" field. Its signed payload is the SHA-256 content of the
415 commit object with any "gpgsig" and "gpgsig-sha256" fields removed.
417 This means commits can be signed
419 1. using SHA-1 only, as in existing signed commit objects
420 2. using both SHA-1 and SHA-256, by using both gpgsig-sha256 and gpgsig
421    fields.
422 3. using only SHA-256, by only using the gpgsig-sha256 field.
424 Old versions of "git verify-commit" can verify the gpgsig signature in
425 cases (1) and (2) without modifications and view case (3) as an
426 ordinary unsigned commit.
428 Signed Tags
429 ~~~~~~~~~~~
430 We add a new field "gpgsig-sha256" to the tag object format to allow
431 signing tags without relying on SHA-1. Its signed payload is the
432 SHA-256 content of the tag with its gpgsig-sha256 field and "-----BEGIN PGP
433 SIGNATURE-----" delimited in-body signature removed.
435 This means tags can be signed
437 1. using SHA-1 only, as in existing signed tag objects
438 2. using both SHA-1 and SHA-256, by using gpgsig-sha256 and an in-body
439    signature.
440 3. using only SHA-256, by only using the gpgsig-sha256 field.
442 Mergetag embedding
443 ~~~~~~~~~~~~~~~~~~
444 The mergetag field in the SHA-1 content of a commit contains the
445 SHA-1 content of a tag that was merged by that commit.
447 The mergetag field in the SHA-256 content of the same commit contains the
448 SHA-256 content of the same tag.
450 Submodules
451 ~~~~~~~~~~
452 To convert recorded submodule pointers, you need to have the converted
453 submodule repository in place. The translation table of the submodule
454 can be used to look up the new hash.
456 Loose objects and unreachable objects
457 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
458 Fast lookups in the loose-object-idx require that the number of loose
459 objects not grow too high.
461 "git gc --auto" currently waits for there to be 6700 loose objects
462 present before consolidating them into a packfile. We will need to
463 measure to find a more appropriate threshold for it to use.
465 "git gc --auto" currently waits for there to be 50 packs present
466 before combining packfiles. Packing loose objects more aggressively
467 may cause the number of pack files to grow too quickly. This can be
468 mitigated by using a strategy similar to Martin Fick's exponential
469 rolling garbage collection script:
470 https://gerrit-review.googlesource.com/c/gerrit/+/35215
472 "git gc" currently expels any unreachable objects it encounters in
473 pack files to loose objects in an attempt to prevent a race when
474 pruning them (in case another process is simultaneously writing a new
475 object that refers to the about-to-be-deleted object). This leads to
476 an explosion in the number of loose objects present and disk space
477 usage due to the objects in delta form being replaced with independent
478 loose objects.  Worse, the race is still present for loose objects.
480 Instead, "git gc" will need to move unreachable objects to a new
481 packfile marked as UNREACHABLE_GARBAGE (using the PSRC field; see
482 below). To avoid the race when writing new objects referring to an
483 about-to-be-deleted object, code paths that write new objects will
484 need to copy any objects from UNREACHABLE_GARBAGE packs that they
485 refer to new, non-UNREACHABLE_GARBAGE packs (or loose objects).
486 UNREACHABLE_GARBAGE are then safe to delete if their creation time (as
487 indicated by the file's mtime) is long enough ago.
489 To avoid a proliferation of UNREACHABLE_GARBAGE packs, they can be
490 combined under certain circumstances. If "gc.garbageTtl" is set to
491 greater than one day, then packs created within a single calendar day,
492 UTC, can be coalesced together. The resulting packfile would have an
493 mtime before midnight on that day, so this makes the effective maximum
494 ttl the garbageTtl + 1 day. If "gc.garbageTtl" is less than one day,
495 then we divide the calendar day into intervals one-third of that ttl
496 in duration. Packs created within the same interval can be coalesced
497 together. The resulting packfile would have an mtime before the end of
498 the interval, so this makes the effective maximum ttl equal to the
499 garbageTtl * 4/3.
501 This rule comes from Thirumala Reddy Mutchukota's JGit change
502 https://git.eclipse.org/r/90465.
504 The UNREACHABLE_GARBAGE setting goes in the PSRC field of the pack
505 index. More generally, that field indicates where a pack came from:
507  - 1 (PACK_SOURCE_RECEIVE) for a pack received over the network
508  - 2 (PACK_SOURCE_AUTO) for a pack created by a lightweight
509    "gc --auto" operation
510  - 3 (PACK_SOURCE_GC) for a pack created by a full gc
511  - 4 (PACK_SOURCE_UNREACHABLE_GARBAGE) for potential garbage
512    discovered by gc
513  - 5 (PACK_SOURCE_INSERT) for locally created objects that were
514    written directly to a pack file, e.g. from "git add ."
516 This information can be useful for debugging and for "gc --auto" to
517 make appropriate choices about which packs to coalesce.
519 Caveats
520 -------
521 Invalid objects
522 ~~~~~~~~~~~~~~~
523 The conversion from SHA-1 content to SHA-256 content retains any
524 brokenness in the original object (e.g., tree entry modes encoded with
525 leading 0, tree objects whose paths are not sorted correctly, and
526 commit objects without an author or committer). This is a deliberate
527 feature of the design to allow the conversion to round-trip.
529 More profoundly broken objects (e.g., a commit with a truncated "tree"
530 header line) cannot be converted but were not usable by current Git
531 anyway.
533 Shallow clone and submodules
534 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
535 Because it requires all referenced objects to be available in the
536 locally generated translation table, this design does not support
537 shallow clone or unfetched submodules. Protocol improvements might
538 allow lifting this restriction.
540 Alternates
541 ~~~~~~~~~~
542 For the same reason, a SHA-256 repository cannot borrow objects from a
543 SHA-1 repository using objects/info/alternates or
544 $GIT_ALTERNATE_OBJECT_REPOSITORIES.
546 git notes
547 ~~~~~~~~~
548 The "git notes" tool annotates objects using their SHA-1 name as key.
549 This design does not describe a way to migrate notes trees to use
550 SHA-256 names. That migration is expected to happen separately (for
551 example using a file at the root of the notes tree to describe which
552 hash it uses).
554 Server-side cost
555 ~~~~~~~~~~~~~~~~
556 Until Git protocol gains SHA-256 support, using SHA-256 based storage
557 on public-facing Git servers is strongly discouraged. Once Git
558 protocol gains SHA-256 support, SHA-256 based servers are likely not
559 to support SHA-1 compatibility, to avoid what may be a very expensive
560 hash re-encode during clone and to encourage peers to modernize.
562 The design described here allows fetches by SHA-1 clients of a
563 personal SHA-256 repository because it's not much more difficult than
564 allowing pushes from that repository. This support needs to be guarded
565 by a configuration option -- servers like git.kernel.org that serve a
566 large number of clients would not be expected to bear that cost.
568 Meaning of signatures
569 ~~~~~~~~~~~~~~~~~~~~~
570 The signed payload for signed commits and tags does not explicitly
571 name the hash used to identify objects. If some day Git adopts a new
572 hash function with the same length as the current SHA-1 (40
573 hexadecimal digit) or SHA-256 (64 hexadecimal digit) objects then the
574 intent behind the PGP signed payload in an object signature is
575 unclear:
577         object e7e07d5a4fcc2a203d9873968ad3e6bd4d7419d7
578         type commit
579         tag v2.12.0
580         tagger Junio C Hamano <gitster@pobox.com> 1487962205 -0800
582         Git 2.12
584 Does this mean Git v2.12.0 is the commit with SHA-1 name
585 e7e07d5a4fcc2a203d9873968ad3e6bd4d7419d7 or the commit with
586 new-40-digit-hash-name e7e07d5a4fcc2a203d9873968ad3e6bd4d7419d7?
588 Fortunately SHA-256 and SHA-1 have different lengths. If Git starts
589 using another hash with the same length to name objects, then it will
590 need to change the format of signed payloads using that hash to
591 address this issue.
593 Object names on the command line
594 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
595 To support the transition (see Transition plan below), this design
596 supports four different modes of operation:
598  1. ("dark launch") Treat object names input by the user as SHA-1 and
599     convert any object names written to output to SHA-1, but store
600     objects using SHA-256.  This allows users to test the code with no
601     visible behavior change except for performance.  This allows
602     running even tests that assume the SHA-1 hash function, to
603     sanity-check the behavior of the new mode.
605  2. ("early transition") Allow both SHA-1 and SHA-256 object names in
606     input. Any object names written to output use SHA-1. This allows
607     users to continue to make use of SHA-1 to communicate with peers
608     (e.g. by email) that have not migrated yet and prepares for mode 3.
610  3. ("late transition") Allow both SHA-1 and SHA-256 object names in
611     input. Any object names written to output use SHA-256. In this
612     mode, users are using a more secure object naming method by
613     default.  The disruption is minimal as long as most of their peers
614     are in mode 2 or mode 3.
616  4. ("post-transition") Treat object names input by the user as
617     SHA-256 and write output using SHA-256. This is safer than mode 3
618     because there is less risk that input is incorrectly interpreted
619     using the wrong hash function.
621 The mode is specified in configuration.
623 The user can also explicitly specify which format to use for a
624 particular revision specifier and for output, overriding the mode. For
625 example:
627     git --output-format=sha1 log abac87a^{sha1}..f787cac^{sha256}
629 Transition plan
630 ---------------
631 Some initial steps can be implemented independently of one another:
633 - adding a hash function API (vtable)
634 - teaching fsck to tolerate the gpgsig-sha256 field
635 - excluding gpgsig-* from the fields copied by "git commit --amend"
636 - annotating tests that depend on SHA-1 values with a SHA1 test
637   prerequisite
638 - using "struct object_id", GIT_MAX_RAWSZ, and GIT_MAX_HEXSZ
639   consistently instead of "unsigned char *" and the hardcoded
640   constants 20 and 40.
641 - introducing index v3
642 - adding support for the PSRC field and safer object pruning
644 The first user-visible change is the introduction of the objectFormat
645 extension (without compatObjectFormat). This requires:
647 - teaching fsck about this mode of operation
648 - using the hash function API (vtable) when computing object names
649 - signing objects and verifying signatures
650 - rejecting attempts to fetch from or push to an incompatible
651   repository
653 Next comes introduction of compatObjectFormat:
655 - implementing the loose-object-idx
656 - translating object names between object formats
657 - translating object content between object formats
658 - generating and verifying signatures in the compat format
659 - adding appropriate index entries when adding a new object to the
660   object store
661 - --output-format option
662 - ^{sha1} and ^{sha256} revision notation
663 - configuration to specify default input and output format (see
664   "Object names on the command line" above)
666 The next step is supporting fetches and pushes to SHA-1 repositories:
668 - allow pushes to a repository using the compat format
669 - generate a topologically sorted list of the SHA-1 names of fetched
670   objects
671 - convert the fetched packfile to SHA-256 format and generate an idx
672   file
673 - re-sort to match the order of objects in the fetched packfile
675 The infrastructure supporting fetch also allows converting an existing
676 repository. In converted repositories and new clones, end users can
677 gain support for the new hash function without any visible change in
678 behavior (see "dark launch" in the "Object names on the command line"
679 section). In particular this allows users to verify SHA-256 signatures
680 on objects in the repository, and it should ensure the transition code
681 is stable in production in preparation for using it more widely.
683 Over time projects would encourage their users to adopt the "early
684 transition" and then "late transition" modes to take advantage of the
685 new, more futureproof SHA-256 object names.
687 When objectFormat and compatObjectFormat are both set, commands
688 generating signatures would generate both SHA-1 and SHA-256 signatures
689 by default to support both new and old users.
691 In projects using SHA-256 heavily, users could be encouraged to adopt
692 the "post-transition" mode to avoid accidentally making implicit use
693 of SHA-1 object names.
695 Once a critical mass of users have upgraded to a version of Git that
696 can verify SHA-256 signatures and have converted their existing
697 repositories to support verifying them, we can add support for a
698 setting to generate only SHA-256 signatures. This is expected to be at
699 least a year later.
701 That is also a good moment to advertise the ability to convert
702 repositories to use SHA-256 only, stripping out all SHA-1 related
703 metadata. This improves performance by eliminating translation
704 overhead and security by avoiding the possibility of accidentally
705 relying on the safety of SHA-1.
707 Updating Git's protocols to allow a server to specify which hash
708 functions it supports is also an important part of this transition. It
709 is not discussed in detail in this document but this transition plan
710 assumes it happens. :)
712 Alternatives considered
713 -----------------------
714 Upgrading everyone working on a particular project on a flag day
715 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
716 Projects like the Linux kernel are large and complex enough that
717 flipping the switch for all projects based on the repository at once
718 is infeasible.
720 Not only would all developers and server operators supporting
721 developers have to switch on the same flag day, but supporting tooling
722 (continuous integration, code review, bug trackers, etc) would have to
723 be adapted as well. This also makes it difficult to get early feedback
724 from some project participants testing before it is time for mass
725 adoption.
727 Using hash functions in parallel
728 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
729 (e.g. https://lore.kernel.org/git/22708.8913.864049.452252@chiark.greenend.org.uk/ )
730 Objects newly created would be addressed by the new hash, but inside
731 such an object (e.g. commit) it is still possible to address objects
732 using the old hash function.
734 * You cannot trust its history (needed for bisectability) in the
735   future without further work
736 * Maintenance burden as the number of supported hash functions grows
737   (they will never go away, so they accumulate). In this proposal, by
738   comparison, converted objects lose all references to SHA-1.
740 Signed objects with multiple hashes
741 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
742 Instead of introducing the gpgsig-sha256 field in commit and tag objects
743 for SHA-256 content based signatures, an earlier version of this design
744 added "hash sha256 <SHA-256 name>" fields to strengthen the existing
745 SHA-1 content based signatures.
747 In other words, a single signature was used to attest to the object
748 content using both hash functions. This had some advantages:
750 * Using one signature instead of two speeds up the signing process.
751 * Having one signed payload with both hashes allows the signer to
752   attest to the SHA-1 name and SHA-256 name referring to the same object.
753 * All users consume the same signature. Broken signatures are likely
754   to be detected quickly using current versions of git.
756 However, it also came with disadvantages:
758 * Verifying a signed object requires access to the SHA-1 names of all
759   objects it references, even after the transition is complete and
760   translation table is no longer needed for anything else. To support
761   this, the design added fields such as "hash sha1 tree <SHA-1 name>"
762   and "hash sha1 parent <SHA-1 name>" to the SHA-256 content of a signed
763   commit, complicating the conversion process.
764 * Allowing signed objects without a SHA-1 (for after the transition is
765   complete) complicated the design further, requiring a "nohash sha1"
766   field to suppress including "hash sha1" fields in the SHA-256 content
767   and signed payload.
769 Lazily populated translation table
770 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
771 Some of the work of building the translation table could be deferred to
772 push time, but that would significantly complicate and slow down pushes.
773 Calculating the SHA-1 name at object creation time at the same time it is
774 being streamed to disk and having its SHA-256 name calculated should be
775 an acceptable cost.
777 Document History
778 ----------------
780 2017-03-03
781 bmwill@google.com, jonathantanmy@google.com, jrnieder@gmail.com,
782 sbeller@google.com
784 * Initial version sent to https://lore.kernel.org/git/20170304011251.GA26789@aiede.mtv.corp.google.com
786 2017-03-03 jrnieder@gmail.com
787 Incorporated suggestions from jonathantanmy and sbeller:
789 * Describe purpose of signed objects with each hash type
790 * Redefine signed object verification using object content under the
791   first hash function
793 2017-03-06 jrnieder@gmail.com
795 * Use SHA3-256 instead of SHA2 (thanks, Linus and brian m. carlson).[1][2]
796 * Make SHA3-based signatures a separate field, avoiding the need for
797   "hash" and "nohash" fields (thanks to peff[3]).
798 * Add a sorting phase to fetch (thanks to Junio for noticing the need
799   for this).
800 * Omit blobs from the topological sort during fetch (thanks to peff).
801 * Discuss alternates, git notes, and git servers in the caveats
802   section (thanks to Junio Hamano, brian m. carlson[4], and Shawn
803   Pearce).
804 * Clarify language throughout (thanks to various commenters,
805   especially Junio).
807 2017-09-27 jrnieder@gmail.com, sbeller@google.com
809 * Use placeholder NewHash instead of SHA3-256
810 * Describe criteria for picking a hash function.
811 * Include a transition plan (thanks especially to Brandon Williams
812   for fleshing these ideas out)
813 * Define the translation table (thanks, Shawn Pearce[5], Jonathan
814   Tan, and Masaya Suzuki)
815 * Avoid loose object overhead by packing more aggressively in
816   "git gc --auto"
818 Later history:
820 * See the history of this file in git.git for the history of subsequent
821   edits. This document history is no longer being maintained as it
822   would now be superfluous to the commit log
824 References:
826  [1] https://lore.kernel.org/git/CA+55aFzJtejiCjV0e43+9oR3QuJK2PiFiLQemytoLpyJWe6P9w@mail.gmail.com/
827  [2] https://lore.kernel.org/git/CA+55aFz+gkAsDZ24zmePQuEs1XPS9BP_s8O7Q4wQ7LV7X5-oDA@mail.gmail.com/
828  [3] https://lore.kernel.org/git/20170306084353.nrns455dvkdsfgo5@sigill.intra.peff.net/
829  [4] https://lore.kernel.org/git/20170304224936.rqqtkdvfjgyezsht@genre.crustytoothpaste.net
830  [5] https://lore.kernel.org/git/CAJo=hJtoX9=AyLHHpUJS7fueV9ciZ_MNpnEPHUz8Whui6g9F0A@mail.gmail.com/