diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-15 22:50:11 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-15 22:50:11 +0200 |
commit | 2e3f12a0fc63deba80e725bfa985c0c5bd31de99 (patch) | |
tree | f4f54a4d8ac6370b158179a740b72851219301d2 /org.eclipse.jgit | |
parent | e06ce59607d1e8da0d83ae2e36777a6caef0a2e5 (diff) | |
parent | 831da296d9c944bbea19789f2b88ebd477d00dd4 (diff) | |
download | jgit-2e3f12a0fc63deba80e725bfa985c0c5bd31de99.tar.gz jgit-2e3f12a0fc63deba80e725bfa985c0c5bd31de99.zip |
Merge branch 'stable-6.5'
* stable-6.5:
Remove blank in maven.config
DirCache: support option index.skipHash
Change-Id: I5bfff523b3174c7b741ab0eaf53937c3ab501252
Diffstat (limited to 'org.eclipse.jgit')
3 files changed, 102 insertions, 12 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java index 03da61583d..e56061223c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java @@ -40,6 +40,7 @@ import org.eclipse.jgit.events.IndexChangedListener; import org.eclipse.jgit.internal.JGitText; import org.eclipse.jgit.internal.storage.file.FileSnapshot; import org.eclipse.jgit.internal.storage.file.LockFile; +import org.eclipse.jgit.internal.storage.io.NullMessageDigest; import org.eclipse.jgit.lib.AnyObjectId; import org.eclipse.jgit.lib.Config; import org.eclipse.jgit.lib.Config.ConfigEnum; @@ -327,6 +328,9 @@ public class DirCache { /** If we read this index from disk, the original format. */ private DirCacheVersion version; + /** Whether to skip computing and checking the index checksum */ + private boolean skipHash; + /** * Create a new in-core index representation. * <p> @@ -446,7 +450,8 @@ public class DirCache { private void readFrom(InputStream inStream) throws IOException, CorruptObjectException { final BufferedInputStream in = new BufferedInputStream(inStream); - final MessageDigest md = Constants.newMessageDigest(); + readConfig(); + MessageDigest md = newMessageDigest(); // Read the index header and verify we understand it. // @@ -543,8 +548,12 @@ public class DirCache { } readIndexChecksum = md.digest(); - if (!Arrays.equals(readIndexChecksum, hdr)) { - throw new CorruptObjectException(JGitText.get().DIRCChecksumMismatch); + if (!(skipHash + || Arrays.equals(readIndexChecksum, hdr) + || Arrays.equals(NullMessageDigest.getInstance().digest(), + hdr))) { + throw new CorruptObjectException( + JGitText.get().DIRCChecksumMismatch); } } @@ -627,15 +636,9 @@ public class DirCache { } void writeTo(File dir, OutputStream os) throws IOException { - final MessageDigest foot = Constants.newMessageDigest(); - final DigestOutputStream dos = new DigestOutputStream(os, foot); - - if (version == null && this.repository != null) { - // A new DirCache is being written. - DirCacheConfig config = repository.getConfig() - .get(DirCacheConfig::new); - version = config.getIndexVersion(); - } + readConfig(); + MessageDigest foot = newMessageDigest(); + DigestOutputStream dos = new DigestOutputStream(os, foot); if (version == null || version == DirCacheVersion.DIRC_VERSION_MINIMUM) { version = DirCacheVersion.DIRC_VERSION_MINIMUM; @@ -707,6 +710,22 @@ public class DirCache { os.close(); } + private void readConfig() { + if (version == null && this.repository != null) { + DirCacheConfig config = repository.getConfig() + .get(DirCacheConfig::new); + version = config.getIndexVersion(); + skipHash = config.isSkipHash(); + } + } + + private MessageDigest newMessageDigest() { + if (skipHash) { + return NullMessageDigest.getInstance(); + } + return Constants.newMessageDigest(); + } + /** * Commit this change and release the lock. * <p> @@ -1071,6 +1090,8 @@ public class DirCache { private final DirCacheVersion indexVersion; + private final boolean skipHash; + public DirCacheConfig(Config cfg) { boolean manyFiles = cfg.getBoolean( ConfigConstants.CONFIG_FEATURE_SECTION, @@ -1080,11 +1101,16 @@ public class DirCache { ConfigConstants.CONFIG_KEY_VERSION, manyFiles ? DirCacheVersion.DIRC_VERSION_PATHCOMPRESS : DirCacheVersion.DIRC_VERSION_EXTENDED); + skipHash = cfg.getBoolean(ConfigConstants.CONFIG_INDEX_SECTION, + ConfigConstants.CONFIG_KEY_SKIPHASH, false); } public DirCacheVersion getIndexVersion() { return indexVersion; } + public boolean isSkipHash() { + return skipHash; + } } } diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/io/NullMessageDigest.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/io/NullMessageDigest.java new file mode 100644 index 0000000000..ea5877ffff --- /dev/null +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/io/NullMessageDigest.java @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2023, SAP SE and others + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Distribution License v. 1.0 which is available at + * https://www.eclipse.org/org/documents/edl-v10.php. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +package org.eclipse.jgit.internal.storage.io; + +import java.security.MessageDigest; + +import org.eclipse.jgit.lib.Constants; + +/** + * Dummy message digest consisting of only null bytes with the length of an + * ObjectId. This class can be used to skip computing a real digest. + */ +public final class NullMessageDigest extends MessageDigest { + private static final byte[] digest = new byte[Constants.OBJECT_ID_LENGTH]; + + private static final NullMessageDigest INSTANCE = new NullMessageDigest(); + + /** + * Get the only instance of NullMessageDigest + * + * @return the only instance of NullMessageDigest + */ + public static MessageDigest getInstance() { + return INSTANCE; + } + + private NullMessageDigest() { + super("null"); //$NON-NLS-1$ + } + + @Override + protected void engineUpdate(byte input) { + // empty + } + + @Override + protected void engineUpdate(byte[] input, int offset, int len) { + // empty + } + + @Override + protected byte[] engineDigest() { + return digest; + } + + @Override + protected void engineReset() { + // empty + } +} diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java index 704395513f..c4b6bf955e 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -449,6 +449,12 @@ public final class ConfigConstants { public static final String CONFIG_KEY_INDEXVERSION = "indexversion"; /** + * The "skiphash" key + * @since 5.13.2 + */ + public static final String CONFIG_KEY_SKIPHASH = "skiphash"; + + /** * The "hidedotfiles" key * @since 3.5 */ |