1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-06-01 13:46:07 +02:00
go-gemini/server.go

266 lines
6.7 KiB
Go
Raw Normal View History

2020-10-24 21:15:32 +02:00
package gemini
2020-09-26 01:06:56 +02:00
import (
"crypto/tls"
2020-11-05 21:27:12 +01:00
"errors"
2020-09-26 01:06:56 +02:00
"log"
"net"
"strings"
"time"
2021-01-15 02:42:12 +01:00
"git.sr.ht/~adnano/go-gemini/certificate"
2020-09-26 01:06:56 +02:00
)
// Server is a Gemini server.
type Server struct {
// Addr specifies the address that the server should listen on.
// If Addr is empty, the server will listen on the address ":1965".
Addr string
// ReadTimeout is the maximum duration for reading a request.
ReadTimeout time.Duration
// WriteTimeout is the maximum duration before timing out
// writes of the response.
WriteTimeout time.Duration
2020-11-01 05:05:00 +01:00
// Certificates contains the certificates used by the server.
2021-01-15 02:42:12 +01:00
Certificates certificate.Dir
2020-11-01 05:05:00 +01:00
// GetCertificate, if not nil, will be called to retrieve a new certificate
// if the current one is expired or missing.
GetCertificate func(hostname string) (tls.Certificate, error)
2020-09-26 01:06:56 +02:00
2020-11-03 22:11:31 +01:00
// ErrorLog specifies an optional logger for errors accepting connections
// and file system errors.
// If nil, logging is done via the log package's standard logger.
ErrorLog *log.Logger
2020-10-21 22:28:50 +02:00
// registered responders
responders map[responderKey]Responder
hosts map[string]bool
}
2020-10-21 22:28:50 +02:00
type responderKey struct {
2020-10-21 19:22:26 +02:00
scheme string
hostname string
}
2021-01-15 04:12:07 +01:00
// Handle registers a responder for the given pattern.
2020-10-28 21:02:04 +01:00
//
2021-01-15 04:12:07 +01:00
// The pattern must be in the form of "hostname" or "scheme://hostname".
2020-11-01 01:32:38 +01:00
// If no scheme is specified, a scheme of "gemini://" is implied.
// Wildcard patterns are supported (e.g. "*.example.com").
// To handle any hostname, use the wildcard pattern "*".
2021-01-15 04:12:07 +01:00
func (s *Server) Handle(pattern string, responder Responder) {
2020-10-21 19:22:26 +02:00
if pattern == "" {
2020-10-24 21:15:32 +02:00
panic("gemini: invalid pattern")
2020-10-12 00:57:04 +02:00
}
2020-10-21 22:28:50 +02:00
if responder == nil {
2020-10-24 21:15:32 +02:00
panic("gemini: nil responder")
2020-10-12 00:57:04 +02:00
}
2020-10-21 22:28:50 +02:00
if s.responders == nil {
s.responders = map[responderKey]Responder{}
s.hosts = map[string]bool{}
}
2020-10-21 19:22:26 +02:00
split := strings.SplitN(pattern, "://", 2)
2020-10-21 22:28:50 +02:00
var key responderKey
2020-10-21 19:22:26 +02:00
if len(split) == 2 {
key.scheme = split[0]
key.hostname = split[1]
} else {
key.scheme = "gemini"
key.hostname = split[0]
}
2020-10-28 19:59:45 +01:00
if _, ok := s.responders[key]; ok {
panic("gemini: multiple registrations for " + pattern)
}
2020-10-21 22:28:50 +02:00
s.responders[key] = responder
s.hosts[key.hostname] = true
}
2021-01-15 04:12:07 +01:00
// HandleFunc registers a responder function for the given pattern.
func (s *Server) HandleFunc(pattern string, responder func(*ResponseWriter, *Request)) {
s.Handle(pattern, ResponderFunc(responder))
2020-09-26 01:06:56 +02:00
}
// ListenAndServe listens for requests at the server's configured address.
func (s *Server) ListenAndServe() error {
addr := s.Addr
if addr == "" {
addr = ":1965"
}
ln, err := net.Listen("tcp", addr)
if err != nil {
return err
}
defer ln.Close()
2020-10-28 19:59:45 +01:00
return s.Serve(tls.NewListener(ln, &tls.Config{
ClientAuth: tls.RequestClientCert,
MinVersion: tls.VersionTLS12,
GetCertificate: s.getCertificate,
}))
2020-09-26 01:06:56 +02:00
}
// Serve listens for requests on the provided listener.
func (s *Server) Serve(l net.Listener) error {
var tempDelay time.Duration // how long to sleep on accept failure
for {
rw, err := l.Accept()
if err != nil {
// If this is a temporary error, sleep
if ne, ok := err.(net.Error); ok && ne.Temporary() {
if tempDelay == 0 {
tempDelay = 5 * time.Millisecond
} else {
tempDelay *= 2
}
if max := 1 * time.Second; tempDelay > max {
tempDelay = max
}
2020-11-03 22:11:31 +01:00
s.logf("gemini: Accept error: %v; retrying in %v", err, tempDelay)
2020-09-26 01:06:56 +02:00
time.Sleep(tempDelay)
continue
}
// Otherwise, return the error
return err
}
tempDelay = 0
go s.respond(rw)
}
}
// getCertificate retrieves a certificate for the given client hello.
2020-10-28 19:59:45 +01:00
func (s *Server) getCertificate(h *tls.ClientHelloInfo) (*tls.Certificate, error) {
cert, err := s.lookupCertificate(h.ServerName, h.ServerName)
if err != nil {
// Try wildcard
2020-10-31 20:11:05 +01:00
wildcard := strings.SplitN(h.ServerName, ".", 2)
if len(wildcard) == 2 {
// Use the wildcard pattern as the hostname.
hostname := "*." + wildcard[1]
cert, err = s.lookupCertificate(hostname, hostname)
}
// Try "*" wildcard
if err != nil {
// Use the server name as the hostname
// since "*" is not a valid hostname.
cert, err = s.lookupCertificate("*", h.ServerName)
2020-10-31 20:11:05 +01:00
}
}
return cert, err
}
2020-10-31 20:11:05 +01:00
// lookupCertificate retrieves the certificate for the given hostname,
// if and only if the provided pattern is registered.
// If no certificate is found in the certificate store or the certificate
// is expired, it calls GetCertificate to retrieve a new certificate.
func (s *Server) lookupCertificate(pattern, hostname string) (*tls.Certificate, error) {
if _, ok := s.hosts[pattern]; !ok {
2020-11-05 21:27:12 +01:00
return nil, errors.New("hostname not registered")
}
2020-11-05 21:27:12 +01:00
cert, ok := s.Certificates.Lookup(hostname)
2020-11-06 04:30:13 +01:00
if !ok || cert.Leaf != nil && cert.Leaf.NotAfter.Before(time.Now()) {
if s.GetCertificate != nil {
cert, err := s.GetCertificate(hostname)
2020-10-28 19:59:45 +01:00
if err == nil {
2021-01-15 02:42:12 +01:00
if err := s.Certificates.Add(hostname, cert); err != nil {
2020-11-09 19:54:15 +01:00
s.logf("gemini: Failed to write new certificate for %s: %s", hostname, err)
2020-11-03 22:11:31 +01:00
}
2020-10-28 19:59:45 +01:00
}
return &cert, err
}
2020-11-05 21:27:12 +01:00
return nil, errors.New("no certificate")
2020-10-28 19:59:45 +01:00
}
2020-11-05 21:27:12 +01:00
return &cert, nil
2020-10-28 19:59:45 +01:00
}
2020-10-21 22:28:50 +02:00
// respond responds to a connection.
func (s *Server) respond(conn net.Conn) {
defer conn.Close()
if d := s.ReadTimeout; d != 0 {
_ = conn.SetReadDeadline(time.Now().Add(d))
}
if d := s.WriteTimeout; d != 0 {
_ = conn.SetWriteDeadline(time.Now().Add(d))
}
w := NewResponseWriter(conn)
defer func() {
_ = w.Flush()
}()
req, err := ReadRequest(conn)
2020-10-21 22:28:50 +02:00
if err != nil {
w.Status(StatusBadRequest)
return
}
// Store information about the TLS connection
if tlsConn, ok := conn.(*tls.Conn); ok {
req.TLS = tlsConn.ConnectionState()
if len(req.TLS.PeerCertificates) > 0 {
peerCert := req.TLS.PeerCertificates[0]
// Store the TLS certificate
req.Certificate = &tls.Certificate{
Certificate: [][]byte{peerCert.Raw},
Leaf: peerCert,
}
}
}
resp := s.responder(req)
if resp == nil {
w.Status(StatusNotFound)
return
2020-10-21 22:28:50 +02:00
}
resp.Respond(w, req)
2020-10-21 22:28:50 +02:00
}
func (s *Server) responder(r *Request) Responder {
2020-10-31 20:11:05 +01:00
if h, ok := s.responders[responderKey{r.URL.Scheme, r.URL.Hostname()}]; ok {
2020-10-21 22:28:50 +02:00
return h
}
wildcard := strings.SplitN(r.URL.Hostname(), ".", 2)
if len(wildcard) == 2 {
2020-10-31 20:11:05 +01:00
if h, ok := s.responders[responderKey{r.URL.Scheme, "*." + wildcard[1]}]; ok {
2020-10-21 22:28:50 +02:00
return h
}
}
if h, ok := s.responders[responderKey{r.URL.Scheme, "*"}]; ok {
return h
}
return nil
2020-10-21 22:28:50 +02:00
}
2020-11-03 22:11:31 +01:00
func (s *Server) logf(format string, args ...interface{}) {
if s.ErrorLog != nil {
s.ErrorLog.Printf(format, args...)
} else {
log.Printf(format, args...)
}
}
2020-10-21 22:28:50 +02:00
// A Responder responds to a Gemini request.
type Responder interface {
// Respond accepts a Request and constructs a Response.
Respond(*ResponseWriter, *Request)
2020-09-26 01:06:56 +02:00
}
// ResponderFunc is a wrapper around a bare function that implements Responder.
type ResponderFunc func(*ResponseWriter, *Request)
func (f ResponderFunc) Respond(w *ResponseWriter, r *Request) {
f(w, r)
2020-09-28 08:05:37 +02:00
}