| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 | 
							- // Copyright (C) 2018 The Syncthing Authors.
 
- //
 
- // This Source Code Form is subject to the terms of the Mozilla Public
 
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 
- // You can obtain one at https://mozilla.org/MPL/2.0/.
 
- package main
 
- import (
 
- 	"bytes"
 
- 	"context"
 
- 	"crypto/tls"
 
- 	"encoding/json"
 
- 	"encoding/pem"
 
- 	"fmt"
 
- 	"log"
 
- 	"math/rand"
 
- 	"net"
 
- 	"net/http"
 
- 	"net/url"
 
- 	"sort"
 
- 	"strconv"
 
- 	"strings"
 
- 	"sync"
 
- 	"time"
 
- 	"github.com/syncthing/syncthing/lib/protocol"
 
- )
 
- // announcement is the format received from and sent to clients
 
- type announcement struct {
 
- 	Seen      time.Time `json:"seen"`
 
- 	Addresses []string  `json:"addresses"`
 
- }
 
- type apiSrv struct {
 
- 	addr     string
 
- 	cert     tls.Certificate
 
- 	db       database
 
- 	listener net.Listener
 
- 	repl     replicator // optional
 
- 	useHTTP  bool
 
- 	mapsMut sync.Mutex
 
- 	misses  map[string]int32
 
- }
 
- type requestID int64
 
- func (i requestID) String() string {
 
- 	return fmt.Sprintf("%016x", int64(i))
 
- }
 
- type contextKey int
 
- const idKey contextKey = iota
 
- func newAPISrv(addr string, cert tls.Certificate, db database, repl replicator, useHTTP bool) *apiSrv {
 
- 	return &apiSrv{
 
- 		addr:    addr,
 
- 		cert:    cert,
 
- 		db:      db,
 
- 		repl:    repl,
 
- 		useHTTP: useHTTP,
 
- 		misses:  make(map[string]int32),
 
- 	}
 
- }
 
- func (s *apiSrv) Serve(ctx context.Context) error {
 
- 	if s.useHTTP {
 
- 		listener, err := net.Listen("tcp", s.addr)
 
- 		if err != nil {
 
- 			log.Println("Listen:", err)
 
- 			return err
 
- 		}
 
- 		s.listener = listener
 
- 	} else {
 
- 		tlsCfg := &tls.Config{
 
- 			Certificates:           []tls.Certificate{s.cert},
 
- 			ClientAuth:             tls.RequestClientCert,
 
- 			SessionTicketsDisabled: true,
 
- 			MinVersion:             tls.VersionTLS12,
 
- 			CipherSuites: []uint16{
 
- 				tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
 
- 				tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
 
- 				tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
 
- 				tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
 
- 				tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
 
- 				tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
 
- 			},
 
- 		}
 
- 		tlsListener, err := tls.Listen("tcp", s.addr, tlsCfg)
 
- 		if err != nil {
 
- 			log.Println("Listen:", err)
 
- 			return err
 
- 		}
 
- 		s.listener = tlsListener
 
- 	}
 
- 	http.HandleFunc("/", s.handler)
 
- 	http.HandleFunc("/ping", handlePing)
 
- 	srv := &http.Server{
 
- 		ReadTimeout:    httpReadTimeout,
 
- 		WriteTimeout:   httpWriteTimeout,
 
- 		MaxHeaderBytes: httpMaxHeaderBytes,
 
- 	}
 
- 	err := srv.Serve(s.listener)
 
- 	if err != nil {
 
- 		log.Println("Serve:", err)
 
- 	}
 
- 	return err
 
- }
 
- var topCtx = context.Background()
 
- func (s *apiSrv) handler(w http.ResponseWriter, req *http.Request) {
 
- 	t0 := time.Now()
 
- 	lw := NewLoggingResponseWriter(w)
 
- 	defer func() {
 
- 		diff := time.Since(t0)
 
- 		apiRequestsSeconds.WithLabelValues(req.Method).Observe(diff.Seconds())
 
- 		apiRequestsTotal.WithLabelValues(req.Method, strconv.Itoa(lw.statusCode)).Inc()
 
- 	}()
 
- 	reqID := requestID(rand.Int63())
 
- 	ctx := context.WithValue(topCtx, idKey, reqID)
 
- 	if debug {
 
- 		log.Println(reqID, req.Method, req.URL)
 
- 	}
 
- 	remoteAddr := &net.TCPAddr{
 
- 		IP:   nil,
 
- 		Port: -1,
 
- 	}
 
- 	if s.useHTTP {
 
- 		remoteAddr.IP = net.ParseIP(req.Header.Get("X-Forwarded-For"))
 
- 		if parsedPort, err := strconv.ParseInt(req.Header.Get("X-Client-Port"), 10, 0); err == nil {
 
- 			remoteAddr.Port = int(parsedPort)
 
- 		}
 
- 	} else {
 
- 		var err error
 
- 		remoteAddr, err = net.ResolveTCPAddr("tcp", req.RemoteAddr)
 
- 		if err != nil {
 
- 			log.Println("remoteAddr:", err)
 
- 			lw.Header().Set("Retry-After", errorRetryAfterString())
 
- 			http.Error(lw, "Internal Server Error", http.StatusInternalServerError)
 
- 			apiRequestsTotal.WithLabelValues("no_remote_addr").Inc()
 
- 			return
 
- 		}
 
- 	}
 
- 	switch req.Method {
 
- 	case "GET":
 
- 		s.handleGET(ctx, lw, req)
 
- 	case "POST":
 
- 		s.handlePOST(ctx, remoteAddr, lw, req)
 
- 	default:
 
- 		http.Error(lw, "Method Not Allowed", http.StatusMethodNotAllowed)
 
- 	}
 
- }
 
- func (s *apiSrv) handleGET(ctx context.Context, w http.ResponseWriter, req *http.Request) {
 
- 	reqID := ctx.Value(idKey).(requestID)
 
- 	deviceID, err := protocol.DeviceIDFromString(req.URL.Query().Get("device"))
 
- 	if err != nil {
 
- 		if debug {
 
- 			log.Println(reqID, "bad device param")
 
- 		}
 
- 		lookupRequestsTotal.WithLabelValues("bad_request").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Bad Request", http.StatusBadRequest)
 
- 		return
 
- 	}
 
- 	key := deviceID.String()
 
- 	rec, err := s.db.get(key)
 
- 	if err != nil {
 
- 		// some sort of internal error
 
- 		lookupRequestsTotal.WithLabelValues("internal_error").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Internal Server Error", http.StatusInternalServerError)
 
- 		return
 
- 	}
 
- 	if len(rec.Addresses) == 0 {
 
- 		lookupRequestsTotal.WithLabelValues("not_found").Inc()
 
- 		s.mapsMut.Lock()
 
- 		misses := s.misses[key]
 
- 		if misses < rec.Misses {
 
- 			misses = rec.Misses + 1
 
- 		} else {
 
- 			misses++
 
- 		}
 
- 		s.misses[key] = misses
 
- 		s.mapsMut.Unlock()
 
- 		if misses%notFoundMissesWriteInterval == 0 {
 
- 			rec.Misses = misses
 
- 			rec.Missed = time.Now().UnixNano()
 
- 			rec.Addresses = nil
 
- 			// rec.Seen retained from get
 
- 			s.db.put(key, rec)
 
- 		}
 
- 		w.Header().Set("Retry-After", notFoundRetryAfterString(int(misses)))
 
- 		http.Error(w, "Not Found", http.StatusNotFound)
 
- 		return
 
- 	}
 
- 	lookupRequestsTotal.WithLabelValues("success").Inc()
 
- 	bs, _ := json.Marshal(announcement{
 
- 		Seen:      time.Unix(0, rec.Seen),
 
- 		Addresses: addressStrs(rec.Addresses),
 
- 	})
 
- 	w.Header().Set("Content-Type", "application/json")
 
- 	w.Write(bs)
 
- }
 
- func (s *apiSrv) handlePOST(ctx context.Context, remoteAddr *net.TCPAddr, w http.ResponseWriter, req *http.Request) {
 
- 	reqID := ctx.Value(idKey).(requestID)
 
- 	rawCert := certificateBytes(req)
 
- 	if rawCert == nil {
 
- 		if debug {
 
- 			log.Println(reqID, "no certificates")
 
- 		}
 
- 		announceRequestsTotal.WithLabelValues("no_certificate").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Forbidden", http.StatusForbidden)
 
- 		return
 
- 	}
 
- 	var ann announcement
 
- 	if err := json.NewDecoder(req.Body).Decode(&ann); err != nil {
 
- 		if debug {
 
- 			log.Println(reqID, "decode:", err)
 
- 		}
 
- 		announceRequestsTotal.WithLabelValues("bad_request").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Bad Request", http.StatusBadRequest)
 
- 		return
 
- 	}
 
- 	deviceID := protocol.NewDeviceID(rawCert)
 
- 	addresses := fixupAddresses(remoteAddr, ann.Addresses)
 
- 	if len(addresses) == 0 {
 
- 		announceRequestsTotal.WithLabelValues("bad_request").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Bad Request", http.StatusBadRequest)
 
- 		return
 
- 	}
 
- 	if err := s.handleAnnounce(deviceID, addresses); err != nil {
 
- 		announceRequestsTotal.WithLabelValues("internal_error").Inc()
 
- 		w.Header().Set("Retry-After", errorRetryAfterString())
 
- 		http.Error(w, "Internal Server Error", http.StatusInternalServerError)
 
- 		return
 
- 	}
 
- 	announceRequestsTotal.WithLabelValues("success").Inc()
 
- 	w.Header().Set("Reannounce-After", reannounceAfterString())
 
- 	w.WriteHeader(http.StatusNoContent)
 
- }
 
- func (s *apiSrv) Stop() {
 
- 	s.listener.Close()
 
- }
 
- func (s *apiSrv) handleAnnounce(deviceID protocol.DeviceID, addresses []string) error {
 
- 	key := deviceID.String()
 
- 	now := time.Now()
 
- 	expire := now.Add(addressExpiryTime).UnixNano()
 
- 	dbAddrs := make([]DatabaseAddress, len(addresses))
 
- 	for i := range addresses {
 
- 		dbAddrs[i].Address = addresses[i]
 
- 		dbAddrs[i].Expires = expire
 
- 	}
 
- 	// The address slice must always be sorted for database merges to work
 
- 	// properly.
 
- 	sort.Sort(databaseAddressOrder(dbAddrs))
 
- 	seen := now.UnixNano()
 
- 	if s.repl != nil {
 
- 		s.repl.send(key, dbAddrs, seen)
 
- 	}
 
- 	return s.db.merge(key, dbAddrs, seen)
 
- }
 
- func handlePing(w http.ResponseWriter, r *http.Request) {
 
- 	w.WriteHeader(204)
 
- }
 
- func certificateBytes(req *http.Request) []byte {
 
- 	if req.TLS != nil && len(req.TLS.PeerCertificates) > 0 {
 
- 		return req.TLS.PeerCertificates[0].Raw
 
- 	}
 
- 	var bs []byte
 
- 	if hdr := req.Header.Get("X-SSL-Cert"); hdr != "" {
 
- 		if strings.Contains(hdr, "%") {
 
- 			// Nginx using $ssl_client_escaped_cert
 
- 			// The certificate is in PEM format with url encoding.
 
- 			// We need to decode for the PEM decoder
 
- 			hdr, err := url.QueryUnescape(hdr)
 
- 			if err != nil {
 
- 				// Decoding failed
 
- 				return nil
 
- 			}
 
- 			bs = []byte(hdr)
 
- 		} else {
 
- 			// Nginx using $ssl_client_cert
 
- 			// The certificate is in PEM format but with spaces for newlines. We
 
- 			// need to reinstate the newlines for the PEM decoder. But we need to
 
- 			// leave the spaces in the BEGIN and END lines - the first and last
 
- 			// space - alone.
 
- 			bs = []byte(hdr)
 
- 			firstSpace := bytes.Index(bs, []byte(" "))
 
- 			lastSpace := bytes.LastIndex(bs, []byte(" "))
 
- 			for i := firstSpace + 1; i < lastSpace; i++ {
 
- 				if bs[i] == ' ' {
 
- 					bs[i] = '\n'
 
- 				}
 
- 			}
 
- 		}
 
- 	} else if hdr := req.Header.Get("X-Forwarded-Tls-Client-Cert"); hdr != "" {
 
- 		// Traefik 2 passtlsclientcert
 
- 		// The certificate is in PEM format with url encoding but without newlines
 
- 		// and start/end statements. We need to decode, reinstate the newlines every 64
 
- 		// character and add statements for the PEM decoder
 
- 		hdr, err := url.QueryUnescape(hdr)
 
- 		if err != nil {
 
- 			// Decoding failed
 
- 			return nil
 
- 		}
 
- 		for i := 64; i < len(hdr); i += 65 {
 
- 			hdr = hdr[:i] + "\n" + hdr[i:]
 
- 		}
 
- 		hdr = "-----BEGIN CERTIFICATE-----\n" + hdr
 
- 		hdr = hdr + "\n-----END CERTIFICATE-----\n"
 
- 		bs = []byte(hdr)
 
- 	}
 
- 	if bs == nil {
 
- 		return nil
 
- 	}
 
- 	block, _ := pem.Decode(bs)
 
- 	if block == nil {
 
- 		// Decoding failed
 
- 		return nil
 
- 	}
 
- 	return block.Bytes
 
- }
 
- // fixupAddresses checks the list of addresses, removing invalid ones and
 
- // replacing unspecified IPs with the given remote IP.
 
- func fixupAddresses(remote *net.TCPAddr, addresses []string) []string {
 
- 	fixed := make([]string, 0, len(addresses))
 
- 	for _, annAddr := range addresses {
 
- 		uri, err := url.Parse(annAddr)
 
- 		if err != nil {
 
- 			continue
 
- 		}
 
- 		host, port, err := net.SplitHostPort(uri.Host)
 
- 		if err != nil {
 
- 			continue
 
- 		}
 
- 		ip := net.ParseIP(host)
 
- 		// Some classes of IP are no-go.
 
- 		if ip.IsLoopback() || ip.IsMulticast() {
 
- 			continue
 
- 		}
 
- 		if remote != nil {
 
- 			if host == "" || ip.IsUnspecified() {
 
- 				// Replace the unspecified IP with the request source.
 
- 				// ... unless the request source is the loopback address or
 
- 				// multicast/unspecified (can't happen, really).
 
- 				if remote.IP.IsLoopback() || remote.IP.IsMulticast() || remote.IP.IsUnspecified() {
 
- 					continue
 
- 				}
 
- 				// Do not use IPv6 remote address if requested scheme is ...4
 
- 				// (i.e., tcp4, etc.)
 
- 				if strings.HasSuffix(uri.Scheme, "4") && remote.IP.To4() == nil {
 
- 					continue
 
- 				}
 
- 				// Do not use IPv4 remote address if requested scheme is ...6
 
- 				if strings.HasSuffix(uri.Scheme, "6") && remote.IP.To4() != nil {
 
- 					continue
 
- 				}
 
- 				host = remote.IP.String()
 
- 			}
 
- 			// If zero port was specified, use remote port.
 
- 			if port == "0" && remote.Port > 0 {
 
- 				port = fmt.Sprintf("%d", remote.Port)
 
- 			}
 
- 		}
 
- 		uri.Host = net.JoinHostPort(host, port)
 
- 		fixed = append(fixed, uri.String())
 
- 	}
 
- 	return fixed
 
- }
 
- type loggingResponseWriter struct {
 
- 	http.ResponseWriter
 
- 	statusCode int
 
- }
 
- func NewLoggingResponseWriter(w http.ResponseWriter) *loggingResponseWriter {
 
- 	return &loggingResponseWriter{w, http.StatusOK}
 
- }
 
- func (lrw *loggingResponseWriter) WriteHeader(code int) {
 
- 	lrw.statusCode = code
 
- 	lrw.ResponseWriter.WriteHeader(code)
 
- }
 
- func addressStrs(dbAddrs []DatabaseAddress) []string {
 
- 	res := make([]string, len(dbAddrs))
 
- 	for i, a := range dbAddrs {
 
- 		res[i] = a.Address
 
- 	}
 
- 	return res
 
- }
 
- func errorRetryAfterString() string {
 
- 	return strconv.Itoa(errorRetryAfterSeconds + rand.Intn(errorRetryFuzzSeconds))
 
- }
 
- func notFoundRetryAfterString(misses int) string {
 
- 	retryAfterS := notFoundRetryMinSeconds + notFoundRetryIncSeconds*misses
 
- 	if retryAfterS > notFoundRetryMaxSeconds {
 
- 		retryAfterS = notFoundRetryMaxSeconds
 
- 	}
 
- 	retryAfterS += rand.Intn(notFoundRetryFuzzSeconds)
 
- 	return strconv.Itoa(retryAfterS)
 
- }
 
- func reannounceAfterString() string {
 
- 	return strconv.Itoa(reannounceAfterSeconds + rand.Intn(reannounzeFuzzSeconds))
 
- }
 
 
  |