Page MenuHomePhabricator

Proxy the "git upload-pack" wire protocol
ClosedPublic

Authored by epriestley on Apr 8 2019, 4:01 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 7:13 AM
Unknown Object (File)
Mon, Apr 1, 10:50 PM
Unknown Object (File)
Mon, Apr 1, 7:55 PM
Unknown Object (File)
Mon, Apr 1, 7:55 PM
Unknown Object (File)
Mon, Apr 1, 7:55 PM
Unknown Object (File)
Tue, Mar 26, 8:20 PM
Unknown Object (File)
Feb 3 2024, 10:02 PM
Unknown Object (File)
Feb 2 2024, 7:45 AM
Subscribers
None

Details

Summary

Depends on D20380. Ref T8093. When prototypes are enabled, inject a (hopefully?) no-op proxy into the Git wire protocol.

This proxy decodes "git upload-pack" and allows the list of references to be rewritten, in a similar way to how we already proxy the Subversion protocol to rewrite URIs and proxy the Mercurial protocol to distinguish between read and write operations.

The piece we care about comes at the beginning, and looks like this:

<frame-length><ref-hash> <ref-name>\0<server-capabilities>\n
<frame-length><ref-hash> <ref-name>\n
<frame-length><ref-hash> <ref-name>\n
...
<0000>

We can add, remove, or modify this section to make it appear that the server has different refs than the refs that exist on disk.

Things I have tried:

  • git ls-remote
  • git ls-remote where the server hides some refs.
  • git fetch where the fetch is a no-op.

Things I have not tried:

  • git fetch where the fetch is not a no-op.
  • Tricking things into doing protocol v2. Or: I tried this, I wasn't successful. In v2, additional "\0" tricks are used to hide data in the capabilities, I think?
  • git ls-remote where we rewrite/hide the first ref in the list, and need to move the capabilities frame elsewhere.
  • git ls-remote where the server has no refs at all, or we remove every ref.

So the "interesting" piece of this works, but it almost certainly needs some cleanup to survive interaction with the real world.

Test Plan

See above.

Diff Detail

Repository
rP Phabricator
Branch
proxy2
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 22501
Build 30809: Run Core Tests
Build 30808: arc lint + arc unit

Event Timeline

We probably can't really run this "alongside" the current production git endpoint without doing a ton of work, can we? It would be nice to watch this thing have byte-identical output to prod for a while before cutting over.

This revision is now accepted and ready to land.Apr 9 2019, 7:38 PM

We could.

src/applications/diffusion/ssh/DiffusionGitSSHWorkflow.php
125

We can run them simultaneously and check for byte-equivalence by changing this into:

$temporary_new_message = $protocol->willReadBytes($message);
$this->oldBytes .= $message;
$this->newBytes .= $temporary_new_message;

// ... later ...

assert($this->oldBytes === $this->newBytes);

This only gets us into trouble if someone enables prototypes and does a 2GB+ fetch and we hit the string length limit, and we could compare the outputs as we go to avoid that.

But I'm not sure this is particularly valuable: we don't have a way to collect external telemetry (and even if we did, having a protocol log but no actual repro case probably wouldn't be terribly helpful in many cases), and requests against secure don't touch any of the interesting cases anyway so it seems unlikely that they'd identify issues that don't crop up locally.

This does run "alongside" in the sense that the new code only activates when prototypes are enabled, so secure will see it but production will continue just doing protocol passthru until this feels ready to move forward.

We could.

Oh, I didn't really expand on this -- my rough plan is:

  • Probably don't touch this this week.
  • Before this lands, test all those edge cases and probably get the code into better overall shape -- more structure to the "frames/messages" part, probably unit tests since this stuff is super easy to unit test by dumping a text file with a protocol transcript into a data/ directory and making sure it parses into the expected set of frames.
  • Land it in "prototype-only", without any rewriting happening. Once that's solid, promote the no-rewrite code out of prototype.
  • Land the rewriting in "prototype-only", then promote it later.
  • Somewhere in here, "git fetch-pack" needs a similar treatment.

So the rollout can be fairly slow/limited based on how solid the code feels, I'm just not planning for a "double reads" stage where we're passing the bytes through directly but also parsing them and then logging when the messages don't match, since I think that's hard for us to implement and unlikely to catch anything that the more accessible approach doesn't catch.

This revision was automatically updated to reflect the committed changes.