2018-12-26 17:50:01 +00:00
|
|
|
package xmpp // import "gosrc.io/xmpp"
|
2018-01-11 21:15:54 +00:00
|
|
|
|
|
|
|
import (
|
2018-01-12 17:01:27 +00:00
|
|
|
"crypto/sha1"
|
|
|
|
"encoding/hex"
|
2018-01-11 22:00:59 +00:00
|
|
|
"encoding/xml"
|
|
|
|
"errors"
|
2018-01-11 21:15:54 +00:00
|
|
|
"fmt"
|
2018-01-11 22:00:59 +00:00
|
|
|
"io"
|
2018-01-11 21:15:54 +00:00
|
|
|
"net"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const componentStreamOpen = "<?xml version='1.0'?><stream:stream to='%s' xmlns='%s' xmlns:stream='%s'>"
|
|
|
|
|
2019-06-08 17:42:02 +00:00
|
|
|
type ComponentOptions struct {
|
|
|
|
// =================================
|
|
|
|
// Component Connection Info
|
|
|
|
|
|
|
|
// Domain is the XMPP server subdomain that the component will handle
|
|
|
|
Domain string
|
|
|
|
// Secret is the "password" used by the XMPP server to secure component access
|
|
|
|
Secret string
|
|
|
|
// Address is the XMPP Host and port to connect to. Host is of
|
|
|
|
// the form 'serverhost:port' i.e "localhost:8888"
|
|
|
|
Address string
|
|
|
|
|
|
|
|
// =================================
|
|
|
|
// Component discovery
|
|
|
|
|
|
|
|
// Component human readable name, that will be shown in XMPP discovery
|
|
|
|
Name string
|
|
|
|
// Typical categories and types: https://xmpp.org/registrar/disco-categories.html
|
|
|
|
Category string
|
|
|
|
Type string
|
|
|
|
|
|
|
|
// =================================
|
|
|
|
// Communication with developer client / StreamManager
|
|
|
|
|
|
|
|
// Packet channel
|
2019-06-10 08:58:41 +00:00
|
|
|
RecvChannel chan Packet
|
2019-06-08 17:42:02 +00:00
|
|
|
// Track and broadcast connection state
|
|
|
|
EventManager
|
|
|
|
}
|
|
|
|
|
2018-01-11 21:15:54 +00:00
|
|
|
// Component implements an XMPP extension allowing to extend XMPP server
|
|
|
|
// using external components. Component specifications are defined
|
|
|
|
// in XEP-0114, XEP-0355 and XEP-0356.
|
|
|
|
type Component struct {
|
2019-06-08 17:42:02 +00:00
|
|
|
ComponentOptions
|
2019-06-13 15:22:39 +00:00
|
|
|
router *Router
|
2018-01-12 17:01:27 +00:00
|
|
|
|
2018-01-11 21:15:54 +00:00
|
|
|
// TCP level connection
|
|
|
|
conn net.Conn
|
2018-01-11 22:00:59 +00:00
|
|
|
|
|
|
|
// read / write
|
2018-01-12 17:01:27 +00:00
|
|
|
socketProxy io.ReadWriter // TODO
|
2018-01-11 22:00:59 +00:00
|
|
|
decoder *xml.Decoder
|
2018-01-11 21:15:54 +00:00
|
|
|
}
|
|
|
|
|
2019-06-13 15:22:39 +00:00
|
|
|
func NewComponent(opts ComponentOptions, r *Router) (*Component, error) {
|
|
|
|
c := Component{ComponentOptions: opts, router: r}
|
2019-06-09 10:48:22 +00:00
|
|
|
// Create a default channel that developers can override
|
2019-06-10 08:58:41 +00:00
|
|
|
c.RecvChannel = make(chan Packet)
|
2019-06-09 10:48:22 +00:00
|
|
|
return &c, nil
|
2019-06-08 17:42:02 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 22:16:55 +00:00
|
|
|
// Connect triggers component connection to XMPP server component port.
|
2019-06-08 17:42:02 +00:00
|
|
|
// TODO: Failed handshake should be a permanent error
|
|
|
|
func (c *Component) Connect() error {
|
2018-01-11 21:15:54 +00:00
|
|
|
var conn net.Conn
|
|
|
|
var err error
|
2019-06-08 17:42:02 +00:00
|
|
|
if conn, err = net.DialTimeout("tcp", c.Address, time.Duration(5)*time.Second); err != nil {
|
2018-01-11 21:15:54 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-01-11 22:00:59 +00:00
|
|
|
c.conn = conn
|
2018-01-11 21:15:54 +00:00
|
|
|
|
2018-01-12 17:14:41 +00:00
|
|
|
// 1. Send stream open tag
|
2019-06-08 17:42:02 +00:00
|
|
|
if _, err := fmt.Fprintf(conn, componentStreamOpen, c.Domain, NSComponent, NSStream); err != nil {
|
2018-01-12 17:14:41 +00:00
|
|
|
return errors.New("cannot send stream open " + err.Error())
|
2018-01-11 22:00:59 +00:00
|
|
|
}
|
|
|
|
c.decoder = xml.NewDecoder(conn)
|
|
|
|
|
2018-01-12 17:14:41 +00:00
|
|
|
// 2. Initialize xml decoder and extract streamID from reply
|
2018-01-11 22:00:59 +00:00
|
|
|
streamId, err := initDecoder(c.decoder)
|
|
|
|
if err != nil {
|
2018-01-12 17:14:41 +00:00
|
|
|
return errors.New("cannot init decoder " + err.Error())
|
2018-01-11 21:15:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-12 17:14:41 +00:00
|
|
|
// 3. Authentication
|
|
|
|
if _, err := fmt.Fprintf(conn, "<handshake>%s</handshake>", c.handshake(streamId)); err != nil {
|
|
|
|
return errors.New("cannot send handshake " + err.Error())
|
2018-01-11 22:00:59 +00:00
|
|
|
}
|
|
|
|
|
2018-01-12 17:14:41 +00:00
|
|
|
// 4. Check server response for authentication
|
2018-01-13 17:50:17 +00:00
|
|
|
val, err := next(c.decoder)
|
2018-01-11 22:00:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch v := val.(type) {
|
2019-05-31 11:46:57 +00:00
|
|
|
case StreamError:
|
2018-01-12 17:14:41 +00:00
|
|
|
return errors.New("handshake failed " + v.Error.Local)
|
2019-05-31 11:46:57 +00:00
|
|
|
case Handshake:
|
2019-06-08 17:42:02 +00:00
|
|
|
// Start the receiver go routine
|
|
|
|
go c.recv()
|
2018-01-12 17:14:41 +00:00
|
|
|
return nil
|
2018-01-11 22:00:59 +00:00
|
|
|
default:
|
2019-06-08 17:42:02 +00:00
|
|
|
return errors.New("expecting handshake result, got " + v.Name())
|
2018-01-11 22:00:59 +00:00
|
|
|
}
|
2018-01-12 17:14:41 +00:00
|
|
|
}
|
2018-01-11 22:00:59 +00:00
|
|
|
|
2019-06-08 17:42:02 +00:00
|
|
|
func (c *Component) Disconnect() {
|
|
|
|
_ = c.SendRaw("</stream:stream>")
|
|
|
|
// TODO: Add a way to wait for stream close acknowledgement from the server for clean disconnect
|
|
|
|
_ = c.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Component) SetHandler(handler EventHandler) {
|
|
|
|
c.Handler = handler
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recv abstracts receiving preparsed XMPP packets from a channel.
|
|
|
|
// Channel allow client to receive / dispatch packets in for range loop.
|
|
|
|
// TODO: Deprecate this function in favor of reading directly from the RecvChannel ?
|
2019-06-13 15:22:39 +00:00
|
|
|
/*
|
2019-06-10 08:58:41 +00:00
|
|
|
func (c *Component) Recv() <-chan Packet {
|
2019-06-08 17:42:02 +00:00
|
|
|
return c.RecvChannel
|
|
|
|
}
|
2019-06-13 15:22:39 +00:00
|
|
|
*/
|
2019-06-08 17:42:02 +00:00
|
|
|
|
2019-06-13 15:22:39 +00:00
|
|
|
// Receiver Go routine receiver
|
2019-06-08 17:42:02 +00:00
|
|
|
func (c *Component) recv() (err error) {
|
|
|
|
for {
|
|
|
|
val, err := next(c.decoder)
|
|
|
|
if err != nil {
|
|
|
|
c.updateState(StateDisconnected)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle stream errors
|
|
|
|
switch p := val.(type) {
|
|
|
|
case StreamError:
|
2019-06-14 07:37:38 +00:00
|
|
|
c.router.Route(c, val)
|
2019-06-08 17:42:02 +00:00
|
|
|
c.streamError(p.Error.Local, p.Text)
|
|
|
|
return errors.New("stream error: " + p.Error.Local)
|
|
|
|
}
|
2019-06-14 07:37:38 +00:00
|
|
|
c.router.Route(c, val)
|
2019-06-08 17:42:02 +00:00
|
|
|
}
|
2018-01-12 18:08:47 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 08:55:39 +00:00
|
|
|
// Send marshalls XMPP stanza and sends it to the server.
|
2018-01-17 17:47:34 +00:00
|
|
|
func (c *Component) Send(packet Packet) error {
|
|
|
|
data, err := xml.Marshal(packet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("cannot marshal packet " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := fmt.Fprintf(c.conn, string(data)); err != nil {
|
|
|
|
return errors.New("cannot send packet " + err.Error())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-26 08:55:39 +00:00
|
|
|
// SendRaw sends an XMPP stanza as a string to the server.
|
|
|
|
// It can be invalid XML or XMPP content. In that case, the server will
|
|
|
|
// disconnect the component. It is up to the user of this method to
|
|
|
|
// carefully craft the XML content to produce valid XMPP.
|
|
|
|
func (c *Component) SendRaw(packet string) error {
|
2019-06-09 10:21:20 +00:00
|
|
|
var err error
|
|
|
|
_, err = fmt.Fprintf(c.conn, packet)
|
|
|
|
return err
|
2018-01-26 08:55:39 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 22:16:55 +00:00
|
|
|
// handshake generates an authentication token based on StreamID and shared secret.
|
|
|
|
func (c *Component) handshake(streamId string) string {
|
|
|
|
// 1. Concatenate the Stream ID received from the server with the shared secret.
|
|
|
|
concatStr := streamId + c.Secret
|
|
|
|
|
|
|
|
// 2. Hash the concatenated string according to the SHA1 algorithm, i.e., SHA1( concat (sid, password)).
|
|
|
|
h := sha1.New()
|
|
|
|
h.Write([]byte(concatStr))
|
|
|
|
hash := h.Sum(nil)
|
|
|
|
|
|
|
|
// 3. Ensure that the hash output is in hexadecimal format, not binary or base64.
|
|
|
|
// 4. Convert the hash output to all lowercase characters.
|
|
|
|
encodedStr := hex.EncodeToString(hash)
|
|
|
|
|
|
|
|
return encodedStr
|
|
|
|
}
|
|
|
|
|
2018-01-12 17:14:41 +00:00
|
|
|
// ============================================================================
|
2018-01-25 22:16:55 +00:00
|
|
|
// Handshake Stanza
|
2018-01-12 17:14:41 +00:00
|
|
|
|
2018-01-25 22:16:55 +00:00
|
|
|
// Handshake is a stanza used by XMPP components to authenticate on XMPP
|
|
|
|
// component port.
|
2018-01-12 17:14:41 +00:00
|
|
|
type Handshake struct {
|
|
|
|
XMLName xml.Name `xml:"jabber:component:accept handshake"`
|
2018-01-25 22:16:55 +00:00
|
|
|
// TODO Add handshake value with test for proper serialization
|
|
|
|
// Value string `xml:",innerxml"`
|
2018-01-11 21:15:54 +00:00
|
|
|
}
|
2018-01-13 17:50:17 +00:00
|
|
|
|
|
|
|
func (Handshake) Name() string {
|
|
|
|
return "component:handshake"
|
|
|
|
}
|
|
|
|
|
2018-01-25 22:16:55 +00:00
|
|
|
// Handshake decoding wrapper
|
|
|
|
|
2018-01-13 17:50:17 +00:00
|
|
|
type handshakeDecoder struct{}
|
|
|
|
|
|
|
|
var handshake handshakeDecoder
|
|
|
|
|
|
|
|
func (handshakeDecoder) decode(p *xml.Decoder, se xml.StartElement) (Handshake, error) {
|
|
|
|
var packet Handshake
|
|
|
|
err := p.DecodeElement(&packet, &se)
|
|
|
|
return packet, err
|
|
|
|
}
|
2019-06-08 17:42:02 +00:00
|
|
|
|
2019-06-09 11:02:58 +00:00
|
|
|
/*
|
|
|
|
TODO: Add support for discovery management directly in component
|
|
|
|
TODO: Support multiple identities on disco info
|
|
|
|
TODO: Support returning features on disco info
|
|
|
|
*/
|