mirror of
https://github.com/strukturag/nextcloud-spreed-signaling.git
synced 2024-11-21 15:17:58 +00:00
491 lines
11 KiB
Go
491 lines
11 KiB
Go
/**
|
|
* Standalone signaling server for the Nextcloud Spreed app.
|
|
* Copyright (C) 2024 struktur AG
|
|
*
|
|
* @author Joachim Bauch <bauch@struktur.de>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rsa"
|
|
"crypto/tls"
|
|
"encoding/json"
|
|
"errors"
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/golang-jwt/jwt/v5"
|
|
"github.com/gorilla/websocket"
|
|
|
|
signaling "github.com/strukturag/nextcloud-spreed-signaling"
|
|
)
|
|
|
|
const (
|
|
initialReconnectInterval = 1 * time.Second
|
|
maxReconnectInterval = 32 * time.Second
|
|
|
|
// Time allowed to write a message to the peer.
|
|
writeWait = 10 * time.Second
|
|
|
|
// Time allowed to read the next pong message from the peer.
|
|
pongWait = 60 * time.Second
|
|
|
|
// Send pings to peer with this period. Must be less than pongWait.
|
|
pingPeriod = (pongWait * 9) / 10
|
|
)
|
|
|
|
var (
|
|
ErrNotConnected = errors.New("not connected")
|
|
)
|
|
|
|
type RemoteConnection struct {
|
|
mu sync.Mutex
|
|
url *url.URL
|
|
conn *websocket.Conn
|
|
closer *signaling.Closer
|
|
closed atomic.Bool
|
|
|
|
tokenId string
|
|
tokenKey *rsa.PrivateKey
|
|
tlsConfig *tls.Config
|
|
|
|
connectedSince time.Time
|
|
reconnectTimer *time.Timer
|
|
reconnectInterval atomic.Int64
|
|
|
|
msgId atomic.Int64
|
|
helloMsgId string
|
|
sessionId string
|
|
|
|
pendingMessages []*signaling.ProxyClientMessage
|
|
messageCallbacks map[string]chan *signaling.ProxyServerMessage
|
|
}
|
|
|
|
func NewRemoteConnection(proxyUrl string, tokenId string, tokenKey *rsa.PrivateKey, tlsConfig *tls.Config) (*RemoteConnection, error) {
|
|
u, err := url.Parse(proxyUrl)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := &RemoteConnection{
|
|
url: u,
|
|
closer: signaling.NewCloser(),
|
|
|
|
tokenId: tokenId,
|
|
tokenKey: tokenKey,
|
|
tlsConfig: tlsConfig,
|
|
|
|
reconnectTimer: time.NewTimer(0),
|
|
|
|
messageCallbacks: make(map[string]chan *signaling.ProxyServerMessage),
|
|
}
|
|
result.reconnectInterval.Store(int64(initialReconnectInterval))
|
|
|
|
go result.writePump()
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (c *RemoteConnection) String() string {
|
|
return c.url.String()
|
|
}
|
|
|
|
func (c *RemoteConnection) reconnect() {
|
|
u, err := c.url.Parse("proxy")
|
|
if err != nil {
|
|
log.Printf("Could not resolve url to proxy at %s: %s", c, err)
|
|
c.scheduleReconnect()
|
|
return
|
|
}
|
|
if u.Scheme == "http" {
|
|
u.Scheme = "ws"
|
|
} else if u.Scheme == "https" {
|
|
u.Scheme = "wss"
|
|
}
|
|
|
|
dialer := websocket.Dialer{
|
|
Proxy: http.ProxyFromEnvironment,
|
|
TLSClientConfig: c.tlsConfig,
|
|
}
|
|
|
|
conn, _, err := dialer.DialContext(context.TODO(), u.String(), nil)
|
|
if err != nil {
|
|
log.Printf("Error connecting to proxy at %s: %s", c, err)
|
|
c.scheduleReconnect()
|
|
return
|
|
}
|
|
|
|
log.Printf("Connected to %s", c)
|
|
c.closed.Store(false)
|
|
|
|
c.mu.Lock()
|
|
c.connectedSince = time.Now()
|
|
c.conn = conn
|
|
c.mu.Unlock()
|
|
|
|
c.reconnectInterval.Store(int64(initialReconnectInterval))
|
|
|
|
if err := c.sendHello(); err != nil {
|
|
log.Printf("Error sending hello request to proxy at %s: %s", c, err)
|
|
c.scheduleReconnect()
|
|
return
|
|
}
|
|
|
|
if !c.sendPing() {
|
|
return
|
|
}
|
|
|
|
go c.readPump(conn)
|
|
}
|
|
|
|
func (c *RemoteConnection) scheduleReconnect() {
|
|
if err := c.sendClose(); err != nil && err != ErrNotConnected {
|
|
log.Printf("Could not send close message to %s: %s", c, err)
|
|
}
|
|
c.close()
|
|
|
|
interval := c.reconnectInterval.Load()
|
|
c.reconnectTimer.Reset(time.Duration(interval))
|
|
|
|
interval = interval * 2
|
|
if interval > int64(maxReconnectInterval) {
|
|
interval = int64(maxReconnectInterval)
|
|
}
|
|
c.reconnectInterval.Store(interval)
|
|
}
|
|
|
|
func (c *RemoteConnection) sendHello() error {
|
|
c.helloMsgId = strconv.FormatInt(c.msgId.Add(1), 10)
|
|
msg := &signaling.ProxyClientMessage{
|
|
Id: c.helloMsgId,
|
|
Type: "hello",
|
|
Hello: &signaling.HelloProxyClientMessage{
|
|
Version: "1.0",
|
|
},
|
|
}
|
|
if sessionId := c.sessionId; sessionId != "" {
|
|
msg.Hello.ResumeId = sessionId
|
|
} else {
|
|
tokenString, err := c.createToken("")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg.Hello.Token = tokenString
|
|
}
|
|
|
|
return c.SendMessage(msg)
|
|
}
|
|
|
|
func (c *RemoteConnection) sendClose() error {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
if c.conn == nil {
|
|
return ErrNotConnected
|
|
}
|
|
|
|
c.conn.SetWriteDeadline(time.Now().Add(writeWait)) // nolint
|
|
return c.conn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""))
|
|
}
|
|
|
|
func (c *RemoteConnection) close() {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
if c.conn != nil {
|
|
c.conn.Close()
|
|
c.conn = nil
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) Close() error {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
c.reconnectTimer.Stop()
|
|
if c.conn == nil {
|
|
return nil
|
|
}
|
|
|
|
c.sendClose()
|
|
err1 := c.conn.WriteControl(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""), time.Time{})
|
|
err2 := c.conn.Close()
|
|
c.conn = nil
|
|
if err1 != nil {
|
|
return err1
|
|
}
|
|
return err2
|
|
}
|
|
|
|
func (c *RemoteConnection) createToken(subject string) (string, error) {
|
|
claims := &signaling.TokenClaims{
|
|
RegisteredClaims: jwt.RegisteredClaims{
|
|
IssuedAt: jwt.NewNumericDate(time.Now()),
|
|
Issuer: c.tokenId,
|
|
Subject: subject,
|
|
},
|
|
}
|
|
token := jwt.NewWithClaims(jwt.SigningMethodRS256, claims)
|
|
tokenString, err := token.SignedString(c.tokenKey)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return tokenString, nil
|
|
}
|
|
|
|
func (c *RemoteConnection) SendMessage(msg *signaling.ProxyClientMessage) error {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
return c.sendMessageLocked(context.Background(), msg)
|
|
}
|
|
|
|
func (c *RemoteConnection) deferMessage(ctx context.Context, msg *signaling.ProxyClientMessage) {
|
|
c.pendingMessages = append(c.pendingMessages, msg)
|
|
if ctx.Done() != nil {
|
|
go func() {
|
|
<-ctx.Done()
|
|
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
for idx, m := range c.pendingMessages {
|
|
if m == msg {
|
|
c.pendingMessages[idx] = nil
|
|
break
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) sendMessageLocked(ctx context.Context, msg *signaling.ProxyClientMessage) error {
|
|
if c.conn == nil {
|
|
// Defer until connected.
|
|
c.deferMessage(ctx, msg)
|
|
return nil
|
|
}
|
|
|
|
if c.helloMsgId != "" && c.helloMsgId != msg.Id {
|
|
// Hello request is still inflight, defer.
|
|
c.deferMessage(ctx, msg)
|
|
return nil
|
|
}
|
|
|
|
c.conn.SetWriteDeadline(time.Now().Add(writeWait)) // nolint
|
|
return c.conn.WriteJSON(msg)
|
|
}
|
|
|
|
func (c *RemoteConnection) readPump(conn *websocket.Conn) {
|
|
defer func() {
|
|
if !c.closed.Load() {
|
|
c.scheduleReconnect()
|
|
}
|
|
}()
|
|
defer c.close()
|
|
|
|
for {
|
|
msgType, msg, err := conn.ReadMessage()
|
|
if err != nil {
|
|
if errors.Is(err, websocket.ErrCloseSent) {
|
|
break
|
|
} else if _, ok := err.(*websocket.CloseError); !ok || websocket.IsUnexpectedCloseError(err,
|
|
websocket.CloseNormalClosure,
|
|
websocket.CloseGoingAway,
|
|
websocket.CloseNoStatusReceived) {
|
|
log.Printf("Error reading from %s: %v", c, err)
|
|
}
|
|
break
|
|
}
|
|
|
|
if msgType != websocket.TextMessage {
|
|
log.Printf("unexpected message type %q (%s)", msgType, string(msg))
|
|
continue
|
|
}
|
|
|
|
var message signaling.ProxyServerMessage
|
|
if err := json.Unmarshal(msg, &message); err != nil {
|
|
log.Printf("could not decode message %s: %s", string(msg), err)
|
|
continue
|
|
}
|
|
|
|
c.mu.Lock()
|
|
helloMsgId := c.helloMsgId
|
|
c.mu.Unlock()
|
|
|
|
if helloMsgId != "" && message.Id == helloMsgId {
|
|
c.processHello(&message)
|
|
} else {
|
|
c.processMessage(&message)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) sendPing() bool {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
if c.conn == nil {
|
|
return false
|
|
}
|
|
|
|
now := time.Now()
|
|
msg := strconv.FormatInt(now.UnixNano(), 10)
|
|
c.conn.SetWriteDeadline(now.Add(writeWait)) // nolint
|
|
if err := c.conn.WriteMessage(websocket.PingMessage, []byte(msg)); err != nil {
|
|
log.Printf("Could not send ping to proxy at %s: %v", c, err)
|
|
go c.scheduleReconnect()
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func (c *RemoteConnection) writePump() {
|
|
ticker := time.NewTicker(pingPeriod)
|
|
defer func() {
|
|
ticker.Stop()
|
|
}()
|
|
|
|
defer c.reconnectTimer.Stop()
|
|
for {
|
|
select {
|
|
case <-c.reconnectTimer.C:
|
|
c.reconnect()
|
|
case <-ticker.C:
|
|
c.sendPing()
|
|
case <-c.closer.C:
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) processHello(msg *signaling.ProxyServerMessage) {
|
|
c.helloMsgId = ""
|
|
switch msg.Type {
|
|
case "error":
|
|
if msg.Error.Code == "no_such_session" {
|
|
log.Printf("Session %s could not be resumed on %s, registering new", c.sessionId, c)
|
|
c.sessionId = ""
|
|
if err := c.sendHello(); err != nil {
|
|
log.Printf("Could not send hello request to %s: %s", c, err)
|
|
c.scheduleReconnect()
|
|
}
|
|
return
|
|
}
|
|
|
|
log.Printf("Hello connection to %s failed with %+v, reconnecting", c, msg.Error)
|
|
c.scheduleReconnect()
|
|
case "hello":
|
|
resumed := c.sessionId == msg.Hello.SessionId
|
|
c.sessionId = msg.Hello.SessionId
|
|
country := ""
|
|
if msg.Hello.Server != nil {
|
|
if country = msg.Hello.Server.Country; country != "" && !signaling.IsValidCountry(country) {
|
|
log.Printf("Proxy %s sent invalid country %s in hello response", c, country)
|
|
country = ""
|
|
}
|
|
}
|
|
if resumed {
|
|
log.Printf("Resumed session %s on %s", c.sessionId, c)
|
|
} else if country != "" {
|
|
log.Printf("Received session %s from %s (in %s)", c.sessionId, c, country)
|
|
} else {
|
|
log.Printf("Received session %s from %s", c.sessionId, c)
|
|
}
|
|
|
|
pending := c.pendingMessages
|
|
c.pendingMessages = nil
|
|
for _, m := range pending {
|
|
if m == nil {
|
|
continue
|
|
}
|
|
|
|
if err := c.sendMessageLocked(context.Background(), m); err != nil {
|
|
log.Printf("Could not send pending message %+v to %s: %s", m, c, err)
|
|
}
|
|
}
|
|
default:
|
|
log.Printf("Received unsupported hello response %+v from %s, reconnecting", msg, c)
|
|
c.scheduleReconnect()
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) processMessage(msg *signaling.ProxyServerMessage) {
|
|
if msg.Id != "" {
|
|
c.mu.Lock()
|
|
ch, found := c.messageCallbacks[msg.Id]
|
|
if found {
|
|
delete(c.messageCallbacks, msg.Id)
|
|
c.mu.Unlock()
|
|
ch <- msg
|
|
return
|
|
}
|
|
c.mu.Unlock()
|
|
}
|
|
|
|
switch msg.Type {
|
|
case "event":
|
|
c.processEvent(msg)
|
|
default:
|
|
log.Printf("Received unsupported message %+v from %s", msg, c)
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) processEvent(msg *signaling.ProxyServerMessage) {
|
|
switch msg.Event.Type {
|
|
case "update-load":
|
|
default:
|
|
log.Printf("Received unsupported event %+v from %s", msg, c)
|
|
}
|
|
}
|
|
|
|
func (c *RemoteConnection) RequestMessage(ctx context.Context, msg *signaling.ProxyClientMessage) (*signaling.ProxyServerMessage, error) {
|
|
msg.Id = strconv.FormatInt(c.msgId.Add(1), 10)
|
|
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
if err := c.sendMessageLocked(ctx, msg); err != nil {
|
|
return nil, err
|
|
}
|
|
ch := make(chan *signaling.ProxyServerMessage, 1)
|
|
c.messageCallbacks[msg.Id] = ch
|
|
c.mu.Unlock()
|
|
defer func() {
|
|
c.mu.Lock()
|
|
delete(c.messageCallbacks, msg.Id)
|
|
}()
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
// TODO: Cancel request.
|
|
return nil, ctx.Err()
|
|
case response := <-ch:
|
|
if response.Type == "error" {
|
|
return nil, response.Error
|
|
}
|
|
return response, nil
|
|
}
|
|
}
|