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

626 lines
18 KiB
Go
Raw Normal View History

2020-09-28 02:20:59 +02:00
package gmi
2020-09-26 01:06:56 +02:00
import (
"bufio"
"crypto/tls"
2020-09-28 07:10:36 +02:00
"crypto/x509"
2020-09-26 01:06:56 +02:00
"log"
"net"
"net/url"
"path"
2020-09-26 01:06:56 +02:00
"sort"
"strconv"
"strings"
"sync"
2020-09-26 01:06:56 +02:00
"time"
)
// 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
2020-10-12 05:48:18 +02:00
// CertificateStore contains the certificates used by the server.
CertificateStore CertificateStore
// GetCertificate, if not nil, will be called to retrieve the certificate
// to use for a given hostname.
// If the certificate is nil, the connection will be aborted.
GetCertificate func(hostname string, store *CertificateStore) *tls.Certificate
2020-09-26 01:06:56 +02:00
// registered handlers
handlers map[handlerKey]Handler
}
type handlerKey struct {
2020-10-21 19:22:26 +02:00
scheme string
hostname string
wildcard bool
}
2020-10-21 19:22:26 +02:00
// Handle registers a handler for the given pattern.
// Patterns must be in the form of scheme://hostname (e.g. gemini://example.com).
// If no scheme is specified, a default scheme of gemini:// is assumed.
// Wildcard patterns are supported (e.g. *.example.com).
func (s *Server) Handle(pattern string, handler Handler) {
if pattern == "" {
panic("gmi: invalid pattern")
2020-10-12 00:57:04 +02:00
}
if handler == nil {
panic("gmi: nil handler")
}
if s.handlers == nil {
s.handlers = map[handlerKey]Handler{}
}
2020-10-21 19:22:26 +02:00
split := strings.SplitN(pattern, "://", 2)
var key handlerKey
if len(split) == 2 {
key.scheme = split[0]
key.hostname = split[1]
} else {
key.scheme = "gemini"
key.hostname = split[0]
}
split = strings.SplitN(key.hostname, ".", 2)
2020-10-21 22:04:19 +02:00
if len(split) == 2 && split[0] == "*" {
key.hostname = split[1]
key.wildcard = true
2020-10-21 19:22:26 +02:00
}
2020-10-21 19:22:26 +02:00
s.handlers[key] = handler
}
2020-10-21 22:04:19 +02:00
// HandleFunc registers a handler function for the given pattern.
2020-10-21 19:22:26 +02:00
func (s *Server) HandleFunc(pattern string, handler func(*ResponseWriter, *Request)) {
s.Handle(pattern, HandlerFunc(handler))
}
type handlerEntry struct {
scheme string
host string
h Handler
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()
config := &tls.Config{
ClientAuth: tls.RequestClientCert,
MinVersion: tls.VersionTLS12,
2020-10-12 05:48:18 +02:00
GetCertificate: func(h *tls.ClientHelloInfo) (*tls.Certificate, error) {
if s.GetCertificate != nil {
return s.GetCertificate(h.ServerName, &s.CertificateStore), nil
2020-10-12 05:48:18 +02:00
}
return s.CertificateStore.Lookup(h.ServerName)
},
2020-09-26 01:06:56 +02:00
}
tlsListener := tls.NewListener(ln, config)
return s.Serve(tlsListener)
}
// 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
}
log.Printf("gemini: Accept error: %v; retrying in %v", err, tempDelay)
time.Sleep(tempDelay)
continue
}
// Otherwise, return the error
return err
}
tempDelay = 0
go s.respond(rw)
}
}
// ResponseWriter is used by a Gemini handler to construct a Gemini response.
type ResponseWriter struct {
2020-10-14 03:00:07 +02:00
b *bufio.Writer
2020-09-26 01:06:56 +02:00
bodyAllowed bool
2020-09-28 03:53:58 +02:00
wroteHeader bool
mimetype string
2020-09-26 01:06:56 +02:00
}
func newResponseWriter(conn net.Conn) *ResponseWriter {
return &ResponseWriter{
2020-10-14 03:00:07 +02:00
b: bufio.NewWriter(conn),
2020-09-26 01:06:56 +02:00
}
}
// WriteHeader writes the response header.
2020-09-28 03:53:58 +02:00
// If the header has already been written, WriteHeader does nothing.
2020-09-26 01:06:56 +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.
2020-10-14 03:00:07 +02:00
func (w *ResponseWriter) WriteHeader(status int, meta string) {
if w.wroteHeader {
2020-09-28 03:53:58 +02:00
return
}
2020-10-14 03:00:07 +02:00
w.b.WriteString(strconv.Itoa(status))
w.b.WriteByte(' ')
w.b.WriteString(meta)
w.b.Write(crlf)
2020-09-26 01:06:56 +02:00
// Only allow body to be written on successful status codes.
if status/10 == StatusClassSuccess {
2020-10-14 03:00:07 +02:00
w.bodyAllowed = true
2020-09-26 01:06:56 +02:00
}
2020-10-14 03:00:07 +02:00
w.wroteHeader = true
2020-09-28 03:53:58 +02:00
}
// SetMimetype sets the mimetype that will be written for a successful response.
// The provided mimetype will only be used if Write is called without calling
// WriteHeader.
// If the mimetype is not set, it will default to "text/gemini".
2020-10-14 03:00:07 +02:00
func (w *ResponseWriter) SetMimetype(mimetype string) {
w.mimetype = mimetype
2020-09-26 01:06:56 +02:00
}
// Write writes the response body.
// If the response status does not allow for a response body, Write returns
// ErrBodyNotAllowed.
2020-09-28 03:53:58 +02:00
//
// If WriteHeader has not yet been called, Write calls
// WriteHeader(StatusSuccess, mimetype) where mimetype is the mimetype set in
// SetMimetype. If no mimetype is set, a default of "text/gemini" will be used.
2020-10-14 03:00:07 +02:00
func (w *ResponseWriter) Write(b []byte) (int, error) {
if !w.wroteHeader {
mimetype := w.mimetype
2020-09-28 04:03:09 +02:00
if mimetype == "" {
mimetype = "text/gemini"
2020-09-28 03:53:58 +02:00
}
2020-10-14 03:00:07 +02:00
w.WriteHeader(StatusSuccess, mimetype)
2020-09-28 03:53:58 +02:00
}
2020-10-14 03:00:07 +02:00
if !w.bodyAllowed {
2020-09-26 01:06:56 +02:00
return 0, ErrBodyNotAllowed
}
2020-10-14 03:00:07 +02:00
return w.b.Write(b)
2020-09-26 01:06:56 +02:00
}
// respond responds to a connection.
func (s *Server) respond(conn net.Conn) {
r := bufio.NewReader(conn)
2020-10-14 02:22:12 +02:00
w := newResponseWriter(conn)
2020-09-26 01:06:56 +02:00
// Read requested URL
rawurl, err := r.ReadString('\r')
if err != nil {
return
}
// Read terminating line feed
if b, err := r.ReadByte(); err != nil {
return
} else if b != '\n' {
2020-10-14 02:22:12 +02:00
w.WriteHeader(StatusBadRequest, "Bad request")
2020-09-26 01:06:56 +02:00
}
// Trim carriage return
rawurl = rawurl[:len(rawurl)-1]
// Ensure URL is valid
if len(rawurl) > 1024 {
2020-10-14 02:22:12 +02:00
w.WriteHeader(StatusBadRequest, "Bad request")
2020-09-26 01:06:56 +02:00
} else if url, err := url.Parse(rawurl); err != nil || url.User != nil {
// Note that we return an error status if User is specified in the URL
2020-10-14 02:22:12 +02:00
w.WriteHeader(StatusBadRequest, "Bad request")
2020-09-26 01:06:56 +02:00
} else {
2020-10-21 21:47:32 +02:00
// If no scheme is specified, assume a default scheme of gemini://
if url.Scheme == "" {
url.Scheme = "gemini"
}
2020-09-26 01:06:56 +02:00
req := &Request{
URL: url,
RemoteAddr: conn.RemoteAddr(),
TLS: conn.(*tls.Conn).ConnectionState(),
}
2020-10-14 02:22:12 +02:00
s.handler(req).Serve(w, req)
2020-09-26 01:06:56 +02:00
}
2020-10-14 03:00:07 +02:00
w.b.Flush()
2020-09-26 01:06:56 +02:00
conn.Close()
}
2020-10-14 02:22:12 +02:00
func (s *Server) handler(r *Request) Handler {
2020-10-21 19:22:26 +02:00
if h, ok := s.handlers[handlerKey{r.URL.Scheme, r.URL.Hostname(), false}]; ok {
return h
}
2020-10-21 19:22:26 +02:00
wildcard := strings.SplitN(r.URL.Hostname(), ".", 2)
if len(wildcard) == 2 {
if h, ok := s.handlers[handlerKey{r.URL.Scheme, wildcard[1], true}]; ok {
return h
}
}
return NotFoundHandler()
}
2020-09-26 01:06:56 +02:00
// A Handler responds to a Gemini request.
type Handler interface {
// Serve accepts a Request and constructs a Response.
Serve(*ResponseWriter, *Request)
}
2020-09-28 04:06:08 +02:00
// Input responds to the request with a request for input using the given prompt.
2020-10-14 02:22:12 +02:00
func Input(w *ResponseWriter, r *Request, prompt string) {
w.WriteHeader(StatusInput, prompt)
2020-09-28 03:13:42 +02:00
}
2020-09-28 04:06:08 +02:00
// InputHandler returns a simple handler that responds to each request with
// a request for input.
func InputHandler(prompt string) Handler {
2020-10-14 02:22:12 +02:00
return HandlerFunc(func(w *ResponseWriter, r *Request) {
Input(w, r, prompt)
2020-09-28 04:06:08 +02:00
})
2020-09-28 03:13:42 +02:00
}
2020-09-28 08:05:37 +02:00
// WithInput either responds to the request with StatusInput if no input
// is provided, or calls f with the input when provided.
2020-10-14 02:22:12 +02:00
func WithInput(w *ResponseWriter, r *Request, prompt string, f func(string)) {
input := r.URL.RawQuery
2020-09-28 08:05:37 +02:00
if input == "" {
2020-10-14 02:22:12 +02:00
Input(w, r, prompt)
2020-09-28 08:05:37 +02:00
return
}
f(input)
}
// Sensitive responds to the request with a request for sensitive input
// using the given prompt.
2020-10-14 02:22:12 +02:00
func SensitiveInput(w *ResponseWriter, r *Request, prompt string) {
w.WriteHeader(StatusSensitiveInput, prompt)
2020-09-28 08:05:37 +02:00
}
// SensitiveInputHandler returns a simpler handler that responds to each request
// with a request for sensitive input.
func SensitiveInputHandler(prompt string) Handler {
2020-10-14 02:22:12 +02:00
return HandlerFunc(func(w *ResponseWriter, r *Request) {
SensitiveInput(w, r, prompt)
2020-09-28 08:05:37 +02:00
})
}
// WithSensitiveInput either responds to the request with StatusSensitiveInput
// if no input is provided, or calls f with the input when provided.
2020-10-14 02:22:12 +02:00
func WithSensitiveInput(w *ResponseWriter, r *Request, prompt string, f func(string)) {
input := r.URL.RawQuery
2020-09-28 08:05:37 +02:00
if input == "" {
2020-10-14 02:22:12 +02:00
SensitiveInput(w, r, prompt)
2020-09-28 08:05:37 +02:00
return
}
f(input)
}
2020-09-28 04:13:50 +02:00
// Redirect replies to the request with a redirect to the given URL.
2020-10-14 02:22:12 +02:00
func Redirect(w *ResponseWriter, r *Request, url string) {
w.WriteHeader(StatusRedirect, url)
2020-09-28 02:52:24 +02:00
}
// RedirectHandler returns a simple handler that responds to each request with
2020-09-28 02:11:45 +02:00
// a redirect to the given URL.
2020-09-28 04:06:08 +02:00
func RedirectHandler(url string) Handler {
2020-10-14 02:22:12 +02:00
return HandlerFunc(func(w *ResponseWriter, r *Request) {
Redirect(w, r, url)
2020-09-28 02:11:45 +02:00
})
}
2020-09-28 04:06:08 +02:00
// PermanentRedirect replies to the request with a permanent redirect to the given URL.
2020-10-14 02:22:12 +02:00
func PermanentRedirect(w *ResponseWriter, r *Request, url string) {
w.WriteHeader(StatusRedirectPermanent, url)
2020-09-28 02:52:24 +02:00
}
2020-09-28 04:06:08 +02:00
// PermanentRedirectHandler returns a simple handler that responds to each request with
// a redirect to the given URL.
func PermanentRedirectHandler(url string) Handler {
2020-10-14 02:22:12 +02:00
return HandlerFunc(func(w *ResponseWriter, r *Request) {
PermanentRedirect(w, r, url)
2020-09-28 02:11:45 +02:00
})
}
2020-09-28 04:06:08 +02:00
// NotFound replies to the request with the NotFound status code.
2020-10-14 02:22:12 +02:00
func NotFound(w *ResponseWriter, r *Request) {
w.WriteHeader(StatusNotFound, "Not found")
2020-09-28 04:06:08 +02:00
}
// NotFoundHandler returns a simple handler that responds to each request with
// the status code NotFound.
func NotFoundHandler() Handler {
return HandlerFunc(NotFound)
}
// Gone replies to the request with the Gone status code.
2020-10-14 02:22:12 +02:00
func Gone(w *ResponseWriter, r *Request) {
w.WriteHeader(StatusGone, "Gone")
2020-09-28 04:06:08 +02:00
}
// GoneHandler returns a simple handler that responds to each request with
// the status code Gone.
func GoneHandler() Handler {
return HandlerFunc(Gone)
}
2020-09-28 08:05:37 +02:00
// CertificateRequired responds to the request with the CertificateRequired
// status code.
2020-10-14 02:22:12 +02:00
func CertificateRequired(w *ResponseWriter, r *Request) {
w.WriteHeader(StatusCertificateRequired, "Certificate required")
2020-09-28 08:05:37 +02:00
}
// CertificateNotAuthorized responds to the request with
// the CertificateNotAuthorized status code.
2020-10-14 02:22:12 +02:00
func CertificateNotAuthorized(w *ResponseWriter, r *Request) {
w.WriteHeader(StatusCertificateNotAuthorized, "Certificate not authorized")
2020-09-28 08:05:37 +02:00
}
2020-09-28 08:13:46 +02:00
// WithCertificate either responds with CertificateRequired if the client did
// not provide a certificate, or calls f with the first ceritificate provided.
2020-10-14 02:22:12 +02:00
func WithCertificate(w *ResponseWriter, r *Request, f func(*x509.Certificate)) {
if len(r.TLS.PeerCertificates) == 0 {
CertificateRequired(w, r)
2020-09-28 07:10:36 +02:00
return
}
2020-10-14 02:22:12 +02:00
cert := r.TLS.PeerCertificates[0]
2020-09-28 07:10:36 +02:00
f(cert)
}
// CertificateHandler returns a simple handler that requests a certificate from
// clients if they did not provide one, and calls f with the first certificate
// if they did.
func CertificateHandler(f func(*x509.Certificate)) Handler {
2020-10-14 02:22:12 +02:00
return HandlerFunc(func(w *ResponseWriter, r *Request) {
WithCertificate(w, r, f)
2020-09-28 07:10:36 +02:00
})
}
2020-10-12 01:41:44 +02:00
// HandlerFunc is a wrapper around a bare function that implements Handler.
2020-09-26 01:06:56 +02:00
type HandlerFunc func(*ResponseWriter, *Request)
2020-10-14 02:22:12 +02:00
func (f HandlerFunc) Serve(w *ResponseWriter, r *Request) {
f(w, r)
2020-09-26 01:06:56 +02:00
}
2020-09-26 22:38:26 +02:00
// The following code is modified from the net/http package.
2020-10-14 02:36:47 +02:00
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// ServeMux is a Gemini request multiplexer.
// It matches the URL of each incoming request against a list of registered
// patterns and calls the handler for the pattern that
// most closely matches the URL.
//
// Patterns name fixed, rooted paths, like "/favicon.ico",
// or rooted subtrees, like "/images/" (note the trailing slash).
// Longer patterns take precedence over shorter ones, so that
// if there are handlers registered for both "/images/"
// and "/images/thumbnails/", the latter handler will be
// called for paths beginning "/images/thumbnails/" and the
// former will receive requests for any other paths in the
// "/images/" subtree.
//
// Note that since a pattern ending in a slash names a rooted subtree,
// the pattern "/" matches all paths not matched by other registered
// patterns, not just the URL with Path == "/".
//
// If a subtree has been registered and a request is received naming the
// subtree root without its trailing slash, ServeMux redirects that
// request to the subtree root (adding the trailing slash). This behavior can
// be overridden with a separate registration for the path without
// the trailing slash. For example, registering "/images/" causes ServeMux
// to redirect a request for "/images" to "/images/", unless "/images" has
// been registered separately.
//
2020-10-12 00:57:04 +02:00
// ServeMux also takes care of sanitizing the URL request path and
// redirecting any request containing . or .. elements or repeated slashes
// to an equivalent, cleaner URL.
type ServeMux struct {
mu sync.RWMutex
m map[string]muxEntry
es []muxEntry // slice of entries sorted from longest to shortest.
}
type muxEntry struct {
h Handler
pattern string
}
// cleanPath returns the canonical path for p, eliminating . and .. elements.
func cleanPath(p string) string {
if p == "" {
return "/"
}
if p[0] != '/' {
p = "/" + p
}
np := path.Clean(p)
// path.Clean removes trailing slash except for root;
// put the trailing slash back if necessary.
if p[len(p)-1] == '/' && np != "/" {
// Fast path for common case of p being the string we want:
if len(p) == len(np)+1 && strings.HasPrefix(p, np) {
np = p
} else {
np += "/"
}
}
return np
}
// Find a handler on a handler map given a path string.
// Most-specific (longest) pattern wins.
2020-09-28 22:02:32 +02:00
func (mux *ServeMux) match(path string) (h Handler, pattern string) {
// Check for exact match first.
2020-09-28 22:02:32 +02:00
v, ok := mux.m[path]
if ok {
return v.h, v.pattern
}
2020-09-28 22:02:32 +02:00
// Check for longest valid match. mux.es contains all patterns
// that end in / sorted from longest to shortest.
for _, e := range mux.es {
2020-09-28 22:02:32 +02:00
if strings.HasPrefix(path, e.pattern) {
return e.h, e.pattern
}
}
return nil, ""
}
// redirectToPathSlash determines if the given path needs appending "/" to it.
// This occurs when a handler for path + "/" was already registered, but
// not for path itself. If the path needs appending to, it creates a new
// URL, setting the path to u.Path + "/" and returning true to indicate so.
func (mux *ServeMux) redirectToPathSlash(path string, u *url.URL) (*url.URL, bool) {
mux.mu.RLock()
shouldRedirect := mux.shouldRedirectRLocked(path)
mux.mu.RUnlock()
if !shouldRedirect {
return u, false
}
path = path + "/"
u = &url.URL{Path: path, RawQuery: u.RawQuery}
return u, true
}
// shouldRedirectRLocked reports whether the given path and host should be redirected to
// path+"/". This should happen if a handler is registered for path+"/" but
// not path -- see comments at ServeMux.
func (mux *ServeMux) shouldRedirectRLocked(path string) bool {
if _, exist := mux.m[path]; exist {
return false
}
n := len(path)
if n == 0 {
return false
}
if _, exist := mux.m[path+"/"]; exist {
return path[n-1] != '/'
}
return false
}
// Handler returns the handler to use for the given request.
// It consults r.URL.Path. It always returns a non-nil handler.
// If the path is not in its canonical form, the
// handler will be an internally-generated handler that redirects
// to the canonical path. If the host contains a port, it is ignored
// when matching handlers.
//
// Handler also returns the registered pattern that matches the
// request or, in the case of internally-generated redirects,
// the pattern that will match after following the redirect.
//
// If there is no registered handler that applies to the request,
// Handler returns a "not found" handler and an empty pattern.
func (mux *ServeMux) Handler(r *Request) (h Handler, pattern string) {
2020-09-28 22:02:32 +02:00
path := cleanPath(r.URL.Path)
// If the given path is /tree and its handler is not registered,
// redirect for /tree/.
if u, ok := mux.redirectToPathSlash(path, r.URL); ok {
2020-09-28 22:02:32 +02:00
return RedirectHandler(u.String()), u.Path
}
2020-09-28 22:02:32 +02:00
if path != r.URL.Path {
_, pattern = mux.handler(path)
2020-09-28 22:02:32 +02:00
url := *r.URL
url.Path = path
return RedirectHandler(url.String()), pattern
}
return mux.handler(r.URL.Path)
}
// handler is the main implementation of Handler.
// The path is known to be in canonical form.
func (mux *ServeMux) handler(path string) (h Handler, pattern string) {
mux.mu.RLock()
defer mux.mu.RUnlock()
h, pattern = mux.match(path)
if h == nil {
h, pattern = NotFoundHandler(), ""
}
return
}
// Serve dispatches the request to the handler whose
// pattern most closely matches the request URL.
func (mux *ServeMux) Serve(w *ResponseWriter, r *Request) {
h, _ := mux.Handler(r)
h.Serve(w, r)
}
// Handle registers the handler for the given pattern.
// If a handler already exists for pattern, Handle panics.
func (mux *ServeMux) Handle(pattern string, handler Handler) {
mux.mu.Lock()
defer mux.mu.Unlock()
if pattern == "" {
panic("gmi: invalid pattern")
}
if handler == nil {
panic("gmi: nil handler")
}
if _, exist := mux.m[pattern]; exist {
panic("gmi: multiple registrations for " + pattern)
}
if mux.m == nil {
mux.m = make(map[string]muxEntry)
}
2020-09-28 22:02:32 +02:00
e := muxEntry{h: handler, pattern: pattern}
mux.m[pattern] = e
2020-09-28 22:02:32 +02:00
if pattern[len(pattern)-1] == '/' {
mux.es = appendSorted(mux.es, e)
}
}
func appendSorted(es []muxEntry, e muxEntry) []muxEntry {
n := len(es)
i := sort.Search(n, func(i int) bool {
2020-09-28 22:02:32 +02:00
return len(es[i].pattern) < len(e.pattern)
})
if i == n {
return append(es, e)
}
// we now know that i points at where we want to insert
es = append(es, muxEntry{}) // try to grow the slice in place, any entry works.
2020-10-12 00:57:04 +02:00
copy(es[i+1:], es[i:]) // move shorter entries down
es[i] = e
return es
}
// HandleFunc registers the handler function for the given pattern.
func (mux *ServeMux) HandleFunc(pattern string, handler func(*ResponseWriter, *Request)) {
if handler == nil {
panic("gmi: nil handler")
}
mux.Handle(pattern, HandlerFunc(handler))
}