Skip to content

Instantly share code, notes, and snippets.

@Speedy37
Created July 10, 2020 11:02
Show Gist options
  • Save Speedy37/1833b6b8c73a7768a266f0b903ab3678 to your computer and use it in GitHub Desktop.
Save Speedy37/1833b6b8c73a7768a266f0b903ab3678 to your computer and use it in GitHub Desktop.
WSL2 gpg agent relay (Yubikey)
#!/bin/bash
# Launches socat+npiperelay to relay the gpg-agent socket file for use in WSL
# See https://justyn.io/blog/using-a-yubikey-for-gpg-in-windows-10-wsl-windows-subsystem-for-linux/ for details
GPGDIR="${HOME}/.gnupg"
USERNAME=Vincent
# I use the same username for wsl and windows, but feel free to modify the paths below if that isn't the case
WIN_GPGDIR="C:/Users/${USERNAME}/AppData/Roaming/gnupg"
NPIPERELAY="${HOME}/npiperelay.exe"
PIDFILE="${GPGDIR}/.gpg-agent-relay.pid"
OLDPID=$(cat "${PIDFILE}")
if [ ! -z "${OLDPID}" ]; then
ps -p "${OLDPID}" >/dev/null && exit 0
fi
rm -f "${GPGDIR}/S.gpg-agent" "${GPGDIR}/S.gpg-agent.ssh"
# Relay the regular gpg-agent socket for gpg operations
socat UNIX-LISTEN:"${GPGDIR}/S.gpg-agent,fork" EXEC:"${NPIPERELAY} -ep -ei -s -a '${WIN_GPGDIR}/S.gpg-agent'",nofork &
AGENTPID=$!
# Relay the gpg ssh-agent
socat UNIX-LISTEN:"${GPGDIR}/S.gpg-agent.ssh,fork" EXEC:"${NPIPERELAY} -ep -ei -s -a '${WIN_GPGDIR}/S.gpg-agent.ssh'",nofork &
SSHPID=$!
echo $AGENTPID > ${PIDFILE}
@Hegi
Copy link

Hegi commented Mar 1, 2024

@shinji257 Right you are. Fixed & thanks! 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment