2e32f171d2
This is a very subtle bug. In some specific circumstances, when the list of domains in the SAN was > 1, the library may delete the wrong record (specifically the last one) instead of the matching one. The issue is explained here https://groups.google.com/forum/#!topic/golang-nuts/tlWzJUWJKgA Here's the output from one of the various tests ➜ lego git:(dnsimple-subdomain) ✗ DNSIMPLE_DOMAIN=simone.io go test -v ./... --run "TestLiveDNSimpleCleanUp" ? github.com/xenolf/lego [no test files] === RUN TestLiveDNSimpleCleanUp 2016/01/30 01:10:45 Empty records: 2016/01/30 01:10:45 0 2016/01/30 01:10:46 Fetched records: 2016/01/30 01:10:46 [{5326536 41571 v=spf1 a include:_spf.google.com ~all 3600 0 TXT 2016-01-26 12:53:42.85 +0000 UTC 2016-01-26 12:53:42.85 +0000 UTC} {5026157 41571 google-site-verification=obstZAG6j2BVxYg696WxAsC46_d1-bzkv7D0qGm4K_0 3600 0 TXT 2015-10-19 11:21:03.586 +0000 UTC 2015-10-19 11:21:03.586 +0000 UTC} {5340655 41571 _acme-challenge ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-29 23:52:15.657 +0000 UTC 2016-01-29 23:52:15.657 +0000 UTC} {5340677 41571 _acme-challenge.www1 ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-30 00:03:19.89 +0000 UTC 2016-01-30 00:03:19.89 +0000 UTC}] 2016/01/30 01:10:46 Record name: 2016/01/30 01:10:46 _acme-challenge 2016/01/30 01:10:46 {5326536 41571 v=spf1 a include:_spf.google.com ~all 3600 0 TXT 2016-01-26 12:53:42.85 +0000 UTC 2016-01-26 12:53:42.85 +0000 UTC} 2016/01/30 01:10:46 {5026157 41571 google-site-verification=obstZAG6j2BVxYg696WxAsC46_d1-bzkv7D0qGm4K_0 3600 0 TXT 2015-10-19 11:21:03.586 +0000 UTC 2015-10-19 11:21:03.586 +0000 UTC} 2016/01/30 01:10:46 {5340655 41571 _acme-challenge ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-29 23:52:15.657 +0000 UTC 2016-01-29 23:52:15.657 +0000 UTC} 2016/01/30 01:10:46 Deleted>> 2016/01/30 01:10:46 {5340655 41571 _acme-challenge ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-29 23:52:15.657 +0000 UTC 2016-01-29 23:52:15.657 +0000 UTC} 2016/01/30 01:10:46 >>Deleted 2016/01/30 01:10:46 {5340677 41571 _acme-challenge.www1 ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-30 00:03:19.89 +0000 UTC 2016-01-30 00:03:19.89 +0000 UTC} 2016/01/30 01:10:46 Record to delete: 2016/01/30 01:10:46 1 2016/01/30 01:10:46 {5340677 41571 _acme-challenge.www1 ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-30 00:03:19.89 +0000 UTC 2016-01-30 00:03:19.89 +0000 UTC} 2016/01/30 01:10:46 Record to delete (foos): 2016/01/30 01:10:46 [{5340655 41571 _acme-challenge ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-29 23:52:15.657 +0000 UTC 2016-01-29 23:52:15.657 +0000 UTC}] 2016/01/30 01:10:46 Found records to delete: 2016/01/30 01:10:46 1 2016/01/30 01:10:46 [0xc8203be240] 2016/01/30 01:10:46 &{5340677 41571 _acme-challenge.www1 ADw2sEd82DUgXcQ9hNBZThJs7zVJkR5v9JeSbAb9mZY 120 0 TXT 2016-01-30 00:03:19.89 +0000 UTC 2016-01-30 00:03:19.89 +0000 UTC} --- PASS: TestLiveDNSimpleCleanUp (3.10s) PASS ok github.com/xenolf/lego/acme 3.121s The record 5340655 was supposed to be deleted, but 5340677 was deleted instead (notice how the deleted record was always the last one in the returned record set). And of course the validation never passed ➜ letsencrypt-dnsimple git:(master) go run main.go --user xxx --api-key "xxx" --email "xxx@gmail.com" simone.io,foo1.simone.io,foo2.simone.io,foo3.simone.io 2016/01/30 00:27:55 .data/users/xxx@gmail.com 2016/01/30 00:27:55 {xxx@gmail.com <nil> 0xc82009a300} 2016/01/30 00:27:56 [INFO] acme: Registering account for xxx@gmail.com 2016/01/30 00:27:57 &{{ 116016 {RSA xxx} [mailto:xxx@gmail.com] } https://acme-staging.api.letsencrypt.org/acme/reg/116016 https://acme-staging.api.letsencrypt.org/acme/new-authz https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf} 2016/01/30 00:27:58 [INFO][simone.io, foo1.simone.io, foo2.simone.io, foo3.simone.io] acme: Obtaining bundled SAN certificate 2016/01/30 00:27:59 [INFO][simone.io] acme: Could not find solver for: http-01 2016/01/30 00:27:59 [INFO][simone.io] acme: Trying to solve DNS-01 2016/01/30 00:28:00 simone.io 2016/01/30 00:28:00 &{0 0 _acme-challenge Uo7cIEDgw_sCgZhSOML_GU4DkKlgpB6p1Et8lxRVGLI 120 0 TXT <nil> <nil>} 2016/01/30 00:28:12 [INFO][simone.io] The server validated our request 2016/01/30 00:28:14 &{5340584 41571 _acme-challenge Uo7cIEDgw_sCgZhSOML_GU4DkKlgpB6p1Et8lxRVGLI 120 0 TXT 2016-01-29 23:28:00.828 +0000 UTC 2016-01-29 23:28:00.828 +0000 UTC} 2016/01/30 00:28:14 [INFO][foo1.simone.io] acme: Could not find solver for: http-01 2016/01/30 00:28:14 [INFO][foo1.simone.io] acme: Trying to solve DNS-01 2016/01/30 00:28:15 simone.io 2016/01/30 00:28:15 &{0 0 _acme-challenge.foo1 l_HB5ctb2M86FVcgpCaWgURVhCePNY9KIVQ0tsVH2Ew 120 0 TXT <nil> <nil>} 2016/01/30 00:28:19 &{5340585 41571 _acme-challenge.foo1 l_HB5ctb2M86FVcgpCaWgURVhCePNY9KIVQ0tsVH2Ew 120 0 TXT 2016-01-29 23:28:15.996 +0000 UTC 2016-01-29 23:28:15.996 +0000 UTC} 2016/01/30 00:28:19 [INFO][foo2.simone.io] acme: Could not find solver for: http-01 2016/01/30 00:28:19 [INFO][foo2.simone.io] acme: Could not find solver for: tls-sni-01 2016/01/30 00:28:19 [INFO][foo2.simone.io] acme: Trying to solve DNS-01 2016/01/30 00:28:20 simone.io 2016/01/30 00:28:20 &{0 0 _acme-challenge.foo2 rohi66Q0VHSEu0kR3LcGPkFEIftt47xHfeQercf8frU 120 0 TXT <nil> <nil>} 2016/01/30 00:28:22 [INFO][foo2.simone.io] The server validated our request 2016/01/30 00:28:23 &{5340586 41571 _acme-challenge.foo2 rohi66Q0VHSEu0kR3LcGPkFEIftt47xHfeQercf8frU 120 0 TXT 2016-01-29 23:28:21.051 +0000 UTC 2016-01-29 23:28:21.051 +0000 UTC} 2016/01/30 00:28:24 [INFO][foo3.simone.io] acme: Could not find solver for: tls-sni-01 2016/01/30 00:28:24 [INFO][foo3.simone.io] acme: Could not find solver for: http-01 2016/01/30 00:28:24 [INFO][foo3.simone.io] acme: Trying to solve DNS-01 2016/01/30 00:28:25 simone.io 2016/01/30 00:28:25 &{0 0 _acme-challenge.foo3 gmn1sKV_0gP3BiOT3yZQywZq95akKRGup0IJs1cqdVo 120 0 TXT <nil> <nil>} 2016/01/30 00:28:27 [INFO][foo3.simone.io] The server validated our request 2016/01/30 00:28:28 &{5340587 41571 _acme-challenge.foo3 gmn1sKV_0gP3BiOT3yZQywZq95akKRGup0IJs1cqdVo 120 0 TXT 2016-01-29 23:28:25.616 +0000 UTC 2016-01-29 23:28:25.616 +0000 UTC} 2016/01/30 00:28:28 map[foo1.simone.io:acme: Error 0 - urn:acme:error:connection - DNS problem: NXDOMAIN looking up TXT for _acme-challenge.foo1.simone.io Error Detail: ] exit status 1 This is the result of the latest (successful) run: ➜ letsencrypt-dnsimple git:(master) ✗ go run main.go --user xxx --api-key "xxx" --email "xxx@gmail.com" simone.io,yy.simone.io,xx.simone.io 2016/01/30 21:34:01 .data/users/xxx@gmail.com 2016/01/30 21:34:01 {xxx@gmail.com <nil> 0xc820070480} 2016/01/30 21:34:02 [INFO] acme: Registering account for xxx@gmail.com 2016/01/30 21:34:03 &{{ 116199 {RSA xxx} [mailto:xxx@gmail.com] } https://acme-staging.api.letsencrypt.org/acme/reg/116199 https://acme-staging.api.letsencrypt.org/acme/new-authz https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf} 2016/01/30 21:34:03 [INFO][simone.io, yy.simone.io, xx.simone.io] acme: Obtaining bundled SAN certificate 2016/01/30 21:34:04 [INFO][simone.io] acme: Could not find solver for: tls-sni-01 2016/01/30 21:34:04 [INFO][simone.io] acme: Could not find solver for: http-01 2016/01/30 21:34:04 [INFO][simone.io] acme: Trying to solve DNS-01 2016/01/30 21:34:13 [INFO][simone.io] The server validated our request 2016/01/30 21:34:14 Searching for 2016/01/30 21:34:14 simone.io 2016/01/30 21:34:15 To delete: 2016/01/30 21:34:15 {5341831 41571 _acme-challenge TX8-77TN9XHZHO510Yw20u1j89UhdgGXcwScKZHRGNY 120 0 TXT 2016-01-30 20:34:05.859 +0000 UTC 2016-01-30 20:34:05.859 +0000 UTC} 2016/01/30 21:34:15 Will delete: 2016/01/30 21:34:15 [{5341831 41571 _acme-challenge TX8-77TN9XHZHO510Yw20u1j89UhdgGXcwScKZHRGNY 120 0 TXT 2016-01-30 20:34:05.859 +0000 UTC 2016-01-30 20:34:05.859 +0000 UTC}] 2016/01/30 21:34:15 [INFO][yy.simone.io] acme: Could not find solver for: http-01 2016/01/30 21:34:15 [INFO][yy.simone.io] acme: Could not find solver for: tls-sni-01 2016/01/30 21:34:15 [INFO][yy.simone.io] acme: Trying to solve DNS-01 2016/01/30 21:34:18 [INFO][yy.simone.io] The server validated our request 2016/01/30 21:34:19 Searching for 2016/01/30 21:34:19 yy.simone.io 2016/01/30 21:34:19 To delete: 2016/01/30 21:34:19 {5341832 41571 _acme-challenge.yy pHolYM_OqxCThmL3nBA91qRCI6-oEIMG0YOJj3R1Xww 120 0 TXT 2016-01-30 20:34:17.176 +0000 UTC 2016-01-30 20:34:17.176 +0000 UTC} 2016/01/30 21:34:19 Will delete: 2016/01/30 21:34:19 [{5341832 41571 _acme-challenge.yy pHolYM_OqxCThmL3nBA91qRCI6-oEIMG0YOJj3R1Xww 120 0 TXT 2016-01-30 20:34:17.176 +0000 UTC 2016-01-30 20:34:17.176 +0000 UTC}] 2016/01/30 21:34:20 [INFO][xx.simone.io] acme: Could not find solver for: tls-sni-01 2016/01/30 21:34:20 [INFO][xx.simone.io] acme: Trying to solve DNS-01 2016/01/30 21:34:23 [INFO][xx.simone.io] The server validated our request 2016/01/30 21:34:23 Searching for 2016/01/30 21:34:23 xx.simone.io 2016/01/30 21:34:24 To delete: 2016/01/30 21:34:24 {5341833 41571 _acme-challenge.xx LEr6l7KJCr6e7LlqyQgAbZbKCRmLFa5zNC8kNHK1FtQ 120 0 TXT 2016-01-30 20:34:21.793 +0000 UTC 2016-01-30 20:34:21.793 +0000 UTC} 2016/01/30 21:34:24 Will delete: 2016/01/30 21:34:24 [{5341833 41571 _acme-challenge.xx LEr6l7KJCr6e7LlqyQgAbZbKCRmLFa5zNC8kNHK1FtQ 120 0 TXT 2016-01-30 20:34:21.793 +0000 UTC 2016-01-30 20:34:21.793 +0000 UTC}] 2016/01/30 21:34:25 [INFO][simone.io, yy.simone.io, xx.simone.io] acme: Validations succeeded; requesting certificates 2016/01/30 21:34:26 [INFO] acme: Requesting issuer cert from https://acme-staging.api.letsencrypt.org/acme/issuer-cert 2016/01/30 21:34:26 [INFO][simone.io] Server responded with a certificate. [INFO][https://acme-staging.api.letsencrypt.org/acme/cert/fae971fcb1ce12 c4d3bb95a1f577786cccfe] Certificate simone.io, yy.simone.io, xx.simone.io2016/01/30 21:34:26 145 <nil> 2016/01/30 21:34:26 .data/certs/1454186041 2016/01/30 21:34:26 completed! |
||
---|---|---|
acme | ||
.gitignore | ||
.travis.yml | ||
account.go | ||
CHANGELOG.md | ||
cli.go | ||
cli_handlers.go | ||
configuration.go | ||
crypto.go | ||
LICENSE | ||
README.md |
lego
Let's Encrypt client and ACME library written in Go
General
This is a work in progress. Please do NOT run this on a production server and please report any bugs you find!
Installation
lego supports both binary installs and install from source.
To get the binary just download the latest release for your OS/Arch from the release page and put the binary somewhere convenient. lego does not assume anything about the location you run it from.
To install from source, just run
go get -u github.com/xenolf/lego
Current Status
The code in this repository is under development.
Current features:
- Registering with a CA
- Requesting Certificates
- Renewing Certificates
- Revoking Certificates
- Initiating account recovery
- Identifier validation challenges
- HTTP (http-01)
- TLS with Server Name Indication (tls-sni-01)
- Proof of Possession of a Prior Key (proofOfPossession-01)
- DNS (dns-01) - Implemented in branch, blocked by upstream.
- Certificate bundling
- Library support for OCSP
Please keep in mind that CLI switches and APIs are still subject to change.
When using the standard --path
option, all certificates and account configurations are saved to a folder .lego in the current working directory.
Sudo
The CLI does not require root permissions but needs to bind to port 80 and 443 for certain challenges. To run the CLI without sudo, you have two options:
- Use setcap 'cap_net_bind_service=+ep' /path/to/program
- Pass the
--http
or/and the--tls
option and specify a custom port to bind to. In this case you have to forward port 80/443 to these custom ports (see Port Usage).
Port Usage
By default lego assumes it is able to bind to ports 80 and 443 to solve challenges.
If this is not possible in your environment, you can use the --http
and --tls
options to instruct
lego to listen on that interface:port for any incoming challenges.
If you are using this option, make sure you proxy all of the following traffic to these ports.
HTTP Port:
- All plaintext HTTP requests to port 80 which begin with a request path of
/.well-known/acme-challenge/
for the HTTP-01 challenge.
TLS Port:
- All TLS handshakes on port 443 for TLS-SNI-01.
This traffic redirection is only needed as long as lego solves challenges. As soon as you have received your certificates you can deactivate the forwarding.
Usage
NAME:
lego - Let's encrypt client to go!
USAGE:
./lego [global options] command [command options] [arguments...]
VERSION:
0.2.0
COMMANDS:
run Register an account, then create and install a certificate
revoke Revoke a certificate
renew Renew a certificate
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--domains, -d [--domains option --domains option] Add domains to the process
--server, -s "https://acme-v01.api.letsencrypt.org/directory" CA hostname (and optionally :port). The server certificate must be trusted in order to avoid further modifications to the client.
--email, -m Email used for registration and recovery contact.
--rsa-key-size, -B "2048" Size of the RSA key.
--path "${CWD}/.lego" Directory to use for storing the data
--exclude, -x [--exclude option --exclude option] Explicitly disallow solvers by name from being used. Solvers: "http-01", "tls-sni-01".
--http Set the port and interface to use for HTTP based challenges to listen on. Supported: interface:port or :port.
--tls Set the port and interface to use for TLS based challenges to listen on. Supported: interface:port or :port.
--help, -h show help
--version, -v print the version
CLI Example
Assumes the lego
binary has permission to bind to ports 80 and 443. You can get a pre-built binary from the releases page.
If your environment does not allow you to bind to these ports, please read Port Usage.
Obtain a certificate:
$ lego --email="foo@bar.com" --domains="example.com" run
(Find your certificate in the .lego
folder of current working directory.)
To renew the certificate:
$ lego --email="foo@bar.com" --domains="example.com" renew
ACME Library Usage
A valid, but bare-bones example use of the acme package:
// You'll need a user or account type that implements acme.User
type MyUser struct {
Email string
Registration *acme.RegistrationResource
key *rsa.PrivateKey
}
func (u MyUser) GetEmail() string {
return u.Email
}
func (u MyUser) GetRegistration() *acme.RegistrationResource {
return u.Registration
}
func (u MyUser) GetPrivateKey() *rsa.PrivateKey {
return u.key
}
// Create a user. New accounts need an email and private key to start.
const rsaKeySize = 2048
privateKey, err := rsa.GenerateKey(rand.Reader, rsaKeySize)
if err != nil {
log.Fatal(err)
}
myUser := MyUser{
Email: "you@yours.com",
key: privateKey,
}
// A client facilitates communication with the CA server. This CA URL is
// configured for a local dev instance of Boulder running in Docker in a VM.
client, err := acme.NewClient("http://192.168.99.100:4000", &myUser, rsaKeySize)
if err != nil {
log.Fatal(err)
}
// We specify an http port of 5002 and an tls port of 5001 on all interfaces because we aren't running as
// root and can't bind a listener to port 80 and 443
// (used later when we attempt to pass challenges).
// Keep in mind that we still need to proxy challenge traffic to port 5002 and 5001.
client.SetHTTPAddress(":5002")
client.SetTLSAddress(":5001")
// New users will need to register; be sure to save it
reg, err := client.Register()
if err != nil {
log.Fatal(err)
}
myUser.Registration = reg
// The client has a URL to the current Let's Encrypt Subscriber
// Agreement. The user will need to agree to it.
err = client.AgreeToTOS()
if err != nil {
log.Fatal(err)
}
// The acme library takes care of completing the challenges to obtain the certificate(s).
// Of course, the hostnames must resolve to this machine or it will fail.
bundle := false
certificates, failures := client.ObtainCertificate([]string{"mydomain.com"}, bundle, nil)
if len(failures) > 0 {
log.Fatal(failures)
}
// Each certificate comes back with the cert bytes, the bytes of the client's
// private key, and a certificate URL. This is where you should save them to files!
fmt.Printf("%#v\n", certificates)
// ... all done.