Page MenuHomePhabricator

[DRAFT] Parse the Git wire protocol in receive-pack
Changes PlannedPublic

Authored by epriestley on May 20 2016, 6:14 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jun 17, 10:37 PM
Unknown Object (File)
May 27 2025, 11:10 AM
Unknown Object (File)
May 4 2025, 8:28 PM
Unknown Object (File)
Apr 28 2025, 8:43 PM
Unknown Object (File)
Apr 27 2025, 2:14 PM
Unknown Object (File)
Apr 27 2025, 4:05 AM
Unknown Object (File)
Apr 10 2025, 9:04 PM
Unknown Object (File)
Mar 30 2025, 6:20 AM
Subscribers

Details

Summary

Ref T5000. Git's protocol is mostly fairly parsable. It has PACK blobs which are trickier to parse, but we don't currently need to decode them (and I think we may never need to decode them: we only need to rewrite refs and response codes, not object content).

To rewrite the actual response, we only need to rewrite this:

0033ng refs/heads/master pre-receive hook declined\n

...into this:

0019ok refs/heads/master \n

...which is pretty reasonable. This doesn't emit or interpret frames and isn't suitable to upstream since it also writes all of the protocol out to tempfiles, but I'm reasonably confident I can estimate T5000 now.

Test Plan

N/A

Diff Detail

Repository
rP Phabricator
Branch
git1
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 12284
Build 15527: Run Core Tests
Build 15526: arc lint + arc unit