diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2011-05-27 12:04:19 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2011-05-31 08:58:45 -0700 |
commit | 67a1a0993f3969357c554b2030cfd794b3c3af89 (patch) | |
tree | c05749de9ac453f37713528a9289c2e6490e72c2 /org.eclipse.jgit | |
parent | c1525e2aa5e444a2a234de27d6b7189d5d7f715e (diff) | |
download | jgit-67a1a0993f3969357c554b2030cfd794b3c3af89.tar.gz jgit-67a1a0993f3969357c554b2030cfd794b3c3af89.zip |
Ensure the HTTP request is fully consumed
Some servlet containers require the servlet to read the EOF marker
from the input stream before a response can be output if the stream
is using "Transfer-Encoding: chunked"... which is typical for any
sort of large push to a repository over smart HTTP.
Ensure the EOF is always read by the PackParser when it is handling
the stream, and fail fast if there is more data present than expected
since this does indicate a protocol error.
Also ensure the EOF is read by UploadPack before it starts to output
a partial response using packing progress meters.
Change-Id: I131db9dea20b2324cb7c3272a814f21296bc64bd
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit')
3 files changed, 48 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java index 6f0c6c3b36..4bbe3a0048 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java @@ -136,6 +136,8 @@ public abstract class PackParser { private boolean needBaseObjectIds; + private boolean checkEofAfterPackFooter; + private long objectCount; private PackedObjectInfo[] entries; @@ -282,6 +284,21 @@ public abstract class PackParser { this.needBaseObjectIds = b; } + /** @return true if the EOF should be read from the input after the footer. */ + public boolean isCheckEofAfterPackFooter() { + return checkEofAfterPackFooter; + } + + /** + * Ensure EOF is read from the input stream after the footer. + * + * @param b + * true if the EOF should be read; false if it is not checked. + */ + public void setCheckEofAfterPackFooter(boolean b) { + checkEofAfterPackFooter = b; + } + /** @return the new objects that were sent by the user */ public ObjectIdSubclassMap<ObjectId> getNewObjectIds() { if (newObjectIds != null) @@ -782,6 +799,25 @@ public abstract class PackParser { System.arraycopy(buf, c, srcHash, 0, 20); use(20); + // The input stream should be at EOF at this point. We do not support + // yielding back any remaining buffered data after the pack footer, so + // protocols that embed a pack stream are required to either end their + // stream with the pack, or embed the pack with a framing system like + // the SideBandInputStream does. + + if (bAvail != 0) + throw new CorruptObjectException(MessageFormat.format( + JGitText.get().expectedEOFReceived, + "\\x" + Integer.toHexString(buf[bOffset] & 0xff))); + + if (isCheckEofAfterPackFooter()) { + int eof = in.read(); + if (0 <= eof) + throw new CorruptObjectException(MessageFormat.format( + JGitText.get().expectedEOFReceived, + "\\x" + Integer.toHexString(eof))); + } + if (!Arrays.equals(actHash, srcHash)) throw new CorruptObjectException( JGitText.get().corruptObjectPackfileChecksumIncorrect); diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java index e2ab5f6780..f1f9b0f44d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java @@ -825,6 +825,7 @@ public class ReceivePack { parser.setAllowThin(true); parser.setNeedNewObjectIds(checkReferencedIsReachable); parser.setNeedBaseObjectIds(checkReferencedIsReachable); + parser.setCheckEofAfterPackFooter(!biDirectionalPipe); parser.setObjectChecking(isCheckReceivedObjects()); parser.setLockMessage(lockMsg); packLock = parser.parse(receiving, resolving); diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java index 50f57130c3..0e50b937b6 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java @@ -55,6 +55,7 @@ import java.util.Map; import java.util.Set; import org.eclipse.jgit.JGitText; +import org.eclipse.jgit.errors.CorruptObjectException; import org.eclipse.jgit.errors.MissingObjectException; import org.eclipse.jgit.errors.PackProtocolException; import org.eclipse.jgit.lib.Constants; @@ -757,6 +758,16 @@ public class UploadPack { final boolean sideband = options.contains(OPTION_SIDE_BAND) || options.contains(OPTION_SIDE_BAND_64K); + if (!biDirectionalPipe) { + // Ensure the request was fully consumed. Any remaining input must + // be a protocol error. If we aren't at EOF the implementation is broken. + int eof = rawIn.read(); + if (0 <= eof) + throw new CorruptObjectException(MessageFormat.format( + JGitText.get().expectedEOFReceived, + "\\x" + Integer.toHexString(eof))); + } + ProgressMonitor pm = NullProgressMonitor.INSTANCE; OutputStream packOut = rawOut; SideBandOutputStream msgOut = null; |