2020-05-22 10:41:24 +00:00
|
|
|
package telebit
|
2020-05-21 10:29:05 +00:00
|
|
|
|
|
|
|
import (
|
2020-05-21 18:28:33 +00:00
|
|
|
"context"
|
2020-05-21 10:29:05 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
2020-05-21 18:28:33 +00:00
|
|
|
"net/http"
|
2020-05-21 10:29:05 +00:00
|
|
|
"os"
|
2020-05-21 18:28:33 +00:00
|
|
|
"strings"
|
2020-05-21 10:29:05 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
)
|
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
// WebsocketTunnel wraps a websocket.Conn instance to behave like net.Conn.
|
2020-05-21 10:29:05 +00:00
|
|
|
// TODO make conform.
|
2020-05-21 18:28:33 +00:00
|
|
|
type WebsocketTunnel struct {
|
2020-05-21 10:29:05 +00:00
|
|
|
wsconn WSConn
|
|
|
|
tmpr io.Reader
|
|
|
|
//w io.WriteCloser
|
|
|
|
//pingCh chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WSConn defines a interface for gorilla websockets for the purpose of testing
|
|
|
|
type WSConn interface {
|
|
|
|
NextReader() (messageType int, r io.Reader, err error)
|
|
|
|
NextWriter(messageType int) (io.WriteCloser, error)
|
|
|
|
WriteControl(messageType int, data []byte, deadline time.Time) error
|
|
|
|
WriteMessage(messageType int, data []byte) error
|
|
|
|
SetReadDeadline(t time.Time) error
|
2020-05-21 18:28:33 +00:00
|
|
|
SetWriteDeadline(t time.Time) error
|
2020-05-21 10:29:05 +00:00
|
|
|
Close() error
|
|
|
|
RemoteAddr() net.Addr
|
|
|
|
// LocalAddr() net.Addr
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
// NewWebsocketTunnel allocates a new websocket connection wrapper
|
|
|
|
func NewWebsocketTunnel(wsconn WSConn) net.Conn {
|
|
|
|
return &WebsocketTunnel{
|
2020-05-21 11:09:49 +00:00
|
|
|
wsconn: wsconn,
|
|
|
|
tmpr: nil,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
// DialWebsocketTunnel connects to the given websocket relay as wraps it as net.Conn
|
|
|
|
func DialWebsocketTunnel(ctx context.Context, relay, authz string) (net.Conn, error) {
|
|
|
|
wsd := websocket.Dialer{}
|
|
|
|
headers := http.Header{}
|
|
|
|
headers.Set("Authorization", fmt.Sprintf("Bearer %s", authz))
|
|
|
|
// *http.Response
|
|
|
|
sep := "?"
|
|
|
|
if strings.Contains(relay, sep) {
|
|
|
|
sep = "&"
|
|
|
|
}
|
|
|
|
wsconn, _, err := wsd.DialContext(ctx, relay+sep+"access_token="+authz+"&versions=v1", headers)
|
|
|
|
return NewWebsocketTunnel(wsconn), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsw *WebsocketTunnel) Read(b []byte) (int, error) {
|
2020-05-21 10:29:05 +00:00
|
|
|
if nil == wsw.tmpr {
|
|
|
|
_, msgr, err := wsw.wsconn.NextReader()
|
|
|
|
if nil != err {
|
2020-05-22 10:34:37 +00:00
|
|
|
//fmt.Println("debug wsw NextReader err:", err)
|
2020-05-21 10:29:05 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
wsw.tmpr = msgr
|
|
|
|
}
|
|
|
|
|
|
|
|
n, err := wsw.tmpr.Read(b)
|
|
|
|
if nil != err {
|
2020-05-22 10:34:37 +00:00
|
|
|
//fmt.Println("debug wsw Read err:", err)
|
2020-05-21 10:29:05 +00:00
|
|
|
if io.EOF == err {
|
|
|
|
wsw.tmpr = nil
|
|
|
|
// ignore the message EOF because it's not the websocket EOF
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
func (wsw *WebsocketTunnel) Write(b []byte) (int, error) {
|
2020-05-21 10:29:05 +00:00
|
|
|
// TODO create or reset ping deadline
|
|
|
|
// TODO document that more complete writes are preferred?
|
|
|
|
|
|
|
|
msgw, err := wsw.wsconn.NextWriter(websocket.BinaryMessage)
|
|
|
|
if nil != err {
|
2020-05-22 10:34:37 +00:00
|
|
|
//fmt.Println("debug wsw NextWriter err:", err)
|
2020-05-21 10:29:05 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, err := msgw.Write(b)
|
|
|
|
if nil != err {
|
2020-05-22 10:34:37 +00:00
|
|
|
//fmt.Println("debug wsw Write err:", err)
|
2020-05-21 10:29:05 +00:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the message error fails, we can assume the websocket is damaged
|
|
|
|
return n, msgw.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close will close the websocket with a control message
|
2020-05-21 18:28:33 +00:00
|
|
|
func (wsw *WebsocketTunnel) Close() error {
|
2020-05-22 10:34:37 +00:00
|
|
|
//fmt.Println("[debug] closing the websocket.Conn")
|
2020-05-21 10:29:05 +00:00
|
|
|
|
|
|
|
// TODO handle EOF as websocket.CloseNormal?
|
|
|
|
message := websocket.FormatCloseMessage(websocket.CloseGoingAway, "closing connection")
|
|
|
|
deadline := time.Now().Add(10 * time.Second)
|
|
|
|
err := wsw.wsconn.WriteControl(websocket.CloseMessage, message, deadline)
|
|
|
|
if nil != err {
|
|
|
|
fmt.Fprintf(os.Stderr, "failed to write close message to websocket: %s\n", err)
|
|
|
|
}
|
|
|
|
_ = wsw.wsconn.Close()
|
|
|
|
return err
|
|
|
|
}
|
2020-05-21 11:09:49 +00:00
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
// LocalAddr is not implemented and will panic
|
|
|
|
func (wsw *WebsocketTunnel) LocalAddr() net.Addr {
|
|
|
|
// TODO do we reverse this since the "local" address is that of the relay?
|
|
|
|
// return wsw.wsconn.RemoteAddr()
|
|
|
|
panic("LocalAddr() not implemented")
|
2020-05-21 11:09:49 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 18:28:33 +00:00
|
|
|
// RemoteAddr is not implemented and will panic. Additionally, it wouldn't mean anything useful anyway.
|
|
|
|
func (wsw *WebsocketTunnel) RemoteAddr() net.Addr {
|
|
|
|
// TODO do we reverse this since the "remote" address means nothing / is that of one of the clients?
|
|
|
|
// return wsw.wsconn.LocalAddr()
|
|
|
|
panic("RemoteAddr() not implemented")
|
2020-05-21 11:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetDeadline sets the read and write deadlines associated
|
2020-05-21 18:28:33 +00:00
|
|
|
func (wsw *WebsocketTunnel) SetDeadline(t time.Time) error {
|
|
|
|
err := wsw.SetReadDeadline(t)
|
|
|
|
if nil == err {
|
|
|
|
err = wsw.SetWriteDeadline(t)
|
|
|
|
}
|
|
|
|
return err
|
2020-05-21 11:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetReadDeadline sets the deadline for future Read calls
|
2020-05-21 18:28:33 +00:00
|
|
|
func (wsw *WebsocketTunnel) SetReadDeadline(t time.Time) error {
|
|
|
|
return wsw.wsconn.SetReadDeadline(t)
|
2020-05-21 11:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetWriteDeadline sets the deadline for future Write calls
|
2020-05-21 18:28:33 +00:00
|
|
|
func (wsw *WebsocketTunnel) SetWriteDeadline(t time.Time) error {
|
|
|
|
return wsw.wsconn.SetWriteDeadline(t)
|
2020-05-21 11:09:49 +00:00
|
|
|
}
|