1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-06-02 10:36:04 +02:00
go-gemini/client.go

254 lines
6.3 KiB
Go
Raw Normal View History

2020-09-22 04:09:50 +02:00
// Package gemini implements the Gemini protocol.
package gemini
import (
2020-09-24 06:30:21 +02:00
"bufio"
2020-09-22 04:09:50 +02:00
"crypto/tls"
2020-09-26 01:53:50 +02:00
"crypto/x509"
2020-09-22 04:09:50 +02:00
"errors"
2020-09-24 06:30:21 +02:00
"io/ioutil"
"net"
2020-09-22 04:09:50 +02:00
"net/url"
"strconv"
2020-09-26 05:06:54 +02:00
"strings"
2020-09-22 04:09:50 +02:00
)
// Client errors.
2020-09-22 04:09:50 +02:00
var (
2020-09-26 05:06:54 +02:00
ErrProtocol = errors.New("gemini: protocol error")
ErrInvalidURL = errors.New("gemini: requested URL is invalid")
ErrCertificateNotValid = errors.New("gemini: certificate is invalid")
ErrCertificateNotTrusted = errors.New("gemini: certificate is not trusted")
ErrCertificateUnknown = errors.New("gemini: certificate is unknown")
2020-09-22 04:09:50 +02:00
)
2020-09-26 01:53:50 +02:00
// Request represents a Gemini request.
2020-09-22 04:09:50 +02:00
type Request struct {
2020-09-24 07:37:57 +02:00
// URL specifies the URL being requested.
URL *url.URL
// For client requests, Host specifies the host on which the URL is sought.
// This field is ignored by the server.
Host string
2020-09-26 01:53:50 +02:00
// Certificate specifies the TLS certificate to use for the request.
2020-09-26 00:53:20 +02:00
Certificate tls.Certificate
2020-09-24 07:37:57 +02:00
// RemoteAddr allows servers and other software to record the network
// address that sent the request.
// This field is ignored by the client.
RemoteAddr net.Addr
// TLS allows servers and other software to record information about the TLS
// connection on which the request was recieved.
// This field is ignored by the client.
TLS tls.ConnectionState
2020-09-22 04:09:50 +02:00
}
// NewRequest returns a new request. The host is inferred from the provided url.
func NewRequest(rawurl string) (*Request, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, err
}
2020-09-24 07:43:03 +02:00
host := u.Host
// If there is no port, use the default port of 1965
if u.Port() == "" {
host += ":1965"
}
2020-09-22 04:09:50 +02:00
return &Request{
2020-09-24 07:43:03 +02:00
Host: host,
2020-09-22 04:09:50 +02:00
URL: u,
}, nil
}
// NewProxyRequest returns a new request using the provided host.
2020-09-24 07:43:03 +02:00
// The provided host must contain a port.
2020-09-22 04:09:50 +02:00
func NewProxyRequest(host, rawurl string) (*Request, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, err
}
return &Request{
Host: host,
URL: u,
}, nil
}
2020-09-25 01:02:03 +02:00
// write writes the Gemini request to the provided buffered writer.
func (r *Request) write(w *bufio.Writer) error {
2020-09-22 04:21:51 +02:00
url := r.URL.String()
2020-09-26 00:53:20 +02:00
// User is invalid
2020-09-22 04:21:51 +02:00
if r.URL.User != nil || len(url) > 1024 {
return ErrInvalidURL
}
2020-09-25 01:02:03 +02:00
if _, err := w.WriteString(url); err != nil {
return err
}
if _, err := w.Write(crlf); err != nil {
return err
}
return nil
2020-09-22 04:09:50 +02:00
}
// Response is a Gemini response.
type Response struct {
2020-09-24 07:37:57 +02:00
// Status represents the response status.
2020-09-22 04:09:50 +02:00
Status int
2020-09-24 07:37:57 +02:00
// Meta contains more information related to the response status.
// For successful responses, Meta should contain the mimetype of the response.
// For failure responses, Meta should contain a short description of the failure.
// Meta should not be longer than 1024 bytes.
Meta string
// Body contains the response body.
Body []byte
// TLS contains information about the TLS connection on which the response
// was received.
TLS tls.ConnectionState
2020-09-22 04:09:50 +02:00
}
2020-09-26 01:53:50 +02:00
// read reads a Gemini response from the provided buffered reader.
func (resp *Response) read(r *bufio.Reader) error {
// Read the status
2020-09-25 01:02:03 +02:00
statusB := make([]byte, 2)
if _, err := r.Read(statusB); err != nil {
2020-09-26 01:53:50 +02:00
return err
2020-09-25 01:02:03 +02:00
}
status, err := strconv.Atoi(string(statusB))
2020-09-24 06:30:21 +02:00
if err != nil {
2020-09-26 01:53:50 +02:00
return err
2020-09-24 06:30:21 +02:00
}
2020-09-26 01:53:50 +02:00
resp.Status = status
2020-09-24 06:30:21 +02:00
2020-09-25 01:02:03 +02:00
// Read one space
if b, err := r.ReadByte(); err != nil {
2020-09-26 01:53:50 +02:00
return err
2020-09-25 01:02:03 +02:00
} else if b != ' ' {
2020-09-26 01:53:50 +02:00
return ErrProtocol
2020-09-24 06:30:21 +02:00
}
2020-09-25 01:02:03 +02:00
// Read the meta
meta, err := r.ReadString('\r')
2020-09-24 06:30:21 +02:00
if err != nil {
2020-09-26 01:53:50 +02:00
return err
2020-09-24 06:30:21 +02:00
}
2020-09-25 01:02:03 +02:00
// Trim carriage return
meta = meta[:len(meta)-1]
2020-09-25 01:22:35 +02:00
// Ensure meta is less than or equal to 1024 bytes
2020-09-24 06:30:21 +02:00
if len(meta) > 1024 {
2020-09-26 01:53:50 +02:00
return ErrProtocol
}
resp.Meta = meta
// Read terminating newline
if b, err := r.ReadByte(); err != nil {
return err
} else if b != '\n' {
return ErrProtocol
2020-09-24 06:30:21 +02:00
}
2020-09-25 01:02:03 +02:00
// Read response body
if status/10 == StatusClassSuccess {
var err error
2020-09-26 01:53:50 +02:00
resp.Body, err = ioutil.ReadAll(r)
2020-09-25 01:02:03 +02:00
if err != nil {
2020-09-26 01:53:50 +02:00
return err
2020-09-25 01:02:03 +02:00
}
}
2020-09-26 01:53:50 +02:00
return nil
}
2020-09-24 06:30:21 +02:00
2020-09-26 01:53:50 +02:00
// Client represents a Gemini client.
2020-09-26 05:06:54 +02:00
type Client struct {
// KnownHosts is a list of known hosts that the client trusts.
KnownHosts KnownHosts
2020-09-26 05:06:54 +02:00
2020-09-26 21:14:34 +02:00
// CertificateStore contains all the certificates that the client has stored.
CertificateStore *CertificateStore
// GetCertificate, if not nil, will be called to determine which certificate
// (if any) should be used for a request.
GetCertificate func(req *Request, store *CertificateStore) *tls.Certificate
2020-09-26 05:06:54 +02:00
// TrustCertificate, if not nil, will be called to determine whether the
// client should trust the given certificate.
// If error is not nil, the connection will be aborted.
TrustCertificate func(cert *x509.Certificate, knownHosts *KnownHosts) error
2020-09-26 01:53:50 +02:00
}
// Send sends a Gemini request and returns a Gemini response.
2020-09-26 05:06:54 +02:00
func (c *Client) Send(req *Request) (*Response, error) {
2020-09-26 01:53:50 +02:00
// Connect to the host
config := &tls.Config{
InsecureSkipVerify: true,
2020-09-26 06:31:16 +02:00
MinVersion: tls.VersionTLS12,
2020-09-26 01:53:50 +02:00
Certificates: []tls.Certificate{req.Certificate},
2020-09-26 21:14:34 +02:00
GetClientCertificate: func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
if c.GetCertificate != nil {
if cert := c.GetCertificate(req, c.CertificateStore); cert != nil {
return cert, nil
}
}
return &req.Certificate, nil
},
2020-09-26 01:53:50 +02:00
VerifyPeerCertificate: func(rawCerts [][]byte, _ [][]*x509.Certificate) error {
2020-09-26 05:06:54 +02:00
// Parse the certificate
2020-09-26 01:53:50 +02:00
cert, err := x509.ParseCertificate(rawCerts[0])
if err != nil {
return err
}
2020-09-26 05:06:54 +02:00
// Check that the certificate is valid for the hostname
if err := cert.VerifyHostname(hostname(req.Host)); err != nil {
2020-09-27 19:50:48 +02:00
return err
2020-09-26 05:06:54 +02:00
}
// Check that the client trusts the certificate
if c.TrustCertificate == nil {
if err := c.KnownHosts.Lookup(cert); err != nil {
2020-09-26 19:29:29 +02:00
return err
2020-09-26 05:06:54 +02:00
}
} else if err := c.TrustCertificate(cert, &c.KnownHosts); err != nil {
return err
2020-09-26 05:06:54 +02:00
}
return nil
2020-09-26 01:53:50 +02:00
},
}
conn, err := tls.Dial("tcp", req.Host, config)
if err != nil {
return nil, err
}
defer conn.Close()
// Write the request
w := bufio.NewWriter(conn)
req.write(w)
if err := w.Flush(); err != nil {
return nil, err
}
// Read the response
resp := &Response{}
r := bufio.NewReader(conn)
// Store connection information
resp.TLS = conn.ConnectionState()
if err := resp.read(r); err != nil {
return nil, err
}
return resp, nil
2020-09-24 06:30:21 +02:00
}
2020-09-26 05:06:54 +02:00
// hostname extracts the host name from a valid host or host:port
func hostname(host string) string {
i := strings.LastIndexByte(host, ':')
if i != -1 {
return host[:i]
}
return host
}