Page MenuHomePhabricator

Proxy VCS SSH requests
ClosedPublic

Authored by epriestley on Jan 28 2015, 8:47 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 8:36 AM
Unknown Object (File)
Tue, Apr 9, 8:28 PM
Unknown Object (File)
Fri, Mar 29, 4:10 PM
Unknown Object (File)
Mar 4 2024, 6:03 PM
Unknown Object (File)
Feb 26 2024, 5:01 AM
Unknown Object (File)
Feb 4 2024, 3:13 AM
Unknown Object (File)
Jan 27 2024, 11:26 AM
Unknown Object (File)
Jan 11 2024, 1:29 PM
Subscribers

Details

Reviewers
btrahan
Maniphest Tasks
Restricted Maniphest Task
Commits
Restricted Diffusion Commit
rP8798083ad909: Proxy VCS SSH requests
Summary

Fixes T7034. Like HTTP, proxy requests to the correct host if a repository has an Almanac service host.

Test Plan

Ran VCS requests through the proxy.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Proxy VCS SSH requests.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: btrahan.
epriestley added a task: Restricted Maniphest Task.

This is kinda-maybe dangerous so I'm going to take a break and then self-review it with fresh eyes to see if I spot anything.

General thinking here:

I'm authenticating the user on the destination service by having the proxying service connect with a trusted device key and a special flag that says "I'm acting on behalf of @alincoln". A different approach I could have taken is to generate a "cluster SSH key" for each user and use that instead, which would be more similar to what we do with Conduit.

I didn't do that because it's more complex and significantly more work (to write, and to build the keys, and to use the keys), and I don't think it really increases security (if anything, it probably decreases security slightly, because the device key is harder for an attacker to get access to than user keys would need to be). The biggest drawback I see with this approach is that it's not the same as what we do with Conduit, which makes it harder to understand, but I think that's balanced by the smaller amount of code.

So the overall flow here is something like this:

CommandRuns OnRun By
git clone instance@host/repoYour LaptopUser
ssh -i alincoln.key -l instance host -- git-upload-pack repoYour Laptopgit
ssh -i device.key -l instance repo.service -- @alincoln git-upload-pack repoProxy Hostssh-exec on proxy
git-upload-pack repoService Hostssh-exec on service host

...if that makes any sense. The magic part there is in the third command, where we add @alincoln and the ssh-exec on the other end unpacks that to act as @alincoln.

The actual proxying is easy because in all cases we can just swap the VCS command out for one which has the exact same behavior but is nonlocal. We even get the whole SVN mess for free.

Caught a couple of things...

scripts/ssh/ssh-auth.php
31

I'll add a "throw the key away" else here to future proof this.

33–34

I just added this for logging, it doesn't do anything authentication-related.

scripts/ssh/ssh-exec.php
150–159

These variables are junk since we have another $user and a $user_name vs $username, I'll clean this up.

208

This fixes a bug, stripping was incorrect here and we were logging without the "hg" / "git" / "svn" bit.

  • Add else and fix variables.
btrahan edited edge metadata.

shipitquick

I agree with your pros / cons analysis too.

This revision is now accepted and ready to land.Jan 28 2015, 10:27 PM
This revision was automatically updated to reflect the committed changes.