Re: encrypted netrc for Git
From: Jeff King <hidden>
Date: 2016-06-15 22:51:36
On Fri, Jul 15, 2011 at 12:08:49PM -0500, Ted Zlatanov wrote:
JK> Check out: JK> https://github.com/peff/git/commits/jk/http-auth JK> which provides an interface for getting credentials from external JK> helpers. The API is good, but it's not clear from the docs how to configure credential helpers from the user side. From the tests it looks like you set GIT_ASKPASS to them, is that right? And you can also set credential.helper?
Yes, that is the documentation I need to write before I can send in the patches. :) The answer is that you use "credential.helper". For example: $ git config credential.helper cache $ git push https://your.server/repo.git Username: <input your username> Password: <input your password> ... push happens ... [five minutes pass] $ git push https://your.server/repo.git ... push happens, no auth required ...
Where do those helpers fit with the .netrc file? Are they called before or after or instead of the .netrc parse?
They are what git provides to curl, either because we have "user@" in
the URL, or because we tried curl once and got an HTTP 401. Curl uses
netrc automagically behind the scenes.
So for a URL without "user@" I believe the order would be:
1. Curl tries the request with what's in your netrc (or maybe it
transparently requests and uses the netrc after getting a 401; I'm
not sure).
2. Curl gives us a 401, and we ask for credentials via getpass(). Or a
credential helper, if defined. Any username given in netrc will not
be considered a partial credential (i.e., you will be prompted for
username and password as if netrc didn't exist).
3. If those credentials fail (i.e., we get a 401 again), we quit.
Linking these with external libraries like GPGME and the Secrets API will be pretty easy and improve the user experience. So I'll be glad to work on it and provide you with feedback.
Yes, exactly. I think somebody at GitHub will probably work on OS X
Keychain integration, too.
I personally use a home-grown password safe that is a searchable
gpg-encrypted file (which then gets unlocked by gpg-agent). My helper is
more or less:
-- >8 --
#!/bin/sh
unique=
for i in "$@"; do
case "$i" in
--unique=*) unique=${i#--unique=} ;;
esac
done
# find lines of the form
# example.com.username=me
# example.com.password=mypass
gpg -qd --no-tty $HOME/.pass.gpg |
sed -n 's/^$unique.//p
-- >8 --
(actually, my file format is quite a bit more complex and robust than
that, and I use a perl script to parse it instead of sed, but this was
meant to be illustrative of how simple it could be).
Obviously something integrated with the secrets API would be way nicer,
if you are running GNOME Keyring (that's part of why I pushed it out to
an external helper; there are nearly as many password wallet solutions
as there are users, and everybody will have their favorite).
Would you be interested in pushing your patches further after the testing? They seem pretty complete.
Absolutely. I'm planning on finishing up the docs and posting the patches in the next couple days, so hopefully they will get more feedback and testing there, too. -Peff