go-gemini/client.go

221 lines
5.9 KiB
Go
Raw Normal View History

2020-10-24 19:15:32 +00:00
package gemini
2020-09-22 02:09:50 +00:00
import (
2020-09-24 04:30:21 +00:00
"bufio"
2020-09-22 02:09:50 +00:00
"crypto/tls"
2020-09-25 23:53:50 +00:00
"crypto/x509"
2020-11-05 20:27:12 +00:00
"errors"
2020-10-27 23:21:33 +00:00
"net"
2020-10-28 02:12:10 +00:00
"net/url"
2020-10-28 17:40:25 +00:00
"strings"
2020-11-01 00:55:56 +00:00
"time"
2020-09-22 02:09:50 +00:00
)
2020-10-28 17:40:25 +00:00
// Client is a Gemini client.
2020-11-24 21:28:58 +00:00
//
// Clients are safe for concurrent use by multiple goroutines.
2020-09-26 03:06:54 +00:00
type Client struct {
2020-10-28 17:40:25 +00:00
// KnownHosts is a list of known hosts.
KnownHosts KnownHostsFile
2020-09-26 03:06:54 +00:00
2020-11-01 00:55:56 +00:00
// Timeout specifies a time limit for requests made by this
// Client. The timeout includes connection time and reading
// the response body. The timer remains running after
// Get and Do return and will interrupt reading of the Response.Body.
//
// A Timeout of zero means no timeout.
Timeout time.Duration
// InsecureSkipTrust specifies whether the client should trust
2020-11-01 02:50:42 +00:00
// any certificate it receives without checking KnownHosts
2020-11-01 02:45:21 +00:00
// or calling TrustCertificate.
// Use with caution.
InsecureSkipTrust bool
2020-11-01 02:45:21 +00:00
2020-10-28 17:40:25 +00:00
// GetInput is called to retrieve input when the server requests it.
// If GetInput is nil or returns false, no input will be sent and
// the response will be returned.
GetInput func(prompt string, sensitive bool) (input string, ok bool)
// CheckRedirect determines whether to follow a redirect.
2020-11-05 20:44:01 +00:00
// If CheckRedirect is nil, redirects will not be followed.
2020-10-28 02:12:10 +00:00
CheckRedirect func(req *Request, via []*Request) error
2020-12-17 21:46:16 +00:00
// GetCertificate is called to retrieve a certificate upon
2020-10-28 17:40:25 +00:00
// the request of a server.
2020-12-17 21:46:16 +00:00
// If GetCertificate is nil or the returned error is not nil,
2020-10-28 17:40:25 +00:00
// the request will not be sent again and the response will be returned.
2020-12-17 21:46:16 +00:00
GetCertificate func(scope, path string) (tls.Certificate, error)
2020-10-28 17:40:25 +00:00
// TrustCertificate is called to determine whether the client
// should trust a certificate it has not seen before.
2020-11-01 03:05:31 +00:00
// If TrustCertificate is nil, the certificate will not be trusted
// and the connection will be aborted.
//
// If TrustCertificate returns TrustOnce, the certificate will be added
// to the client's list of known hosts.
// If TrustCertificate returns TrustAlways, the certificate will also be
// written to the known hosts file.
TrustCertificate func(hostname string, cert *x509.Certificate) Trust
2020-09-25 23:53:50 +00:00
}
2020-10-27 23:21:33 +00:00
// Get performs a Gemini request for the given url.
func (c *Client) Get(url string) (*Response, error) {
req, err := NewRequest(url)
if err != nil {
return nil, err
}
return c.Do(req)
}
// Do performs a Gemini request and returns a Gemini response.
func (c *Client) Do(req *Request) (*Response, error) {
2020-10-28 02:12:10 +00:00
return c.do(req, nil)
}
func (c *Client) do(req *Request, via []*Request) (*Response, error) {
2020-11-27 22:45:15 +00:00
// Extract hostname
colonPos := strings.LastIndex(req.Host, ":")
if colonPos == -1 {
colonPos = len(req.Host)
}
hostname := req.Host[:colonPos]
2020-09-25 23:53:50 +00:00
// Connect to the host
config := &tls.Config{
InsecureSkipVerify: true,
2020-09-26 04:31:16 +00:00
MinVersion: tls.VersionTLS12,
2020-10-28 17:40:25 +00:00
GetClientCertificate: func(_ *tls.CertificateRequestInfo) (*tls.Certificate, error) {
2020-12-17 21:46:16 +00:00
if req.Certificate != nil {
return req.Certificate, nil
}
return &tls.Certificate{}, nil
2020-09-26 19:14:34 +00:00
},
VerifyConnection: func(cs tls.ConnectionState) error {
2020-10-28 17:40:25 +00:00
return c.verifyConnection(req, cs)
2020-09-25 23:53:50 +00:00
},
2020-11-27 22:45:15 +00:00
ServerName: hostname,
2020-09-25 23:53:50 +00:00
}
2020-11-26 05:42:25 +00:00
netConn, err := (&net.Dialer{}).DialContext(req.Context, "tcp", req.Host)
2020-09-25 23:53:50 +00:00
if err != nil {
return nil, err
}
2020-11-26 05:42:25 +00:00
conn := tls.Client(netConn, config)
2020-11-01 00:55:56 +00:00
// Set connection deadline
if d := c.Timeout; d != 0 {
conn.SetDeadline(time.Now().Add(d))
2020-11-01 00:55:56 +00:00
}
2020-09-25 23:53:50 +00:00
// Write the request
w := bufio.NewWriter(conn)
req.write(w)
if err := w.Flush(); err != nil {
return nil, err
}
// Read the response
resp := &Response{}
2020-10-27 23:16:55 +00:00
if err := resp.read(conn); err != nil {
2020-09-25 23:53:50 +00:00
return nil, err
}
2020-11-06 16:18:58 +00:00
resp.Request = req
2020-10-28 17:40:25 +00:00
// Store connection state
2020-09-27 23:56:33 +00:00
resp.TLS = conn.ConnectionState()
2020-10-28 17:40:25 +00:00
switch {
case resp.Status == StatusCertificateRequired:
// Check to see if a certificate was already provided to prevent an infinite loop
if req.Certificate != nil {
return resp, nil
}
2020-10-28 17:40:25 +00:00
hostname, path := req.URL.Hostname(), strings.TrimSuffix(req.URL.Path, "/")
2020-12-17 21:46:16 +00:00
if c.GetCertificate != nil {
cert, err := c.GetCertificate(hostname, path)
2020-10-28 17:40:25 +00:00
if err != nil {
return resp, err
}
req.Certificate = &cert
2020-10-28 17:40:25 +00:00
return c.do(req, via)
}
2020-11-05 04:46:05 +00:00
return resp, nil
2020-10-28 17:40:25 +00:00
case resp.Status.Class() == StatusClassInput:
if c.GetInput != nil {
input, ok := c.GetInput(resp.Meta, resp.Status == StatusSensitiveInput)
if ok {
req.URL.ForceQuery = true
2020-11-28 03:26:22 +00:00
req.URL.RawQuery = QueryEscape(input)
2020-10-28 17:40:25 +00:00
return c.do(req, via)
}
}
2020-11-05 04:46:05 +00:00
return resp, nil
2020-10-28 17:40:25 +00:00
case resp.Status.Class() == StatusClassRedirect:
2020-10-28 02:12:10 +00:00
if via == nil {
via = []*Request{}
}
via = append(via, req)
target, err := url.Parse(resp.Meta)
if err != nil {
return resp, err
}
2020-11-08 04:43:07 +00:00
target = req.URL.ResolveReference(target)
2020-11-05 04:46:05 +00:00
redirect := NewRequestFromURL(target)
2020-11-27 22:45:15 +00:00
redirect.Context = req.Context
2020-10-28 02:12:10 +00:00
if c.CheckRedirect != nil {
if err := c.CheckRedirect(redirect, via); err != nil {
return resp, err
}
2020-11-05 20:44:01 +00:00
return c.do(redirect, via)
2020-10-28 02:12:10 +00:00
}
}
2020-10-28 03:35:22 +00:00
2020-09-25 23:53:50 +00:00
return resp, nil
2020-09-24 04:30:21 +00:00
}
2020-10-27 23:21:33 +00:00
2020-10-28 17:40:25 +00:00
func (c *Client) verifyConnection(req *Request, cs tls.ConnectionState) error {
// Verify the hostname
var hostname string
if host, _, err := net.SplitHostPort(req.Host); err == nil {
hostname = host
} else {
hostname = req.Host
}
cert := cs.PeerCertificates[0]
if err := verifyHostname(cert, hostname); err != nil {
return err
}
if c.InsecureSkipTrust {
2020-11-01 02:45:21 +00:00
return nil
}
2020-11-06 03:30:13 +00:00
// Check the known hosts
2020-11-05 20:27:12 +00:00
knownHost, ok := c.KnownHosts.Lookup(hostname)
2020-11-25 19:16:51 +00:00
if !ok || !time.Now().Before(knownHost.Expires) {
2020-11-06 03:30:13 +00:00
// See if the client trusts the certificate
if c.TrustCertificate != nil {
switch c.TrustCertificate(hostname, cert) {
case TrustOnce:
2020-11-09 17:04:53 +00:00
fingerprint := NewFingerprint(cert.Raw, cert.NotAfter)
c.KnownHosts.Add(hostname, fingerprint)
2020-11-06 03:30:13 +00:00
return nil
case TrustAlways:
2020-11-09 17:04:53 +00:00
fingerprint := NewFingerprint(cert.Raw, cert.NotAfter)
c.KnownHosts.Add(hostname, fingerprint)
c.KnownHosts.Write(hostname, fingerprint)
2020-11-06 03:30:13 +00:00
return nil
}
2020-11-05 20:27:12 +00:00
}
2020-11-06 03:30:13 +00:00
return errors.New("gemini: certificate not trusted")
2020-11-05 20:27:12 +00:00
}
2020-11-09 17:04:53 +00:00
fingerprint := NewFingerprint(cert.Raw, cert.NotAfter)
if knownHost.Hex == fingerprint.Hex {
2020-11-06 03:30:13 +00:00
return nil
2020-10-27 23:21:33 +00:00
}
2020-11-06 03:30:13 +00:00
return errors.New("gemini: fingerprint does not match")
2020-10-27 23:21:33 +00:00
}