Simple http client/server in golang where the private key used in the connection is generated and embedded within a Trusted Platform Module.
This repo mostly uses the crypto.Signer
implementation from my own library implementing that interface for TPM("github.com/salrashid123/signer/tpm"
) and not the one from fromgo-tpm-tools.
The steps here will create two GCP VMs with TPMs create TPM based RSA keys, generate a CSR using those keys, then an external CA will issue an x509 cert using that csr.
Finally, the client will establish an mTLS https connection to the server
- update
7/17/23
: This sample use RSA keys many several manual steps and a customer signer. If you want to see one-way TLS where the server's private key is embedded in a TPM and the private key is cryptographically verified, please instead see https://github.com/salrashid123/tls_ak
NOTE: this repo is not supported by Google
NOTE:
- The TPM is a device so concurrent access (eg via goroutines) will result in exceptions:
Unable to Open TPM: open /dev/tpm0: device or resource busy
First create a server and install golang go version go1.16.5 linux/amd64
gcloud compute instances create ts-server \
--zone=us-central1-a --machine-type=n1-standard-1 \
--tags tpm --no-service-account --no-scopes \
--shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring \
--image=debian-10-buster-v20210916 --image-project=debian-cloud
gcloud compute firewall-rules create allow-https-tpm --action=ALLOW --rules=tcp:8081 --source-ranges=0.0.0.0/0 --target-tags=tpm
gcloud compute ssh ts-server
# in vm:
sudo su -
apt-get update
apt-get install wget git
wget https://golang.org/dl/go1.16.5.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.16.5.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
# get the source repo
git clone https://github.com/salrashid123/go_tpm_https_embed.git
cd go_tpm_https_embed
# generate CSR
go run src/csr/csr.go --pemCSRFile certs/server.csr --dnsSAN server.domain.com -v 20 -alsologtostderr
# generate the server certificate
cd certs/
mkdir new_certs
openssl ca -config openssl.conf -in server.csr -out server.crt -subj "/C=US/ST=California/L=Mountain View/O=Google/OU=Enterprise/CN=server.domain.com"
# run the server
go run src/server/server.go -cacert certs/CA_crt.pem -servercert certs/server.crt -tpmfile k.bin -port :8081
You can test the config locally using the pre-generated client certificates provided in this repo
export SERVER_IP=`gcloud compute instances describe ts-server --format="value(networkInterfaces.accessConfigs[0].natIP)"`
curl -v -H "Host: server.domain.com" --resolve server.domain.com:8081:$SERVER_IP --cert certs/client.crt --key certs/client.key --cacert certs/CA_crt.pem https://server.domain.com:8081/
gcloud compute instances create ts-client \
--zone=us-central1-a --machine-type=n1-standard-1 \
--tags tpm --no-service-account --no-scopes \
--shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring \
--image=debian-10-buster-v20210916 --image-project=debian-cloud
gcloud compute ssh ts-client
sudo su -
apt-get update
apt-get install wget git
wget https://golang.org/dl/go1.16.5.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.16.5.linux-amd64.tar.gz
# get the source repo
git clone https://github.com/salrashid123/go_tpm_https_embed.git
cd go_tpm_https_embed
# generate the client cert csr
go run src/csr/csr.go --pemCSRFile certs/kclient.csr --dnsSAN client.domain.com -v 20 -alsologtostderr
cd certs/
mkdir new_certs
openssl ca -config openssl.conf -in kclient.csr -out kclient.crt -subj "/C=US/ST=California/L=Mountain View/O=Google/OU=Enterprise/CN=client.domain.com"
# run the client using the server's IPaddress or just connect to the internal dns alias
# echo $SERVER_IP
go run src/client/client.go -cacert certs/CA_crt.pem -tpmfile k.bin --address ts-server
At this point, you should see a simple 'ok' from the sever
This repo includes a TLS wrapper function that uses the tpm crypto.Signer from crypto.Signer, implementations for Google Cloud KMS and Trusted Platform Modules. This repo used to use the go-tpm-tools/client.GetSigner() but i revered it in a CL.
Also included are two utility functions to flush all TPM handles (incase you've used up all of them)
go run src/util/util.go --mode flush -v 20 -alsologtostderr
And a a function to print the public RSA key for a given key (you can ofcourse also derive that from the certificate or csr)
go run src/util/util.go --mode print --keyfile k.bin -v 20 -alsologtostderr
Other references:
- Trusted Platform Module (TPM) and Google Cloud KMS based mTLS auth to HashiCorp Vault
- Docker daemon mTLS with Trusted Platform Module
- TPM TLS with nginx, openssl: https://github.com/salrashid123/go_tpm_https#nginx]
RSA-PSS padding: