Open sr229 opened 5 years ago
Hi,
If home directories were persistent (see #340) then gpg keys may be imported into a persistent home area./home/gitpod/.gnupg/
or /home/<github username>/.gnupg/
If home directories were persistent (see #340) then gpg keys may be imported into a persistent home area.
/home/gitpod/.gnupg/
or/home/<github username>/.gnupg/
Good suggestion, thanks!
But since persisting the home directory seems a bit complicated, I have found a potential work-around (that I'd like to use for SSH keys):
SSH_PUBLIC_KEY
and SSH_PRIVATE_KEY
environment variables in https://gitpod.io/environment-variables/ (you may restrict this to repos you trust, e.g. yourname/*
).gitpod.yml
:tasks:
- before: >
mkdir -p ~/.ssh &&
echo $SSH_PUBLIC_KEY > ~/.ssh/id_rsa.pub &&
chmod 644 ~/.ssh/id_rsa.pub &&
echo $SSH_PRIVATE_KEY > ~/.ssh/id_rsa &&
chmod 600 ~/.ssh/id_rsa
This will re-setup your SSH keys automatically in every workspace for that project, and may be adapted for GPG keys too.
It's a bit cumbersome, because it requires a project configuration change, but may work. I wonder if SSH and GPG could also accept keys as environment variables, removing the need for creating special files in the home directory.
Hi,
The following would work for GPG keys so something similar will also work for .ssh.
Convert your source .gnugpg directory contents to base64 data:
tar -czvf - ./.gnupg | base64 -w 0
Place this data into a gitpod environment varaiable called GNUGPG
Add following to project's .gitpod.yml
:
tasks:
- before: >
[[ ! -z $GNUGPG ]] &&
cd ~ &&
rm -rf .gnupg &&
echo $GNUGPG | base64 -d | tar --no-same-owner -xzvf -
Thanks for the tip!
- Place this data into a gitpod environment varaiable called GNUGPG
You can even do this directly from a Gitpod Terminal, like so:
gp env GNUGPG=$(tar -czvf - ~/.gnupg | base64 -w 0)
I don't like to store my private GPG (or SSH) keys in a (unencrypted) third-party database (aka “not my computer”), but I really would like to sign my commits. I think one should rather use a secure solution like Krypton for that (see also #782, thx @Vlaaaaaaad for the hint). With Krypton, the private key never leaves the security chip on your phone.
We could add Krypton to the Gitpod base image gitpod/workspace-full
. I was curious how well Krypton works in Gitpod. Thus, I created a simple sample repository (with some notes in the README.md): https://github.com/corneliusludmann/gitpod-krypton-example You still need to pair (kr pair
+ scan QR code with your phone) and enable (kr codesign
) Krypton in every workspace via the terminal. (It's totally fine for me, however, it shouldn't be to hard to build a plugin/widget for GUI support for this.)
Pros of adding Krypton to the Gitpod base image:
Cons of adding Krypton to the Gitpod base image:
How do you feel about it? Any opinions?
(Probably there are even alternatives to Krypton?!?)
I very much like the idea( it's what I use now due to me switching tons of devices for work) and it also adds secure SSH for people who need that buuuuut krypt.co has been acquired and is now a part of Akamai. No comment has been made regarding the future of krypt.co so I would be against adding it in the base image until the future of the project is known.
CC @kcking and @agrinman for a comment on this.
I don't like to store my private GPG (or SSH) keys in a (unencrypted) third-party database (aka “not my computer”),
@corneliusludmann If the keys are password protected then they are encrypted .
If the keys are password protected then they are encrypted .
You're right. That makes it much better. The only thing left is that you have to decrypt the keys in the (probably “untrusted”) workspace to sign your commits, don't you? It's still a (small) attack vector that services like Krypton solve.
I would prefer much to have an option to have Gitpod generate a one-time GPG key for me just like GitHub were they provide a GPG key for each account when you perform a browser-based edit as well.
There's reasons why this would be feasible since not everyone likes to provide their own keys and would probably prefer to have a service generate it for them.
while the solutions you have might be good, again, in my opinion, this increases complexity if we wanted Gitpod to be just a out of the box experience, meaning user should just code and test, and that's it. I think this should be a optional integration for services like Krypton since I don't feel like its worth the configuration for many just to have their commits authenticated. Having options is a nice little thing.
I agree with @sr229 the idea of the service is "frictionless coding" I feel it would compromise the goal of the project to force this it should be recommended but not forced upon users.
Any info on this? Gitpod being unable to sign the commits is quite annoying when i am trying to contribute to things that require CLA, etc.. alike https://github.com/tldr-pages/tldr/pull/4136
So for me i have to clone local and remake the commit..
Note that github has access token for this
So i would think that just adapting gitpod's logic to use this would be enough?
Note that github has access token for this
So i would think that just adapting gitpod's logic to use this would be enough?
Yep! That's what I was going for, We already have the API for it.
Any updates?
Any updates?
Hi @wusatosi and @crazyuploader!
While I agree this would definitely be more convenient with a built-in feature in Gitpod, you can already set up GPG-signed commits in Gitpod yourself as explained in https://github.com/gitpod-io/gitpod/issues/666#issuecomment-534347856
Please let me know if this doesn't work or if you're getting any errors.
Just wanna let you know @jankeromnes GitHub Codespaces now sign commits so you guys might want to catch up now.
Hi @wusatosi and @crazyuploader!
While I agree this would definitely be more convenient with a built-in feature in Gitpod, you can already set up GPG-signed commits in Gitpod yourself as explained in #666 (comment)
Please let me know if this doesn't work or if you're getting any errors.
Oh it worked, thanks!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
FWIW, I just tried the instructions on https://github.com/gitpod-io/gitpod/issues/666#issuecomment-534347856 and they don't work in the latest Gitpod builds (with rebranding and VS Code) via the gitpod
user. It requires sudo to sign anything. Does anyone know how to fix this?
FWIW, I just tried the instructions on #666 (comment) and they don't work in the latest Gitpod builds (with rebranding and VS Code) via the
gitpod
user. It requires sudo to sign anything. Does anyone know how to fix this?
I'm having difficulty with this as well. Initially I had difficulty generating keys in the container without sudo. I learned that the gpg needed write access to the terminal (owned by root:nogroup with file mode 640) for the passphrase prompt. I can change the file mode with sudo chmod 666 $(tty)
which allowed key generation to work. I've also seen errors when the terminal window was too small for the passphrase prompt. Even with gpg reporting access to the secret key, the terminal file mode changed, and the terminal window maximized I still dont get code signing to work.
Another solution here that I think is much closer to being a reality is to use Remote GPG Agent Forwarding (https://wiki.gnupg.org/AgentForwarding).
This would be the ideal solution for those already using the local VS Code feature.
We can piggy back on the SSH connection to forward the local gpg-agent to the remote gitpod.
I would also like to mention that I checked today GitLab access token and I couldn't find the GPG/PGP permission scope ( relates to https://github.com/gitpod-io/gitpod/issues/666#issuecomment-651321561)
That sounds like a viable solution, but it seems that would only work for the desktop Vscode and not for the browser ( no local system to connect to)
Another suggestion would be https://www.agwa.name/projects/git-crypt/ , where users can create repository-specific GPG keys ( for example I have a GPG key just for signing commits ) then share it with the repo. i know, it's cumbersome and prob not good, but it's an example.
Another example would be the Browser extension ( there is none ) that would hold or even connect to a local GPG agent and then sign then somehow let the VsCode ( browser ) know the result ...
I'm just throwing the ideas :)
maybe look into this https://keys.pub/ and their https://keys.pub/docs/specs/wormhole.html approach
Those also look like other possible solutions too.
However I’d like to point out that for those orgs which use PGP smartcards, remote forwarding the GPG agent will be required, none of the other solutions (gpg-agent in the browser, extra private keys, etc) will address that use case.
The use case for PGP in gitpod is not just for signing commits. It’s also for secrets management (e.g., with mozilla/sops and signing packages/releases.
Ok, good news :) I have managed to get gpg-agent forwarding working from my local workstation to the remote gitpod. I can successfully perform pgp operations (decrypting, signing) on my USB smartcard (plugged into to my local workstation) inside the gitpod.
The procedure is a bit of a manual one, and would greatly benefit with a little polish from the local companion I suspect.
gpgconf --kill gpg-agent
gitpod.ssh
RemoteForward /home/gitpod/.gnupg/S.gpg-agent /path/to/your/local/gpg-agent/extra-socket
(I assume you already are running gpg-agent locally)
gpgconf --list-dir agent-extra-socket
ssh -F gitpod.ssh <gitpod hostname>
gpg --list-secret-keys
and try out decryption/signing operations🎉
Security warning: this exposes your entire gnupg keyring and smartcard to the gitpod. So you probably don’t want to leave this open more than necessary, or configure a very short caching time for your smartcard pin.
You’ll need to perform this procedure every time you connect, because the ~/.gnupg folder is not persisted (you could put it in the workspace and use the GNUPG_HOME env var to workaround that). Also the connection details inside the ssh config file change every time you open the local vscode.
I implemented it as follows based on this blog post from @adangel.
But I made some changes:
tasks:
- before: >
[[ ! -z $GNUPG_KEY ]] &&
gpg --verbose --batch --import <(echo $GNUPG_KEY|base64 -d) &&
echo 'pinentry-mode loopback' >> ~/.gnupg/gpg.conf &&
git config --global user.signingkey $GNUPG_SIGNING_KEY &&
git config commit.gpgsign true
I want to make a signed commit by default when there is a GPG key. For my GPG signed commits I use a subkey, so I need to include that.
The error message I get has been the following.
Note that github has access token for this So i would think that just adapting gitpod's logic to use this would be enough?
Yep! That's what I was going for, We already have the API for it.
This only gives you access to your public gpg key. Even GitHub doesn't have your private key, and to sign your commit you need your private key.
I don't think Gitpod would want to store your private key as well, due to security and compliance complications.
One possible solution would be for gitpod to generate gpg private key for each user, and you would add public key to your github account. Then gitpod would use that private key to sign your commits, with the idea that even user wouldn't be able to see that private key. I think github is probably doing something similar when you use web interface.
I personally do want to be able to sign my commits in gitpod as well, but would want this to be done securely.
@sagor999 thank you for the feedback and clear explanation :pray: :heart_eyes: !
@gitpod-io/engineering-meta , I've just added this item to your inbox for triage. In talking with @csweichel , this would need to be done in the web app space, so I've added to your inbox accordingly.
I support the idea of gitpod creating its own GPG keys! Sounds like a good solution.
In the interest of userbility would it be possible for gitpod to pop up a dialogue when a user has a key generated, that asks them if they would like the key added to their app of choice? I can already imagine users getting frustrated when they go to commit their work and git throws an error about GPG signing being required, and they'd have to break their workflow to go and resolve it and add the key manually to GitLab etc.
Through the OAuth mechanisms I think this should be possible. You should already have access to the gitlab api for example.
It might be feature creep though, but it would be a much better user experience than just silently supporting it.
We currently don't really have the time to look into this. Secret management will come up on our roadmap sooner or later.
Until then I would
0) Generate keys yourself
1) Store the keys in a user environment variable in Gitpod
2) Use a personal dotfile repo to read that variable and configure git (as in the .gitpod.yml
above). This way you can make them appear in all your Gitpod workspaces
I implemented it as follows based on this blog post from @adangel.
But I made some changes:
tasks: - before: > [[ ! -z $GNUPG_KEY ]] && gpg --verbose --batch --import <(echo $GNUPG_KEY|base64 -d) && echo 'pinentry-mode loopback' >> ~/.gnupg/gpg.conf && git config --global user.signingkey $GNUPG_SIGNING_KEY && git config commit.gpgsign true
I want to make a signed commit by default when there is a GPG key.
The error message I get has been the following.
This is the same place I get stuck trying to set up code signing in the browser.
Hi guys, I was playing around with the idea to host my own little server which would have the keys and do the git commit signing with GPG. This way gitpod wouldn't have to host users GPG keys. This works from the system and there is no need to implement anything in the Vscode for now since all the passphrase is on the server.
I know that's not best practice in the security sense but I have no ide how to make the OS app talk to vscode :) maybe someone knows.
Here is the repo, let me know if you have any questions :)
Hi guys, I was playing around with the idea to host my own little server which would have the keys and do the git commit signing with GPG. This way gitpod wouldn't have to host users GPG keys. This works from the system and there is no need to implement anything in the Vscode for now since all the passphrase is on the server.
I know that's not best practice in the security sense but I have no ide how to make the OS app talk to vscode :) maybe someone knows.
Here is the repo, let me know if you have any questions :)
Looks really interesting, @woss ! Great work, I would love to test it out sometime.
After using my previous instructions for some months now, I've finally wrapped it into a simple script:
forward-gpg-agent-to-gitpod.sh
Example:
# open local vscode connected to remote gitpod
# then..
./forward-gpg-agent-to-gitpod.sh --ssh
And you'll have a shell into your gitpod with your local gpg-agent forwarded. Works great for smartcards.
It's unfortunate that this appears to not have any intention of being supported in an official capacity. Signing commits is not an uncommon practice and is used across many organizations. The lack of this feature is prohibiting me from adopting Gitpod and I suspect has been a gating factor for others as well.
As for the native support, i totally get the gitpod tech team being reluctant to do this. First, if they would keep your private key they are responsible for its security, storage, retrieval etc ... This would also make them a highly centralized solution and very likely a target of the baddies
.
@jmgilman them holding your key, or generating one keypair for you would go to the same bucket as i me asking you to send me your main gpg key and i will set it up on my server with my remote solution.
You don't trust me more than i trust you :)
If you are eager to have the signed commits, go here https://github.com/woss/git-pgp-remote-sign and set it up. If you need help you can reach me on matrix @woss:matrix.org
🙌🏽
First, if they would keep your private key they are responsible for its security, storage, retrieval etc
Understood, but I wouldn't expect them to tackle it this way. As others have mentioned, if you're working via the browser, tying into the Github API would be a nice alternative. However, like others here, I use a smart card to sign my commits so that solution wouldn't work for my setup. In that case, support for forwarding the GPG agent to the container would work. If I recall, the VSCode Remote Container plugin has this implemented already.
In my personal case, I use Codespaces which uses GitHub-generated GPG key, while yes, most people do not trust that system, this is considered enough for most people - so much so even GitLab has considered this too
In my personal case, I use Codespaces which uses GitHub-generated GPG key, while yes, most people do not trust that system, this is considered enough for most people - so much so even GitLab has considered this too
Sounds like a good idea. Does that mean we will have the GitHub GPG key reused by Gitpod (which I doubt, because GitHub won't provide its private key), or we will have a custom GPG key for our particular Gitpod environments?
The latest discussion on the GitLab thread pointed to a tool called GitSign which might or might not be applicable to this exact situation. Looks like it could be uniquely suited to Gitpods environment.
The latest discussion on the GitLab thread pointed to a tool called GitSign which might or might not be applicable to this exact situation. Looks like it could be uniquely suited to Gitpods environment.
If GitHub Apps are allowed to generate per-account keys or a register a service-level key as a verified key for supported VCS providers it may just work.
With the latest updates making gitpod remote IDE connections use SSH, and the just added "bring your own ssh publickey" to gitpod.io, combined that means to enable gpg signing via agent forwarding you can use these steps:
Host *.ssh.ws*.gitpod.io
ServerAliveInterval 15
IdentityFile /Users/cbarker/.ssh/gitpod
RemoteForward /home/gitpod/.gnupg/S.gpg-agent /Users/cbarker/.gnupg/S.gpg-agent.extra
StreamLocalBindUnlink yes
tasks:
- before: |
gpg --keyserver keys.openpgp.org --recv-keys 5993621FD9D214E212E421C3AC3A6CB9E464DBDA
gpgconf --kill gpg-agent
git config --global user.signingkey 5993621FD9D214E212E421C3AC3A6CB9E464DBDA
Now when you launch your workspace via VS Code IDE or Jetbrains, it should automatically forward a socket for GPG over SSH to your workspace. If you're in the web IDE, starting an ssh session from your workstation would also suffice.
In my configuration, my yubikey (setup from drduh's guide) hosts my private key. A side effect of this is that any commit signing or gpg action requires either pin + physical touch, or physical touch, before it will proceed. That makes me feel relatively secure knowing that while the socket is on a remote machine, the yubikey means I have to approve any use / access to the socket (I always require touch to sign and you can set a timeout for the pin approval).
If VS Code Web Supports signing, why not GitPod? GitPod is also a wrapper of VS Code... Please search VS Code Source to get how they sign commits.
@RudraSen2
If VS Code Web Supports signing, why not GitPod? GitPod is also a wrapper of VS Code... Please search VS Code Source to get how they sign commits.
The VScode relies on the git + gpg program that YOU install on YOUR computer. you have the private key and public key; VSCode is , only using it. Also, the way HOW it is using it is via the git itself, especially via the gpg.program
key in the .gitconfig
file. Which you can set to any gpg compliant program. What you think is simple is far from it.
You have to understand that Gitpod is not just a wrapper for VScode, it is also the infrastructure that runs in the cloud, and the ONLY state that is persistent is the /workspace
directory ( unless specified diff in the config ), which also means that you don't have many options if you are going to use it purely in the browser as i do. many people use it via the ssh on the desktop, which i personally think it's pointless since you can use the vscode directly ( of course, minus all the deps setup, etc ... then again, .devcontainer is good enough)
Having said that, i am using the remote signer for 6 months already, which signs my commits, and I am using ONLY the web version. maybe you can look into that before you start telling them what to do ;)
@mrzarquon's approach +1
1 issue though... StreamLocalBindUnlink
should in theory force the remote socket to get created? For some reason it didn't seem to work unless I went into the box to unlink
/home/gitpod/.gnupg/S.gpg-agent
first... anyone else find this?
With the latest updates making gitpod remote IDE connections use SSH, and the just added "bring your own ssh publickey" to gitpod.io, combined that means to enable gpg signing via agent forwarding you can use these steps:
- add publickey to your profile
- update your .ssh/config to forward gpg keys to *.ssh.ws.gitpod.io servers, this is my example:
Host *.ssh.ws*.gitpod.io ServerAliveInterval 15 IdentityFile /Users/cbarker/.ssh/gitpod RemoteForward /home/gitpod/.gnupg/S.gpg-agent /Users/cbarker/.gnupg/S.gpg-agent.extra StreamLocalBindUnlink yes
- Have a build task in your gitpod.yml to inject your public key, stop the gpg-agent (started because we initialized a public key), and configure git for your key:
tasks: - before: | gpg --keyserver keys.openpgp.org --recv-keys 5993621FD9D214E212E421C3AC3A6CB9E464DBDA gpgconf --kill gpg-agent git config --global user.signingkey 5993621FD9D214E212E421C3AC3A6CB9E464DBDA
Now when you launch your workspace via VS Code IDE or Jetbrains, it should automatically forward a socket for GPG over SSH to your workspace. If you're in the web IDE, starting an ssh session from your workstation would also suffice.
In my configuration, my yubikey (setup from drduh's guide) hosts my private key. A side effect of this is that any commit signing or gpg action requires either pin + physical touch, or physical touch, before it will proceed. That makes me feel relatively secure knowing that while the socket is on a remote machine, the yubikey means I have to approve any use / access to the socket (I always require touch to sign and you can set a timeout for the pin approval).
I'm planning on having a look at GitSign in my own time to see if there's anything smoother that can be done. In particular I'm keen to see how a Self hosted Fulcio and GitLab instances can be used with Gitpod.
The real unknown is whether I can bypass the browser auth of GitSign by using the token that Gitpod uses. I know I can get an access_token from http://localhost:22999/_supervisor/v1/token/git/my.host.name/
but I don't know if that's enough or if I need a full jwt or id_token, or even if Fulcio will accept one from Gitpod rather than from itself. I'll see what I can figure out.
One question I had for the dev's whilst I figure this out is: is there a way to get the full oidc id_token including the aud field?
One question I had for the dev's whilst I figure this out is: is there a way to get the full oidc id_token including the aud field?
I made some progress on this front. Turns out you can do the following:
curl --user oauth2:$(curl 'http://127.0.0.1:22999/_supervisor/v1/token/git/gitlab.com/' -s | jq -r '.token') "https://gitlab.com/jwt/auth?service=container_registry"
This retrieves a valid jwt (at least for gitlab) however it has the wrong audience to be useful for sigstore or fulcio. I've raised https://gitlab.com/gitlab-org/gitlab/-/issues/393134 to ask for this feature.
Not sure if the same is possible for github however
i've been following this discussion for a while, and i don't what's the big deal, i have been using signed commits since last year may, and where gitpod does not host my keys.
There are some projects that requires commits to be GPG-signed to verify the authenticity of a contributor. Gitpod should be able make commits GPG-signed as a preference or automatically like browser-editing.