2022-08-13 14:52:11 -04:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2023-05-02 02:15:33 -04:00
|
|
|
"encoding/binary"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2022-08-13 14:52:11 -04:00
|
|
|
"net/http"
|
|
|
|
|
2022-12-09 11:56:43 -05:00
|
|
|
"github.com/gorilla/mux"
|
2022-08-13 14:52:11 -04:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"golang.org/x/net/http2"
|
|
|
|
"golang.org/x/net/http2/h2c"
|
2022-12-09 11:56:43 -05:00
|
|
|
"tailscale.com/control/controlbase"
|
2022-08-19 18:06:26 -04:00
|
|
|
"tailscale.com/control/controlhttp"
|
2023-05-02 02:15:33 -04:00
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
"tailscale.com/types/key"
|
2022-08-13 14:52:11 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// ts2021UpgradePath is the path that the server listens on for the WebSockets upgrade.
|
|
|
|
ts2021UpgradePath = "/ts2021"
|
2023-05-02 02:15:33 -04:00
|
|
|
|
|
|
|
// The first 9 bytes from the server to client over Noise are either an HTTP/2
|
|
|
|
// settings frame (a normal HTTP/2 setup) or, as Tailscale added later, an "early payload"
|
|
|
|
// header that's also 9 bytes long: 5 bytes (earlyPayloadMagic) followed by 4 bytes
|
|
|
|
// of length. Then that many bytes of JSON-encoded tailcfg.EarlyNoise.
|
|
|
|
// The early payload is optional. Some servers may not send it... But we do!
|
|
|
|
earlyPayloadMagic = "\xff\xff\xffTS"
|
|
|
|
|
|
|
|
// EarlyNoise was added in protocol version 49.
|
|
|
|
earlyNoiseCapabilityVersion = 49
|
2022-08-13 14:52:11 -04:00
|
|
|
)
|
|
|
|
|
2023-05-02 02:15:33 -04:00
|
|
|
type noiseServer struct {
|
2022-12-09 11:56:43 -05:00
|
|
|
headscale *Headscale
|
|
|
|
|
2023-05-02 02:15:33 -04:00
|
|
|
httpBaseConfig *http.Server
|
|
|
|
http2Server *http2.Server
|
|
|
|
conn *controlbase.Conn
|
|
|
|
machineKey key.MachinePublic
|
|
|
|
nodeKey key.NodePublic
|
|
|
|
|
|
|
|
// EarlyNoise-related stuff
|
|
|
|
challenge key.ChallengePrivate
|
|
|
|
protocolVersion int
|
2022-12-09 11:56:43 -05:00
|
|
|
}
|
|
|
|
|
2022-08-13 14:52:11 -04:00
|
|
|
// NoiseUpgradeHandler is to upgrade the connection and hijack the net.Conn
|
|
|
|
// in order to use the Noise-based TS2021 protocol. Listens in /ts2021.
|
|
|
|
func (h *Headscale) NoiseUpgradeHandler(
|
|
|
|
writer http.ResponseWriter,
|
|
|
|
req *http.Request,
|
|
|
|
) {
|
|
|
|
log.Trace().Caller().Msgf("Noise upgrade handler for client %s", req.RemoteAddr)
|
|
|
|
|
2022-09-04 10:05:21 -04:00
|
|
|
upgrade := req.Header.Get("Upgrade")
|
|
|
|
if upgrade == "" {
|
|
|
|
// This probably means that the user is running Headscale behind an
|
|
|
|
// improperly configured reverse proxy. TS2021 requires WebSockets to
|
|
|
|
// be passed to Headscale. Let's give them a hint.
|
|
|
|
log.Warn().
|
|
|
|
Caller().
|
2022-09-04 10:13:30 -04:00
|
|
|
Msg("No Upgrade header in TS2021 request. If headscale is behind a reverse proxy, make sure it is configured to pass WebSockets through.")
|
2022-09-04 10:05:21 -04:00
|
|
|
http.Error(writer, "Internal error", http.StatusInternalServerError)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-02 02:15:33 -04:00
|
|
|
noiseServer := noiseServer{
|
|
|
|
headscale: h,
|
|
|
|
challenge: key.NewChallenge(),
|
|
|
|
}
|
|
|
|
|
|
|
|
noiseConn, err := controlhttp.AcceptHTTP(
|
|
|
|
req.Context(),
|
|
|
|
writer,
|
|
|
|
req,
|
|
|
|
*h.noisePrivateKey,
|
|
|
|
noiseServer.earlyNoise,
|
|
|
|
)
|
2022-08-13 14:52:11 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("noise upgrade failed")
|
|
|
|
http.Error(writer, err.Error(), http.StatusInternalServerError)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-02 02:15:33 -04:00
|
|
|
noiseServer.conn = noiseConn
|
|
|
|
noiseServer.machineKey = noiseServer.conn.Peer()
|
|
|
|
noiseServer.protocolVersion = noiseServer.conn.ProtocolVersion()
|
2022-12-09 11:56:43 -05:00
|
|
|
|
|
|
|
// This router is served only over the Noise connection, and exposes only the new API.
|
|
|
|
//
|
|
|
|
// The HTTP2 server that exposes this router is created for
|
|
|
|
// a single hijacked connection from /ts2021, using netutil.NewOneConnListener
|
|
|
|
router := mux.NewRouter()
|
|
|
|
|
2023-05-02 02:15:33 -04:00
|
|
|
router.HandleFunc("/machine/register", noiseServer.NoiseRegistrationHandler).
|
2022-12-09 11:56:43 -05:00
|
|
|
Methods(http.MethodPost)
|
2023-05-02 02:15:33 -04:00
|
|
|
router.HandleFunc("/machine/map", noiseServer.NoisePollNetMapHandler)
|
2022-12-09 11:56:43 -05:00
|
|
|
|
2022-09-04 05:35:39 -04:00
|
|
|
server := http.Server{
|
|
|
|
ReadTimeout: HTTPReadTimeout,
|
|
|
|
}
|
2023-05-02 02:15:33 -04:00
|
|
|
|
|
|
|
noiseServer.httpBaseConfig = &http.Server{
|
|
|
|
Handler: router,
|
|
|
|
ReadHeaderTimeout: HTTPReadTimeout,
|
|
|
|
}
|
|
|
|
noiseServer.http2Server = &http2.Server{}
|
|
|
|
|
|
|
|
server.Handler = h2c.NewHandler(router, noiseServer.http2Server)
|
|
|
|
|
|
|
|
noiseServer.http2Server.ServeConn(
|
|
|
|
noiseConn,
|
|
|
|
&http2.ServeConnOpts{
|
|
|
|
BaseConfig: noiseServer.httpBaseConfig,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ns *noiseServer) earlyNoise(protocolVersion int, writer io.Writer) error {
|
|
|
|
log.Trace().
|
|
|
|
Caller().
|
|
|
|
Int("protocol_version", protocolVersion).
|
|
|
|
Str("challenge", ns.challenge.Public().String()).
|
|
|
|
Msg("earlyNoise called")
|
|
|
|
|
|
|
|
if protocolVersion < earlyNoiseCapabilityVersion {
|
|
|
|
log.Trace().
|
|
|
|
Caller().
|
|
|
|
Msgf("protocol version %d does not support early noise", protocolVersion)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
earlyJSON, err := json.Marshal(&tailcfg.EarlyNoise{
|
|
|
|
NodeKeyChallenge: ns.challenge.Public(),
|
|
|
|
})
|
2022-08-14 06:44:07 -04:00
|
|
|
if err != nil {
|
2023-05-02 02:15:33 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// 5 bytes that won't be mistaken for an HTTP/2 frame:
|
|
|
|
// https://httpwg.org/specs/rfc7540.html#rfc.section.4.1 (Especially not
|
|
|
|
// an HTTP/2 settings frame, which isn't of type 'T')
|
|
|
|
var notH2Frame [5]byte
|
|
|
|
copy(notH2Frame[:], earlyPayloadMagic)
|
|
|
|
var lenBuf [4]byte
|
|
|
|
binary.BigEndian.PutUint32(lenBuf[:], uint32(len(earlyJSON)))
|
|
|
|
// These writes are all buffered by caller, so fine to do them
|
|
|
|
// separately:
|
|
|
|
if _, err := writer.Write(notH2Frame[:]); err != nil {
|
|
|
|
return err
|
2022-08-14 06:44:07 -04:00
|
|
|
}
|
2023-05-02 02:15:33 -04:00
|
|
|
if _, err := writer.Write(lenBuf[:]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := writer.Write(earlyJSON); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2022-08-13 14:52:11 -04:00
|
|
|
}
|