2015-11-12 01:08:52 +00:00
|
|
|
package acme
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type httpChallenge struct {
|
2015-12-05 14:53:53 +00:00
|
|
|
jws *jws
|
|
|
|
validate func(j *jws, uri string, chlng challenge) error
|
|
|
|
optPort string
|
2015-11-12 01:08:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *httpChallenge) Solve(chlng challenge, domain string) error {
|
|
|
|
|
2015-12-15 20:13:40 +00:00
|
|
|
logf("[INFO][%s] acme: Trying to solve HTTP-01", domain)
|
2015-11-12 01:08:52 +00:00
|
|
|
|
|
|
|
// Generate the Key Authorization for the challenge
|
2015-11-16 22:57:04 +00:00
|
|
|
keyAuth, err := getKeyAuthorization(chlng.Token, &s.jws.privKey.PublicKey)
|
2015-11-12 01:08:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow for CLI port override
|
|
|
|
port := ":80"
|
|
|
|
if s.optPort != "" {
|
|
|
|
port = ":" + s.optPort
|
|
|
|
}
|
|
|
|
|
|
|
|
listener, err := net.Listen("tcp", domain+port)
|
|
|
|
if err != nil {
|
|
|
|
// if the domain:port bind failed, fall back to :port bind and try that instead.
|
|
|
|
listener, err = net.Listen("tcp", port)
|
|
|
|
if err != nil {
|
2015-12-05 11:58:08 +00:00
|
|
|
return fmt.Errorf("Could not start HTTP server for challenge -> %v", err)
|
2015-11-12 01:08:52 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-05 11:58:08 +00:00
|
|
|
defer listener.Close()
|
2015-11-12 01:08:52 +00:00
|
|
|
|
2015-12-05 11:58:08 +00:00
|
|
|
path := "/.well-known/acme-challenge/" + chlng.Token
|
2015-11-12 01:08:52 +00:00
|
|
|
|
|
|
|
// The handler validates the HOST header and request type.
|
|
|
|
// For validation it then writes the token the server returned with the challenge
|
2015-12-05 12:05:40 +00:00
|
|
|
mux := http.NewServeMux()
|
|
|
|
mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
|
2015-11-12 01:08:52 +00:00
|
|
|
if strings.HasPrefix(r.Host, domain) && r.Method == "GET" {
|
|
|
|
w.Header().Add("Content-Type", "text/plain")
|
|
|
|
w.Write([]byte(keyAuth))
|
2015-12-02 19:33:37 +00:00
|
|
|
logf("[INFO] Served key authentication")
|
2015-11-12 01:08:52 +00:00
|
|
|
} else {
|
2015-12-02 19:33:37 +00:00
|
|
|
logf("[INFO] Received request for domain %s with method %s", r.Host, r.Method)
|
2015-11-12 01:08:52 +00:00
|
|
|
w.Write([]byte("TEST"))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-12-05 12:05:40 +00:00
|
|
|
go http.Serve(listener, mux)
|
2015-11-12 01:08:52 +00:00
|
|
|
|
2015-12-05 14:53:53 +00:00
|
|
|
return s.validate(s.jws, chlng.URI, challenge{Resource: "challenge", Type: chlng.Type, Token: chlng.Token, KeyAuthorization: keyAuth})
|
2015-11-12 01:08:52 +00:00
|
|
|
}
|