package xmpp import ( "crypto/tls" "encoding/xml" "errors" "fmt" "io" "net" "gosrc.io/xmpp/stanza" ) const xmppStreamOpen = "" type Session struct { // Session info BindJid string // Jabber ID as provided by XMPP server StreamId string Features stanza.StreamFeatures TlsEnabled bool lastPacketId int // read / write streamLogger io.ReadWriter decoder *xml.Decoder // error management err error } func NewSession(conn net.Conn, o Config) (net.Conn, *Session, error) { s := new(Session) s.init(conn, o) // starttls var tlsConn net.Conn tlsConn = s.startTlsIfSupported(conn, o.parsedJid.Domain) if s.TlsEnabled { s.reset(conn, tlsConn, o) } if !s.TlsEnabled && !o.Insecure { return nil, nil, NewConnError(errors.New("failed to negotiate TLS session"), true) } // auth s.auth(o) s.reset(tlsConn, tlsConn, o) // bind resource and 'start' XMPP session s.bind(o) s.rfc3921Session(o) return tlsConn, s, s.err } func (s *Session) PacketId() string { s.lastPacketId++ return fmt.Sprintf("%x", s.lastPacketId) } func (s *Session) init(conn net.Conn, o Config) { s.setStreamLogger(nil, conn, o) s.Features = s.open(o.parsedJid.Domain) } func (s *Session) reset(conn net.Conn, newConn net.Conn, o Config) { if s.err != nil { return } s.setStreamLogger(conn, newConn, o) s.Features = s.open(o.parsedJid.Domain) } func (s *Session) setStreamLogger(conn net.Conn, newConn net.Conn, o Config) { if newConn != conn { s.streamLogger = newStreamLogger(newConn, o.StreamLogger) } s.decoder = xml.NewDecoder(s.streamLogger) s.decoder.CharsetReader = o.CharsetReader } func (s *Session) open(domain string) (f stanza.StreamFeatures) { // Send stream open tag if _, s.err = fmt.Fprintf(s.streamLogger, xmppStreamOpen, domain, stanza.NSClient, stanza.NSStream); s.err != nil { return } // Set xml decoder and extract streamID from reply s.StreamId, s.err = stanza.InitStream(s.decoder) // TODO refactor / rename if s.err != nil { return } // extract stream features if s.err = s.decoder.Decode(&f); s.err != nil { s.err = errors.New("stream open decode features: " + s.err.Error()) } return } func (s *Session) startTlsIfSupported(conn net.Conn, domain string) net.Conn { if s.err != nil { return conn } if _, ok := s.Features.DoesStartTLS(); ok { fmt.Fprintf(s.streamLogger, "") var k stanza.TLSProceed if s.err = s.decoder.DecodeElement(&k, nil); s.err != nil { s.err = errors.New("expecting starttls proceed: " + s.err.Error()) return conn } s.TlsEnabled = true // TODO: add option to accept all TLS certificates: insecureSkipTlsVerify (DefaultTlsConfig.InsecureSkipVerify) stanza.DefaultTlsConfig.ServerName = domain tlsConn := tls.Client(conn, &stanza.DefaultTlsConfig) // We convert existing connection to TLS if s.err = tlsConn.Handshake(); s.err != nil { return tlsConn } // We check that cert matches hostname s.err = tlsConn.VerifyHostname(domain) return tlsConn } // starttls is not supported => we do not upgrade the connection: return conn } func (s *Session) auth(o Config) { if s.err != nil { return } s.err = authSASL(s.streamLogger, s.decoder, s.Features, o.parsedJid.Node, o.Password) } func (s *Session) bind(o Config) { if s.err != nil { return } // Send IQ message asking to bind to the local user name. var resource = o.parsedJid.Resource if resource != "" { fmt.Fprintf(s.streamLogger, "%s", s.PacketId(), stanza.NSBind, resource) } else { fmt.Fprintf(s.streamLogger, "", s.PacketId(), stanza.NSBind) } var iq stanza.IQ if s.err = s.decoder.Decode(&iq); s.err != nil { s.err = errors.New("error decoding iq bind result: " + s.err.Error()) return } // TODO Check all elements switch payload := iq.Payload.(type) { case *stanza.Bind: s.BindJid = payload.Jid // our local id (with possibly randomly generated resource default: s.err = errors.New("iq bind result missing") } return } // After the bind, if the session is not optional (as per old RFC 3921), we send the session open iq. func (s *Session) rfc3921Session(o Config) { if s.err != nil { return } var iq stanza.IQ if !s.Features.Session.IsOptional() { fmt.Fprintf(s.streamLogger, "", s.PacketId(), stanza.NSSession) if s.err = s.decoder.Decode(&iq); s.err != nil { s.err = errors.New("expecting iq result after session open: " + s.err.Error()) return } } }